From 5cb4be90005c5e709a12d1ea653dacaf6c72fddf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 14 Oct 2021 21:37:44 +0530 Subject: [PATCH] Fix #1947178 [[Enhancement - E-book viewer] Make string translatable](https://bugs.launchpad.net/calibre/+bug/1947178) --- src/pyj/read_book/selection_bar.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/selection_bar.pyj b/src/pyj/read_book/selection_bar.pyj index 0ce50a4f0a..59e929c64d 100644 --- a/src/pyj/read_book/selection_bar.pyj +++ b/src/pyj/read_book/selection_bar.pyj @@ -191,7 +191,7 @@ def all_actions(): 'search': a('search', _('Search for selection in the book') + ' [F]', 'book_search'), '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'), - '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'), 'speak': a('bullhorn', _('Read aloud') + ' [T]', 'speak_aloud'), 'cite': a('reference-mode', _('Copy citation to clipboard') + ' [X]', 'cite'),