Jump to content

Module:Road data/strings/AUT

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Fredddie (talk | contribs) at 06:05, 13 February 2021 (update module). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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

-- Austria
local AUT = {}

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

AUT[''] = {color = "background:#276FB7; color:#fff;"}

AUT.E.shield = "E%route%-AT.svg"

AUT.A = {
	shield = "A%route%-AT.svg",
	link = {
		default = "A%route% motorway (Austria)",
		["1"] = "West Autobahn",
		["2"] = "Süd Autobahn",
		["3"] = "Südost Autobahn",
		["4"] = "Ostautobahn",
		["5"] = "Nordautobahn",
		["6"] = "Nordost Autobahn",
		["7"] = "Mühlkreis Autobahn",
		["8"] = "Innkreis Autobahn",
		["9"] = "Pyhrnautobahn",
		["10"] = "Tauern Autobahn",
		["11"] = "Karawanken Autobahn",
		["12"] = "Inn Valley Autobahn",
		["13"] = "Brenner Autobahn",
		["14"] = "Walgau Autobahn",
		["21"] = "Wiener Außenring Autobahn",
		["22"] = "Donauufer Autobahn",
		["23"] = "Südosttangente",
		["24"] = "Autobahn Verbindungsspange Rothneusiedl",
		["25"] = "Welser Autobahn",
		["26"] = "Linzer Autobahn"
	},
	abbr = "A%route%",
	name = "Motorway A%route%"
}

AUT.S = {
	shield = "S%route%-AT.svg",
	link = {
		default = "Schnellstraße %route% (Austria)",
		["31"] = "Burgenland Schnellstraße"
	},
	abbr = "S%route%",
	name = "Expressway S%route%"
}

AUT.B = {
	shield = {
		ifexists = true,
		default = "B%route%-AT.svg",
		otherwise = ""
	},
	link = "",
	abbr = "B%route%",
	name = "Highway B%route%"
}

AUT.L = {
	shield = "",
	link = "",
	abbr = "L%route%",
	name = "Highway L%route%"
}

return AUT