Change mark all button text to mark all books rather than mark books to make it clearer

This commit is contained in:
Kovid Goyal 2022-06-26 12:12:47 +05:30
parent 54c5411d6e
commit 5b620a3615
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -795,7 +795,7 @@ class ResultsPanel(QWidget):
bb.clear() bb.clear()
bb.addButton(QDialogButtonBox.StandardButton.Close) bb.addButton(QDialogButtonBox.StandardButton.Close)
bb.addButton(_('Show &indexing status'), QDialogButtonBox.ButtonRole.ActionRole).clicked.connect(self.switch_to_scan_panel) bb.addButton(_('Show &indexing status'), QDialogButtonBox.ButtonRole.ActionRole).clicked.connect(self.switch_to_scan_panel)
b = bb.addButton(_('&Mark books'), QDialogButtonBox.ButtonRole.ActionRole) b = bb.addButton(_('&Mark all books'), QDialogButtonBox.ButtonRole.ActionRole)
b.setIcon(QIcon.ic('marked.png')) b.setIcon(QIcon.ic('marked.png'))
m = QMenu(b) m = QMenu(b)
m.addAction(QIcon.ic('marked.png'), _('Mark all matched books in the library'), partial(self.mark_books, 'mark')) m.addAction(QIcon.ic('marked.png'), _('Mark all matched books in the library'), partial(self.mark_books, 'mark'))