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 02:22, 19 February 2021 (add shieldmain (via WP:JWB)). 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",
	shield = "Tabliczka E%route%.svg",
	name = "E%route%",
	link = "European route E%route%",
	abbr = "E%route%",
	browse = {
		{link = "International E-road network", bold = true}
	}
}

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

return EUR