aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/model/forms.py
diff options
context:
space:
mode:
authorAugusto Herrmann <augusto.herrmann@planejamento.gov.br>2011-09-12 00:51:53 -0300
committerAugusto Herrmann <augusto.herrmann@planejamento.gov.br>2011-09-12 00:51:53 -0300
commita6cb858738bf2b836ea96b49639bdeb30b40186f (patch)
tree20a2dd5aec207b00c59ab47fa27229dd63f195fa /rhodecode/model/forms.py
parente8349e76ca3fc25ff8b2fa2e1c496f08d2bc5e0f (diff)
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
--HG-- branch : beta
Diffstat (limited to 'rhodecode/model/forms.py')
-rw-r--r--rhodecode/model/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/model/forms.py b/rhodecode/model/forms.py
index f7cfc9b3..3520581b 100644
--- a/rhodecode/model/forms.py
+++ b/rhodecode/model/forms.py
@@ -188,7 +188,7 @@ class ValidPasswordsMatch(formencode.validators.FancyValidator):
if value['password'] != value['password_confirmation']:
e_dict = {'password_confirmation':
- _('Password do not match')}
+ _('Passwords do not match')}
raise formencode.Invalid('', value, state, error_dict=e_dict)
class ValidAuth(formencode.validators.FancyValidator):