Module:Road data/strings/IRL

Permanently protected module
From Wikipedia, the free encyclopedia

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

-- Ireland
local IRL = {}

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

IRL.E.shield = "IRL E-%route%.svg"
IRL.E.link = "European route E%route% in the Republic of Ireland"

IRL.M.shield = "M%route%-IE confirmatory.svg"
IRL.M.link = "M%route% motorway (Ireland)"
IRL.M.color = "motorway"
IRL.M.translation = "Mótarbhealach M%route%"
IRL.M.lang = "ga"

IRL.N.shield = "IRL N%route%.svg"
IRL.N.link = "N%route% road (Ireland)"
IRL.N.color = "primary"
IRL.N.translation = "Bóthar N%route%"
IRL.N.lang = "ga"
     
IRL.R.shield = "IRL R%route%.svg"
IRL.R.link = "R%route% road (Ireland)"
IRL.R.color = "minor"
IRL.R.translation = "Bóthar R%route%"
IRL.R.lang = "ga"

return IRL