Module:Road data/strings/CHL

MyWikiBiz, Author Your Legacy — Monday May 06, 2024
Jump to navigationJump to search

Documentation for this module may be created at Module:Road data/strings/CHL/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"]`.
]==]

-- Chile
local CHL = {}

local util = require("Module:Road data/util")

CHL.CH = {
	shield = "Chile Ruta %route% jct.svg",
	shieldmain = {
		["1"] = {"Ruta %route% (Chile-1R).svg", "Ruta %route% (Chile-2R).svg"},
		["5"] = {"Ruta %route% (Chile-2Rb).svg", "Ruta %route% (Chile-3Rb).svg", "Ruta %route% (Chile-4Rb).svg"},
		["7"] = {"Ruta %route% (Chile-10R).svg", "Ruta %route% (Chile-11R).svg"},
		["9"] = "Ruta %route% (Chile-12R).svg",
		["25"] = {"Ruta %route% (Chile).svg", "Ruta %route% (Chile-b).svg"},
		["60"] = {"Ruta %route% (Chile).svg", "Ruta %route% (Chile-b).svg"},
		["68"] = {"Ruta %route% (Chile).svg", "Ruta %route% (Chile-b).svg"},
		default = "Ruta %route% (Chile).svg"	
	},
	name = "Route %route%",
	link = "Chile Route %route%",
	abbr = "CH-%route%"
}

return CHL