Module:Road data/strings/BLR

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

-- Belarus
local BLR = {}

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

BLR.E.shield = "E%route%-BY.svg"

BLR.M.shield = "M%route%-BY.svg"
BLR.M.name = "Magistral M%route%"
BLR.M.link = "M%route% highway (Belarus)"
BLR["М"] = BLR.M

BLR.P.shield = "P%route%-BY.svg"
BLR.P.name = "Road P%route%"
BLR.P.link = "P%route% highway (Belarus)"

BLR["Р"] = BLR.P

BLR.H.name = "Road H%route%"
BLR.H.link = "H%route% highway (Belarus)"

BLR["Н"] = BLR.N

return BLR