Add fallback option for plural forms

This commit is contained in:
Wuzzy 2024-11-28 15:11:05 +01:00
parent 6f64e860be
commit 19814f1a2c

View File

@ -104,7 +104,13 @@ tt.register_snippet(function(itemstring)
if def._tt_food then
desc = S("Food item")
if def._tt_food_hp then
local msg = PS("+@1 food point", "+@1 food points", def._tt_food_hp, def._tt_food_hp)
local msg
if PS then
msg = PS("+@1 food point", "+@1 food points", def._tt_food_hp, def._tt_food_hp)
else
-- fallback when plural forms are unavailable
msg = S("+@1 food points", def._tt_food_hp)
end
desc = desc .. "\n" .. msg
end
end