Fix #1947178 [[Enhancement - E-book viewer] Make string translatable](https://bugs.launchpad.net/calibre/+bug/1947178)

This commit is contained in:
Kovid Goyal 2021-10-14 21:37:44 +05:30
parent ed7d57358e
commit 5cb4be9000
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -191,7 +191,7 @@ def all_actions():
'search': a('search', _('Search for selection in the book') + ' [F]', 'book_search'), 'search': a('search', _('Search for selection in the book') + ' [F]', 'book_search'),
'bookmark': a('bookmark', _('Create a bookmark') + ' [Ctrl+Alt+B]', 'new_bookmark'), 'bookmark': a('bookmark', _('Create a bookmark') + ' [Ctrl+Alt+B]', 'new_bookmark'),
'search_net': a('global-search', _('Search for selection on the net') + ' [S]', 'internet_search'), 'search_net': a('global-search', _('Search for selection on the net') + ' [S]', 'internet_search'),
'remove_highlight': a('trash', _('Remove this highlight') + ' [Delete or D]', 'remove_highlight', True), 'remove_highlight': a('trash', _('Remove this highlight') + _(' [Delete or D]'), 'remove_highlight', True),
'clear': a('close', _('Clear selection') + ' [Esc]', 'clear_selection'), 'clear': a('close', _('Clear selection') + ' [Esc]', 'clear_selection'),
'speak': a('bullhorn', _('Read aloud') + ' [T]', 'speak_aloud'), 'speak': a('bullhorn', _('Read aloud') + ' [T]', 'speak_aloud'),
'cite': a('reference-mode', _('Copy citation to clipboard') + ' [X]', 'cite'), 'cite': a('reference-mode', _('Copy citation to clipboard') + ' [X]', 'cite'),