Module:Road data/strings/CAN/NB
MyWikiBiz, Author Your Legacy — Friday November 22, 2024
< Module:Road data | strings | CAN
Jump to navigationJump to searchDocumentation for this module may be created at Module:Road data/strings/CAN/NB/doc
--[==[ 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"]`. ]==] -- New Brunswick local NB = {} local util = require("Module:Road data/util") util.addAll(NB, require("Module:Road data/strings/CAN")) -- Provincial types NB.Route = { shield = { default = "NB %route%.svg", ["2"] = "NB %route% (TCH).svg", ["16"] = "NB %route% (TCH).svg" }, name = "Route %route%", link = "New Brunswick Route %route%", abbr = "Route %route%" } NB.NB = NB.Route NB.TCH = { shield = "NB %route% (TCH).svg", name = NB.Route.name, link = NB.Route.link, abbr = NB.Route.abbr.." (TCH)", orientation = "upright" } NB.A = {alias = {module = "CAN/QC", type = "A"}} NB.QC = {alias = {module = "CAN/QC", type = "QC"}} -- American types NB.I = {alias = {module = "USA/ME", type = "I"}} NB.US = {alias = {module = "USA/ME", type = "US"}} return NB