Module:Road data/strings/CZE
MyWikiBiz, Author Your Legacy — Thursday November 28, 2024
< Module:Road data | strings
Jump to navigationJump to searchDocumentation for this module may be created at Module:Road data/strings/CZE/doc
--[==[ 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.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.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