Module:Unit/data

From Eco - English Wiki
Revision as of 14:47, 23 February 2022 by Demian (talk | contribs) (Created page with "-------------------------------------------------------- -- Module:Unit data -- This page holds localization data for Module:Unit. -------------------------------------------------------- return { -- The format is: -- ["abbreviation to type into the template"] = { "unit to display", "unit name", }, ["caseSensitiveUnits"] = { ["mHz"] = { "mHz", "millihertz", }, ["MHz"] = { "MHz", "megahertz", }, ["ug"] = { "μg", "microgram", }, ["Mohm"] = { "MΩ", "meg...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Unit/data/doc

--------------------------------------------------------
-- Module:Unit data
-- This page holds localization data for Module:Unit.
--------------------------------------------------------

return {
	-- The format is:
	-- ["abbreviation to type into the template"] = { "unit to display", "unit name", },
	["caseSensitiveUnits"] = {
		["mHz"] = { "mHz", "millihertz", },
		["MHz"] = { "MHz", "megahertz", },
		["ug"] = { "μg", "microgram", },
		["Mohm"] = { "MΩ", "megaohm", }
	},
	["caseInsensitiveUnits"] = {
		["m2"] = { "m<sup>2</sup>", "square meter", },
		["m2/s"] = { "m<sup>2</sup>/s", "square meter per second", },
		["m2ps"] = { "m<sup>2</sup>/s", "square meter per second", },
		["m/s"] = { "m/s", "meter per second", },
		["mps"] = { "m/s", "meter per second", },
	}
}