Difference between revisions of "Module:Road data/strings/ISR"

MyWikiBiz, Author Your Legacy — Sunday September 07, 2025
Jump to navigationJump to search
(Pywikibot 6.4.0)
 
(No difference)

Latest revision as of 05:43, 16 July 2021

Documentation for this module may be created at Module:Road data/strings/ISR/doc

-- Israel
local ISR = {}

ISR.Fwy = {
	shield = "ISR-FW-%route%.svg",
	link = "Highway %route% (Israel)",
	abbr = "Highway %route%",
	color = "ISR-freeway"
}
ISR.Freeway = ISR.Fwy

ISR.Hwy = {
	shield = "ISR-HW-%route%.svg",
	link = ISR.Fwy.link,
	abbr = ISR.Fwy.abbr
}
ISR.Highway = ISR.Hwy

ISR.Dual = {
	shield = {"ISR-FW-%route%.svg","ISR-HW-%route%.svg"},
	link = ISR.Fwy.link,
	abbr = ISR.Fwy.abbr
}

ISR.Route = {
	shield = ISR.Hwy.shield,
	link = "Route %route% (Israel)",
	abbr = "Route %route%"
}
	  
ISR.Local = {
	shield = ISR.Hwy.shield,
	link = "",
	abbr = "Road %route%"
}

return ISR