Merge master

This commit is contained in:
Pieter Vander Vennet 2021-08-19 17:34:18 +02:00
commit 7e7c6d53f6
22 changed files with 2374 additions and 80 deletions

View file

@ -15,6 +15,21 @@
"opening_hours": {
"question": "Quelles sont les horaires d'ouverture de {name} ?",
"render": "<h3>Horaires d'ouverture</h3>{opening_hours_table(opening_hours)}"
},
"level": {
"mappings": {
"2": {
"then": "Premier étage"
},
"1": {
"then": "Rez-de-chaussée"
},
"0": {
"then": "En sous-sol"
}
},
"render": "Étage {level}",
"question": "À quel étage se situe lélément ?"
}
}
}
}

View file

@ -5,6 +5,9 @@
},
"website": {
"question": "Apa situs web dari {name}?"
},
"phone": {
"question": "Nomor telepon dari {name|?"
}
}
}
}

View file

@ -1 +1,35 @@
{}
{
"undefined": {
"email": {
"question": "Jaki jest adres e-mail do {name}?"
},
"phone": {
"question": "Jaki jest numer telefonu do {name}?"
},
"opening_hours": {
"render": "<h3> Godziny otwarcia</h3>{opening_hours_table(opening_hours)}",
"question": "Jakie są godziny otwarcia {name}?"
},
"description": {
"question": "Czy jest jeszcze coś istotnego, czego nie mogłeś podać w poprzednich pytaniach? Dodaj to tutaj.<br/><span style='font-size: small'>Nie powtarzaj już podanych faktów</span>"
},
"website": {
"question": "Jaka jest strona internetowa {name}?"
},
"level": {
"mappings": {
"2": {
"then": "Znajduje się na pierwszym piętrze"
},
"1": {
"then": "Znajduje się na parterze"
},
"0": {
"then": "Znajduje się pod ziemią"
}
},
"render": "Znajduje się na {level} piętrze",
"question": "Na jakim poziomie znajduje się ta funkcja?"
}
}
}

View file

@ -1,17 +1,5 @@
{
"undefined": {
"phone": {
"question": "Qual o número de telefone de {name}?"
},
"email": {
"question": "Qual o endereço de e-mail de {name}?"
},
"website": {
"question": "Qual o site de {name}?"
},
"opening_hours": {
"question": "Qual o horário de funcionamento de {name}?"
},
"level": {
"render": "Localizado no {level}o andar",
"mappings": {
@ -24,7 +12,24 @@
"2": {
"then": "Localizado no primeiro andar"
}
}
},
"question": "Em que nível esse recurso está localizado?"
},
"opening_hours": {
"question": "Qual o horário de funcionamento de {name}?",
"render": "<h3>Horário de funcionamento</h3>{opening_hours_table(opening_hours)}"
},
"website": {
"question": "Qual o site de {name}?"
},
"email": {
"question": "Qual o endereço de e-mail de {name}?"
},
"phone": {
"question": "Qual o número de telefone de {name}?"
},
"description": {
"question": "Ainda há algo de relevante que não pôde dar nas perguntas anteriores? Adicione aqui.<br/><span style='font-size: small'> Não repita fatos já declarados</span>"
}
}
}

View file

@ -10,7 +10,7 @@
"question": "Какой сайт у {name}?"
},
"description": {
"question": "Есть ли еще что-то важное, о чем вы не смогли рассказать в предыдущих вопросах? Добавьте это здесь.<br/><span style='font-size: small'>Не повторяйте уже изложенные факты</span>"
"question": "Есть ли ещё что-то важное, о чём вы не смогли рассказать в предыдущих вопросах? Добавьте это здесь.<br/><span style='font-size: small'>Не повторяйте уже изложенные факты</span>"
},
"opening_hours": {
"question": "Какое время работы у {name}?",
@ -28,7 +28,8 @@
"2": {
"then": "Расположено на первом этаже"
}
}
},
"question": "На каком этаже находится этот объект?"
}
}
}

View file

@ -2,6 +2,30 @@
"undefined": {
"phone": {
"question": "Vad är telefonnumret till {name}?"
},
"level": {
"mappings": {
"2": {
"then": "Ligger på första våningen"
},
"1": {
"then": "Ligger på bottenvåningen"
},
"0": {
"then": "Ligger under jorden"
}
},
"render": "Ligger på {level}:e våningen"
},
"opening_hours": {
"render": "<h3>Öppettider</h3> {opening_hours_table(opening_hours)}",
"question": "Vilka är öppettiderna för {name}?"
},
"website": {
"question": "Vad är webbplatsen för {name}?"
},
"email": {
"question": "Vad är e-postadressen till {name}?"
}
}
}
}