diff options
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/popular.html | 6 |
1 files changed, 3 insertions, 3 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>  + <a href="{{ feed[0] }}">{{ feed[0] }}</a> <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> |