String changes

This commit is contained in:
Kovid Goyal 2018-03-05 08:43:15 +05:30
parent d4959ec2c1
commit 124ef1f08e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -35,8 +35,8 @@ class SelectNames(QDialog): # {{{
self._names.setSelectionMode(self._names.ExtendedSelection) self._names.setSelectionMode(self._names.ExtendedSelection)
l.addWidget(self._names) l.addWidget(self._names)
self._or = QRadioButton(_('Match any 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 names')%txt) self._and = QRadioButton(_('Match all of the selected %s')%txt)
self._or.setChecked(True) self._or.setChecked(True)
l.addWidget(self._or) l.addWidget(self._or)
l.addWidget(self._and) l.addWidget(self._and)