String changes

This commit is contained in:
Kovid Goyal 2020-09-13 16:07:26 +05:30
parent c363d790ab
commit 1673d646d6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@
- title: "Edit book: Allow customizing the base background/foreground and link colors for the preview window." - title: "Edit book: Allow customizing the base background/foreground and link colors for the preview window."
tickets: [1889925] tickets: [1889925]
- title: "Quickview panel: Add actions to the context menu to search for book in library, open in viewer, etc." - title: "Quickview panel: Add actions to the context menu to search for book in library, open in E-book viewer, etc."
tickets: [1891765] tickets: [1891765]
- title: "Allow forcing calibre to remember the column width for the On device column by right clicking the header of the column" - title: "Allow forcing calibre to remember the column width for the On device column by right clicking the header of the column"

View File

@ -48,10 +48,10 @@ using the viewer Preferences under :guilabel:`Page layout` or by pressing the
Bookmarks Bookmarks
^^^^^^^^^^^^ ^^^^^^^^^^^^
When you are in the middle of a book and close the viewer, it will remember When you are in the middle of a book and close the E-book viewer, it will remember
where you stopped reading and return there the next time you open the book. You where you stopped reading and return there the next time you open the book. You
can also set bookmarks in the book by using the :guilabel:`Bookmarks` button in can also set bookmarks in the book by using the :guilabel:`Bookmarks` button in
the viewer controls or pressing :kbd:`ctrl+b`. When viewing EPUB format books, the E-book viewer controls or pressing :kbd:`ctrl+b`. When viewing EPUB format books,
these bookmarks are actually saved in the EPUB file itself. You can add these bookmarks are actually saved in the EPUB file itself. You can add
bookmarks, then send the file to a friend. When they open the file, they will bookmarks, then send the file to a friend. When they open the file, they will
be able to see your bookmarks. You can turn off this behavior in the be able to see your bookmarks. You can turn off this behavior in the

View File

@ -141,7 +141,7 @@ def friendly_username(user_type, user):
if key == ('web', '*'): if key == ('web', '*'):
return _('Anonymous Content server user') return _('Anonymous Content server user')
if key == ('local', 'viewer'): if key == ('local', 'viewer'):
return _('Local viewer user') return _('Local E-book viewer user')
return user return user

View File

@ -145,7 +145,7 @@ def ensure_single_instance(args, open_at):
t.join(3.0) t.join(3.0)
if t.is_alive() or t.conn is None: if t.is_alive() or t.conn is None:
error_dialog(None, _('Connect to viewer failed'), _( error_dialog(None, _('Connect to viewer failed'), _(
'Unable to connect to existing viewer window, try restarting the viewer.'), show=True) 'Unable to connect to existing E-book viewer window, try restarting the viewer.'), show=True)
raise SystemExit(1) raise SystemExit(1)
t.conn.send((os.path.abspath(args[1]), open_at)) t.conn.send((os.path.abspath(args[1]), open_at))
t.conn.close() t.conn.close()
@ -164,10 +164,10 @@ View an e-book.
''')) '''))
a = parser.add_option a = parser.add_option
a('--raise-window', default=False, action='store_true', a('--raise-window', default=False, action='store_true',
help=_('If specified, viewer window will try to come to the ' help=_('If specified, the E-book viewer window will try to come to the '
'front when started.')) 'front when started.'))
a('--full-screen', '--fullscreen', '-f', default=False, action='store_true', a('--full-screen', '--fullscreen', '-f', default=False, action='store_true',
help=_('If specified, viewer window will try to open ' help=_('If specified, the E-book viewer window will try to open '
'full screen when started.')) 'full screen when started.'))
a('--force-reload', default=False, action='store_true', a('--force-reload', default=False, action='store_true',
help=_('Force reload of all opened books')) help=_('Force reload of all opened books'))