aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-09-27 22:57:48 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-09-27 22:57:48 +0200
commit5f0aec3ca80724f4b1a090e400833577e79aed3d (patch)
tree6c8d86e3ff0de5f9ae86aec3d3a0e45793908166 /pyaggr3g470r/forms.py
parentRelease 5.6.6. (diff)
downloadnewspipe-5f0aec3ca80724f4b1a090e400833577e79aed3d.tar.gz
newspipe-5f0aec3ca80724f4b1a090e400833577e79aed3d.tar.bz2
newspipe-5f0aec3ca80724f4b1a090e400833577e79aed3d.zip
Translations have been updated.
Diffstat (limited to 'pyaggr3g470r/forms.py')
-rw-r--r--pyaggr3g470r/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/forms.py b/pyaggr3g470r/forms.py
index fdd1f24d..f34c3f72 100644
--- a/pyaggr3g470r/forms.py
+++ b/pyaggr3g470r/forms.py
@@ -118,7 +118,7 @@ class InformationMessageForm(Form):
submit = SubmitField(lazy_gettext("Send"))
class RecoverPasswordForm(Form):
- email = EmailField("Email", [validators.Length(min=6, max=35), validators.Required(lazy_gettext("Please enter your email address."))])
+ email = EmailField(lazy_gettext("Email"), [validators.Length(min=6, max=35), validators.Required(lazy_gettext("Please enter your email address."))])
submit = SubmitField(lazy_gettext("Recover"))
def __init__(self, *args, **kwargs):
bgstack15