Module:Road data/strings/UKR

From the AARoads Wiki: Read about the road before you go
Jump to navigation Jump to search

--[==[
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"]`.
]==]

-- Ukraine
local UKR = {}

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

UKR.E.shield = "Tabliczka E%route%.svg"
UKR.E.color = "EUR-UKR"
UKR.E.translation = "Автошлях E%route%"
UKR.E.lang = "uk"

UKR.M.shield = {
		hook = "padroute",
		paddedLength = 2,
		default = "M%paddedRoute%-UA.svg",
	}
UKR.M.name = "M%route% Highway"
UKR.M.link = "M%route% (Ukraine)"
UKR.M.translation = "Автошлях М%route%"
UKR.M.lang = "uk"
UKR["М"] = UKR.M

UKR.H.shield = "N-road-%route%-Ukraine.svg"
UKR.H.name = "Н%route% Highway"
UKR.H.link = "H%route% (Ukraine)"
UKR.H.translation = "Автошлях Н%route%"
UKR.H.lang = "uk"
UKR["Н"] = UKR.H
UKR.N = UKR.H

UKR.P.shield = {
	ifexists = true,
	default = "P-road-%route%-Ukraine.svg",
	otherwise = ""}
UKR.P.name = "Р%route% Highway"
UKR.P.link = "P%route% (Ukraine)"
UKR.P.translation = "Автошлях Р%route%"
UKR.P.lang = "uk"
UKR["Р"] = UKR.P
UKR.R = UKR.P

return UKR