Files
barotrauma-localmods/NT Informative Descriptions/Lua/idcardsuffixes.lua
2025-03-31 13:19:47 +02:00

10 lines
515 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- getting this from different text files from disabled languages is exorbitantly complicated in lua due to billion different types i have to register.
-- so fuck it just manual table
local suffixes = {
English = "A ‖color:gui.blue‖printed donor card‖end‖ can be slotted into it.",
Russian = "Можно вставить ‖color:gui.blue‖карту донора‖end‖ в слот.",
["Simplified Chinese"] = "可以插入一张‖color:gui.blue‖打印的捐赠卡‖end‖。"
}
return suffixes