blob: f9c5e5e2f8cfb95f84aed99b0c38d54d3cc76001 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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"
|