string changes

This commit is contained in:
Kovid Goyal 2022-01-23 12:43:08 +05:30
parent 78ad0ae6f1
commit 0d14705d6a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
5 changed files with 5 additions and 5 deletions

View File

@ -920,7 +920,7 @@ Downloading from the Internet can sometimes result in a corrupted download. If t
the :guilabel:`Security` tab. Make sure that your user account has full control the :guilabel:`Security` tab. Make sure that your user account has full control
for this folder. for this folder.
If you still cannot get the installer to work and you are on Windows, you can use the :website:`calibre portable install <download_portable>`, which does not need an installer (it is just a zip file). If you still cannot get the installer to work and you are on Windows, you can use the :website:`calibre portable install <download_portable>`, which does not need an installer (it is just a ZIP file).
My antivirus program claims calibre is a virus/trojan? My antivirus program claims calibre is a virus/trojan?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -26,4 +26,4 @@ Glossary
**URL** *(Uniform Resource Locator)* for example: ``http://example.com`` **URL** *(Uniform Resource Locator)* for example: ``http://example.com``
regexp regexp
**Regular expressions** provide a concise and flexible means for identifying strings of text of interest, such as particular characters, words, or patterns of characters. See `regexp syntax <https://docs.python.org/library/re.html>`_ for the syntax of regular expressions used in Python. **Regular expressions** provide a concise and flexible means for identifying strings of text of interest, such as particular characters, words, or patterns of characters. See :doc:`the tutorial <regexp>` for an introduction to regular expressions.

View File

@ -338,7 +338,7 @@ class UnpackBookAction(InterfaceAction):
'mobi', 'azw'}) 'mobi', 'azw'})
if not tweakable_fmts: if not tweakable_fmts:
return error_dialog(self.gui, _('Cannot unpack book'), return error_dialog(self.gui, _('Cannot unpack book'),
_('The book must be in ePub, HTMLZ or AZW3 formats to unpack.' _('The book must be in EPUB, HTMLZ or AZW3 formats to unpack.'
'\n\nFirst convert the book to one of these formats.'), '\n\nFirst convert the book to one of these formats.'),
show=True) show=True)
dlg = UnpackBook(self.gui, book_id, tweakable_fmts, db) dlg = UnpackBook(self.gui, book_id, tweakable_fmts, db)

View File

@ -570,7 +570,7 @@ class BasicNewsRecipe(Recipe):
article URL. It is called with `article`, an object representing a parsed article article URL. It is called with `article`, an object representing a parsed article
from a feed. See `feedparser <https://pythonhosted.org/feedparser/>`_. from a feed. See `feedparser <https://pythonhosted.org/feedparser/>`_.
By default it looks for the original link (for feeds syndicated via a By default it looks for the original link (for feeds syndicated via a
service like feedburner or pheedo) and if found, service like FeedBurner or Pheedo) and if found,
returns that or else returns returns that or else returns
`article.link <https://pythonhosted.org/feedparser/reference-entry-link.html>`_. `article.link <https://pythonhosted.org/feedparser/reference-entry-link.html>`_.
''' '''

View File

@ -194,7 +194,7 @@ def all_actions():
'remove_highlight': a('trash', _('Remove this highlight') + _(' [Delete or D]'), 'remove_highlight', True), 'remove_highlight': a('trash', _('Remove this highlight') + _(' [Delete or D]'), 'remove_highlight', True),
'clear': a('close', _('Clear selection') + ' [Esc]', 'clear_selection'), 'clear': a('close', _('Clear selection') + ' [Esc]', 'clear_selection'),
'speak': a('bullhorn', _('Read aloud') + ' [T]', 'speak_aloud'), 'speak': a('bullhorn', _('Read aloud') + ' [T]', 'speak_aloud'),
'cite': a('reference-mode', _('Copy citation to clipboard') + ' [X]', 'cite'), 'cite': a('reference-mode', _('Copy a citation to this text') + ' [X]', 'cite'),
} }
qh = all_actions.ans.quick_highlight qh = all_actions.ans.quick_highlight
qh.icon_function = quick_highlight_icon.bind(None, qh.icon, qh.text) qh.icon_function = quick_highlight_icon.bind(None, qh.icon, qh.text)