--[==[
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.link = "European route E%route% in Ukraine"
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 = "Highway M%route% (Ukraine)"
UKR.M.translation = "Автошлях М%route%"
UKR.M.lang = "uk"

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

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

return UKR