diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-01 18:15:55 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-01 18:15:55 +0200 |
commit | 040a11033beb098381dce49b79a9ebb1d9db5f37 (patch) | |
tree | 571b930f0c5c33419c71f8d96579b68e84e75855 /pyaggr3g470r/templates | |
parent | Updated README. (diff) | |
download | newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.gz newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.bz2 newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.zip |
Updated french translations.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r-- | pyaggr3g470r/templates/login.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/login.html b/pyaggr3g470r/templates/login.html index 4b89afbe..4f3b6c87 100644 --- a/pyaggr3g470r/templates/login.html +++ b/pyaggr3g470r/templates/login.html @@ -2,7 +2,7 @@ {% block content %} <div class="container"> <div class="jumbotron"> - <h2>Log In</h2> + <h2>{{ _('Log In') }}</h2> {% for message in form.email.errors %} <div class="flash">{{ message }}</div> @@ -16,11 +16,11 @@ {{ form.hidden_tag() }} <div class="form-group"> - {{ form.email(class_="form-control", placeholder="Your email") }} + {{ form.email(class_="form-control", placeholder=_('Your email')) }} </div> <div class="form-group"> - {{ form.password(class_="form-control", placeholder="Your Password") }} + {{ form.password(class_="form-control", placeholder=_('Your Password')) }} </div> {{ form.submit(class_="btn") }} |