aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views.py
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/views.py
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/views.py')
-rw-r--r--pyaggr3g470r/views.py2
1 files changed, 1 insertions, 1 deletions
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