aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mobin9898 -> 9765 bytes
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po7
-rw-r--r--pyaggr3g470r/views.py2
3 files changed, 5 insertions, 4 deletions
diff --git a/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo b/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo
index 6fb63ea3..cf20b342 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 0172f25b..68fddd45 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-05 14:07+0200\n"
-"PO-Revision-Date: 2014-05-05 14:07+0100\n"
+"POT-Creation-Date: 2014-05-05 14:16+0200\n"
+"PO-Revision-Date: 2014-05-05 14:16+0100\n"
"Last-Translator: Cédric Bonhomme <cedric@cedricbonhomme.org>\n"
"Language-Team: fr <LL@li.org>\n"
"Language: fr\n"
@@ -137,7 +137,8 @@ msgid "Email already used."
msgstr "Email déjà utilisé."
#: pyaggr3g470r/views.py:188
-msgid "Your account has been created. You can now sign."
+#, fuzzy
+msgid "Your account has been created. You can now sign in."
msgstr "Votre compte a été créé. Vous pouvez maintenant vous connecter."
#: pyaggr3g470r/views.py:222
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index a0373ef0..c8e268bc 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -185,7 +185,7 @@ def signup():
flash(gettext('Email already used.'), 'warning')
return render_template('signup.html', form=form)
- flash(gettext('Your account has been created. You can now sign.'), 'success')
+ flash(gettext('Your account has been created. You can now sign in.'), 'success')
return redirect(url_for('home'))
return render_template('signup.html', form=form)
bgstack15