This commit is contained in:
Kovid Goyal 2020-06-03 17:23:27 +05:30
parent d56014655f
commit 7b1bf9b260
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -300,11 +300,11 @@ class EbookViewer(MainWindow):
if num < 0: if num < 0:
tt = _('Search') tt = _('Search')
elif num == 0: elif num == 0:
tt = _('Search [no matches]') tt = _('Search :: no matches')
elif num == 1: elif num == 1:
tt = _('Search [one match]') tt = _('Search :: one match')
else: else:
tt = _('Search [{} matches]').format(num) tt = _('Search :: {} matches').format(num)
self.search_dock.setWindowTitle(tt) self.search_dock.setWindowTitle(tt)
def show_search_with_current_selection(self, pos_data): def show_search_with_current_selection(self, pos_data):