From 5b620a36154e2bf99782209649ea04ea5df14a06 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 26 Jun 2022 12:12:47 +0530 Subject: [PATCH] Change mark all button text to mark all books rather than mark books to make it clearer --- src/calibre/gui2/fts/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/fts/search.py b/src/calibre/gui2/fts/search.py index 0da87caf83..e6d0e0a109 100644 --- a/src/calibre/gui2/fts/search.py +++ b/src/calibre/gui2/fts/search.py @@ -795,7 +795,7 @@ class ResultsPanel(QWidget): bb.clear() bb.addButton(QDialogButtonBox.StandardButton.Close) 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')) m = QMenu(b) m.addAction(QIcon.ic('marked.png'), _('Mark all matched books in the library'), partial(self.mark_books, 'mark'))