def store_translations(locale, data, options = {})
locale = ::I18n::Locale::Tag::Rfc4646.tag(locale).to_s
- super(locale, data, options)
+ super
end
end
I18n.enforce_available_locales = false
+if Rails.env.test?
+ I18n.exception_handler = proc do |exception|
+ raise exception.to_exception
+ end
+end
+
Rails.configuration.after_initialize do
I18n.available_locales
end