aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 08:55:35 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 08:55:35 +0200
commit372f3faa70cb8f9aba9678151ee96cdc006c4fc9 (patch)
treef920a5c8578bf8e255dc2ec2bc29c7127a4a7fa4 /src/web/views
parentImproved layout. (diff)
downloadnewspipe-372f3faa70cb8f9aba9678151ee96cdc006c4fc9.tar.gz
newspipe-372f3faa70cb8f9aba9678151ee96cdc006c4fc9.tar.bz2
newspipe-372f3faa70cb8f9aba9678151ee96cdc006c4fc9.zip
Updated translations.
Diffstat (limited to 'src/web/views')
-rw-r--r--src/web/views/bookmark.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/views/bookmark.py b/src/web/views/bookmark.py
index 2f6df6bd..4e447899 100644
--- a/src/web/views/bookmark.py
+++ b/src/web/views/bookmark.py
@@ -52,7 +52,7 @@ bookmark_bp = Blueprint('bookmark', __name__, url_prefix='/bookmark')
@login_required
def list(per_page):
"Lists the bookmarks."
- head_titles = ["Bookmarks"]
+ head_titles = [gettext("Bookmarks")]
page, per_page, offset = get_page_args()
bookmark_contr = BookmarkController(current_user.id)
@@ -74,7 +74,7 @@ def list(per_page):
@login_required
def form(bookmark_id=None):
"Form to create/edit bookmarks."
- action = gettext("Add a bookmark")
+ action = gettext("Add a new bookmark")
head_titles = [action]
if bookmark_id is None:
return render_template('edit_bookmark.html', action=action,
bgstack15