From 372f3faa70cb8f9aba9678151ee96cdc006c4fc9 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 26 May 2017 08:55:35 +0200 Subject: Updated translations. --- src/web/views/bookmark.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/web/views') 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, -- cgit