Jump to content

Module:Road data/strings/USA/MA

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Fredddie (talk | contribs) at 02:17, 12 February 2021 (update module). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

--[==[
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"]`.
]==]

-- Massachusetts
local MA = {}

local util = require("Module:Road data/util")
util.addAll(MA, require("Module:Road data/strings/USA"))

local suffix = " ([dab||%dab%, |]Massachusetts)"
local maint = "[[Massachusetts Department of Transportation|MassDOT]]"

MA.I.link = "Interstate %route% (Massachusetts)"
         
MA.US.link = "U.S. Route %route% in Massachusetts"
         
MA["US 1926"].shieldmain = "US %route% Massachusetts 1926.svg"
MA["US 1926"].link = MA.US.link

MA.Route = {shield = "MA Route %route%.svg",
		 name = "Route %route%",
         link = "Massachusetts Route %route%",
         abbr = "Route&nbsp;%route%",
         width = "expand"}
	      
MA.BL.link = "Interstate %route% Business ([dab||%dab%, |]Massachusetts)"
	      
MA.MA = MA.Route

MA.SR = MA.Route

MA["Route-Conn"] = {shield = "",
					name = MA.Route.name .. " Connector",
					link = MA.Route.link .. " Connector",
					abbr = MA.Route.abbr .. " Conn."}
				
MA["MA-Conn"] = MA["Route-Conn"]

MA.MATP = {shield = "",
           name = "Massachusetts Turnpike",
           link = "Massachusetts Turnpike",
           abbr = "Mass&nbsp;Pike"}

MA.CT = {alias = {module = "USA/CT", type = "CT"}}
MA.NH = {alias = {module = "USA/NH", type = "NH"}}
MA.NY = {alias = {module = "USA/NY", type = "NY"}}
MA.RI = {alias = {module = "USA/RI", type = "RI"}}
MA.VT = {alias = {module = "USA/VT", type = "VT"}}
MA.road = {alias = {module = "USA", type = "road"}}

return MA