Module:Road data/strings/ROU

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

-- Romania
local ROU = {}

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


ROU.E.shield = "E%route%-RO.svg"
ROU.E.translation = "Drumul european E%route%"
ROU.E.lang = "ro"

ROU.A.shield = "A%route%-RO.svg"
ROU.A.name = "Autostrada A%route%"
ROU.A.link = "A%route% motorway (Romania)"
ROU.A.width = "expand"
ROU.A.color = "MUTCDgreen"

ROU.DN = {
	shield = "ROU DN%route%.svg",
	name = {
		default = "National Road %route%",
		["CB"] = "Bucharest Ring Road"
	},
	link = {
		default = "DN%route%",
		["CB"] = "Centura București"
	},
	abbr = "DN%route%",
	translation = {
		default = "Drumul Național %route%",
		["CB"] = "Centura București"
	},
	lang = "ro"
}

ROU.DC = {
	shield = "DC%route%-RO.svg",
	name = "Communal Road DC%route%",
	link = "DC%route%",
	abbr = "DC%route%",
	translation = "Drumul comunal DC%route%",
	lang = "ro"
}

ROU.DJ = {
	shield = "DJ%route%-RO.svg",
	name = "County Road DJ%route%",
	link = "DJ%route%",
	abbr = "DJ%route%",
	translation = "Drumul judetean DC%route%",
	lang = "ro"
}

ROU.DX = {
	shield = "DX%route%-RO.svg",
	name = "DX%route% Expressway",
	link = "DX%route%",
	abbr = "DX%route%",
	translation = "Drumul expres DX%route%",
	lang = "ro"
}
ROU.DE = ROU.DX
ROU.DEx = ROU.DX

return ROU