diff --git a/src/calibre/gui2/search_restriction_mixin.py b/src/calibre/gui2/search_restriction_mixin.py index 3385409cc8..ba7f512e30 100644 --- a/src/calibre/gui2/search_restriction_mixin.py +++ b/src/calibre/gui2/search_restriction_mixin.py @@ -35,8 +35,8 @@ class SelectNames(QDialog): # {{{ self._names.setSelectionMode(self._names.ExtendedSelection) l.addWidget(self._names) - self._or = QRadioButton(_('Match any of the selected %s names')%txt) - self._and = QRadioButton(_('Match all of the selected %s names')%txt) + self._or = QRadioButton(_('Match any of the selected %s')%txt) + self._and = QRadioButton(_('Match all of the selected %s')%txt) self._or.setChecked(True) l.addWidget(self._or) l.addWidget(self._and)