Skip to content

Commit 404bcd7

Browse files
committed
Added strings for house= field
1 parent 02d1552 commit 404bcd7

File tree

6 files changed

+52
-3
lines changed

6 files changed

+52
-3
lines changed

data/fields/house.json

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
{
22
"key": "house",
33
"type": "combo",
4-
"label": "House Type"
4+
"label": "House Type",
5+
"strings": {
6+
"options": {
7+
"bungalow": {
8+
"title": "Bungalow",
9+
"description": "A small house with a single storey"
10+
},
11+
"detached": {
12+
"title": "Detached House",
13+
"description": "A house that is not connected to any other houses"
14+
},
15+
"link-detached": {
16+
"title": "Link-Detached House",
17+
"description": "A house that is connected to another house by a garage or other non-living area"
18+
},
19+
"maisonette": {
20+
"title": "Maisonette",
21+
"description": "A residential dwelling, split over two floors with private external entrances rather than a communal entrance"
22+
},
23+
"semi-detached": {
24+
"title": "Semi-Detached House",
25+
"description": "A house that is attached to another house on one side"
26+
},
27+
"terrace": {
28+
"title": "Row of Terraced Houses",
29+
"description": "A row of houses that are attached to each other in a line"
30+
},
31+
"terraced": {
32+
"title": "Terraced House",
33+
"description": "Individual house in a row of terraced houses"
34+
}
35+
}
36+
},
37+
"autoSuggestions": false
538
}

data/presets/building/house.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"area"
55
],
66
"fields": [
7-
"{building}",
8-
"house"
7+
"house",
8+
"{building}"
99
],
1010
"tags": {
1111
"building": "house"

data/presets/building/house/_detached.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"geometry": [
44
"area"
55
],
6+
"fields": [
7+
"house",
8+
"{building}"
9+
],
610
"tags": {
711
"building": "house",
812
"house": "detached"

data/presets/building/house/_semi-detached.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"geometry": [
44
"area"
55
],
6+
"fields": [
7+
"house",
8+
"{building}"
9+
],
610
"tags": {
711
"building": "house",
812
"house": "semi-detached"

data/presets/building/house/_terrace.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"geometry": [
44
"area"
55
],
6+
"fields": [
7+
"house",
8+
"{building}"
9+
],
610
"tags": {
711
"building": "house",
812
"house": "terrace"

data/presets/building/house/terraced.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"geometry": [
44
"area"
55
],
6+
"fields": [
7+
"house",
8+
"{building}"
9+
],
610
"tags": {
711
"building": "house",
812
"house": "terraced"

0 commit comments

Comments
 (0)