String changes

This commit is contained in:
Kovid Goyal 2020-11-23 07:49:17 +05:30
parent c253825a42
commit 0b93e2ff40
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View File

@ -208,7 +208,7 @@ class ChooseLibraryAction(InterfaceAction):
_('Choose calibre library to work with'), None)
dont_add_to = frozenset(('context-menu-device',))
action_add_menu = True
action_menu_clone_qaction = _('Switch/create library...')
action_menu_clone_qaction = _('Switch/create library')
restore_view_state = pyqtSignal(object)
def genesis(self):

View File

@ -123,10 +123,10 @@ class DeleteAction(InterfaceAction):
self.delete_menu = self.qaction.menu()
m = partial(self.create_menu_action, self.delete_menu)
m('delete-specific',
_('Remove files of a specific format from selected books...'),
_('Remove files of a specific format from selected books'),
triggered=self.delete_selected_formats)
m('delete-except',
_('Remove all formats from selected books, except...'),
_('Remove all formats from selected books, except'),
triggered=self.delete_all_but_selected_formats)
self.delete_menu.addSeparator()
m('delete-all',