Locale Switcher
# Locale Switcher
<%= t('change_locale') %>
<% I18n.available_locales.each do |locale| %>
value='<%= url_for_locale(locale) %>'
selected='<%= locale == I18n.locale %>'
<%= locale %>
<% end %>
# URL Helper
def url_for_locale(locale)
url_for(
locale: locale,
action: params[:action],
controller: params[:controller]
)
end
# jquery for switch
$('select.language_switcher')
.change(function(element){
window.location.href = $(this).val();
});