Skip to content

Commit

Permalink
string changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Jul 11, 2024
1 parent f3bdf43 commit 87b2e04
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manual/mathjax.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h2>Maxwell's Equations</h2>
\end{align}
</p>

<h2>In-line Mathematics</h2>
<h2>Inline Mathematics</h2>

<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
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/ebooks/conversion/plugins/epub_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
4 changes: 2 additions & 2 deletions src/calibre/ebooks/conversion/plugins/mobi_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/ebooks/oeb/transforms/htmltoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, title=None, style='nested', position='end'):
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
Expand Down

0 comments on commit 87b2e04

Please sign in to comment.