From d4dc80c9c463cdf446c723f070524e6ae1ee95ca Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 15 Nov 2019 11:02:51 +0530 Subject: [PATCH] Fix #1851908 [Suggest a name for the bookmark](https://bugs.launchpad.net/calibre/+bug/1851908) --- src/calibre/gui2/viewer/bookmarks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/viewer/bookmarks.py b/src/calibre/gui2/viewer/bookmarks.py index 4075656fda..4a1fcbc84f 100644 --- a/src/calibre/gui2/viewer/bookmarks.py +++ b/src/calibre/gui2/viewer/bookmarks.py @@ -267,7 +267,7 @@ class BookmarkManager(QWidget): def create_new_bookmark(self, pos_data): title, ok = QInputDialog.getText(self, _('Add bookmark'), - _('Enter title for bookmark:')) + _('Enter title for bookmark:'), text=_('Bookmark')) title = unicode_type(title).strip() if not ok or not title: return