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
reviewable/pr9753/r1
Frans de Jonge 2 years ago committed by GitHub
parent 6717852825
commit 0f52499d37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save