string changes

This commit is contained in:
Kovid Goyal 2024-07-11 19:17:02 +05:30
parent f3bdf434de
commit 87b2e04b72
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 5 additions and 5 deletions

View File

@ -86,7 +86,7 @@ h2 {
\end{align} \end{align}
</p> </p>
<h2>In-line Mathematics</h2> <h2>Inline Mathematics</h2>
<p>While display equations look good for a page of samples, the <p>While display equations look good for a page of samples, the
ability to mix math and text in a paragraph is also important. This ability to mix math and text in a paragraph is also important. This

View File

@ -116,7 +116,7 @@ class EPUBOutput(OutputFormatPlugin):
), ),
OptionRecommendation(name='toc_title', recommended_value=None, 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'], OptionRecommendation(name='epub_version', recommended_value='2', choices=ui_data['versions'],

View File

@ -52,7 +52,7 @@ class MOBIOutput(OutputFormatPlugin):
help=_('Don\'t add Table of Contents to the book. Useful if ' help=_('Don\'t add Table of Contents to the book. Useful if '
'the book has its own table of contents.')), 'the book has its own table of contents.')),
OptionRecommendation(name='toc_title', recommended_value=None, 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', OptionRecommendation(name='dont_compress',
recommended_value=False, level=OptionRecommendation.LOW, 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 ' help=_('Don\'t add Table of Contents to the book. Useful if '
'the book has its own table of contents.')), 'the book has its own table of contents.')),
OptionRecommendation(name='toc_title', recommended_value=None, 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', OptionRecommendation(name='dont_compress',
recommended_value=False, level=OptionRecommendation.LOW, recommended_value=False, level=OptionRecommendation.LOW,

View File

@ -54,7 +54,7 @@ class HTMLTOCAdder:
def config(cls, cfg): def config(cls, cfg):
group = cfg.add_group('htmltoc', _('HTML TOC generation options.')) group = cfg.add_group('htmltoc', _('HTML TOC generation options.'))
group('toc_title', ['--toc-title'], default=None, 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 return cfg
@classmethod @classmethod