mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix capitalization of builtin action names
This commit is contained in:
parent
f20efd3177
commit
09849067ca
@ -16,7 +16,7 @@ from calibre.gui2.actions import InterfaceAction
|
||||
class MarkBooksAction(InterfaceAction):
|
||||
|
||||
name = 'Mark Books'
|
||||
action_spec = (_('Mark Books'), 'marked.png', _('Temporarily mark books'), 'Ctrl+M')
|
||||
action_spec = (_('Mark books'), 'marked.png', _('Temporarily mark books for easy access'), 'Ctrl+M')
|
||||
action_type = 'current'
|
||||
action_add_menu = True
|
||||
dont_add_to = frozenset([
|
||||
|
@ -15,7 +15,7 @@ from calibre.gui2.dialogs.plugin_updater import (PluginUpdaterDialog,
|
||||
class PluginUpdaterAction(InterfaceAction):
|
||||
|
||||
name = 'Plugin Updater'
|
||||
action_spec = (_('Plugin Updater'), None, _('Update any plugins you have installed in calibre'), ())
|
||||
action_spec = (_('Plugin updater'), None, _('Update any plugins you have installed in calibre'), ())
|
||||
action_type = 'current'
|
||||
|
||||
def genesis(self):
|
||||
|
@ -54,7 +54,7 @@ class Choose(QDialog):
|
||||
class TweakEpubAction(InterfaceAction):
|
||||
|
||||
name = 'Tweak ePub'
|
||||
action_spec = (_('Edit Book'), 'tweak.png', _('Edit eBooks'), _('T'))
|
||||
action_spec = (_('Edit book'), 'tweak.png', _('Edit books in the EPUB or AZW formats'), _('T'))
|
||||
dont_add_to = frozenset(['context-menu-device'])
|
||||
action_type = 'current'
|
||||
|
||||
|
@ -286,7 +286,7 @@ class UnpackBook(QDialog):
|
||||
class UnpackBookAction(InterfaceAction):
|
||||
|
||||
name = 'Unpack Book'
|
||||
action_spec = (_('Unpack Book'), 'unpack-book.png',
|
||||
action_spec = (_('Unpack book'), 'unpack-book.png',
|
||||
_('Unpack books in the EPUB, AZW3, HTMLZ formats into their individual components'), 'U')
|
||||
dont_add_to = frozenset(['context-menu-device'])
|
||||
action_type = 'current'
|
||||
|
Loading…
x
Reference in New Issue
Block a user