diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-01 17:29:58 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-01 17:29:58 +0200 |
commit | 6a1631476cfd5b46b1c778fff680ea2bc554baaa (patch) | |
tree | c33476826be8efee600c5cd33e866201e776cc9c /pyaggr3g470r/templates/favorites.html | |
parent | Updated translation. (diff) | |
download | newspipe-6a1631476cfd5b46b1c778fff680ea2bc554baaa.tar.gz newspipe-6a1631476cfd5b46b1c778fff680ea2bc554baaa.tar.bz2 newspipe-6a1631476cfd5b46b1c778fff680ea2bc554baaa.zip |
Internationalization to french in progress.
Diffstat (limited to 'pyaggr3g470r/templates/favorites.html')
-rw-r--r-- | pyaggr3g470r/templates/favorites.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyaggr3g470r/templates/favorites.html b/pyaggr3g470r/templates/favorites.html index 50378d3c..b0357b41 100644 --- a/pyaggr3g470r/templates/favorites.html +++ b/pyaggr3g470r/templates/favorites.html @@ -3,19 +3,19 @@ <div class="container"> {% if feeds|count == 0 %} <div class="page-header"> - <h1>No favorites</h1> + <h1>{{ _('No favorites') }}</h1> </div> {% else %} <div class="page-header"> - <h1>Favorites articles <small>{{ nb_favorites }}</small></h1> + <h1>{{ _('Favorites articles') }} <small>{{ nb_favorites }}</small></h1> </div> {% for feed in feeds|sort(attribute="title") %} <div class="row"> <div class="col-md-6 col-md-offset-3"> <h1>{{ feed.title|safe }}</h1> - <a href="/articles/{{ feed.id }}/100"><i class="glyphicon glyphicon-th-list" title="More articles"></i></a> - <a href="/feed/{{ feed.id }}"><i class="glyphicon glyphicon-info-sign" title="Details"></i></a> - <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a> + <a href="/articles/{{ feed.id }}/100"><i class="glyphicon glyphicon-th-list" title="{{ _('More articles') }}"></i></a> + <a href="/feed/{{ feed.id }}"><i class="glyphicon glyphicon-info-sign" title="{{ _('Details') }}"></i></a> + <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a> </div> </div> {% for number in range(0, feed.articles.all()|length-(feed.articles.all()|length % 3), 3) %} |