<%# TODO: When the interface is localized, this should be revised to only show the notice in the user's selected language. %>

<%= t(".faux_heading") %>

  1. <%= t(".point1") %>
  2. <%= t(".point2") %>

<%= t(".faux_heading", locale: :ru) %>

  1. <%= t(".point1", locale: :ru) %>
  2. <%= t(".point2", locale: :ru) %>

<%= t(".faux_heading", locale: :uk) %>

  1. <%= t(".point1", locale: :uk) %>
  2. <%= t(".point2", locale: :uk) %>

<%= t(".faux_heading", locale: :"zh-CN") %>

  1. <%= t(".point1", locale: :"zh-CN") %>
  2. <%= t(".point2", locale: :"zh-CN") %>

<%= javascript_tag do %> $j(document).ready(function() { $j("#proxy-notice-dismiss").on("click", function() { Cookies.set("proxy_notice", "0"); $j("#proxy-notice").slideUp(); }); }); <% end %>