diff --git a/src/calibre/gui2/library/annotations.py b/src/calibre/gui2/library/annotations.py index 08fcb2e6d6..481715f7c0 100644 --- a/src/calibre/gui2/library/annotations.py +++ b/src/calibre/gui2/library/annotations.py @@ -934,11 +934,11 @@ class AnnotationsBrowser(Dialog): return Dialog.keyPressEvent(self, ev) def setup_ui(self): - self.use_stemmer = us = QCheckBox(_('&Match on related English words')) + self.use_stemmer = us = QCheckBox(_('&Match on related words')) us.setChecked(gprefs['browse_annots_use_stemmer']) us.setToolTip('

' + _( - 'With this option searching for words will also match on any related English words. For' - ' example: correction matches correcting and corrected as well')) + 'With this option searching for words will also match on any related words (supported in several languages). For' + ' example, in the English language: correction matches correcting and corrected as well')) us.stateChanged.connect(lambda state: gprefs.set('browse_annots_use_stemmer', state != Qt.CheckState.Unchecked)) l = QVBoxLayout(self)