aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-04 11:24:57 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-04 11:24:57 +0100
commitf3ceccf53cc7b39312caf0c483f49e203cccf20e (patch)
tree566fc4815ad87d91b9ec9e707aa3f768bddf6f88
parentUpdated README. (diff)
downloadnewspipe-f3ceccf53cc7b39312caf0c483f49e203cccf20e.tar.gz
newspipe-f3ceccf53cc7b39312caf0c483f49e203cccf20e.tar.bz2
newspipe-f3ceccf53cc7b39312caf0c483f49e203cccf20e.zip
Updated some strings in the user data management template.
-rw-r--r--newspipe/web/templates/management.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/newspipe/web/templates/management.html b/newspipe/web/templates/management.html
index 6cd6ec97..22ebde8a 100644
--- a/newspipe/web/templates/management.html
+++ b/newspipe/web/templates/management.html
@@ -36,7 +36,7 @@
<div class="row">
<div class="col">
<h5>{{ _('Import') }}</h5>
- <p>{{ _('Import a Newspipe account') }} (*.json)</p>
+ <p>{{ _('Import a Newspipe account (*.json).') }}</p>
<form action="" method="post" id="formImportJSON" enctype="multipart/form-data">
<input type="file" name="jsonfile" />
<button class="btn btn-primary" type="submit">OK</button>
@@ -57,7 +57,7 @@
<div class="row">
<div class="col">
<h5>{{ _('Import') }}</h5>
- <p>{{ _('Batch import feeds from OPML') }} (*.xml {{ _('or') }} *.opml).</p>
+ <p>{{ _('Import feeds from OPML (*.xml or *.opml).') }}</p>
<form action="" method="post" id="formImportOPML" enctype="multipart/form-data">
<input type="file" name="opmlfile" />
<button class="btn btn-primary" type="submit">OK</button>
@@ -65,7 +65,7 @@
</div>
<div class="col">
<h5>{{ _('Export') }}</h5>
- <p>{{ _('Export your feeds to OPML.') }}</p>
+ <p>{{ _('Export feeds to OPML.') }}</p>
<form class="form" action="{{ url_for('feeds.export') }}" method="GET" id="formExportOPML">
<div class="form-group">
<div class="input-group">
bgstack15