String changes

This commit is contained in:
Kovid Goyal 2020-04-21 19:53:31 +05:30
parent 4db135e6b2
commit 5e69f54113
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -417,7 +417,7 @@ def __init__(self, parent):
self.tags_box = EditWithComplete(parent)
layout.addWidget(self.tags_box, stretch=1000)
self.editor_button = QToolButton(self)
self.editor_button.setToolTip(_('Open Item Editor'))
self.editor_button.setToolTip(_('Open item editor'))
self.editor_button.setIcon(QIcon(I('chapters.png')))
layout.addWidget(self.editor_button)
self.setLayout(layout)
@ -882,7 +882,7 @@ def make_widgets(self, parent, main_widget_class, extra_label_text='',
l.setStretchFactor(self.main_widget, 10)
if add_tags_edit_button:
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')))
l.addWidget(self.edit_tags_button)
self.a_c_checkbox = QCheckBox(_('Apply changes'), w)
@ -1273,7 +1273,7 @@ def __init__(self, parent, values):
self.tags_box.update_items_cache(values)
layout.addWidget(self.tags_box, stretch=3)
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')))
layout.addWidget(self.remove_tags_button)
self.checkbox = QCheckBox(_('Remove all tags'), parent)