diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-04-07 17:50:17 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-04-07 17:50:17 +0000 |
commit | a4a41e05a81b6a7f832b299763e930aa56a1d0ac (patch) | |
tree | f6b35390dd68822697befcb1c99c2e307fe22698 /config | |
parent | a6acc7790406974d8a99849bd0d476f43b5b0105 (diff) | |
download | redmine-a4a41e05a81b6a7f832b299763e930aa56a1d0ac.tar.gz redmine-a4a41e05a81b6a7f832b299763e930aa56a1d0ac.zip |
Inform about minimum/maximum field lengths in error messages (#3128).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2666 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r-- | config/locales/en.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/locales/en.yml b/config/locales/en.yml index b04e9e730..b60329f30 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -76,9 +76,9 @@ en: accepted: "must be accepted" empty: "can't be empty" blank: "can't be blank" - too_long: "is too long" - too_short: "is too short" - wrong_length: "is the wrong length" + too_long: "is too long (maximum is {{count}} characters)" + too_short: "is too short (minimum is {{count}} characters)" + wrong_length: "is the wrong length (should be {{count}} characters)" taken: "has already been taken" not_a_number: "is not a number" not_a_date: "is not a valid date" |