Module:Tr/db-fi

From Terraria Wiki
Jump to navigation Jump to search
Lua.svg Documentation The documentation below is transcluded from Module:Tr/db-fi/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

		["Adamantite Ore"] = "Adamantiittimalmi",
		["Chlorophyte Ore"] = "Klorofyyttimalmi",
		["Cobalt Ore"] = "Kobolttimalmi",
		["Copper Ore"] = "Kuparimalmi",
		["Crimtane Ore"] = " Krimtaanimalmi",
		["Demonite Ore"] = "Demoniittimalmi",
		["Gold Ore"] = "Kultamalmi",
		["Hellstone"] = "Helvetinkivi",
		["Iron Ore"] = "Rautamalmi",
		["Lead Ore"] = "Lyijymalmi",
		["Luminite"] = "Luminiitti",
		["Meteorite"] = "Meteoriitti",
		["Mythril Ore"] = "Mithrilmalmi",
		["Obsidian"] = "Obsidiaani",
		["Ores"] = "Malmit",
		["Orichalcum Ore"] = "Orichalcummalmi",
		["Palladium Ore"] = "Palladiummalmi",
		["Platinum Ore"] = "Platinamalmi",
		["Silver Ore"] = "Hopeamalmi",
		["Tin Ore"] = "Tinamalmi",
		["Titanium Ore"] = "Titaanimalmi",
		["Tungsten Ore"] = "Volframimalmi",
		
	},

	-- 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
    },
}