aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-01 23:34:03 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-01 23:34:03 +0200
commitecb56d246bd099a2d96687233460b7f3ead3e6fd (patch)
tree6a51b6d7f5e9ac0becc910b773d7b19eb9dbf70e /src/web/templates
parentDisplay only recent bookmarks when disconnected. (diff)
downloadnewspipe-ecb56d246bd099a2d96687233460b7f3ead3e6fd.tar.gz
newspipe-ecb56d246bd099a2d96687233460b7f3ead3e6fd.tar.bz2
newspipe-ecb56d246bd099a2d96687233460b7f3ead3e6fd.zip
Updated translations.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/about.html2
-rw-r--r--src/web/templates/about_more.html10
2 files changed, 6 insertions, 6 deletions
diff --git a/src/web/templates/about.html b/src/web/templates/about.html
index 70ae0a5f..54deaf11 100644
--- a/src/web/templates/about.html
+++ b/src/web/templates/about.html
@@ -12,7 +12,7 @@
redistribute the <a href="https://github.com/newspipe/newspipe">source code</a>
according to the <a href="https://www.gnu.org/licenses/agpl-3.0.html">Affero GPL</a> license.') }}</p>
<p>{{ _('Found a bug? Report it <a href="https://github.com/newspipe/newspipe/issues">here</a>.') }}</p>
- <p><a href="{{ url_for('about_more') }}">More information</a> about this instance.</p>
+ <p><a href="{{ url_for('about_more') }}">{{ _('More information') }}</a> {{ _('about this instance.') }}</p>
</div>
<div class="well">
<h1>{{ _('Help') }}</h1>
diff --git a/src/web/templates/about_more.html b/src/web/templates/about_more.html
index dd7088a5..d530861f 100644
--- a/src/web/templates/about_more.html
+++ b/src/web/templates/about_more.html
@@ -2,11 +2,11 @@
{% block content %}
<div class="container">
<ul class="list-group">
- <li class="list-group-item">Newspipe version: <a href="https://github.com/newspipe/newspipe/releases/tag/{{newspipe_version}}">{{newspipe_version}}</a></li>
- <li class="list-group-item">Running on Heroku: {{on_heroku}}</li>
- <li class="list-group-item">Registration: {{registration}}</li>
- <li class="list-group-item">Python version: {{python_version}}</li>
- <li class="list-group-item">Number of users: {{nb_users}}</li>
+ <li class="list-group-item">{{ _('Newspipe version') }}: <a href="https://github.com/newspipe/newspipe/releases/tag/{{newspipe_version}}">{{newspipe_version}}</a></li>
+ <li class="list-group-item">{{ _('Running on Heroku') }}: {{on_heroku}}</li>
+ <li class="list-group-item">{{ _('Registration') }}: {{registration}}</li>
+ <li class="list-group-item">{{ _('Python version') }}: {{python_version}}</li>
+ <li class="list-group-item">{{ _('Number of users') }}: {{nb_users}}</li>
</ul>
</div><!-- /.container -->
{% endblock %}
bgstack15