From 9b9eeb5265a4ac4c8da1c1bd5649d1f93e85753f Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Tue, 8 Feb 2011 13:07:35 +0000 Subject: [PATCH] Add some text about limits interacting with saved searches --- src/calibre/gui2/layout.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/layout.py b/src/calibre/gui2/layout.py index efac3e1232..6ad5551de7 100644 --- a/src/calibre/gui2/layout.py +++ b/src/calibre/gui2/layout.py @@ -238,11 +238,15 @@ class SearchOptions(QDialog): l = QGridLayout() self.setLayout(l) - x = QLabel(_('Use this box to change search options related to how ' + x = QLabel('
'+_('Use this box to change search options related to how ' 'results are displayed and which columns are searched. ' 'Changes will be remembered across calibre restarts. ' 'When you press OK, the last search will be redone using ' - 'the new option values.'), + 'the new option values.')+'
'+_('Note: the limit option ' + 'below affects all searches, including saved searches ' + 'and, by extension, search restrictions. For this reason ' + 'it is usually better to use prefixes in saved searches, ' + 'for example series:someword instead of simply someword.'), parent=self) x.setWordWrap(True) l.addWidget(x, 0, 0, 1, 2)