string changes

This commit is contained in:
Kovid Goyal 2023-04-30 12:34:43 +05:30
parent d90d6bb6d4
commit e17454d4fe
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 4 additions and 4 deletions

View File

@ -1526,7 +1526,7 @@ Then, when searching the Tag browser, press Ctrl+Alt+Shift+F to restrict the dis
:: new features :: 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 :: bug fixes

View File

@ -21,7 +21,7 @@ available <help>`.
.. only:: online .. only:: online
**An e-book version of this User Manual is available in** `EPUB format <calibre.epub>`_, `AZW3 (Kindle Fire) format <calibre.azw3>`_ and `PDF format <calibre.pdf>`_. **An e-book version of this User Manual is available in** `EPUB format <calibre.epub>`_, `AZW3 (Kindle) format <calibre.azw3>`_ and `PDF format <calibre.pdf>`_.
.. rubric:: Sections .. rubric:: Sections

View File

@ -49,7 +49,7 @@ class TXTInput(InputFormatPlugin):
'auto': _('Automatically decide which formatting processor to use'), 'auto': _('Automatically decide which formatting processor to use'),
'plain': _('No formatting'), 'plain': _('No formatting'),
'heuristic': _('Use heuristics to determine chapter headings, italics, etc.'), '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') 'markdown': _('Use the Markdown markup language')
}, },
} }

View File

@ -24,7 +24,7 @@ class TXTOutput(OutputFormatPlugin):
'formatting_types': { 'formatting_types': {
'plain': _('Plain text'), 'plain': _('Plain text'),
'markdown': _('Markdown formatted text'), 'markdown': _('Markdown formatted text'),
'textile': _('TexTile formatted text') 'textile': _('Textile formatted text')
}, },
} }