rails/activesupport/lib/active_support/i18n.rb
2011-05-22 13:31:19 +02:00

10 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"