aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-09 14:07:38 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-09 14:07:38 +0200
commita0203dc2aae6bd36dd980832b6ffbfdf75b5c936 (patch)
treec7a7493dedd3efcf4598d11d3c1911da19aa1f9d /src/web/templates
parentAdd a link to the list of categories. (diff)
downloadnewspipe-a0203dc2aae6bd36dd980832b6ffbfdf75b5c936.tar.gz
newspipe-a0203dc2aae6bd36dd980832b6ffbfdf75b5c936.tar.bz2
newspipe-a0203dc2aae6bd36dd980832b6ffbfdf75b5c936.zip
Updated translations.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/management.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/management.html b/src/web/templates/management.html
index 0a844365..eaf1de31 100644
--- a/src/web/templates/management.html
+++ b/src/web/templates/management.html
@@ -5,7 +5,7 @@
<h1>{{ _('Your subscriptions') }}</h1>
<p>{{ _('You are subscribed to') }} {{ nb_feeds }} <a href="/feeds">{{ _('feeds') }}</a>. <a href="{{ url_for("feed.form") }}">{{ _('Add') }}</a> {{ _('a feed') }}.</p>
<p>{{ nb_articles }} {{ _('articles are stored in the database with') }} {{ nb_unread_articles }} {{ _('unread articles') }}.</p>
- <p>You have {{ nb_categories }} <a href="{{ url_for("categories.list_")}}">categories</a>.</p>
+ <p>{{ _('You have') }} {{ nb_categories }} <a href="{{ url_for("categories.list_")}}">{{ _('categories') }}</a>.</p>
<a href="{{ url_for("articles.expire", weeks=10) }}" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete old articles.') }}');">{{ _('Delete articles older than 10 weeks') }}</a>
</div>
<div class="well">
bgstack15