Module:Road data/strings/CZE

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

-- Czech Republic
local CZE = {}

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


CZE.D.shield = "CZ traffic sign IS16a - D%route%.svg"
CZE.D.link = "D%route% motorway (Czech Republic)"
CZE.D.color = "MUTCDgreen"
CZE.D.translation = "Dálnice D%route%"
CZE.D.lang = "cs"

CZE.E.shield = "CZ traffic sign IS17 - E%route%.svg"
CZE.E.link = "European route E%route%"

CZE.R.shield = "SilniceI%route%.svg"
CZE.R.link = "R%route% expressway (Czech Republic)"
CZE.R.color = "MUTCDgreen"
CZE.R.translation = "Rychlostní silnice R%route%"
CZE.R.lang = "cs"

CZE.I = {
	shield = "SilniceI%route%.svg",
	name = "I/%route%",
	link = "Silnice I/%route%",
	abbr = "I/%route%"
}

CZE.II = {
	shield = "SilniceII%route%.svg",
	name = "II/%route%",
	link = "Silnice II/%route%",
	abbr = "II/%route%"
}
         

return CZE