From e17454d4fe03b13d4d9af4e7f3000e0b28281d46 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 30 Apr 2023 12:34:43 +0530 Subject: [PATCH] string changes --- Changelog.txt | 2 +- manual/simple_index.rst | 2 +- src/calibre/ebooks/conversion/plugins/txt_input.py | 2 +- src/calibre/ebooks/conversion/plugins/txt_output.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 23161f494b..4ba88bfc70 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -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 diff --git a/manual/simple_index.rst b/manual/simple_index.rst index a9b9d12dbb..824155b46a 100644 --- a/manual/simple_index.rst +++ b/manual/simple_index.rst @@ -21,7 +21,7 @@ available `. .. only:: online - **An e-book version of this User Manual is available in** `EPUB format `_, `AZW3 (Kindle Fire) format `_ and `PDF format `_. + **An e-book version of this User Manual is available in** `EPUB format `_, `AZW3 (Kindle) format `_ and `PDF format `_. .. rubric:: Sections diff --git a/src/calibre/ebooks/conversion/plugins/txt_input.py b/src/calibre/ebooks/conversion/plugins/txt_input.py index c1030e3b2c..6aa3c30ed4 100644 --- a/src/calibre/ebooks/conversion/plugins/txt_input.py +++ b/src/calibre/ebooks/conversion/plugins/txt_input.py @@ -49,7 +49,7 @@ class TXTInput(InputFormatPlugin): 'auto': _('Automatically decide which formatting processor to use'), 'plain': _('No formatting'), 'heuristic': _('Use heuristics to determine chapter headings, italics, etc.'), - 'textile': _('Use the TexTile markup language'), + 'textile': _('Use the Textile markup language'), 'markdown': _('Use the Markdown markup language') }, } diff --git a/src/calibre/ebooks/conversion/plugins/txt_output.py b/src/calibre/ebooks/conversion/plugins/txt_output.py index 65997b7f56..4051d2f30f 100644 --- a/src/calibre/ebooks/conversion/plugins/txt_output.py +++ b/src/calibre/ebooks/conversion/plugins/txt_output.py @@ -24,7 +24,7 @@ class TXTOutput(OutputFormatPlugin): 'formatting_types': { 'plain': _('Plain text'), 'markdown': _('Markdown formatted text'), - 'textile': _('TexTile formatted text') + 'textile': _('Textile formatted text') }, }