Fix question wrong way round

This commit is contained in:
Robin van der Linde 2021-07-24 15:30:19 +02:00
parent c3c8525841
commit d12d8b09fa
2 changed files with 4 additions and 4 deletions

View file

@ -230,14 +230,14 @@
"if": "red_turn:right:bicycle=yes", "if": "red_turn:right:bicycle=yes",
"then": { "then": {
"en": "A cyclist can turn right if the light is red", "en": "A cyclist can turn right if the light is red",
"nl": "Een fietser mag niet rechtsaf slaan als het licht rood is" "nl": "Een fietser mag wel rechtsaf slaan als het licht rood is"
} }
}, },
{ {
"if": "red_turn:right:bicycle=no", "if": "red_turn:right:bicycle=no",
"then": { "then": {
"en": "A cyclist can not turn right if the light is red", "en": "A cyclist can not turn right if the light is red",
"nl": "Een fietser mag rechtsaf slaan als het licht rood is" "nl": "Een fietser mag niet rechtsaf slaan als het licht rood is"
} }
} }
] ]

View file

@ -862,10 +862,10 @@
"question": "Mag een fietser rechtsaf slaan als het licht rood is?", "question": "Mag een fietser rechtsaf slaan als het licht rood is?",
"mappings": { "mappings": {
"0": { "0": {
"then": "Een fietser mag niet rechtsaf slaan als het licht rood is" "then": "Een fietser mag wel rechtsaf slaan als het licht rood is"
}, },
"1": { "1": {
"then": "Een fietser mag rechtsaf slaan als het licht rood is" "then": "Een fietser mag niet rechtsaf slaan als het licht rood is"
} }
} }
} }