Module:Road data/strings/SVK

MyWikiBiz, Author Your Legacy — Tuesday June 18, 2024
Jump to navigationJump to search

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

-- Slovakia
local SVK = {}

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

SVK.E.shield = "E%route%-SVK.svg"

SVK.D.shield = "Diaľnica D%route%.svg"
SVK.D.link = "Motorway D%route% (Slovakia)"
SVK.D.color = "MUTCDgreen"

SVK.R.shield = "Rýchlostná cesta R%route%.svg"
SVK.R.link = "R%route% expressway (Slovakia)"
SVK.R.color = "MUTCDgreen"

SVK.I = {
	shield = "Cesta I. triedy číslo %route%.svg",
	link = "I-%route% road (Slovakia)",
	abbr = "I-%route%"
}

SVK.II = {
	shield = "Cesta II. triedy číslo %route%.svg",
	link = "II-%route% road (Slovakia)",
		abbr = "II-%route%"
}

return SVK