模組:Road data/strings/VNM

维基百科,自由的百科全书
文档图示 模块文档[创建]
-- Vietnam
local VNM = {}

VNM[''] = {shield = "",
           link = "Route %route% (Vietnam)",
           abbr = "Đường %route%"}

VNM.nation = {shield = "",
              link = "National Route %route% (Vietnam)",
              abbr = "QL %route%"}

VNM["ql"] = VNM.nation
VNM["quốc lộ"] = VNM.nation
VNM["national"] = VNM.nation

VNM.province = {shield = "",
                link = "Provincial Route %route% (Vietnam)",
                abbr = "TL %route%"}

VNM["tl"] = VNM.province
VNM["tỉnh lộ"] = VNM.province
VNM["provincial"] = VNM.province

VNM.district = {shield = "",
                link = "District Route %route% (Vietnam)",
                abbr = "HL %route%"}

VNM["hl"] = VNM.district
VNM["hương lộ"] = VNM.district
VNM["huyện lộ"] = VNM.district

VNM.towpath = {shield = "",
               link = "Canal Towpath %route% (Vietnam)",
               abbr = "ĐCK %route%"}

VNM["đck"] = VNM.towpath
VNM["đường cặp kênh"] = VNM.towpath

return VNM