aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-04 19:34:27 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-04 19:34:27 +0200
commitc6e5893111671b361eff4bcc1e669925c46af66a (patch)
treeb0de493d877b7ce47abd39da9fef49d8a6ad977d /pyaggr3g470r
parentUpdated translations. (diff)
downloadnewspipe-c6e5893111671b361eff4bcc1e669925c46af66a.tar.gz
newspipe-c6e5893111671b361eff4bcc1e669925c46af66a.tar.bz2
newspipe-c6e5893111671b361eff4bcc1e669925c46af66a.zip
Updated translations.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/home.html2
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mobin8636 -> 8637 bytes
-rw-r--r--pyaggr3g470r/translations/fr/LC_MESSAGES/messages.po6
-rw-r--r--pyaggr3g470r/views.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index 565614fe..f10d4e11 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -2,7 +2,7 @@
{% block content %}
<div class="container">
{% if result|count == 0 %}
- <h1>{{ _('You are not subscribed to any feed.') }} <a href="/create_feed/">{{ _('Fix this') }}</a>.</h1>
+ <h1>{{ _('You are not subscribed to any feed.') }} <a href="/create_feed/">{{ _('Fix this.') }}</a></h1>
{% else %}
{% for feed in result|sort(attribute="title") %}
<div class="row">
diff --git a/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo b/pyaggr3g470r/translations/fr/LC_MESSAGES/messages.mo
index 916d871e..f508de77 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 9ccaba1d..b441f6fa 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-04 19:22+0200\n"
-"PO-Revision-Date: 2014-05-04 19:24+0100\n"
+"POT-Creation-Date: 2014-05-04 19:30+0200\n"
+"PO-Revision-Date: 2014-05-04 19:32+0100\n"
"Last-Translator: Cédric Bonhomme <cedric@cedricbonhomme.org>\n"
"Language-Team: fr <LL@li.org>\n"
"Language: fr\n"
@@ -383,7 +383,7 @@ msgid "You are not subscribed to any feed."
msgstr "Vous êtes abonné à aucun flux."
#: pyaggr3g470r/templates/home.html:5
-msgid "Fix this"
+msgid "Fix this."
msgstr "Résolvez ce problème."
#: pyaggr3g470r/templates/home.html:15
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index 362a3f58..4729cd0c 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -118,7 +118,7 @@ def get_locale():
Called before each request to give us a chance to choose
the language to use when producing its response.
"""
- return "fr"#request.accept_languages.best_match(conf.LANGUAGES.keys())
+ return request.accept_languages.best_match(conf.LANGUAGES.keys())
@babel.timezoneselector
def get_timezone():
bgstack15