diff options
author | Iain Hecker <github@iain.nl> | 2008-08-14 01:28:31 +0200 |
---|---|---|
committer | Sven Fuchs <svenfuchs@artweb-design.de> | 2008-08-14 10:48:33 +0200 |
commit | ffeab4e0c171aecced4ddbe29b82aed064be9bdb (patch) | |
tree | 58d8bb134b04e457a6ccd9ee33babbc803f31876 /actionpack/lib/action_view/locale | |
parent | d0ee883e7c01dabf039525b80b7f43673e987265 (diff) | |
download | rails-ffeab4e0c171aecced4ddbe29b82aed064be9bdb.tar.gz rails-ffeab4e0c171aecced4ddbe29b82aed064be9bdb.tar.bz2 rails-ffeab4e0c171aecced4ddbe29b82aed064be9bdb.zip |
Cleaned up ActiveRecord i18n scoping
Diffstat (limited to 'actionpack/lib/action_view/locale')
-rw-r--r-- | actionpack/lib/action_view/locale/en-US.rb | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/actionpack/lib/action_view/locale/en-US.rb b/actionpack/lib/action_view/locale/en-US.rb index 8cce874700..d4647b5a48 100644 --- a/actionpack/lib/action_view/locale/en-US.rb +++ b/actionpack/lib/action_view/locale/en-US.rb @@ -74,14 +74,16 @@ } } }, - :active_record => { - :error => { - :header_message => { - :one => "1 error prohibited this {{object_name}} from being saved", - :many => "{{count}} errors prohibited this {{object_name}} from being saved" - }, - :message => "There were problems with the following fields:" + :activerecord => { + :errors => { + :template => { + :header => { + :one => "1 error prohibited this {{model}} from being saved", + :many => "{{count}} errors prohibited this {{model}} from being saved" + }, + :body => "There were problems with the following fields:" + } } } } -}
\ No newline at end of file +} |