Module:LangVars/en: Difference between revisions

From Vintage Story Wiki
mNo edit summary
mNo edit summary
Line 6: Line 6:
itemLog = 'Log',
itemLog = 'Log',
itemPlank = 'Plank',
itemPlank = 'Plank',
itemPickaxeHead = 'Pickaxe head',
metalPrefixes = {
"Copper",
"Silver",
"Gold",
"Tin",
"Zinc",
"Bismuth",
"Lead",
"Iron",
"Brass",
"Tin bronze",
"Bismuth bronze",
"Black bronze",
"Meteoric iron",
"Steel",
"Blister steel",
"Titanium",
"Molybdochalkos",
"Lead solder",
"Silver solder",
},
itemToolHead = "Head",
itemPickaxe = 'Pickaxe',
itemPickaxe = 'Pickaxe',
itemProspectingPickHead = 'Prospecting pick head',
itemProspectingPick = 'Prospecting pick',
itemProspectingPick = 'Prospecting pick',
itemAxeHead = 'Axe head',
itemAxe = 'Axe',
itemAxe = 'Axe',
itemShovelHead = 'Shovel head',
itemShovel = 'Shovel',
itemShovel = 'Shovel',
itemHoeHead = 'Hoe head',
itemHoe = 'Hoe',
itemHoe = 'Hoe',
itemFalxHead = 'Falx head',
itemFalx = 'Falx',
itemFalx = 'Falx',
itemSpearHead = 'Spear head',
itemSpear = 'Spear',
itemSpear = 'Spear',
itemScytheHead = 'Scythe head',
itemScythe = 'Scythe',
itemScythe = 'Scythe',
itemArrowhead = 'Arrowhead',
itemArrowhead = 'Arrowhead',

Revision as of 03:33, 23 August 2022

Documentation for this module may be created at Module:LangVars/en/doc

local p = {}

local i18n = {
	itemStone = 'Stone',
	itemRock = 'Rock',
	itemLog = 'Log',
	itemPlank = 'Plank',
	metalPrefixes = {
		"Copper",
		"Silver",
		"Gold",
		"Tin",
		"Zinc",
		"Bismuth",
		"Lead",
		"Iron",
		"Brass",
		"Tin bronze",
		"Bismuth bronze",
		"Black bronze",
		"Meteoric iron",
		"Steel",
		"Blister steel",
		"Titanium",
		"Molybdochalkos",
		"Lead solder",
		"Silver solder",
	},
	itemToolHead = "Head",
	itemPickaxe = 'Pickaxe',
	itemProspectingPick = 'Prospecting pick',
	itemAxe = 'Axe',
	itemShovel = 'Shovel',
	itemHoe = 'Hoe',
	itemFalx = 'Falx',
	itemSpear = 'Spear',
	itemScythe = 'Scythe',
	itemArrowhead = 'Arrowhead',
	itemArrow = 'Arrow',
	itemMetalPlate = 'Metal plate',
	itemLantern = 'Lantern',
	any = 'Any',
}
p.i18n = i18n

return p