Fix certain tags having no translations in the theme

This commit is contained in:
pgm-chardelv1 2021-07-27 15:47:53 +02:00
parent ccf1e636ee
commit c101bdeceb
3 changed files with 43 additions and 1 deletions

View file

@ -518,6 +518,30 @@
"en": "This street is paved",
"nl": "Deze straat is geplaveid"
}
},
{
"if": "surface=fine_gravel",
"then": {
"en": "This street is made from fine gravel",
"nl": "Deze straat is gemaakt van fijn grind"
},
"hideInAnswer": true
},
{
"if": "surface=cobblestone",
"then": {
"en": "This street is made from cobblestone",
"nl": "Deze straat is gemaakt van kasseien"
},
"hideInAnswer": true
},
{
"if": "surface=paving_stones",
"then": {
"en": "This street is made from paving stones",
"nl": "Deze straat is gemaakt van geplaveide stenen"
},
"hideInAnswer": true
}
],
"question": {
@ -1144,7 +1168,7 @@
"icon": "./assets/themes/cycle_infra/street.svg",
"width": "5",
"color": {
"render": "#aaaaaa",
"render": "rgba(170, 170, 170, 0.7)",
"mappings": []
},
"tagRenderings": [

View file

@ -883,6 +883,15 @@
},
"4": {
"then": "This street is paved"
},
"5": {
"then": "This street is made from fine gravel"
},
"6": {
"then": "This street is made from cobblestone"
},
"7": {
"then": "This street is made from paving stones"
}
},
"question": "What is the surface of the street made from?"

View file

@ -745,6 +745,15 @@
},
"4": {
"then": "Deze straat is geplaveid"
},
"5": {
"then": "Deze straat is gemaakt van fijn grind"
},
"6": {
"then": "Deze straat is gemaakt van kasseien"
},
"7": {
"then": "Deze straat is gemaakt van geplaveide stenen"
}
},
"question": "Waaruit is het oppervlak van de straat gemaakt?"