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

-- Italy
local ITA = {}

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

ITA.A.shield = {
	default = "Autostrada A%route% Italia.svg",
	["CT-SR"] = "Italian traffic signs - Autostrada CT-SR.svg"
}
ITA.A.name = {
	arg = "route",
	["CT-SR"] = "Autostrada Catania-Siracusa",
	default = "Autostrada A%route%"
}
ITA.A.link = "Autostrada A%route% (Italy[dab||, %dab%|])"
ITA.A.color = "EUR"
ITA.A.translation = {
	arg = "route",
	["2"] = "Autostrada del Mediterraneo",
}
ITA.A.lang = "it"
ITA.A.maint = "[[ANAS]]"

ITA.RA = {
	shield = "Italian traffic signs - raccordo autostradale %route%.svg",
	name = "Autostrada Connection %route%",
	link = "Raccordo autostradale RA%route%",
	abbr = "RA %route%",
	color = "EUR",
	translation = "Raccordo autostradale %route%",
	lang = "it",
	maint = "[[ANAS]]"
}

ITA.SS = {
	shield = {
		default = "Strada Statale %route% Italia.svg",
		["131dcn"] = "Strada Statale 131dir-centr Italia m.svg"
	},
	name = {
		arg = "route",
		default = "State Highway %route%",
		["131dcn"] = "State Highway 131<br>Nuoro Central Branch",
	},
	link = "",
	abbr = "SS %route%",
	translation = {
		arg = "route",
		default = "Strada statale %route%",
		["131dcn"] = "Strada statale 131<br>Diramazione Centrale Nuorese",
	},
	lang = "it",
	maint = "[[ANAS]]"
}
          
ITA.T =	{
	shield = "Traforo T%route% Italia.svg",
	name =	{
		["1"] = "Mont Blanc Tunnel",
		["2"] = "Great St Bernard Tunnel",
		["3"] = "Bargagli-Ferriere Tunnel",
		["4"] = "Fréjus Road Tunnel"
	},
	link =	{
		arg = "route",
		["1"] = "Mont Blanc Tunnel",
		["2"] = "Great St Bernard Tunnel",
		["3"] = "Bargagli-Ferriere Tunnel",
		["4"] = "Fréjus Road Tunnel"
	},
	abbr = "T %route%"
}

return ITA