Module:Tr/db-lv

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

		["Bird"] = "Putns",
		["Black Lens"] = "Melnā lēca",
		["Blue Jay"] = "Zilais sīlis",
		["Blue Slime"] = "Zilais slaims",
		["Bunny Hood"] = "Zaķa cepure",
		["Bunny"] = "Zaķis",
		["Cardinal"] = "Kardināls",
		["Clown"] = "Klauns",
		["Corrupt Bunny"] = "Krapšana zaķis",
		["Corrupt Goldfish"] = "Krapšana zivtiņa",
		["Corrupt Penguin"] = "Krapšana pingvīns",
		["Daybloom"] = "Margrietiņa",
		["Demon Eye"] = "Dēmona acs",
		["Duck"] = "Pīle",
		["Eskimo armor"] = "Eskimo drēbes",
		["Firefly"] = "Naktstauriņš",
		["Frost Core"] = "Ledus serde",
		["Frost Staff"] = "Ledus zizlis",
		["Frozen Key Mold"] = "Sasaldētās atslēgas trafarets",
		["Goblin Scout"] = "Goblinu skauts",
		["Green Slime"] = "Zaļais slaims",
		["Hay"] = "Ziedputeksnis",
		["Hoppin' Jack"] = "Lecošais džeks",
		["Ice Block"] = "Ledus gabals",
		["Ice Elemental Banner"] = "Ledus elementa karogs",
		["Ice Elemental"] = "Ledus elements",
		["Ice Feather"] = "Ledus spalva",
		["Ice Golem"] = "Ledus golems",
		["Ice Slime"] = "Ledus slaims",
		["Julia Butterfly"] = "Džūlija taurenis",
		["King Slime"] = "Slaimu Karalis",
		["Lens"] = "Lēca",
		["Mallard Duck"] = "Meža pīle",
		["Monarch Butterfly"] = "Monarha taurenis",
		["Moon Charm"] = "Mēness burvība",
		["Penguin"] = "Pingvīns",
		["Pinky"] = "Rozija",
		["Possessed Armor"] = "Tumsas bruņinieks",
		["Pumpkin"] = "Ķirbis",
		["Purple Emperor Butterfly"] = "Purpura imperatora taurenis",
		["Purple Slime"] = "Violetais slaims",
		["Raven"] = "Krauklis",
		["Red Admiral Butterfly"] = "Sarkanā admirāļa taurenis",
		["Red Slime"] = "Sarkanais slaims",
		["Seed"] = "Sēkla",
		["Shackle"] = "Važas",
		["Snow Block"] = "Sniega gabals",
		["Squirrel"] = "Vāvere",
		["Sulphur Butterfly"] = "Sulfura taurenis",
		["The Groom"] = "Grooms",
		["Through the Window"] = "Ainava aiz loga",
		["Top Hat"] = "Katliņcepure",
		["Tree Nymph Butterfly"] = "Koka Nimfas taurenis",
		["Ulysses Butterfly"] = "Uleses taurenis",
		["Wandering Eye"] = "Klejojošā acs",
		["Werewolf"] = "Vilkacis",
		["Wolf Banner"] = "Vilka karogs",
		["Wolf"] = "Vilks",
		["Wraith"] = "Rēgs",
		["Yellow Marigold"] = "Dzeltenā kliņģerīte",
		["Zebra Swallowtail Butterfly"] = "Zebras Dižtaurenis",
		["Zombie Eskimo Banner"] = "Eskimo zombija karogs",
		["Zombie Eskimo"] = "Eskimo zombijs",
		["Zombie"] = "Zombijs",
		
	},

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