Remove useless help messages from config widgets for google images and big book search

This commit is contained in:
Kovid Goyal 2017-05-23 20:55:51 +05:30
parent 038b03da9a
commit 84f1b98ab8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 0 additions and 2 deletions

View File

@ -34,7 +34,6 @@ class BigBookSearch(Source):
minimum_calibre_version = (2, 80, 0) minimum_calibre_version = (2, 80, 0)
description = _('Downloads multiple book covers from Amazon. Useful to find alternate covers.') description = _('Downloads multiple book covers from Amazon. Useful to find alternate covers.')
capabilities = frozenset(['cover']) capabilities = frozenset(['cover'])
config_help_message = _('Configure the Big Book Search plugin')
can_get_multiple_covers = True can_get_multiple_covers = True
options = (Option('max_covers', 'number', 5, _('Maximum number of covers to get'), options = (Option('max_covers', 'number', 5, _('Maximum number of covers to get'),
_('The maximum number of covers to process from the search result')), _('The maximum number of covers to process from the search result')),

View File

@ -21,7 +21,6 @@ class GoogleImages(Source):
minimum_calibre_version = (2, 80, 0) minimum_calibre_version = (2, 80, 0)
description = _('Downloads covers from a Google Image search. Useful to find larger/alternate covers.') description = _('Downloads covers from a Google Image search. Useful to find larger/alternate covers.')
capabilities = frozenset(['cover']) capabilities = frozenset(['cover'])
config_help_message = _('Configure the Google Image Search plugin')
can_get_multiple_covers = True can_get_multiple_covers = True
supports_gzip_transfer_encoding = True supports_gzip_transfer_encoding = True
options = (Option('max_covers', 'number', 5, _('Maximum number of covers to get'), options = (Option('max_covers', 'number', 5, _('Maximum number of covers to get'),