So I'm currently working on a project that adds more roles to TTT, and I'm trying to figure out how add custom translation fields to the LANG.
For example, TTT's flaregun file has this:
SWEP.EquipMenuData = {
type = "item_weapon",
desc = "flare_desc"
}
Which uses this from english.lua:
L.flare_name = "Flare gun"
L.flare_desc = [[
Can be used to burn corpses so that
they are never found. Limited ammo.
Burning a corpse makes a distinct
sound.]]
My question is, can I add translations for this without actually editing the english.lua file?