mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-22 13:16:24 +01:00
Specify how many files will be deleted when right clicking to delete files in the book editor
This commit is contained in:
parent
f2634f5065
commit
6477c3eec4
1 changed files with 1 additions and 1 deletions
|
|
@ -442,7 +442,7 @@ def show_context_menu(self, point):
|
|||
m.addSeparator()
|
||||
if num > 1:
|
||||
m.addAction(QIcon(I('modified.png')), _('&Bulk rename selected files'), self.request_bulk_rename)
|
||||
m.addAction(QIcon(I('trash.png')), _('&Delete selected files'), self.request_delete)
|
||||
m.addAction(QIcon(I('trash.png')), _('&Delete the %d selected file(s)') % num, self.request_delete)
|
||||
m.addSeparator()
|
||||
|
||||
selected_map = defaultdict(list)
|
||||
|
|
|
|||
Loading…
Reference in a new issue