aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/inactives.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 17:29:58 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 17:29:58 +0200
commit6a1631476cfd5b46b1c778fff680ea2bc554baaa (patch)
treec33476826be8efee600c5cd33e866201e776cc9c /pyaggr3g470r/templates/inactives.html
parentUpdated translation. (diff)
downloadnewspipe-6a1631476cfd5b46b1c778fff680ea2bc554baaa.tar.gz
newspipe-6a1631476cfd5b46b1c778fff680ea2bc554baaa.tar.bz2
newspipe-6a1631476cfd5b46b1c778fff680ea2bc554baaa.zip
Internationalization to french in progress.
Diffstat (limited to 'pyaggr3g470r/templates/inactives.html')
-rw-r--r--pyaggr3g470r/templates/inactives.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/inactives.html b/pyaggr3g470r/templates/inactives.html
index 0d093029..1916e09a 100644
--- a/pyaggr3g470r/templates/inactives.html
+++ b/pyaggr3g470r/templates/inactives.html
@@ -3,18 +3,18 @@
<div class="container">
<div class="jumbotron">
<form method=get action="/inactives/">
- <p>Days of inactivity:</p>
+ <p>{{ _('Days of inactivity') }}:</p>
<input type="number" name="nb_days" class="form-control" value="{{ nb_days }}" min="0" max="1000000" step="1" size="4" style="text-align: center" />
</form>
<br />
{% if inactives != [] %}
<ul class="list-group">
{% for item in inactives %}
- <li class="list-group-item"><a href="/feed/{{ item[0].id }}">{{ item[0].title }}</a> - {{ item[1].days }} days</li>
+ <li class="list-group-item"><a href="/feed/{{ item[0].id }}">{{ item[0].title }}</a> - {{ item[1].days }} {{ _('days') }}</li>
{% endfor %}
</ul>
{% else %}
- <p>No inactive feeds.<p>
+ <p>{{ _('No inactive feeds.') }}<p>
{% endif %}
</div>
</div><!-- /.container -->
bgstack15