Add fields for crossing=traffic_signals presets (#453)

Adds fields for:
* `button_operated`
* `traffic_signals:arrow`
* `traffic_signals:countdown`
* `traffic_signals:minimap`
* `traffic_signals:sound`
* `traffic_signals:vibration`
This commit is contained in:
archpdx 2022-05-12 09:34:35 -07:00 committed by GitHub
parent 2f1d1bbf02
commit 158e071b16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 64 additions and 2 deletions

View file

@ -0,0 +1,5 @@
{
"key": "button_operated",
"type": "check",
"label": "Button Operated"
}

View file

@ -0,0 +1,5 @@
{
"key": "traffic_signals:arrow",
"type": "check",
"label": "Tactile Arrow"
}

View file

@ -0,0 +1,5 @@
{
"key": "traffic_signals:countdown",
"type": "check",
"label": "Countdown"
}

View file

@ -0,0 +1,5 @@
{
"key": "traffic_signals:minimap",
"type": "check",
"label": "Tactile Map"
}

View file

@ -0,0 +1,21 @@
{
"key": "traffic_signals:sound",
"type": "combo",
"label": "Sound Signals",
"strings": {
"options": {
"yes": "Yes",
"no": "No",
"locate": {
"title": "Locate",
"description": "There is only a signal to find the pole"
},
"walk": {
"title": "Locate",
"description": "here is only the signal when walking is allowed"
}
}
},
"autoSuggestions": false,
"customValues": false
}

View file

@ -0,0 +1,5 @@
{
"key": "traffic_signals:vibration",
"type": "check",
"label": "Vibration"
}