From 4e78b081f97a77d47a9a2f19d439daa945a4052e Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Sun, 5 Mar 2023 21:09:07 +0100 Subject: [PATCH] [i18n] Calibre plugin: improve clarity for translators (#10172) The path list will start with \n already, but an extra newline won't hurt and this string is really weird (i.e., people will naturally put a space or a newline in front of it). --- plugins/calibre.koplugin/search.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/calibre.koplugin/search.lua b/plugins/calibre.koplugin/search.lua index 573cfa19e..03433af8b 100644 --- a/plugins/calibre.koplugin/search.lua +++ b/plugins/calibre.koplugin/search.lua @@ -553,7 +553,7 @@ function CalibreSearch:prompt(message) if count == 0 then info_text = _("No calibre libraries were found") else - info_text = T(_("Found %1 calibre libraries with %2 books:%3"), count, #self.books, paths) + info_text = T(_("Found %1 calibre libraries with %2 books:\n%3"), count, #self.books, paths) end UIManager:show(InfoMessage:new{ text = info_text }) end,