Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

converbrowser: fix some texts #3759

Merged
merged 1 commit into from Mar 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/coverbrowser.koplugin/bookinfomanager.lua
Expand Up @@ -739,7 +739,7 @@ Do you want to prune cache of removed books?
end
elseif not files or #files == 0 then
UIManager:close(info)
info = InfoMessage:new{text = _("No book were found.")}
info = InfoMessage:new{text = _("No books were found.")}
UIManager:show(info)
return
else
Expand All @@ -756,7 +756,7 @@ Do you want to prune cache of removed books?
else
local all_files = files
while true do
info = InfoMessage:new{text = T(_("Found %1 books.\nLooking for those not already present in cache database…"), #all_files)}
info = InfoMessage:new{text = T(_("Found %1 books.\nLooking for those not already present in the cache database…"), #all_files)}
UIManager:show(info)
UIManager:forceRePaint()
util.sleep(2) -- Let the user see that
Expand Down