aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/admin/shared/_locale_picker.html.erb
blob: e162364c0bff0218ff35edc8723514bc58f41c17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<input type='hidden' name='switch_locale' id='switch_locale' value='<%= local_assigns[:current_locale] %>' />
<% if (locales ||= Refinery::I18n.frontend_locales).present? and locales.many? %>
  <ul id='switch_locale_picker' class='clearfix'>
    <% locales.each do |locale| %>
      <li<%= " class='selected'" if locale.to_s == local_assigns[:current_locale].to_s %>>
        <%= link_to refinery_icon_tag("flags/#{locale}.png", :size => "32x22"),
                    refinery.url_for(:switch_locale => locale) %>
      </li>
    <% end %>
  </ul>
<% end %>