diff options
author | Sven Fuchs <svenfuchs@artweb-design.de> | 2008-06-19 16:43:30 +0200 |
---|---|---|
committer | Sven Fuchs <svenfuchs@artweb-design.de> | 2008-06-19 16:43:30 +0200 |
commit | 4a8486a1b1aa28d4cab5571b55301917221870e9 (patch) | |
tree | e03f2ba48f666d4bc6025536bbcc87d2fee65900 /activesupport | |
parent | 45d41f0dadd9fa171f306ff356770c4492726f30 (diff) | |
download | rails-4a8486a1b1aa28d4cab5571b55301917221870e9.tar.gz rails-4a8486a1b1aa28d4cab5571b55301917221870e9.tar.bz2 rails-4a8486a1b1aa28d4cab5571b55301917221870e9.zip |
add lang file for active_support
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/lang/en-US.rb | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/lib/active_support.rb b/activesupport/lib/active_support.rb index 1a8603e892..acdb3056d2 100644 --- a/activesupport/lib/active_support.rb +++ b/activesupport/lib/active_support.rb @@ -55,6 +55,7 @@ require 'active_support/multibyte' require 'active_support/base64' require 'active_support/time_with_zone' +require 'active_support/lang/en-US.rb' Inflector = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('Inflector', 'ActiveSupport::Inflector') Dependencies = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('Dependencies', 'ActiveSupport::Dependencies') diff --git a/activesupport/lib/active_support/lang/en-US.rb b/activesupport/lib/active_support/lang/en-US.rb new file mode 100644 index 0000000000..8732927f48 --- /dev/null +++ b/activesupport/lib/active_support/lang/en-US.rb @@ -0,0 +1,7 @@ +I18n.backend.add_translations :'en-US', { + :support => { + :array => { + :sentence_connector => 'and' + } + } +}
\ No newline at end of file |