Rails locale fallbacks are not working in production env
2 I have a rails 3.2 application. It has 2 locales ko & en. ko is the default but I want it to fallback to en if it's not available. The fallback works in development env but not in production env. [config/application.rb] config.i18n.default_locale = :ko config.i18n.fallbacks = [:en] [config/environments/production.rb] config.i18n.fallbacks = true [config/locales/en.yml] ttt: TTT [config/locales/ko.yml] (ttt is not defined) **In development console:** I18n.localt #=> :ko I18n.t("ttt") #=> "TTT" (Works fine) **In production console:** I18n.locale #=> :ko I18n.t("ttt") #=> "translation missing: ko.ttt" (Not working) What am I missing? Thanks. Sam ruby-on-rails locale fallback rails-i18n share | improve this question asked Aug 9 '13 at 22:54 Sam Kong Sam Kong 2,298 6 40 79 1 I commented out config.i18n.fallbacks = true in config/environments/production.rb. Now it wor