From deebe240eea28401f1176310d7d343843e34e01e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 25 Jan 2015 20:53:12 +0530 Subject: [PATCH] Fix #1414444 [Untranslated string "occurrences of"](https://bugs.launchpad.net/calibre/+bug/1414444) --- src/calibre/gui2/tweak_book/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/tweak_book/search.py b/src/calibre/gui2/tweak_book/search.py index 6e02c3efa4..d905b64bd5 100644 --- a/src/calibre/gui2/tweak_book/search.py +++ b/src/calibre/gui2/tweak_book/search.py @@ -1309,7 +1309,7 @@ def run_search( 'Currently selected text does not match the search query.')) def count_message(action, count, show_diff=False): - msg = _('%(action)s %(num)s occurrences of %(query)s' % dict(num=count, query=errfind, action=action)) + msg = _('%(action)s %(num)s occurrences of %(query)s') % dict(num=count, query=errfind, action=action) if show_diff and count > 0: d = MessageBox(MessageBox.INFO, _('Searching done'), prepare_string_for_xml(msg), parent=gui_parent, show_copy_button=False) d.diffb = b = d.bb.addButton(_('See what &changed'), d.bb.ActionRole)