Module:Tr/db-lt

From Terraria Wiki
Jump to navigation Jump to search
Lua.svg Documentation The documentation below is transcluded from Module:Tr/db-lt/doc. (edit | history)

Database for Template:Tr and Module:tr


return {
	pagename = {
		-- example:
		-- ["Fish"] = "Fish (item)", -- en pagename = l10n pagename
	},

	main = {
		["__OK__"] = 'OK', -- ready mark, don't remove this line.
		-- example:
		-- ["Fish"] = "Fish", -- en text = l10n text

		["Charged Blaster Cannon"] = "Lazerinė Patranka",
		["Electrosphere Launcher"] = "Elektrosferos Šautuvas",
		["Laser Drill"] = "Lazerinis Grąžtas",
		["Laser Machinegun"] = "Lazerinis Automatas",
		["Xeno Staff"] = "NSO Lazda",
		["Xenopopper"] = "Xenopoperis",
		
	},

	-- reversed translation (your language -> en) database.
	-- for source text not present in this table, will try to look up in reversed `pagename` table then reversed `main` table.
	reversed = {
        ["__OK__"] = 'OK', -- ready mark, don't remove this line.
		-- example:
		-- ["Fish (item)"] = "Fish", -- l10n pagename = en pagename
    },
}