Merge branches
1
.github/workflows/deploy_pietervdvn.yml
vendored
|
@ -5,6 +5,7 @@ on:
|
|||
- develop
|
||||
- feature/*
|
||||
- theme/*
|
||||
- refactoring/*
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
2
.gitignore
vendored
|
@ -5,7 +5,7 @@ node_modules
|
|||
scratch
|
||||
assets/editor-layer-index.json
|
||||
assets/generated/*
|
||||
assets/generated/images/*
|
||||
src/assets/generated/
|
||||
public/*.webmanifest
|
||||
/*.html
|
||||
!/index.html
|
||||
|
|
2
404.html
|
@ -49,7 +49,7 @@
|
|||
Not found...
|
||||
</div>
|
||||
|
||||
<script type="module" src="./notfound.ts"></script>
|
||||
<script type="module" src="./src/notfound.ts"></script>
|
||||
<script async data-goatcounter="https://pietervdvn.goatcounter.com/count" src="//gc.zgo.at/count.js"></script>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -291,7 +291,7 @@
|
|||
"mappings": [
|
||||
{
|
||||
"if": "cash_out:notes:denominations=5 EUR",
|
||||
"icon": "./assets/tagRenderings/5euro.svg",
|
||||
"icon": "./assets/layers/questions/5euro.svg",
|
||||
"then": {
|
||||
"en": "5 euro notes can be withdrawn",
|
||||
"nl": "Je kunt biljetten van 5 euro afhalen",
|
||||
|
@ -301,7 +301,7 @@
|
|||
},
|
||||
{
|
||||
"if": "cash_out:notes:denominations=10 EUR",
|
||||
"icon": "./assets/tagRenderings/10euro.svg",
|
||||
"icon": "./assets/layers/questions/10euro.svg",
|
||||
"then": {
|
||||
"en": "10 euro notes can be withdrawn",
|
||||
"nl": "Je kunt biljetten van 10 euro afhalen",
|
||||
|
@ -311,7 +311,7 @@
|
|||
},
|
||||
{
|
||||
"if": "cash_out:notes:denominations=20 EUR",
|
||||
"icon": "./assets/tagRenderings/20euro.svg",
|
||||
"icon": "./assets/layers/questions/20euro.svg",
|
||||
"then": {
|
||||
"en": "20 euro notes can be withdrawn",
|
||||
"nl": "Je kunt biljetten van 20 euro afhalen",
|
||||
|
@ -321,7 +321,7 @@
|
|||
},
|
||||
{
|
||||
"if": "cash_out:notes:denominations=50 EUR",
|
||||
"icon": "./assets/tagRenderings/50euro.svg",
|
||||
"icon": "./assets/layers/questions/50euro.svg",
|
||||
"then": {
|
||||
"en": "50 euro notes can be withdrawn",
|
||||
"nl": "Je kunt biljetten van 50 euro afhalen",
|
||||
|
@ -331,7 +331,7 @@
|
|||
},
|
||||
{
|
||||
"if": "cash_out:notes:denominations=100 EUR",
|
||||
"icon": "./assets/tagRenderings/100euro.svg",
|
||||
"icon": "./assets/layers/questions/100euro.svg",
|
||||
"then": {
|
||||
"en": "100 euro notes can be withdrawn",
|
||||
"nl": "Je kunt biljetten van 100 euro afhalen",
|
||||
|
@ -341,7 +341,7 @@
|
|||
},
|
||||
{
|
||||
"if": "cash_out:notes:denominations=200 EUR",
|
||||
"icon": "./assets/tagRenderings/200euro.svg",
|
||||
"icon": "./assets/layers/questions/200euro.svg",
|
||||
"then": {
|
||||
"en": "200 euro notes can be withdrawn",
|
||||
"nl": "Je kunt biljetten van 200 euro afhalen",
|
||||
|
@ -351,7 +351,7 @@
|
|||
},
|
||||
{
|
||||
"if": "cash_out:notes:denominations=500 EUR",
|
||||
"icon": "./assets/tagRenderings/500euro.svg",
|
||||
"icon": "./assets/layers/questions/500euro.svg",
|
||||
"then": {
|
||||
"en": "500 euro notes can be withdrawn",
|
||||
"nl": "Je kunt biljetten van 500 euro afhalen",
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import {readFileSync, writeFileSync} from "fs";
|
||||
import {Utils} from "../../../Utils";
|
||||
import {Utils} from "../../../src/Utils";
|
||||
import ScriptUtils from "../../../scripts/ScriptUtils";
|
||||
import {LayerConfigJson} from "../../../Models/ThemeConfig/Json/LayerConfigJson";
|
||||
import FilterConfigJson from "../../../Models/ThemeConfig/Json/FilterConfigJson";
|
||||
import {QuestionableTagRenderingConfigJson} from "../../../Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson";
|
||||
import {LayerConfigJson} from "../../../src/Models/ThemeConfig/Json/LayerConfigJson";
|
||||
import FilterConfigJson from "../../../src/Models/ThemeConfig/Json/FilterConfigJson";
|
||||
import {QuestionableTagRenderingConfigJson} from "../../../src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson";
|
||||
|
||||
|
||||
function colonSplit(value: string): string[] {
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
"labels": [
|
||||
"defaults"
|
||||
],
|
||||
"render": "<a href='tel:{phone}'><img textmode='📞' alt='phone' src='./assets/tagRenderings/phone.svg'/></a>",
|
||||
"render": "<a href='tel:{phone}'><img textmode='📞' alt='phone' src='./assets/layers/questions/phone.svg'/></a>",
|
||||
"condition": "phone~*"
|
||||
},
|
||||
{
|
||||
|
@ -74,7 +74,7 @@
|
|||
"labels": [
|
||||
"defaults"
|
||||
],
|
||||
"render": "<a href='mailto:{email}'><img textmode='✉️' alt='email' src='./assets/tagRenderings/send_email.svg'/></a>",
|
||||
"render": "<a href='mailto:{email}'><img textmode='✉️' alt='email' src='./assets/layers/questions/send_email.svg'/></a>",
|
||||
"condition": "email~*"
|
||||
},
|
||||
{
|
||||
|
@ -94,12 +94,12 @@
|
|||
{
|
||||
"#": "ignore-image-in-then",
|
||||
"if": "smoking=no",
|
||||
"then": "<img textmode='🚭️' alt='no-smoking' src='./assets/tagRenderings/no_smoking.svg'/>"
|
||||
"then": "<img textmode='🚭️' alt='no-smoking' src='./assets/layers/questions/no_smoking.svg'/>"
|
||||
},
|
||||
{
|
||||
"#": "ignore-image-in-then",
|
||||
"if": "smoking=yes",
|
||||
"then": "<img textmode='🚬️' alt='smoking-allowed' src='./assets/tagRenderings/smoking.svg'/>"
|
||||
"then": "<img textmode='🚬️' alt='smoking-allowed' src='./assets/layers/questions/smoking.svg'/>"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
{
|
||||
"if": "map_size=city",
|
||||
"then": {
|
||||
"en": " A map of a city.",
|
||||
"en": " A map of a city",
|
||||
"de": "Stadt"
|
||||
}
|
||||
},
|
||||
|
|
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 234 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 186 KiB After Width: | Height: | Size: 186 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 670 B After Width: | Height: | Size: 670 B |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1 KiB |
2178
assets/layers/questions/questions.json
Normal file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 702 B After Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
@ -221,7 +221,8 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{"id": "mangrove-keys",
|
||||
{
|
||||
"id": "mangrove-keys",
|
||||
"render": {
|
||||
"en": "<a href='data:application/json,{mangroveidentity}' download='mangrove_private_key_{_name}'>Download the private key for your Mangrove Account</a> <p>Anyone possessing this file can make reviews with your identity</p>"
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
|
||||
|
||||
<div id="main"></div>
|
||||
<script type="module" src="./all_themes_index.ts"></script>
|
||||
<script type="module" src="./src/all_themes_index.ts"></script>
|
||||
<script async data-goatcounter="https://pietervdvn.goatcounter.com/count" src="//gc.zgo.at/count.js"></script>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
import { Utils } from "./Utils"
|
||||
import ThemeViewState from "./Models/ThemeViewState"
|
||||
import SvelteUIElement from "./UI/Base/SvelteUIElement"
|
||||
import ThemeViewGUI from "./UI/ThemeViewGUI.svelte"
|
||||
import LayoutConfig from "./Models/ThemeConfig/LayoutConfig";
|
||||
|
||||
// Miscelleanous
|
||||
Utils.DisableLongPresses()
|
||||
|
||||
const state = new ThemeViewState(new LayoutConfig(<any> layout))
|
||||
const main = new SvelteUIElement(ThemeViewGUI, { state })
|
||||
main.AttachTo("maindiv")
|
||||
|
|
@ -4191,6 +4191,326 @@
|
|||
"render": "Bústia per llibres"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten monedes de 1 cèntim"
|
||||
},
|
||||
"1": {
|
||||
"then": "S'accepten monedes de 2 cèntims"
|
||||
},
|
||||
"2": {
|
||||
"then": "S'accepten monedes de 5 cèntims"
|
||||
},
|
||||
"3": {
|
||||
"then": "S'accepten monedes de 10 cèntims"
|
||||
},
|
||||
"4": {
|
||||
"then": "S'accepten monedes de 20 cèntims"
|
||||
},
|
||||
"5": {
|
||||
"then": "S'accepten monedes de 50 cèntims"
|
||||
},
|
||||
"6": {
|
||||
"then": "S'accepten monedes de 1 euro"
|
||||
},
|
||||
"7": {
|
||||
"then": "S'accepten monedes de 2 euros"
|
||||
}
|
||||
},
|
||||
"question": "Quines monedes es poden utilitzar per a pagar aquí?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten billets de 5 euros"
|
||||
},
|
||||
"1": {
|
||||
"then": "S'accepten bitllets de 10 euros"
|
||||
},
|
||||
"2": {
|
||||
"then": "S'accepten bitllets de 20 euros"
|
||||
},
|
||||
"3": {
|
||||
"then": "S'accepten bitllets de 50 euros"
|
||||
},
|
||||
"4": {
|
||||
"then": "S'accepten bitllets de 100 euros"
|
||||
},
|
||||
"5": {
|
||||
"then": "S'accepten bitllets de 200 euros"
|
||||
},
|
||||
"6": {
|
||||
"then": "S'accepten bitllets de 500 euros"
|
||||
}
|
||||
},
|
||||
"question": "Amb quins bitllets pot pagar aquí?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Hi ha quelcom rellevant que no t'hem preguntat? Afegeix-ho aquí.",
|
||||
"questionHint": "No repeteixis informació que ja hi és"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten gossos"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> s'accepten gossos"
|
||||
},
|
||||
"2": {
|
||||
"then": "S'accepten gossos però lligats"
|
||||
},
|
||||
"3": {
|
||||
"then": "S'accepten gossos lliures"
|
||||
}
|
||||
},
|
||||
"question": "S'accepten gossos en aquest negoci?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Quina és l'adreça de correu electrònic de {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "El lloc té un bucle magnètic"
|
||||
},
|
||||
"1": {
|
||||
"then": "El lloc <b>no</b> té un bucle magnètic"
|
||||
}
|
||||
},
|
||||
"question": "Aquest lloc té un bucle magnètic per a la gent amb dificultats auditives?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquest lloc ofereix accés a internet inalàmbric"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquest lloc <b>no</b> ofereix accés a internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquest lloc ofereix accés a internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquest lloc ofereix accés a internet a través d'una terminal o ordinador"
|
||||
},
|
||||
"4": {
|
||||
"then": "Aquest lloc ofereix accés a internet per cable"
|
||||
}
|
||||
},
|
||||
"question": "Aquest lloc ofereix accés a internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquí hi ha que pagar per a accedir a internet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí l'accés a internet és gratuït"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí l'accés a internet és gratuït sols per als clients"
|
||||
}
|
||||
},
|
||||
"question": "Hi ha que pagar per a accedir a internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Intruduixca el nom de la xarxa"
|
||||
},
|
||||
"question": "Quin és el nom de la xarxa per a l'accés inalàmbric a internet?",
|
||||
"render": "El nom de la xarxa és <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Acabeu de crear aquest element! Gràcies per compartir aquesta informació amb el mon i ajudar a persones al voltant del món."
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Situat a planta subterrani"
|
||||
},
|
||||
"1": {
|
||||
"then": "Situat a planta zero"
|
||||
},
|
||||
"2": {
|
||||
"then": "Situat a la planta zero"
|
||||
},
|
||||
"3": {
|
||||
"then": "Situat a primera planta"
|
||||
},
|
||||
"4": {
|
||||
"then": "Localitzat a la planta base"
|
||||
}
|
||||
},
|
||||
"question": "A quina planta està situat aquest element?",
|
||||
"render": "Situat a la planta {level}"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquest objecte emet llum i també està il·luminat externament"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquest objecte emet llum"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquest objecte està il·luminat externament, p.e. amb un focus o altres llums"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquest objecte no emet llum i no està il·luminat externament"
|
||||
}
|
||||
},
|
||||
"question": "Aquest objecte està il·luminat o emet llum?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "A quins pisos va aquest ascensor?",
|
||||
"render": "Aquest ascensor va als pisos {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Quin és l'horari d'obertura de {title()}?",
|
||||
"render": "<h3>Horari d'obertura</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Obert 24/7 (incloent-hi festius)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Sols amb cita prèvia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Sols amb cita prèvia"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten diners"
|
||||
},
|
||||
"1": {
|
||||
"then": "S'accepten targetes de crèdit"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí es pot pagar amb codi QR"
|
||||
}
|
||||
},
|
||||
"question": "Quins mètodes de pagament s'accepten aquí?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "El pagament es fa amb una app dedicada"
|
||||
},
|
||||
"1": {
|
||||
"then": "El pagament es fa amb una targeta de membre"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Aquí s'accepten monedes"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí s'accepten bitllets"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí s'accepten targetes de dèbit"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquí s'accepten targetes de crèdit"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Quin és el telèfon de {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Està ple d'endolls pels clients de dins, on es poden carregar els aparells electrònics"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hi ha alguns endolls disponibles per als clients de dins, on es poden carregar els aparells electrònics"
|
||||
},
|
||||
"2": {
|
||||
"then": "No hi ha endolls disponibles per als clients però es pot carregar si es demana als responsables"
|
||||
},
|
||||
"3": {
|
||||
"then": "No hi ha endolls disponibles per als clients"
|
||||
}
|
||||
},
|
||||
"question": "Aquest servei té endolls elèctrics, disponibles pels clients quan hi són dins?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Està <b>permès</b> fumar"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> està permés fumar"
|
||||
},
|
||||
"2": {
|
||||
"then": "Està permés fumar <b>a l'exterior</b>."
|
||||
}
|
||||
},
|
||||
"question": "Està permés fumar a {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Quina és la web de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquest lloc està especialment adaptat per a les cadires de rodes"
|
||||
},
|
||||
"1": {
|
||||
"then": "És facilment arribable amb cadira de rodes"
|
||||
},
|
||||
"2": {
|
||||
"then": "És possible fer servir cadira de rodes a aquest lloc però no és fàcil"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquest lloc no és accessible amb cadira de rodes"
|
||||
}
|
||||
},
|
||||
"question": "Aquest lloc és accessible amb cadira de rodes?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "No hi ha cap enllaça a Viquipèdia encara"
|
||||
},
|
||||
"1": {
|
||||
"then": "No hi ha cap enllaça a Viquipèdia encara"
|
||||
}
|
||||
},
|
||||
"question": "Quina és la correspondent entitat a Wikidata?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"railway_platforms": {
|
||||
"description": "Trobeu totes les andanes de l'estació i les rutes de tren que les fan servir.",
|
||||
"name": "Andanes ferroviàries",
|
||||
|
|
|
@ -1586,6 +1586,316 @@
|
|||
"maxspeed": {
|
||||
"description": "Zobrazuje povolenou rychlost pro každou silnici"
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Jsou přijímány mince v hodnotě 1 centu"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou přijímány mince v hodnotě 2 centů"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jsou přijímány mince v hodnotě 5 centů"
|
||||
},
|
||||
"3": {
|
||||
"then": "Jsou přijímány mince v hodnotě 10 centů"
|
||||
},
|
||||
"4": {
|
||||
"then": "Jsou přijímány mince v hodnotě 20 centů"
|
||||
},
|
||||
"5": {
|
||||
"then": "Jsou přijímány mince v hodnotě 50 centů"
|
||||
},
|
||||
"6": {
|
||||
"then": "Jsou přijímány mince v hodnotě 1 eura"
|
||||
},
|
||||
"7": {
|
||||
"then": "Jsou přijímány mince v hodnotě 2 euro"
|
||||
}
|
||||
},
|
||||
"question": "Jakými mincemi zde lze platit?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 5 euro"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 10 euro"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 20 euro"
|
||||
},
|
||||
"3": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 50 euro"
|
||||
},
|
||||
"4": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 100 euro"
|
||||
},
|
||||
"5": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 200 euro"
|
||||
},
|
||||
"6": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 500 euro"
|
||||
}
|
||||
},
|
||||
"question": "Jakými bankovkami zde lze platit?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Je ještě něco relevantního, co jste nemohli uvést v předchozích otázkách? Přidejte to sem.",
|
||||
"questionHint": "Neopakujte již uvedená fakta"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Psi jsou povoleni"
|
||||
},
|
||||
"1": {
|
||||
"then": "Psi <b>nejsou</b> povoleni"
|
||||
},
|
||||
"2": {
|
||||
"then": "Psi jsou povoleni, ale musí být na vodítku"
|
||||
},
|
||||
"3": {
|
||||
"then": "Psi mají vstup povolen a mohou volně pobíhat"
|
||||
}
|
||||
},
|
||||
"question": "Jsou v tomto podniku povoleni psi?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Jaká je e-mailová adresa {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Toto místo má zvukovou indukční smyčku"
|
||||
},
|
||||
"1": {
|
||||
"then": "Toto místo <b>nemá indukční zvukovou smyčku</b>"
|
||||
}
|
||||
},
|
||||
"question": "Má toto místo zvukovou indukční smyčku pro osoby se sluchovým postižením?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Toto místo nabízí bezdrátové připojení k internetu"
|
||||
},
|
||||
"1": {
|
||||
"then": "Toto místo <b>neposkytuje</b> připojení k internetu"
|
||||
},
|
||||
"2": {
|
||||
"then": "Toto místo nabízí přístup k internetu"
|
||||
},
|
||||
"3": {
|
||||
"then": "Toto místo nabízí přístup k internetu prostřednictvím terminálu nebo počítače"
|
||||
},
|
||||
"4": {
|
||||
"then": "Toto místo nabízí kabelové připojení k internetu"
|
||||
}
|
||||
},
|
||||
"question": "Nabízí toto místo připojení k internetu?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Přístup na internet je zde zpoplatněn"
|
||||
},
|
||||
"1": {
|
||||
"then": "Přístup k internetu je zde zdarma"
|
||||
},
|
||||
"2": {
|
||||
"then": "Přístup k internetu je na tomto místě zdarma, pouze pro zákazníky"
|
||||
}
|
||||
},
|
||||
"question": "Je přístup na internet zpoplatněn?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Zadejte název sítě"
|
||||
},
|
||||
"question": "Jaký je název sítě pro bezdrátový přístup k internetu?",
|
||||
"render": "Název sítě je <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nachází se v podzemí"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nachází se v přízemí"
|
||||
},
|
||||
"2": {
|
||||
"then": "Nachází se v přízemí"
|
||||
},
|
||||
"3": {
|
||||
"then": "Nachází se v prvním patře"
|
||||
},
|
||||
"4": {
|
||||
"then": "Nachází se v prvním suterénu"
|
||||
}
|
||||
},
|
||||
"question": "V jaké úrovni se tento prvek nachází?",
|
||||
"render": "Nachází se v {level}. patře"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tento objekt vyzařuje světlo a je osvětlen vnějším zdrojem světla"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tento objekt vyzařuje světlo"
|
||||
},
|
||||
"2": {
|
||||
"then": "Tento objekt je osvětlen zvenčí, např. pomocí reflektoru nebo jiných světel"
|
||||
},
|
||||
"3": {
|
||||
"then": "Tento objekt nevyzařuje světlo a není osvětlen zvenčí"
|
||||
}
|
||||
},
|
||||
"question": "Je tento objekt osvětlený nebo vyzařuje světlo?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Do jakých podlaží tento výtah jezdí?",
|
||||
"render": "Tento výtah jede do {level} patra"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Jaká je otevírací doba {title()}?",
|
||||
"render": "<h3>Otevírací hodiny</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Otevřeno 24/7 (včetně svátků)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pouze po domluvě"
|
||||
},
|
||||
"1": {
|
||||
"then": "Pouze po domluvě"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Přijímá se zde hotovost"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou zde přijímány platební karty"
|
||||
}
|
||||
},
|
||||
"question": "Jaké platební metody jsou zde přijímány?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Platba se provádí pomocí speciální aplikace"
|
||||
},
|
||||
"1": {
|
||||
"then": "Platba se provádí pomocí členské karty"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Jsou zde přijímány mince"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou zde přijímány bankovky"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jsou zde přijímány debetní karty"
|
||||
},
|
||||
"3": {
|
||||
"then": "Jsou zde přijímány kreditní karty"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Jaké je telefonní číslo {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "V interiéru je k dispozici dostatek domácích zásuvek, kde si zákazníci mohou nabíjet elektroniku"
|
||||
},
|
||||
"1": {
|
||||
"then": "V interiéru je zákazníkům k dispozici několik domácích zásuvek, kde si mohou nabít elektroniku"
|
||||
},
|
||||
"2": {
|
||||
"then": "V interiéru nejsou zákazníkům k dispozici žádné zásuvky, ale na požádání personálu je možné je nabíjet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Zákazníci v interiéru nemají k dispozici žádné domácí zásuvky"
|
||||
}
|
||||
},
|
||||
"question": "Má toto zařízení elektrické zásuvky, které jsou zákazníkům k dispozici, když jsou uvnitř?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kouření je <b>povoleno</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kouření <b>není povoleno</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Kouření je <b>povoleno venku</b>."
|
||||
}
|
||||
},
|
||||
"question": "Je na {title()} povoleno kouřit?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Jaká je webová stránka {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Toto místo je speciálně upraveno pro vozíčkáře"
|
||||
},
|
||||
"1": {
|
||||
"then": "Toto místo je snadno dosažitelné s invalidním vozíkem"
|
||||
},
|
||||
"2": {
|
||||
"then": "Na toto místo je možné se dostat na invalidním vozíku, ale není to snadné"
|
||||
},
|
||||
"3": {
|
||||
"then": "Na toto místo se nelze dostat s invalidním vozíkem"
|
||||
}
|
||||
},
|
||||
"question": "Je toto místo přístupné pro vozíčkáře?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Žádná stránka na Wikipedii zatím nebyla propojena"
|
||||
},
|
||||
"1": {
|
||||
"then": "Žádná stránka na Wikipedii zatím nebyla propojena"
|
||||
}
|
||||
},
|
||||
"question": "Jaká je odpovídající entita Wikidata?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"usersettings": {
|
||||
"tagRenderings": {
|
||||
"picture-license": {
|
||||
|
|
|
@ -2081,6 +2081,205 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Er der stadig noget relevant, du ikke kunne give i de foregående spørgsmål? Tilføj det her.",
|
||||
"questionHint": "Gentag ikke allerede nævnte fakta"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hunde er tilladt"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hunde er <b>ikke </b> tilladt"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hunde er tilladt, men de skal være i snor"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hunde er tilladt og kan løbe frit rundt"
|
||||
}
|
||||
},
|
||||
"question": "Er hunde tilladt i denne virksomhed?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Hvad er mailadressen på {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette sted har en lydinduktionssløjfe"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette sted <b>har ikke</b> en lydinduktionssløjfe"
|
||||
}
|
||||
},
|
||||
"question": "Har dette sted en lydinduktionssløjfe til personer med nedsat hørelse?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette sted tilbyder trådløs internetadgang"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette sted <b>tilbyder ikke</b> internetadgang"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dette sted tilbyder internetadgang"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette sted tilbyder internetadgang via en terminal eller computer"
|
||||
},
|
||||
"4": {
|
||||
"then": "Dette sted tilbyder internetadgang via kabel"
|
||||
}
|
||||
},
|
||||
"question": "Tilbyder dette sted internetadgang?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der er et gebyr for internetadgang på dette sted"
|
||||
},
|
||||
"1": {
|
||||
"then": "Internetadgang er gratis på dette sted"
|
||||
},
|
||||
"2": {
|
||||
"then": "Internetadgang er gratis på dette sted, kun for kunder"
|
||||
}
|
||||
},
|
||||
"question": "Er der et gebyr for internetadgang?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Indtast netværksnavnet"
|
||||
},
|
||||
"question": "Hvad er netværksnavnet for den trådløse internetadgang?",
|
||||
"render": "Netværksnavnet er <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Placeret under jorden"
|
||||
},
|
||||
"1": {
|
||||
"then": "Beliggende i stueetagen"
|
||||
},
|
||||
"2": {
|
||||
"then": "Beliggende i stueetagen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Beliggende på første sal"
|
||||
},
|
||||
"4": {
|
||||
"then": "Beliggende på første kælderetage"
|
||||
}
|
||||
},
|
||||
"question": "På hvilket niveau er denne funktion placeret?",
|
||||
"render": "Beliggende på {level}. etage"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Hvilke niveauer går denne elevator til?",
|
||||
"render": "Denne elevator går til etager {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Hvad er åbningstiderne for {title()}?",
|
||||
"render": "<h3> Åbningstider</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Her modtages kontanter"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalingskort accepteres her"
|
||||
}
|
||||
},
|
||||
"question": "Hvilke betalingsmetoder accepteres her?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Betaling sker ved hjælp af en dedikeret app"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betaling sker med medlemskort"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Hvad er telefonnummeret til {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der er masser af stikkontakter til rådighed for kunder, der sidder indendørs, hvor de kan oplade deres elektroniske udstyr"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der er nogle få stikkontakter til rådighed for kunder, der sidder indendørs, hvor de kan oplade deres elektroniske udstyr"
|
||||
},
|
||||
"2": {
|
||||
"then": "Der er ingen stikkontakter til rådighed indendørs for kunderne, men opladning kan være mulig, hvis man beder personalet om det"
|
||||
},
|
||||
"3": {
|
||||
"then": "Der er ingen stikkontakter til rådighed for kunder, der sidder indendørs"
|
||||
}
|
||||
},
|
||||
"question": "Har denne faciliteter stikkontakter tilgængelige for kunder, når de er inde?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Rygning er <b>tilladt</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Rygning er <b>ikke tilladt</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Rygning er <b>tilladt udenfor</b>."
|
||||
}
|
||||
},
|
||||
"question": "Er det tilladt at ryge på {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Hvad er webstedet for {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette sted er specielt indrettet til kørestolsbrugere"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette sted er let tilgængeligt med en kørestol"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det er muligt at komme til dette sted med en kørestol, men det er ikke let"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette sted er ikke tilgængeligt med kørestol"
|
||||
}
|
||||
},
|
||||
"question": "Er stedet tilgængeligt med en kørestol?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der er endnu ikke linket til nogen Wikipedia-side"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der er endnu ikke linket til nogen Wikipedia-side"
|
||||
}
|
||||
},
|
||||
"question": "Hvad er den tilsvarende Wikidata-enhed?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"recycling": {
|
||||
"filter": {
|
||||
"2": {
|
||||
|
|
|
@ -6973,6 +6973,333 @@
|
|||
"render": "Bücherschrank"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"1": {
|
||||
"then": "2-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"2": {
|
||||
"then": "5-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"3": {
|
||||
"then": "10-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"4": {
|
||||
"then": "20-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"5": {
|
||||
"then": "50-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"6": {
|
||||
"then": "1-Euro-Münzen werden akzeptiert"
|
||||
},
|
||||
"7": {
|
||||
"then": "2-Euro-Münzen werden akzeptiert"
|
||||
}
|
||||
},
|
||||
"question": "Mit welchen Münzen kann man hier bezahlen?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "5-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"1": {
|
||||
"then": "10-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"2": {
|
||||
"then": "20-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"3": {
|
||||
"then": "50-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"4": {
|
||||
"then": "100-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"5": {
|
||||
"then": "200-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"6": {
|
||||
"then": "500-Euro-Scheine werden angenommen"
|
||||
}
|
||||
},
|
||||
"question": "Mit welchen Banknoten kann man hier bezahlen?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Gibt es noch etwas, das die vorhergehenden Fragen nicht abgedeckt haben? Hier wäre Platz dafür.",
|
||||
"questionHint": "Bitte keine bereits erhobenen Informationen wiederholen"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hunde sind hier erlaubt"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hunde sind hier <b>nicht</b> erlaubt"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hunde sind hier erlaubt, müssen aber angeleint sein"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hunde sind hier erlaubt und können frei herumlaufen"
|
||||
}
|
||||
},
|
||||
"question": "Sind Hunde hier erlaubt?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Wie lautet die Mail-Adresse von {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dieser Ort hat eine induktive Höranlage"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dieser Ort hat <b>keine</b> induktive Höranlage"
|
||||
}
|
||||
},
|
||||
"question": "Hat dieser Ort eine induktive Höranlage für Hörgeschädigte?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dieser Ort bietet drahtlosen Internetzugang"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dieser Ort bietet <b>keinen</b> Internetzugang"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dieser Ort bietet Internetzugang"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dieser Ort bietet Internetzugang über ein Terminal oder einen Computer"
|
||||
},
|
||||
"4": {
|
||||
"then": "Dieser Ort bietet kabelgebundenen Internetzugang"
|
||||
}
|
||||
},
|
||||
"question": "Bietet dieser Ort Internetzugang?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der Internetzugang ist an diesem Ort gebührenpflichtig"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der Internetzugang ist an diesem Ort kostenlos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Der Internetzugang ist an diesem Ort kostenlos, aber nur für Kunden"
|
||||
}
|
||||
},
|
||||
"question": "Wird für den Internetzugang eine Gebühr erhoben?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Geben Sie den Netzwerknamen ein"
|
||||
},
|
||||
"question": "Wie lautet der Netzwerkname für den drahtlosen Internetzugang?",
|
||||
"render": "Der Netzwerkname lautet <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Sie haben gerade dieses Element erstellt! Vielen Dank, dass Sie diese Informationen mit der Welt teilen und Menschen weltweit helfen."
|
||||
}
|
||||
}
|
||||
},
|
||||
"last_edit": {
|
||||
"render": {
|
||||
"special": {
|
||||
"text": "Zuletzt bearbeitet am {_last_edit:timestamp} von {_last_edit:contributor}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Das Objekt befindet sich unter der Erde"
|
||||
},
|
||||
"1": {
|
||||
"then": "Das Objekt befindet sich im Erdgeschoss"
|
||||
},
|
||||
"2": {
|
||||
"then": "Das Objekt befindet sich im Erdgeschoss"
|
||||
},
|
||||
"3": {
|
||||
"then": "Das Objekt befindet sich im 1. Obergeschoss"
|
||||
},
|
||||
"4": {
|
||||
"then": "Das Objekt befindet sich im 1. Untergeschoss"
|
||||
}
|
||||
},
|
||||
"question": "Auf welcher Ebene befindet sich das Objekt?",
|
||||
"render": "Das Objekt befindet sich im {level}. Geschoss"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Das Objekt leuchtet selbst und wird von außen beleuchtet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Das Objekt leuchtet selbst"
|
||||
},
|
||||
"2": {
|
||||
"then": "Das Objekt wird von außen beleuchtet, z. B. durch Scheinwerfer oder andere Lichter"
|
||||
},
|
||||
"3": {
|
||||
"then": "Das Objekt wird weder von außen beleuchtet, noch leuchtet es selbst"
|
||||
}
|
||||
},
|
||||
"question": "Wird das Objekt beleuchtet oder leuchtet es selbst?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Auf welchen Geschossen hält dieser Aufzug?",
|
||||
"render": "Der Aufzug hält auf den Geschossen {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Wie lauten die Öffnungszeiten von {title()}?",
|
||||
"render": "<h3>Öffnungszeiten</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "durchgehend geöffnet (auch an Feiertagen)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nur nach Vereinbarung"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nur nach Vereinbarung"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hier wird Bargeld akzeptiert"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hier wird Kartenzahlung akzeptiert"
|
||||
},
|
||||
"2": {
|
||||
"then": "Die Bezahlung per QR-Code ist hier möglich"
|
||||
}
|
||||
},
|
||||
"question": "Welche Zahlungsmethoden werden hier akzeptiert?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Die Bezahlung erfolgt über eine spezielle App"
|
||||
},
|
||||
"1": {
|
||||
"then": "Die Bezahlung erfolgt mit einer Mitgliedskarte"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Münzen werden hier akzeptiert"
|
||||
},
|
||||
"1": {
|
||||
"then": "Geldscheine werden hier akzeptiert"
|
||||
},
|
||||
"2": {
|
||||
"then": "Debitkarten werden hier akzeptiert"
|
||||
},
|
||||
"3": {
|
||||
"then": "Kreditkarten werden hier akzeptiert"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Wie lautet die Telefonnummer von {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Im Innenraum stehen viele Steckdosen zur Verfügung, an denen Kunden ihre Geräte laden können"
|
||||
},
|
||||
"1": {
|
||||
"then": "Im Innenraum stehen nur wenige Steckdosen zur Verfügung, an denen Kunden ihre Geräte laden können"
|
||||
},
|
||||
"2": {
|
||||
"then": "Im Innenraum stehen keine Steckdosen zur Verfügung, aber Laden von Geräte könnte möglich sein, wenn das Personal gefragt wird"
|
||||
},
|
||||
"3": {
|
||||
"then": "Im Innenraum stehen keine Steckdosen für Kunden zur Verfügung"
|
||||
}
|
||||
},
|
||||
"question": "Gibt es hier Steckdosen, an denen Kunden ihre Geräte laden können?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Rauchen ist <b>erlaubt</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Rauchen ist <b>nicht erlaubt</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Rauchen ist <b> draußen erlaubt</b>."
|
||||
}
|
||||
},
|
||||
"question": "Ist das Rauchen in {title()} erlaubt?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Wie lautet die Webseite von {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der Ort ist speziell für Rollstuhlfahrer gestaltet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der Ort ist rollstuhlzugänglich gestaltet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Der Ort ist nur eingeschränkt rollstuhlzugänglich"
|
||||
},
|
||||
"3": {
|
||||
"then": "Der Ort ist nicht rollstuhlzugänglich"
|
||||
}
|
||||
},
|
||||
"question": "Ist der Ort rollstuhlzugänglich?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Es wurde noch keine Wikipedia-Seite verlinkt"
|
||||
},
|
||||
"1": {
|
||||
"then": "Es wurde noch keine Wikipedia-Seite verlinkt"
|
||||
}
|
||||
},
|
||||
"question": "Wie lautet das zugehörige Wikidata Element?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"railway_platforms": {
|
||||
"description": "Finden Sie alle Bahnsteige im Bahnhof und die Zugstrecken, die sie benutzen.",
|
||||
"name": "Bahnsteige",
|
||||
|
|
|
@ -7024,6 +7024,333 @@
|
|||
"render": "Bookcase"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1 cent coins are accepted"
|
||||
},
|
||||
"1": {
|
||||
"then": "2 cent coins are accepted"
|
||||
},
|
||||
"2": {
|
||||
"then": "5 cent coins are accepted"
|
||||
},
|
||||
"3": {
|
||||
"then": "10 cent coins are accepted"
|
||||
},
|
||||
"4": {
|
||||
"then": "20 cent coins are accepted"
|
||||
},
|
||||
"5": {
|
||||
"then": "50 cent coins are accepted"
|
||||
},
|
||||
"6": {
|
||||
"then": "1 euro coins are accepted"
|
||||
},
|
||||
"7": {
|
||||
"then": "2 euro coins are accepted"
|
||||
}
|
||||
},
|
||||
"question": "What coins can you use to pay here?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "5 euro notes are accepted"
|
||||
},
|
||||
"1": {
|
||||
"then": "10 euro notes are accepted"
|
||||
},
|
||||
"2": {
|
||||
"then": "20 euro notes are accepted"
|
||||
},
|
||||
"3": {
|
||||
"then": "50 euro notes are accepted"
|
||||
},
|
||||
"4": {
|
||||
"then": "100 euro notes are accepted"
|
||||
},
|
||||
"5": {
|
||||
"then": "200 euro notes are accepted"
|
||||
},
|
||||
"6": {
|
||||
"then": "500 euro notes are accepted"
|
||||
}
|
||||
},
|
||||
"question": "what notes can you use to pay here?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Is there still some relevant info that the previous questions did not cover? Feel free to add it here.",
|
||||
"questionHint": "Please don't repeat already stated facts"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dogs are allowed"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dogs are <b>not</b> allowed"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dogs are allowed, but they have to be leashed"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dogs are allowed and can run around freely"
|
||||
}
|
||||
},
|
||||
"question": "Are dogs allowed in this business?"
|
||||
},
|
||||
"email": {
|
||||
"question": "What is the email address of {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This place has an audio induction loop"
|
||||
},
|
||||
"1": {
|
||||
"then": "This place <b>does not</b> have an audio induction loop"
|
||||
}
|
||||
},
|
||||
"question": "Does this place have an audio induction loop for people with reduced hearing?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This place offers wireless internet access"
|
||||
},
|
||||
"1": {
|
||||
"then": "This place <b>does not</b> offer internet access"
|
||||
},
|
||||
"2": {
|
||||
"then": "This place offers internet access"
|
||||
},
|
||||
"3": {
|
||||
"then": "This place offers internet access via a terminal or computer"
|
||||
},
|
||||
"4": {
|
||||
"then": "This place offers wired internet access"
|
||||
}
|
||||
},
|
||||
"question": "Does this place offer internet access?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "There is a fee for the internet access at this place"
|
||||
},
|
||||
"1": {
|
||||
"then": "Internet access is free at this place"
|
||||
},
|
||||
"2": {
|
||||
"then": "Internet access is free at this place, for customers only"
|
||||
}
|
||||
},
|
||||
"question": "Is there a fee for internet access?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Enter the network name"
|
||||
},
|
||||
"question": "What is the network name for the wireless internet access?",
|
||||
"render": "The network name is <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "You just created this element! Thanks for sharing this info with the world and helping people worldwide."
|
||||
}
|
||||
}
|
||||
},
|
||||
"last_edit": {
|
||||
"render": {
|
||||
"special": {
|
||||
"text": "Last edited on {_last_edit:timestamp} by {_last_edit:contributor}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Located underground"
|
||||
},
|
||||
"1": {
|
||||
"then": "Located on the ground floor"
|
||||
},
|
||||
"2": {
|
||||
"then": "Located on the ground floor"
|
||||
},
|
||||
"3": {
|
||||
"then": "Located on the first floor"
|
||||
},
|
||||
"4": {
|
||||
"then": "Located on the first basement level"
|
||||
}
|
||||
},
|
||||
"question": "On what level is this feature located?",
|
||||
"render": "Located on the {level}th floor"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This object both emits light and is lighted by an external light source"
|
||||
},
|
||||
"1": {
|
||||
"then": "This object emits light"
|
||||
},
|
||||
"2": {
|
||||
"then": "This object is lit externally, e.g. by a spotlight or other lights"
|
||||
},
|
||||
"3": {
|
||||
"then": "This object does not emit light and is not lighted by externally"
|
||||
}
|
||||
},
|
||||
"question": "Is this object lit or does it emit light?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "What levels does this elevator go to?",
|
||||
"render": "This elevator goes to floors {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "What are the opening hours of {title()}?",
|
||||
"render": "<h3>Opening hours</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "24/7 opened (including holidays)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Only by appointment"
|
||||
},
|
||||
"1": {
|
||||
"then": "Only by appointment"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cash is accepted here"
|
||||
},
|
||||
"1": {
|
||||
"then": "Payment cards are accepted here"
|
||||
},
|
||||
"2": {
|
||||
"then": "Payment by QR-code is possible here"
|
||||
}
|
||||
},
|
||||
"question": "Which methods of payment are accepted here?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Payment is done using a dedicated app"
|
||||
},
|
||||
"1": {
|
||||
"then": "Payment is done using a membership card"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Coins are accepted here"
|
||||
},
|
||||
"1": {
|
||||
"then": "Bank notes are accepted here"
|
||||
},
|
||||
"2": {
|
||||
"then": "Debit cards are accepted here"
|
||||
},
|
||||
"3": {
|
||||
"then": "Credit cards are accepted here"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "What is the phone number of {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics"
|
||||
},
|
||||
"1": {
|
||||
"then": "There are a few domestic sockets available to customers seated indoors, where they can charge their electronics"
|
||||
},
|
||||
"2": {
|
||||
"then": "There are no sockets available indoors to customers, but charging might be possible if the staff is asked"
|
||||
},
|
||||
"3": {
|
||||
"then": "There are a no domestic sockets available to customers seated indoors"
|
||||
}
|
||||
},
|
||||
"question": "Does this amenity have electrical outlets, available to customers when they are inside?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Smoking is <b>allowed</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Smoking is <b>not allowed</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Smoking is <b>allowed outside</b>."
|
||||
}
|
||||
},
|
||||
"question": "Is smoking allowed at {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "What is the website of {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This place is specially adapted for wheelchair users"
|
||||
},
|
||||
"1": {
|
||||
"then": "This place is easily reachable with a wheelchair"
|
||||
},
|
||||
"2": {
|
||||
"then": "It is possible to reach this place in a wheelchair, but it is not easy"
|
||||
},
|
||||
"3": {
|
||||
"then": "This place is not reachable with a wheelchair"
|
||||
}
|
||||
},
|
||||
"question": "Is this place accessible with a wheelchair?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "No Wikipedia page has been linked yet"
|
||||
},
|
||||
"1": {
|
||||
"then": "No Wikipedia page has been linked yet"
|
||||
}
|
||||
},
|
||||
"question": "What is the corresponding Wikidata entity?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"railway_platforms": {
|
||||
"description": "Find every platform in the station, and the train routes that use them.",
|
||||
"name": "Railway Platforms",
|
||||
|
@ -9091,6 +9418,9 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"mangrove-keys": {
|
||||
"render": "<a href='data:application/json,{mangroveidentity}' download='mangrove_private_key_{_name}'>Download the private key for your Mangrove Account</a> <p>Anyone possessing this file can make reviews with your identity</p>"
|
||||
},
|
||||
"picture-license": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
|
@ -9198,6 +9528,160 @@
|
|||
"render": "Settings"
|
||||
}
|
||||
},
|
||||
"vending_machine": {
|
||||
"description": "Layer showing vending machines",
|
||||
"filter": {
|
||||
"1": {
|
||||
"options": {
|
||||
"0": {
|
||||
"question": "All vending machines"
|
||||
},
|
||||
"1": {
|
||||
"question": "Sale of drinks"
|
||||
},
|
||||
"2": {
|
||||
"question": "Sale of sweets"
|
||||
},
|
||||
"3": {
|
||||
"question": "Sale of food"
|
||||
},
|
||||
"4": {
|
||||
"question": "Sale of cigarettes"
|
||||
},
|
||||
"5": {
|
||||
"question": "Sale of condoms"
|
||||
},
|
||||
"6": {
|
||||
"question": "Sale of coffee"
|
||||
},
|
||||
"7": {
|
||||
"question": "Sale of water"
|
||||
},
|
||||
"8": {
|
||||
"question": "Sale of newspapers"
|
||||
},
|
||||
"9": {
|
||||
"question": "Sale of bicycle inner tubes"
|
||||
},
|
||||
"10": {
|
||||
"question": "Sale of milk"
|
||||
},
|
||||
"11": {
|
||||
"question": "Sale of bread"
|
||||
},
|
||||
"12": {
|
||||
"question": "Sale of eggs"
|
||||
},
|
||||
"13": {
|
||||
"question": "Sale of cheese"
|
||||
},
|
||||
"14": {
|
||||
"question": "Sale of honey"
|
||||
},
|
||||
"15": {
|
||||
"question": "Sale of potatoes"
|
||||
},
|
||||
"16": {
|
||||
"question": "Sale of flowers"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": "Vending Machines",
|
||||
"presets": {
|
||||
"0": {
|
||||
"title": "a vending machine"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"indoor": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This vending machine is outdoors"
|
||||
},
|
||||
"1": {
|
||||
"then": "This vending machine is indoors"
|
||||
},
|
||||
"2": {
|
||||
"then": "This vending machine is outdoors"
|
||||
}
|
||||
},
|
||||
"question": "Is this vending machine indoors?"
|
||||
},
|
||||
"operator": {
|
||||
"freeform": {
|
||||
"placeholder": "Name of operator"
|
||||
},
|
||||
"question": "Who operates this vending machine?",
|
||||
"render": "This vending machine is operated by {operator}"
|
||||
},
|
||||
"vending": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Drinks are sold"
|
||||
},
|
||||
"1": {
|
||||
"then": "Sweets are sold"
|
||||
},
|
||||
"2": {
|
||||
"then": "Food is sold"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cigarettes are sold"
|
||||
},
|
||||
"4": {
|
||||
"then": "Condoms are sold"
|
||||
},
|
||||
"5": {
|
||||
"then": "Coffee is sold"
|
||||
},
|
||||
"6": {
|
||||
"then": "Drinking water is sold"
|
||||
},
|
||||
"7": {
|
||||
"then": "Newspapers are sold"
|
||||
},
|
||||
"8": {
|
||||
"then": "Bicycle inner tubes are sold"
|
||||
},
|
||||
"9": {
|
||||
"then": "Milk is sold"
|
||||
},
|
||||
"10": {
|
||||
"then": "Bread is sold"
|
||||
},
|
||||
"11": {
|
||||
"then": "Eggs are sold"
|
||||
},
|
||||
"12": {
|
||||
"then": "Cheese is sold"
|
||||
},
|
||||
"13": {
|
||||
"then": "Honey is sold"
|
||||
},
|
||||
"14": {
|
||||
"then": "Potatoes are sold"
|
||||
},
|
||||
"15": {
|
||||
"then": "Flowers are sold"
|
||||
}
|
||||
},
|
||||
"question": "What does this vending machine sell?",
|
||||
"render": "This vending machine sells {vending}"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Vending machine {name}"
|
||||
},
|
||||
"1": {
|
||||
"then": "Vending machine {brand}"
|
||||
}
|
||||
},
|
||||
"render": "Vending machine"
|
||||
}
|
||||
},
|
||||
"veterinary": {
|
||||
"name": "veterinary",
|
||||
"presets": {
|
||||
|
|
|
@ -123,6 +123,46 @@
|
|||
"render": "Fantombiciklo"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hundoj estas permesataj"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hundoj estas <b>malpermesataj</b>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"email": {
|
||||
"question": "Kio estas la retpoŝta adreso de {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"1": {
|
||||
"then": "En la teretaĝo"
|
||||
},
|
||||
"2": {
|
||||
"then": "En la teretaĝo"
|
||||
},
|
||||
"3": {
|
||||
"then": "En la unua etaĝo"
|
||||
}
|
||||
},
|
||||
"render": "En la {level}a etaĝo"
|
||||
},
|
||||
"opening_hours": {
|
||||
"render": "<h3>Malfermitaj horoj</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Kio estas la telefonnumero de {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Kie estas la retejo de {title()}?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"shops": {
|
||||
"description": "Butiko",
|
||||
"name": "Butiko",
|
||||
|
|
|
@ -3416,6 +3416,319 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Se aceptan monedas de 1 céntimo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Se aceptan monedas de 2 céntimos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Se aceptan monedas de 5 céntimos"
|
||||
},
|
||||
"3": {
|
||||
"then": "Se aceptan monedas de 10 céntimos"
|
||||
},
|
||||
"4": {
|
||||
"then": "Se aceptan monedas de 20 céntimos"
|
||||
},
|
||||
"5": {
|
||||
"then": "Se aceptan monedas de 50 céntimos"
|
||||
},
|
||||
"6": {
|
||||
"then": "Se aceptan monedas de 1 euro"
|
||||
},
|
||||
"7": {
|
||||
"then": "Se aceptan monedas de 2 euros"
|
||||
}
|
||||
},
|
||||
"question": "¿Qué monedas se pueden usar aquí para pagar?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Se aceptan billetes de 5 euros"
|
||||
},
|
||||
"1": {
|
||||
"then": "Se aceptan billetes de 10 euros"
|
||||
},
|
||||
"2": {
|
||||
"then": "Se aceptan billetes de 20 euros"
|
||||
},
|
||||
"3": {
|
||||
"then": "Se aceptan billetes de 50 euros"
|
||||
},
|
||||
"4": {
|
||||
"then": "Se aceptan billetes de 100 euros"
|
||||
},
|
||||
"5": {
|
||||
"then": "Se aceptan billetes de 200 euros"
|
||||
},
|
||||
"6": {
|
||||
"then": "Se aceptan billetes de 500 euros"
|
||||
}
|
||||
},
|
||||
"question": "¿con qué billetes se puede pagar aquí?"
|
||||
},
|
||||
"description": {
|
||||
"question": "¿Aún hay algo relevante que no ha encajado en las preguntas anteriores? Compártalo aquí.",
|
||||
"questionHint": "No repita datos ya expresados"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Se permiten perros"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> se permiten perros"
|
||||
},
|
||||
"2": {
|
||||
"then": "Los perros están permitidos, pero tienen que llevar correa"
|
||||
},
|
||||
"3": {
|
||||
"then": "Los perros están permitidos y pueden estar sueltos"
|
||||
}
|
||||
},
|
||||
"question": "¿Están permitidos los perros en este negocio?"
|
||||
},
|
||||
"email": {
|
||||
"question": "¿Cual es la direccióm de correo electrónico de {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar tiene un bucle auditivo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar <b>no</b> tiene bucle auditivo"
|
||||
}
|
||||
},
|
||||
"question": "¿Este lugar tiene un bucle auditivo para personas con discapacidad auditiva?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar ofrece acceso a internet inalámbrico"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar <b>no</b> ofrece acceso a internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Este lugar ofrece acceso a internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar ofrece acceso a internet a través de una terminal o un ordenador"
|
||||
},
|
||||
"4": {
|
||||
"then": "Este lugar ofrece acceso a internet por cable"
|
||||
}
|
||||
},
|
||||
"question": "¿Ofrece este lugar acceso a internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hay que pagar para acceder a internet en este lugar"
|
||||
},
|
||||
"1": {
|
||||
"then": "El acceso a internet es gratuito en este lugar"
|
||||
},
|
||||
"2": {
|
||||
"then": "El acceso a internet es gratis en este lugar, solamente para clientes"
|
||||
}
|
||||
},
|
||||
"question": "¿Hay que pagar para acceder a internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Introduzca el nombre de red"
|
||||
},
|
||||
"question": "¿Cuál es el nombre de red para el acceso inalámbrico a internet?",
|
||||
"render": "El nombre de red es <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Localizado bajo tierra"
|
||||
},
|
||||
"1": {
|
||||
"then": "Localizado en la planta baja"
|
||||
},
|
||||
"2": {
|
||||
"then": "Localizado en la planta baja"
|
||||
},
|
||||
"3": {
|
||||
"then": "Localizado en la primera planta"
|
||||
},
|
||||
"4": {
|
||||
"then": "Localizada en el primer sótano"
|
||||
}
|
||||
},
|
||||
"question": "¿En qué nivel se encuentra esta característica?",
|
||||
"render": "Localizada en la {level}° planta"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este objeto emite luz y es también iluminado por una fuente de luz externa"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este objeto emite luz"
|
||||
},
|
||||
"2": {
|
||||
"then": "Este objeto recibe iluminación, por ejemplo por un foco u otras luces"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este objeto ni emite luz ni es iluminado"
|
||||
}
|
||||
},
|
||||
"question": "¿Está este objeto iluminado o emite luz?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "¿A qué pisos va este ascensor?",
|
||||
"render": "Este ascensor va a los pisos {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "¿Cuales son las horas de apertura de {title()}?",
|
||||
"render": "<h3>Horas de apertura</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Abierta 24/7 (incluyendo festivos)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Sólo con cita previa"
|
||||
},
|
||||
"1": {
|
||||
"then": "Sólo con cita previa"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquí se acepta el pago en efectivo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí se acepta el pago por tarjeta"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí se puede pagar con código QR"
|
||||
}
|
||||
},
|
||||
"question": "¿Qué métodos de pago se aceptan aquí?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "El pago se realiza con una aplicación dedicada"
|
||||
},
|
||||
"1": {
|
||||
"then": "El pago se realiza con una tarjeta de membresía"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Aquí se aceptan monedas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí se aceptan billetes"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí se aceptan tarjetas de débito"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquí se aceptan tarjetas de crédito"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "¿Cuál es el número de teléfono de {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hay numerosos enchufes domésticos disponibles para los clientes sentados en el interior, donde pueden cargar sus dispositivos electrónicos"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hay algunos enchufes domésticos disponibles para los clientes sentados en el interior, donde pueden cargar sus dispositivos electrónicos"
|
||||
},
|
||||
"2": {
|
||||
"then": "No hay enchufes disponibles en el interior para los clientes, pero cargar puede ser posible si se pregunta al personal"
|
||||
},
|
||||
"3": {
|
||||
"then": "No hay enchufes domésticos disponibles para los clientes sentados en el interior"
|
||||
}
|
||||
},
|
||||
"question": "¿Esta facilidad tiene enchufes eléctricos, disponibles para los clientes cuando están dentro?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Está <b>permitido</b> fumar"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> está permitido fumar"
|
||||
},
|
||||
"2": {
|
||||
"then": "Está permitido fumar <b>en el exterior</b>."
|
||||
}
|
||||
},
|
||||
"question": "¿Está permitido fumar en {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "¿Cual es el sitio web de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar está especialmente adaptado para usuarios en sillas de ruedas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar es fácilmente accesible con una silla de ruedas"
|
||||
},
|
||||
"2": {
|
||||
"then": "Es posible llegar a este lugar con una silla de ruedas, pero no es fácil"
|
||||
},
|
||||
"3": {
|
||||
"then": "No es posible llegar a este lugar con una silla de ruedas"
|
||||
}
|
||||
},
|
||||
"question": "¿Este lugar es accesible con una silla de ruedas?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Todavía no se ha enlazado una página de wikipedia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Todavía no se ha enlazado una página de wikipedia"
|
||||
}
|
||||
},
|
||||
"question": "¿Cual es la entidad de Wikidata que se corresponde?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"recycling": {
|
||||
"description": "Una capa con contenedores y centros de reciclaje",
|
||||
"filter": {
|
||||
|
|
|
@ -7,5 +7,132 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Mayroon pa bang mga bagay na nau-ugnay at hindi mo maibigay sa mga nakaraang tanong? Idagdag dito.",
|
||||
"questionHint": "Huwag ulitin ang mga nai-saad na"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pinapayagan ang mga aso"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>Hindi</b> pinapayagan ang mga aso"
|
||||
},
|
||||
"2": {
|
||||
"then": "Pinapayagan ang mga aso kung may tali"
|
||||
},
|
||||
"3": {
|
||||
"then": "Pinapayayagan ang mga aso, at malayang makatatakbo"
|
||||
}
|
||||
},
|
||||
"question": "Pinapayagan ba ang mga aso sa establisyementong ito?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Ano ang email address ng {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nasa ilalim ng lupa"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nasa unang palapag"
|
||||
},
|
||||
"2": {
|
||||
"then": "Nasa unang palapag"
|
||||
},
|
||||
"3": {
|
||||
"then": "Nasa unang palapag"
|
||||
},
|
||||
"4": {
|
||||
"then": "Nasa silong"
|
||||
}
|
||||
},
|
||||
"question": "Anong palapag matatagpuan ang tampók?",
|
||||
"render": "Natagpuan sa ika-{level} na palapag"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Anong oras nagbubukas ang {title()}?",
|
||||
"render": "<h3>Mga oras na bukas</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tinatanggap ang salapi rito"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tinatanggap ang mga tarhetang pambayad dito"
|
||||
}
|
||||
},
|
||||
"question": "Anong mga paraang pambayad ang tinatanggap dito?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Binabayaran gamit ang sariling app"
|
||||
},
|
||||
"1": {
|
||||
"then": "Binabayaran gamit ang membership card"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Ano ang telepono ng {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Maraming mga intsupe (sockets) na maaring gamitin ng mga suki na nakaupo sa loob, pang-karga ng kanilang mga elektroniks"
|
||||
},
|
||||
"1": {
|
||||
"then": "May iilang mga intsupe (sockets) na maaring gamitin ng mga suki na nakaupo sa loob, pang-karga ng kanilang mga elektroniks"
|
||||
},
|
||||
"2": {
|
||||
"then": "Walang mga intsupe (socket) para sa mga suki, pero maaring tanungin ang kawani kung magpapa-karga"
|
||||
},
|
||||
"3": {
|
||||
"then": "Walang mga intsupe (socket) para sa mga suking nakaubo sa loob"
|
||||
}
|
||||
},
|
||||
"question": "Merong bang mga intsupe (outlet) sa loob, para sa mga suki?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Ano ang website ng {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ang lugar na ito ay angkop sa mga gumagamit ng wheelchair"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ang lugar na ito ay kayang abutin ng mga naka-wheelchair"
|
||||
},
|
||||
"2": {
|
||||
"then": "Kayang abutin ang lugar na ito ng mga naka-wheelchair, pero hindi madali"
|
||||
},
|
||||
"3": {
|
||||
"then": "Ang lugar na ito ay hindi kayang abutin ng naka-wheelchair"
|
||||
}
|
||||
},
|
||||
"question": "Kaya bang abutin ang lugar na ito ng naka-wheelchair?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Wala pang kawing ng Wikipedia page"
|
||||
},
|
||||
"1": {
|
||||
"then": "Wala pang kawing ng Wikipedia page"
|
||||
}
|
||||
},
|
||||
"question": "Ano ang nau-ukol na entidad sa Wikidata?"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -4254,6 +4254,323 @@
|
|||
"render": "Microbibliothèque"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Les pièces d'1 cent sont acceptées"
|
||||
},
|
||||
"1": {
|
||||
"then": "Les pièces de 2 cents sont acceptées"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les pièces de 5 cents sont acceptées"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les pièces de 10 cents sont acceptées"
|
||||
},
|
||||
"4": {
|
||||
"then": "Les pièces de 20 cents sont acceptées"
|
||||
},
|
||||
"5": {
|
||||
"then": "Les pièces de 50 cents sont acceptées"
|
||||
},
|
||||
"6": {
|
||||
"then": "Les pièces de 1 euro sont acceptées"
|
||||
},
|
||||
"7": {
|
||||
"then": "Les pièces de 2 euros sont acceptées"
|
||||
}
|
||||
},
|
||||
"question": "Quelles pièces peut-on utiliser pour payer ici ?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Les billets de 5 euros ne sont pas acceptés"
|
||||
},
|
||||
"1": {
|
||||
"then": "Les billets de 10 euros sont acceptés"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les billets de 20 euros sont acceptés"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les billets de 50 euros sont acceptés"
|
||||
},
|
||||
"4": {
|
||||
"then": "Les billets de 100 euros sont acceptés"
|
||||
},
|
||||
"5": {
|
||||
"then": "Les billets de 200 euros sont acceptés"
|
||||
},
|
||||
"6": {
|
||||
"then": "Les billets de 500 euros sont acceptés"
|
||||
}
|
||||
},
|
||||
"question": "quels billets pouvez vous utiliser pour payer ici ?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Y a-t-il quelque chose de pertinent que vous n'avez pas pu donner à la dernière question ? Ajoutez-le ici.",
|
||||
"questionHint": "Ne répétez pas des réponses déjà données"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Chiens admis"
|
||||
},
|
||||
"1": {
|
||||
"then": "Chiens <b>non</b> admis"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les chiens sont admis, mais ils doivent être tenus en laisse"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les chiens sont admis et peuvent circuler librement"
|
||||
}
|
||||
},
|
||||
"question": "Est-ce que les chiens sont admis ici ?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Quelle est l'adresse courriel de {title()} ?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ce lieu dispose d’une boucle auditive"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ce lieu <b>ne dispose pas</b> de boucle auditive"
|
||||
}
|
||||
},
|
||||
"question": "Ce lieu dispose-t’il d’une boucle auditive pour les personnes malentendantes ?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ce lieu propose un accès internet sans fil"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ce lieu <b>ne propose pas</b> d'accès internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ce lieu propose un accès internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cet endroit offre un accès à Internet via un terminal ou un ordinateur"
|
||||
},
|
||||
"4": {
|
||||
"then": "Cet endroit offre un accès Internet filaire"
|
||||
}
|
||||
},
|
||||
"question": "Cet endroit offre-t-il un accès à Internet ?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "L'accès à l'internet est payant à cet endroit"
|
||||
},
|
||||
"1": {
|
||||
"then": "L'accès à Internet est gratuit dans cet endroit"
|
||||
},
|
||||
"2": {
|
||||
"then": "L'accès à l'internet dans cet endroit est gratuit pour les clients uniquement"
|
||||
}
|
||||
},
|
||||
"question": "L'accès à l'internet est-il payant ?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Entrez le nom du réseau"
|
||||
},
|
||||
"question": "Quel est le nom du réseau pour l'accès Internet sans fil ?",
|
||||
"render": "Le nom du réseau est <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Vous venez de créer cet élément ! Merci d'avoir partagé cette information avec le monde et d'aider les autres personnes."
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "En sous-sol"
|
||||
},
|
||||
"1": {
|
||||
"then": "Rez-de-chaussée"
|
||||
},
|
||||
"2": {
|
||||
"then": "Rez-de-chaussée"
|
||||
},
|
||||
"3": {
|
||||
"then": "Premier étage"
|
||||
},
|
||||
"4": {
|
||||
"then": "Sous-sol"
|
||||
}
|
||||
},
|
||||
"question": "À quel étage se situe l’élément ?",
|
||||
"render": "Étage {level}"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cet objet émet de la lumière et est éclairé par l'extérieur"
|
||||
},
|
||||
"1": {
|
||||
"then": "Cet objet émet de la lumière"
|
||||
},
|
||||
"2": {
|
||||
"then": "Cet objet est éclairé par l'extérieur, par ex. par un projecteur ou d'autres lumières"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cet objet n'émet pas de lumière et n'est pas éclairé par l'extérieur"
|
||||
}
|
||||
},
|
||||
"question": "Cet objet est-il éclairé ou émet-il de la lumière ?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Quels étages sont desservis par cet ascenceur ?",
|
||||
"render": "Cet ascenceur permet d’accéder aux étages {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Quelles sont les horaires d'ouverture de {title()} ?",
|
||||
"render": "<h3>Horaires d'ouverture</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ouvert 24h/24 (jours fériés compris)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Uniquement sur rendez-vous"
|
||||
},
|
||||
"1": {
|
||||
"then": "Uniquement sur rendez-vous"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Paiement en liquide accepté"
|
||||
},
|
||||
"1": {
|
||||
"then": "Paiement par carte accepté"
|
||||
}
|
||||
},
|
||||
"question": "Quelles sont les méthodes de paiement acceptées ici ?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Paiement via une application"
|
||||
},
|
||||
"1": {
|
||||
"then": "Paiement via une carte de membre"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Les pièces sont acceptées ici"
|
||||
},
|
||||
"1": {
|
||||
"then": "Les billets de banque sont acceptés ici"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les cartes de débit sont acceptées ici"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les cartes de crédit sont acceptées ici"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Quel est le numéro de téléphone de {title()} ?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Il y a suffisamment de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils"
|
||||
},
|
||||
"1": {
|
||||
"then": "Il y a peu de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils"
|
||||
},
|
||||
"2": {
|
||||
"then": "Il n'y a pas de prises disponibles à l'intérieur pour les clients, mais la recharge est peut-être possible sur demande auprès des employés"
|
||||
},
|
||||
"3": {
|
||||
"then": "Il n'y a pas de prises secteur disponibles pour les clients assis à l'intérieur"
|
||||
}
|
||||
},
|
||||
"question": "Des prises sont elles à disposition des client·e·s en intérieur ?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Il est <b>autorisé</b> de fumer"
|
||||
},
|
||||
"1": {
|
||||
"then": "Il est <b>interdit</b> de fumer"
|
||||
},
|
||||
"2": {
|
||||
"then": "Il est autorisé de fumer <b>à l'extérieur</b>."
|
||||
}
|
||||
},
|
||||
"question": "Est-ce autorisé de fumer à {title()} ?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Quel est le site web de {title()} ?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cet endroit est spécialement adapté pour les usagers de fauteuils roulants"
|
||||
},
|
||||
"1": {
|
||||
"then": "Cet endroit est facilement accessible avec un fauteuil roulant"
|
||||
},
|
||||
"2": {
|
||||
"then": "Il est possible d'accéder à cet endroit en chaise roulante, mais ce n'est pas facile"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cet endroit n'est pas accessible en chaise roulante"
|
||||
}
|
||||
},
|
||||
"question": "Est-ce que cet endroit est accessible en chaise roulante ?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pas encore de lien vers une page Wikipedia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Pas encore de lien vers une page Wikipedia"
|
||||
}
|
||||
},
|
||||
"question": "Quelle est l'entité Wikidata correspondante ?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"railway_platforms": {
|
||||
"description": "Trouvez tous les quais dans la gare, et les lignes ferroviaires qui les utilisent.",
|
||||
"name": "Quais de gare",
|
||||
|
|
|
@ -386,5 +386,12 @@
|
|||
"title": {
|
||||
"render": "Bicicleta pantasma"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"website": {
|
||||
"question": "Cal é a páxina web de {title()}?"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -764,6 +764,142 @@
|
|||
"render": "Könyvespolc"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Van-e még valami lényeges, amit nem tudott megadni az előző kérdésekben? Itt megteheti.",
|
||||
"questionHint": "Ne ismételjen meg már megadott tényeket"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kutya bevihető"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kutya <b>nem</b> vihető be"
|
||||
},
|
||||
"2": {
|
||||
"then": "Kutya bevihető, de csak pórázon"
|
||||
},
|
||||
"3": {
|
||||
"then": "Kutya bevihető és szabadon szaladgálhat"
|
||||
}
|
||||
},
|
||||
"question": "Be lehet-e vinni kutyát ebbe az üzletbe?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Mi a(z) {title()} e-mail címe?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "A föld alatt"
|
||||
},
|
||||
"1": {
|
||||
"then": "A földszinten"
|
||||
},
|
||||
"2": {
|
||||
"then": "A földszinten"
|
||||
},
|
||||
"3": {
|
||||
"then": "Az első emeleten"
|
||||
},
|
||||
"4": {
|
||||
"then": "Az első alagsori szinten"
|
||||
}
|
||||
},
|
||||
"question": "Melyik szinten található ez a létesítmény?",
|
||||
"render": "A(z) {level}. emeleten"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Mikor van nyitva ez: {title()}?",
|
||||
"render": "<h3>Nyitva tartás</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Éjjel-nappal nyitva (munkaszüneti napokon is)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Itt készpénzzel is lehet fizetni"
|
||||
},
|
||||
"1": {
|
||||
"then": "Itt fizetőkártyákkal is lehet fizetni"
|
||||
}
|
||||
},
|
||||
"question": "Milyen fizetési módokat fogadnak el itt?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Fizetés erre a célra szolgáló alkalmazással"
|
||||
},
|
||||
"1": {
|
||||
"then": "Fizetési tagsági kártyával"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Mi a telefonszáma ennek: {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Számos konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik"
|
||||
},
|
||||
"1": {
|
||||
"then": "Csupán néhány konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik"
|
||||
},
|
||||
"2": {
|
||||
"then": "A belső térben nincs konnektor az ügyfeleknek, de lehetséges, hogy a személyzet segítségével lehet elektromos eszközt tölteni"
|
||||
},
|
||||
"3": {
|
||||
"then": "A belső térben ülő ügyfeleknek nem áll rendelkezésére konnektor"
|
||||
}
|
||||
},
|
||||
"question": "Van-e ebben a létesítményben olyan konnektor, amely a bent tartózkodó ügyfelek rendelkezésére áll?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Mi a weboldala ennek: {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ez a hely kifejezetten kerekesszékeseknek lett kialakítva"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ez a hely könnyedén elérhető kerekesszékkel"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ez a hely ugyan elérhető kerekesszékkel, de nehezen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Ez a hely kerekesszékkel elérhetetlen"
|
||||
}
|
||||
},
|
||||
"question": "Akadálymentes-e ez a hely?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Még nincs Wikipédia-oldal belinkelve"
|
||||
},
|
||||
"1": {
|
||||
"then": "Még nincs Wikipédia-oldal belinkelve"
|
||||
}
|
||||
},
|
||||
"question": "Mi a megfelelő Wikidata-elem?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"shops": {
|
||||
"description": "Egy bolt"
|
||||
},
|
||||
|
|
|
@ -413,6 +413,208 @@
|
|||
"render": "Kantor Pos"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1 koin sen diterima"
|
||||
},
|
||||
"1": {
|
||||
"then": "Koin 2 sen diterima"
|
||||
},
|
||||
"2": {
|
||||
"then": "Koin 5 sen diterima"
|
||||
},
|
||||
"3": {
|
||||
"then": "Koin 10 sen diterima"
|
||||
},
|
||||
"4": {
|
||||
"then": "Koin 20 sen diterima"
|
||||
},
|
||||
"5": {
|
||||
"then": "Koin 50 sen diterima"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": {
|
||||
"question": "Apakah masih ada sesuatu yang relevan yang tidak dapat Anda berikan dalam pertanyaan sebelumnya? Tambahkan di sini. ",
|
||||
"questionHint": " Jangan ulangi fakta yang sudah dinyatakan "
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Anjing diperbolehkan"
|
||||
},
|
||||
"1": {
|
||||
"then": "Anjing <b>tidak</b> diperbolehkan"
|
||||
},
|
||||
"2": {
|
||||
"then": "Anjing diperbolehkan, tetapi mereka harus diikat"
|
||||
},
|
||||
"3": {
|
||||
"then": "Anjing diperbolehkan dan dapat berkeliaran dengan bebas"
|
||||
}
|
||||
},
|
||||
"question": "Apakah anjing diperbolehkan dalam bisnis ini?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Apa alamat surel dari {title()}?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tempat ini menyediakan jaringan internet nirkabel"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tempat ini <b>tidak</b> menyediakan jaringan internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Tempat ini menyediakan jaringan internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Tempat ini menyediakan jaringan internet melalui terminal atau komputer"
|
||||
},
|
||||
"4": {
|
||||
"then": "Tempat ini menyediakan jaringan internet kabel"
|
||||
}
|
||||
},
|
||||
"question": "Apa tempat ini menyediakan jaringan internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ada biaya untuk akses internet di tempat ini"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jaringan internet tersedia gratis di tempat ini"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jaringan internet tersedia gratis di tempat ini, hanya untuk pelanggan"
|
||||
}
|
||||
},
|
||||
"question": "Apakah ada biaya untuk akses internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Masukkan nama jaringan"
|
||||
},
|
||||
"question": "Apa nama jaringan internet nirkabelnya?",
|
||||
"render": "Nama jaringan ini adalah <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Terletak di bawah tanah"
|
||||
},
|
||||
"1": {
|
||||
"then": "Terletak di lantai dasar"
|
||||
},
|
||||
"2": {
|
||||
"then": "Terletak di lantai dasar"
|
||||
},
|
||||
"3": {
|
||||
"then": "Berlokasi di lantai pertama"
|
||||
},
|
||||
"4": {
|
||||
"then": "Terletak di lantai basement pertama"
|
||||
}
|
||||
},
|
||||
"question": "Pada tingkat apa fitur ini diletakkan?",
|
||||
"render": "Terletak di lantai {level}"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Pada lantai berapa saja lift ini berjalan?",
|
||||
"render": "Lift ini berjalan ke lantai {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Kapan jam buka {title()}?",
|
||||
"render": "<h3>Jam buka</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Buka 24 jam (termasuk hari libur)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pembayaran tunai diterima di sini"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kartu pembayaran diterima di sini"
|
||||
}
|
||||
},
|
||||
"question": "Metode pembayaran manakah yang di terima disini?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Pembayaran dilakukan dengan aplikasi khusus"
|
||||
},
|
||||
"1": {
|
||||
"then": "Pembayaran dilakukan dengan kartu anggota"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Berapa nomor telepon dari {title()}?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Merokok <b>diizinkan</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Merokok <b>dilarang</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Merokok <b>diizinkan di luar ruangan</b>."
|
||||
}
|
||||
},
|
||||
"question": "Apa diizinkan untuk merokok di {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Apa situs web dari {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tempat ini dirancang khusus untuk pengguna kursi roda"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tempat ini mudah dijangkau dengan kursi roda"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dimungkinkan untuk mencapai tempat ini dengan kursi roda, tetapi tidak mudah"
|
||||
},
|
||||
"3": {
|
||||
"then": "Tempat ini tidak bisa dijangkau dengan kursi roda"
|
||||
}
|
||||
},
|
||||
"question": "Apakah tempat ini dapat diakses dengan kursi roda?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Belum ada halaman Wikipedia yang ditautkan"
|
||||
},
|
||||
"1": {
|
||||
"then": "Belum ada halaman Wikipedia yang ditautkan"
|
||||
}
|
||||
},
|
||||
"question": "Apa entitas Wikidata yang sesuai?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"recycling": {
|
||||
"filter": {
|
||||
"2": {
|
||||
|
|
|
@ -1771,6 +1771,110 @@
|
|||
"render": "Microbiblioteca"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "C'è ancora qualche informazione importante che non è stato possibile fornire nelle domande precedenti? Aggiungila qui.",
|
||||
"questionHint": "Non ripetere informazioni già fornite"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cani ammessi"
|
||||
},
|
||||
"1": {
|
||||
"then": "I cani <b>non</b> sono ammessi"
|
||||
},
|
||||
"2": {
|
||||
"then": "Cani ammessi ma solo se tenuti al guinzaglio"
|
||||
},
|
||||
"3": {
|
||||
"then": "I cani sono ammessi e possono andare in giro liberamente"
|
||||
}
|
||||
},
|
||||
"question": "I cani sono ammessi in quest’attività?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Qual è l'indirizzo email di {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Si trova sotto il livello stradale"
|
||||
},
|
||||
"1": {
|
||||
"then": "Si trova al pianoterra"
|
||||
},
|
||||
"2": {
|
||||
"then": "Si trova al pianoterra"
|
||||
},
|
||||
"3": {
|
||||
"then": "Si trova al primo piano"
|
||||
}
|
||||
},
|
||||
"question": "A quale piano si trova questo elemento?",
|
||||
"render": "Si trova al piano numero {level}"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Quali sono gli orari di apertura di {title()}?",
|
||||
"render": "<h3>Orari di apertura</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "I contanti sono accettati"
|
||||
},
|
||||
"1": {
|
||||
"then": "I pagamenti con la carta sono accettati"
|
||||
}
|
||||
},
|
||||
"question": "Quali metodi di pagamento sono accettati qui?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Pagamento effettuato utilizzando un'app dedicata"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Qual è il numero di telefono di {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Qual è il sito web di {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Questo luogo è stato adattato per favorire le persone in sedia a rotelle"
|
||||
},
|
||||
"1": {
|
||||
"then": "Questo luogo è facilmente raggiungibile con una sedia a rotelle"
|
||||
},
|
||||
"2": {
|
||||
"then": "È possibile raggiungere questo luogo con una sedia a rotella ma non è semplice"
|
||||
},
|
||||
"3": {
|
||||
"then": "Questo luogo non è accessibile con una sedia a rotelle"
|
||||
}
|
||||
},
|
||||
"question": "Questo luogo è accessibile con una sedia a rotelle?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nessuna pagina Wikipedia è ancora stata collegata"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nessuna pagina Wikipedia è ancora stata collegata"
|
||||
}
|
||||
},
|
||||
"question": "Qual è l’elemento Wikidata corrispondente?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"recycling": {
|
||||
"description": "Un livello con i contenitori e centri per la raccolta rifiuti riciclabili",
|
||||
"filter": {
|
||||
|
|
|
@ -500,6 +500,118 @@
|
|||
"render": "消火栓"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "前の質問で伝えきれなかった関連事項がまだありますか?ここに追加してください。",
|
||||
"questionHint": "今後表示しない"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "ペット同伴可能"
|
||||
},
|
||||
"1": {
|
||||
"then": "ペット同伴<b>不可</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "ペット同伴可能。ただしリード着用"
|
||||
},
|
||||
"3": {
|
||||
"then": "犬同伴可能、自由に走り回れる"
|
||||
}
|
||||
},
|
||||
"question": "犬を飼うことができますか?"
|
||||
},
|
||||
"email": {
|
||||
"question": "{title()}のEメールアドレスは何ですか?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "地下にあります"
|
||||
},
|
||||
"1": {
|
||||
"then": "1階にあります"
|
||||
},
|
||||
"2": {
|
||||
"then": "1階にあります"
|
||||
},
|
||||
"3": {
|
||||
"then": "1階にあります"
|
||||
}
|
||||
},
|
||||
"question": "この機能は何階にあるのでしょうか?",
|
||||
"render": "{level}階にあります"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "{title()}の営業時間は?",
|
||||
"render": "<h3>営業時間</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "現金利用可能"
|
||||
},
|
||||
"1": {
|
||||
"then": "お支払いはこちらで承ります"
|
||||
}
|
||||
},
|
||||
"question": "どのような支払い方法が可能ですか?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "{title()}の電話番号は?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "屋内の席に座っているお客様には、家庭用コンセントがたくさん用意されており、そこで電子機器を充電することができます"
|
||||
},
|
||||
"1": {
|
||||
"then": "屋内の席に座ったお客様が充電できるよう、コンセントがいくつか用意されています"
|
||||
},
|
||||
"2": {
|
||||
"then": "屋内にはコンセントがありませんが、スタッフに声をかければ充電できるかもしれません"
|
||||
},
|
||||
"3": {
|
||||
"then": "屋内の席には、家庭用コンセントはありません"
|
||||
}
|
||||
},
|
||||
"question": "このアメニティにはコンセントがあり、お客様が店内にいるときにも利用できますか?"
|
||||
},
|
||||
"website": {
|
||||
"question": "{title()}のウェブサイトは?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "この場所は、車椅子の方のための特別仕様になっています"
|
||||
},
|
||||
"1": {
|
||||
"then": "この場所は、車いすで簡単に行くことができます"
|
||||
},
|
||||
"2": {
|
||||
"then": "車いすでこの場所まで行くことは可能ですが、簡単ではありません"
|
||||
},
|
||||
"3": {
|
||||
"then": "この場所は車いすでは行けません"
|
||||
}
|
||||
},
|
||||
"question": "車いすでのアクセスは可能ですか?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "ウィキペディアのページはまだリンクされていません"
|
||||
},
|
||||
"1": {
|
||||
"then": "ウィキペディアのページはまだリンクされていません"
|
||||
}
|
||||
},
|
||||
"question": "対応するウィキデータのエンティティは何ですか?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"shops": {
|
||||
"description": "ショップ",
|
||||
"name": "店",
|
||||
|
|
|
@ -531,6 +531,273 @@
|
|||
"render": "Postkontor"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1-cent mynter aksepteres"
|
||||
},
|
||||
"1": {
|
||||
"then": "2-cent mynter aksepteres"
|
||||
},
|
||||
"2": {
|
||||
"then": "5-cent mynter aksepteres"
|
||||
},
|
||||
"3": {
|
||||
"then": "10-cent mynter aksepteres"
|
||||
},
|
||||
"4": {
|
||||
"then": "20-cent mynter aksepteres"
|
||||
},
|
||||
"5": {
|
||||
"then": "50-cent mynter aksepteres"
|
||||
},
|
||||
"6": {
|
||||
"then": "1-euro mynter aksepteres"
|
||||
},
|
||||
"7": {
|
||||
"then": "2-euro mynter aksepteres"
|
||||
}
|
||||
},
|
||||
"question": "Hvilke mynter kan brukes til betaling her?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Er det noe mer som er relevant du ikke kunne opplyse om i tidligere svar? Legg det til her.",
|
||||
"questionHint": "Ikke gjenta fakta som allerede er nevnt"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hunder tillates"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hunder tillates <b>ikke</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hunder tillates, men de må være i bånd"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hunder tillates og kan gå fritt"
|
||||
}
|
||||
},
|
||||
"question": "Tillates hunder i denne forretningen?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Hva er e-postadressen til {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette stedet har en teleslynge"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette stedet <b>har ikke</b> en teleslynge"
|
||||
}
|
||||
},
|
||||
"question": "Har stedet en teleslynge for folk med redusert hørsel?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette stedet tilbyr trådløs tilgang til Internett"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette stedet tilbyr <b>ikke</b> tilgang til Internett"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dette stedet tilbyr tilgang til Internett"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette stedet tilbyr tilgang til Internett via en terminal eller datamaskin"
|
||||
},
|
||||
"4": {
|
||||
"then": "Dette stedet tilbyr trådbunden tilgang til Internett"
|
||||
}
|
||||
},
|
||||
"question": "Tilbyr dette stedet tilgang til Internett?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det er et gebyr for tilgang til Internett på dette stedet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tilgang til Internett er gratis på dette stedet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Tilgang til Internett på dette stedet er gratis, men kun for kunder"
|
||||
}
|
||||
},
|
||||
"question": "Er det et gebyr for bruk av Internett?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Skriv inn nettverksnavnet"
|
||||
},
|
||||
"question": "Hva er nettverksnavnet for det trådløse nettverket?",
|
||||
"render": "Nettverksnavnet er <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Under bakken"
|
||||
},
|
||||
"1": {
|
||||
"then": "På gateplan"
|
||||
},
|
||||
"2": {
|
||||
"then": "På gateplan"
|
||||
},
|
||||
"3": {
|
||||
"then": "I andre etasje"
|
||||
},
|
||||
"4": {
|
||||
"then": "Er å finne på første kjellernivå"
|
||||
}
|
||||
},
|
||||
"question": "Hvilken etasje befinner funksjonen seg i?",
|
||||
"render": "Ligger i {level} etasje"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Hvilke etasjer går heisen til?",
|
||||
"render": "Heisen går til etasje {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Hva er åpningstidene for {title()})",
|
||||
"render": "<h3>Åpningstider</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Døgnåpent (inkludert helligdager)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kun ved avtale"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kun ved avtale"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kontanter godtas her"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalingskort godtas her"
|
||||
}
|
||||
},
|
||||
"question": "Hvilke betalingsmetoder godtas her?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Betaling utføres med et eget program"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betaling utføres med et medlemskort"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Mynter aksepteres her"
|
||||
},
|
||||
"1": {
|
||||
"then": "Sedler aksepteres her"
|
||||
},
|
||||
"2": {
|
||||
"then": "Debetkort aksepteres her"
|
||||
},
|
||||
"3": {
|
||||
"then": "Kredittkort aksepteres her"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Hva er telefonnummeret til {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det er massevis av stikkontakter tilgjengelig for kunder som sitter innendørs, der de kan lade elektronikken sin"
|
||||
},
|
||||
"1": {
|
||||
"then": "Det er noen stikkontakter tilgjengelig for kunder som sitter innendørs, der de kan lagre elektronikken sin"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det er ingen tilgjengelige stikkontakter for kunder som sitter innendørs, men lading kan være mulig hvis man spør betjeningen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Det er ingen stikkontakter tilgjengelig for kunder som sitter innendørs"
|
||||
}
|
||||
},
|
||||
"question": "Har denne fasiliteten stikkontakter, tilgjengelig for kunder innendørs?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Røyking er <b>tillatt</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Røyking <b>forbudt</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Røyking <b>tillates på utsiden</b>."
|
||||
}
|
||||
},
|
||||
"question": "Tillates røyking på {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Hva er nettsiden til {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette stedet er spesielt tilpasset rullestolsbrukere"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette stedet kan enkelt besøkes med rullestol"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det er mulig å besøke dette stedet i rullestol, men det er ikke lett"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette stedet er ikke tilgjengelig for besøk med rullestol"
|
||||
}
|
||||
},
|
||||
"question": "Er dette stedet tilgjengelig for rullestoler?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ingen Wikipedia-side lenket enda"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ingen Wikipedia-side lenket enda"
|
||||
}
|
||||
},
|
||||
"question": "Hva er respektivt Wikipedia-element?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"usersettings": {
|
||||
"tagRenderings": {
|
||||
"translation-completeness": {
|
||||
|
|
|
@ -6652,6 +6652,316 @@
|
|||
"render": "Boekenruilkast"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Munten van 1 cent worden geaccepteerd"
|
||||
},
|
||||
"1": {
|
||||
"then": "Munten van 2 cent worden geaccepteerd"
|
||||
},
|
||||
"2": {
|
||||
"then": "Munten van 5 cent worden geaccepteerd"
|
||||
},
|
||||
"3": {
|
||||
"then": "Munten van 10 cent worden geaccepteerd"
|
||||
},
|
||||
"4": {
|
||||
"then": "Munten van 20 cent worden geaccepteerd"
|
||||
},
|
||||
"5": {
|
||||
"then": "Munten van 50 cent worden geaccepteerd"
|
||||
},
|
||||
"6": {
|
||||
"then": "Munten van 1 euro worden geaccepteerd"
|
||||
},
|
||||
"7": {
|
||||
"then": "Munten van 2 euro worden geaccepteerd"
|
||||
}
|
||||
},
|
||||
"question": "Met welke munten kan je hier betalen?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Biljetten van 5 euro worden geaccepteerd"
|
||||
},
|
||||
"1": {
|
||||
"then": "Biljetten van 10 euro worden geaccepteerd"
|
||||
},
|
||||
"2": {
|
||||
"then": "Biljetten van 20 euro worden geaccepteerd"
|
||||
},
|
||||
"3": {
|
||||
"then": "Biljetten van 50 euro worden geaccepteerd"
|
||||
},
|
||||
"4": {
|
||||
"then": "Biljetten van 100 euro worden geaccepteerd"
|
||||
},
|
||||
"5": {
|
||||
"then": "Biljetten van 200 euro worden geaccepteerd"
|
||||
},
|
||||
"6": {
|
||||
"then": "Biljetten van 500 euro worden geaccepteerd"
|
||||
}
|
||||
},
|
||||
"question": "Met welke bankbiljetten kan je hier betalen?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Zijn er nog andere relevante zaken die je niet in de bovenstaande vragen kwijt kon? Vul ze hier in.",
|
||||
"questionHint": "Herhaal geen antwoorden die je reeds gaf"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "honden zijn toegelaten"
|
||||
},
|
||||
"1": {
|
||||
"then": "honden zijn <b>niet</b> toegelaten"
|
||||
},
|
||||
"2": {
|
||||
"then": "honden zijn <b>enkel aan de leiband</b> welkom"
|
||||
},
|
||||
"3": {
|
||||
"then": "honden zijn welkom en mogen vrij rondlopen"
|
||||
}
|
||||
},
|
||||
"question": "Zijn honden toegelaten in deze zaak?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Wat is het e-mailadres van {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Deze plaats heeft een ringleiding"
|
||||
},
|
||||
"1": {
|
||||
"then": "Deze plaats heeft <b>geen</b> ringleiding"
|
||||
}
|
||||
},
|
||||
"question": "Heeft deze plaats een ringleiding voor slechthorenden?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Deze plaats biedt draadloze internettoegang aan"
|
||||
},
|
||||
"1": {
|
||||
"then": "Deze plaats biedt <b>geen</b> internettoegang aan"
|
||||
},
|
||||
"2": {
|
||||
"then": "Deze plaats biedt internettoegang aan"
|
||||
},
|
||||
"3": {
|
||||
"then": "Deze plaats biedt internettoegang via een terminal of computer aan"
|
||||
},
|
||||
"4": {
|
||||
"then": "Deze plaats biedt bedrade internettoegang aan"
|
||||
}
|
||||
},
|
||||
"question": "Biedt deze plaats internettoegang aan?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Er zijn kosten voor internettoegang op deze plaats"
|
||||
},
|
||||
"1": {
|
||||
"then": "Internettoegang is gratis op deze plaats"
|
||||
},
|
||||
"2": {
|
||||
"then": "Internettoegang is gratis op deze plaats, alleen voor klanten"
|
||||
}
|
||||
},
|
||||
"question": "Zijn er kosten voor internettoegang?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Voer de netwerknaam in"
|
||||
},
|
||||
"question": "Wat is de netwerknaam voor de draadloze internettoegang?",
|
||||
"render": "De netwerknaam is <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Je hebt dit punt net toegevoegd! Bedankt om deze info met iedereen te delen en om de mensen wereldwijd te helpen."
|
||||
}
|
||||
}
|
||||
},
|
||||
"last_edit": {
|
||||
"render": {
|
||||
"special": {
|
||||
"text": "Laatst gewijzigd op {_last_edit:timestamp} door {_last_edit:contributor} "
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Bevindt zich ondergronds"
|
||||
},
|
||||
"1": {
|
||||
"then": "Bevindt zich op de begane grond"
|
||||
},
|
||||
"2": {
|
||||
"then": "Bevindt zich gelijkvloers"
|
||||
},
|
||||
"3": {
|
||||
"then": "Bevindt zich op de eerste verdieping"
|
||||
},
|
||||
"4": {
|
||||
"then": "Bevindt zich in de eerste kelderverdieping"
|
||||
}
|
||||
},
|
||||
"question": "Op welke verdieping bevindt dit punt zich?",
|
||||
"render": "Bevindt zich op de {level}de verdieping"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Naar welke verdiepingen gaat deze lift?",
|
||||
"render": "Deze lift gaat naar de verdiepingen {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Wat zijn de openingstijden van {title()}?",
|
||||
"render": "<h3>Openingstijden</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "24/7 open (ook tijdens feestdagen)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Alleen op afspraak"
|
||||
},
|
||||
"1": {
|
||||
"then": "Alleen op afspraak"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cash geld wordt hier aanvaard"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalen met bankkaarten kan hier"
|
||||
},
|
||||
"2": {
|
||||
"then": "Betalen via een QR-code is hier mogelijk"
|
||||
}
|
||||
},
|
||||
"question": "Welke betaalmiddelen worden hier geaccepteerd?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Betalen via een app van het netwerk"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalen via een lidkaart van het netwerk"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Muntgeld wordt hier aanvaard"
|
||||
},
|
||||
"1": {
|
||||
"then": "Bankbiljetten worden hier aanvaard"
|
||||
},
|
||||
"2": {
|
||||
"then": "Betalen met debetkaarten kan hier"
|
||||
},
|
||||
"3": {
|
||||
"then": "Betalen met creditkaarten kan hier"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Wat is het telefoonnummer van {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Er zijn binnen veel stekkers beschikbaar voor klanten die electronica wensen op te laden"
|
||||
},
|
||||
"1": {
|
||||
"then": "Er zijn binnen enkele stekkers beschikbaar voor klanten die electronica wensen op te laden"
|
||||
},
|
||||
"2": {
|
||||
"then": "Er zijn binnen geen stekkers beschikbaar, maar electronica opladen kan indien men dit aan het personeel vraagt"
|
||||
},
|
||||
"3": {
|
||||
"then": "Er zijn binnen geen stekkers beschikbaar"
|
||||
}
|
||||
},
|
||||
"question": "Zijn er stekkers beschikbaar voor klanten die binnen zitten?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Roken is <b>toegestaan</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Roken is <b>niet toegestaan</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Roken is <b>buiten toegestaan</b>."
|
||||
}
|
||||
},
|
||||
"question": "Is roken toegestaan bij {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Wat is de website van {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Deze plaats is speciaal aangepast voor gebruikers van een rolstoel"
|
||||
},
|
||||
"1": {
|
||||
"then": "Deze plaats is vlot bereikbaar met een rolstoel"
|
||||
},
|
||||
"2": {
|
||||
"then": "Deze plaats is bereikbaar met een rolstoel, maar het is niet makkelijk"
|
||||
},
|
||||
"3": {
|
||||
"then": "Niet rolstoeltoegankelijk"
|
||||
}
|
||||
},
|
||||
"question": "Is deze plaats rolstoeltoegankelijk?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Er werd nog geen Wikipedia-pagina gekoppeld"
|
||||
},
|
||||
"1": {
|
||||
"then": "Er werd nog geen Wikipedia-pagina gekoppeld"
|
||||
}
|
||||
},
|
||||
"question": "Welk Wikidata-item komt overeen met dit object?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"railway_platforms": {
|
||||
"description": "Vind elk perron in het station, en de routes die ze gebruiken.",
|
||||
"name": "Treinperrons",
|
||||
|
@ -8606,6 +8916,160 @@
|
|||
"render": "Instellingen"
|
||||
}
|
||||
},
|
||||
"vending_machine": {
|
||||
"description": "Laag met verkoopautomaten",
|
||||
"filter": {
|
||||
"1": {
|
||||
"options": {
|
||||
"0": {
|
||||
"question": "Alle verkoopautomaten"
|
||||
},
|
||||
"1": {
|
||||
"question": "Verkoop van dranken"
|
||||
},
|
||||
"2": {
|
||||
"question": "Verkoop van snoep"
|
||||
},
|
||||
"3": {
|
||||
"question": "Verkoop van eten"
|
||||
},
|
||||
"4": {
|
||||
"question": "Verkoop van sigaretten"
|
||||
},
|
||||
"5": {
|
||||
"question": "Verkoop van condooms"
|
||||
},
|
||||
"6": {
|
||||
"question": "Verkoop van koffie"
|
||||
},
|
||||
"7": {
|
||||
"question": "Verkoop van water"
|
||||
},
|
||||
"8": {
|
||||
"question": "Verkoop van kranten"
|
||||
},
|
||||
"9": {
|
||||
"question": "Verkoop van fietsbinnenbanden"
|
||||
},
|
||||
"10": {
|
||||
"question": "Verkoop van melk"
|
||||
},
|
||||
"11": {
|
||||
"question": "Verkoop van brood"
|
||||
},
|
||||
"12": {
|
||||
"question": "Verkoop van eieren"
|
||||
},
|
||||
"13": {
|
||||
"question": "Verkoop van kaas"
|
||||
},
|
||||
"14": {
|
||||
"question": "Verkoop van honing"
|
||||
},
|
||||
"15": {
|
||||
"question": "Verkoop van aardappelen"
|
||||
},
|
||||
"16": {
|
||||
"question": "Verkoop van bloemen"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": "Verkoopautomaten",
|
||||
"presets": {
|
||||
"0": {
|
||||
"title": "een verkoopautomaat"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"indoor": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Deze verkoopautomaat is buiten"
|
||||
},
|
||||
"1": {
|
||||
"then": "Deze verkoopautomaat is binnen"
|
||||
},
|
||||
"2": {
|
||||
"then": "Deze verkoopautomaat is buiten"
|
||||
}
|
||||
},
|
||||
"question": "Is deze verkoopautomaat binnen?"
|
||||
},
|
||||
"operator": {
|
||||
"freeform": {
|
||||
"placeholder": "Naam van beheerder"
|
||||
},
|
||||
"question": "Wie beheert deze verkoopautomaat?",
|
||||
"render": "Deze verkoopautomaat wordt beheerd door {operator}"
|
||||
},
|
||||
"vending": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dranken worden verkocht"
|
||||
},
|
||||
"1": {
|
||||
"then": "Snoep wordt verkocht"
|
||||
},
|
||||
"2": {
|
||||
"then": "Eten wordt verkocht"
|
||||
},
|
||||
"3": {
|
||||
"then": "Sigaretten worden verkocht"
|
||||
},
|
||||
"4": {
|
||||
"then": "Condooms worden verkocht"
|
||||
},
|
||||
"5": {
|
||||
"then": "Koffie wordt verkocht"
|
||||
},
|
||||
"6": {
|
||||
"then": "Drinkwater wordt verkocht"
|
||||
},
|
||||
"7": {
|
||||
"then": "Kranten worden verkocht"
|
||||
},
|
||||
"8": {
|
||||
"then": "Binnenbanden voor fietsen worden verkocht"
|
||||
},
|
||||
"9": {
|
||||
"then": "Melk wordt verkocht"
|
||||
},
|
||||
"10": {
|
||||
"then": "Brood wordt verkocht"
|
||||
},
|
||||
"11": {
|
||||
"then": "Eieren worden verkocht"
|
||||
},
|
||||
"12": {
|
||||
"then": "Kaas wordt verkocht"
|
||||
},
|
||||
"13": {
|
||||
"then": "Honing wordt verkocht"
|
||||
},
|
||||
"14": {
|
||||
"then": "Aardappelen worden verkocht"
|
||||
},
|
||||
"15": {
|
||||
"then": "Bloemen worden verkocht"
|
||||
}
|
||||
},
|
||||
"question": "Wat verkoopt deze verkoopautomaat?",
|
||||
"render": "Deze verkoopautomaat verkoopt {vending}"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Verkoopautomaat {name}"
|
||||
},
|
||||
"1": {
|
||||
"then": "Verkoopautomaat {brand}"
|
||||
}
|
||||
},
|
||||
"render": "Verkoopautomaat"
|
||||
}
|
||||
},
|
||||
"veterinary": {
|
||||
"name": "Dierenarts",
|
||||
"presets": {
|
||||
|
|
|
@ -286,6 +286,32 @@
|
|||
"render": "کتاباں دی الماری"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "کُتیاں دی اِجازت اے"
|
||||
}
|
||||
}
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "نیٹورک دا ناں پایو"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"render": "<h3>کھُلھے گھنٹے</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "سِگرٹ پیݨ دی <b>اِجازت</b> اے"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"rainbow_crossings": {
|
||||
"title": {
|
||||
"render": "کراسنگ"
|
||||
|
|
|
@ -283,5 +283,315 @@
|
|||
"title": {
|
||||
"render": "Duch roweru"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Akceptowane są monety 1 centowe"
|
||||
},
|
||||
"1": {
|
||||
"then": "Akceptowane są monety 2 centowe"
|
||||
},
|
||||
"2": {
|
||||
"then": "Akceptowane są monety 5 centowe"
|
||||
},
|
||||
"3": {
|
||||
"then": "Akceptowane są monety 10-centowe"
|
||||
},
|
||||
"4": {
|
||||
"then": "Akceptowane są monety 20-centowe"
|
||||
},
|
||||
"5": {
|
||||
"then": "Akceptowane są monety 50-centowe"
|
||||
},
|
||||
"6": {
|
||||
"then": "Akceptowane są monety 1 euro"
|
||||
},
|
||||
"7": {
|
||||
"then": "Akceptowane są monety 2 euro"
|
||||
}
|
||||
},
|
||||
"question": "Jakimi monetami można tutaj zapłacić?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Banknoty 5 euro są akceptowane"
|
||||
},
|
||||
"1": {
|
||||
"then": "Banknoty 10 euro są akceptowane"
|
||||
},
|
||||
"2": {
|
||||
"then": "Banknoty 20 euro są akceptowane"
|
||||
},
|
||||
"3": {
|
||||
"then": "Banknoty 50 euro są akceptowane"
|
||||
},
|
||||
"4": {
|
||||
"then": "Banknoty 100 euro są akceptowane"
|
||||
},
|
||||
"5": {
|
||||
"then": "Banknoty 200 euro są akceptowane"
|
||||
},
|
||||
"6": {
|
||||
"then": "Banknoty 500 euro są akceptowane"
|
||||
}
|
||||
},
|
||||
"question": "Jakimi banknotami można tu zapłacić?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Czy jest jeszcze coś istotnego, czego nie mogłeś podać w poprzednich pytaniach? Dodaj to tutaj.",
|
||||
"questionHint": "Nie powtarzaj już podanych faktów"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Psy dozwolone"
|
||||
},
|
||||
"1": {
|
||||
"then": "Psy <b>nie</b> dozwolone"
|
||||
},
|
||||
"2": {
|
||||
"then": "Psy dozwolone, ale muszą być na smyczy"
|
||||
},
|
||||
"3": {
|
||||
"then": "Psy dozwolone i mogą biegać bez ograniczeń"
|
||||
}
|
||||
},
|
||||
"question": "Czy w tej firmie psy są dozwolone?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Jaki jest adres e-mail do {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "To miejsce ma pętlę indukcyjną audio"
|
||||
},
|
||||
"1": {
|
||||
"then": "To miejsce <b>nie ma</b> pętli indukcyjnej dźwięku"
|
||||
}
|
||||
},
|
||||
"question": "Czy to miejsce ma pętlę indukcyjną dźwięku dla osób niedosłyszących?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "To miejsce oferuje bezprzewodowy dostęp do Internetu"
|
||||
},
|
||||
"1": {
|
||||
"then": "To miejsce <b>nie</b> oferuje dostępu do Internetu"
|
||||
},
|
||||
"2": {
|
||||
"then": "To miejsce oferuje dostęp do Internetu"
|
||||
},
|
||||
"3": {
|
||||
"then": "To miejsce oferuje dostęp do Internetu za pośrednictwem terminala lub komputera"
|
||||
},
|
||||
"4": {
|
||||
"then": "To miejsce oferuje przewodowy dostęp do Internetu"
|
||||
}
|
||||
},
|
||||
"question": "Czy to miejsce oferuje dostęp do Internetu?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "W tym miejscu dostęp do Internetu jest płatny"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dostęp do Internetu jest w tym miejscu bezpłatny"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dostęp do Internetu jest w tym miejscu bezpłatny, tylko dla klientów"
|
||||
}
|
||||
},
|
||||
"question": "Czy dostęp do Internetu jest płatny?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Wprowadź nazwę sieci"
|
||||
},
|
||||
"question": "Jaka jest nazwa sieci dla bezprzewodowego dostępu do Internetu?",
|
||||
"render": "Nazwa sieci to <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Znajduje się pod ziemią"
|
||||
},
|
||||
"1": {
|
||||
"then": "Znajduje się na parterze"
|
||||
},
|
||||
"2": {
|
||||
"then": "Znajduje się na parterze"
|
||||
},
|
||||
"3": {
|
||||
"then": "Znajduje się na pierwszym piętrze"
|
||||
},
|
||||
"4": {
|
||||
"then": "Położone na pierwszym poziomie piwnicy"
|
||||
}
|
||||
},
|
||||
"question": "Na jakim poziomie znajduje się ta funkcja?",
|
||||
"render": "Znajduje się na {level} piętrze"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ten obiekt zarówno emituje światło, jak i jest oświetlany przez zewnętrzne źródło światła"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ten obiekt emituje światło"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ten obiekt jest oświetlony zewnętrznie, np. przez reflektor lub inne światła"
|
||||
},
|
||||
"3": {
|
||||
"then": "Obiekt ten nie emituje światła i nie jest oświetlany z zewnątrz"
|
||||
}
|
||||
},
|
||||
"question": "Czy ten obiekt jest oświetlony lub emituje światło?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Na jakie poziomy jedzie ta winda?",
|
||||
"render": "Ta winda jedzie na piętra {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Jakie są godziny otwarcia {title()}?",
|
||||
"render": "<h3> Godziny otwarcia</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Otwarte 24/7 (również w święta)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tylko po wcześniejszym umówieniu się"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tylko po wcześniejszym umówieniu się"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Płatność gotówkowa jest tutaj dostępna"
|
||||
},
|
||||
"1": {
|
||||
"then": "Płatność kartą jest tutaj dostępna"
|
||||
}
|
||||
},
|
||||
"question": "Jakie metody płatności są tutaj dostępne?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Płatność odbywa się za pomocą dedykowanej aplikacji"
|
||||
},
|
||||
"1": {
|
||||
"then": "Płatność odbywa się za pomocą karty członkowskiej"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Monety są tutaj akceptowane"
|
||||
},
|
||||
"1": {
|
||||
"then": "Banknoty są tutaj akceptowane"
|
||||
},
|
||||
"2": {
|
||||
"then": "Akceptowane są tutaj karty debetowe"
|
||||
},
|
||||
"3": {
|
||||
"then": "Akceptowane są tutaj karty kredytowe"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Jaki jest numer telefonu do {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "W budynku znajduje się wiele gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia"
|
||||
},
|
||||
"1": {
|
||||
"then": "W budynku znajduje się kilka gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia"
|
||||
},
|
||||
"2": {
|
||||
"then": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów, ale mogą zostać one udostępnione po spytaniu obsługi"
|
||||
},
|
||||
"3": {
|
||||
"then": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów"
|
||||
}
|
||||
},
|
||||
"question": "Czy w tym przybytku znajdują się gniazdka elektryczne, gdzie klienci mogą naładować swoje urządzenia?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Palenie jest <b>dozwolone</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Palenie jest <b>zakazane</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Palenie jest <b>dozwolone na zewnątrz</b>."
|
||||
}
|
||||
},
|
||||
"question": "Czy w {title()} wolno palić?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Jaka jest strona internetowa {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "W tym miejscu zainstalowane zostały udogodnienia dla osób na wózkach inwalidzkich"
|
||||
},
|
||||
"1": {
|
||||
"then": "To miejsce jest łatwo dostępne dla osób na wózkach inwalidzkich"
|
||||
},
|
||||
"2": {
|
||||
"then": "To miejsce jest dostępne dla osób na wózkach inwalidzkich, ale z pewnymi trudnościami"
|
||||
},
|
||||
"3": {
|
||||
"then": "To miejsce jest niedostępne dla osób na wózkach inwalidzkich"
|
||||
}
|
||||
},
|
||||
"question": "Czy to miejsce jest dostępne dla osób na wózkach inwalidzkich?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Link do strony Wikipedii nie został jeszcze określony"
|
||||
},
|
||||
"1": {
|
||||
"then": "Link do strony Wikipedii nie został jeszcze określony"
|
||||
}
|
||||
},
|
||||
"question": "Jaki jest powiązany obiekt Wikidata?"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -811,6 +811,194 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Ainda há algo de relevante que não tenha podido dar nas perguntas anteriores? Adicione-o aqui.",
|
||||
"questionHint": "Não repita factos já declarados"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Os cães são permitidos"
|
||||
},
|
||||
"1": {
|
||||
"then": "Os cães <b>não</b> são permitidos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Os cães são permitidos, mas têm de ser presos pela trela"
|
||||
},
|
||||
"3": {
|
||||
"then": "Os cães são permitidos e podem correr livremente"
|
||||
}
|
||||
},
|
||||
"question": "Os cães são permitidos neste estabelecimento?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Qual é o endereço de e-mail de {title()}?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar tem acesso à Internet sem fios"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar <b>não</b> tem acesso à Internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Este lugar tem acesso à Internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar tem acesso à Internet através de um terminal ou computador"
|
||||
},
|
||||
"4": {
|
||||
"then": "Este lugar tem acesso à Internet com fios/por cabo"
|
||||
}
|
||||
},
|
||||
"question": "Este lugar tem acesso à Internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tem de se pagar para utilizar o acesso à Internet neste local"
|
||||
},
|
||||
"1": {
|
||||
"then": "O acesso à Internet é gratuito neste local"
|
||||
},
|
||||
"2": {
|
||||
"then": "O acesso à Internet é gratuito neste local, apenas para clientes"
|
||||
}
|
||||
},
|
||||
"question": "Tem de se pagar para utilizar o acesso à Internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Introduza o nome da rede"
|
||||
},
|
||||
"question": "Qual é o nome da rede para o acesso sem fios à Internet?",
|
||||
"render": "O nome da rede é <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Está no subsolo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Está ao nível do rés-do-chão"
|
||||
},
|
||||
"2": {
|
||||
"then": "Está ao nível do rés-do-chão"
|
||||
},
|
||||
"3": {
|
||||
"then": "Está no primeiro andar"
|
||||
},
|
||||
"4": {
|
||||
"then": "Localizado no primeiro nível da cave"
|
||||
}
|
||||
},
|
||||
"question": "Em que nível se encontra este elemento?",
|
||||
"render": "Está no {level}º andar"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Para que pisos vai este elevador?",
|
||||
"render": "Este elevador vai para os pisos {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Qual é o horário de funcionamento de {title()}?",
|
||||
"render": "<h3>Horário de funcionamento</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aceitam pagamento com dinheiro aqui"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aceitam pagamento com cartões bancários aqui"
|
||||
}
|
||||
},
|
||||
"question": "Que métodos de pagamento são aceites aqui?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "O pagamento é feito utilizando uma aplicação dedicada"
|
||||
},
|
||||
"1": {
|
||||
"then": "O pagamento é feito usando um cartão de membro"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Qual é o número de telefone de {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Há muitas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos"
|
||||
},
|
||||
"1": {
|
||||
"then": "Há algumas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Não há tomadas elétricas disponíveis para clientes sentados no interior, mas pode-se pedir aos funcionários para carregar dispositivos eletrónicos"
|
||||
},
|
||||
"3": {
|
||||
"then": "Não há tomadas elétricas disponíveis para clientes sentados no interior"
|
||||
}
|
||||
},
|
||||
"question": "Esta infraestrutura tem tomadas elétricas, disponíveis para os clientes quando estão no interior?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "<b>É permitido</b> fumar"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>Não é permitido</b> fumar"
|
||||
},
|
||||
"2": {
|
||||
"then": "É permitido fumar <b>no exterior</b>."
|
||||
}
|
||||
},
|
||||
"question": "É permitido fumar em {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Qual é o sítio web de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar está especialmente adaptado para utilizadores de cadeira de rodas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar é de fácil acesso com uma cadeira de rodas"
|
||||
},
|
||||
"2": {
|
||||
"then": "É possível chegar a este local em cadeira de rodas, mas não é fácil"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar não é acessível com uma cadeira de rodas"
|
||||
}
|
||||
},
|
||||
"question": "Este lugar é acessível a utilizadores de cadeiras de rodas?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ainda não foi vinculada nenhuma página da Wikipédia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ainda não foi vinculada nenhuma página da Wikipédia"
|
||||
}
|
||||
},
|
||||
"question": "Qual é a entidade Wikidata correspondente?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tree_node": {
|
||||
"presets": {
|
||||
"0": {
|
||||
|
|
|
@ -619,6 +619,73 @@
|
|||
"render": "Bicicleta fantasma"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Ainda há algo de relevante que não pôde dar nas perguntas anteriores? Adicione aqui.",
|
||||
"questionHint": " Não repita fatos já declarados"
|
||||
},
|
||||
"email": {
|
||||
"question": "Qual o endereço de e-mail de {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Localizado no subsolo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Localizado no térreo"
|
||||
},
|
||||
"2": {
|
||||
"then": "Localizado no térreo"
|
||||
},
|
||||
"3": {
|
||||
"then": "Localizado no primeiro andar"
|
||||
}
|
||||
},
|
||||
"question": "Em que nível esse recurso está localizado?",
|
||||
"render": "Localizado no {level}o andar"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Qual o horário de funcionamento de {title()}?",
|
||||
"render": "<h3>Horário de funcionamento</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dinheiro é aceito aqui"
|
||||
},
|
||||
"1": {
|
||||
"then": "Cartões de pagamento são aceitos aqui"
|
||||
}
|
||||
},
|
||||
"question": "Quais métodos de pagamento são aceitos aqui?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Qual o número de telefone de {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Qual o site de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar é especialmente adaptado para usuários de cadeira de rodas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar é facilmente acessível com uma cadeira de rodas"
|
||||
},
|
||||
"2": {
|
||||
"then": "É possível chegar a esse local em uma cadeira de rodas, mas não é fácil"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar não é alcançável com uma cadeira de rodas"
|
||||
}
|
||||
},
|
||||
"question": "Este lugar é acessível com uma cadeira de rodas?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tree_node": {
|
||||
"name": "Árvore",
|
||||
"presets": {
|
||||
|
|
|
@ -1527,6 +1527,96 @@
|
|||
"render": "Книжный шкаф"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Есть ли ещё что-то важное, о чём вы не смогли рассказать в предыдущих вопросах? Добавьте это здесь.",
|
||||
"questionHint": "Не повторяйте уже изложенные факты"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Собаки разрешены"
|
||||
},
|
||||
"1": {
|
||||
"then": "С собаками <b>не</b> впускают"
|
||||
},
|
||||
"2": {
|
||||
"then": "Собак впускают, но на поводке"
|
||||
},
|
||||
"3": {
|
||||
"then": "Собак свободно впускают"
|
||||
}
|
||||
},
|
||||
"question": "Впускают ли собак в это здание?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Какой адрес электронной почты у {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Расположено под землей"
|
||||
},
|
||||
"1": {
|
||||
"then": "Расположено на первом этаже"
|
||||
},
|
||||
"2": {
|
||||
"then": "Расположено на первом этаже"
|
||||
},
|
||||
"3": {
|
||||
"then": "Расположено на первом этаже"
|
||||
}
|
||||
},
|
||||
"question": "На каком этаже находится этот объект?",
|
||||
"render": "Расположено на {level}ом этаже"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Какое время работы у {title()}?",
|
||||
"render": "<h3>Часы работы</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Здесь принимают наличными"
|
||||
},
|
||||
"1": {
|
||||
"then": "Здесь принимают банковские карты"
|
||||
}
|
||||
},
|
||||
"question": "Какие способы оплаты здесь принимают?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Какой номер телефона у {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Какой сайт у {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Это место подходит для людей на инвалидной коляске"
|
||||
},
|
||||
"1": {
|
||||
"then": "До этого места легко добраться на инвалидной коляске"
|
||||
},
|
||||
"2": {
|
||||
"then": "До этого места можно добраться, но не просто"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Никакой страницы на Википедии не было прикреплено"
|
||||
},
|
||||
"1": {
|
||||
"then": "Никакой страницы на Википедии не было прикреплено"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"shops": {
|
||||
"description": "Магазин",
|
||||
"name": "Магазин",
|
||||
|
|
|
@ -123,6 +123,84 @@
|
|||
"render": "Defibrilator"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Ali je še kaj pomembnega, česar niste mogli povedati v prejšnjih vprašanjih? Dopišite tukaj.",
|
||||
"questionHint": "Ne ponavljajte že navedenih dejstev"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Psi so dovoljeni"
|
||||
},
|
||||
"1": {
|
||||
"then": "Psi <b>niso</b> dovoljeni"
|
||||
},
|
||||
"2": {
|
||||
"then": "Psi so dovoljeni, vendar morajo biti na povodcu"
|
||||
},
|
||||
"3": {
|
||||
"then": "Psi so dovoljeni in lahko prosto tekajo naokoli"
|
||||
}
|
||||
},
|
||||
"question": "Ali so v tem podjetju dovoljeni psi?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Kakšen naslov elektronske pošte ima {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nahaja se pod zemljo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nahaja se v pritličju"
|
||||
},
|
||||
"2": {
|
||||
"then": "Nahaja se v pritličju"
|
||||
},
|
||||
"3": {
|
||||
"then": "Nahaja se v prvem nadstropju"
|
||||
},
|
||||
"4": {
|
||||
"then": "Nahaja se v prvi kletni etaži"
|
||||
}
|
||||
},
|
||||
"render": "Nahaja se v {level}. nadstropju"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Kakšen odpiralni čas ima {title()}?",
|
||||
"render": "<h3>Odpiralni čas</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tu sprejemajo gotovino"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tukaj sprejemajo plačilne kartice"
|
||||
}
|
||||
},
|
||||
"question": "Kateri načini plačila so možni tu?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Plačilo se opravi z namensko aplikacijo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Plačilo se izvede s člansko izkaznico"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Kakšno telefonsko številko ima {title()}?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"windturbine": {
|
||||
"tagRenderings": {
|
||||
"windturbine-fixme": {
|
||||
|
|
|
@ -24,5 +24,117 @@
|
|||
"title": {
|
||||
"render": "Spökcykel"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "Finns det fortfarande någonting relevant som du inte kunde ge i de föregående frågorna? Lägg till det här.",
|
||||
"questionHint": "Repetera inte redan angivna fakta"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hundar tillåts"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hundar tillåts <b>inte</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hundar tillåts, men de måste vara kopplade"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hundar tillåts och får springa fritt omkring"
|
||||
}
|
||||
},
|
||||
"question": "Tillåts hundar i den här affären?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Vad är e-postadressen till {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ligger under jorden"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ligger på bottenvåningen"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ligger på bottenvåningen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Ligger på första våningen"
|
||||
}
|
||||
},
|
||||
"question": "På vilken nivå finns den här funktionen?",
|
||||
"render": "Ligger på {level}:e våningen"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Vilka är öppettiderna för {title()}?",
|
||||
"render": "<h3>Öppettider</h3> {opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pengar accepteras här"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalningskort accepteras här"
|
||||
}
|
||||
},
|
||||
"question": "Vilka betalningsmetoder accepteras här?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Vad är telefonnumret till {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det finns gott om hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik"
|
||||
},
|
||||
"1": {
|
||||
"then": "Det finns ett fåtal hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det finns inga uttag tillgängliga inomhus för kunder, men att ladda kan vara möjligt om personalen tillfrågas"
|
||||
},
|
||||
"3": {
|
||||
"then": "Det finns inga hushållsuttag tillgängliga för kunder som sitter inomhus"
|
||||
}
|
||||
},
|
||||
"question": "Har den här bekvämligheten eluttag tillgängliga för kunder när de är inne?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Vad är webbplatsen för {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det här stället är speciellt anpassat för rullstolsburna användare"
|
||||
},
|
||||
"1": {
|
||||
"then": "Denna plats är lätt att nå med rullstol"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det är möjligt att nå den här platsen i en rullstol, men det är inte lätt"
|
||||
},
|
||||
"3": {
|
||||
"then": "Den här platsen kan inte nås med en rullstol"
|
||||
}
|
||||
},
|
||||
"question": "Är det här stället tillgängligt med en rullstol?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ingen Wikipedia-sida har länkats än"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ingen Wikipedia-sida har länkats än"
|
||||
}
|
||||
},
|
||||
"question": "Vad är den motsvarande Wikidata-enheten?"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -252,5 +252,73 @@
|
|||
},
|
||||
"render": "自行车咖啡"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "允许犬只"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>不</b>允许犬只"
|
||||
},
|
||||
"2": {
|
||||
"then": "允许犬只,但必须拴绳"
|
||||
},
|
||||
"3": {
|
||||
"then": "允许犬只,且可自由放养"
|
||||
}
|
||||
},
|
||||
"question": "犬只是否在这个商业体中允许?"
|
||||
},
|
||||
"email": {
|
||||
"question": "{title()} 的电子邮箱地址为何?"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "{title()} 的开放时间为何?",
|
||||
"render": "<h3>开放时间</h3> {opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "可用现金"
|
||||
},
|
||||
"1": {
|
||||
"then": "可用信用卡"
|
||||
}
|
||||
},
|
||||
"question": "这里支持哪些支付方式?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "使用专用APP支付"
|
||||
},
|
||||
"1": {
|
||||
"then": "使用会员卡支付"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "{title()} 的电话号码为何?"
|
||||
},
|
||||
"website": {
|
||||
"question": "{title()} 的网站为何?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "尚未有连接到的维基百科页面"
|
||||
},
|
||||
"1": {
|
||||
"then": "尚未有连接到的维基百科页面"
|
||||
}
|
||||
},
|
||||
"question": "在Wikidata上对应的实体是什么?"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -598,6 +598,142 @@
|
|||
"render": "郵局"
|
||||
}
|
||||
},
|
||||
"questions": {
|
||||
"tagRenderings": {
|
||||
"description": {
|
||||
"question": "有什麼相關的資訊你無法在先前的問題回應的嗎?請加在這邊吧。",
|
||||
"questionHint": "不要重覆答覆已經知道的事情"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "允許犬隻"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>不</b>允許犬隻"
|
||||
},
|
||||
"2": {
|
||||
"then": "允許犬隻,但需要掛牽繩"
|
||||
},
|
||||
"3": {
|
||||
"then": "允許犬隻而且可以自由跑動"
|
||||
}
|
||||
},
|
||||
"question": "這間商業空間是否允許犬隻?"
|
||||
},
|
||||
"email": {
|
||||
"question": "{title()} 的電子郵件地址是什麼?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "位於地下"
|
||||
},
|
||||
"1": {
|
||||
"then": "位於 1 樓"
|
||||
},
|
||||
"2": {
|
||||
"then": "位於 1 樓"
|
||||
},
|
||||
"3": {
|
||||
"then": "位於 2 樓"
|
||||
},
|
||||
"4": {
|
||||
"then": "位於地下一樓"
|
||||
}
|
||||
},
|
||||
"question": "此圖徽位於哪個樓層/層級?",
|
||||
"render": "位於 {level} 樓"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "{title()} 的開放時間是什麼?",
|
||||
"render": "<h3>開放時間</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "24/7 開放 (包括假日)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "這邊接受現金"
|
||||
},
|
||||
"1": {
|
||||
"then": "這邊接受現金卡"
|
||||
}
|
||||
},
|
||||
"question": "這邊接受那種付款方式?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "使用專用應用程式付款"
|
||||
},
|
||||
"1": {
|
||||
"then": "使用會員卡付款"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "{title()} 的電話號碼是什麼?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "這邊的客戶座位有不少個室內插座,而且可以為電器充電"
|
||||
},
|
||||
"1": {
|
||||
"then": "這邊客戶座位有一些室內插座,可以為電器充電"
|
||||
},
|
||||
"2": {
|
||||
"then": "這邊沒有給客戶用的插座,因此可能需要詢問員工是否能充電"
|
||||
},
|
||||
"3": {
|
||||
"then": "這裡客戶座位沒有室內插座"
|
||||
}
|
||||
},
|
||||
"question": "這個便利設施有電器設備,能給客戶使用嗎?"
|
||||
},
|
||||
"website": {
|
||||
"question": "{title()} 網址是什麼?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "這個地方有特別設計給輪椅使用者"
|
||||
},
|
||||
"1": {
|
||||
"then": "這個地方坐輪椅很容易到達"
|
||||
},
|
||||
"2": {
|
||||
"then": "這個地方可以坐輪椅到達,但並不容易"
|
||||
},
|
||||
"3": {
|
||||
"then": "輪椅無法到達這個地方"
|
||||
}
|
||||
},
|
||||
"question": "這個地方可以坐輪椅到達嗎?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "還沒有連結到維基百科頁面"
|
||||
},
|
||||
"1": {
|
||||
"then": "還沒有連結到維基百科頁面"
|
||||
}
|
||||
},
|
||||
"question": "對應的維基資料項目是?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"usersettings": {
|
||||
"tagRenderings": {
|
||||
"translation-completeness": {
|
||||
|
|
|
@ -1,320 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten monedes de 1 cèntim"
|
||||
},
|
||||
"1": {
|
||||
"then": "S'accepten monedes de 2 cèntims"
|
||||
},
|
||||
"2": {
|
||||
"then": "S'accepten monedes de 5 cèntims"
|
||||
},
|
||||
"3": {
|
||||
"then": "S'accepten monedes de 10 cèntims"
|
||||
},
|
||||
"4": {
|
||||
"then": "S'accepten monedes de 20 cèntims"
|
||||
},
|
||||
"5": {
|
||||
"then": "S'accepten monedes de 50 cèntims"
|
||||
},
|
||||
"6": {
|
||||
"then": "S'accepten monedes de 1 euro"
|
||||
},
|
||||
"7": {
|
||||
"then": "S'accepten monedes de 2 euros"
|
||||
}
|
||||
},
|
||||
"question": "Quines monedes es poden utilitzar per a pagar aquí?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten billets de 5 euros"
|
||||
},
|
||||
"1": {
|
||||
"then": "S'accepten bitllets de 10 euros"
|
||||
},
|
||||
"2": {
|
||||
"then": "S'accepten bitllets de 20 euros"
|
||||
},
|
||||
"3": {
|
||||
"then": "S'accepten bitllets de 50 euros"
|
||||
},
|
||||
"4": {
|
||||
"then": "S'accepten bitllets de 100 euros"
|
||||
},
|
||||
"5": {
|
||||
"then": "S'accepten bitllets de 200 euros"
|
||||
},
|
||||
"6": {
|
||||
"then": "S'accepten bitllets de 500 euros"
|
||||
}
|
||||
},
|
||||
"question": "Amb quins bitllets pot pagar aquí?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Hi ha quelcom rellevant que no t'hem preguntat? Afegeix-ho aquí.",
|
||||
"questionHint": "No repeteixis informació que ja hi és"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten gossos"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> s'accepten gossos"
|
||||
},
|
||||
"2": {
|
||||
"then": "S'accepten gossos però lligats"
|
||||
},
|
||||
"3": {
|
||||
"then": "S'accepten gossos lliures"
|
||||
}
|
||||
},
|
||||
"question": "S'accepten gossos en aquest negoci?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Quina és l'adreça de correu electrònic de {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "El lloc té un bucle magnètic"
|
||||
},
|
||||
"1": {
|
||||
"then": "El lloc <b>no</b> té un bucle magnètic"
|
||||
}
|
||||
},
|
||||
"question": "Aquest lloc té un bucle magnètic per a la gent amb dificultats auditives?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquest lloc ofereix accés a internet inalàmbric"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquest lloc <b>no</b> ofereix accés a internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquest lloc ofereix accés a internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquest lloc ofereix accés a internet a través d'una terminal o ordinador"
|
||||
},
|
||||
"4": {
|
||||
"then": "Aquest lloc ofereix accés a internet per cable"
|
||||
}
|
||||
},
|
||||
"question": "Aquest lloc ofereix accés a internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquí hi ha que pagar per a accedir a internet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí l'accés a internet és gratuït"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí l'accés a internet és gratuït sols per als clients"
|
||||
}
|
||||
},
|
||||
"question": "Hi ha que pagar per a accedir a internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Intruduixca el nom de la xarxa"
|
||||
},
|
||||
"question": "Quin és el nom de la xarxa per a l'accés inalàmbric a internet?",
|
||||
"render": "El nom de la xarxa és <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Acabeu de crear aquest element! Gràcies per compartir aquesta informació amb el mon i ajudar a persones al voltant del món."
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Situat a planta subterrani"
|
||||
},
|
||||
"1": {
|
||||
"then": "Situat a planta zero"
|
||||
},
|
||||
"2": {
|
||||
"then": "Situat a la planta zero"
|
||||
},
|
||||
"3": {
|
||||
"then": "Situat a primera planta"
|
||||
},
|
||||
"4": {
|
||||
"then": "Localitzat a la planta base"
|
||||
}
|
||||
},
|
||||
"question": "A quina planta està situat aquest element?",
|
||||
"render": "Situat a la planta {level}"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquest objecte emet llum i també està il·luminat externament"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquest objecte emet llum"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquest objecte està il·luminat externament, p.e. amb un focus o altres llums"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquest objecte no emet llum i no està il·luminat externament"
|
||||
}
|
||||
},
|
||||
"question": "Aquest objecte està il·luminat o emet llum?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "A quins pisos va aquest ascensor?",
|
||||
"render": "Aquest ascensor va als pisos {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Quin és l'horari d'obertura de {title()}?",
|
||||
"render": "<h3>Horari d'obertura</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Obert 24/7 (incloent-hi festius)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Sols amb cita prèvia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Sols amb cita prèvia"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "S'accepten diners"
|
||||
},
|
||||
"1": {
|
||||
"then": "S'accepten targetes de crèdit"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí es pot pagar amb codi QR"
|
||||
}
|
||||
},
|
||||
"question": "Quins mètodes de pagament s'accepten aquí?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "El pagament es fa amb una app dedicada"
|
||||
},
|
||||
"1": {
|
||||
"then": "El pagament es fa amb una targeta de membre"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Aquí s'accepten monedes"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí s'accepten bitllets"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí s'accepten targetes de dèbit"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquí s'accepten targetes de crèdit"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Quin és el telèfon de {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Està ple d'endolls pels clients de dins, on es poden carregar els aparells electrònics"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hi ha alguns endolls disponibles per als clients de dins, on es poden carregar els aparells electrònics"
|
||||
},
|
||||
"2": {
|
||||
"then": "No hi ha endolls disponibles per als clients però es pot carregar si es demana als responsables"
|
||||
},
|
||||
"3": {
|
||||
"then": "No hi ha endolls disponibles per als clients"
|
||||
}
|
||||
},
|
||||
"question": "Aquest servei té endolls elèctrics, disponibles pels clients quan hi són dins?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Està <b>permès</b> fumar"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> està permés fumar"
|
||||
},
|
||||
"2": {
|
||||
"then": "Està permés fumar <b>a l'exterior</b>."
|
||||
}
|
||||
},
|
||||
"question": "Està permés fumar a {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Quina és la web de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquest lloc està especialment adaptat per a les cadires de rodes"
|
||||
},
|
||||
"1": {
|
||||
"then": "És facilment arribable amb cadira de rodes"
|
||||
},
|
||||
"2": {
|
||||
"then": "És possible fer servir cadira de rodes a aquest lloc però no és fàcil"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquest lloc no és accessible amb cadira de rodes"
|
||||
}
|
||||
},
|
||||
"question": "Aquest lloc és accessible amb cadira de rodes?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "No hi ha cap enllaça a Viquipèdia encara"
|
||||
},
|
||||
"1": {
|
||||
"then": "No hi ha cap enllaça a Viquipèdia encara"
|
||||
}
|
||||
},
|
||||
"question": "Quina és la correspondent entitat a Wikidata?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,310 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Jsou přijímány mince v hodnotě 1 centu"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou přijímány mince v hodnotě 2 centů"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jsou přijímány mince v hodnotě 5 centů"
|
||||
},
|
||||
"3": {
|
||||
"then": "Jsou přijímány mince v hodnotě 10 centů"
|
||||
},
|
||||
"4": {
|
||||
"then": "Jsou přijímány mince v hodnotě 20 centů"
|
||||
},
|
||||
"5": {
|
||||
"then": "Jsou přijímány mince v hodnotě 50 centů"
|
||||
},
|
||||
"6": {
|
||||
"then": "Jsou přijímány mince v hodnotě 1 eura"
|
||||
},
|
||||
"7": {
|
||||
"then": "Jsou přijímány mince v hodnotě 2 euro"
|
||||
}
|
||||
},
|
||||
"question": "Jakými mincemi zde lze platit?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 5 euro"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 10 euro"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 20 euro"
|
||||
},
|
||||
"3": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 50 euro"
|
||||
},
|
||||
"4": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 100 euro"
|
||||
},
|
||||
"5": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 200 euro"
|
||||
},
|
||||
"6": {
|
||||
"then": "Jsou přijímány bankovky v hodnotě 500 euro"
|
||||
}
|
||||
},
|
||||
"question": "Jakými bankovkami zde lze platit?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Je ještě něco relevantního, co jste nemohli uvést v předchozích otázkách? Přidejte to sem.",
|
||||
"questionHint": "Neopakujte již uvedená fakta"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Psi jsou povoleni"
|
||||
},
|
||||
"1": {
|
||||
"then": "Psi <b>nejsou</b> povoleni"
|
||||
},
|
||||
"2": {
|
||||
"then": "Psi jsou povoleni, ale musí být na vodítku"
|
||||
},
|
||||
"3": {
|
||||
"then": "Psi mají vstup povolen a mohou volně pobíhat"
|
||||
}
|
||||
},
|
||||
"question": "Jsou v tomto podniku povoleni psi?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Jaká je e-mailová adresa {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Toto místo má zvukovou indukční smyčku"
|
||||
},
|
||||
"1": {
|
||||
"then": "Toto místo <b>nemá indukční zvukovou smyčku</b>"
|
||||
}
|
||||
},
|
||||
"question": "Má toto místo zvukovou indukční smyčku pro osoby se sluchovým postižením?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Toto místo nabízí bezdrátové připojení k internetu"
|
||||
},
|
||||
"1": {
|
||||
"then": "Toto místo <b>neposkytuje</b> připojení k internetu"
|
||||
},
|
||||
"2": {
|
||||
"then": "Toto místo nabízí přístup k internetu"
|
||||
},
|
||||
"3": {
|
||||
"then": "Toto místo nabízí přístup k internetu prostřednictvím terminálu nebo počítače"
|
||||
},
|
||||
"4": {
|
||||
"then": "Toto místo nabízí kabelové připojení k internetu"
|
||||
}
|
||||
},
|
||||
"question": "Nabízí toto místo připojení k internetu?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Přístup na internet je zde zpoplatněn"
|
||||
},
|
||||
"1": {
|
||||
"then": "Přístup k internetu je zde zdarma"
|
||||
},
|
||||
"2": {
|
||||
"then": "Přístup k internetu je na tomto místě zdarma, pouze pro zákazníky"
|
||||
}
|
||||
},
|
||||
"question": "Je přístup na internet zpoplatněn?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Zadejte název sítě"
|
||||
},
|
||||
"question": "Jaký je název sítě pro bezdrátový přístup k internetu?",
|
||||
"render": "Název sítě je <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nachází se v podzemí"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nachází se v přízemí"
|
||||
},
|
||||
"2": {
|
||||
"then": "Nachází se v přízemí"
|
||||
},
|
||||
"3": {
|
||||
"then": "Nachází se v prvním patře"
|
||||
},
|
||||
"4": {
|
||||
"then": "Nachází se v prvním suterénu"
|
||||
}
|
||||
},
|
||||
"question": "V jaké úrovni se tento prvek nachází?",
|
||||
"render": "Nachází se v {level}. patře"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tento objekt vyzařuje světlo a je osvětlen vnějším zdrojem světla"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tento objekt vyzařuje světlo"
|
||||
},
|
||||
"2": {
|
||||
"then": "Tento objekt je osvětlen zvenčí, např. pomocí reflektoru nebo jiných světel"
|
||||
},
|
||||
"3": {
|
||||
"then": "Tento objekt nevyzařuje světlo a není osvětlen zvenčí"
|
||||
}
|
||||
},
|
||||
"question": "Je tento objekt osvětlený nebo vyzařuje světlo?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Do jakých podlaží tento výtah jezdí?",
|
||||
"render": "Tento výtah jede do {level} patra"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Jaká je otevírací doba {title()}?",
|
||||
"render": "<h3>Otevírací hodiny</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Otevřeno 24/7 (včetně svátků)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pouze po domluvě"
|
||||
},
|
||||
"1": {
|
||||
"then": "Pouze po domluvě"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Přijímá se zde hotovost"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou zde přijímány platební karty"
|
||||
}
|
||||
},
|
||||
"question": "Jaké platební metody jsou zde přijímány?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Platba se provádí pomocí speciální aplikace"
|
||||
},
|
||||
"1": {
|
||||
"then": "Platba se provádí pomocí členské karty"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Jsou zde přijímány mince"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jsou zde přijímány bankovky"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jsou zde přijímány debetní karty"
|
||||
},
|
||||
"3": {
|
||||
"then": "Jsou zde přijímány kreditní karty"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Jaké je telefonní číslo {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "V interiéru je k dispozici dostatek domácích zásuvek, kde si zákazníci mohou nabíjet elektroniku"
|
||||
},
|
||||
"1": {
|
||||
"then": "V interiéru je zákazníkům k dispozici několik domácích zásuvek, kde si mohou nabít elektroniku"
|
||||
},
|
||||
"2": {
|
||||
"then": "V interiéru nejsou zákazníkům k dispozici žádné zásuvky, ale na požádání personálu je možné je nabíjet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Zákazníci v interiéru nemají k dispozici žádné domácí zásuvky"
|
||||
}
|
||||
},
|
||||
"question": "Má toto zařízení elektrické zásuvky, které jsou zákazníkům k dispozici, když jsou uvnitř?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kouření je <b>povoleno</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kouření <b>není povoleno</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Kouření je <b>povoleno venku</b>."
|
||||
}
|
||||
},
|
||||
"question": "Je na {title()} povoleno kouřit?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Jaká je webová stránka {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Toto místo je speciálně upraveno pro vozíčkáře"
|
||||
},
|
||||
"1": {
|
||||
"then": "Toto místo je snadno dosažitelné s invalidním vozíkem"
|
||||
},
|
||||
"2": {
|
||||
"then": "Na toto místo je možné se dostat na invalidním vozíku, ale není to snadné"
|
||||
},
|
||||
"3": {
|
||||
"then": "Na toto místo se nelze dostat s invalidním vozíkem"
|
||||
}
|
||||
},
|
||||
"question": "Je toto místo přístupné pro vozíčkáře?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Žádná stránka na Wikipedii zatím nebyla propojena"
|
||||
},
|
||||
"1": {
|
||||
"then": "Žádná stránka na Wikipedii zatím nebyla propojena"
|
||||
}
|
||||
},
|
||||
"question": "Jaká je odpovídající entita Wikidata?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,199 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Er der stadig noget relevant, du ikke kunne give i de foregående spørgsmål? Tilføj det her.",
|
||||
"questionHint": "Gentag ikke allerede nævnte fakta"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hunde er tilladt"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hunde er <b>ikke </b> tilladt"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hunde er tilladt, men de skal være i snor"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hunde er tilladt og kan løbe frit rundt"
|
||||
}
|
||||
},
|
||||
"question": "Er hunde tilladt i denne virksomhed?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Hvad er mailadressen på {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette sted har en lydinduktionssløjfe"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette sted <b>har ikke</b> en lydinduktionssløjfe"
|
||||
}
|
||||
},
|
||||
"question": "Har dette sted en lydinduktionssløjfe til personer med nedsat hørelse?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette sted tilbyder trådløs internetadgang"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette sted <b>tilbyder ikke</b> internetadgang"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dette sted tilbyder internetadgang"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette sted tilbyder internetadgang via en terminal eller computer"
|
||||
},
|
||||
"4": {
|
||||
"then": "Dette sted tilbyder internetadgang via kabel"
|
||||
}
|
||||
},
|
||||
"question": "Tilbyder dette sted internetadgang?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der er et gebyr for internetadgang på dette sted"
|
||||
},
|
||||
"1": {
|
||||
"then": "Internetadgang er gratis på dette sted"
|
||||
},
|
||||
"2": {
|
||||
"then": "Internetadgang er gratis på dette sted, kun for kunder"
|
||||
}
|
||||
},
|
||||
"question": "Er der et gebyr for internetadgang?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Indtast netværksnavnet"
|
||||
},
|
||||
"question": "Hvad er netværksnavnet for den trådløse internetadgang?",
|
||||
"render": "Netværksnavnet er <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Placeret under jorden"
|
||||
},
|
||||
"1": {
|
||||
"then": "Beliggende i stueetagen"
|
||||
},
|
||||
"2": {
|
||||
"then": "Beliggende i stueetagen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Beliggende på første sal"
|
||||
},
|
||||
"4": {
|
||||
"then": "Beliggende på første kælderetage"
|
||||
}
|
||||
},
|
||||
"question": "På hvilket niveau er denne funktion placeret?",
|
||||
"render": "Beliggende på {level}. etage"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Hvilke niveauer går denne elevator til?",
|
||||
"render": "Denne elevator går til etager {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Hvad er åbningstiderne for {title()}?",
|
||||
"render": "<h3> Åbningstider</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Her modtages kontanter"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalingskort accepteres her"
|
||||
}
|
||||
},
|
||||
"question": "Hvilke betalingsmetoder accepteres her?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Betaling sker ved hjælp af en dedikeret app"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betaling sker med medlemskort"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Hvad er telefonnummeret til {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der er masser af stikkontakter til rådighed for kunder, der sidder indendørs, hvor de kan oplade deres elektroniske udstyr"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der er nogle få stikkontakter til rådighed for kunder, der sidder indendørs, hvor de kan oplade deres elektroniske udstyr"
|
||||
},
|
||||
"2": {
|
||||
"then": "Der er ingen stikkontakter til rådighed indendørs for kunderne, men opladning kan være mulig, hvis man beder personalet om det"
|
||||
},
|
||||
"3": {
|
||||
"then": "Der er ingen stikkontakter til rådighed for kunder, der sidder indendørs"
|
||||
}
|
||||
},
|
||||
"question": "Har denne faciliteter stikkontakter tilgængelige for kunder, når de er inde?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Rygning er <b>tilladt</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Rygning er <b>ikke tilladt</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Rygning er <b>tilladt udenfor</b>."
|
||||
}
|
||||
},
|
||||
"question": "Er det tilladt at ryge på {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Hvad er webstedet for {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette sted er specielt indrettet til kørestolsbrugere"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette sted er let tilgængeligt med en kørestol"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det er muligt at komme til dette sted med en kørestol, men det er ikke let"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette sted er ikke tilgængeligt med kørestol"
|
||||
}
|
||||
},
|
||||
"question": "Er stedet tilgængeligt med en kørestol?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der er endnu ikke linket til nogen Wikipedia-side"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der er endnu ikke linket til nogen Wikipedia-side"
|
||||
}
|
||||
},
|
||||
"question": "Hvad er den tilsvarende Wikidata-enhed?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,327 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"1": {
|
||||
"then": "2-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"2": {
|
||||
"then": "5-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"3": {
|
||||
"then": "10-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"4": {
|
||||
"then": "20-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"5": {
|
||||
"then": "50-Cent-Münzen werden akzeptiert"
|
||||
},
|
||||
"6": {
|
||||
"then": "1-Euro-Münzen werden akzeptiert"
|
||||
},
|
||||
"7": {
|
||||
"then": "2-Euro-Münzen werden akzeptiert"
|
||||
}
|
||||
},
|
||||
"question": "Mit welchen Münzen kann man hier bezahlen?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "5-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"1": {
|
||||
"then": "10-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"2": {
|
||||
"then": "20-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"3": {
|
||||
"then": "50-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"4": {
|
||||
"then": "100-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"5": {
|
||||
"then": "200-Euro-Scheine werden angenommen"
|
||||
},
|
||||
"6": {
|
||||
"then": "500-Euro-Scheine werden angenommen"
|
||||
}
|
||||
},
|
||||
"question": "Mit welchen Banknoten kann man hier bezahlen?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Gibt es noch etwas, das die vorhergehenden Fragen nicht abgedeckt haben? Hier wäre Platz dafür.",
|
||||
"questionHint": "Bitte keine bereits erhobenen Informationen wiederholen"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hunde sind hier erlaubt"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hunde sind hier <b>nicht</b> erlaubt"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hunde sind hier erlaubt, müssen aber angeleint sein"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hunde sind hier erlaubt und können frei herumlaufen"
|
||||
}
|
||||
},
|
||||
"question": "Sind Hunde hier erlaubt?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Wie lautet die Mail-Adresse von {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dieser Ort hat eine induktive Höranlage"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dieser Ort hat <b>keine</b> induktive Höranlage"
|
||||
}
|
||||
},
|
||||
"question": "Hat dieser Ort eine induktive Höranlage für Hörgeschädigte?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dieser Ort bietet drahtlosen Internetzugang"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dieser Ort bietet <b>keinen</b> Internetzugang"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dieser Ort bietet Internetzugang"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dieser Ort bietet Internetzugang über ein Terminal oder einen Computer"
|
||||
},
|
||||
"4": {
|
||||
"then": "Dieser Ort bietet kabelgebundenen Internetzugang"
|
||||
}
|
||||
},
|
||||
"question": "Bietet dieser Ort Internetzugang?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der Internetzugang ist an diesem Ort gebührenpflichtig"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der Internetzugang ist an diesem Ort kostenlos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Der Internetzugang ist an diesem Ort kostenlos, aber nur für Kunden"
|
||||
}
|
||||
},
|
||||
"question": "Wird für den Internetzugang eine Gebühr erhoben?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Geben Sie den Netzwerknamen ein"
|
||||
},
|
||||
"question": "Wie lautet der Netzwerkname für den drahtlosen Internetzugang?",
|
||||
"render": "Der Netzwerkname lautet <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Sie haben gerade dieses Element erstellt! Vielen Dank, dass Sie diese Informationen mit der Welt teilen und Menschen weltweit helfen."
|
||||
}
|
||||
}
|
||||
},
|
||||
"last_edit": {
|
||||
"render": {
|
||||
"special": {
|
||||
"text": "Zuletzt bearbeitet am {_last_edit:timestamp} von {_last_edit:contributor}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Das Objekt befindet sich unter der Erde"
|
||||
},
|
||||
"1": {
|
||||
"then": "Das Objekt befindet sich im Erdgeschoss"
|
||||
},
|
||||
"2": {
|
||||
"then": "Das Objekt befindet sich im Erdgeschoss"
|
||||
},
|
||||
"3": {
|
||||
"then": "Das Objekt befindet sich im 1. Obergeschoss"
|
||||
},
|
||||
"4": {
|
||||
"then": "Das Objekt befindet sich im 1. Untergeschoss"
|
||||
}
|
||||
},
|
||||
"question": "Auf welcher Ebene befindet sich das Objekt?",
|
||||
"render": "Das Objekt befindet sich im {level}. Geschoss"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Das Objekt leuchtet selbst und wird von außen beleuchtet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Das Objekt leuchtet selbst"
|
||||
},
|
||||
"2": {
|
||||
"then": "Das Objekt wird von außen beleuchtet, z. B. durch Scheinwerfer oder andere Lichter"
|
||||
},
|
||||
"3": {
|
||||
"then": "Das Objekt wird weder von außen beleuchtet, noch leuchtet es selbst"
|
||||
}
|
||||
},
|
||||
"question": "Wird das Objekt beleuchtet oder leuchtet es selbst?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Auf welchen Geschossen hält dieser Aufzug?",
|
||||
"render": "Der Aufzug hält auf den Geschossen {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Wie lauten die Öffnungszeiten von {title()}?",
|
||||
"render": "<h3>Öffnungszeiten</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "durchgehend geöffnet (auch an Feiertagen)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nur nach Vereinbarung"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nur nach Vereinbarung"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hier wird Bargeld akzeptiert"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hier wird Kartenzahlung akzeptiert"
|
||||
},
|
||||
"2": {
|
||||
"then": "Die Bezahlung per QR-Code ist hier möglich"
|
||||
}
|
||||
},
|
||||
"question": "Welche Zahlungsmethoden werden hier akzeptiert?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Die Bezahlung erfolgt über eine spezielle App"
|
||||
},
|
||||
"1": {
|
||||
"then": "Die Bezahlung erfolgt mit einer Mitgliedskarte"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Münzen werden hier akzeptiert"
|
||||
},
|
||||
"1": {
|
||||
"then": "Geldscheine werden hier akzeptiert"
|
||||
},
|
||||
"2": {
|
||||
"then": "Debitkarten werden hier akzeptiert"
|
||||
},
|
||||
"3": {
|
||||
"then": "Kreditkarten werden hier akzeptiert"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Wie lautet die Telefonnummer von {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Im Innenraum stehen viele Steckdosen zur Verfügung, an denen Kunden ihre Geräte laden können"
|
||||
},
|
||||
"1": {
|
||||
"then": "Im Innenraum stehen nur wenige Steckdosen zur Verfügung, an denen Kunden ihre Geräte laden können"
|
||||
},
|
||||
"2": {
|
||||
"then": "Im Innenraum stehen keine Steckdosen zur Verfügung, aber Laden von Geräte könnte möglich sein, wenn das Personal gefragt wird"
|
||||
},
|
||||
"3": {
|
||||
"then": "Im Innenraum stehen keine Steckdosen für Kunden zur Verfügung"
|
||||
}
|
||||
},
|
||||
"question": "Gibt es hier Steckdosen, an denen Kunden ihre Geräte laden können?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Rauchen ist <b>erlaubt</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Rauchen ist <b>nicht erlaubt</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Rauchen ist <b> draußen erlaubt</b>."
|
||||
}
|
||||
},
|
||||
"question": "Ist das Rauchen in {title()} erlaubt?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Wie lautet die Webseite von {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Der Ort ist speziell für Rollstuhlfahrer gestaltet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Der Ort ist rollstuhlzugänglich gestaltet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Der Ort ist nur eingeschränkt rollstuhlzugänglich"
|
||||
},
|
||||
"3": {
|
||||
"then": "Der Ort ist nicht rollstuhlzugänglich"
|
||||
}
|
||||
},
|
||||
"question": "Ist der Ort rollstuhlzugänglich?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Es wurde noch keine Wikipedia-Seite verlinkt"
|
||||
},
|
||||
"1": {
|
||||
"then": "Es wurde noch keine Wikipedia-Seite verlinkt"
|
||||
}
|
||||
},
|
||||
"question": "Wie lautet das zugehörige Wikidata Element?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,327 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1 cent coins are accepted"
|
||||
},
|
||||
"1": {
|
||||
"then": "2 cent coins are accepted"
|
||||
},
|
||||
"2": {
|
||||
"then": "5 cent coins are accepted"
|
||||
},
|
||||
"3": {
|
||||
"then": "10 cent coins are accepted"
|
||||
},
|
||||
"4": {
|
||||
"then": "20 cent coins are accepted"
|
||||
},
|
||||
"5": {
|
||||
"then": "50 cent coins are accepted"
|
||||
},
|
||||
"6": {
|
||||
"then": "1 euro coins are accepted"
|
||||
},
|
||||
"7": {
|
||||
"then": "2 euro coins are accepted"
|
||||
}
|
||||
},
|
||||
"question": "What coins can you use to pay here?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "5 euro notes are accepted"
|
||||
},
|
||||
"1": {
|
||||
"then": "10 euro notes are accepted"
|
||||
},
|
||||
"2": {
|
||||
"then": "20 euro notes are accepted"
|
||||
},
|
||||
"3": {
|
||||
"then": "50 euro notes are accepted"
|
||||
},
|
||||
"4": {
|
||||
"then": "100 euro notes are accepted"
|
||||
},
|
||||
"5": {
|
||||
"then": "200 euro notes are accepted"
|
||||
},
|
||||
"6": {
|
||||
"then": "500 euro notes are accepted"
|
||||
}
|
||||
},
|
||||
"question": "what notes can you use to pay here?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Is there still some relevant info that the previous questions did not cover? Feel free to add it here.",
|
||||
"questionHint": "Please don't repeat already stated facts"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dogs are allowed"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dogs are <b>not</b> allowed"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dogs are allowed, but they have to be leashed"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dogs are allowed and can run around freely"
|
||||
}
|
||||
},
|
||||
"question": "Are dogs allowed in this business?"
|
||||
},
|
||||
"email": {
|
||||
"question": "What is the email address of {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This place has an audio induction loop"
|
||||
},
|
||||
"1": {
|
||||
"then": "This place <b>does not</b> have an audio induction loop"
|
||||
}
|
||||
},
|
||||
"question": "Does this place have an audio induction loop for people with reduced hearing?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This place offers wireless internet access"
|
||||
},
|
||||
"1": {
|
||||
"then": "This place <b>does not</b> offer internet access"
|
||||
},
|
||||
"2": {
|
||||
"then": "This place offers internet access"
|
||||
},
|
||||
"3": {
|
||||
"then": "This place offers internet access via a terminal or computer"
|
||||
},
|
||||
"4": {
|
||||
"then": "This place offers wired internet access"
|
||||
}
|
||||
},
|
||||
"question": "Does this place offer internet access?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "There is a fee for the internet access at this place"
|
||||
},
|
||||
"1": {
|
||||
"then": "Internet access is free at this place"
|
||||
},
|
||||
"2": {
|
||||
"then": "Internet access is free at this place, for customers only"
|
||||
}
|
||||
},
|
||||
"question": "Is there a fee for internet access?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Enter the network name"
|
||||
},
|
||||
"question": "What is the network name for the wireless internet access?",
|
||||
"render": "The network name is <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "You just created this element! Thanks for sharing this info with the world and helping people worldwide."
|
||||
}
|
||||
}
|
||||
},
|
||||
"last_edit": {
|
||||
"render": {
|
||||
"special": {
|
||||
"text": "Last edited on {_last_edit:timestamp} by {_last_edit:contributor}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Located underground"
|
||||
},
|
||||
"1": {
|
||||
"then": "Located on the ground floor"
|
||||
},
|
||||
"2": {
|
||||
"then": "Located on the ground floor"
|
||||
},
|
||||
"3": {
|
||||
"then": "Located on the first floor"
|
||||
},
|
||||
"4": {
|
||||
"then": "Located on the first basement level"
|
||||
}
|
||||
},
|
||||
"question": "On what level is this feature located?",
|
||||
"render": "Located on the {level}th floor"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This object both emits light and is lighted by an external light source"
|
||||
},
|
||||
"1": {
|
||||
"then": "This object emits light"
|
||||
},
|
||||
"2": {
|
||||
"then": "This object is lit externally, e.g. by a spotlight or other lights"
|
||||
},
|
||||
"3": {
|
||||
"then": "This object does not emit light and is not lighted by externally"
|
||||
}
|
||||
},
|
||||
"question": "Is this object lit or does it emit light?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "What levels does this elevator go to?",
|
||||
"render": "This elevator goes to floors {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "What are the opening hours of {title()}?",
|
||||
"render": "<h3>Opening hours</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "24/7 opened (including holidays)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Only by appointment"
|
||||
},
|
||||
"1": {
|
||||
"then": "Only by appointment"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cash is accepted here"
|
||||
},
|
||||
"1": {
|
||||
"then": "Payment cards are accepted here"
|
||||
},
|
||||
"2": {
|
||||
"then": "Payment by QR-code is possible here"
|
||||
}
|
||||
},
|
||||
"question": "Which methods of payment are accepted here?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Payment is done using a dedicated app"
|
||||
},
|
||||
"1": {
|
||||
"then": "Payment is done using a membership card"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Coins are accepted here"
|
||||
},
|
||||
"1": {
|
||||
"then": "Bank notes are accepted here"
|
||||
},
|
||||
"2": {
|
||||
"then": "Debit cards are accepted here"
|
||||
},
|
||||
"3": {
|
||||
"then": "Credit cards are accepted here"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "What is the phone number of {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics"
|
||||
},
|
||||
"1": {
|
||||
"then": "There are a few domestic sockets available to customers seated indoors, where they can charge their electronics"
|
||||
},
|
||||
"2": {
|
||||
"then": "There are no sockets available indoors to customers, but charging might be possible if the staff is asked"
|
||||
},
|
||||
"3": {
|
||||
"then": "There are a no domestic sockets available to customers seated indoors"
|
||||
}
|
||||
},
|
||||
"question": "Does this amenity have electrical outlets, available to customers when they are inside?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Smoking is <b>allowed</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Smoking is <b>not allowed</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Smoking is <b>allowed outside</b>."
|
||||
}
|
||||
},
|
||||
"question": "Is smoking allowed at {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "What is the website of {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This place is specially adapted for wheelchair users"
|
||||
},
|
||||
"1": {
|
||||
"then": "This place is easily reachable with a wheelchair"
|
||||
},
|
||||
"2": {
|
||||
"then": "It is possible to reach this place in a wheelchair, but it is not easy"
|
||||
},
|
||||
"3": {
|
||||
"then": "This place is not reachable with a wheelchair"
|
||||
}
|
||||
},
|
||||
"question": "Is this place accessible with a wheelchair?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "No Wikipedia page has been linked yet"
|
||||
},
|
||||
"1": {
|
||||
"then": "No Wikipedia page has been linked yet"
|
||||
}
|
||||
},
|
||||
"question": "What is the corresponding Wikidata entity?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,40 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hundoj estas permesataj"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hundoj estas <b>malpermesataj</b>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"email": {
|
||||
"question": "Kio estas la retpoŝta adreso de {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"1": {
|
||||
"then": "En la teretaĝo"
|
||||
},
|
||||
"2": {
|
||||
"then": "En la teretaĝo"
|
||||
},
|
||||
"3": {
|
||||
"then": "En la unua etaĝo"
|
||||
}
|
||||
},
|
||||
"render": "En la {level}a etaĝo"
|
||||
},
|
||||
"opening_hours": {
|
||||
"render": "<h3>Malfermitaj horoj</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Kio estas la telefonnumero de {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Kie estas la retejo de {title()}?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,313 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Se aceptan monedas de 1 céntimo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Se aceptan monedas de 2 céntimos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Se aceptan monedas de 5 céntimos"
|
||||
},
|
||||
"3": {
|
||||
"then": "Se aceptan monedas de 10 céntimos"
|
||||
},
|
||||
"4": {
|
||||
"then": "Se aceptan monedas de 20 céntimos"
|
||||
},
|
||||
"5": {
|
||||
"then": "Se aceptan monedas de 50 céntimos"
|
||||
},
|
||||
"6": {
|
||||
"then": "Se aceptan monedas de 1 euro"
|
||||
},
|
||||
"7": {
|
||||
"then": "Se aceptan monedas de 2 euros"
|
||||
}
|
||||
},
|
||||
"question": "¿Qué monedas se pueden usar aquí para pagar?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Se aceptan billetes de 5 euros"
|
||||
},
|
||||
"1": {
|
||||
"then": "Se aceptan billetes de 10 euros"
|
||||
},
|
||||
"2": {
|
||||
"then": "Se aceptan billetes de 20 euros"
|
||||
},
|
||||
"3": {
|
||||
"then": "Se aceptan billetes de 50 euros"
|
||||
},
|
||||
"4": {
|
||||
"then": "Se aceptan billetes de 100 euros"
|
||||
},
|
||||
"5": {
|
||||
"then": "Se aceptan billetes de 200 euros"
|
||||
},
|
||||
"6": {
|
||||
"then": "Se aceptan billetes de 500 euros"
|
||||
}
|
||||
},
|
||||
"question": "¿con qué billetes se puede pagar aquí?"
|
||||
},
|
||||
"description": {
|
||||
"question": "¿Aún hay algo relevante que no ha encajado en las preguntas anteriores? Compártalo aquí.",
|
||||
"questionHint": "No repita datos ya expresados"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Se permiten perros"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> se permiten perros"
|
||||
},
|
||||
"2": {
|
||||
"then": "Los perros están permitidos, pero tienen que llevar correa"
|
||||
},
|
||||
"3": {
|
||||
"then": "Los perros están permitidos y pueden estar sueltos"
|
||||
}
|
||||
},
|
||||
"question": "¿Están permitidos los perros en este negocio?"
|
||||
},
|
||||
"email": {
|
||||
"question": "¿Cual es la direccióm de correo electrónico de {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar tiene un bucle auditivo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar <b>no</b> tiene bucle auditivo"
|
||||
}
|
||||
},
|
||||
"question": "¿Este lugar tiene un bucle auditivo para personas con discapacidad auditiva?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar ofrece acceso a internet inalámbrico"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar <b>no</b> ofrece acceso a internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Este lugar ofrece acceso a internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar ofrece acceso a internet a través de una terminal o un ordenador"
|
||||
},
|
||||
"4": {
|
||||
"then": "Este lugar ofrece acceso a internet por cable"
|
||||
}
|
||||
},
|
||||
"question": "¿Ofrece este lugar acceso a internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hay que pagar para acceder a internet en este lugar"
|
||||
},
|
||||
"1": {
|
||||
"then": "El acceso a internet es gratuito en este lugar"
|
||||
},
|
||||
"2": {
|
||||
"then": "El acceso a internet es gratis en este lugar, solamente para clientes"
|
||||
}
|
||||
},
|
||||
"question": "¿Hay que pagar para acceder a internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Introduzca el nombre de red"
|
||||
},
|
||||
"question": "¿Cuál es el nombre de red para el acceso inalámbrico a internet?",
|
||||
"render": "El nombre de red es <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Localizado bajo tierra"
|
||||
},
|
||||
"1": {
|
||||
"then": "Localizado en la planta baja"
|
||||
},
|
||||
"2": {
|
||||
"then": "Localizado en la planta baja"
|
||||
},
|
||||
"3": {
|
||||
"then": "Localizado en la primera planta"
|
||||
},
|
||||
"4": {
|
||||
"then": "Localizada en el primer sótano"
|
||||
}
|
||||
},
|
||||
"question": "¿En qué nivel se encuentra esta característica?",
|
||||
"render": "Localizada en la {level}° planta"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este objeto emite luz y es también iluminado por una fuente de luz externa"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este objeto emite luz"
|
||||
},
|
||||
"2": {
|
||||
"then": "Este objeto recibe iluminación, por ejemplo por un foco u otras luces"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este objeto ni emite luz ni es iluminado"
|
||||
}
|
||||
},
|
||||
"question": "¿Está este objeto iluminado o emite luz?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "¿A qué pisos va este ascensor?",
|
||||
"render": "Este ascensor va a los pisos {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "¿Cuales son las horas de apertura de {title()}?",
|
||||
"render": "<h3>Horas de apertura</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Abierta 24/7 (incluyendo festivos)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Sólo con cita previa"
|
||||
},
|
||||
"1": {
|
||||
"then": "Sólo con cita previa"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aquí se acepta el pago en efectivo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí se acepta el pago por tarjeta"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí se puede pagar con código QR"
|
||||
}
|
||||
},
|
||||
"question": "¿Qué métodos de pago se aceptan aquí?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "El pago se realiza con una aplicación dedicada"
|
||||
},
|
||||
"1": {
|
||||
"then": "El pago se realiza con una tarjeta de membresía"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Aquí se aceptan monedas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aquí se aceptan billetes"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aquí se aceptan tarjetas de débito"
|
||||
},
|
||||
"3": {
|
||||
"then": "Aquí se aceptan tarjetas de crédito"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "¿Cuál es el número de teléfono de {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hay numerosos enchufes domésticos disponibles para los clientes sentados en el interior, donde pueden cargar sus dispositivos electrónicos"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hay algunos enchufes domésticos disponibles para los clientes sentados en el interior, donde pueden cargar sus dispositivos electrónicos"
|
||||
},
|
||||
"2": {
|
||||
"then": "No hay enchufes disponibles en el interior para los clientes, pero cargar puede ser posible si se pregunta al personal"
|
||||
},
|
||||
"3": {
|
||||
"then": "No hay enchufes domésticos disponibles para los clientes sentados en el interior"
|
||||
}
|
||||
},
|
||||
"question": "¿Esta facilidad tiene enchufes eléctricos, disponibles para los clientes cuando están dentro?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Está <b>permitido</b> fumar"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>No</b> está permitido fumar"
|
||||
},
|
||||
"2": {
|
||||
"then": "Está permitido fumar <b>en el exterior</b>."
|
||||
}
|
||||
},
|
||||
"question": "¿Está permitido fumar en {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "¿Cual es el sitio web de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar está especialmente adaptado para usuarios en sillas de ruedas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar es fácilmente accesible con una silla de ruedas"
|
||||
},
|
||||
"2": {
|
||||
"then": "Es posible llegar a este lugar con una silla de ruedas, pero no es fácil"
|
||||
},
|
||||
"3": {
|
||||
"then": "No es posible llegar a este lugar con una silla de ruedas"
|
||||
}
|
||||
},
|
||||
"question": "¿Este lugar es accesible con una silla de ruedas?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Todavía no se ha enlazado una página de wikipedia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Todavía no se ha enlazado una página de wikipedia"
|
||||
}
|
||||
},
|
||||
"question": "¿Cual es la entidad de Wikidata que se corresponde?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
{}
|
|
@ -1 +0,0 @@
|
|||
{}
|
|
@ -1,127 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Mayroon pa bang mga bagay na nau-ugnay at hindi mo maibigay sa mga nakaraang tanong? Idagdag dito.",
|
||||
"questionHint": "Huwag ulitin ang mga nai-saad na"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pinapayagan ang mga aso"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>Hindi</b> pinapayagan ang mga aso"
|
||||
},
|
||||
"2": {
|
||||
"then": "Pinapayagan ang mga aso kung may tali"
|
||||
},
|
||||
"3": {
|
||||
"then": "Pinapayayagan ang mga aso, at malayang makatatakbo"
|
||||
}
|
||||
},
|
||||
"question": "Pinapayagan ba ang mga aso sa establisyementong ito?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Ano ang email address ng {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nasa ilalim ng lupa"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nasa unang palapag"
|
||||
},
|
||||
"2": {
|
||||
"then": "Nasa unang palapag"
|
||||
},
|
||||
"3": {
|
||||
"then": "Nasa unang palapag"
|
||||
},
|
||||
"4": {
|
||||
"then": "Nasa silong"
|
||||
}
|
||||
},
|
||||
"question": "Anong palapag matatagpuan ang tampók?",
|
||||
"render": "Natagpuan sa ika-{level} na palapag"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Anong oras nagbubukas ang {title()}?",
|
||||
"render": "<h3>Mga oras na bukas</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tinatanggap ang salapi rito"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tinatanggap ang mga tarhetang pambayad dito"
|
||||
}
|
||||
},
|
||||
"question": "Anong mga paraang pambayad ang tinatanggap dito?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Binabayaran gamit ang sariling app"
|
||||
},
|
||||
"1": {
|
||||
"then": "Binabayaran gamit ang membership card"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Ano ang telepono ng {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Maraming mga intsupe (sockets) na maaring gamitin ng mga suki na nakaupo sa loob, pang-karga ng kanilang mga elektroniks"
|
||||
},
|
||||
"1": {
|
||||
"then": "May iilang mga intsupe (sockets) na maaring gamitin ng mga suki na nakaupo sa loob, pang-karga ng kanilang mga elektroniks"
|
||||
},
|
||||
"2": {
|
||||
"then": "Walang mga intsupe (socket) para sa mga suki, pero maaring tanungin ang kawani kung magpapa-karga"
|
||||
},
|
||||
"3": {
|
||||
"then": "Walang mga intsupe (socket) para sa mga suking nakaubo sa loob"
|
||||
}
|
||||
},
|
||||
"question": "Merong bang mga intsupe (outlet) sa loob, para sa mga suki?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Ano ang website ng {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ang lugar na ito ay angkop sa mga gumagamit ng wheelchair"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ang lugar na ito ay kayang abutin ng mga naka-wheelchair"
|
||||
},
|
||||
"2": {
|
||||
"then": "Kayang abutin ang lugar na ito ng mga naka-wheelchair, pero hindi madali"
|
||||
},
|
||||
"3": {
|
||||
"then": "Ang lugar na ito ay hindi kayang abutin ng naka-wheelchair"
|
||||
}
|
||||
},
|
||||
"question": "Kaya bang abutin ang lugar na ito ng naka-wheelchair?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Wala pang kawing ng Wikipedia page"
|
||||
},
|
||||
"1": {
|
||||
"then": "Wala pang kawing ng Wikipedia page"
|
||||
}
|
||||
},
|
||||
"question": "Ano ang nau-ukol na entidad sa Wikidata?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,317 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Les pièces d'1 cent sont acceptées"
|
||||
},
|
||||
"1": {
|
||||
"then": "Les pièces de 2 cents sont acceptées"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les pièces de 5 cents sont acceptées"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les pièces de 10 cents sont acceptées"
|
||||
},
|
||||
"4": {
|
||||
"then": "Les pièces de 20 cents sont acceptées"
|
||||
},
|
||||
"5": {
|
||||
"then": "Les pièces de 50 cents sont acceptées"
|
||||
},
|
||||
"6": {
|
||||
"then": "Les pièces de 1 euro sont acceptées"
|
||||
},
|
||||
"7": {
|
||||
"then": "Les pièces de 2 euros sont acceptées"
|
||||
}
|
||||
},
|
||||
"question": "Quelles pièces peut-on utiliser pour payer ici ?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Les billets de 5 euros ne sont pas acceptés"
|
||||
},
|
||||
"1": {
|
||||
"then": "Les billets de 10 euros sont acceptés"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les billets de 20 euros sont acceptés"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les billets de 50 euros sont acceptés"
|
||||
},
|
||||
"4": {
|
||||
"then": "Les billets de 100 euros sont acceptés"
|
||||
},
|
||||
"5": {
|
||||
"then": "Les billets de 200 euros sont acceptés"
|
||||
},
|
||||
"6": {
|
||||
"then": "Les billets de 500 euros sont acceptés"
|
||||
}
|
||||
},
|
||||
"question": "quels billets pouvez vous utiliser pour payer ici ?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Y a-t-il quelque chose de pertinent que vous n'avez pas pu donner à la dernière question ? Ajoutez-le ici.",
|
||||
"questionHint": "Ne répétez pas des réponses déjà données"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Chiens admis"
|
||||
},
|
||||
"1": {
|
||||
"then": "Chiens <b>non</b> admis"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les chiens sont admis, mais ils doivent être tenus en laisse"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les chiens sont admis et peuvent circuler librement"
|
||||
}
|
||||
},
|
||||
"question": "Est-ce que les chiens sont admis ici ?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Quelle est l'adresse courriel de {title()} ?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ce lieu dispose d’une boucle auditive"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ce lieu <b>ne dispose pas</b> de boucle auditive"
|
||||
}
|
||||
},
|
||||
"question": "Ce lieu dispose-t’il d’une boucle auditive pour les personnes malentendantes ?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ce lieu propose un accès internet sans fil"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ce lieu <b>ne propose pas</b> d'accès internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ce lieu propose un accès internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cet endroit offre un accès à Internet via un terminal ou un ordinateur"
|
||||
},
|
||||
"4": {
|
||||
"then": "Cet endroit offre un accès Internet filaire"
|
||||
}
|
||||
},
|
||||
"question": "Cet endroit offre-t-il un accès à Internet ?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "L'accès à l'internet est payant à cet endroit"
|
||||
},
|
||||
"1": {
|
||||
"then": "L'accès à Internet est gratuit dans cet endroit"
|
||||
},
|
||||
"2": {
|
||||
"then": "L'accès à l'internet dans cet endroit est gratuit pour les clients uniquement"
|
||||
}
|
||||
},
|
||||
"question": "L'accès à l'internet est-il payant ?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Entrez le nom du réseau"
|
||||
},
|
||||
"question": "Quel est le nom du réseau pour l'accès Internet sans fil ?",
|
||||
"render": "Le nom du réseau est <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Vous venez de créer cet élément ! Merci d'avoir partagé cette information avec le monde et d'aider les autres personnes."
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "En sous-sol"
|
||||
},
|
||||
"1": {
|
||||
"then": "Rez-de-chaussée"
|
||||
},
|
||||
"2": {
|
||||
"then": "Rez-de-chaussée"
|
||||
},
|
||||
"3": {
|
||||
"then": "Premier étage"
|
||||
},
|
||||
"4": {
|
||||
"then": "Sous-sol"
|
||||
}
|
||||
},
|
||||
"question": "À quel étage se situe l’élément ?",
|
||||
"render": "Étage {level}"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cet objet émet de la lumière et est éclairé par l'extérieur"
|
||||
},
|
||||
"1": {
|
||||
"then": "Cet objet émet de la lumière"
|
||||
},
|
||||
"2": {
|
||||
"then": "Cet objet est éclairé par l'extérieur, par ex. par un projecteur ou d'autres lumières"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cet objet n'émet pas de lumière et n'est pas éclairé par l'extérieur"
|
||||
}
|
||||
},
|
||||
"question": "Cet objet est-il éclairé ou émet-il de la lumière ?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Quels étages sont desservis par cet ascenceur ?",
|
||||
"render": "Cet ascenceur permet d’accéder aux étages {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Quelles sont les horaires d'ouverture de {title()} ?",
|
||||
"render": "<h3>Horaires d'ouverture</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ouvert 24h/24 (jours fériés compris)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Uniquement sur rendez-vous"
|
||||
},
|
||||
"1": {
|
||||
"then": "Uniquement sur rendez-vous"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Paiement en liquide accepté"
|
||||
},
|
||||
"1": {
|
||||
"then": "Paiement par carte accepté"
|
||||
}
|
||||
},
|
||||
"question": "Quelles sont les méthodes de paiement acceptées ici ?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Paiement via une application"
|
||||
},
|
||||
"1": {
|
||||
"then": "Paiement via une carte de membre"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Les pièces sont acceptées ici"
|
||||
},
|
||||
"1": {
|
||||
"then": "Les billets de banque sont acceptés ici"
|
||||
},
|
||||
"2": {
|
||||
"then": "Les cartes de débit sont acceptées ici"
|
||||
},
|
||||
"3": {
|
||||
"then": "Les cartes de crédit sont acceptées ici"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Quel est le numéro de téléphone de {title()} ?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Il y a suffisamment de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils"
|
||||
},
|
||||
"1": {
|
||||
"then": "Il y a peu de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils"
|
||||
},
|
||||
"2": {
|
||||
"then": "Il n'y a pas de prises disponibles à l'intérieur pour les clients, mais la recharge est peut-être possible sur demande auprès des employés"
|
||||
},
|
||||
"3": {
|
||||
"then": "Il n'y a pas de prises secteur disponibles pour les clients assis à l'intérieur"
|
||||
}
|
||||
},
|
||||
"question": "Des prises sont elles à disposition des client·e·s en intérieur ?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Il est <b>autorisé</b> de fumer"
|
||||
},
|
||||
"1": {
|
||||
"then": "Il est <b>interdit</b> de fumer"
|
||||
},
|
||||
"2": {
|
||||
"then": "Il est autorisé de fumer <b>à l'extérieur</b>."
|
||||
}
|
||||
},
|
||||
"question": "Est-ce autorisé de fumer à {title()} ?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Quel est le site web de {title()} ?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cet endroit est spécialement adapté pour les usagers de fauteuils roulants"
|
||||
},
|
||||
"1": {
|
||||
"then": "Cet endroit est facilement accessible avec un fauteuil roulant"
|
||||
},
|
||||
"2": {
|
||||
"then": "Il est possible d'accéder à cet endroit en chaise roulante, mais ce n'est pas facile"
|
||||
},
|
||||
"3": {
|
||||
"then": "Cet endroit n'est pas accessible en chaise roulante"
|
||||
}
|
||||
},
|
||||
"question": "Est-ce que cet endroit est accessible en chaise roulante ?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pas encore de lien vers une page Wikipedia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Pas encore de lien vers une page Wikipedia"
|
||||
}
|
||||
},
|
||||
"question": "Quelle est l'entité Wikidata correspondante ?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"website": {
|
||||
"question": "Cal é a páxina web de {title()}?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,136 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Van-e még valami lényeges, amit nem tudott megadni az előző kérdésekben? Itt megteheti.",
|
||||
"questionHint": "Ne ismételjen meg már megadott tényeket"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kutya bevihető"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kutya <b>nem</b> vihető be"
|
||||
},
|
||||
"2": {
|
||||
"then": "Kutya bevihető, de csak pórázon"
|
||||
},
|
||||
"3": {
|
||||
"then": "Kutya bevihető és szabadon szaladgálhat"
|
||||
}
|
||||
},
|
||||
"question": "Be lehet-e vinni kutyát ebbe az üzletbe?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Mi a(z) {title()} e-mail címe?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "A föld alatt"
|
||||
},
|
||||
"1": {
|
||||
"then": "A földszinten"
|
||||
},
|
||||
"2": {
|
||||
"then": "A földszinten"
|
||||
},
|
||||
"3": {
|
||||
"then": "Az első emeleten"
|
||||
},
|
||||
"4": {
|
||||
"then": "Az első alagsori szinten"
|
||||
}
|
||||
},
|
||||
"question": "Melyik szinten található ez a létesítmény?",
|
||||
"render": "A(z) {level}. emeleten"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Mikor van nyitva ez: {title()}?",
|
||||
"render": "<h3>Nyitva tartás</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Éjjel-nappal nyitva (munkaszüneti napokon is)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Itt készpénzzel is lehet fizetni"
|
||||
},
|
||||
"1": {
|
||||
"then": "Itt fizetőkártyákkal is lehet fizetni"
|
||||
}
|
||||
},
|
||||
"question": "Milyen fizetési módokat fogadnak el itt?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Fizetés erre a célra szolgáló alkalmazással"
|
||||
},
|
||||
"1": {
|
||||
"then": "Fizetési tagsági kártyával"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Mi a telefonszáma ennek: {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Számos konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik"
|
||||
},
|
||||
"1": {
|
||||
"then": "Csupán néhány konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik"
|
||||
},
|
||||
"2": {
|
||||
"then": "A belső térben nincs konnektor az ügyfeleknek, de lehetséges, hogy a személyzet segítségével lehet elektromos eszközt tölteni"
|
||||
},
|
||||
"3": {
|
||||
"then": "A belső térben ülő ügyfeleknek nem áll rendelkezésére konnektor"
|
||||
}
|
||||
},
|
||||
"question": "Van-e ebben a létesítményben olyan konnektor, amely a bent tartózkodó ügyfelek rendelkezésére áll?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Mi a weboldala ennek: {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ez a hely kifejezetten kerekesszékeseknek lett kialakítva"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ez a hely könnyedén elérhető kerekesszékkel"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ez a hely ugyan elérhető kerekesszékkel, de nehezen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Ez a hely kerekesszékkel elérhetetlen"
|
||||
}
|
||||
},
|
||||
"question": "Akadálymentes-e ez a hely?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Még nincs Wikipédia-oldal belinkelve"
|
||||
},
|
||||
"1": {
|
||||
"then": "Még nincs Wikipédia-oldal belinkelve"
|
||||
}
|
||||
},
|
||||
"question": "Mi a megfelelő Wikidata-elem?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,202 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1 koin sen diterima"
|
||||
},
|
||||
"1": {
|
||||
"then": "Koin 2 sen diterima"
|
||||
},
|
||||
"2": {
|
||||
"then": "Koin 5 sen diterima"
|
||||
},
|
||||
"3": {
|
||||
"then": "Koin 10 sen diterima"
|
||||
},
|
||||
"4": {
|
||||
"then": "Koin 20 sen diterima"
|
||||
},
|
||||
"5": {
|
||||
"then": "Koin 50 sen diterima"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": {
|
||||
"question": "Apakah masih ada sesuatu yang relevan yang tidak dapat Anda berikan dalam pertanyaan sebelumnya? Tambahkan di sini. ",
|
||||
"questionHint": " Jangan ulangi fakta yang sudah dinyatakan "
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Anjing diperbolehkan"
|
||||
},
|
||||
"1": {
|
||||
"then": "Anjing <b>tidak</b> diperbolehkan"
|
||||
},
|
||||
"2": {
|
||||
"then": "Anjing diperbolehkan, tetapi mereka harus diikat"
|
||||
},
|
||||
"3": {
|
||||
"then": "Anjing diperbolehkan dan dapat berkeliaran dengan bebas"
|
||||
}
|
||||
},
|
||||
"question": "Apakah anjing diperbolehkan dalam bisnis ini?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Apa alamat surel dari {title()}?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tempat ini menyediakan jaringan internet nirkabel"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tempat ini <b>tidak</b> menyediakan jaringan internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Tempat ini menyediakan jaringan internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Tempat ini menyediakan jaringan internet melalui terminal atau komputer"
|
||||
},
|
||||
"4": {
|
||||
"then": "Tempat ini menyediakan jaringan internet kabel"
|
||||
}
|
||||
},
|
||||
"question": "Apa tempat ini menyediakan jaringan internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ada biaya untuk akses internet di tempat ini"
|
||||
},
|
||||
"1": {
|
||||
"then": "Jaringan internet tersedia gratis di tempat ini"
|
||||
},
|
||||
"2": {
|
||||
"then": "Jaringan internet tersedia gratis di tempat ini, hanya untuk pelanggan"
|
||||
}
|
||||
},
|
||||
"question": "Apakah ada biaya untuk akses internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Masukkan nama jaringan"
|
||||
},
|
||||
"question": "Apa nama jaringan internet nirkabelnya?",
|
||||
"render": "Nama jaringan ini adalah <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Terletak di bawah tanah"
|
||||
},
|
||||
"1": {
|
||||
"then": "Terletak di lantai dasar"
|
||||
},
|
||||
"2": {
|
||||
"then": "Terletak di lantai dasar"
|
||||
},
|
||||
"3": {
|
||||
"then": "Berlokasi di lantai pertama"
|
||||
},
|
||||
"4": {
|
||||
"then": "Terletak di lantai basement pertama"
|
||||
}
|
||||
},
|
||||
"question": "Pada tingkat apa fitur ini diletakkan?",
|
||||
"render": "Terletak di lantai {level}"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Pada lantai berapa saja lift ini berjalan?",
|
||||
"render": "Lift ini berjalan ke lantai {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Kapan jam buka {title()}?",
|
||||
"render": "<h3>Jam buka</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Buka 24 jam (termasuk hari libur)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pembayaran tunai diterima di sini"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kartu pembayaran diterima di sini"
|
||||
}
|
||||
},
|
||||
"question": "Metode pembayaran manakah yang di terima disini?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Pembayaran dilakukan dengan aplikasi khusus"
|
||||
},
|
||||
"1": {
|
||||
"then": "Pembayaran dilakukan dengan kartu anggota"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Berapa nomor telepon dari {title()}?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Merokok <b>diizinkan</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Merokok <b>dilarang</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Merokok <b>diizinkan di luar ruangan</b>."
|
||||
}
|
||||
},
|
||||
"question": "Apa diizinkan untuk merokok di {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Apa situs web dari {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tempat ini dirancang khusus untuk pengguna kursi roda"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tempat ini mudah dijangkau dengan kursi roda"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dimungkinkan untuk mencapai tempat ini dengan kursi roda, tetapi tidak mudah"
|
||||
},
|
||||
"3": {
|
||||
"then": "Tempat ini tidak bisa dijangkau dengan kursi roda"
|
||||
}
|
||||
},
|
||||
"question": "Apakah tempat ini dapat diakses dengan kursi roda?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Belum ada halaman Wikipedia yang ditautkan"
|
||||
},
|
||||
"1": {
|
||||
"then": "Belum ada halaman Wikipedia yang ditautkan"
|
||||
}
|
||||
},
|
||||
"question": "Apa entitas Wikidata yang sesuai?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,104 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "C'è ancora qualche informazione importante che non è stato possibile fornire nelle domande precedenti? Aggiungila qui.",
|
||||
"questionHint": "Non ripetere informazioni già fornite"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cani ammessi"
|
||||
},
|
||||
"1": {
|
||||
"then": "I cani <b>non</b> sono ammessi"
|
||||
},
|
||||
"2": {
|
||||
"then": "Cani ammessi ma solo se tenuti al guinzaglio"
|
||||
},
|
||||
"3": {
|
||||
"then": "I cani sono ammessi e possono andare in giro liberamente"
|
||||
}
|
||||
},
|
||||
"question": "I cani sono ammessi in quest’attività?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Qual è l'indirizzo email di {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Si trova sotto il livello stradale"
|
||||
},
|
||||
"1": {
|
||||
"then": "Si trova al pianoterra"
|
||||
},
|
||||
"2": {
|
||||
"then": "Si trova al pianoterra"
|
||||
},
|
||||
"3": {
|
||||
"then": "Si trova al primo piano"
|
||||
}
|
||||
},
|
||||
"question": "A quale piano si trova questo elemento?",
|
||||
"render": "Si trova al piano numero {level}"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Quali sono gli orari di apertura di {title()}?",
|
||||
"render": "<h3>Orari di apertura</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "I contanti sono accettati"
|
||||
},
|
||||
"1": {
|
||||
"then": "I pagamenti con la carta sono accettati"
|
||||
}
|
||||
},
|
||||
"question": "Quali metodi di pagamento sono accettati qui?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Pagamento effettuato utilizzando un'app dedicata"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Qual è il numero di telefono di {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Qual è il sito web di {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Questo luogo è stato adattato per favorire le persone in sedia a rotelle"
|
||||
},
|
||||
"1": {
|
||||
"then": "Questo luogo è facilmente raggiungibile con una sedia a rotelle"
|
||||
},
|
||||
"2": {
|
||||
"then": "È possibile raggiungere questo luogo con una sedia a rotella ma non è semplice"
|
||||
},
|
||||
"3": {
|
||||
"then": "Questo luogo non è accessibile con una sedia a rotelle"
|
||||
}
|
||||
},
|
||||
"question": "Questo luogo è accessibile con una sedia a rotelle?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nessuna pagina Wikipedia è ancora stata collegata"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nessuna pagina Wikipedia è ancora stata collegata"
|
||||
}
|
||||
},
|
||||
"question": "Qual è l’elemento Wikidata corrispondente?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,112 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "前の質問で伝えきれなかった関連事項がまだありますか?ここに追加してください。",
|
||||
"questionHint": "今後表示しない"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "ペット同伴可能"
|
||||
},
|
||||
"1": {
|
||||
"then": "ペット同伴<b>不可</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "ペット同伴可能。ただしリード着用"
|
||||
},
|
||||
"3": {
|
||||
"then": "犬同伴可能、自由に走り回れる"
|
||||
}
|
||||
},
|
||||
"question": "犬を飼うことができますか?"
|
||||
},
|
||||
"email": {
|
||||
"question": "{title()}のEメールアドレスは何ですか?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "地下にあります"
|
||||
},
|
||||
"1": {
|
||||
"then": "1階にあります"
|
||||
},
|
||||
"2": {
|
||||
"then": "1階にあります"
|
||||
},
|
||||
"3": {
|
||||
"then": "1階にあります"
|
||||
}
|
||||
},
|
||||
"question": "この機能は何階にあるのでしょうか?",
|
||||
"render": "{level}階にあります"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "{title()}の営業時間は?",
|
||||
"render": "<h3>営業時間</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "現金利用可能"
|
||||
},
|
||||
"1": {
|
||||
"then": "お支払いはこちらで承ります"
|
||||
}
|
||||
},
|
||||
"question": "どのような支払い方法が可能ですか?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "{title()}の電話番号は?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "屋内の席に座っているお客様には、家庭用コンセントがたくさん用意されており、そこで電子機器を充電することができます"
|
||||
},
|
||||
"1": {
|
||||
"then": "屋内の席に座ったお客様が充電できるよう、コンセントがいくつか用意されています"
|
||||
},
|
||||
"2": {
|
||||
"then": "屋内にはコンセントがありませんが、スタッフに声をかければ充電できるかもしれません"
|
||||
},
|
||||
"3": {
|
||||
"then": "屋内の席には、家庭用コンセントはありません"
|
||||
}
|
||||
},
|
||||
"question": "このアメニティにはコンセントがあり、お客様が店内にいるときにも利用できますか?"
|
||||
},
|
||||
"website": {
|
||||
"question": "{title()}のウェブサイトは?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "この場所は、車椅子の方のための特別仕様になっています"
|
||||
},
|
||||
"1": {
|
||||
"then": "この場所は、車いすで簡単に行くことができます"
|
||||
},
|
||||
"2": {
|
||||
"then": "車いすでこの場所まで行くことは可能ですが、簡単ではありません"
|
||||
},
|
||||
"3": {
|
||||
"then": "この場所は車いすでは行けません"
|
||||
}
|
||||
},
|
||||
"question": "車いすでのアクセスは可能ですか?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "ウィキペディアのページはまだリンクされていません"
|
||||
},
|
||||
"1": {
|
||||
"then": "ウィキペディアのページはまだリンクされていません"
|
||||
}
|
||||
},
|
||||
"question": "対応するウィキデータのエンティティは何ですか?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,267 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "1-cent mynter aksepteres"
|
||||
},
|
||||
"1": {
|
||||
"then": "2-cent mynter aksepteres"
|
||||
},
|
||||
"2": {
|
||||
"then": "5-cent mynter aksepteres"
|
||||
},
|
||||
"3": {
|
||||
"then": "10-cent mynter aksepteres"
|
||||
},
|
||||
"4": {
|
||||
"then": "20-cent mynter aksepteres"
|
||||
},
|
||||
"5": {
|
||||
"then": "50-cent mynter aksepteres"
|
||||
},
|
||||
"6": {
|
||||
"then": "1-euro mynter aksepteres"
|
||||
},
|
||||
"7": {
|
||||
"then": "2-euro mynter aksepteres"
|
||||
}
|
||||
},
|
||||
"question": "Hvilke mynter kan brukes til betaling her?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Er det noe mer som er relevant du ikke kunne opplyse om i tidligere svar? Legg det til her.",
|
||||
"questionHint": "Ikke gjenta fakta som allerede er nevnt"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hunder tillates"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hunder tillates <b>ikke</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hunder tillates, men de må være i bånd"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hunder tillates og kan gå fritt"
|
||||
}
|
||||
},
|
||||
"question": "Tillates hunder i denne forretningen?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Hva er e-postadressen til {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette stedet har en teleslynge"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette stedet <b>har ikke</b> en teleslynge"
|
||||
}
|
||||
},
|
||||
"question": "Har stedet en teleslynge for folk med redusert hørsel?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette stedet tilbyr trådløs tilgang til Internett"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette stedet tilbyr <b>ikke</b> tilgang til Internett"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dette stedet tilbyr tilgang til Internett"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette stedet tilbyr tilgang til Internett via en terminal eller datamaskin"
|
||||
},
|
||||
"4": {
|
||||
"then": "Dette stedet tilbyr trådbunden tilgang til Internett"
|
||||
}
|
||||
},
|
||||
"question": "Tilbyr dette stedet tilgang til Internett?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det er et gebyr for tilgang til Internett på dette stedet"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tilgang til Internett er gratis på dette stedet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Tilgang til Internett på dette stedet er gratis, men kun for kunder"
|
||||
}
|
||||
},
|
||||
"question": "Er det et gebyr for bruk av Internett?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Skriv inn nettverksnavnet"
|
||||
},
|
||||
"question": "Hva er nettverksnavnet for det trådløse nettverket?",
|
||||
"render": "Nettverksnavnet er <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Under bakken"
|
||||
},
|
||||
"1": {
|
||||
"then": "På gateplan"
|
||||
},
|
||||
"2": {
|
||||
"then": "På gateplan"
|
||||
},
|
||||
"3": {
|
||||
"then": "I andre etasje"
|
||||
},
|
||||
"4": {
|
||||
"then": "Er å finne på første kjellernivå"
|
||||
}
|
||||
},
|
||||
"question": "Hvilken etasje befinner funksjonen seg i?",
|
||||
"render": "Ligger i {level} etasje"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Hvilke etasjer går heisen til?",
|
||||
"render": "Heisen går til etasje {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Hva er åpningstidene for {title()})",
|
||||
"render": "<h3>Åpningstider</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Døgnåpent (inkludert helligdager)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kun ved avtale"
|
||||
},
|
||||
"1": {
|
||||
"then": "Kun ved avtale"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Kontanter godtas her"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalingskort godtas her"
|
||||
}
|
||||
},
|
||||
"question": "Hvilke betalingsmetoder godtas her?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Betaling utføres med et eget program"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betaling utføres med et medlemskort"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Mynter aksepteres her"
|
||||
},
|
||||
"1": {
|
||||
"then": "Sedler aksepteres her"
|
||||
},
|
||||
"2": {
|
||||
"then": "Debetkort aksepteres her"
|
||||
},
|
||||
"3": {
|
||||
"then": "Kredittkort aksepteres her"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Hva er telefonnummeret til {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det er massevis av stikkontakter tilgjengelig for kunder som sitter innendørs, der de kan lade elektronikken sin"
|
||||
},
|
||||
"1": {
|
||||
"then": "Det er noen stikkontakter tilgjengelig for kunder som sitter innendørs, der de kan lagre elektronikken sin"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det er ingen tilgjengelige stikkontakter for kunder som sitter innendørs, men lading kan være mulig hvis man spør betjeningen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Det er ingen stikkontakter tilgjengelig for kunder som sitter innendørs"
|
||||
}
|
||||
},
|
||||
"question": "Har denne fasiliteten stikkontakter, tilgjengelig for kunder innendørs?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Røyking er <b>tillatt</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Røyking <b>forbudt</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Røyking <b>tillates på utsiden</b>."
|
||||
}
|
||||
},
|
||||
"question": "Tillates røyking på {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Hva er nettsiden til {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dette stedet er spesielt tilpasset rullestolsbrukere"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dette stedet kan enkelt besøkes med rullestol"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det er mulig å besøke dette stedet i rullestol, men det er ikke lett"
|
||||
},
|
||||
"3": {
|
||||
"then": "Dette stedet er ikke tilgjengelig for besøk med rullestol"
|
||||
}
|
||||
},
|
||||
"question": "Er dette stedet tilgjengelig for rullestoler?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ingen Wikipedia-side lenket enda"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ingen Wikipedia-side lenket enda"
|
||||
}
|
||||
},
|
||||
"question": "Hva er respektivt Wikipedia-element?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,310 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Munten van 1 cent worden geaccepteerd"
|
||||
},
|
||||
"1": {
|
||||
"then": "Munten van 2 cent worden geaccepteerd"
|
||||
},
|
||||
"2": {
|
||||
"then": "Munten van 5 cent worden geaccepteerd"
|
||||
},
|
||||
"3": {
|
||||
"then": "Munten van 10 cent worden geaccepteerd"
|
||||
},
|
||||
"4": {
|
||||
"then": "Munten van 20 cent worden geaccepteerd"
|
||||
},
|
||||
"5": {
|
||||
"then": "Munten van 50 cent worden geaccepteerd"
|
||||
},
|
||||
"6": {
|
||||
"then": "Munten van 1 euro worden geaccepteerd"
|
||||
},
|
||||
"7": {
|
||||
"then": "Munten van 2 euro worden geaccepteerd"
|
||||
}
|
||||
},
|
||||
"question": "Met welke munten kan je hier betalen?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Biljetten van 5 euro worden geaccepteerd"
|
||||
},
|
||||
"1": {
|
||||
"then": "Biljetten van 10 euro worden geaccepteerd"
|
||||
},
|
||||
"2": {
|
||||
"then": "Biljetten van 20 euro worden geaccepteerd"
|
||||
},
|
||||
"3": {
|
||||
"then": "Biljetten van 50 euro worden geaccepteerd"
|
||||
},
|
||||
"4": {
|
||||
"then": "Biljetten van 100 euro worden geaccepteerd"
|
||||
},
|
||||
"5": {
|
||||
"then": "Biljetten van 200 euro worden geaccepteerd"
|
||||
},
|
||||
"6": {
|
||||
"then": "Biljetten van 500 euro worden geaccepteerd"
|
||||
}
|
||||
},
|
||||
"question": "Met welke bankbiljetten kan je hier betalen?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Zijn er nog andere relevante zaken die je niet in de bovenstaande vragen kwijt kon? Vul ze hier in.",
|
||||
"questionHint": "Herhaal geen antwoorden die je reeds gaf"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "honden zijn toegelaten"
|
||||
},
|
||||
"1": {
|
||||
"then": "honden zijn <b>niet</b> toegelaten"
|
||||
},
|
||||
"2": {
|
||||
"then": "honden zijn <b>enkel aan de leiband</b> welkom"
|
||||
},
|
||||
"3": {
|
||||
"then": "honden zijn welkom en mogen vrij rondlopen"
|
||||
}
|
||||
},
|
||||
"question": "Zijn honden toegelaten in deze zaak?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Wat is het e-mailadres van {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Deze plaats heeft een ringleiding"
|
||||
},
|
||||
"1": {
|
||||
"then": "Deze plaats heeft <b>geen</b> ringleiding"
|
||||
}
|
||||
},
|
||||
"question": "Heeft deze plaats een ringleiding voor slechthorenden?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Deze plaats biedt draadloze internettoegang aan"
|
||||
},
|
||||
"1": {
|
||||
"then": "Deze plaats biedt <b>geen</b> internettoegang aan"
|
||||
},
|
||||
"2": {
|
||||
"then": "Deze plaats biedt internettoegang aan"
|
||||
},
|
||||
"3": {
|
||||
"then": "Deze plaats biedt internettoegang via een terminal of computer aan"
|
||||
},
|
||||
"4": {
|
||||
"then": "Deze plaats biedt bedrade internettoegang aan"
|
||||
}
|
||||
},
|
||||
"question": "Biedt deze plaats internettoegang aan?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Er zijn kosten voor internettoegang op deze plaats"
|
||||
},
|
||||
"1": {
|
||||
"then": "Internettoegang is gratis op deze plaats"
|
||||
},
|
||||
"2": {
|
||||
"then": "Internettoegang is gratis op deze plaats, alleen voor klanten"
|
||||
}
|
||||
},
|
||||
"question": "Zijn er kosten voor internettoegang?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Voer de netwerknaam in"
|
||||
},
|
||||
"question": "Wat is de netwerknaam voor de draadloze internettoegang?",
|
||||
"render": "De netwerknaam is <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"just_created": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Je hebt dit punt net toegevoegd! Bedankt om deze info met iedereen te delen en om de mensen wereldwijd te helpen."
|
||||
}
|
||||
}
|
||||
},
|
||||
"last_edit": {
|
||||
"render": {
|
||||
"special": {
|
||||
"text": "Laatst gewijzigd op {_last_edit:timestamp} door {_last_edit:contributor} "
|
||||
}
|
||||
}
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Bevindt zich ondergronds"
|
||||
},
|
||||
"1": {
|
||||
"then": "Bevindt zich op de begane grond"
|
||||
},
|
||||
"2": {
|
||||
"then": "Bevindt zich gelijkvloers"
|
||||
},
|
||||
"3": {
|
||||
"then": "Bevindt zich op de eerste verdieping"
|
||||
},
|
||||
"4": {
|
||||
"then": "Bevindt zich in de eerste kelderverdieping"
|
||||
}
|
||||
},
|
||||
"question": "Op welke verdieping bevindt dit punt zich?",
|
||||
"render": "Bevindt zich op de {level}de verdieping"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Naar welke verdiepingen gaat deze lift?",
|
||||
"render": "Deze lift gaat naar de verdiepingen {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Wat zijn de openingstijden van {title()}?",
|
||||
"render": "<h3>Openingstijden</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "24/7 open (ook tijdens feestdagen)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Alleen op afspraak"
|
||||
},
|
||||
"1": {
|
||||
"then": "Alleen op afspraak"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Cash geld wordt hier aanvaard"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalen met bankkaarten kan hier"
|
||||
},
|
||||
"2": {
|
||||
"then": "Betalen via een QR-code is hier mogelijk"
|
||||
}
|
||||
},
|
||||
"question": "Welke betaalmiddelen worden hier geaccepteerd?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Betalen via een app van het netwerk"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalen via een lidkaart van het netwerk"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Muntgeld wordt hier aanvaard"
|
||||
},
|
||||
"1": {
|
||||
"then": "Bankbiljetten worden hier aanvaard"
|
||||
},
|
||||
"2": {
|
||||
"then": "Betalen met debetkaarten kan hier"
|
||||
},
|
||||
"3": {
|
||||
"then": "Betalen met creditkaarten kan hier"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Wat is het telefoonnummer van {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Er zijn binnen veel stekkers beschikbaar voor klanten die electronica wensen op te laden"
|
||||
},
|
||||
"1": {
|
||||
"then": "Er zijn binnen enkele stekkers beschikbaar voor klanten die electronica wensen op te laden"
|
||||
},
|
||||
"2": {
|
||||
"then": "Er zijn binnen geen stekkers beschikbaar, maar electronica opladen kan indien men dit aan het personeel vraagt"
|
||||
},
|
||||
"3": {
|
||||
"then": "Er zijn binnen geen stekkers beschikbaar"
|
||||
}
|
||||
},
|
||||
"question": "Zijn er stekkers beschikbaar voor klanten die binnen zitten?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Roken is <b>toegestaan</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Roken is <b>niet toegestaan</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Roken is <b>buiten toegestaan</b>."
|
||||
}
|
||||
},
|
||||
"question": "Is roken toegestaan bij {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Wat is de website van {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Deze plaats is speciaal aangepast voor gebruikers van een rolstoel"
|
||||
},
|
||||
"1": {
|
||||
"then": "Deze plaats is vlot bereikbaar met een rolstoel"
|
||||
},
|
||||
"2": {
|
||||
"then": "Deze plaats is bereikbaar met een rolstoel, maar het is niet makkelijk"
|
||||
},
|
||||
"3": {
|
||||
"then": "Niet rolstoeltoegankelijk"
|
||||
}
|
||||
},
|
||||
"question": "Is deze plaats rolstoeltoegankelijk?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Er werd nog geen Wikipedia-pagina gekoppeld"
|
||||
},
|
||||
"1": {
|
||||
"then": "Er werd nog geen Wikipedia-pagina gekoppeld"
|
||||
}
|
||||
},
|
||||
"question": "Welk Wikidata-item komt overeen met dit object?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "کُتیاں دی اِجازت اے"
|
||||
}
|
||||
}
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "نیٹورک دا ناں پایو"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"render": "<h3>کھُلھے گھنٹے</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "سِگرٹ پیݨ دی <b>اِجازت</b> اے"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,310 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"denominations-coins": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Akceptowane są monety 1 centowe"
|
||||
},
|
||||
"1": {
|
||||
"then": "Akceptowane są monety 2 centowe"
|
||||
},
|
||||
"2": {
|
||||
"then": "Akceptowane są monety 5 centowe"
|
||||
},
|
||||
"3": {
|
||||
"then": "Akceptowane są monety 10-centowe"
|
||||
},
|
||||
"4": {
|
||||
"then": "Akceptowane są monety 20-centowe"
|
||||
},
|
||||
"5": {
|
||||
"then": "Akceptowane są monety 50-centowe"
|
||||
},
|
||||
"6": {
|
||||
"then": "Akceptowane są monety 1 euro"
|
||||
},
|
||||
"7": {
|
||||
"then": "Akceptowane są monety 2 euro"
|
||||
}
|
||||
},
|
||||
"question": "Jakimi monetami można tutaj zapłacić?"
|
||||
},
|
||||
"denominations-notes": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Banknoty 5 euro są akceptowane"
|
||||
},
|
||||
"1": {
|
||||
"then": "Banknoty 10 euro są akceptowane"
|
||||
},
|
||||
"2": {
|
||||
"then": "Banknoty 20 euro są akceptowane"
|
||||
},
|
||||
"3": {
|
||||
"then": "Banknoty 50 euro są akceptowane"
|
||||
},
|
||||
"4": {
|
||||
"then": "Banknoty 100 euro są akceptowane"
|
||||
},
|
||||
"5": {
|
||||
"then": "Banknoty 200 euro są akceptowane"
|
||||
},
|
||||
"6": {
|
||||
"then": "Banknoty 500 euro są akceptowane"
|
||||
}
|
||||
},
|
||||
"question": "Jakimi banknotami można tu zapłacić?"
|
||||
},
|
||||
"description": {
|
||||
"question": "Czy jest jeszcze coś istotnego, czego nie mogłeś podać w poprzednich pytaniach? Dodaj to tutaj.",
|
||||
"questionHint": "Nie powtarzaj już podanych faktów"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Psy dozwolone"
|
||||
},
|
||||
"1": {
|
||||
"then": "Psy <b>nie</b> dozwolone"
|
||||
},
|
||||
"2": {
|
||||
"then": "Psy dozwolone, ale muszą być na smyczy"
|
||||
},
|
||||
"3": {
|
||||
"then": "Psy dozwolone i mogą biegać bez ograniczeń"
|
||||
}
|
||||
},
|
||||
"question": "Czy w tej firmie psy są dozwolone?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Jaki jest adres e-mail do {title()}?"
|
||||
},
|
||||
"induction-loop": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "To miejsce ma pętlę indukcyjną audio"
|
||||
},
|
||||
"1": {
|
||||
"then": "To miejsce <b>nie ma</b> pętli indukcyjnej dźwięku"
|
||||
}
|
||||
},
|
||||
"question": "Czy to miejsce ma pętlę indukcyjną dźwięku dla osób niedosłyszących?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "To miejsce oferuje bezprzewodowy dostęp do Internetu"
|
||||
},
|
||||
"1": {
|
||||
"then": "To miejsce <b>nie</b> oferuje dostępu do Internetu"
|
||||
},
|
||||
"2": {
|
||||
"then": "To miejsce oferuje dostęp do Internetu"
|
||||
},
|
||||
"3": {
|
||||
"then": "To miejsce oferuje dostęp do Internetu za pośrednictwem terminala lub komputera"
|
||||
},
|
||||
"4": {
|
||||
"then": "To miejsce oferuje przewodowy dostęp do Internetu"
|
||||
}
|
||||
},
|
||||
"question": "Czy to miejsce oferuje dostęp do Internetu?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "W tym miejscu dostęp do Internetu jest płatny"
|
||||
},
|
||||
"1": {
|
||||
"then": "Dostęp do Internetu jest w tym miejscu bezpłatny"
|
||||
},
|
||||
"2": {
|
||||
"then": "Dostęp do Internetu jest w tym miejscu bezpłatny, tylko dla klientów"
|
||||
}
|
||||
},
|
||||
"question": "Czy dostęp do Internetu jest płatny?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Wprowadź nazwę sieci"
|
||||
},
|
||||
"question": "Jaka jest nazwa sieci dla bezprzewodowego dostępu do Internetu?",
|
||||
"render": "Nazwa sieci to <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Znajduje się pod ziemią"
|
||||
},
|
||||
"1": {
|
||||
"then": "Znajduje się na parterze"
|
||||
},
|
||||
"2": {
|
||||
"then": "Znajduje się na parterze"
|
||||
},
|
||||
"3": {
|
||||
"then": "Znajduje się na pierwszym piętrze"
|
||||
},
|
||||
"4": {
|
||||
"then": "Położone na pierwszym poziomie piwnicy"
|
||||
}
|
||||
},
|
||||
"question": "Na jakim poziomie znajduje się ta funkcja?",
|
||||
"render": "Znajduje się na {level} piętrze"
|
||||
},
|
||||
"luminous_or_lit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ten obiekt zarówno emituje światło, jak i jest oświetlany przez zewnętrzne źródło światła"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ten obiekt emituje światło"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ten obiekt jest oświetlony zewnętrznie, np. przez reflektor lub inne światła"
|
||||
},
|
||||
"3": {
|
||||
"then": "Obiekt ten nie emituje światła i nie jest oświetlany z zewnątrz"
|
||||
}
|
||||
},
|
||||
"question": "Czy ten obiekt jest oświetlony lub emituje światło?"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Na jakie poziomy jedzie ta winda?",
|
||||
"render": "Ta winda jedzie na piętra {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Jakie są godziny otwarcia {title()}?",
|
||||
"render": "<h3> Godziny otwarcia</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Otwarte 24/7 (również w święta)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"opening_hours_by_appointment": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tylko po wcześniejszym umówieniu się"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tylko po wcześniejszym umówieniu się"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Płatność gotówkowa jest tutaj dostępna"
|
||||
},
|
||||
"1": {
|
||||
"then": "Płatność kartą jest tutaj dostępna"
|
||||
}
|
||||
},
|
||||
"question": "Jakie metody płatności są tutaj dostępne?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Płatność odbywa się za pomocą dedykowanej aplikacji"
|
||||
},
|
||||
"1": {
|
||||
"then": "Płatność odbywa się za pomocą karty członkowskiej"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options-split": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Monety są tutaj akceptowane"
|
||||
},
|
||||
"1": {
|
||||
"then": "Banknoty są tutaj akceptowane"
|
||||
},
|
||||
"2": {
|
||||
"then": "Akceptowane są tutaj karty debetowe"
|
||||
},
|
||||
"3": {
|
||||
"then": "Akceptowane są tutaj karty kredytowe"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Jaki jest numer telefonu do {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "W budynku znajduje się wiele gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia"
|
||||
},
|
||||
"1": {
|
||||
"then": "W budynku znajduje się kilka gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia"
|
||||
},
|
||||
"2": {
|
||||
"then": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów, ale mogą zostać one udostępnione po spytaniu obsługi"
|
||||
},
|
||||
"3": {
|
||||
"then": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów"
|
||||
}
|
||||
},
|
||||
"question": "Czy w tym przybytku znajdują się gniazdka elektryczne, gdzie klienci mogą naładować swoje urządzenia?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Palenie jest <b>dozwolone</b>"
|
||||
},
|
||||
"1": {
|
||||
"then": "Palenie jest <b>zakazane</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Palenie jest <b>dozwolone na zewnątrz</b>."
|
||||
}
|
||||
},
|
||||
"question": "Czy w {title()} wolno palić?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Jaka jest strona internetowa {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "W tym miejscu zainstalowane zostały udogodnienia dla osób na wózkach inwalidzkich"
|
||||
},
|
||||
"1": {
|
||||
"then": "To miejsce jest łatwo dostępne dla osób na wózkach inwalidzkich"
|
||||
},
|
||||
"2": {
|
||||
"then": "To miejsce jest dostępne dla osób na wózkach inwalidzkich, ale z pewnymi trudnościami"
|
||||
},
|
||||
"3": {
|
||||
"then": "To miejsce jest niedostępne dla osób na wózkach inwalidzkich"
|
||||
}
|
||||
},
|
||||
"question": "Czy to miejsce jest dostępne dla osób na wózkach inwalidzkich?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Link do strony Wikipedii nie został jeszcze określony"
|
||||
},
|
||||
"1": {
|
||||
"then": "Link do strony Wikipedii nie został jeszcze określony"
|
||||
}
|
||||
},
|
||||
"question": "Jaki jest powiązany obiekt Wikidata?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,188 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Ainda há algo de relevante que não tenha podido dar nas perguntas anteriores? Adicione-o aqui.",
|
||||
"questionHint": "Não repita factos já declarados"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Os cães são permitidos"
|
||||
},
|
||||
"1": {
|
||||
"then": "Os cães <b>não</b> são permitidos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Os cães são permitidos, mas têm de ser presos pela trela"
|
||||
},
|
||||
"3": {
|
||||
"then": "Os cães são permitidos e podem correr livremente"
|
||||
}
|
||||
},
|
||||
"question": "Os cães são permitidos neste estabelecimento?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Qual é o endereço de e-mail de {title()}?"
|
||||
},
|
||||
"internet": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar tem acesso à Internet sem fios"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar <b>não</b> tem acesso à Internet"
|
||||
},
|
||||
"2": {
|
||||
"then": "Este lugar tem acesso à Internet"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar tem acesso à Internet através de um terminal ou computador"
|
||||
},
|
||||
"4": {
|
||||
"then": "Este lugar tem acesso à Internet com fios/por cabo"
|
||||
}
|
||||
},
|
||||
"question": "Este lugar tem acesso à Internet?"
|
||||
},
|
||||
"internet-fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tem de se pagar para utilizar o acesso à Internet neste local"
|
||||
},
|
||||
"1": {
|
||||
"then": "O acesso à Internet é gratuito neste local"
|
||||
},
|
||||
"2": {
|
||||
"then": "O acesso à Internet é gratuito neste local, apenas para clientes"
|
||||
}
|
||||
},
|
||||
"question": "Tem de se pagar para utilizar o acesso à Internet?"
|
||||
},
|
||||
"internet-ssid": {
|
||||
"freeform": {
|
||||
"placeholder": "Introduza o nome da rede"
|
||||
},
|
||||
"question": "Qual é o nome da rede para o acesso sem fios à Internet?",
|
||||
"render": "O nome da rede é <b>{internet_access:ssid}</b>"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Está no subsolo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Está ao nível do rés-do-chão"
|
||||
},
|
||||
"2": {
|
||||
"then": "Está ao nível do rés-do-chão"
|
||||
},
|
||||
"3": {
|
||||
"then": "Está no primeiro andar"
|
||||
},
|
||||
"4": {
|
||||
"then": "Localizado no primeiro nível da cave"
|
||||
}
|
||||
},
|
||||
"question": "Em que nível se encontra este elemento?",
|
||||
"render": "Está no {level}º andar"
|
||||
},
|
||||
"multilevels": {
|
||||
"override": {
|
||||
"question": "Para que pisos vai este elevador?",
|
||||
"render": "Este elevador vai para os pisos {level}"
|
||||
}
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Qual é o horário de funcionamento de {title()}?",
|
||||
"render": "<h3>Horário de funcionamento</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Aceitam pagamento com dinheiro aqui"
|
||||
},
|
||||
"1": {
|
||||
"then": "Aceitam pagamento com cartões bancários aqui"
|
||||
}
|
||||
},
|
||||
"question": "Que métodos de pagamento são aceites aqui?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "O pagamento é feito utilizando uma aplicação dedicada"
|
||||
},
|
||||
"1": {
|
||||
"then": "O pagamento é feito usando um cartão de membro"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Qual é o número de telefone de {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Há muitas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos"
|
||||
},
|
||||
"1": {
|
||||
"then": "Há algumas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos"
|
||||
},
|
||||
"2": {
|
||||
"then": "Não há tomadas elétricas disponíveis para clientes sentados no interior, mas pode-se pedir aos funcionários para carregar dispositivos eletrónicos"
|
||||
},
|
||||
"3": {
|
||||
"then": "Não há tomadas elétricas disponíveis para clientes sentados no interior"
|
||||
}
|
||||
},
|
||||
"question": "Esta infraestrutura tem tomadas elétricas, disponíveis para os clientes quando estão no interior?"
|
||||
},
|
||||
"smoking": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "<b>É permitido</b> fumar"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>Não é permitido</b> fumar"
|
||||
},
|
||||
"2": {
|
||||
"then": "É permitido fumar <b>no exterior</b>."
|
||||
}
|
||||
},
|
||||
"question": "É permitido fumar em {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Qual é o sítio web de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar está especialmente adaptado para utilizadores de cadeira de rodas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar é de fácil acesso com uma cadeira de rodas"
|
||||
},
|
||||
"2": {
|
||||
"then": "É possível chegar a este local em cadeira de rodas, mas não é fácil"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar não é acessível com uma cadeira de rodas"
|
||||
}
|
||||
},
|
||||
"question": "Este lugar é acessível a utilizadores de cadeiras de rodas?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ainda não foi vinculada nenhuma página da Wikipédia"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ainda não foi vinculada nenhuma página da Wikipédia"
|
||||
}
|
||||
},
|
||||
"question": "Qual é a entidade Wikidata correspondente?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,67 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Ainda há algo de relevante que não pôde dar nas perguntas anteriores? Adicione aqui.",
|
||||
"questionHint": " Não repita fatos já declarados"
|
||||
},
|
||||
"email": {
|
||||
"question": "Qual o endereço de e-mail de {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Localizado no subsolo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Localizado no térreo"
|
||||
},
|
||||
"2": {
|
||||
"then": "Localizado no térreo"
|
||||
},
|
||||
"3": {
|
||||
"then": "Localizado no primeiro andar"
|
||||
}
|
||||
},
|
||||
"question": "Em que nível esse recurso está localizado?",
|
||||
"render": "Localizado no {level}o andar"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Qual o horário de funcionamento de {title()}?",
|
||||
"render": "<h3>Horário de funcionamento</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Dinheiro é aceito aqui"
|
||||
},
|
||||
"1": {
|
||||
"then": "Cartões de pagamento são aceitos aqui"
|
||||
}
|
||||
},
|
||||
"question": "Quais métodos de pagamento são aceitos aqui?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Qual o número de telefone de {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Qual o site de {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Este lugar é especialmente adaptado para usuários de cadeira de rodas"
|
||||
},
|
||||
"1": {
|
||||
"then": "Este lugar é facilmente acessível com uma cadeira de rodas"
|
||||
},
|
||||
"2": {
|
||||
"then": "É possível chegar a esse local em uma cadeira de rodas, mas não é fácil"
|
||||
},
|
||||
"3": {
|
||||
"then": "Este lugar não é alcançável com uma cadeira de rodas"
|
||||
}
|
||||
},
|
||||
"question": "Este lugar é acessível com uma cadeira de rodas?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Есть ли ещё что-то важное, о чём вы не смогли рассказать в предыдущих вопросах? Добавьте это здесь.",
|
||||
"questionHint": "Не повторяйте уже изложенные факты"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Собаки разрешены"
|
||||
},
|
||||
"1": {
|
||||
"then": "С собаками <b>не</b> впускают"
|
||||
},
|
||||
"2": {
|
||||
"then": "Собак впускают, но на поводке"
|
||||
},
|
||||
"3": {
|
||||
"then": "Собак свободно впускают"
|
||||
}
|
||||
},
|
||||
"question": "Впускают ли собак в это здание?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Какой адрес электронной почты у {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Расположено под землей"
|
||||
},
|
||||
"1": {
|
||||
"then": "Расположено на первом этаже"
|
||||
},
|
||||
"2": {
|
||||
"then": "Расположено на первом этаже"
|
||||
},
|
||||
"3": {
|
||||
"then": "Расположено на первом этаже"
|
||||
}
|
||||
},
|
||||
"question": "На каком этаже находится этот объект?",
|
||||
"render": "Расположено на {level}ом этаже"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Какое время работы у {title()}?",
|
||||
"render": "<h3>Часы работы</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Здесь принимают наличными"
|
||||
},
|
||||
"1": {
|
||||
"then": "Здесь принимают банковские карты"
|
||||
}
|
||||
},
|
||||
"question": "Какие способы оплаты здесь принимают?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Какой номер телефона у {title()}?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Какой сайт у {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Это место подходит для людей на инвалидной коляске"
|
||||
},
|
||||
"1": {
|
||||
"then": "До этого места легко добраться на инвалидной коляске"
|
||||
},
|
||||
"2": {
|
||||
"then": "До этого места можно добраться, но не просто"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Никакой страницы на Википедии не было прикреплено"
|
||||
},
|
||||
"1": {
|
||||
"then": "Никакой страницы на Википедии не было прикреплено"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,78 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Ali je še kaj pomembnega, česar niste mogli povedati v prejšnjih vprašanjih? Dopišite tukaj.",
|
||||
"questionHint": "Ne ponavljajte že navedenih dejstev"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Psi so dovoljeni"
|
||||
},
|
||||
"1": {
|
||||
"then": "Psi <b>niso</b> dovoljeni"
|
||||
},
|
||||
"2": {
|
||||
"then": "Psi so dovoljeni, vendar morajo biti na povodcu"
|
||||
},
|
||||
"3": {
|
||||
"then": "Psi so dovoljeni in lahko prosto tekajo naokoli"
|
||||
}
|
||||
},
|
||||
"question": "Ali so v tem podjetju dovoljeni psi?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Kakšen naslov elektronske pošte ima {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Nahaja se pod zemljo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nahaja se v pritličju"
|
||||
},
|
||||
"2": {
|
||||
"then": "Nahaja se v pritličju"
|
||||
},
|
||||
"3": {
|
||||
"then": "Nahaja se v prvem nadstropju"
|
||||
},
|
||||
"4": {
|
||||
"then": "Nahaja se v prvi kletni etaži"
|
||||
}
|
||||
},
|
||||
"render": "Nahaja se v {level}. nadstropju"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Kakšen odpiralni čas ima {title()}?",
|
||||
"render": "<h3>Odpiralni čas</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tu sprejemajo gotovino"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tukaj sprejemajo plačilne kartice"
|
||||
}
|
||||
},
|
||||
"question": "Kateri načini plačila so možni tu?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "Plačilo se opravi z namensko aplikacijo"
|
||||
},
|
||||
"1": {
|
||||
"then": "Plačilo se izvede s člansko izkaznico"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "Kakšno telefonsko številko ima {title()}?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,112 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "Finns det fortfarande någonting relevant som du inte kunde ge i de föregående frågorna? Lägg till det här.",
|
||||
"questionHint": "Repetera inte redan angivna fakta"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hundar tillåts"
|
||||
},
|
||||
"1": {
|
||||
"then": "Hundar tillåts <b>inte</b>"
|
||||
},
|
||||
"2": {
|
||||
"then": "Hundar tillåts, men de måste vara kopplade"
|
||||
},
|
||||
"3": {
|
||||
"then": "Hundar tillåts och får springa fritt omkring"
|
||||
}
|
||||
},
|
||||
"question": "Tillåts hundar i den här affären?"
|
||||
},
|
||||
"email": {
|
||||
"question": "Vad är e-postadressen till {title()}?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ligger under jorden"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ligger på bottenvåningen"
|
||||
},
|
||||
"2": {
|
||||
"then": "Ligger på bottenvåningen"
|
||||
},
|
||||
"3": {
|
||||
"then": "Ligger på första våningen"
|
||||
}
|
||||
},
|
||||
"question": "På vilken nivå finns den här funktionen?",
|
||||
"render": "Ligger på {level}:e våningen"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "Vilka är öppettiderna för {title()}?",
|
||||
"render": "<h3>Öppettider</h3> {opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pengar accepteras här"
|
||||
},
|
||||
"1": {
|
||||
"then": "Betalningskort accepteras här"
|
||||
}
|
||||
},
|
||||
"question": "Vilka betalningsmetoder accepteras här?"
|
||||
},
|
||||
"phone": {
|
||||
"question": "Vad är telefonnumret till {title()}?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det finns gott om hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik"
|
||||
},
|
||||
"1": {
|
||||
"then": "Det finns ett fåtal hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det finns inga uttag tillgängliga inomhus för kunder, men att ladda kan vara möjligt om personalen tillfrågas"
|
||||
},
|
||||
"3": {
|
||||
"then": "Det finns inga hushållsuttag tillgängliga för kunder som sitter inomhus"
|
||||
}
|
||||
},
|
||||
"question": "Har den här bekvämligheten eluttag tillgängliga för kunder när de är inne?"
|
||||
},
|
||||
"website": {
|
||||
"question": "Vad är webbplatsen för {title()}?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Det här stället är speciellt anpassat för rullstolsburna användare"
|
||||
},
|
||||
"1": {
|
||||
"then": "Denna plats är lätt att nå med rullstol"
|
||||
},
|
||||
"2": {
|
||||
"then": "Det är möjligt att nå den här platsen i en rullstol, men det är inte lätt"
|
||||
},
|
||||
"3": {
|
||||
"then": "Den här platsen kan inte nås med en rullstol"
|
||||
}
|
||||
},
|
||||
"question": "Är det här stället tillgängligt med en rullstol?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Ingen Wikipedia-sida har länkats än"
|
||||
},
|
||||
"1": {
|
||||
"then": "Ingen Wikipedia-sida har länkats än"
|
||||
}
|
||||
},
|
||||
"question": "Vad är den motsvarande Wikidata-enheten?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
{}
|
|
@ -1,68 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "允许犬只"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>不</b>允许犬只"
|
||||
},
|
||||
"2": {
|
||||
"then": "允许犬只,但必须拴绳"
|
||||
},
|
||||
"3": {
|
||||
"then": "允许犬只,且可自由放养"
|
||||
}
|
||||
},
|
||||
"question": "犬只是否在这个商业体中允许?"
|
||||
},
|
||||
"email": {
|
||||
"question": "{title()} 的电子邮箱地址为何?"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "{title()} 的开放时间为何?",
|
||||
"render": "<h3>开放时间</h3> {opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "可用现金"
|
||||
},
|
||||
"1": {
|
||||
"then": "可用信用卡"
|
||||
}
|
||||
},
|
||||
"question": "这里支持哪些支付方式?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "使用专用APP支付"
|
||||
},
|
||||
"1": {
|
||||
"then": "使用会员卡支付"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "{title()} 的电话号码为何?"
|
||||
},
|
||||
"website": {
|
||||
"question": "{title()} 的网站为何?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "尚未有连接到的维基百科页面"
|
||||
},
|
||||
"1": {
|
||||
"then": "尚未有连接到的维基百科页面"
|
||||
}
|
||||
},
|
||||
"question": "在Wikidata上对应的实体是什么?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,136 +0,0 @@
|
|||
{
|
||||
"questions": {
|
||||
"description": {
|
||||
"question": "有什麼相關的資訊你無法在先前的問題回應的嗎?請加在這邊吧。",
|
||||
"questionHint": "不要重覆答覆已經知道的事情"
|
||||
},
|
||||
"dog-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "允許犬隻"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>不</b>允許犬隻"
|
||||
},
|
||||
"2": {
|
||||
"then": "允許犬隻,但需要掛牽繩"
|
||||
},
|
||||
"3": {
|
||||
"then": "允許犬隻而且可以自由跑動"
|
||||
}
|
||||
},
|
||||
"question": "這間商業空間是否允許犬隻?"
|
||||
},
|
||||
"email": {
|
||||
"question": "{title()} 的電子郵件地址是什麼?"
|
||||
},
|
||||
"level": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "位於地下"
|
||||
},
|
||||
"1": {
|
||||
"then": "位於 1 樓"
|
||||
},
|
||||
"2": {
|
||||
"then": "位於 1 樓"
|
||||
},
|
||||
"3": {
|
||||
"then": "位於 2 樓"
|
||||
},
|
||||
"4": {
|
||||
"then": "位於地下一樓"
|
||||
}
|
||||
},
|
||||
"question": "此圖徽位於哪個樓層/層級?",
|
||||
"render": "位於 {level} 樓"
|
||||
},
|
||||
"opening_hours": {
|
||||
"question": "{title()} 的開放時間是什麼?",
|
||||
"render": "<h3>開放時間</h3>{opening_hours_table(opening_hours)}"
|
||||
},
|
||||
"opening_hours_24_7": {
|
||||
"override": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "24/7 開放 (包括假日)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"payment-options": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "這邊接受現金"
|
||||
},
|
||||
"1": {
|
||||
"then": "這邊接受現金卡"
|
||||
}
|
||||
},
|
||||
"question": "這邊接受那種付款方式?"
|
||||
},
|
||||
"payment-options-advanced": {
|
||||
"override": {
|
||||
"mappings+": {
|
||||
"0": {
|
||||
"then": "使用專用應用程式付款"
|
||||
},
|
||||
"1": {
|
||||
"then": "使用會員卡付款"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"phone": {
|
||||
"question": "{title()} 的電話號碼是什麼?"
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "這邊的客戶座位有不少個室內插座,而且可以為電器充電"
|
||||
},
|
||||
"1": {
|
||||
"then": "這邊客戶座位有一些室內插座,可以為電器充電"
|
||||
},
|
||||
"2": {
|
||||
"then": "這邊沒有給客戶用的插座,因此可能需要詢問員工是否能充電"
|
||||
},
|
||||
"3": {
|
||||
"then": "這裡客戶座位沒有室內插座"
|
||||
}
|
||||
},
|
||||
"question": "這個便利設施有電器設備,能給客戶使用嗎?"
|
||||
},
|
||||
"website": {
|
||||
"question": "{title()} 網址是什麼?"
|
||||
},
|
||||
"wheelchair-access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "這個地方有特別設計給輪椅使用者"
|
||||
},
|
||||
"1": {
|
||||
"then": "這個地方坐輪椅很容易到達"
|
||||
},
|
||||
"2": {
|
||||
"then": "這個地方可以坐輪椅到達,但並不容易"
|
||||
},
|
||||
"3": {
|
||||
"then": "輪椅無法到達這個地方"
|
||||
}
|
||||
},
|
||||
"question": "這個地方可以坐輪椅到達嗎?"
|
||||
},
|
||||
"wikipedia": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "還沒有連結到維基百科頁面"
|
||||
},
|
||||
"1": {
|
||||
"then": "還沒有連結到維基百科頁面"
|
||||
}
|
||||
},
|
||||
"question": "對應的維基資料項目是?"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -607,6 +607,87 @@
|
|||
"description": "On this map, you'll find information about all types of schools and education and can easily add more information",
|
||||
"title": "Education"
|
||||
},
|
||||
"elongated_coin": {
|
||||
"description": "Find penny presses to create your own elongated coins.",
|
||||
"layers": {
|
||||
"0": {
|
||||
"description": "Layer showing penny presses.",
|
||||
"name": "Penny Presses",
|
||||
"presets": {
|
||||
"0": {
|
||||
"title": "a penny press"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"charge": {
|
||||
"freeform": {
|
||||
"placeholder": "Cost (e.g. 0.50 EUR)"
|
||||
},
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "It costs 1 euro to press a penny."
|
||||
},
|
||||
"1": {
|
||||
"then": "It costs 2 euros to press a penny."
|
||||
}
|
||||
},
|
||||
"question": "How much does it cost to press a penny?",
|
||||
"render": "It costs {charge} to press a penny."
|
||||
},
|
||||
"coin": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This penny press uses a 2 cent coin for pressing."
|
||||
},
|
||||
"1": {
|
||||
"then": "This penny press uses a 5 cent coin for pressing."
|
||||
},
|
||||
"2": {
|
||||
"then": "This penny press uses a 10 cent coin for pressing."
|
||||
}
|
||||
},
|
||||
"question": "What coin is used for pressing?"
|
||||
},
|
||||
"designs": {
|
||||
"freeform": {
|
||||
"placeholder": "Number of designs (e.g. 5)"
|
||||
},
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This penny press has one design available."
|
||||
},
|
||||
"1": {
|
||||
"then": "This penny press has two designs available."
|
||||
},
|
||||
"2": {
|
||||
"then": "This penny press has three designs available."
|
||||
},
|
||||
"3": {
|
||||
"then": "This penny press has four designs available."
|
||||
}
|
||||
},
|
||||
"question": "How many designs are available?",
|
||||
"render": "This penny press has {coin:design_count} designs available."
|
||||
},
|
||||
"indoor": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "This penny press is located indoors."
|
||||
},
|
||||
"1": {
|
||||
"then": "This penny press is located outdoors."
|
||||
}
|
||||
},
|
||||
"question": "Is the penny press indoors?"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"render": "Penny Press"
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "Penny Presses"
|
||||
},
|
||||
"etymology": {
|
||||
"description": "On this map, you can see what an object is named after. The streets, buildings, ... come from OpenStreetMap which got linked with Wikidata. In the popup, you'll see the Wikipedia article (if it exists) or a wikidata box of what the object is named after. If the object itself has a wikipedia page, that'll be shown too.<br/><br/><b>You can help contribute too!</b>Zoom in enough and <i>all</i> streets will show up. You can click one and a Wikidata-search box will popup. With a few clicks, you can add an etymology link. Note that you need a free OpenStreetMap account to do this.",
|
||||
"layers": {
|
||||
|
@ -1317,6 +1398,10 @@
|
|||
"shortDescription": "Map all the trees",
|
||||
"title": "Trees"
|
||||
},
|
||||
"vending_machine": {
|
||||
"description": "Find vending machines for everything",
|
||||
"title": "Vending Machines"
|
||||
},
|
||||
"walls_and_buildings": {
|
||||
"description": "Special builtin layer providing all walls and buildings. This layer is useful in presets for objects which can be placed against walls (e.g. AEDs, postboxes, entrances, addresses, surveillance cameras, …). This layer is invisible by default and not toggleable by the user.",
|
||||
"title": "Walls and buildings"
|
||||
|
|
|
@ -1430,6 +1430,10 @@
|
|||
"shortDescription": "Breng bomen in kaart",
|
||||
"title": "Bomen"
|
||||
},
|
||||
"vending_machine": {
|
||||
"description": "Vind verkoopautomaten voor alles",
|
||||
"title": "Verkoopautomaten"
|
||||
},
|
||||
"walls_and_buildings": {
|
||||
"description": "Speciale ingebouwde laag voor alle muren en gebouwen. Deze laag is nuttig in voorkeuzen voor objecten die tegen muren geplaatst kunnen worden (bv. AEDs, brievenbussen, ingangen, adressen, beveiligingscamera's,…). Deze laag is standaard onzichtbaar en niet in te schakelen door de gebruiker.",
|
||||
"title": "Muren en gebouwen"
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
[
|
||||
{
|
||||
"path": "hospital.svg",
|
||||
"license": "CC-0",
|
||||
"authors": [
|
||||
"osmcarto"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Hospital-14.svg"
|
||||
]
|
||||
}
|
||||
]
|
|
@ -32,16 +32,16 @@
|
|||
"query:licenses": "vite-node scripts/generateLicenseInfo.ts -- --query",
|
||||
"generate:contributor-list": "vite-node scripts/generateContributors.ts",
|
||||
"generate:schemas": "ts2json-schema -p Models/ThemeConfig/Json/ -o Docs/Schemas/ -t tsconfig.json -R . -m \".*ConfigJson\" && vite-node scripts/fixSchemas.ts ",
|
||||
"generate:service-worker": "tsc service-worker.ts --outFile public/service-worker.js && git_hash=$(git rev-parse HEAD) && sed -i \"s/GITHUB-COMMIT/$git_hash/\" public/service-worker.js",
|
||||
"generate:service-worker": "tsc src/service-worker.ts --outFile public/service-worker.js && git_hash=$(git rev-parse HEAD) && sed -i \"s/GITHUB-COMMIT/$git_hash/\" public/service-worker.js",
|
||||
"optimize-images": "cd assets/generated/ && find -name '*.png' -exec optipng '{}' \\; && echo 'PNGs are optimized'",
|
||||
"generate:stats": "vite-node scripts/GenerateSeries.ts",
|
||||
"reset:layeroverview": "mkdir -p ./assets/generated/layers; echo {\\\"themes\\\":[]} > ./assets/generated/known_themes.json && echo {\\\"layers\\\": []} > ./assets/generated/known_layers.json && rm -f ./assets/generated/layers/*.json && rm -f ./assets/generated/themes/*.json && cp ./assets/layers/usersettings/usersettings.json ./assets/generated/layers/usersettings.json && npm run generate:layeroverview && vite-node scripts/generateLayerOverview.ts -- --force",
|
||||
"reset:layeroverview": "mkdir -p ./src/assets/generated/layers; echo {\\\"themes\\\":[]} > ./src/assets/generated/known_themes.json && echo {\\\"layers\\\": []} > ./src/assets/generated/known_layers.json && rm -f ./src/assets/generated/layers/*.json && rm -f ./src/assets/generated/themes/*.json && cp ./assets/layers/usersettings/usersettings.json ./src/assets/generated/layers/usersettings.json && npm run generate:layeroverview && vite-node scripts/generateLayerOverview.ts -- --force",
|
||||
"generate": "mkdir -p ./assets/generated; npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:translations; npm run reset:layeroverview; npm run generate:service-worker",
|
||||
"generate:charging-stations": "cd ./assets/layers/charging_station && vite-node csvToJson.ts && cd -",
|
||||
"prepare-deploy": "npm run generate:service-worker && ./scripts/build.sh",
|
||||
"format": "prettier --write '**/*.ts' '**/*.svelte'",
|
||||
"clean:tests": "(find . -type f -name \"*.doctest.ts\" | xargs -r rm)",
|
||||
"clean": "rm -rf .cache/ && (find *.html | grep -v \"^\\(404\\|index\\|land\\|test\\|studio\\|theme\\|style_test\\|statistics\\).html\" | xargs -r rm) && (ls | grep \"^index_[a-zA-Z_-]\\+\\.ts$\" | xargs -r rm) && (ls | grep \".*.webmanifest$\" | grep -v \"manifest.webmanifest\" | xargs -r rm)",
|
||||
"clean:tests": "find . -type f -name \"*.doctest.ts\" | xargs -r rm",
|
||||
"clean": "rm -rf .cache/ && (find *.html | grep -v \"^\\(404\\|index\\|land\\|test\\|studio\\|theme\\|style_test\\|statistics\\).html\" | xargs -r rm) && (ls | grep \"^index_[a-zA-Z_-]\\+\\.ts$\" | xargs -r rm)",
|
||||
"generate:dependency-graph": "node_modules/.bin/depcruise --exclude \"^node_modules\" --output-type dot Logic/State/MapState.ts > dependencies.dot && dot dependencies.dot -T svg -o dependencies.svg && rm dependencies.dot",
|
||||
"weblate-add-upstream": "git remote add weblate-github git@github.com:weblate/MapComplete.git && git remote add weblate-hosted-core https://hosted.weblate.org/git/mapcomplete/core/ && git remote add weblate-hosted-layers https://hosted.weblate.org/git/mapcomplete/layers/",
|
||||
"weblate-merge": "git remote update weblate-github; git merge weblate-github/weblate-mapcomplete-core weblate-github/weblate-mapcomplete-layers weblate-github/weblate-mapcomplete-layer-translations",
|
||||
|
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |