2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00

Remove some leading and trailing newlines (#3768)

in some InfoMessage and ConfirmBox, introduced willingly
or not, that cause top or bottom padding
This commit is contained in:
poire-z 2018-03-17 18:13:04 +01:00 committed by Frans de Jonge
parent 0fde66c2c6
commit b3b7e3d279
2 changed files with 9 additions and 14 deletions

View File

@ -350,8 +350,7 @@ KOReader has a build-in OCR engine for recognizing words in scanned PDF and DjVu
You can download language data files for version 3.04 from https://github.com/tesseract-ocr/tesseract/wiki/Data-Files You can download language data files for version 3.04 from https://github.com/tesseract-ocr/tesseract/wiki/Data-Files
Copy the language data files for Tesseract 3.04 (e.g., eng.traineddata for English and spa.traineddata for Spanish) into koreader/data/tessdata Copy the language data files for Tesseract 3.04 (e.g., eng.traineddata for English and spa.traineddata for Spanish) into koreader/data/tessdata]])
]])
function ReaderHighlight:lookup(selected_word, selected_link) function ReaderHighlight:lookup(selected_word, selected_link)
-- if we extracted text directly -- if we extracted text directly

View File

@ -658,35 +658,31 @@ function BookInfoManager:extractBooksInDirectory(path, cover_specs)
local Screen = require("device").screen local Screen = require("device").screen
local go_on = Trapper:confirm(_([[ local go_on = Trapper:confirm(_([[
This will extract metadata and cover images for books in current directory. This will extract metadata and cover images for books in current directory.
Once extraction has started, you can abort at any moment by tapping on the screen. Once extraction has started, you can abort at any moment by tapping on the screen.
Cover images will be saved with the adequate size for the current display mode. Cover images will be saved with the adequate size for the current display mode.
If you later change display mode, they may need to be extracted again. If you later change display mode, they may need to be extracted again.
This extraction may take time and use some battery power: you may wish to keep your device plugged in. This extraction may take time and use some battery power: you may wish to keep your device plugged in.]]
]]) , _("Cancel"), _("Continue")) ), _("Cancel"), _("Continue"))
if not go_on then if not go_on then
return return
end end
local recursive = Trapper:confirm(_([[ local recursive = Trapper:confirm(_([[
Do you want to extract book information for books in sub-directories too?]]
Do you want to extract book information for books in sub-directories too? ), _("Here only"), _("Here and under"))
]]) , _("Here only"), _("Here and under"))
local refresh_existing = Trapper:confirm(_([[ local refresh_existing = Trapper:confirm(_([[
Do you want to refresh metadata and covers that have already been extracted?]]
Do you want to refresh metadata and covers that have already been extracted? ), _("Don't refresh"), _("Refresh"))
]]) , _("Don't refresh"), _("Refresh"))
local prune = Trapper:confirm(_([[ local prune = Trapper:confirm(_([[
If you have removed many books, or have renamed some directories, it is good to remove them from the cache database. If you have removed many books, or have renamed some directories, it is good to remove them from the cache database.
Do you want to prune cache of removed books? Do you want to prune cache of removed books?]]
]]) , _("Don't prune"), _("Prune")) ), _("Don't prune"), _("Prune"))
Trapper:clear() Trapper:clear()