aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feeds.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/feeds.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/feeds.html')
-rw-r--r--pyaggr3g470r/templates/feeds.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
index 82e4afae..4caf6653 100644
--- a/pyaggr3g470r/templates/feeds.html
+++ b/pyaggr3g470r/templates/feeds.html
@@ -1,17 +1,17 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
- <h1>You are subscribed to {{ feeds.all()|count }} feeds &middot; Add a <a href="/create_feed/">feed</a></h1>
+ <h1>{{ _('You are subscribed to') }} {{ feeds.all()|count }} {{ _('feeds') }} &middot; {{ _('Add a') }} <a href="/create_feed/">{{ _('feed') }}</a></h1>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
- <th>Status</th>
- <th>Title</th>
- <th>Site</th>
- <th>Articles</th>
- <th>Actions</th>
+ <th>{{ _('Status') }}</th>
+ <th>{{ _('Title') }}</th>
+ <th>{{ _('Site') }}</th>
+ <th>{{ _('Articles') }}</th>
+ <th>{{ _('Actions') }}</th>
</tr>
</thead>
<tbody>
@@ -20,18 +20,18 @@
<td>{{ loop.index }}</td>
<td>
{% if feed.enabled %}
- <i class="glyphicon glyphicon-eye-open" title="Feed enabled"></i>
+ <i class="glyphicon glyphicon-eye-open" title="{{ _('Feed enabled') }}"></i>
{% else %}
- <i class="glyphicon glyphicon-eye-close" title="Feed disabled"></i>
+ <i class="glyphicon glyphicon-eye-close" title="{{ _('Feed disabled') }}"></i>
{% endif %}
</td>
<td><a href="/feed/{{ feed.id }}" {% if feed.description %}title="{{ feed.description }}"{% endif %}>{{ feed.title }}</a></td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
<td>{{ feed.articles.all()|count }}</td>
<td>
- <a href="/articles/{{ feed.id }}/100"><i class="glyphicon glyphicon-th-list" title="Articles"></i></a>
- <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
- <a href="/delete_feed/{{ feed.id }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a>
+ <a href="/articles/{{ feed.id }}/100"><i class="glyphicon glyphicon-th-list" title="{{ _('Articles') }}"></i></a>
+ <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a>
+ <a href="/delete_feed/{{ feed.id }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}"></i></a>
</td>
</tr>
{% endfor %}
bgstack15