Commit 2e18fbe3 by Pavel Zinovkin

Updated EmailField error message. This one already available in django translations.

https://github.com/django/django/blob/master/django/conf/locale/ru/LC_MESSAGES/django.po#L343
parent 596d76ff
......@@ -512,7 +512,7 @@ class EmailField(CharField):
form_field_class = forms.EmailField
default_error_messages = {
'invalid': _('Enter a valid e-mail address.'),
'invalid': _('Enter a valid email address.'),
}
default_validators = [validators.validate_email]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment