Jump to content

Module:Road data/strings/CHL: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
svg
update module
Line 1: Line 1:
--[==[
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
-- Chile
local CHL = {}
local CHL = {}


local util = require("Module:Road data/util")
CHL.CH = {shield = "Chile Ruta %route% jct.svg",

link = "Chile Route %route%",
CHL.CH = {
abbr = "CH-%route%"}
shield = "Chile Ruta %route% jct.svg",
shieldmain = {
["1"] = "Ruta %route% (Chile-1R).svg",
["5"] = "Ruta %route% (Chile-1R).svg",
["7"] = "Ruta %route% (Chile-10R).svg",
["9"] = "Ruta %route% (Chile-12R).svg",
default = "Ruta %route% (Chile).svg"
},
name = "Route %route%",
link = "Chile Route %route%",
abbr = "CH-%route%"
}


return CHL
return CHL

Revision as of 03:59, 15 February 2021

--[==[
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",
		["5"] = "Ruta %route% (Chile-1R).svg",
		["7"] = "Ruta %route% (Chile-10R).svg",
		["9"] = "Ruta %route% (Chile-12R).svg",
		default = "Ruta %route% (Chile).svg"	
	},
	name = "Route %route%",
	link = "Chile Route %route%",
	abbr = "CH-%route%"
}

return CHL