mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
fix item number distinction (plural forms)
This commit is contained in:
@@ -108,7 +108,10 @@ function FileChooser:genItemTableFromPath(path)
|
||||
-- exclude "." and ".."
|
||||
items = items - 2
|
||||
end
|
||||
local istr = util.template(items == 0 and _("0 items") or _("1 item") or items > 1 and _("%1 items"), items)
|
||||
local istr = util.template(
|
||||
items == 0 and _("0 items")
|
||||
or items == 1 and _("1 item")
|
||||
or _("%1 items"), items)
|
||||
table.insert(item_table, {
|
||||
text = dir.name.."/",
|
||||
mandatory = istr,
|
||||
|
||||
Reference in New Issue
Block a user