mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9 lines
264 B
Ruby
9 lines
264 B
Ruby
begin
|
|
require 'i18n'
|
|
require 'active_support/lazy_load_hooks'
|
|
rescue LoadError => e
|
|
$stderr.puts "The i18n gem is not available. Please add it to your Gemfile and run bundle install"
|
|
raise e
|
|
end
|
|
|
|
I18n.load_path << "#{File.dirname(__FILE__)}/locale/en.yml"
|