diff --git a/manual/catalogs.rst b/manual/catalogs.rst index d356bd8cfa..ac97fa7a66 100644 --- a/manual/catalogs.rst +++ b/manual/catalogs.rst @@ -116,7 +116,7 @@ Other options :guilabel:`Thumb width` specifies a width preference for cover thumbnails included with Descriptions pages. Thumbnails are cached to improve performance. To experiment with different widths, try generating a catalog with just a few books until you've determined your preferred width, then generate your full catalog. The first time a catalog is generated with a new thumbnail width, performance will be slower, but subsequent builds of the catalog will take advantage of the thumbnail cache. -:guilabel:`Merge with Comments` specifies a custom column whose content will be non-destructively merged with the Comments metadata during catalog generation. For example, you might have a custom column :guilabel:`Author bio` that you'd like to append to the Comments metadata. You can choose to insert the custom column contents *before or after* the Comments section, and optionally separate the appended content with a horizontal rule separator. Eligible custom column types include ``text, comments, and composite``. +:guilabel:`Merge with comments` specifies a custom column whose content will be non-destructively merged with the Comments metadata during catalog generation. For example, you might have a custom column :guilabel:`Author bio` that you'd like to append to the Comments metadata. You can choose to insert the custom column contents *before or after* the Comments section, and optionally separate the appended content with a horizontal rule separator. Eligible custom column types include ``text, comments, and composite``. .. _Custom catalog covers: diff --git a/src/calibre/devices/kobo/kobotouch_config.py b/src/calibre/devices/kobo/kobotouch_config.py index 3df355521e..ca71964126 100644 --- a/src/calibre/devices/kobo/kobotouch_config.py +++ b/src/calibre/devices/kobo/kobotouch_config.py @@ -519,7 +519,7 @@ class MetadataGroupBox(DeviceOptionsGroupBox): _("Update metadata on Book Details pages"), _('This will update the metadata in the device database when the device is connected. ' 'The metadata updated is displayed on the device in the library and the book details page. ' - 'This is the Title, Authors, Comments/Synopsis, Series name and number, Publisher and Published Date, ISBN and Language. ' + 'This is the title, authors, comments/synopsis, series name and number, publisher and published Date, ISBN and language. ' 'If a metadata plugboard exists for the device and book format, this will be used to set the metadata.' ), device.get_pref('update_core_metadata') diff --git a/src/calibre/gui2/preferences/plugboard.py b/src/calibre/gui2/preferences/plugboard.py index 877964878f..afd146d62f 100644 --- a/src/calibre/gui2/preferences/plugboard.py +++ b/src/calibre/gui2/preferences/plugboard.py @@ -317,9 +317,9 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form): if len(fpb) == 0: del self.current_plugboards[self.current_format] else: - if comments_in_dests and not question_dialog(self.gui, _('Plugboard modifies Comments'), - _('This plugboard modifies the Comments metadata. ' - 'If the Comments are set to invalid HTML, it could cause problems on the device. ' + if comments_in_dests and not question_dialog(self.gui, _('Plugboard modifies comments'), + _('This plugboard modifies the comments metadata. ' + 'If the comments are set to invalid HTML, it could cause problems on the device. ' 'Are you sure you wish to save this plugboard?' ), skip_dialog_name='plugboard_comments_in_dests'