Add network_horse for horseback routes

This commit is contained in:
Bryan Housel
2016-07-29 16:41:08 -04:00
parent 764e443046
commit 4fe111180d
6 changed files with 56 additions and 2 deletions

View File

@@ -674,6 +674,20 @@ en:
rwn: Regional
# network_foot field placeholder
placeholder: 'Local, Regional, National, International'
network_horse:
# network=*
label: Network Type
options:
# network=ihn
ihn: International
# network=lhn
lhn: Local
# network=nhn
nhn: National
# network=rhn
rhn: Regional
# network_horse field placeholder
placeholder: 'Local, Regional, National, International'
note:
# note=*
label: Note

View File

@@ -892,6 +892,20 @@
}
}
},
"network_horse": {
"key": "network",
"type": "combo",
"label": "Network Type",
"placeholder": "Local, Regional, National, International",
"strings": {
"options": {
"lhn": "Local",
"rhn": "Regional",
"nhn": "National",
"ihn": "International"
}
}
},
"network": {
"key": "network",
"type": "text",

View File

@@ -0,0 +1,14 @@
{
"key": "network",
"type": "combo",
"label": "Network Type",
"placeholder": "Local, Regional, National, International",
"strings": {
"options": {
"lhn": "Local",
"rhn": "Regional",
"nhn": "National",
"ihn": "International"
}
}
}

View File

@@ -10820,7 +10820,8 @@
"icon": "route-horse",
"fields": [
"ref",
"operator"
"operator",
"network_horse"
]
},
"type/route/pipeline": {

View File

@@ -10,6 +10,7 @@
"icon": "route-horse",
"fields": [
"ref",
"operator"
"operator",
"network_horse"
]
}

10
dist/locales/en.json vendored
View File

@@ -1203,6 +1203,16 @@
"iwn": "International"
}
},
"network_horse": {
"label": "Network Type",
"placeholder": "Local, Regional, National, International",
"options": {
"lhn": "Local",
"rhn": "Regional",
"nhn": "National",
"ihn": "International"
}
},
"network": {
"label": "Network"
},