From 2e0a2a6e330f83d3726708319087460a628a1d30 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 4 Oct 2020 09:57:08 +0530 Subject: [PATCH] String changes --- src/calibre/db/cli/cmd_list_categories.py | 2 +- src/calibre/gui2/open_with.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/db/cli/cmd_list_categories.py b/src/calibre/db/cli/cmd_list_categories.py index da94ef0fe9..83be465204 100644 --- a/src/calibre/db/cli/cmd_list_categories.py +++ b/src/calibre/db/cli/cmd_list_categories.py @@ -25,7 +25,7 @@ def option_parser(get_parser, args): %prog list_categories [options] Produce a report of the category information in the database. The -information is the equivalent of what is shown in the tags pane. +information is the equivalent of what is shown in the Tag browser. ''' ) ) diff --git a/src/calibre/gui2/open_with.py b/src/calibre/gui2/open_with.py index 912a7caf74..e38a52e175 100644 --- a/src/calibre/gui2/open_with.py +++ b/src/calibre/gui2/open_with.py @@ -44,7 +44,7 @@ def run_program(entry, path, parent): except Exception as err: return error_dialog( parent, _('Failed to run'), _( - 'Failed to run program, click "Show Details" for more information'), + 'Failed to run program, click "Show details" for more information'), det_msg='Command line: %r\n%s' %(cmdline, as_unicode(err))) t = Thread(name='WaitProgram', target=process.wait) t.daemon = True @@ -142,7 +142,7 @@ if iswindows: except Exception as err: return error_dialog( parent, _('Failed to run'), _( - 'Failed to run program, click "Show Details" for more information'), + 'Failed to run program, click "Show details" for more information'), det_msg='Command line: %r\n%s' %(cmdline, as_unicode(err))) # }}}