diff --git a/data/presets.yaml b/data/presets.yaml index b143c5ed7..d445cc66d 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -739,6 +739,9 @@ en: recycling/paper: # 'recycling:paper=*' label: Accepts Paper + recycling/type: + # 'recycling_type=*' + label: Recycling Type ref: # 'ref=*' label: Reference diff --git a/data/presets/fields.json b/data/presets/fields.json index 4648669ad..644467052 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -944,6 +944,11 @@ "type": "check", "label": "Accepts Paper" }, + "recycling/type": { + "key": "recycling_type", + "type": "combo", + "label": "Recycling Type" + }, "ref": { "key": "ref", "type": "text", diff --git a/data/presets/fields/recycling/type.json b/data/presets/fields/recycling/type.json new file mode 100644 index 000000000..1e35805f1 --- /dev/null +++ b/data/presets/fields/recycling/type.json @@ -0,0 +1,5 @@ +{ + "key": "recycling_type", + "type": "combo", + "label": "Recycling Type" +} diff --git a/data/presets/presets.json b/data/presets/presets.json index e31df4421..8654d8510 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -1482,6 +1482,7 @@ "fields": [ "operator", "address", + "recycling/type", "recycling/cans", "recycling/glass", "recycling/paper", diff --git a/data/presets/presets/amenity/recycling.json b/data/presets/presets/amenity/recycling.json index f69730690..07685e18e 100644 --- a/data/presets/presets/amenity/recycling.json +++ b/data/presets/presets/amenity/recycling.json @@ -3,6 +3,7 @@ "fields": [ "operator", "address", + "recycling/type", "recycling/cans", "recycling/glass", "recycling/paper", diff --git a/dist/locales/en.json b/dist/locales/en.json index 1ddb2915b..7b695f2fd 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -1199,6 +1199,9 @@ "recycling/paper": { "label": "Accepts Paper" }, + "recycling/type": { + "label": "Recycling Type" + }, "ref": { "label": "Reference" },