string changes

This commit is contained in:
Kovid Goyal 2024-09-15 05:40:12 +05:30
parent d5d0a97d37
commit 3c28eca641
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@
Turn it on via the PDF input section of the conversion dialog. Turn it on via the PDF input section of the conversion dialog.
- Content server: Viewer: Read Aloud: Implement word-by-word tracking when reading aloud if the browser and voice used support it, for example, Chromium on Windows, Firefox on Android and Safari on macOS - Content server: Viewer: Read Aloud: Implement word-by-word tracking when reading aloud if the browser and OS used support it, for example, Chromium on Windows, Firefox on Android and Safari on macOS
- [2080315] Image popup: Add a context menu with an option to reset the current zoom - [2080315] Image popup: Add a context menu with an option to reset the current zoom

View File

@ -947,7 +947,7 @@ class Cache:
@read_api @read_api
def get_item_id(self, field, item_name): def get_item_id(self, field, item_name):
'''' Return the item id for item_name (case-insensitive) or None if not found. ''' Return the item id for item_name (case-insensitive) or None if not found.
This function is very slow if doing lookups for multiple names use either get_item_ids() or get_item_name_map(). ''' This function is very slow if doing lookups for multiple names use either get_item_ids() or get_item_name_map(). '''
q = icu_lower(item_name) q = icu_lower(item_name)
try: try:

View File

@ -26,7 +26,7 @@ class PDFInput(InputFormatPlugin):
OptionRecommendation(name='new_pdf_engine', recommended_value=False, OptionRecommendation(name='new_pdf_engine', recommended_value=False,
help=_('Use the new, experimental, PDF conversion engine.')), help=_('Use the new, experimental, PDF conversion engine.')),
OptionRecommendation(name='pdf_header_skip', recommended_value=-1, OptionRecommendation(name='pdf_header_skip', recommended_value=-1,
help=_('Skip everything to the specified number pixels at the top of a page.' help=_('Skip everything to the specified number of pixels at the top of a page.'
' Negative numbers mean auto-detect and remove headers, zero means do not remove headers and positive numbers' ' Negative numbers mean auto-detect and remove headers, zero means do not remove headers and positive numbers'
' mean remove headers that appear above that many pixels from the top of the page. Works only' ' mean remove headers that appear above that many pixels from the top of the page. Works only'
' with the new PDF engine.' ' with the new PDF engine.'