aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-21 22:55:09 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-21 22:55:09 +0200
commita2c3b50d2d484637fed7fb38426d9eeb131634c2 (patch)
treea7429c1872a83b6aac471760ed4197b6303a24d2 /src/web
parentAdd a new feed from the popular feeds page. (diff)
downloadnewspipe-a2c3b50d2d484637fed7fb38426d9eeb131634c2.tar.gz
newspipe-a2c3b50d2d484637fed7fb38426d9eeb131634c2.tar.bz2
newspipe-a2c3b50d2d484637fed7fb38426d9eeb131634c2.zip
Updated translations.
Diffstat (limited to 'src/web')
-rw-r--r--src/web/templates/popular.html6
-rw-r--r--src/web/translations/fr/LC_MESSAGES/messages.mobin17046 -> 17174 bytes
-rw-r--r--src/web/translations/fr/LC_MESSAGES/messages.po16
-rw-r--r--src/web/translations/messages.pot10
4 files changed, 24 insertions, 8 deletions
diff --git a/src/web/templates/popular.html b/src/web/templates/popular.html
index c4b42986..b1978bf1 100644
--- a/src/web/templates/popular.html
+++ b/src/web/templates/popular.html
@@ -1,14 +1,14 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
- <h1>Popular feeds</h1>
+ <h1>{{ _('Popular feeds') }}</h1>
<ul class="list-group">
{% for feed in popular %}
<li class="list-group-item">
- <a href="{{ feed[0] }}">{{ feed[0] }}</a>&nbsp
+ <a href="{{ feed[0] }}">{{ feed[0] }}</a>&nbsp;
<a href="{{ url_for('feed.bookmarklet', url=feed[0]) }}" >
<span class="glyphicon glyphicon-plus text-muted" title="follow this feed"></span>
- <span class="text-muted">add this feed</a>
+ <span class="text-muted">{{ _('add this feed') }}</a>
</a>
<span class="badge">{{ feed[1] }}</span>
</li>
diff --git a/src/web/translations/fr/LC_MESSAGES/messages.mo b/src/web/translations/fr/LC_MESSAGES/messages.mo
index f9617d98..9622f8e1 100644
--- a/src/web/translations/fr/LC_MESSAGES/messages.mo
+++ b/src/web/translations/fr/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/src/web/translations/fr/LC_MESSAGES/messages.po b/src/web/translations/fr/LC_MESSAGES/messages.po
index 524208f8..eace0897 100644
--- a/src/web/translations/fr/LC_MESSAGES/messages.po
+++ b/src/web/translations/fr/LC_MESSAGES/messages.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2016-09-21 08:45+0200\n"
-"PO-Revision-Date: 2016-09-21 08:45+0100\n"
-"Last-Translator: Cedric Bonhomme <cedric.bonhomme@list.lu>\n"
+"POT-Creation-Date: 2016-09-21 22:53+0200\n"
+"PO-Revision-Date: 2016-09-21 22:54+0200\n"
+"Last-Translator: Cédric Bonhomme <cedric@cedricbonhomme.org>\n"
"Language-Team: fr <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Generated-By: Babel 1.3\n"
-"X-Generator: Poedit 1.6.10\n"
+"X-Generator: Poedit 1.8.7.1\n"
#: ../forms.py:46 ../forms.py:130 ../forms.py:155
#: ../templates/admin/dashboard.html:12
@@ -623,6 +623,14 @@ msgstr "Exporter le compte au format JSON"
msgid "Export articles"
msgstr "Exporter les articles"
+#: ../templates/popular.html:4
+msgid "Popular feeds"
+msgstr "Flux populaires"
+
+#: ../templates/popular.html:11
+msgid "add this feed"
+msgstr "ajouter ce flux"
+
#: ../templates/profile.html:4
msgid "Your Profile"
msgstr "Votre profil"
diff --git a/src/web/translations/messages.pot b/src/web/translations/messages.pot
index 226e8c7d..e89ef3e3 100644
--- a/src/web/translations/messages.pot
+++ b/src/web/translations/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2016-09-21 08:45+0200\n"
+"POT-Creation-Date: 2016-09-21 22:52+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"
@@ -598,6 +598,14 @@ msgstr ""
msgid "Export articles"
msgstr ""
+#: ../templates/popular.html:4
+msgid "Popular feeds"
+msgstr ""
+
+#: ../templates/popular.html:11
+msgid "add this feed"
+msgstr ""
+
#: ../templates/profile.html:4
msgid "Your Profile"
msgstr ""
bgstack15