From 124ef1f08e34348b5b5a52d7d8072a114952da9a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 5 Mar 2018 08:43:15 +0530 Subject: [PATCH] String changes --- src/calibre/gui2/search_restriction_mixin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)