mirror of
https://github.com/FoggedLens/iD.git
synced 2026-06-05 14:38:05 +02:00
Add amenity=bicycle_repair_station preset (closes #2497)
This commit is contained in:
@@ -438,6 +438,18 @@ en:
|
||||
label: Seasonal
|
||||
service:
|
||||
label: Type
|
||||
service/bicycle/chaintool:
|
||||
label: Chain Tool
|
||||
options:
|
||||
undefined: Assumed to be No
|
||||
"yes": "Yes"
|
||||
"no": "No"
|
||||
service/bicycle/pump:
|
||||
label: Air Pump
|
||||
options:
|
||||
undefined: Assumed to be No
|
||||
"yes": "Yes"
|
||||
"no": "No"
|
||||
shelter:
|
||||
label: Shelter
|
||||
shelter_type:
|
||||
@@ -648,6 +660,9 @@ en:
|
||||
amenity/bicycle_rental:
|
||||
name: Bicycle Rental
|
||||
terms: "<translate with synonyms or related terms for 'Bicycle Rental', separated by commas>"
|
||||
amenity/bicycle_repair_station:
|
||||
name: Bicycle Repair Station
|
||||
terms: "<translate with synonyms or related terms for 'Bicycle Repair Station', separated by commas>"
|
||||
amenity/boat_rental:
|
||||
name: Boat Rental
|
||||
terms: "<translate with synonyms or related terms for 'Boat Rental', separated by commas>"
|
||||
|
||||
@@ -893,6 +893,30 @@
|
||||
"drive-through"
|
||||
]
|
||||
},
|
||||
"service/bicycle/chaintool": {
|
||||
"key": "service:bicycle:chaintool",
|
||||
"type": "check",
|
||||
"label": "Chain Tool",
|
||||
"strings": {
|
||||
"options": {
|
||||
"undefined": "Assumed to be No",
|
||||
"yes": "Yes",
|
||||
"no": "No"
|
||||
}
|
||||
}
|
||||
},
|
||||
"service/bicycle/pump": {
|
||||
"key": "service:bicycle:pump",
|
||||
"type": "check",
|
||||
"label": "Air Pump",
|
||||
"strings": {
|
||||
"options": {
|
||||
"undefined": "Assumed to be No",
|
||||
"yes": "Yes",
|
||||
"no": "No"
|
||||
}
|
||||
}
|
||||
},
|
||||
"shelter": {
|
||||
"key": "shelter",
|
||||
"type": "check",
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"key": "service:bicycle:chaintool",
|
||||
"type": "check",
|
||||
"label": "Chain Tool",
|
||||
"strings": {
|
||||
"options": {
|
||||
"undefined": "Assumed to be No",
|
||||
"yes": "Yes",
|
||||
"no": "No"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"key": "service:bicycle:pump",
|
||||
"type": "check",
|
||||
"label": "Air Pump",
|
||||
"strings": {
|
||||
"options": {
|
||||
"undefined": "Assumed to be No",
|
||||
"yes": "Yes",
|
||||
"no": "No"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -499,6 +499,28 @@
|
||||
},
|
||||
"name": "Bicycle Rental"
|
||||
},
|
||||
"amenity/bicycle_repair_station": {
|
||||
"icon": "bicycle",
|
||||
"fields": [
|
||||
"operator",
|
||||
"opening_hours",
|
||||
"fee",
|
||||
"service/bicycle/chaintool",
|
||||
"service/bicycle/pump"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bike"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "bicycle_repair_station"
|
||||
},
|
||||
"name": "Bicycle Repair Station"
|
||||
},
|
||||
"amenity/boat_rental": {
|
||||
"fields": [
|
||||
"operator"
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"icon": "bicycle",
|
||||
"fields": [
|
||||
"operator",
|
||||
"opening_hours",
|
||||
"fee",
|
||||
"service/bicycle/chaintool",
|
||||
"service/bicycle/pump"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bike"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "bicycle_repair_station"
|
||||
},
|
||||
"name": "Bicycle Repair Station"
|
||||
}
|
||||
@@ -124,6 +124,10 @@
|
||||
"key": "amenity",
|
||||
"value": "bicycle_rental"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "bicycle_repair_station"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"value": "boat_rental"
|
||||
|
||||
Vendored
+20
@@ -1104,6 +1104,22 @@
|
||||
"service": {
|
||||
"label": "Type"
|
||||
},
|
||||
"service/bicycle/chaintool": {
|
||||
"label": "Chain Tool",
|
||||
"options": {
|
||||
"undefined": "Assumed to be No",
|
||||
"yes": "Yes",
|
||||
"no": "No"
|
||||
}
|
||||
},
|
||||
"service/bicycle/pump": {
|
||||
"label": "Air Pump",
|
||||
"options": {
|
||||
"undefined": "Assumed to be No",
|
||||
"yes": "Yes",
|
||||
"no": "No"
|
||||
}
|
||||
},
|
||||
"shelter": {
|
||||
"label": "Shelter"
|
||||
},
|
||||
@@ -1386,6 +1402,10 @@
|
||||
"name": "Bicycle Rental",
|
||||
"terms": "bike"
|
||||
},
|
||||
"amenity/bicycle_repair_station": {
|
||||
"name": "Bicycle Repair Station",
|
||||
"terms": "bike"
|
||||
},
|
||||
"amenity/boat_rental": {
|
||||
"name": "Boat Rental",
|
||||
"terms": ""
|
||||
|
||||
Reference in New Issue
Block a user