mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-03 09:53:40 +00:00
Add recyling preset and related fields
This commit is contained in:
@@ -80,6 +80,8 @@ en:
|
||||
label: Building
|
||||
building_area:
|
||||
label: Building
|
||||
cans:
|
||||
label: Accepts Cans
|
||||
capacity:
|
||||
label: Capacity
|
||||
placeholder: "50, 100, 200..."
|
||||
@@ -90,6 +92,8 @@ en:
|
||||
options:
|
||||
clockwise: Clockwise
|
||||
anticlockwise: Counterclockwise
|
||||
clothes:
|
||||
label: Accepts Clothes
|
||||
collection_times:
|
||||
label: Collection Times
|
||||
construction:
|
||||
@@ -127,6 +131,8 @@ en:
|
||||
label: Source
|
||||
generator/type:
|
||||
label: Type
|
||||
glass:
|
||||
label: Accepts Glass
|
||||
highway:
|
||||
label: Type
|
||||
historic:
|
||||
@@ -185,6 +191,8 @@ en:
|
||||
label: Hours
|
||||
operator:
|
||||
label: Operator
|
||||
paper:
|
||||
label: Accepts Paper
|
||||
park_ride:
|
||||
label: Park and Ride
|
||||
parking:
|
||||
@@ -424,6 +432,9 @@ en:
|
||||
amenity/ranger_station:
|
||||
name: Ranger Station
|
||||
terms: "<translate with synonyms or related terms for 'Ranger Station', separated by commas>"
|
||||
amenity/recycling:
|
||||
name: Recycling
|
||||
terms: "<translate with synonyms or related terms for 'Recycling', separated by commas>"
|
||||
amenity/restaurant:
|
||||
name: Restaurant
|
||||
terms: "<translate with synonyms or related terms for 'Restaurant', separated by commas>"
|
||||
|
||||
@@ -141,6 +141,11 @@
|
||||
"geometry": "area",
|
||||
"label": "Building"
|
||||
},
|
||||
"cans": {
|
||||
"key": "cans",
|
||||
"type": "check",
|
||||
"label": "Accepts Cans"
|
||||
},
|
||||
"capacity": {
|
||||
"key": "capacity",
|
||||
"type": "number",
|
||||
@@ -184,6 +189,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"clothes": {
|
||||
"key": "clothes",
|
||||
"type": "check",
|
||||
"label": "Accepts Clothes"
|
||||
},
|
||||
"collection_times": {
|
||||
"key": "collection_times",
|
||||
"type": "text",
|
||||
@@ -284,6 +294,11 @@
|
||||
"type": "combo",
|
||||
"label": "Type"
|
||||
},
|
||||
"glass": {
|
||||
"key": "glass",
|
||||
"type": "check",
|
||||
"label": "Accepts Glass"
|
||||
},
|
||||
"highway": {
|
||||
"key": "highway",
|
||||
"type": "typeCombo",
|
||||
@@ -427,6 +442,11 @@
|
||||
"type": "text",
|
||||
"label": "Operator"
|
||||
},
|
||||
"paper": {
|
||||
"key": "paper",
|
||||
"type": "check",
|
||||
"label": "Accepts Paper"
|
||||
},
|
||||
"park_ride": {
|
||||
"key": "park_ride",
|
||||
"type": "check",
|
||||
|
||||
5
data/presets/fields/cans.json
Normal file
5
data/presets/fields/cans.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "cans",
|
||||
"type": "check",
|
||||
"label": "Accepts Cans"
|
||||
}
|
||||
5
data/presets/fields/clothes.json
Normal file
5
data/presets/fields/clothes.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "clothes",
|
||||
"type": "check",
|
||||
"label": "Accepts Clothes"
|
||||
}
|
||||
5
data/presets/fields/glass.json
Normal file
5
data/presets/fields/glass.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "glass",
|
||||
"type": "check",
|
||||
"label": "Accepts Glass"
|
||||
}
|
||||
5
data/presets/fields/paper.json
Normal file
5
data/presets/fields/paper.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"key": "paper",
|
||||
"type": "check",
|
||||
"label": "Accepts Paper"
|
||||
}
|
||||
19
data/presets/presets/amenity/recycling.json
Normal file
19
data/presets/presets/amenity/recycling.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"icon": "recycling",
|
||||
"fields": [
|
||||
"cans",
|
||||
"glass",
|
||||
"paper",
|
||||
"clothes"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"terms": [],
|
||||
"tags": {
|
||||
"amenity": "recycling"
|
||||
},
|
||||
"name": "Recycling"
|
||||
}
|
||||
16
dist/locales/en.json
vendored
16
dist/locales/en.json
vendored
@@ -504,6 +504,9 @@
|
||||
"building_area": {
|
||||
"label": "Building"
|
||||
},
|
||||
"cans": {
|
||||
"label": "Accepts Cans"
|
||||
},
|
||||
"capacity": {
|
||||
"label": "Capacity",
|
||||
"placeholder": "50, 100, 200..."
|
||||
@@ -518,6 +521,9 @@
|
||||
"anticlockwise": "Counterclockwise"
|
||||
}
|
||||
},
|
||||
"clothes": {
|
||||
"label": "Accepts Clothes"
|
||||
},
|
||||
"collection_times": {
|
||||
"label": "Collection Times"
|
||||
},
|
||||
@@ -573,6 +579,9 @@
|
||||
"generator/type": {
|
||||
"label": "Type"
|
||||
},
|
||||
"glass": {
|
||||
"label": "Accepts Glass"
|
||||
},
|
||||
"highway": {
|
||||
"label": "Type"
|
||||
},
|
||||
@@ -656,6 +665,9 @@
|
||||
"operator": {
|
||||
"label": "Operator"
|
||||
},
|
||||
"paper": {
|
||||
"label": "Accepts Paper"
|
||||
},
|
||||
"park_ride": {
|
||||
"label": "Park and Ride"
|
||||
},
|
||||
@@ -984,6 +996,10 @@
|
||||
"name": "Ranger Station",
|
||||
"terms": "visitor center,visitor centre,permit center,permit centre,backcountry office,warden office,warden center"
|
||||
},
|
||||
"amenity/recycling": {
|
||||
"name": "Recycling",
|
||||
"terms": ""
|
||||
},
|
||||
"amenity/restaurant": {
|
||||
"name": "Restaurant",
|
||||
"terms": "bar,cafeteria,café,canteen,chophouse,coffee shop,diner,dining room,dive*,doughtnut shop,drive-in,eatery,eating house,eating place,fast-food place,fish and chips,greasy spoon,grill,hamburger stand,hashery,hideaway,hotdog stand,inn,joint*,luncheonette,lunchroom,night club,outlet*,pizzeria,saloon,soda fountain,watering hole"
|
||||
|
||||
Reference in New Issue
Block a user