heroku上的狂欢翻译

时间:2011-01-07 11:34:25

标签: internationalization heroku translation spree

我的问题是我无法在heroku上更改我的狂欢应用程序的语言。我改变了

config.i18n.default_locale =:'de'

在我的本地机器上它工作!但不是当我把它推到heroku时。有没有人找到解决这个问题的方法? 感谢

1 个答案:

答案 0 :(得分:1)

你做过初始化部分了吗? (配置/初始化/ whatever.rb)

if Spree::Config.instance
  Spree::Config.set(:allow_locale_switching => false)
  Spree::Config.set(:default_locale => :de)
end