From f2ee5b3da7c4f5e92a2076e44bda28498c3b0b8f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 29 Apr 2023 13:42:52 +0530 Subject: [PATCH] string changes --- Changelog.txt | 8 ++++---- src/calibre/ebooks/conversion/plugins/txt_input.py | 2 +- src/calibre/gui2/preferences/create_custom_column.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 356d9e51a0..62590972c2 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -41,7 +41,7 @@ - [2017232] Trash bin: Add a button to clear the bin -- Metadata editor: Use a dedicated editor with preview for custom columns that store markdown formatted text +- Metadata editor: Use a dedicated editor with preview for custom columns that store Markdown formatted text :: bug fixes @@ -1526,7 +1526,7 @@ Then, when searching the Tag browser, press Ctrl+Alt+Shift+F to restrict the dis :: new features -- When adding markdown (.md) or textile (.textile) files that contain references to images, automatically add them as txtz with the images +- When adding Markdown (.md) or textile (.textile) files that contain references to images, automatically add them as txtz with the images :: bug fixes @@ -1542,7 +1542,7 @@ Then, when searching the Tag browser, press Ctrl+Alt+Shift+F to restrict the dis - [1941992] TXT Output: Fix a regression in calibre 5 that caused the max line length option to not work -- When auto converting added TXT files with image references to TXTZ use a full markdown parser to detect markdown images +- When auto converting added TXT files with image references to TXTZ use a full Markdown parser to detect Markdown images :: improved recipes - BBC News @@ -1952,7 +1952,7 @@ Useful to have a "slideshow" of book covers. The speed of scrolling can be contr - [1921689] E-book viewer: Add an option under Preferences->Miscellaneous to not restore open panels such as Search, Table of Contents etc on restart -- When exporting highlights as text or markdown also output top level chapter titles +- When exporting highlights as text or Markdown also output top level chapter titles - [1922327] Allow downloading metadata from amazon.se diff --git a/src/calibre/ebooks/conversion/plugins/txt_input.py b/src/calibre/ebooks/conversion/plugins/txt_input.py index a28f58e405..c1030e3b2c 100644 --- a/src/calibre/ebooks/conversion/plugins/txt_input.py +++ b/src/calibre/ebooks/conversion/plugins/txt_input.py @@ -21,7 +21,7 @@ MD_EXTENSIONS = { 'meta': _('Metadata in the document'), 'nl2br': _('Treat newlines as hard breaks'), 'sane_lists': _('Do not allow mixing list types'), - 'smarty': _('Use markdown\'s internal smartypants parser'), + 'smarty': _('Use Markdown\'s internal smartypants parser'), 'tables': _('Support tables'), 'toc': _('Generate a table of contents'), 'wikilinks': _('Wiki style links'), diff --git a/src/calibre/gui2/preferences/create_custom_column.py b/src/calibre/gui2/preferences/create_custom_column.py index ef9e327a9a..cc2cfe82a0 100644 --- a/src/calibre/gui2/preferences/create_custom_column.py +++ b/src/calibre/gui2/preferences/create_custom_column.py @@ -409,7 +409,7 @@ class CreateCustomColumn(QDialog): ('html', 'HTML'), ('short-text', _('Short text, like a title')), ('long-text', _('Plain text')), - ('markdown', _('Plain text formatted using markdown')) + ('markdown', _('Plain text formatted using Markdown')) ): ct.addItem(text, k) ct.setToolTip(_('Choose how the data in this column is interpreted.\n'