mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 09:42:56 +00:00
Add terms property to fields Make terms translatable for searchable fields Account for fields' terms and keys when filtering with the Add field menu (close #5763)
18 lines
321 B
JSON
18 lines
321 B
JSON
{
|
|
"key": "takeaway",
|
|
"type": "combo",
|
|
"label": "Takeaway",
|
|
"placeholder": "Yes, No, Takeaway Only...",
|
|
"strings": {
|
|
"options": {
|
|
"yes": "Yes",
|
|
"no": "No",
|
|
"only": "Takeaway Only"
|
|
}
|
|
},
|
|
"terms": [
|
|
"take out",
|
|
"takeout"
|
|
]
|
|
}
|