From 0380742ea40b8dae096560481ef367389db87039 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 15 Nov 2013 11:40:12 +0530 Subject: [PATCH] Better names for searching marked text --- src/calibre/gui2/tweak_book/search.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/gui2/tweak_book/search.py b/src/calibre/gui2/tweak_book/search.py index 3a63e32093..62ed06b7c8 100644 --- a/src/calibre/gui2/tweak_book/search.py +++ b/src/calibre/gui2/tweak_book/search.py @@ -92,7 +92,7 @@ class SearchWidget(QWidget): self.where_box = wb = QComboBox(self) wb.setSizePolicy(QSizePolicy.Maximum, QSizePolicy.Maximum) - wb.addItems([_('Current file'), _('All text files'), _('All style files'), _('Selected files'), _('Selected text')]) + wb.addItems([_('Current file'), _('All text files'), _('All style files'), _('Selected files'), _('Marked text')]) wb.setToolTip('' + _( ''' Where to search/replace: @@ -105,8 +105,8 @@ class SearchWidget(QWidget):
Search in all style (CSS) files
Selected files
Search in the files currently selected in the Files Browser
-
Selected text
-
Search only within the selected text in the currently opened file
+
Marked text
+
Search only within the marked text in the currently opened file. You can mark text using the Search menu.
''')) ol.addWidget(wb)