diff --git a/data/presets.yaml b/data/presets.yaml index 07d70d652..1766bdc33 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -120,6 +120,8 @@ en: label: Type boundary: label: Type + brand: + label: Brand building: label: Building building_area: diff --git a/data/presets/fields.json b/data/presets/fields.json index 8d13c4677..7847c2eca 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -217,6 +217,11 @@ "type": "combo", "label": "Type" }, + "brand": { + "key": "brand", + "type": "text", + "label": "Brand" + }, "building": { "key": "building", "type": "typeCombo", diff --git a/data/presets/fields/brand.json b/data/presets/fields/brand.json new file mode 100644 index 000000000..73dd2a71c --- /dev/null +++ b/data/presets/fields/brand.json @@ -0,0 +1,5 @@ +{ + "key": "brand", + "type": "text", + "label": "Brand" +} diff --git a/data/presets/presets.json b/data/presets/presets.json index 5a677ca7c..49ab92741 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -503,6 +503,7 @@ "icon": "bicycle", "fields": [ "operator", + "brand", "opening_hours", "fee", "service/bicycle/chaintool", diff --git a/data/presets/presets/amenity/bicycle_repair_station.json b/data/presets/presets/amenity/bicycle_repair_station.json index a93e02c00..91c51a608 100644 --- a/data/presets/presets/amenity/bicycle_repair_station.json +++ b/data/presets/presets/amenity/bicycle_repair_station.json @@ -2,6 +2,7 @@ "icon": "bicycle", "fields": [ "operator", + "brand", "opening_hours", "fee", "service/bicycle/chaintool", diff --git a/dist/locales/en.json b/dist/locales/en.json index 91bd905c0..d3e49d887 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -673,6 +673,9 @@ "boundary": { "label": "Type" }, + "brand": { + "label": "Brand" + }, "building": { "label": "Building" },