Fix capitalization of builtin action names

This commit is contained in:
Kovid Goyal 2014-05-14 07:43:32 +05:30
parent f20efd3177
commit 09849067ca
4 changed files with 4 additions and 4 deletions

View File

@ -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([

View File

@ -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):

View File

@ -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'

View File

@ -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'