Add gender field to amenity=toilets (closes #2422)

This commit is contained in:
Bryan Housel
2015-02-03 12:36:25 -05:00
parent 487130329d
commit 62c9afcd2d
6 changed files with 54 additions and 2 deletions
+7
View File
@@ -229,6 +229,13 @@ en:
label: Sells Premium Gasoline
gauge:
label: Gauge
gender:
label: Gender
placeholder: Unknown
options:
male: Male
female: Female
unisex: Unisex
generator/method:
label: Method
generator/source:
+17
View File
@@ -456,6 +456,23 @@
"type": "combo",
"label": "Gauge"
},
"gender": {
"type": "radio",
"keys": [
"male",
"female",
"unisex"
],
"label": "Gender",
"placeholder": "Unknown",
"strings": {
"options": {
"male": "Male",
"female": "Female",
"unisex": "Unisex"
}
}
},
"generator/method": {
"key": "generator:method",
"type": "combo",
+17
View File
@@ -0,0 +1,17 @@
{
"type": "radio",
"keys": [
"male",
"female",
"unisex"
],
"label": "Gender",
"placeholder": "Unknown",
"strings": {
"options": {
"male": "Male",
"female": "Female",
"unisex": "Unisex"
}
}
}
+2 -1
View File
@@ -1754,7 +1754,8 @@
"toilets/disposal",
"operator",
"building_area",
"access_toilets"
"access_toilets",
"gender"
],
"geometry": [
"point",
+2 -1
View File
@@ -4,7 +4,8 @@
"toilets/disposal",
"operator",
"building_area",
"access_toilets"
"access_toilets",
"gender"
],
"geometry": [
"point",
+9
View File
@@ -824,6 +824,15 @@
"gauge": {
"label": "Gauge"
},
"gender": {
"label": "Gender",
"placeholder": "Unknown",
"options": {
"male": "Male",
"female": "Female",
"unisex": "Unisex"
}
},
"generator/method": {
"label": "Method"
},