mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 19:26:41 +02:00
Add string suggestions for display and visibility combos
This commit is contained in:
@@ -321,6 +321,9 @@ en:
|
||||
types:
|
||||
'cycleway:left': Left side
|
||||
'cycleway:right': Right side
|
||||
date:
|
||||
# date=*
|
||||
label: Date
|
||||
delivery:
|
||||
# delivery=*
|
||||
label: Delivery
|
||||
@@ -336,6 +339,9 @@ en:
|
||||
diaper:
|
||||
# diaper=*
|
||||
label: Diaper Changing Available
|
||||
display:
|
||||
# display=*
|
||||
label: Display
|
||||
dock:
|
||||
# dock=*
|
||||
label: Type
|
||||
@@ -1040,6 +1046,9 @@ en:
|
||||
supervised:
|
||||
# supervised=*
|
||||
label: Supervised
|
||||
support:
|
||||
# support=*
|
||||
label: Support
|
||||
surface:
|
||||
# surface=*
|
||||
label: Surface
|
||||
@@ -1122,6 +1131,16 @@ en:
|
||||
vending:
|
||||
# vending=*
|
||||
label: Type of Goods
|
||||
visibility:
|
||||
# visibility=*
|
||||
label: Visibility
|
||||
options:
|
||||
# visibility=area
|
||||
area: Over 20m (65ft)
|
||||
# visibility=house
|
||||
house: Up to 5m (16ft)
|
||||
# visibility=street
|
||||
street: 5 to 20m (16 to 65ft)
|
||||
water:
|
||||
# water=*
|
||||
label: Type
|
||||
|
||||
@@ -418,6 +418,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"date": {
|
||||
"key": "date",
|
||||
"type": "check",
|
||||
"label": "Date"
|
||||
},
|
||||
"delivery": {
|
||||
"key": "delivery",
|
||||
"type": "check",
|
||||
@@ -454,6 +459,17 @@
|
||||
"5"
|
||||
]
|
||||
},
|
||||
"display": {
|
||||
"key": "display",
|
||||
"type": "combo",
|
||||
"label": "Display",
|
||||
"options": [
|
||||
"analog",
|
||||
"digital",
|
||||
"sundial",
|
||||
"unorthodox"
|
||||
]
|
||||
},
|
||||
"dock": {
|
||||
"key": "dock",
|
||||
"type": "combo",
|
||||
@@ -1391,6 +1407,11 @@
|
||||
"type": "check",
|
||||
"label": "Supervised"
|
||||
},
|
||||
"support": {
|
||||
"key": "support",
|
||||
"type": "combo",
|
||||
"label": "Support"
|
||||
},
|
||||
"surface": {
|
||||
"key": "surface",
|
||||
"type": "combo",
|
||||
@@ -1489,6 +1510,18 @@
|
||||
"type": "combo",
|
||||
"label": "Type of Goods"
|
||||
},
|
||||
"visibility": {
|
||||
"key": "visibility",
|
||||
"type": "combo",
|
||||
"label": "Visibility",
|
||||
"strings": {
|
||||
"options": {
|
||||
"house": "Up to 5m (16ft)",
|
||||
"street": "5 to 20m (16 to 65ft)",
|
||||
"area": "Over 20m (65ft)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"water_point": {
|
||||
"key": "water_point",
|
||||
"type": "check",
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"key": "display",
|
||||
"type": "combo",
|
||||
"label": "Display"
|
||||
"label": "Display",
|
||||
"options": ["analog", "digital", "sundial", "unorthodox"]
|
||||
}
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
{
|
||||
"key": "visibility",
|
||||
"type": "combo",
|
||||
"label": "Visibility"
|
||||
"label": "Visibility",
|
||||
"strings": {
|
||||
"options": {
|
||||
"house": "Up to 5m (16ft)",
|
||||
"street": "5 to 20m (16 to 65ft)",
|
||||
"area": "Over 20m (65ft)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -906,6 +906,12 @@
|
||||
"name": "Clinic"
|
||||
},
|
||||
"amenity/clock": {
|
||||
"fields": [
|
||||
"support",
|
||||
"display",
|
||||
"visibility",
|
||||
"date"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex"
|
||||
|
||||
Vendored
+17
@@ -914,6 +914,9 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"date": {
|
||||
"label": "Date"
|
||||
},
|
||||
"delivery": {
|
||||
"label": "Delivery"
|
||||
},
|
||||
@@ -929,6 +932,9 @@
|
||||
"diaper": {
|
||||
"label": "Diaper Changing Available"
|
||||
},
|
||||
"display": {
|
||||
"label": "Display"
|
||||
},
|
||||
"dock": {
|
||||
"label": "Type"
|
||||
},
|
||||
@@ -1499,6 +1505,9 @@
|
||||
"supervised": {
|
||||
"label": "Supervised"
|
||||
},
|
||||
"support": {
|
||||
"label": "Support"
|
||||
},
|
||||
"surface": {
|
||||
"label": "Surface"
|
||||
},
|
||||
@@ -1564,6 +1573,14 @@
|
||||
"vending": {
|
||||
"label": "Type of Goods"
|
||||
},
|
||||
"visibility": {
|
||||
"label": "Visibility",
|
||||
"options": {
|
||||
"house": "Up to 5m (16ft)",
|
||||
"street": "5 to 20m (16 to 65ft)",
|
||||
"area": "Over 20m (65ft)"
|
||||
}
|
||||
},
|
||||
"water_point": {
|
||||
"label": "Water Point"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user