aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
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
parentUpdated README. (diff)
downloadnewspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.gz
newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.bz2
newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.zip
Updated french translations.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/login.html6
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mobin7154 -> 7266 bytes
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po14
-rw-r--r--pyaggr3g470r/views.py2
4 files changed, 15 insertions, 7 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") }}
diff --git a/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo b/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo
index 1bdfcc31..334cf813 100644
--- a/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo
+++ b/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po b/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po
index 75a95595..ca495e38 100644
--- a/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po
+++ b/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2014-05-01 17:26+0200\n"
-"PO-Revision-Date: 2014-05-01 17:28+0100\n"
+"POT-Creation-Date: 2014-05-01 18:13+0200\n"
+"PO-Revision-Date: 2014-05-01 18:14+0100\n"
"Last-Translator: Cédric Bonhomme <cedric@cedricbonhomme.org>\n"
"Language-Team: fr <LL@li.org>\n"
"Language: fr\n"
@@ -31,7 +31,7 @@ msgstr "Mot de passe"
msgid "Please enter a password."
msgstr "S'il vous plaît entrer un mot de passe."
-#: pyaggr3g470r/forms.py:42
+#: pyaggr3g470r/forms.py:42 pyaggr3g470r/templates/login.html:5
msgid "Log In"
msgstr "Connexion"
@@ -425,6 +425,14 @@ msgstr "À propos"
msgid "Logout"
msgstr "Déconnexion"
+#: pyaggr3g470r/templates/login.html:19
+msgid "Your email"
+msgstr "Votre email"
+
+#: pyaggr3g470r/templates/login.html:23
+msgid "Your Password"
+msgstr "Votre mot de passe"
+
#: pyaggr3g470r/templates/management.html:5
msgid "Your subscriptions"
msgstr "Vos abonnements"
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index f9a44228..e9b2e509 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -119,7 +119,7 @@ def get_locale():
Called before each request to give us a chance to choose
the language to use when producing its response.
"""
- return request.accept_languages.best_match(conf.LANGUAGES.keys())
+ return "fr"#request.accept_languages.best_match(conf.LANGUAGES.keys())
#
bgstack15