aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--messages.pot4
-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
4 files changed, 7 insertions, 6 deletions
diff --git a/messages.pot b/messages.pot
index d72a0ea0..baedc587 100644
--- a/messages.pot
+++ b/messages.pot
@@ -8,7 +8,7 @@ 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"
+"POT-Creation-Date: 2014-05-05 14:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -131,7 +131,7 @@ msgid "Email already used."
msgstr ""
#: pyaggr3g470r/views.py:188
-msgid "Your account has been created. You can now sign."
+msgid "Your account has been created. You can now sign in."
msgstr ""
#: pyaggr3g470r/views.py:222
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