如何使用回退在globalize3中获取对象的转换

时间:2013-03-01 12:44:14

标签: ruby-on-rails translation globalize3

我想通过后备获得翻译。 我的方法不合适:

1)更改区域设置(I18n.locale =:de)

2)获取翻译(Place.find(:id))

3)...

4)没有利润!

更新 我找到了解决方案!

  before_filter :set_locale

  def set_locale
    locale = params[:locale]
    if locale.present?
      I18n.locale = locale
    end
  end

0 个答案:

没有答案