Merge master

This commit is contained in:
Pieter Vander Vennet 2021-07-18 15:13:09 +02:00
commit 385c87ec10
4 changed files with 1342 additions and 1121 deletions

View file

@ -251,6 +251,7 @@
}
]
},
"level",
{
"question": {
"en": "Does this bike repair station have a special tool to repair your bike chain?",

View file

@ -123,5 +123,41 @@
"all_tags": {
"#": "Prints all the tags",
"render": "{all_tags()}"
},
"level": {
"question": {
"nl": "Op welke verdieping bevindt dit punt zich?",
"en": "On what level is this feature located?"
},
"render": {
"en": "Located on the {level}th floor",
"nl": "Bevindt zich op de {level}de verdieping"
},
"freeform": {
"key": "level",
"type": "float"
},
"mappings": [
{
"if": "location=underground",
"then": {
"en": "Located underground",
"nl": "Bevindt zich ondergrounds"
},
"hideInAnswer": true
},{
"if": "level=0",
"then": {
"en": "Located on the ground floor",
"nl": "Bevindt zich gelijkvloers"
}
},{
"if": "level=1",
"then": {
"en": "Located on the first floor",
"nl": "Bevindt zich op de eerste verdieping"
}
}
]
}
}