mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
string changes
This commit is contained in:
parent
78ad0ae6f1
commit
0d14705d6a
@ -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
|
||||
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?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
@ -26,4 +26,4 @@ Glossary
|
||||
**URL** *(Uniform Resource Locator)* for example: ``http://example.com``
|
||||
|
||||
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.
|
||||
|
@ -338,7 +338,7 @@ class UnpackBookAction(InterfaceAction):
|
||||
'mobi', 'azw'})
|
||||
if not tweakable_fmts:
|
||||
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.'),
|
||||
show=True)
|
||||
dlg = UnpackBook(self.gui, book_id, tweakable_fmts, db)
|
||||
|
@ -570,7 +570,7 @@ class BasicNewsRecipe(Recipe):
|
||||
article URL. It is called with `article`, an object representing a parsed article
|
||||
from a feed. See `feedparser <https://pythonhosted.org/feedparser/>`_.
|
||||
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
|
||||
`article.link <https://pythonhosted.org/feedparser/reference-entry-link.html>`_.
|
||||
'''
|
||||
|
@ -194,7 +194,7 @@ def all_actions():
|
||||
'remove_highlight': a('trash', _('Remove this highlight') + _(' [Delete or D]'), 'remove_highlight', True),
|
||||
'clear': a('close', _('Clear selection') + ' [Esc]', 'clear_selection'),
|
||||
'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.icon_function = quick_highlight_icon.bind(None, qh.icon, qh.text)
|
||||
|
Loading…
x
Reference in New Issue
Block a user