From 9546557ec9486d84cdf3a21039ac066961668f71 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 17 Jan 2021 05:46:35 +0530 Subject: [PATCH] String changes --- manual/edit.rst | 8 ++++---- resources/default_tweaks.py | 6 +++--- src/calibre/gui2/preferences/plugboard.ui | 2 +- src/calibre/library/catalogs/epub_mobi_builder.py | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/manual/edit.rst b/manual/edit.rst index 70aece76ef..aa8307ec59 100644 --- a/manual/edit.rst +++ b/manual/edit.rst @@ -312,15 +312,15 @@ will show you the location. Click OK once you are happy with the location. :alt: The Edit Table of Contents tool, how to change the location an entry points to :align: center -Checking the Book +Checking the book ^^^^^^^^^^^^^^^^^^^^^ -The :guilabel:`Check Book` tool searches your book for problems that could +The :guilabel:`Check book` tool searches your book for problems that could prevent it working as intended on actual reader devices. Activate it via -:guilabel:`Tools->Check Book`. +:guilabel:`Tools->Check book`. .. image:: images/check-book.png - :alt: The Check Book tool + :alt: The Check book tool :align: center Any problems found are diff --git a/resources/default_tweaks.py b/resources/default_tweaks.py index 3ee6cd5561..c086f4bc13 100644 --- a/resources/default_tweaks.py +++ b/resources/default_tweaks.py @@ -267,8 +267,8 @@ title_sort_articles=r'^(A|The|An)\s+' auto_connect_to_folder = '' #: Specify renaming rules for SONY collections -# Specify renaming rules for sony collections. This tweak is only applicable if -# metadata management is set to automatic. Collections on Sonys are named +# Specify renaming rules for SONY collections. This tweak is only applicable if +# metadata management is set to automatic. Collections on SONYs are named # depending upon whether the field is standard or custom. A collection derived # from a standard field is named for the value in that field. For example, if # the standard 'series' column contains the value 'Darkover', then the @@ -320,7 +320,7 @@ sony_collection_renaming_rules={} sony_collection_name_template='{value}{category:| (|)}' #: Specify how SONY collections are sorted -# Specify how sony collections are sorted. This tweak is only applicable if +# Specify how SONY collections are sorted. This tweak is only applicable if # metadata management is set to automatic. You can indicate which metadata is to # be used to sort on a collection-by-collection basis. The format of the tweak # is a list of metadata fields from which collections are made, followed by the diff --git a/src/calibre/gui2/preferences/plugboard.ui b/src/calibre/gui2/preferences/plugboard.ui index f0890135f2..187d123cac 100644 --- a/src/calibre/gui2/preferences/plugboard.ui +++ b/src/calibre/gui2/preferences/plugboard.ui @@ -23,7 +23,7 @@ Use this dialog to define a 'plugboard' for a format (or all formats) and a devi Often templates will contain simple references to composite columns, but this is not necessary. You can use any template in a source box that you can use elsewhere in calibre. -One possible use for a plugboard is to alter the title to contain series information. Another would be to change the author sort, something that mobi users might do to force it to use the ';' that the kindle requires. A third would be to specify the language. +One possible use for a plugboard is to alter the title to contain series information. Another would be to change the author sort, something that MOBI users might do to force it to use the ';' that the kindle requires. A third would be to specify the language. Qt::PlainText diff --git a/src/calibre/library/catalogs/epub_mobi_builder.py b/src/calibre/library/catalogs/epub_mobi_builder.py index 5fdc70d5cd..3b33ffff71 100644 --- a/src/calibre/library/catalogs/epub_mobi_builder.py +++ b/src/calibre/library/catalogs/epub_mobi_builder.py @@ -332,7 +332,7 @@ class CatalogBuilder(object): if self.opts.section_list == ['Genres'] and not self.genres: error_msg = _("No genres to catalog.\n") if not self.opts.cli_environment: - error_msg += _("Check 'Excluded genres' regex in E-book options.\n") + error_msg += _("Check 'Excluded genres' regex in the E-book options.\n") self.opts.log.error(error_msg) self.error.append(_('No books available to catalog')) self.error.append(error_msg) @@ -884,7 +884,7 @@ class CatalogBuilder(object): self.opts.log.info((u" %-40s %-40s" % (title['title'][0:40], title['title_sort'][0:40])).encode('utf-8')) else: - error_msg = _("No books to catalog.\nCheck 'Excluded books' rules in E-book options.\n") + error_msg = _("No books to catalog.\nCheck 'Excluded books' rules in the E-book options.\n") self.opts.log.error('*** ' + error_msg + ' ***') self.error.append(_('No books available to include in catalog')) self.error.append(error_msg)