From ba8099f906117ab5b275f28db79d7568a5044a35 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Sun, 25 Aug 2019 22:37:26 +0200 Subject: [PATCH] [lang] Miscellaneous improvements (#5263) Some grammar/style, some fixes. --- plugins/calibrecompanion.koplugin/main.lua | 2 +- plugins/coverbrowser.koplugin/bookinfomanager.lua | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/calibrecompanion.koplugin/main.lua b/plugins/calibrecompanion.koplugin/main.lua index 8ec7cd137..d3d2f13b6 100644 --- a/plugins/calibrecompanion.koplugin/main.lua +++ b/plugins/calibrecompanion.koplugin/main.lua @@ -122,7 +122,7 @@ function CalibreCompanion:addToMainMenu(menu_items) }, { text_func = function() - local address = "automatic" + local address = _("automatic") if G_reader_settings:has("calibre_wireless_url") then address = G_reader_settings:readSetting("calibre_wireless_url") address = string.format("%s:%s", address["address"], address["port"]) diff --git a/plugins/coverbrowser.koplugin/bookinfomanager.lua b/plugins/coverbrowser.koplugin/bookinfomanager.lua index 3b7d5b493..6a549e244 100644 --- a/plugins/coverbrowser.koplugin/bookinfomanager.lua +++ b/plugins/coverbrowser.koplugin/bookinfomanager.lua @@ -678,7 +678,7 @@ function BookInfoManager:extractBooksInDirectory(path, cover_specs) local Screen = require("device").screen local go_on = Trapper:confirm(_([[ -This will extract metadata and cover images for books in current directory. +This will extract metadata and cover images from books in the current directory. 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. @@ -691,7 +691,7 @@ This extraction may take time and use some battery power: you may wish to keep y end local recursive = Trapper:confirm(_([[ -Do you want to extract book information for books in sub-directories too?]] +Also extract book information from books in subdirectories?]] ), -- @translators Extract book information only for books in this directory. _("Here only"), @@ -705,7 +705,7 @@ Do you want to refresh metadata and covers that have already been extracted?]] 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. -Do you want to prune cache of removed books?]] +Do you want to prune the cache of removed books?]] ), _("Don't prune"), _("Prune")) Trapper:clear()