diff options
author | José Valim <jose.valim@gmail.com> | 2011-05-22 13:30:55 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-05-22 13:31:19 +0200 |
commit | d5646e842fc0537cc1c16b7887039b14bfaf8292 (patch) | |
tree | bf2e7dda750076a41811c24d67f3fc2a42652868 /activesupport/lib | |
parent | 99b5020eb2307dd4f2dc5dbc7ae9d38024176318 (diff) | |
download | rails-d5646e842fc0537cc1c16b7887039b14bfaf8292.tar.gz rails-d5646e842fc0537cc1c16b7887039b14bfaf8292.tar.bz2 rails-d5646e842fc0537cc1c16b7887039b14bfaf8292.zip |
Move I18n dependency back to ActiveSupport.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/i18n.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/i18n.rb b/activesupport/lib/active_support/i18n.rb index 00ea8813dd..f9c5e5e2f8 100644 --- a/activesupport/lib/active_support/i18n.rb +++ b/activesupport/lib/active_support/i18n.rb @@ -2,7 +2,7 @@ begin require 'i18n' require 'active_support/lazy_load_hooks' rescue LoadError => e - $stderr.puts "You don't have i18n installed in your application. Please add it to your Gemfile and run bundle install" + $stderr.puts "The i18n gem is not available. Please add it to your Gemfile and run bundle install" raise e end |