[chore] Proper plurals in CoverBrowser processing (#6483)

As reported by @lescheck on Weblate

> I think this should be in plural form (because of second line)
reviewable/pr6484/r1
Frans de Jonge 4 years ago committed by GitHub
parent d847a7d3f2
commit 3b69ea690c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -777,7 +777,7 @@ Do you want to prune the cache of removed books?]]
UIManager:close(info)
if refresh_existing then
info = InfoMessage:new{text = T(N_("Found 1 book to index.", "Found %1 books to index."), #files)}
info = InfoMessage:new{text = T(N_("Found 1 book to index.", "Found %1 books to index.", #files), #files)}
UIManager:show(info)
UIManager:forceRePaint()
util.sleep(2) -- Let the user see that
@ -890,7 +890,7 @@ Do you want to prune the cache of removed books?]]
end
end
UIManager:close(info)
info = InfoMessage:new{text = T(_("Processed %1 / %2 books.\n%3 extracted successfully."), nb_done, nb_files, nb_success)}
info = InfoMessage:new{text = T(_("Processed %1 / %2 books."), nb_done, nb_files) .. "\n" .. T(N_("One extracted successfully.", "%1 extracted successfully.", nb_success), nb_success)}
UIManager:show(info)
end

Loading…
Cancel
Save