heroku not loading language file

前端 未结 5 611
北恋
北恋 2020-12-06 13:53

Heroku does not seem to be loading config/locales/pt.yml. (Language is being set correctly to pt.)

I18n is working perfectly on localhost,

5条回答
  •  春和景丽
    2020-12-06 14:03

    Writing this line will also fix the problem in your application.rb

    config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
    

提交回复
热议问题