String changes

This commit is contained in:
Kovid Goyal 2020-11-08 11:57:24 +05:30
parent 885553d827
commit a3f829a6fa
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View File

@ -739,9 +739,9 @@ class AnnotationsBrowser(Dialog):
def setup_ui(self):
self.use_stemmer = us = QCheckBox(_('Match on related English words'))
us.setChecked(gprefs['browse_annots_use_stemmer'])
us.setToolTip(fill(_(
us.setToolTip('<p>' + _(
'With this option searching for words will also match on any related English words. For'
' example: correction matches correcting and corrected as well')))
' example: <i>correction</i> matches <i>correcting</i> and <i>corrected</i> as well'))
us.stateChanged.connect(lambda state: gprefs.set('browse_annots_use_stemmer', state != Qt.Unchecked))
l = QVBoxLayout(self)

View File

@ -722,7 +722,7 @@ class TagsView(QTreeView): # {{{
# from selected books
if fm['datatype'] != 'rating':
m = self.context_menu.addMenu(self.edit_metadata_icon,
_('Apply %s to selected books')%display_name(tag))
_('Add/remove %s to selected books')%display_name(tag))
m.addAction(self.plus_icon,
_('Add %s to selected books') % display_name(tag),
partial(self.context_menu_handler, action='add_tag', index=index))