aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/login.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 18:15:55 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 18:15:55 +0200
commit040a11033beb098381dce49b79a9ebb1d9db5f37 (patch)
tree571b930f0c5c33419c71f8d96579b68e84e75855 /pyaggr3g470r/templates/login.html
parentUpdated README. (diff)
downloadnewspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.gz
newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.bz2
newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.zip
Updated french translations.
Diffstat (limited to 'pyaggr3g470r/templates/login.html')
-rw-r--r--pyaggr3g470r/templates/login.html6
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") }}
bgstack15