From 1ca44a2677e5d91c441f337df9d0e15f218d77e7 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 24 Jan 2015 22:16:43 -0500 Subject: [PATCH] Add `brand` field to `amenity=bicycle_repair_station` (re: #2497) --- data/presets.yaml | 2 ++ data/presets/fields.json | 5 +++++ data/presets/fields/brand.json | 5 +++++ data/presets/presets.json | 1 + data/presets/presets/amenity/bicycle_repair_station.json | 1 + dist/locales/en.json | 3 +++ 6 files changed, 17 insertions(+) create mode 100644 data/presets/fields/brand.json 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" },