2010-06-20 08:44:38 -04:00
|
|
|
require "active_support"
|
|
|
|
require "active_support/file_update_checker"
|
2010-07-01 04:26:45 -04:00
|
|
|
require "active_support/core_ext/array/wrap"
|
2010-06-20 08:44:38 -04:00
|
|
|
|
|
|
|
module I18n
|
|
|
|
class Railtie < Rails::Railtie
|
|
|
|
config.i18n = ActiveSupport::OrderedOptions.new
|
|
|
|
config.i18n.railties_load_path = []
|
|
|
|
config.i18n.load_path = []
|
|
|
|
config.i18n.fallbacks = ActiveSupport::OrderedOptions.new
|
|
|
|
|
2011-02-01 11:12:51 -05:00
|
|
|
# Set the i18n configuration after initialization since a lot of
|
|
|
|
# configuration is still usually done in application initializers.
|
|
|
|
config.after_initialize do |app|
|
|
|
|
I18n::Railtie.initialize_i18n(app)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Trigger i18n config before any eager loading has happened
|
2012-09-17 01:22:18 -04:00
|
|
|
# so it's ready if any classes require it when eager loaded.
|
2011-02-01 11:12:51 -05:00
|
|
|
config.before_eager_load do |app|
|
|
|
|
I18n::Railtie.initialize_i18n(app)
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
2011-08-24 16:25:11 -04:00
|
|
|
@i18n_inited = false
|
|
|
|
|
2012-09-17 01:22:18 -04:00
|
|
|
# Setup i18n configuration.
|
2011-02-01 11:12:51 -05:00
|
|
|
def self.initialize_i18n(app)
|
|
|
|
return if @i18n_inited
|
|
|
|
|
2010-06-20 08:44:38 -04:00
|
|
|
fallbacks = app.config.i18n.delete(:fallbacks)
|
|
|
|
|
|
|
|
app.config.i18n.each do |setting, value|
|
|
|
|
case setting
|
|
|
|
when :railties_load_path
|
|
|
|
app.config.i18n.load_path.unshift(*value)
|
|
|
|
when :load_path
|
|
|
|
I18n.load_path += value
|
|
|
|
else
|
|
|
|
I18n.send("#{setting}=", value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
init_fallbacks(fallbacks) if fallbacks && validate_fallbacks(fallbacks)
|
|
|
|
|
2012-06-12 04:36:13 -04:00
|
|
|
reloader = ActiveSupport::FileUpdateChecker.new(I18n.load_path.dup){ I18n.reload! }
|
|
|
|
app.reloaders << reloader
|
|
|
|
ActionDispatch::Reloader.to_prepare { reloader.execute_if_updated }
|
2011-12-13 05:23:21 -05:00
|
|
|
reloader.execute
|
2010-06-20 08:44:38 -04:00
|
|
|
|
2011-02-01 11:12:51 -05:00
|
|
|
@i18n_inited = true
|
|
|
|
end
|
2010-06-20 08:44:38 -04:00
|
|
|
|
|
|
|
def self.include_fallbacks_module
|
|
|
|
I18n.backend.class.send(:include, I18n::Backend::Fallbacks)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.init_fallbacks(fallbacks)
|
|
|
|
include_fallbacks_module
|
|
|
|
|
|
|
|
args = case fallbacks
|
|
|
|
when ActiveSupport::OrderedOptions
|
|
|
|
[*(fallbacks[:defaults] || []) << fallbacks[:map]].compact
|
|
|
|
when Hash, Array
|
|
|
|
Array.wrap(fallbacks)
|
|
|
|
else # TrueClass
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
|
|
|
|
I18n.fallbacks = I18n::Locale::Fallbacks.new(*args)
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-06-20 08:44:38 -04:00
|
|
|
def self.validate_fallbacks(fallbacks)
|
|
|
|
case fallbacks
|
|
|
|
when ActiveSupport::OrderedOptions
|
|
|
|
!fallbacks.empty?
|
|
|
|
when TrueClass, Array, Hash
|
|
|
|
true
|
|
|
|
else
|
|
|
|
raise "Unexpected fallback type #{fallbacks.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-01-28 07:53:07 -05:00
|
|
|
end
|