mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 23:53:27 +02:00
Fix capitalization of builtin action names
This commit is contained in:
parent
f20efd3177
commit
09849067ca
4 changed files with 4 additions and 4 deletions
|
|
@ -16,7 +16,7 @@
|
|||
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 @@
|
|||
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 @@ def accept(self):
|
|||
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 @@ def current_format(self):
|
|||
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…
Reference in a new issue