blob: 2521b5eb56de4e091958972f98c442037cc55e79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<% if FastGettext.default_available_locales.length > 1 && !params.empty? %>
<div id="user_locale_switcher">
<div class="btn-group">
<% for possible_locale in FastGettext.default_available_locales %>
<% if possible_locale == I18n.locale.to_s %>
<a href="#" class="btn disabled"><%= locale_name(possible_locale) %></a>
<% else %>
<a href="<%= locale_switcher(possible_locale, params) %>" class="btn"><%= locale_name(possible_locale) %></a>
<% end %>
<% end %>
</div>
</div>
<% end %>
|