Module:Road data/strings/ISR

MyWikiBiz, Author Your Legacy — Saturday July 27, 2024
Jump to navigationJump to search

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