String changes

This commit is contained in:
Kovid Goyal 2020-10-04 09:57:08 +05:30
parent c283bb5620
commit 2e0a2a6e33
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ def option_parser(get_parser, args):
%prog list_categories [options] %prog list_categories [options]
Produce a report of the category information in the database. The 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.
''' '''
) )
) )

View File

@ -44,7 +44,7 @@ def run_program(entry, path, parent):
except Exception as err: except Exception as err:
return error_dialog( return error_dialog(
parent, _('Failed to run'), _( 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))) det_msg='Command line: %r\n%s' %(cmdline, as_unicode(err)))
t = Thread(name='WaitProgram', target=process.wait) t = Thread(name='WaitProgram', target=process.wait)
t.daemon = True t.daemon = True
@ -142,7 +142,7 @@ if iswindows:
except Exception as err: except Exception as err:
return error_dialog( return error_dialog(
parent, _('Failed to run'), _( 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))) det_msg='Command line: %r\n%s' %(cmdline, as_unicode(err)))
# }}} # }}}