Module:LangVars/en: Difference between revisions

From Vintage Story Wiki
mNo edit summary
mNo edit summary
Line 26: Line 26:
"Lead solder",
"Lead solder",
"Silver solder",
"Silver solder",
},
toolTypes = {
"Pickaxe",
"Axe",
"Shovel",
"Hoe",
"Scythe",
"Prospecting pick",
"Spear",
"Falx",
},
},
itemToolHead = "Head",
itemToolHead = "Head",
itemPickaxe = 'Pickaxe',
itemProspectingPick = 'Prospecting pick',
itemAxe = 'Axe',
itemShovel = 'Shovel',
itemHoe = 'Hoe',
itemFalx = 'Falx',
itemSpear = 'Spear',
itemScythe = 'Scythe',
itemArrowhead = 'Arrowhead',
itemArrowhead = 'Arrowhead',
itemArrow = 'Arrow',
itemArrow = 'Arrow',

Revision as of 03:47, 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",
	},
	toolTypes = {
		"Pickaxe",
		"Axe",
		"Shovel",
		"Hoe",
		"Scythe",
		"Prospecting pick",
		"Spear",
		"Falx",
	},
	itemToolHead = "Head",
	itemArrowhead = 'Arrowhead',
	itemArrow = 'Arrow',
	itemMetalPlate = 'Metal plate',
	itemLantern = 'Lantern',
	any = 'Any',
}
p.i18n = i18n

return p