Module:Road data/strings/USA/AK explained

--[==[ To inspect the content of this data module, use [[Special:ExpandTemplates]]and enter the following input text:

To inspect the content of this data module when editing, enter the followinginto 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"]`.]

]

-- Alaskalocal AK =

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

local suffix = " ([dab||%dab%, |]Alaska)"

AK.I.link = "Interstate A-%route%"AK.I.name = "Interstate A-%route%"AK.I.abbr = "A-%route%"AK.I.shield = "I-A%route%.svg"

AK.US.link = "U.S. Route %route% in Alaska"

--Do not add USH special routes

AK.AK =

AK["AK-Bus"] = AK.Highway =

AK.Hwy = AK.Highway

-- add new types above this line if you want it to have the state highway browse and maintfor k, v in pairs(AK) do if k:find ("^%a") then v.maint = "Alaska DOT&PF" v.browse = "Alaska Routes" v.browselinks = endend

return AK