This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
initialize_i18n()
public
Set the i18n configuration from config.i18n but special-case for the
load_path which should be appended to what’s already set instead of
overwritten.
# File railties/lib/initializer.rb, line 578
def initialize_i18n
configuration.i18n.each do |setting, value|
if setting == :load_path
I18n.load_path += value
else
I18n.send("#{setting}=", value)
end
end
end