본문 바로가기

카테고리 없음

[ror] production mode 에서만 로케일이 en으로 출력 될 때

http://guides.rubyonrails.org/i18n.html#setting-and-passing-the-locale

before_filter :set_locale
  
def set_locale
  I18n.locale = params[:locale] || I18n.default_locale
end