String changes

This commit is contained in:
Kovid Goyal 2021-07-01 17:22:44 +05:30
parent 37a8413c9a
commit d5b6005a34
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 5 deletions

View File

@ -439,7 +439,7 @@ class MultipleWidget(QWidget):
self.tags_box = EditWithComplete(parent) self.tags_box = EditWithComplete(parent)
layout.addWidget(self.tags_box, stretch=1000) layout.addWidget(self.tags_box, stretch=1000)
self.editor_button = QToolButton(self) self.editor_button = QToolButton(self)
self.editor_button.setToolTip(_('Open item editor. If CTRL or SHIFT is pressed, open manage items')) self.editor_button.setToolTip(_('Open Item editor. If CTRL or SHIFT is pressed, open Manage items'))
self.editor_button.setIcon(QIcon(I('chapters.png'))) self.editor_button.setIcon(QIcon(I('chapters.png')))
layout.addWidget(self.editor_button) layout.addWidget(self.editor_button)
self.setLayout(layout) self.setLayout(layout)
@ -927,7 +927,7 @@ class BulkBase(Base):
l.insertWidget(1, self.set_yes_button) l.insertWidget(1, self.set_yes_button)
if add_edit_tags_button[0]: if add_edit_tags_button[0]:
self.edit_tags_button = QToolButton(parent) self.edit_tags_button = QToolButton(parent)
self.edit_tags_button.setToolTip(_('Open item editor')) self.edit_tags_button.setToolTip(_('Open Item editor'))
self.edit_tags_button.setIcon(QIcon(I('chapters.png'))) self.edit_tags_button.setIcon(QIcon(I('chapters.png')))
self.edit_tags_button.clicked.connect(add_edit_tags_button[1]) self.edit_tags_button.clicked.connect(add_edit_tags_button[1])
l.insertWidget(1, self.edit_tags_button) l.insertWidget(1, self.edit_tags_button)
@ -1358,7 +1358,7 @@ class RemoveTags(QWidget):
self.tags_box.update_items_cache(values) self.tags_box.update_items_cache(values)
layout.addWidget(self.tags_box, stretch=3) layout.addWidget(self.tags_box, stretch=3)
self.remove_tags_button = QToolButton(parent) self.remove_tags_button = QToolButton(parent)
self.remove_tags_button.setToolTip(_('Open item editor')) self.remove_tags_button.setToolTip(_('Open Item editor'))
self.remove_tags_button.setIcon(QIcon(I('chapters.png'))) self.remove_tags_button.setIcon(QIcon(I('chapters.png')))
layout.addWidget(self.remove_tags_button) layout.addWidget(self.remove_tags_button)
self.checkbox = QCheckBox(_('Remove all tags'), parent) self.checkbox = QCheckBox(_('Remove all tags'), parent)

View File

@ -96,7 +96,7 @@ def common_shortcuts(): # {{{
v"['Ctrl+ArrowUp', 'Ctrl+ArrowLeft', 'Home']", v"['Ctrl+ArrowUp', 'Ctrl+ArrowLeft', 'Home']",
'scroll', 'scroll',
_('Scroll to the beginning of the current file'), _('Scroll to the beginning of the current file'),
_('When the e-book is made of multiple individual files, scroll to the start of the current file.'), _('When the e-book is made of multiple individual files, scroll to the start of the current file'),
), ),
'start_of_book': desc( 'start_of_book': desc(
@ -115,7 +115,7 @@ def common_shortcuts(): # {{{
v"['Ctrl+ArrowDown', 'Ctrl+ArrowRight', 'End']", v"['Ctrl+ArrowDown', 'Ctrl+ArrowRight', 'End']",
'scroll', 'scroll',
_('Scroll to the end of the current file'), _('Scroll to the end of the current file'),
_('When the e-book is made of multiple individual files, scroll to the end of the current file.'), _('When the e-book is made of multiple individual files, scroll to the end of the current file'),
), ),
'up': desc( 'up': desc(