From fe45cb1111fedd53d21f608a1bab7b9bfb634c2e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 9 Dec 2020 08:03:10 +0530 Subject: [PATCH] String changes --- manual/url_scheme.rst | 4 ++-- src/calibre/gui2/viewer/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manual/url_scheme.rst b/manual/url_scheme.rst index c31ebf2332..34949fcd53 100644 --- a/manual/url_scheme.rst +++ b/manual/url_scheme.rst @@ -57,8 +57,8 @@ You can copy a link to the current book displayed in calibre by right clicking the :guilabel:`Book details panel` and choosing :guilabel:`Copy link to book`. -Open a specific book in the viewer at a specific position ---------------------------------------------------------------- +Open a specific book in the E-book viewer at a specific position +------------------------------------------------------------------- The URL syntax is:: diff --git a/src/calibre/gui2/viewer/main.py b/src/calibre/gui2/viewer/main.py index 1bf1142bdd..350494da9e 100644 --- a/src/calibre/gui2/viewer/main.py +++ b/src/calibre/gui2/viewer/main.py @@ -102,7 +102,7 @@ def send_message_to_viewer_instance(args, open_at): try: send_message_in_process(msg, address=viewer_socket_address()) except Exception as err: - error_dialog(None, _('Connect to E-book viewer failed'), _( + error_dialog(None, _('Connecting to E-book viewer failed'), _( 'Unable to connect to existing E-book viewer window, try restarting the viewer.'), det_msg=str(err), show=True) raise SystemExit(1) print('Opened book in existing viewer instance')