mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-31 14:33:54 -04:00
string changes
This commit is contained in:
parent
94920612a6
commit
6104475f5d
@ -966,17 +966,17 @@ class AnnotationsBrowser(Dialog):
|
||||
h = QHBoxLayout()
|
||||
l.addLayout(h)
|
||||
h.addWidget(us), h.addStretch(10), h.addWidget(self.bb)
|
||||
self.delete_button = b = self.bb.addButton(_('Delete all selected'), QDialogButtonBox.ButtonRole.ActionRole)
|
||||
self.delete_button = b = self.bb.addButton(_('&Delete all selected'), QDialogButtonBox.ButtonRole.ActionRole)
|
||||
b.setToolTip(_('Delete the selected annotations'))
|
||||
b.setIcon(QIcon(I('trash.png')))
|
||||
b.clicked.connect(self.delete_selected)
|
||||
self.export_button = b = self.bb.addButton(_('Export all selected'), QDialogButtonBox.ButtonRole.ActionRole)
|
||||
self.export_button = b = self.bb.addButton(_('&Export all selected'), QDialogButtonBox.ButtonRole.ActionRole)
|
||||
b.setToolTip(_('Export the selected annotations'))
|
||||
b.setIcon(QIcon(I('save.png')))
|
||||
b.clicked.connect(self.export_selected)
|
||||
self.refresh_button = b = RightClickButton(self.bb)
|
||||
self.bb.addButton(b, QDialogButtonBox.ButtonRole.ActionRole)
|
||||
b.setText(_('Refresh'))
|
||||
b.setText(_('&Refresh'))
|
||||
b.setToolButtonStyle(Qt.ToolButtonStyle.ToolButtonTextBesideIcon)
|
||||
self.refresh_menu = m = QMenu(self)
|
||||
m.addAction(_('Rebuild search index')).triggered.connect(self.rebuild)
|
||||
|
Loading…
x
Reference in New Issue
Block a user