Merge pull request #3724 from gschlager/i18n

Always use locale fallback on server
This commit is contained in:
Régis Hanol 2015-09-23 11:39:52 +02:00
commit d4f5f0170c

View file

@ -22,16 +22,5 @@ class FallbackLocaleList < Hash
end
end
class NoFallbackLocaleList < FallbackLocaleList
def [](locale)
[locale]
end
end
if Rails.env.development?
I18n.fallbacks = NoFallbackLocaleList.new
else
I18n.fallbacks = FallbackLocaleList.new
I18n.config.missing_interpolation_argument_handler = proc { throw(:exception) }
end
I18n.fallbacks = FallbackLocaleList.new
I18n.config.missing_interpolation_argument_handler = proc { throw(:exception) }