Module:Road data/strings/ALB

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

-- Albania
local ALB = {}

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

ALB.A.shield = "Autostrada A%route% Italia.svg"
ALB.A.shieldmain = "Autostrada A%route% Italia.svg"
ALB.A.link = "A%route% motorway (Albania)"
ALB.A.name = "A%route% motorway"
ALB.A.color = "EUR"
ALB.A.translation = "Autostradë A%route%"

ALB.SH = {
	shield = "SH%route%-AL.svg",
	link = "National Road %route% (Albania)",
	abbr = "SH%route%",
	name = "National Road SH%route%",
	translation = "Rruga shtetërore SH%route%"
}

ALB.RR = {
	shield = "Rrugë të rrethit %route% Albania.svg",
	link = "",
	abbr = "RR %route%",
	name = "District Road RR %route%"
}

ALB.K = {
	shield = "Rrugë komunale %route% Albania.svg",
	link = "",
	abbr = "K %route%",
	name = "Communal Road K %route%"
}

for k, v in pairs(ALB) do if k:find ("^%a") then
	v.browse = "[[Highways in Albania]]"
	v.lang = "sq"
	end
end

return ALB