Module:Road data/strings/XKX

From the AARoads Wiki: Read about the road before you go
Jump to navigation Jump to search

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

-- Kosovo
local XKX = {}

local frame = mw.getCurrentFrame()
local util = require("Module:Road data/util")
util.addAll(XKX, require("Module:Road data/strings/EUR"))

XKX.R.shield = {
	ifexists = true,
	default = "R-%route%-Kosovo.svg",
	otherwise = "R%route%-Kosovo.svg"
}
XKX.R.link = "R %route% (Kosovo)"
XKX.R.abbr = "R %route%"
XKX.R.color = "XKX-R"
XKX.R.translation = frame:expandTemplate{ title = 'native name list', args = {
	tag1="sq",
	name1="Autostrada R %route%",
	tag2="sr-Latn", 
	name2="Autoput R %route%",
	tag3="sr-Cyrl", 
	name3="Аутопут %route%"
}} 

XKX.M.shield = "M%route%-Kosovo.svg"
XKX.M.link = "M-%route% (Kosovo)"
XKX.M.abbr = "M-%route%"
XKX.M.translation = frame:expandTemplate{ title = 'native name list', args = {
	tag1="sq",
	name1="Magjistrale %route%",
	tag2="sr-Latn", 
	name2="Magistralni put %route%",
	tag3="sr-Cyrl", 
	name3="Магистрални пут %route%"
}} 

return XKX