Jump to content

Module:Road data/strings/EUR

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

-- Europe
local EUR = {}

local util = require("Module:Road data/util")
local format = mw.ustring.format

-- European roads
EUR.E = {
	shield = "Tabliczka E%route%.svg",
	name = "E%route%",
	link = "European route E%route%",
	abbr = "E %route%",
	color = "EUR",
	browse = {
		{link = "International E-road network", bold = true}
	}
}

-- Most common road types in Europe
for _,type in ipairs({"A", "B", "D", "H", "K", "L", "M", "N", "O", "P", "R", "S", "V"}) do
	EUR[type] = {
		shield = "",
		name = type .." " .. "%route%",
		link = "",
		abbr = type .." " .. "%route%"
	}
end

return EUR