aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-14 14:53:59 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-14 14:53:59 +0200
commitd28a2db6f95c1cf2458051f2fbe9ccabf71d2955 (patch)
tree046fd22737f7faaddaaadbd08fce9c4ecf5301a8 /pyaggr3g470r
parentStrip '=' character at the end of URLs. (diff)
downloadnewspipe-d28a2db6f95c1cf2458051f2fbe9ccabf71d2955.tar.gz
newspipe-d28a2db6f95c1cf2458051f2fbe9ccabf71d2955.tar.bz2
newspipe-d28a2db6f95c1cf2458051f2fbe9ccabf71d2955.zip
Updated translations.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mobin11591 -> 11651 bytes
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po13
-rw-r--r--pyaggr3g470r/views.py2
3 files changed, 7 insertions, 8 deletions
diff --git a/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo b/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo
index 8ea18d8a..03ee2f2c 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 d1c0eca8..b6a0e49d 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-06-13 18:48+0200\n"
-"PO-Revision-Date: 2014-06-13 18:49+0100\n"
+"POT-Creation-Date: 2014-06-14 14:52+0200\n"
+"PO-Revision-Date: 2014-06-14 14:53+0100\n"
"Last-Translator: Cédric Bonhomme <cedric@cedricbonhomme.org>\n"
"Language-Team: fr <LL@li.org>\n"
"Language: fr\n"
@@ -149,6 +149,10 @@ msgstr "Votre compte a été créé. Vérifiez votre courrier pour le confirmer.
msgid "Downloading articles..."
msgstr "Téléchargement des articles."
+#: pyaggr3g470r/views.py:334 pyaggr3g470r/views.py:394
+msgid "This article do not exist."
+msgstr "Cet article n'existe pas."
+
#: pyaggr3g470r/views.py:391 pyaggr3g470r/templates/home.html:89
msgid "Article"
msgstr "Article"
@@ -157,10 +161,6 @@ msgstr "Article"
msgid "deleted."
msgstr "supprimé."
-#: pyaggr3g470r/views.py:394
-msgid "This article do not exist."
-msgstr "Cet article n'existe pas."
-
#: pyaggr3g470r/views.py:491
msgid "Database indexed."
msgstr "Base de données indexée."
@@ -684,7 +684,6 @@ msgid "Unread articles"
msgstr "Articles non lus"
#: pyaggr3g470r/templates/unread.html:19
-#, fuzzy
msgid "Mark all feed as read"
msgstr "Marquer tout comme lu"
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index 56dc19ad..178188d6 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -331,7 +331,7 @@ def article(article_id=None):
return render_template('article.html', head_title=utils.clear_string(article.title),
article=article,
previous_article=previous_article, next_article=next_article)
- flash("This article do not exist.", 'warning')
+ flash(gettext("This article do not exist."), 'warning')
return redirect(redirect_url())
bgstack15