From 0f52499d3748c63a7174515c17e2b8f2fa205c77 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Thu, 3 Nov 2022 08:46:16 +0100 Subject: [PATCH] Dispatcher: add unused singular to action plurals (#9734) Tools and humans alike are confused by leaving it empty. It should be inoffensive to resolve the problem this by having an unused singular. Doing anything else would make it so we couldn't have the correct plurals in Slovak, among others. Follow-up to https://github.com/koreader/koreader/pull/9726 --- frontend/dispatcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/dispatcher.lua b/frontend/dispatcher.lua index 13db64c65..0db469ad1 100644 --- a/frontend/dispatcher.lua +++ b/frontend/dispatcher.lua @@ -573,7 +573,7 @@ function Dispatcher:menuTextFunc(settings) if item == "settings" then item = next(settings, item) end action_name = Dispatcher:getNameFromItem(item, settings) else - action_name = T(NC_("Dispatcher", "", "%1 actions", count), count) + action_name = T(NC_("Dispatcher", "1 action", "%1 actions", count), count) end end return action_name