From 936a6892dcaea49b3dba3e353da8af874a39a5f0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 12 May 2011 17:15:13 -0600 Subject: [PATCH] ... --- src/calibre/ebooks/metadata/sources/amazon.py | 2 +- src/calibre/ebooks/metadata/sources/google.py | 2 +- src/calibre/ebooks/metadata/sources/overdrive.py | 2 +- src/calibre/gui2/preferences/metadata_sources.py | 5 +++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/calibre/ebooks/metadata/sources/amazon.py b/src/calibre/ebooks/metadata/sources/amazon.py index 31d815af63..40cd54cfbd 100644 --- a/src/calibre/ebooks/metadata/sources/amazon.py +++ b/src/calibre/ebooks/metadata/sources/amazon.py @@ -280,7 +280,7 @@ class Worker(Thread): # Get details {{{ class Amazon(Source): name = 'Amazon.com' - description = _('Downloads metadata from Amazon') + description = _('Downloads metadata and covers from Amazon') capabilities = frozenset(['identify', 'cover']) touched_fields = frozenset(['title', 'authors', 'identifier:amazon', diff --git a/src/calibre/ebooks/metadata/sources/google.py b/src/calibre/ebooks/metadata/sources/google.py index b479368bac..bd1043b774 100644 --- a/src/calibre/ebooks/metadata/sources/google.py +++ b/src/calibre/ebooks/metadata/sources/google.py @@ -157,7 +157,7 @@ def to_metadata(browser, log, entry_, timeout): # {{{ class GoogleBooks(Source): name = 'Google' - description = _('Downloads metadata from Google Books') + description = _('Downloads metadata and covers from Google Books') capabilities = frozenset(['identify', 'cover']) touched_fields = frozenset(['title', 'authors', 'tags', 'pubdate', diff --git a/src/calibre/ebooks/metadata/sources/overdrive.py b/src/calibre/ebooks/metadata/sources/overdrive.py index 4ee248579e..f52b1f423b 100755 --- a/src/calibre/ebooks/metadata/sources/overdrive.py +++ b/src/calibre/ebooks/metadata/sources/overdrive.py @@ -30,7 +30,7 @@ base_url = 'http://search.overdrive.com/' class OverDrive(Source): name = 'Overdrive' - description = _('Downloads metadata from Overdrive\'s Content Reserve') + description = _('Downloads metadata and covers from Overdrive\'s Content Reserve') capabilities = frozenset(['identify', 'cover']) touched_fields = frozenset(['title', 'authors', 'tags', 'pubdate', diff --git a/src/calibre/gui2/preferences/metadata_sources.py b/src/calibre/gui2/preferences/metadata_sources.py index 05ff23987d..f7465fb0ee 100644 --- a/src/calibre/gui2/preferences/metadata_sources.py +++ b/src/calibre/gui2/preferences/metadata_sources.py @@ -71,9 +71,10 @@ class SourcesModel(QAbstractTableModel): # {{{ plugin.is_configured()): return QIcon(I('list_remove.png')) elif role == Qt.ToolTipRole: + base = plugin.description + '\n\n' if plugin.is_configured(): - return _('This source is configured and ready to go') - return _('This source needs configuration') + return base + _('This source is configured and ready to go') + return base + _('This source needs configuration') return NONE def setData(self, index, val, role):