From 87b2e04b72bc2e73084ec4d7876134669a0b8ae4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 11 Jul 2024 19:17:02 +0530 Subject: [PATCH] string changes --- manual/mathjax.html | 2 +- src/calibre/ebooks/conversion/plugins/epub_output.py | 2 +- src/calibre/ebooks/conversion/plugins/mobi_output.py | 4 ++-- src/calibre/ebooks/oeb/transforms/htmltoc.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manual/mathjax.html b/manual/mathjax.html index 88047e6023..50d61850a0 100644 --- a/manual/mathjax.html +++ b/manual/mathjax.html @@ -86,7 +86,7 @@ h2 { \end{align}

-

In-line Mathematics

+

Inline Mathematics

While display equations look good for a page of samples, the ability to mix math and text in a paragraph is also important. This diff --git a/src/calibre/ebooks/conversion/plugins/epub_output.py b/src/calibre/ebooks/conversion/plugins/epub_output.py index 5eaa9f26dc..4443e10409 100644 --- a/src/calibre/ebooks/conversion/plugins/epub_output.py +++ b/src/calibre/ebooks/conversion/plugins/epub_output.py @@ -116,7 +116,7 @@ class EPUBOutput(OutputFormatPlugin): ), OptionRecommendation(name='toc_title', recommended_value=None, - help=_('Title for any generated in-line table of contents.') + help=_('Title for any generated inline table of contents.') ), OptionRecommendation(name='epub_version', recommended_value='2', choices=ui_data['versions'], diff --git a/src/calibre/ebooks/conversion/plugins/mobi_output.py b/src/calibre/ebooks/conversion/plugins/mobi_output.py index 0a562cc7cb..6afd976b69 100644 --- a/src/calibre/ebooks/conversion/plugins/mobi_output.py +++ b/src/calibre/ebooks/conversion/plugins/mobi_output.py @@ -52,7 +52,7 @@ class MOBIOutput(OutputFormatPlugin): help=_('Don\'t add Table of Contents to the book. Useful if ' 'the book has its own table of contents.')), OptionRecommendation(name='toc_title', recommended_value=None, - help=_('Title for any generated in-line table of contents.') + help=_('Title for any generated inline table of contents.') ), OptionRecommendation(name='dont_compress', recommended_value=False, level=OptionRecommendation.LOW, @@ -282,7 +282,7 @@ class AZW3Output(OutputFormatPlugin): help=_('Don\'t add Table of Contents to the book. Useful if ' 'the book has its own table of contents.')), OptionRecommendation(name='toc_title', recommended_value=None, - help=_('Title for any generated in-line table of contents.') + help=_('Title for any generated inline table of contents.') ), OptionRecommendation(name='dont_compress', recommended_value=False, level=OptionRecommendation.LOW, diff --git a/src/calibre/ebooks/oeb/transforms/htmltoc.py b/src/calibre/ebooks/oeb/transforms/htmltoc.py index 38a6d69b33..bb93a58d61 100644 --- a/src/calibre/ebooks/oeb/transforms/htmltoc.py +++ b/src/calibre/ebooks/oeb/transforms/htmltoc.py @@ -54,7 +54,7 @@ class HTMLTOCAdder: def config(cls, cfg): group = cfg.add_group('htmltoc', _('HTML TOC generation options.')) group('toc_title', ['--toc-title'], default=None, - help=_('Title for any generated in-line table of contents.')) + help=_('Title for any generated inline table of contents.')) return cfg @classmethod