From c69f2851f3788191fbaafeeaafcee51ab76cb64e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 24 Feb 2021 21:59:53 +0530 Subject: [PATCH] String changes --- src/calibre/ebooks/metadata/search_internet.py | 2 +- src/pyj/book_list/book_details.pyj | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/ebooks/metadata/search_internet.py b/src/calibre/ebooks/metadata/search_internet.py index 5abcfd25a3..ef37782082 100644 --- a/src/calibre/ebooks/metadata/search_internet.py +++ b/src/calibre/ebooks/metadata/search_internet.py @@ -32,7 +32,7 @@ BOOK_SEARCHES = { NAMES = { 'goodreads': _('Goodreads'), - 'google': _('Google books'), + 'google': _('Google Books'), 'wikipedia': _('Wikipedia'), 'gws': _('Google web search'), 'amzn': _('Amazon'), diff --git a/src/pyj/book_list/book_details.pyj b/src/pyj/book_list/book_details.pyj index 25e7a86320..937513a551 100644 --- a/src/pyj/book_list/book_details.pyj +++ b/src/pyj/book_list/book_details.pyj @@ -749,13 +749,13 @@ def search_internet(container_id): for name, url in [ (_('Goodreads'), 'https://www.goodreads.com/book/author/{author}'), (_('Wikipedia'), 'https://en.wikipedia.org/w/index.php?search={author}'), - (_('Google books'), 'https://www.google.com/search?tbm=bks&q=inauthor:%22{author}%22'), + (_('Google Books'), 'https://www.google.com/search?tbm=bks&q=inauthor:%22{author}%22'), ]: author_links.appendChild(E.li(link_for(name, url))) for name, url in [ (_('Goodreads'), 'https://www.goodreads.com/search?q={author}+{title}&search%5Bsource%5D=goodreads&search_type=books&tab=books'), - (_('Google books'), 'https://www.google.com/search?tbm=bks&q=inauthor:%22{author}%22+intitle:%22{title}%22'), + (_('Google Books'), 'https://www.google.com/search?tbm=bks&q=inauthor:%22{author}%22+intitle:%22{title}%22'), (_('Amazon'), 'https://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Dstripbooks&field-keywords={author}+{title}'), ]: book_links.appendChild(E.li(link_for(name, url)))