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):
|
class MarkBooksAction(InterfaceAction):
|
||||||
|
|
||||||
name = 'Mark Books'
|
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_type = 'current'
|
||||||
action_add_menu = True
|
action_add_menu = True
|
||||||
dont_add_to = frozenset([
|
dont_add_to = frozenset([
|
||||||
|
@ -15,7 +15,7 @@ from calibre.gui2.dialogs.plugin_updater import (PluginUpdaterDialog,
|
|||||||
class PluginUpdaterAction(InterfaceAction):
|
class PluginUpdaterAction(InterfaceAction):
|
||||||
|
|
||||||
name = 'Plugin Updater'
|
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'
|
action_type = 'current'
|
||||||
|
|
||||||
def genesis(self):
|
def genesis(self):
|
||||||
|
@ -54,7 +54,7 @@ class Choose(QDialog):
|
|||||||
class TweakEpubAction(InterfaceAction):
|
class TweakEpubAction(InterfaceAction):
|
||||||
|
|
||||||
name = 'Tweak ePub'
|
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'])
|
dont_add_to = frozenset(['context-menu-device'])
|
||||||
action_type = 'current'
|
action_type = 'current'
|
||||||
|
|
||||||
|
@ -286,7 +286,7 @@ class UnpackBook(QDialog):
|
|||||||
class UnpackBookAction(InterfaceAction):
|
class UnpackBookAction(InterfaceAction):
|
||||||
|
|
||||||
name = 'Unpack Book'
|
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')
|
_('Unpack books in the EPUB, AZW3, HTMLZ formats into their individual components'), 'U')
|
||||||
dont_add_to = frozenset(['context-menu-device'])
|
dont_add_to = frozenset(['context-menu-device'])
|
||||||
action_type = 'current'
|
action_type = 'current'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user