diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-26 08:55:35 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-26 08:55:35 +0200 |
commit | 372f3faa70cb8f9aba9678151ee96cdc006c4fc9 (patch) | |
tree | f920a5c8578bf8e255dc2ec2bc29c7127a4a7fa4 /src/web/views/bookmark.py | |
parent | Improved layout. (diff) | |
download | newspipe-372f3faa70cb8f9aba9678151ee96cdc006c4fc9.tar.gz newspipe-372f3faa70cb8f9aba9678151ee96cdc006c4fc9.tar.bz2 newspipe-372f3faa70cb8f9aba9678151ee96cdc006c4fc9.zip |
Updated translations.
Diffstat (limited to 'src/web/views/bookmark.py')
-rw-r--r-- | src/web/views/bookmark.py | 4 |
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, |