mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 18:54:09 -04:00
String changes
This commit is contained in:
parent
4db135e6b2
commit
5e69f54113
@ -417,7 +417,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'))
|
self.editor_button.setToolTip(_('Open item editor'))
|
||||||
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)
|
||||||
@ -882,7 +882,7 @@ class BulkBase(Base):
|
|||||||
l.setStretchFactor(self.main_widget, 10)
|
l.setStretchFactor(self.main_widget, 10)
|
||||||
if add_tags_edit_button:
|
if add_tags_edit_button:
|
||||||
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')))
|
||||||
l.addWidget(self.edit_tags_button)
|
l.addWidget(self.edit_tags_button)
|
||||||
self.a_c_checkbox = QCheckBox(_('Apply changes'), w)
|
self.a_c_checkbox = QCheckBox(_('Apply changes'), w)
|
||||||
@ -1273,7 +1273,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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user