Skip to content

Instantly share code, notes, and snippets.

View rickyah's full-sized avatar

Ricardo Amores Hernández rickyah

  • Barcelona
  • 11:37 (UTC +02:00)
  • X @rickyah
View GitHub Profile
@rickyah
rickyah / :rails :erb RefineryCms locale navigation
Created August 30, 2012 16:50 — forked from errorstudio/_locale_nav.html.erb
Refinery CMS: a list of all frontend locales with links
<ul>
<% Refinery::I18n.config.frontend_locales.each do |locale| %>
<li>
<%= link_to "/#{locale.to_s + request.path}", {:title => Refinery::I18n.locales[locale]} do%>
<span><%= Refinery::I18n.locales[locale] %></span>
<% end -%>
</li>
<% end %>
</ul>