Module:Road data/strings/SGP

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
--[==[
To inspect the content of this data module, use [[Special:ExpandTemplates]]
and enter the following input text:
  {{#invoke:Road data/dump|dump|module=Module:<name-of-this-module>}}

To inspect the content of this data module when editing, enter the following
into the Debug console:
  local util = require("Module:Road data/util")
  print(util.arrayToString(p))
To inspect a particular route type, change `p` above to include the route type,
e.g., `p.I` and `p["US-Hist"]`.
]==]

-- Singapore
local SGP = {}

local util = require("Module:Road data/util")
local format = mw.ustring.format
util.addAll(SGP, require("Module:Road data/strings/ASIA"))

local expressways = {
	arg = "route",
	["PIE"] = 'Pan Island Expressway',
	["AYE"] = 'Ayer Rajah Expressway',
	["NSE"] = 'North–South Corridor, Singapore',
	["ECP"] = 'East Coast Parkway',
	["CTE"] = 'Central Expressway',
	["TPE"] = 'Tampines Expressway',
	["KPE"] = 'Kallang–Paya Lebar Expressway',
	["SLE"] = 'Seletar Expressway',
	["BKE"] = 'Bukit Timah Expressway',
	["KJE"] = 'Kranji Expressway',
	["MCE"] = 'Marina Coastal Expressway'
}

SGP.E = {
	shield = {
		default = '%route%-SG.svg',
	},
	name = expressways,
	link = expressways,
	abbr = "%route%",
	color = "MUTCDgreen"
}

return SGP