aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-24 00:33:00 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-24 00:33:00 +0200
commit1da3df18cdb6cb76bd9dd71626ba4eddb80c1634 (patch)
tree2db1cacf8a73911d7b4f5b47055bc15243d3653a /pyaggr3g470r/templates
parentAnd now its a typo... (diff)
downloadnewspipe-1da3df18cdb6cb76bd9dd71626ba4eddb80c1634.tar.gz
newspipe-1da3df18cdb6cb76bd9dd71626ba4eddb80c1634.tar.bz2
newspipe-1da3df18cdb6cb76bd9dd71626ba4eddb80c1634.zip
Updated translations.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/home.html3
-rw-r--r--pyaggr3g470r/templates/management.html2
2 files changed, 3 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index e453663c..63c4db07 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -16,7 +16,8 @@
</div>
<div class="col-md-9">
{% if result|count == 0 %}
- <h1>{{ _('You are not subscribed to any feed.') }} <a href="/create_feed/">{{ _('Fix this.') }}</a></h1>
+ <h1>{{ _("You don't have any feeds.") }}</h1>
+ <h1><a href="/create_feed/">{{ _('Add some') }}</a>, {{ _('or') }} <a href="/management/#import-opml">{{ _('upload an OPML file.') }}</a></h1>
{% else %}
{% for feed in result|sort(attribute="title") %}
<div class="row" id="{{ feed.id }}">
diff --git a/pyaggr3g470r/templates/management.html b/pyaggr3g470r/templates/management.html
index 6a58919e..fb2b8601 100644
--- a/pyaggr3g470r/templates/management.html
+++ b/pyaggr3g470r/templates/management.html
@@ -29,7 +29,7 @@
</div>
<div class="jumbotron">
<h1>{{ _('Import/export feeds') }}</h1>
- <h2>{{ _('Import') }}</h2>
+ <h2 id="import-opml">{{ _('Import') }}</h2>
<form action="" method="post" id="formImportOPML" enctype="multipart/form-data">
<span class="btn btn-default btn-file">{{ _('Batch import feeds from OPML') }} (<span class="text-info">*.xml {{ _('or') }} *.opml</span>)<input type="file" name="opmlfile" /></span>
<button class="btn btn-default" type="submit">OK</button>
bgstack15