I\'m having trouble getting i18n to work on heroku. I set:
I18n.default_locale = :de
in my environment.rb and the translation is in config
The only solution I found that worked for me, on heroku, was setting it manually in the application controller.
application_controller.rb
before_filter :set_locale def set_locale I18n.locale = 'fr-QC' || I18n.default_locale end
cheers