Merge develop
1
.eslintignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
src/test.ts
|
27
.eslintrc.cjs
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
/* eslint-env node */
|
||||||
|
module.exports = {
|
||||||
|
extends: [
|
||||||
|
"eslint:recommended",
|
||||||
|
"plugin:@typescript-eslint/recommended",
|
||||||
|
"plugin:svelte/recommended",
|
||||||
|
],
|
||||||
|
parser: "@typescript-eslint/parser",
|
||||||
|
parserOptions: {
|
||||||
|
extraFileExtensions: [".svelte"],
|
||||||
|
},
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
files: ["*.svelte"],
|
||||||
|
parser: "svelte-eslint-parser",
|
||||||
|
parserOptions: {
|
||||||
|
parser: "@typescript-eslint/parser",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
plugins: ["@typescript-eslint"],
|
||||||
|
root: true,
|
||||||
|
env: {
|
||||||
|
browser: true,
|
||||||
|
node: true,
|
||||||
|
},
|
||||||
|
}
|
|
@ -18,6 +18,9 @@ runs:
|
||||||
run: npm ci
|
run: npm ci
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
- name: REUSE compliance check
|
||||||
|
uses: fsfe/reuse-action@v2
|
||||||
|
|
||||||
- name: create generated dir
|
- name: create generated dir
|
||||||
run: mkdir ./assets/generated
|
run: mkdir ./assets/generated
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
81
.github/workflows/deploy_dev.yml
vendored
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
name: Deploy develop on dev.mapcomplete.org
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: "16"
|
||||||
|
cache: "npm"
|
||||||
|
cache-dependency-path: package-lock.json
|
||||||
|
|
||||||
|
- name: install deps
|
||||||
|
run: npm ci
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: create generated dir
|
||||||
|
run: mkdir ./assets/generated
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: create dependencies
|
||||||
|
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run generate:editor-layer-index
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: sync translations
|
||||||
|
run: npm run generate:translations
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: generate layeroverview
|
||||||
|
run: npm run reset:layeroverview
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: run tests
|
||||||
|
run: npm run test
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Prepare deploy
|
||||||
|
run: npm run prepare-deploy
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Clone deployment repo
|
||||||
|
env:
|
||||||
|
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||||
|
run: |
|
||||||
|
echo "Cloning destination repo"
|
||||||
|
git config --global user.email "pietervdvn@posteo.net"
|
||||||
|
git config --global user.name "pietervdvn"
|
||||||
|
git clone --depth 1 --single-branch --branch main "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/MapComplete/mapcomplete-dev.git"
|
||||||
|
echo "Destination repo is cloned"
|
||||||
|
|
||||||
|
- name: Sync repo
|
||||||
|
env:
|
||||||
|
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||||
|
run: |
|
||||||
|
cd mapcomplete-dev
|
||||||
|
git pull
|
||||||
|
|
||||||
|
- name: "Copying files"
|
||||||
|
run: |
|
||||||
|
echo "Deploying"
|
||||||
|
rm -rf mapcomplete-dev/*
|
||||||
|
cp -r dist/* mapcomplete-dev/
|
||||||
|
cd mapcomplete-dev/
|
||||||
|
echo "dev.mapcomplete.org" > CNAME
|
||||||
|
touch .nojekyll
|
||||||
|
git add *
|
||||||
|
if git status | grep -q "Changes to be committed"
|
||||||
|
then
|
||||||
|
git commit -am "Deploying a new version"
|
||||||
|
git push
|
||||||
|
else
|
||||||
|
echo "No changes to commit"
|
||||||
|
fi
|
||||||
|
|
1
.github/workflows/deploy_pietervdvn.yml
vendored
|
@ -2,7 +2,6 @@ name: Deployment on pietervdvn
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- develop
|
|
||||||
- feature/*
|
- feature/*
|
||||||
- theme/*
|
- theme/*
|
||||||
- refactoring/*
|
- refactoring/*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name: Theme Validation and deployment
|
name: Deploy master on mapcomplete.org
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
|
@ -8,7 +8,7 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
|
@ -69,6 +69,7 @@ jobs:
|
||||||
cp -r dist/* mapcomplete.github.io/
|
cp -r dist/* mapcomplete.github.io/
|
||||||
cd mapcomplete.github.io/
|
cd mapcomplete.github.io/
|
||||||
echo "mapcomplete.org" > CNAME
|
echo "mapcomplete.org" > CNAME
|
||||||
|
touch .nojekyll
|
||||||
git add *
|
git add *
|
||||||
if git status | grep -q "Changes to be committed"
|
if git status | grep -q "Changes to be committed"
|
||||||
then
|
then
|
11
.github/workflows/reuse-compliance-check.yml
vendored
|
@ -1,11 +0,0 @@
|
||||||
name: REUSE Compliance Check
|
|
||||||
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: REUSE Compliance Check
|
|
||||||
uses: fsfe/reuse-action@v2
|
|
52
.github/workflows/validate-pr.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build and validate PR
|
name: Build and validate PR (but don't deploy)
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
|
@ -38,53 +38,3 @@ jobs:
|
||||||
- name: run tests
|
- name: run tests
|
||||||
run: npm run test
|
run: npm run test
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Prepare deploy
|
|
||||||
run: npm run prepare-deploy
|
|
||||||
shell: bash
|
|
||||||
- name: Clone deployment repo
|
|
||||||
env:
|
|
||||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
|
||||||
run: |
|
|
||||||
echo "Cloning destination repo"
|
|
||||||
git config --global user.email "pietervdvn@posteo.net"
|
|
||||||
git config --global user.name "pietervdvn"
|
|
||||||
git clone --depth 1 --single-branch --branch master "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/pietervdvn/pietervdvn.github.io.git"
|
|
||||||
echo "Destination repo is cloned"
|
|
||||||
|
|
||||||
- name: Sync repo
|
|
||||||
env:
|
|
||||||
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
|
||||||
run: |
|
|
||||||
cd pietervdvn.github.io
|
|
||||||
git pull
|
|
||||||
|
|
||||||
- name: get branch name
|
|
||||||
run: echo TARGET_BRANCH=${GITHUB_REF:11} >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: "Copying files"
|
|
||||||
run: |
|
|
||||||
echo "Deploying"
|
|
||||||
rm -rf pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/*
|
|
||||||
mkdir -p pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
|
|
||||||
cp -r dist/* pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
|
|
||||||
cd pietervdvn.github.io/
|
|
||||||
git add *
|
|
||||||
if git status | grep -q "Changes to be committed"
|
|
||||||
then
|
|
||||||
git commit -am "Deploying a new version of mapcomplete"
|
|
||||||
git push
|
|
||||||
else
|
|
||||||
echo "No changes to commit"
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
TARGET_BRANCH: ${{ env.TARGET_BRANCH }}
|
|
||||||
|
|
||||||
- uses: mshick/add-pr-comment@v1
|
|
||||||
name: Comment the PR with the review URL
|
|
||||||
if: ${{ success() && github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/master' }}
|
|
||||||
with:
|
|
||||||
message: |
|
|
||||||
[🚀 Preview Branch](https://pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }})
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
|
|
37
.github/workflows/validate_translations.yml
vendored
|
@ -1,37 +0,0 @@
|
||||||
name: Deployment on pietervdvn
|
|
||||||
on:
|
|
||||||
pull_request
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: ${{ github.actor == 'weblate' }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set up Node.js
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: "16"
|
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: package-lock.json
|
|
||||||
|
|
||||||
- name: install deps
|
|
||||||
run: npm ci
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: create generated dir
|
|
||||||
run: mkdir ./assets/generated
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: sync translations
|
|
||||||
run: npm run generate:translations
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: generate layeroverview
|
|
||||||
run: npm run reset:layeroverview
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: run tests
|
|
||||||
run: npm run test
|
|
||||||
shell: bash
|
|
1
.gitignore
vendored
|
@ -23,6 +23,7 @@ index_*.ts
|
||||||
.~lock.*
|
.~lock.*
|
||||||
*.doctest.ts
|
*.doctest.ts
|
||||||
service-worker.js
|
service-worker.js
|
||||||
|
.env
|
||||||
|
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/settings.json
|
!.vscode/settings.json
|
||||||
|
|
2
.nvmrc
|
@ -1 +1 @@
|
||||||
nodejs 16.9.1
|
16.9.1
|
||||||
|
|
17
.vscode/extensions.json
vendored
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"esbenp.prettier-vscode",
|
"esbenp.prettier-vscode",
|
||||||
"eamodio.gitlens",
|
"eamodio.gitlens",
|
||||||
"github.vscode-pull-request-github",
|
"github.vscode-pull-request-github",
|
||||||
"svelte.svelte-vscode",
|
"svelte.svelte-vscode",
|
||||||
"bradlc.vscode-tailwindcss",
|
"bradlc.vscode-tailwindcss",
|
||||||
"editorconfig.editorconfig"
|
"editorconfig.editorconfig",
|
||||||
]
|
"dbaeumer.vscode-eslint"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
382
Docs/Layers/all_vending_machine.md
Normal file
|
@ -0,0 +1,382 @@
|
||||||
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
|
all_vending_machine
|
||||||
|
=====================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.org/./assets/layers/vending_machine/vending_machine.svg' height="100px">
|
||||||
|
|
||||||
|
Layer showing vending machines
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is shown at zoomlevel **18** and higher
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- [vending_machine](https://mapcomplete.org/vending_machine)
|
||||||
|
|
||||||
|
|
||||||
|
This is a special layer - data is not sourced from OpenStreetMap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Warning:
|
||||||
|
|
||||||
|
this quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attribute | type | values which are supported by this layer
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/vending#values) [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | [string](../SpecialInputElements.md#string) | [drinks](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks) [sweets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets) [food](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfood) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcigarettes) [condoms](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcondoms) [coffee](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcoffee) [water](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dwater) [newspapers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dnewspapers) [bicycle_tube](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_tube) [milk](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmilk) [bread](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbread) [eggs](https://wiki.openstreetmap.org/wiki/Tag:vending%3Deggs) [cheese](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcheese) [honey](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dhoney) [potatoes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpotatoes) [flowers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dflowers) [parking_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dparking_tickets) [elongated_coin](https://wiki.openstreetmap.org/wiki/Tag:vending%3Delongated_coin) [public_transport_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpublic_transport_tickets)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values) [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values) [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### just_created
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This element shows a 'thank you' that the contributor has recently created this element
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### vending
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What does this vending machine sell?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [vending](https://wiki.openstreetmap.org/wiki/Key:vending)
|
||||||
|
|
||||||
|
This is rendered with `This vending machine sells {vending}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Drinks are sold* corresponds with `vending=drinks`
|
||||||
|
- *Sweets are sold* corresponds with `vending=sweets`
|
||||||
|
- *Food is sold* corresponds with `vending=food`
|
||||||
|
- *Cigarettes are sold* corresponds with `vending=cigarettes`
|
||||||
|
- *Condoms are sold* corresponds with `vending=condoms`
|
||||||
|
- *Coffee is sold* corresponds with `vending=coffee`
|
||||||
|
- *Drinking water is sold* corresponds with `vending=water`
|
||||||
|
- *Newspapers are sold* corresponds with `vending=newspapers`
|
||||||
|
- *Bicycle inner tubes are sold* corresponds with `vending=bicycle_tube`
|
||||||
|
- *Milk is sold* corresponds with `vending=milk`
|
||||||
|
- *Bread is sold* corresponds with `vending=bread`
|
||||||
|
- *Eggs are sold* corresponds with `vending=eggs`
|
||||||
|
- *Cheese is sold* corresponds with `vending=cheese`
|
||||||
|
- *Honey is sold* corresponds with `vending=honey`
|
||||||
|
- *Potatoes are sold* corresponds with `vending=potatoes`
|
||||||
|
- *Flowers are sold* corresponds with `vending=flowers`
|
||||||
|
- *Parking tickets are sold* corresponds with `vending=parking_tickets`
|
||||||
|
- *Pressed pennies are sold* corresponds with `vending=elongated_coin`
|
||||||
|
- *Public transport tickets are sold* corresponds with `vending=public_transport_tickets`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### opening_hours_24_7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### payment-options-split
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Which methods of payment are accepted here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Payment cards are accepted here* corresponds with `payment:cards=yes`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Payment by QR-code is possible here* corresponds with `payment:qr_code=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
|
||||||
|
- *Coins are accepted here* corresponds with `payment:coins=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dno' target='_blank'>no</a>
|
||||||
|
- *Bank notes are accepted here* corresponds with `payment:notes=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dno' target='_blank'>no</a>
|
||||||
|
- *Debit cards are accepted here* corresponds with `payment:debit_cards=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:debit_cards' target='_blank'>payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:debit_cards%3Dno' target='_blank'>no</a>
|
||||||
|
- *Credit cards are accepted here* corresponds with `payment:credit_cards=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:credit_cards' target='_blank'>payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:credit_cards%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### denominations-coins
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What coins can you use to pay here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *1 cent coins are accepted* corresponds with `payment:coins:denominations=0.01 EUR`
|
||||||
|
- *2 cent coins are accepted* corresponds with `payment:coins:denominations=0.02 EUR`
|
||||||
|
- *5 cent coins are accepted* corresponds with `payment:coins:denominations=0.05 EUR`
|
||||||
|
- *10 cent coins are accepted* corresponds with `payment:coins:denominations=0.10 EUR`
|
||||||
|
- *20 cent coins are accepted* corresponds with `payment:coins:denominations=0.20 EUR`
|
||||||
|
- *50 cent coins are accepted* corresponds with `payment:coins:denominations=0.50 EUR`
|
||||||
|
- *1 euro coins are accepted* corresponds with `payment:coins:denominations=1 EUR`
|
||||||
|
- *2 euro coins are accepted* corresponds with `payment:coins:denominations=2 EUR`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `payment:coins=yes|payment:cash=yes&_currency=EUR`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### denominations-notes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *what notes can you use to pay here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *5 euro notes are accepted* corresponds with `payment:notes:denominations=5 EUR`
|
||||||
|
- *10 euro notes are accepted* corresponds with `payment:notes:denominations=10 EUR`
|
||||||
|
- *20 euro notes are accepted* corresponds with `payment:notes:denominations=20 EUR`
|
||||||
|
- *50 euro notes are accepted* corresponds with `payment:notes:denominations=50 EUR`
|
||||||
|
- *100 euro notes are accepted* corresponds with `payment:notes:denominations=100 EUR`
|
||||||
|
- *200 euro notes are accepted* corresponds with `payment:notes:denominations=200 EUR`
|
||||||
|
- *500 euro notes are accepted* corresponds with `payment:notes:denominations=500 EUR`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `payment:notes=yes|payment:cash=yes&_currency=EUR`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### operator
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Who operates this vending machine?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `This vending machine is operated by {operator}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### indoor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is this vending machine indoors?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This vending machine is outdoors* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *This vending machine is indoors* corresponds with `indoor=yes`
|
||||||
|
- *This vending machine is outdoors* corresponds with `indoor=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### level
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *On what level is this feature located?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||||
|
|
||||||
|
This is rendered with `Located on the {level}th floor`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Located underground* corresponds with `location=underground`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *Located on the ground floor* corresponds with `level=0`
|
||||||
|
- *Located on the ground floor* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *Located on the first floor* corresponds with `level=1`
|
||||||
|
- *Located on the first basement level* corresponds with `level=-1`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### leftover-questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Shows a small map with the feature. Added by default to every popup
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### move-button
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### delete-button
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### last_edit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### all-tags
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Filters
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
open_now.0 | Open now | _isOpen=yes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
vending.0 | All vending machines (default) |
|
||||||
|
vending.1 | Sale of drinks | vending~^(.*drinks.*)$
|
||||||
|
vending.2 | Sale of sweets | vending~^(.*sweets.*)$
|
||||||
|
vending.3 | Sale of food | vending~^(.*food.*)$
|
||||||
|
vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$
|
||||||
|
vending.5 | Sale of condoms | vending~^(.*condoms.*)$
|
||||||
|
vending.6 | Sale of coffee | vending~^(.*coffee.*)$
|
||||||
|
vending.7 | Sale of water | vending~^(.*water.*)$
|
||||||
|
vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$
|
||||||
|
vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$
|
||||||
|
vending.10 | Sale of milk | vending~^(.*milk.*)$
|
||||||
|
vending.11 | Sale of bread | vending~^(.*bread.*)$
|
||||||
|
vending.12 | Sale of eggs | vending~^(.*eggs.*)$
|
||||||
|
vending.13 | Sale of cheese | vending~^(.*cheese.*)$
|
||||||
|
vending.14 | Sale of honey | vending~^(.*honey.*)$
|
||||||
|
vending.15 | Sale of potatoes | vending~^(.*potatoes.*)$
|
||||||
|
vending.16 | Sale of flowers | vending~^(.*flowers.*)$
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/themes/vending_machine/vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/vending_machine/vending_machine.json)
|
325
Docs/Layers/post_offices_with_atm.md
Normal file
|
@ -0,0 +1,325 @@
|
||||||
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
|
post_offices_with_atm
|
||||||
|
=======================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.org/square:white;./assets/layers/postoffices/post_office.svg' height="100px">
|
||||||
|
|
||||||
|
A layer showing post offices.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is shown at zoomlevel **14** and higher
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- [atm](https://mapcomplete.org/atm)
|
||||||
|
|
||||||
|
|
||||||
|
This is a special layer - data is not sourced from OpenStreetMap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Warning:
|
||||||
|
|
||||||
|
this quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attribute | type | values which are supported by this layer
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/id#values) [id](https://wiki.openstreetmap.org/wiki/Key:id) | Multiple choice |
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/post_office#values) [post_office](https://wiki.openstreetmap.org/wiki/Key:post_office) | Multiple choice | [post_partner](https://wiki.openstreetmap.org/wiki/Tag:post_office%3Dpost_partner) [](https://wiki.openstreetmap.org/wiki/Tag:post_office%3D)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/post_office:brand#values) [post_office:brand](https://wiki.openstreetmap.org/wiki/Key:post_office:brand) | [string](../SpecialInputElements.md#string) | [DHL](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDHL) [DPD](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDPD) [GLS](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DGLS) [UPS](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DUPS) [DHL Paketshop](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DDHL Paketshop) [Hermes PaketShop](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DHermes PaketShop) [PostNL](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3DPostNL) [bpost](https://wiki.openstreetmap.org/wiki/Tag:post_office:brand%3Dbpost)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/post_office:letter_from#values) [post_office:letter_from](https://wiki.openstreetmap.org/wiki/Key:post_office:letter_from) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:letter_from%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:letter_from%3Dno)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/post_office:parcel_from#values) [post_office:parcel_from](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_from) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_from%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_from%3Dno)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/post_office:parcel_pickup#values) [post_office:parcel_pickup](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_pickup) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_pickup%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_pickup%3Dno)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/post_office:parcel_to#values) [post_office:parcel_to](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_to) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_to%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:parcel_to%3Dno)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/post_office:stamps#values) [post_office:stamps](https://wiki.openstreetmap.org/wiki/Key:post_office:stamps) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:post_office:stamps%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:post_office:stamps%3Dno)
|
||||||
|
[<img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### just_created
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This element shows a 'thank you' that the contributor has recently created this element
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You just created this element! Thanks for sharing this info with the world and helping people worldwide.* corresponds with `id~.+`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `_backend~.+&_last_edit:passed_time<300&|_version_number=1`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What are the opening hours for this post office?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### post_partner
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is this a post partner?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This shop is a post partner* corresponds with `post_office=post_partner`
|
||||||
|
- *This shop is not a post partner* corresponds with ``
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `post_office=post_partner`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### partner-brand
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *For which brand does this location offer services?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [post_office:brand](https://wiki.openstreetmap.org/wiki/Key:post_office:brand)
|
||||||
|
|
||||||
|
This is rendered with `This location offers services for {post_office:brand}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This location offers services for DHL* corresponds with `post_office:brand=DHL`
|
||||||
|
- *This location offers services for DPD* corresponds with `post_office:brand=DPD`
|
||||||
|
- *This location offers services for GLS* corresponds with `post_office:brand=GLS`
|
||||||
|
- *This location offers services for UPS* corresponds with `post_office:brand=UPS`
|
||||||
|
- *This location is a DHL Paketshop* corresponds with `post_office:brand=DHL Paketshop`
|
||||||
|
- *This location is a Hermes PaketShop* corresponds with `post_office:brand=Hermes PaketShop`
|
||||||
|
- *This location is a PostNL-point* corresponds with `post_office:brand=PostNL`
|
||||||
|
- *This location offers services for bpost* corresponds with `post_office:brand=bpost`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `post_office=post_partner`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### letter-from
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Can you post a letter here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [post_office:letter_from](https://wiki.openstreetmap.org/wiki/Key:post_office:letter_from)
|
||||||
|
|
||||||
|
This is rendered with `You can post letters with these companies: {post_office:letter_from}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You can post letters here* corresponds with `post_office:letter_from=yes`
|
||||||
|
- *You can't post letters here* corresponds with `post_office:letter_from=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### parcel-from
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Can you send a parcel here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [post_office:parcel_from](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_from)
|
||||||
|
|
||||||
|
This is rendered with `You can post parcels with these companies: {post_office:parcel_from}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You can send parcels here* corresponds with `post_office:parcel_from=yes`
|
||||||
|
- *You can't send parcels here* corresponds with `post_office:parcel_from=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### parcel-pickup
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Can you pick up missed parcels here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [post_office:parcel_pickup](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_pickup)
|
||||||
|
|
||||||
|
This is rendered with `You can pick up parcels from these companies: {post_office:parcel_pickup}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You can pick up missed parcels here* corresponds with `post_office:parcel_pickup=yes`
|
||||||
|
- *You can't pick up missed parcels here* corresponds with `post_office:parcel_pickup=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### parcel-to
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Can you send parcels to here for pickup?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [post_office:parcel_to](https://wiki.openstreetmap.org/wiki/Key:post_office:parcel_to)
|
||||||
|
|
||||||
|
This is rendered with `You can send parcels to here for pickup with these companies: {post_office:parcel_to}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You can send parcels to here for pickup* corresponds with `post_office:parcel_to=yes`
|
||||||
|
- *You can't send parcels to here for pickup* corresponds with `post_office:parcel_to=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### stamps
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Can you buy stamps here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [post_office:stamps](https://wiki.openstreetmap.org/wiki/Key:post_office:stamps)
|
||||||
|
|
||||||
|
This is rendered with `You can buy stamps from companies: {post_office:stamps}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You can buy stamps here* corresponds with `post_office:stamps=yes`
|
||||||
|
- *You can't buy stamps here* corresponds with `post_office:stamps=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### has_atm
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Does this post office have an ATM?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This post office has an ATM* corresponds with `atm=yes`
|
||||||
|
- *This post office does <b>not</b> have an ATM* corresponds with `atm=no`
|
||||||
|
- *This post office does have an ATM, but it is mapped as a different icon* corresponds with `atm=separate`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### leftover-questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### last_edit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Gives some metainfo about the last edit and who did edit it - rendering only
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `_last_edit:contributor~.+&_last_edit:changeset~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### all-tags
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Filters
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
open_now.0 | Open now | _isOpen=yes
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/themes/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/atm/atm.json)
|
|
@ -19,7 +19,9 @@
|
||||||
"pa_PK": "اوایسایم وچ جاݨ پچھاݨے پتے",
|
"pa_PK": "اوایسایم وچ جاݨ پچھاݨے پتے",
|
||||||
"ca": "Adreces conegudes a OSM",
|
"ca": "Adreces conegudes a OSM",
|
||||||
"zgh": "ⴰⵏⵙⵉⵡⵏ ⵉⵜⵜⵡⴰⵙⵙⵏⵏ ⴳ OSM",
|
"zgh": "ⴰⵏⵙⵉⵡⵏ ⵉⵜⵜⵡⴰⵙⵙⵏⵏ ⴳ OSM",
|
||||||
"pt_BR": "Endereços conhecidos no OSM"
|
"pt_BR": "Endereços conhecidos no OSM",
|
||||||
|
"eu": "OSMko helbide ezagunak",
|
||||||
|
"pl": "Znane adresy w OSM"
|
||||||
},
|
},
|
||||||
"minzoom": 18,
|
"minzoom": 18,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -54,7 +56,8 @@
|
||||||
"ca": "Adreça coneguda",
|
"ca": "Adreça coneguda",
|
||||||
"pt": "Endereço conhecido",
|
"pt": "Endereço conhecido",
|
||||||
"pt_BR": "Endereço conhecido",
|
"pt_BR": "Endereço conhecido",
|
||||||
"he": "כתובת ידועה"
|
"he": "כתובת ידועה",
|
||||||
|
"eu": "Helbide ezaguna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
|
@ -78,7 +81,8 @@
|
||||||
"pa_PK": "پتے",
|
"pa_PK": "پتے",
|
||||||
"zgh": "ⴰⵏⵙⵉⵡⵏ",
|
"zgh": "ⴰⵏⵙⵉⵡⵏ",
|
||||||
"pt_BR": "Endereços",
|
"pt_BR": "Endereços",
|
||||||
"he": "כתובות"
|
"he": "כתובות",
|
||||||
|
"eu": "Helbideak"
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
{
|
{
|
||||||
|
@ -100,7 +104,8 @@
|
||||||
"nb_NO": "Husnummeret er <b>{addr:housenumber}</b>",
|
"nb_NO": "Husnummeret er <b>{addr:housenumber}</b>",
|
||||||
"ca": "El número de porta és <b>{addr:housenumber}</b>",
|
"ca": "El número de porta és <b>{addr:housenumber}</b>",
|
||||||
"pt_BR": "O número da casa é <b>{addr:housenumber}</b>",
|
"pt_BR": "O número da casa é <b>{addr:housenumber}</b>",
|
||||||
"he": "מספר הבית הוא <b>{addr:housenumber}</b>"
|
"he": "מספר הבית הוא <b>{addr:housenumber}</b>",
|
||||||
|
"eu": "Etxearen zenbakia <b>{addr:housenumber}</b> da"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the number of this house?",
|
"en": "What is the number of this house?",
|
||||||
|
@ -119,7 +124,8 @@
|
||||||
"nb_NO": "Hvilket husnummer har dette huset?",
|
"nb_NO": "Hvilket husnummer har dette huset?",
|
||||||
"ca": "Quin és el número d'aquesta casa?",
|
"ca": "Quin és el número d'aquesta casa?",
|
||||||
"pt_BR": "Qual é o número desta casa?",
|
"pt_BR": "Qual é o número desta casa?",
|
||||||
"he": "מה המספר של הבית הזה?"
|
"he": "מה המספר של הבית הזה?",
|
||||||
|
"eu": "Zein da etxe honen zenbakia?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "addr:housenumber",
|
"key": "addr:housenumber",
|
||||||
|
@ -152,7 +158,8 @@
|
||||||
"nb_NO": "Denne bygningen har ikke noe husnummer",
|
"nb_NO": "Denne bygningen har ikke noe husnummer",
|
||||||
"ca": "Aquest edifici no té número",
|
"ca": "Aquest edifici no té número",
|
||||||
"pt_BR": "Este prédio não tem número",
|
"pt_BR": "Este prédio não tem número",
|
||||||
"he": "למבנה זה אין מספר בית"
|
"he": "למבנה זה אין מספר בית",
|
||||||
|
"eu": "Eraikin honek ez du etxe zenbakirik"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -174,7 +181,8 @@
|
||||||
"ca": "L'adreça està a aquest carrer <b>{addr:street}</b>",
|
"ca": "L'adreça està a aquest carrer <b>{addr:street}</b>",
|
||||||
"pt": "Este endereço é na rua <b>{addr:street}</b>",
|
"pt": "Este endereço é na rua <b>{addr:street}</b>",
|
||||||
"pt_BR": "Este endereço fica na rua <b>{addr:street}</b>",
|
"pt_BR": "Este endereço fica na rua <b>{addr:street}</b>",
|
||||||
"he": "כתובת זו נמצאת ברחוב <b>{addr:street}</b>"
|
"he": "כתובת זו נמצאת ברחוב <b>{addr:street}</b>",
|
||||||
|
"eu": "Helbide hau <b>{addr:street}</b> kalean dago"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What street is this address located in?",
|
"en": "What street is this address located in?",
|
||||||
|
@ -192,7 +200,8 @@
|
||||||
"ca": "A quin carrer es troba l'adreça?",
|
"ca": "A quin carrer es troba l'adreça?",
|
||||||
"pt": "Em que rua fica esse endereço?",
|
"pt": "Em que rua fica esse endereço?",
|
||||||
"pt_BR": "Em que rua fica esse endereço?",
|
"pt_BR": "Em que rua fica esse endereço?",
|
||||||
"he": "באיזה רחוב נמצאת הכתובת הזו?"
|
"he": "באיזה רחוב נמצאת הכתובת הזו?",
|
||||||
|
"eu": "Zein kaletan dago helbide hori?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "addr:street"
|
"key": "addr:street"
|
||||||
|
@ -240,7 +249,8 @@
|
||||||
"nb_NO": "Hva bør fikses her? Forklar.",
|
"nb_NO": "Hva bør fikses her? Forklar.",
|
||||||
"ca": "Què s’hauria de corregir aquí? Exposa-ho",
|
"ca": "Què s’hauria de corregir aquí? Exposa-ho",
|
||||||
"pt_BR": "O que deve ser corrigido aqui? Explique",
|
"pt_BR": "O que deve ser corrigido aqui? Explique",
|
||||||
"he": "מה צריך לתקן כאן? אנא הסבר"
|
"he": "מה צריך לתקן כאן? אנא הסבר",
|
||||||
|
"eu": "Zer konpondu behar da hemen? Azaldu mesedez"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "fixme"
|
"key": "fixme"
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
"cs": "Reklama",
|
"cs": "Reklama",
|
||||||
"nl": "Reclame",
|
"nl": "Reclame",
|
||||||
"pt": "Anunciar",
|
"pt": "Anunciar",
|
||||||
"he": "פרסומת"
|
"he": "פרסומת",
|
||||||
|
"eu": "Iragarri"
|
||||||
},
|
},
|
||||||
"minzoom": 15,
|
"minzoom": 15,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -31,7 +32,8 @@
|
||||||
"en": "Billboard",
|
"en": "Billboard",
|
||||||
"de": "Werbetafel",
|
"de": "Werbetafel",
|
||||||
"cs": "Billboard",
|
"cs": "Billboard",
|
||||||
"he": "שלט חוצות"
|
"he": "שלט חוצות",
|
||||||
|
"pl": "Bilbord"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -46,7 +48,8 @@
|
||||||
"en": "Board",
|
"en": "Board",
|
||||||
"de": "Brett",
|
"de": "Brett",
|
||||||
"cs": "Deska",
|
"cs": "Deska",
|
||||||
"fr": "Petit panneau"
|
"fr": "Petit panneau",
|
||||||
|
"pl": "Tablica"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -76,7 +79,9 @@
|
||||||
"de": "Litfaßsäule",
|
"de": "Litfaßsäule",
|
||||||
"cs": "Sloup",
|
"cs": "Sloup",
|
||||||
"nl": "Aanplakzuil",
|
"nl": "Aanplakzuil",
|
||||||
"fr": "Colonne"
|
"fr": "Colonne",
|
||||||
|
"eu": "Zutabea",
|
||||||
|
"pl": "Kolumna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -92,7 +97,9 @@
|
||||||
"de": "Flagge",
|
"de": "Flagge",
|
||||||
"cs": "Vlajka",
|
"cs": "Vlajka",
|
||||||
"nl": "Vlag",
|
"nl": "Vlag",
|
||||||
"fr": "Drapeau"
|
"fr": "Drapeau",
|
||||||
|
"eu": "Ikurrina",
|
||||||
|
"pl": "Flaga"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -108,7 +115,9 @@
|
||||||
"de": "Bildschirm",
|
"de": "Bildschirm",
|
||||||
"cs": "Obrazovka",
|
"cs": "Obrazovka",
|
||||||
"nl": "Scherm",
|
"nl": "Scherm",
|
||||||
"fr": "Écran"
|
"fr": "Écran",
|
||||||
|
"eu": "Pantaila",
|
||||||
|
"pl": "Ekran"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -124,7 +133,9 @@
|
||||||
"de": "Skulptur",
|
"de": "Skulptur",
|
||||||
"cs": "Socha",
|
"cs": "Socha",
|
||||||
"nl": "Sculptuur",
|
"nl": "Sculptuur",
|
||||||
"fr": "Sculpture"
|
"fr": "Sculpture",
|
||||||
|
"eu": "Eskultura",
|
||||||
|
"pl": "Rzeźba"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -140,7 +151,9 @@
|
||||||
"de": "Schild",
|
"de": "Schild",
|
||||||
"cs": "Cedule",
|
"cs": "Cedule",
|
||||||
"fr": "Enseigne",
|
"fr": "Enseigne",
|
||||||
"pt_BR": "Placa"
|
"pt_BR": "Placa",
|
||||||
|
"eu": "Kartela",
|
||||||
|
"pl": "Znak"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -156,7 +169,8 @@
|
||||||
"de": "Plane",
|
"de": "Plane",
|
||||||
"cs": "Plachta",
|
"cs": "Plachta",
|
||||||
"nl": "Spandoek",
|
"nl": "Spandoek",
|
||||||
"fr": "Bâche"
|
"fr": "Bâche",
|
||||||
|
"eu": "Olana"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -172,7 +186,8 @@
|
||||||
"de": "Totem",
|
"de": "Totem",
|
||||||
"cs": "Totem",
|
"cs": "Totem",
|
||||||
"nl": "Aanplakzuil",
|
"nl": "Aanplakzuil",
|
||||||
"fr": "Totem"
|
"fr": "Totem",
|
||||||
|
"eu": "Totem"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -188,7 +203,8 @@
|
||||||
"de": "Wandmalerei",
|
"de": "Wandmalerei",
|
||||||
"cs": "Nástěnná malba",
|
"cs": "Nástěnná malba",
|
||||||
"nl": "Muurschildering",
|
"nl": "Muurschildering",
|
||||||
"fr": "Peinture murale"
|
"fr": "Peinture murale",
|
||||||
|
"pl": "Mural ścienny"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -199,7 +215,8 @@
|
||||||
"en": "We will complete data from advertising features with reference, operator and lit",
|
"en": "We will complete data from advertising features with reference, operator and lit",
|
||||||
"de": "Wir vervollständigen Daten von Werbeanlagen mit Referenz-, Betreiber- und Beleuchtungsdaten",
|
"de": "Wir vervollständigen Daten von Werbeanlagen mit Referenz-, Betreiber- und Beleuchtungsdaten",
|
||||||
"cs": "Doplníme údaje z reklamních prvků s referencemi, provozovatelem a osvětlením",
|
"cs": "Doplníme údaje z reklamních prvků s referencemi, provozovatelem a osvětlením",
|
||||||
"pt": "Iremos completar os dados das funcionalidades publicitárias com referência, operador e iluminado"
|
"pt": "Iremos completar os dados das funcionalidades publicitárias com referência, operador e iluminado",
|
||||||
|
"eu": "Publizitate-ezaugarrien datuak osatuko ditugu erreferentziarekin, operadorearekin eta argiztatuarekin."
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
"images",
|
"images",
|
||||||
|
@ -212,7 +229,8 @@
|
||||||
"de": "Das ist ein/e {advertising}",
|
"de": "Das ist ein/e {advertising}",
|
||||||
"cs": "Toto je {advertising}",
|
"cs": "Toto je {advertising}",
|
||||||
"nl": "Dit is een {advertising}",
|
"nl": "Dit is een {advertising}",
|
||||||
"he": "זהו {advertising}"
|
"he": "זהו {advertising}",
|
||||||
|
"pl": "To jest {advertising}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"ca": "Quin tipus d'element publicitari és aquest?",
|
"ca": "Quin tipus d'element publicitari és aquest?",
|
||||||
|
@ -220,7 +238,8 @@
|
||||||
"en": "Which type of advertising feature is this?",
|
"en": "Which type of advertising feature is this?",
|
||||||
"de": "Welche Art von Werbung ist das?",
|
"de": "Welche Art von Werbung ist das?",
|
||||||
"cs": "O jaký typ reklamního prvku se jedná?",
|
"cs": "O jaký typ reklamního prvku se jedná?",
|
||||||
"fr": "De quel type de dispositif publicitaire s'agit-il ?"
|
"fr": "De quel type de dispositif publicitaire s'agit-il ?",
|
||||||
|
"pl": "Jakiego rodzaju jest to obiekt reklamowy?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "advertising"
|
"key": "advertising"
|
||||||
|
@ -240,7 +259,8 @@
|
||||||
"cs": "Toto je billboard",
|
"cs": "Toto je billboard",
|
||||||
"fr": "C'est un grand panneau",
|
"fr": "C'est un grand panneau",
|
||||||
"pt": "Isso é um outdoor",
|
"pt": "Isso é um outdoor",
|
||||||
"he": "זה שלט חוצות"
|
"he": "זה שלט חוצות",
|
||||||
|
"pl": "To jest bilbord"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/billboard.svg",
|
"path": "./assets/themes/advertising/billboard.svg",
|
||||||
|
@ -260,7 +280,8 @@
|
||||||
"de": "Dies ist ein Brett",
|
"de": "Dies ist ein Brett",
|
||||||
"cs": "Toto je deska",
|
"cs": "Toto je deska",
|
||||||
"fr": "C'est un petit panneau",
|
"fr": "C'est un petit panneau",
|
||||||
"pt": "Isso é uma placa"
|
"pt": "Isso é uma placa",
|
||||||
|
"pl": "To jest tablica"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/board.svg",
|
"path": "./assets/themes/advertising/board.svg",
|
||||||
|
@ -281,7 +302,8 @@
|
||||||
"cs": "Toto je sloup",
|
"cs": "Toto je sloup",
|
||||||
"fr": "C'est une colonne",
|
"fr": "C'est une colonne",
|
||||||
"nl": "Dit is een aanplakzuil",
|
"nl": "Dit is een aanplakzuil",
|
||||||
"pt_BR": "Isto é uma coluna"
|
"pt_BR": "Isto é uma coluna",
|
||||||
|
"pl": "To jest kolumna"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/column.svg",
|
"path": "./assets/themes/advertising/column.svg",
|
||||||
|
@ -303,7 +325,8 @@
|
||||||
"fr": "C'est un drapeau",
|
"fr": "C'est un drapeau",
|
||||||
"nl": "Dit is een vlag",
|
"nl": "Dit is een vlag",
|
||||||
"pt_BR": "Isto é uma bandeira",
|
"pt_BR": "Isto é uma bandeira",
|
||||||
"he": "זה דגל"
|
"he": "זה דגל",
|
||||||
|
"pl": "To jest flaga"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/flag.svg",
|
"path": "./assets/themes/advertising/flag.svg",
|
||||||
|
@ -341,7 +364,8 @@
|
||||||
"en": "This is a screen",
|
"en": "This is a screen",
|
||||||
"de": "Dies ist ein Bildschirm",
|
"de": "Dies ist ein Bildschirm",
|
||||||
"cs": "Toto je obrazovka",
|
"cs": "Toto je obrazovka",
|
||||||
"fr": "C'est un écran"
|
"fr": "C'est un écran",
|
||||||
|
"pl": "To jest ekran"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/screen.svg",
|
"path": "./assets/themes/advertising/screen.svg",
|
||||||
|
@ -360,7 +384,8 @@
|
||||||
"en": "This is a sculpture",
|
"en": "This is a sculpture",
|
||||||
"de": "Dies ist eine Skulptur",
|
"de": "Dies ist eine Skulptur",
|
||||||
"cs": "Toto je socha",
|
"cs": "Toto je socha",
|
||||||
"fr": "C'est une sculpture"
|
"fr": "C'est une sculpture",
|
||||||
|
"pl": "To jest rzeźba"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/sculpture.svg",
|
"path": "./assets/themes/advertising/sculpture.svg",
|
||||||
|
@ -380,7 +405,8 @@
|
||||||
"de": "Dies ist ein Schild",
|
"de": "Dies ist ein Schild",
|
||||||
"cs": "Toto je cedule",
|
"cs": "Toto je cedule",
|
||||||
"fr": "C'est une enseigne (indique le nom du lieu/magasin)",
|
"fr": "C'est une enseigne (indique le nom du lieu/magasin)",
|
||||||
"pt_BR": "Isto é uma placa"
|
"pt_BR": "Isto é uma placa",
|
||||||
|
"pl": "To jest znak"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/sign.svg",
|
"path": "./assets/themes/advertising/sign.svg",
|
||||||
|
@ -437,7 +463,8 @@
|
||||||
"en": "This is a wall painting",
|
"en": "This is a wall painting",
|
||||||
"de": "Dies ist eine Wandmalerei",
|
"de": "Dies ist eine Wandmalerei",
|
||||||
"cs": "Toto je nástěnná malba",
|
"cs": "Toto je nástěnná malba",
|
||||||
"fr": "C'est une peinture murale"
|
"fr": "C'est une peinture murale",
|
||||||
|
"pl": "To jest mural ścienny"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/themes/advertising/wall_painting.svg",
|
"path": "./assets/themes/advertising/wall_painting.svg",
|
||||||
|
@ -455,7 +482,8 @@
|
||||||
"de": "Werden mehrere Werbungen abwechselnd angezeigt?",
|
"de": "Werden mehrere Werbungen abwechselnd angezeigt?",
|
||||||
"cs": "Zobrazuje tato reklama cyklicky několik zpráv?",
|
"cs": "Zobrazuje tato reklama cyklicky několik zpráv?",
|
||||||
"fr": "Est-ce que cette publicité fait défiler différent messages ?",
|
"fr": "Est-ce que cette publicité fait défiler différent messages ?",
|
||||||
"pt": "Este anúncio percorre várias mensagens?"
|
"pt": "Este anúncio percorre várias mensagens?",
|
||||||
|
"pl": "Czy ta reklama przechodzi przez wiele różnych wiadomości?"
|
||||||
},
|
},
|
||||||
"condition": {
|
"condition": {
|
||||||
"#": "Screens are _always_ animated; flags, tarps, and wall_paintings cannot be animated; signs can be anything so we don't make guesses",
|
"#": "Screens are _always_ animated; flags, tarps, and wall_paintings cannot be animated; signs can be anything so we don't make guesses",
|
||||||
|
@ -478,7 +506,8 @@
|
||||||
"de": "<b>Statische Anzeige</b>, zeigt immer die gleiche Werbung",
|
"de": "<b>Statische Anzeige</b>, zeigt immer die gleiche Werbung",
|
||||||
"cs": "<b>Statická reklama</b>, která stále zobrazuje stejnou zprávu",
|
"cs": "<b>Statická reklama</b>, která stále zobrazuje stejnou zprávu",
|
||||||
"fr": "<b>Statique</b>, affiche toujours le même message",
|
"fr": "<b>Statique</b>, affiche toujours le même message",
|
||||||
"pt": "<b> Static</b>, mostra sempre a mesma mensagem"
|
"pt": "<b> Static</b>, mostra sempre a mesma mensagem",
|
||||||
|
"pl": "<b>Statyczne</b>, zawsze pokazuje tą samą wiadomość"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -490,7 +519,8 @@
|
||||||
"de": "<b>Digitale Anzeige</b>, zeigt Preise oder anderen Mitteilungen",
|
"de": "<b>Digitale Anzeige</b>, zeigt Preise oder anderen Mitteilungen",
|
||||||
"cs": "Tento objekt má vestavěný <b>digitální displej</b> pro zobrazení cen nebo jiné zprávy",
|
"cs": "Tento objekt má vestavěný <b>digitální displej</b> pro zobrazení cen nebo jiné zprávy",
|
||||||
"fr": "Cet objet inclut un <b>affichage digital</b> pour indiquer des prix ou d'autres messages",
|
"fr": "Cet objet inclut un <b>affichage digital</b> pour indiquer des prix ou d'autres messages",
|
||||||
"pt": "Este objeto possui um <b>digital display</b> embutido para mostrar preços ou alguma outra mensagem"
|
"pt": "Este objeto possui um <b>digital display</b> embutido para mostrar preços ou alguma outra mensagem",
|
||||||
|
"pl": "Ten obiekt ma wbudowany <b>cyfrowy wyświetlacz</b> do pokazywania cen lub innych informacji"
|
||||||
},
|
},
|
||||||
"hideInAnswer": {
|
"hideInAnswer": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -599,7 +629,8 @@
|
||||||
"nl": "Uitgebaat door {operator}",
|
"nl": "Uitgebaat door {operator}",
|
||||||
"pt": "Operado por {operator}",
|
"pt": "Operado por {operator}",
|
||||||
"pt_BR": "Operado por {operator}",
|
"pt_BR": "Operado por {operator}",
|
||||||
"he": "מופעל על ידי {operator}"
|
"he": "מופעל על ידי {operator}",
|
||||||
|
"pl": "Obsługiwane przez {operator}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"ca": "Qui opera aquest element?",
|
"ca": "Qui opera aquest element?",
|
||||||
|
@ -610,7 +641,8 @@
|
||||||
"fr": "Qui exploite ce dispositif ?",
|
"fr": "Qui exploite ce dispositif ?",
|
||||||
"nl": "Wie baat dit object uit?",
|
"nl": "Wie baat dit object uit?",
|
||||||
"pt": "Quem opera esse elemento?",
|
"pt": "Quem opera esse elemento?",
|
||||||
"he": "מי מפעיל את התכונה הזו?"
|
"he": "מי מפעיל את התכונה הזו?",
|
||||||
|
"pl": "Kto obsługuje ten obiekt?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"addExtraTags": [],
|
"addExtraTags": [],
|
||||||
|
@ -628,7 +660,8 @@
|
||||||
"nl": "Wat voor boodschap wordt hier getoond?",
|
"nl": "Wat voor boodschap wordt hier getoond?",
|
||||||
"fr": "Quel est le type de message affiché ?",
|
"fr": "Quel est le type de message affiché ?",
|
||||||
"pt": "Que tipo de mensagem é mostrada?",
|
"pt": "Que tipo de mensagem é mostrada?",
|
||||||
"he": "איזה סוג הודעה מוצגת?"
|
"he": "איזה סוג הודעה מוצגת?",
|
||||||
|
"pl": "Jaki rodzaj wiadomości jest pokazany?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -643,7 +676,9 @@
|
||||||
"fr": "Message commercial",
|
"fr": "Message commercial",
|
||||||
"pt": "Mensagem comercial",
|
"pt": "Mensagem comercial",
|
||||||
"pt_BR": "Mensagem comercial",
|
"pt_BR": "Mensagem comercial",
|
||||||
"he": "מסר מסחרי"
|
"he": "מסר מסחרי",
|
||||||
|
"nl": "Commerciële boodschap",
|
||||||
|
"pl": "Wiadomość komercyjna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -657,7 +692,9 @@
|
||||||
"cs": "Místní informace",
|
"cs": "Místní informace",
|
||||||
"fr": "Informations locales",
|
"fr": "Informations locales",
|
||||||
"pt": "Informação local",
|
"pt": "Informação local",
|
||||||
"he": "מידע מקומי"
|
"he": "מידע מקומי",
|
||||||
|
"nl": "Lokale informatie",
|
||||||
|
"pl": "Informacja lokalna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -671,7 +708,8 @@
|
||||||
"cs": "Bezpečnostní informace",
|
"cs": "Bezpečnostní informace",
|
||||||
"fr": "Information de sécurité",
|
"fr": "Information de sécurité",
|
||||||
"pt": "Informação segura",
|
"pt": "Informação segura",
|
||||||
"he": "מידע אבטחה"
|
"he": "מידע אבטחה",
|
||||||
|
"pl": "Informacje dotyczące bezpieczeństwa"
|
||||||
},
|
},
|
||||||
"hideInAnswer": {
|
"hideInAnswer": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -690,22 +728,25 @@
|
||||||
"cs": "Volební reklama",
|
"cs": "Volební reklama",
|
||||||
"fr": "Propagande électorale",
|
"fr": "Propagande électorale",
|
||||||
"pt": "Propaganda eleitoral",
|
"pt": "Propaganda eleitoral",
|
||||||
"he": "פרסום בחירות"
|
"he": "פרסום בחירות",
|
||||||
|
"pl": "Reklamy wyborcze"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "message=showbiz",
|
"if": "message=showbiz",
|
||||||
"ifnot": "message=",
|
"ifnot": "message=",
|
||||||
"then": {
|
"then": {
|
||||||
"ca": "Informació sobre teatres, concerts, ...",
|
"ca": "Informació sobre teatres, concerts, …",
|
||||||
"es": "Información sobre teatros, conciertos, ...",
|
"es": "Información sobre teatros, conciertos, …",
|
||||||
"en": "Information related to theatre, concerts, …",
|
"en": "Information related to theatre, concerts, …",
|
||||||
"de": "Informationen über Theater, Konzerte, …",
|
"de": "Informationen über Theater, Konzerte, …",
|
||||||
"cs": "Informace týkající se divadla, koncertů, ...",
|
"cs": "Informace týkající se divadla, koncertů, …",
|
||||||
"fr": "Informations liées au théâtre, à des concerts, …",
|
"fr": "Informations liées au théâtre, à des concerts, …",
|
||||||
"nl": "Informatie over cultuurevenementen zoals theaters, optredens, …",
|
"nl": "Informatie over cultuurevenementen zoals theaters, optredens, …",
|
||||||
"pt": "Informações relacionadas com teatro, concertos, ...",
|
"pt": "Informações relacionadas com teatro, concertos, ...",
|
||||||
"he": "מידע הקשור לתיאטרון, קונצרטים,…"
|
"he": "מידע הקשור לתיאטרון, קונצרטים,…",
|
||||||
|
"eu": "Antzerkiari, kontzertuei eta abarri buruzko informazioa",
|
||||||
|
"pl": "Informacje dotyczące teatru, koncertów, …"
|
||||||
},
|
},
|
||||||
"hideInAnswer": {
|
"hideInAnswer": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -724,7 +765,8 @@
|
||||||
"cs": "Zpráva od neziskových organizací",
|
"cs": "Zpráva od neziskových organizací",
|
||||||
"fr": "Message d'organisations sans but lucratif",
|
"fr": "Message d'organisations sans but lucratif",
|
||||||
"nl": "Boodschap van NGO-organisaties",
|
"nl": "Boodschap van NGO-organisaties",
|
||||||
"pt": "Mensagem de organizações sem fins lucrativos"
|
"pt": "Mensagem de organizações sem fins lucrativos",
|
||||||
|
"pl": "Wiadomość od organizacji non-profit"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -737,7 +779,8 @@
|
||||||
"de": "Um Ihre Meinung zu äußern",
|
"de": "Um Ihre Meinung zu äußern",
|
||||||
"cs": "Pro vyjádření vašeho názoru",
|
"cs": "Pro vyjádření vašeho názoru",
|
||||||
"fr": "Expression d'opinion",
|
"fr": "Expression d'opinion",
|
||||||
"pt": "Para expressar sua opinião"
|
"pt": "Para expressar sua opinião",
|
||||||
|
"pl": "Żeby wyrazić swoją opinię"
|
||||||
},
|
},
|
||||||
"hideInAnswer": {
|
"hideInAnswer": {
|
||||||
"or": [
|
"or": [
|
||||||
|
@ -759,7 +802,8 @@
|
||||||
"nl": "Religieuze boodschap",
|
"nl": "Religieuze boodschap",
|
||||||
"pt": "Mensagem religiosa",
|
"pt": "Mensagem religiosa",
|
||||||
"pt_BR": "Mensagem religiosa",
|
"pt_BR": "Mensagem religiosa",
|
||||||
"he": "מסר דתי"
|
"he": "מסר דתי",
|
||||||
|
"pl": "Przekaz religijny"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -785,14 +829,15 @@
|
||||||
"ifnot": "information=",
|
"ifnot": "information=",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "A map",
|
"en": "A map",
|
||||||
"ca": "un mapa",
|
"ca": "Un mapa",
|
||||||
"es": "un mapa",
|
"es": "Un mapa",
|
||||||
"de": "eine Karte",
|
"de": "eine Karte",
|
||||||
"cs": "Mapa",
|
"cs": "Mapa",
|
||||||
"fr": "Une carte",
|
"fr": "Une carte",
|
||||||
"nl": "Een kaart",
|
"nl": "Een kaart",
|
||||||
"pt": "Um mapa",
|
"pt": "Um mapa",
|
||||||
"pt_BR": "Um mapa"
|
"pt_BR": "Um mapa",
|
||||||
|
"pl": "Mapa"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -819,7 +864,9 @@
|
||||||
"de": "Auf wie vielen Seiten wird Werbung angezeigt?",
|
"de": "Auf wie vielen Seiten wird Werbung angezeigt?",
|
||||||
"cs": "Z kolika stran můžete vidět reklamy?",
|
"cs": "Z kolika stran můžete vidět reklamy?",
|
||||||
"fr": "Sur combien de côtés peut-on voir de la publicité ?",
|
"fr": "Sur combien de côtés peut-on voir de la publicité ?",
|
||||||
"pt": "De quantos lados você pode assistir a anúncios?"
|
"pt": "De quantos lados você pode assistir a anúncios?",
|
||||||
|
"eu": "Zenbat aldetatik ikus dezakezu publizitatea?",
|
||||||
|
"pl": "Z ilu stron można oglądać reklamy?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -831,7 +878,9 @@
|
||||||
"de": "Werbung wird nur auf einer Seite angezeigt",
|
"de": "Werbung wird nur auf einer Seite angezeigt",
|
||||||
"cs": "Tento objekt má reklamy na jedné straně",
|
"cs": "Tento objekt má reklamy na jedné straně",
|
||||||
"fr": "Cet objet a de la publicité sur un seul côté",
|
"fr": "Cet objet a de la publicité sur un seul côté",
|
||||||
"pt": "Este objeto tem anúncios em um único lado"
|
"pt": "Este objeto tem anúncios em um único lado",
|
||||||
|
"eu": "Objektu honek iragarkiak ditu alde bakar batean",
|
||||||
|
"pl": "Ten obiekt ma reklamy po jednej stronie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -843,7 +892,9 @@
|
||||||
"de": "Werbung wird auf beiden Seiten angezeigt",
|
"de": "Werbung wird auf beiden Seiten angezeigt",
|
||||||
"cs": "Tento objekt má reklamy na obou stranách",
|
"cs": "Tento objekt má reklamy na obou stranách",
|
||||||
"fr": "Cet objet a de la publicité des deux côtés",
|
"fr": "Cet objet a de la publicité des deux côtés",
|
||||||
"pt": "Este objeto tem anúncios em ambos os lados"
|
"pt": "Este objeto tem anúncios em ambos os lados",
|
||||||
|
"eu": "Objektu honek iragarkiak ditu bi aldeetan",
|
||||||
|
"pl": "Ten obiekt ma reklamy po dwóch stronach"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -859,7 +910,8 @@
|
||||||
"fr": "Le numéro de référence est {ref}",
|
"fr": "Le numéro de référence est {ref}",
|
||||||
"nl": "Het referentienummer is {ref}",
|
"nl": "Het referentienummer is {ref}",
|
||||||
"pt": "O número de referência é {ref}",
|
"pt": "O número de referência é {ref}",
|
||||||
"pt_BR": "O número de referência é {ref}"
|
"pt_BR": "O número de referência é {ref}",
|
||||||
|
"pl": "Numer referencyjny to {ref}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"ca": "Quin és el número de refèrencia?",
|
"ca": "Quin és el número de refèrencia?",
|
||||||
|
@ -869,7 +921,8 @@
|
||||||
"cs": "Jaké je referenční číslo?",
|
"cs": "Jaké je referenční číslo?",
|
||||||
"fr": "Quel est le numéro de référence ?",
|
"fr": "Quel est le numéro de référence ?",
|
||||||
"nl": "Wat is het referentienummer?",
|
"nl": "Wat is het referentienummer?",
|
||||||
"pt": "Qual é o número de referência?"
|
"pt": "Qual é o número de referência?",
|
||||||
|
"pl": "Jaki jest numer referencyjny?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "ref"
|
"key": "ref"
|
||||||
|
@ -1031,7 +1084,9 @@
|
||||||
"cs": "billboard",
|
"cs": "billboard",
|
||||||
"pt": "um outdoor",
|
"pt": "um outdoor",
|
||||||
"fr": "un grand panneau",
|
"fr": "un grand panneau",
|
||||||
"he": "שלט חוצות"
|
"he": "שלט חוצות",
|
||||||
|
"eu": "iragarki panela",
|
||||||
|
"pl": "bilbord"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A large outdoor advertising structure, typically found in high-traffic areas such as alongside busy roads",
|
"en": "A large outdoor advertising structure, typically found in high-traffic areas such as alongside busy roads",
|
||||||
|
@ -1041,7 +1096,9 @@
|
||||||
"cs": "Velká venkovní reklamní konstrukce, která se obvykle nachází na místech s velkým provozem, například podél frekventovaných silnic",
|
"cs": "Velká venkovní reklamní konstrukce, která se obvykle nachází na místech s velkým provozem, například podél frekventovaných silnic",
|
||||||
"fr": "Un grand équipement extérieur, principalement disposé dans les zones à fort trafic comme une route",
|
"fr": "Un grand équipement extérieur, principalement disposé dans les zones à fort trafic comme une route",
|
||||||
"pt": "Uma grande estrutura de publicidade ao ar livre, normalmente encontrada em áreas de alto tráfego, como ao longo de estradas movimentadas",
|
"pt": "Uma grande estrutura de publicidade ao ar livre, normalmente encontrada em áreas de alto tráfego, como ao longo de estradas movimentadas",
|
||||||
"he": "מבנה פרסום חוצות גדול, שנמצא בדרך כלל באזורים עתירי תנועה כמו לצד כבישים סואנים"
|
"he": "מבנה פרסום חוצות גדול, שנמצא בדרך כלל באזורים עתירי תנועה כמו לצד כבישים סואנים",
|
||||||
|
"eu": "Atari zabaleko publizitate-egitura handia, trafiko handiko eremuetan egon ohi dena, adibidez errepideen ondoan",
|
||||||
|
"pl": "Duża struktura reklamowa na dworze, zwykle znajdująca się w obszarach z dużym ruchem, np. w pobliżu ruchliwych dróg"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/KFC_Billboard.jpg",
|
"./assets/themes/advertising/KFC_Billboard.jpg",
|
||||||
|
@ -1096,7 +1153,8 @@
|
||||||
"cs": "billboard",
|
"cs": "billboard",
|
||||||
"nl": "een uithangbord",
|
"nl": "een uithangbord",
|
||||||
"fr": "un petit panneau",
|
"fr": "un petit panneau",
|
||||||
"pt": "a bordo"
|
"pt": "a bordo",
|
||||||
|
"pl": "tablica"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Small billboard for neighbourhood advertising, generally intended for pedestrians",
|
"en": "Small billboard for neighbourhood advertising, generally intended for pedestrians",
|
||||||
|
@ -1106,7 +1164,8 @@
|
||||||
"cs": "Malý billboard pro sousedskou reklamu, zpravidla určený pro chodce",
|
"cs": "Malý billboard pro sousedskou reklamu, zpravidla určený pro chodce",
|
||||||
"fr": "Petit panneau pour l’affichage de proximité, généralement à destination des piétons",
|
"fr": "Petit panneau pour l’affichage de proximité, généralement à destination des piétons",
|
||||||
"nl": "Een klein uithangbord voor buurtadvertenties, meestal gericht op voetgangers",
|
"nl": "Een klein uithangbord voor buurtadvertenties, meestal gericht op voetgangers",
|
||||||
"pt": "Pequeno outdoor para publicidade de bairro, geralmente destinado a pedestres"
|
"pt": "Pequeno outdoor para publicidade de bairro, geralmente destinado a pedestres",
|
||||||
|
"pl": "Mały bilbord dla reklam lokalnych, przeznaczony głównie dla pieszych"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/local_Board.jpg",
|
"./assets/themes/advertising/local_Board.jpg",
|
||||||
|
@ -1126,7 +1185,8 @@
|
||||||
"cs": "sloup",
|
"cs": "sloup",
|
||||||
"nl": "een aanplakzuil",
|
"nl": "een aanplakzuil",
|
||||||
"fr": "une colonne",
|
"fr": "une colonne",
|
||||||
"pt": "uma coluna"
|
"pt": "uma coluna",
|
||||||
|
"pl": "kolumna"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A cylindrical outdoor structure which shows advertisements",
|
"en": "A cylindrical outdoor structure which shows advertisements",
|
||||||
|
@ -1156,7 +1216,8 @@
|
||||||
"cs": "vlajka",
|
"cs": "vlajka",
|
||||||
"nl": "een vlag",
|
"nl": "een vlag",
|
||||||
"fr": "un drapeau",
|
"fr": "un drapeau",
|
||||||
"pt": "uma bandeira"
|
"pt": "uma bandeira",
|
||||||
|
"pl": "flaga"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/Advertising_flag.jpg",
|
"./assets/themes/advertising/Advertising_flag.jpg",
|
||||||
|
@ -1175,7 +1236,8 @@
|
||||||
"cs": "obrazovka",
|
"cs": "obrazovka",
|
||||||
"nl": "een scherm",
|
"nl": "een scherm",
|
||||||
"fr": "un écran",
|
"fr": "un écran",
|
||||||
"pt": "uma tela"
|
"pt": "uma tela",
|
||||||
|
"pl": "ekran"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/Screen_poster_box.jpg",
|
"./assets/themes/advertising/Screen_poster_box.jpg",
|
||||||
|
@ -1194,7 +1256,8 @@
|
||||||
"cs": "obrazovka připevněná na stěnu",
|
"cs": "obrazovka připevněná na stěnu",
|
||||||
"nl": "een scherm op een muur",
|
"nl": "een scherm op een muur",
|
||||||
"fr": "un écran fixé au mur",
|
"fr": "un écran fixé au mur",
|
||||||
"pt": "uma tela montada em uma parede"
|
"pt": "uma tela montada em uma parede",
|
||||||
|
"pl": "ekran zamontowany na ścianie"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/Subway_screen.jpg",
|
"./assets/themes/advertising/Subway_screen.jpg",
|
||||||
|
@ -1227,7 +1290,8 @@
|
||||||
"de": "Ein wasserfestes Textil mit einer aufgedruckten Botschaft, das dauerhaft an einer Wand verankert ist",
|
"de": "Ein wasserfestes Textil mit einer aufgedruckten Botschaft, das dauerhaft an einer Wand verankert ist",
|
||||||
"cs": "Kus nepromokavého textilu s natištěným vzkazem, trvale připevněný na stěnu",
|
"cs": "Kus nepromokavého textilu s natištěným vzkazem, trvale připevněný na stěnu",
|
||||||
"nl": "Een stuk groot, weerbestendig textiel met opgedrukte reclameboodschap die permanent aan de muur hangt",
|
"nl": "Een stuk groot, weerbestendig textiel met opgedrukte reclameboodschap die permanent aan de muur hangt",
|
||||||
"pt": "Uma peça de tecido impermeável com uma mensagem impressa, permanentemente ancorada na parede"
|
"pt": "Uma peça de tecido impermeável com uma mensagem impressa, permanentemente ancorada na parede",
|
||||||
|
"fr": "Une pièce de textile imperméable avec un message imprimé, ancrée de façon permanente sur un mur."
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/tarp_feder.jpg",
|
"./assets/themes/advertising/tarp_feder.jpg",
|
||||||
|
@ -1269,7 +1333,9 @@
|
||||||
"cs": "cedule",
|
"cs": "cedule",
|
||||||
"fr": "une enseigne",
|
"fr": "une enseigne",
|
||||||
"pt": "um sinal",
|
"pt": "um sinal",
|
||||||
"pt_BR": "uma placa"
|
"pt_BR": "uma placa",
|
||||||
|
"eu": "letrero bat",
|
||||||
|
"pl": "znak"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Used for advertising signs, neon signs, logos & institutional entrance signs",
|
"en": "Used for advertising signs, neon signs, logos & institutional entrance signs",
|
||||||
|
@ -1278,7 +1344,8 @@
|
||||||
"de": "Verwendet für Werbeschilder, Leuchtreklamen, Logos und institutionelle Eingangsschilder",
|
"de": "Verwendet für Werbeschilder, Leuchtreklamen, Logos und institutionelle Eingangsschilder",
|
||||||
"cs": "Používá se pro reklamní nápisy, neonové nápisy, loga a vstupní nápisy institucí",
|
"cs": "Používá se pro reklamní nápisy, neonové nápisy, loga a vstupní nápisy institucí",
|
||||||
"fr": "Désigne une enseigne publicitaire, une enseigne néon, les logos ou des indications d'entrées",
|
"fr": "Désigne une enseigne publicitaire, une enseigne néon, les logos ou des indications d'entrées",
|
||||||
"pt": "Usado para sinais publicitários, sinais de néon, logotipos e sinais de entrada institucionais"
|
"pt": "Usado para sinais publicitários, sinais de néon, logotipos e sinais de entrada institucionais",
|
||||||
|
"eu": "Iragarki publizitarioetarako, neon-karteletarako, logotipoetarako eta erakundeen sarrera-seinaleetarako erabiltzen da"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/Waitrose_sign.jpg",
|
"./assets/themes/advertising/Waitrose_sign.jpg",
|
||||||
|
@ -1301,7 +1368,9 @@
|
||||||
"de": "eine Skulptur",
|
"de": "eine Skulptur",
|
||||||
"cs": "socha",
|
"cs": "socha",
|
||||||
"fr": "une sculpture",
|
"fr": "une sculpture",
|
||||||
"pt": "uma escultura"
|
"pt": "uma escultura",
|
||||||
|
"eu": "eskultura bat",
|
||||||
|
"pl": "rzeźba"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/Aircraft_Sculpture.jpg",
|
"./assets/themes/advertising/Aircraft_Sculpture.jpg",
|
||||||
|
@ -1320,7 +1389,10 @@
|
||||||
"de": "eine Wandmalerei",
|
"de": "eine Wandmalerei",
|
||||||
"cs": "nástěnná malba",
|
"cs": "nástěnná malba",
|
||||||
"fr": "une peinture murale",
|
"fr": "une peinture murale",
|
||||||
"pt": "uma pintura de parede"
|
"pt": "uma pintura de parede",
|
||||||
|
"nl": "een muurschildering",
|
||||||
|
"eu": "pareta margotu bat",
|
||||||
|
"pl": "mural ścienny"
|
||||||
},
|
},
|
||||||
"exampleImages": [
|
"exampleImages": [
|
||||||
"./assets/themes/advertising/Capitol_wall.jpg",
|
"./assets/themes/advertising/Capitol_wall.jpg",
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
"da": "Kunstværker",
|
"da": "Kunstværker",
|
||||||
"cs": "Umělecká díla",
|
"cs": "Umělecká díla",
|
||||||
"pa_PK": "کلاکاری",
|
"pa_PK": "کلاکاری",
|
||||||
"he": "יצירות אמנות"
|
"he": "יצירות אמנות",
|
||||||
|
"eu": "Artelanak"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": "tourism=artwork"
|
"osmTags": "tourism=artwork"
|
||||||
|
@ -48,7 +49,8 @@
|
||||||
"da": "Kunstværk",
|
"da": "Kunstværk",
|
||||||
"cs": "Umělecké dílo",
|
"cs": "Umělecké dílo",
|
||||||
"pa_PK": "کلاکاری",
|
"pa_PK": "کلاکاری",
|
||||||
"he": "יצירת אומנות"
|
"he": "יצירת אומנות",
|
||||||
|
"eu": "Artelana"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -98,7 +100,8 @@
|
||||||
"cs": "Otevřená mapa soch, bust, graffiti a dalších uměleckých děl po celém světě",
|
"cs": "Otevřená mapa soch, bust, graffiti a dalších uměleckých děl po celém světě",
|
||||||
"zh_Hans": "一个雕塑、半身像、涂鸦和其他全球艺术品的地图",
|
"zh_Hans": "一个雕塑、半身像、涂鸦和其他全球艺术品的地图",
|
||||||
"nb_NO": "Statuer, byster, graffiti, og andre kunstverk verden over",
|
"nb_NO": "Statuer, byster, graffiti, og andre kunstverk verden over",
|
||||||
"zgh": "ⵢⴰⵜ ⵜⴽⴰⵕⴹⴰ ⵉⵕⵥⵎⵏ ⵅⴼ ⵉⵙⴼⵔⵉⵙⵏ, ⵉⵖⵔⴰⵙⵏ ⴷ ⵜⵡⵓⵔⵉⵡⵉⵏ ⵜⵉⵏⴰⵥⵓⵕⵉⵏ ⵢⴰⴹⵏⵉⵏ ⴳ ⵓⵎⴰⴹⴰⵍ"
|
"zgh": "ⵢⴰⵜ ⵜⴽⴰⵕⴹⴰ ⵉⵕⵥⵎⵏ ⵅⴼ ⵉⵙⴼⵔⵉⵙⵏ, ⵉⵖⵔⴰⵙⵏ ⴷ ⵜⵡⵓⵔⵉⵡⵉⵏ ⵜⵉⵏⴰⵥⵓⵕⵉⵏ ⵢⴰⴹⵏⵉⵏ ⴳ ⵓⵎⴰⴹⴰⵍ",
|
||||||
|
"eu": "Estatuen, bustoen, graffitien eta mundu osoko beste artelan batzuen mapa irekia"
|
||||||
},
|
},
|
||||||
"minzoom": 12,
|
"minzoom": 12,
|
||||||
"presets": [
|
"presets": [
|
||||||
|
@ -140,7 +143,9 @@
|
||||||
"ca": "una obra d'art en una paret",
|
"ca": "una obra d'art en una paret",
|
||||||
"de": "ein Kunstwerk an einer Wand",
|
"de": "ein Kunstwerk an einer Wand",
|
||||||
"cs": "umělecké dílo na zdi",
|
"cs": "umělecké dílo na zdi",
|
||||||
"es": "Una obra de arte en la pared"
|
"es": "Una obra de arte en la pared",
|
||||||
|
"fr": "une œuvre sur un mur",
|
||||||
|
"pl": "Dzieło sztuki na ścianie"
|
||||||
},
|
},
|
||||||
"snapToLayer": [
|
"snapToLayer": [
|
||||||
"walls_and_buildings"
|
"walls_and_buildings"
|
||||||
|
@ -224,7 +229,8 @@
|
||||||
"da": "Arkitektur",
|
"da": "Arkitektur",
|
||||||
"cs": "Architektura",
|
"cs": "Architektura",
|
||||||
"pt_BR": "Arquitetura",
|
"pt_BR": "Arquitetura",
|
||||||
"he": "אדריכלות"
|
"he": "אדריכלות",
|
||||||
|
"eu": "Arkitektura"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -249,7 +255,8 @@
|
||||||
"cs": "Nástěnná malba",
|
"cs": "Nástěnná malba",
|
||||||
"pa_PK": "کندھ چتر",
|
"pa_PK": "کندھ چتر",
|
||||||
"pt_BR": "Mural",
|
"pt_BR": "Mural",
|
||||||
"he": "ציור קיר"
|
"he": "ציור קיר",
|
||||||
|
"eu": "Murala"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -272,7 +279,8 @@
|
||||||
"ca": "Pintura",
|
"ca": "Pintura",
|
||||||
"da": "Maleri",
|
"da": "Maleri",
|
||||||
"cs": "Malba",
|
"cs": "Malba",
|
||||||
"he": "ציור"
|
"he": "ציור",
|
||||||
|
"eu": "Margolana"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -297,7 +305,8 @@
|
||||||
"cs": "Plastika",
|
"cs": "Plastika",
|
||||||
"pa_PK": "مورتی",
|
"pa_PK": "مورتی",
|
||||||
"pt_BR": "Escultura",
|
"pt_BR": "Escultura",
|
||||||
"he": "פיסול"
|
"he": "פיסול",
|
||||||
|
"eu": "Eskultura"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -320,7 +329,8 @@
|
||||||
"da": "Statue",
|
"da": "Statue",
|
||||||
"cs": "Socha",
|
"cs": "Socha",
|
||||||
"pt_BR": "Estátua",
|
"pt_BR": "Estátua",
|
||||||
"he": "פסל"
|
"he": "פסל",
|
||||||
|
"eu": "Estatua"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -342,7 +352,8 @@
|
||||||
"ca": "Bust",
|
"ca": "Bust",
|
||||||
"da": "Buste",
|
"da": "Buste",
|
||||||
"cs": "Busta",
|
"cs": "Busta",
|
||||||
"pt_BR": "Busto"
|
"pt_BR": "Busto",
|
||||||
|
"eu": "Bustoa"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -367,7 +378,8 @@
|
||||||
"pa_PK": "پتھر",
|
"pa_PK": "پتھر",
|
||||||
"cs": "Kámen",
|
"cs": "Kámen",
|
||||||
"pt_BR": "Pedra",
|
"pt_BR": "Pedra",
|
||||||
"he": "אבן"
|
"he": "אבן",
|
||||||
|
"eu": "Harria"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -390,7 +402,8 @@
|
||||||
"ca": "Instal·lació",
|
"ca": "Instal·lació",
|
||||||
"da": "Installation",
|
"da": "Installation",
|
||||||
"cs": "Instalace",
|
"cs": "Instalace",
|
||||||
"pt_BR": "Instalação"
|
"pt_BR": "Instalação",
|
||||||
|
"eu": "Instalazioa"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -412,7 +425,8 @@
|
||||||
"es": "Grafiti",
|
"es": "Grafiti",
|
||||||
"ca": "Grafiti",
|
"ca": "Grafiti",
|
||||||
"da": "Graffiti",
|
"da": "Graffiti",
|
||||||
"cs": "Graffiti"
|
"cs": "Graffiti",
|
||||||
|
"eu": "Graffitia"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -434,7 +448,8 @@
|
||||||
"ca": "Relleu",
|
"ca": "Relleu",
|
||||||
"es": "Relieve",
|
"es": "Relieve",
|
||||||
"da": "Relief",
|
"da": "Relief",
|
||||||
"cs": "Reliéf"
|
"cs": "Reliéf",
|
||||||
|
"eu": "Erliebea"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -478,7 +493,8 @@
|
||||||
"es": "Cerámica",
|
"es": "Cerámica",
|
||||||
"da": "flisebeklædning",
|
"da": "flisebeklædning",
|
||||||
"cs": "Obklady a dlažba",
|
"cs": "Obklady a dlažba",
|
||||||
"he": "יצירת פסיפס"
|
"he": "יצירת פסיפס",
|
||||||
|
"eu": "Keramika"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -493,7 +509,8 @@
|
||||||
"nb_NO": "Treskjæring",
|
"nb_NO": "Treskjæring",
|
||||||
"ca": "Tallat a la fusta",
|
"ca": "Tallat a la fusta",
|
||||||
"es": "Tallado en madera",
|
"es": "Tallado en madera",
|
||||||
"he": "גילוף בעץ"
|
"he": "גילוף בעץ",
|
||||||
|
"eu": "Egur taila"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -512,7 +529,8 @@
|
||||||
"pt": "Esta obra de arte foi feita por {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}",
|
"pt": "Esta obra de arte foi feita por {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}",
|
||||||
"es": "Esta obra de arte la creó {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}",
|
"es": "Esta obra de arte la creó {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}",
|
||||||
"ca": "Aquesta obra d'art la va crear {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}",
|
"ca": "Aquesta obra d'art la va crear {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}",
|
||||||
"fr": "Cette oeuvre a été crée par {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}"
|
"fr": "Cette oeuvre a été crée par {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}",
|
||||||
|
"pl": "To dzieło sztuki zostało zrobione przez {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Who made this artwork?",
|
"en": "Who made this artwork?",
|
||||||
|
@ -524,7 +542,8 @@
|
||||||
"fr": "Qui a fait cette oeuvre d'art ?",
|
"fr": "Qui a fait cette oeuvre d'art ?",
|
||||||
"ca": "Qui va crear aquesta obra d'art?",
|
"ca": "Qui va crear aquesta obra d'art?",
|
||||||
"nb_NO": "Hvem laget dette kunstverket?",
|
"nb_NO": "Hvem laget dette kunstverket?",
|
||||||
"he": "מי יצר את היצירה הזו?"
|
"he": "מי יצר את היצירה הזו?",
|
||||||
|
"pl": "Kto stworzył to dzieło sztuki?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "artist:wikidata",
|
"key": "artist:wikidata",
|
||||||
|
@ -612,23 +631,30 @@
|
||||||
"he": "האם יש אתר אינטרנט עם מידע נוסף על היצירה הזו?"
|
"he": "האם יש אתר אינטרנט עם מידע נוסף על היצירה הזו?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "More information on <a href='{website}' target='_blank'>this website</a>",
|
"special": {
|
||||||
"nl": "Meer informatie op <a href='{website}' target='_blank'>deze website</a>",
|
"type": "link",
|
||||||
"fr": "Plus d'info <a href='{website}' target='_blank'>sûr ce site web</a>",
|
"href": "{website}",
|
||||||
"de": "Weitere Informationen auf <a href='{website}' target='_blank'>dieser Webseite</a>",
|
"text": {
|
||||||
"id": "Info lanjut tersedia di <a href='{website}' target='_blank'>laman web</a> ini",
|
"en": "More information on this website",
|
||||||
"it": "Ulteriori informazioni su <a href='{website}' target='_blank'>questo sito web</a>",
|
"nl": "Meer informatie op deze website",
|
||||||
"ru": "Больше информации на <a href='{website}' target='_blank'>этом сайте</a>",
|
"fr": "Plus d'info sûr ce site web",
|
||||||
"ja": "<a href='{website}' target='_blank'>Webサイト</a>に詳細情報がある",
|
"de": "Weitere Informationen auf dieser Webseite",
|
||||||
"zh_Hant": "<a href='{website}' target='_blank'>這個網站</a>有更多資訊",
|
"id": "Info lanjut tersedia di laman web ini",
|
||||||
"nb_NO": "Mer info er å finne på <a href='{website}' target='_blank'>denne nettsiden</a>",
|
"it": "Ulteriori informazioni su questo sito web",
|
||||||
"pt": "Mais informações <a href='{website}' target='_blank'>neste site</a>",
|
"ru": "Больше информации на этом сайте",
|
||||||
"hu": "További információ <a href='{website}' target='_blank'>ezen a weboldalon</a>",
|
"ja": "Webサイトに詳細情報がある",
|
||||||
"pl": "Więcej informacji na <a href='{website}' target='_blank'>tej stronie</a>",
|
"zh_Hant": "這個網站有更多資訊",
|
||||||
"es": "Más información en <a href='{website}' target='_blank'>este sitio web</a>",
|
"nb_NO": "Mer info er å finne på denne nettsiden",
|
||||||
"da": "Yderligere oplysninger på <a href='{website}' target='_blank'> dette websted</a>",
|
"pt": "Mais informações neste site",
|
||||||
"cs": "Více informací na <a href='{website}' target='_blank'>této webové stránce</a>",
|
"hu": "További információ ezen a weboldalon",
|
||||||
"ca": "Més informació a <a href='{website}' target='_blank'>aquesta pàgina web</a>"
|
"pl": "Więcej informacji na tej stronie",
|
||||||
|
"es": "Más información en este sitio web",
|
||||||
|
"da": "Yderligere oplysninger på dette websted",
|
||||||
|
"cs": "Více informací na této webové stránce",
|
||||||
|
"ca": "Més informació a aquesta pàgina web"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "website",
|
"key": "website",
|
||||||
|
@ -655,7 +681,8 @@
|
||||||
"es": "¿Qué representa esta obra de arte?",
|
"es": "¿Qué representa esta obra de arte?",
|
||||||
"fr": "Que représente cette oeuvre d'art ?",
|
"fr": "Que représente cette oeuvre d'art ?",
|
||||||
"ca": "Què representa aquesta obra d'art?",
|
"ca": "Què representa aquesta obra d'art?",
|
||||||
"he": "מה מתארת היצירה הזו?"
|
"he": "מה מתארת היצירה הזו?",
|
||||||
|
"pl": "Co przedstawia to dzieło sztuki?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "subject:wikidata",
|
"key": "subject:wikidata",
|
||||||
|
@ -670,7 +697,8 @@
|
||||||
"es": "Esta obra de arte representa {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}",
|
"es": "Esta obra de arte representa {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}",
|
||||||
"nb_NO": "Dette kunstverket viser {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}",
|
"nb_NO": "Dette kunstverket viser {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}",
|
||||||
"ca": "Aquesta obra d'art representa {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}",
|
"ca": "Aquesta obra d'art representa {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}",
|
||||||
"fr": "Cette œuvre dépeint {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}"
|
"fr": "Cette œuvre dépeint {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}",
|
||||||
|
"pl": "To dzieło sztuki przedstawia {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}"
|
||||||
},
|
},
|
||||||
"labels": [
|
"labels": [
|
||||||
"artwork-question"
|
"artwork-question"
|
||||||
|
@ -686,7 +714,8 @@
|
||||||
"nb_NO": "Tjener dette kunstverket funksjonen som benk?",
|
"nb_NO": "Tjener dette kunstverket funksjonen som benk?",
|
||||||
"ca": "Aquesta obra d'art serveix com a un banc?",
|
"ca": "Aquesta obra d'art serveix com a un banc?",
|
||||||
"cs": "Slouží toto umělecké dílo jako lavička?",
|
"cs": "Slouží toto umělecké dílo jako lavička?",
|
||||||
"he": "האם היצירה הזו משמשת כספסל?"
|
"he": "האם היצירה הזו משמשת כספסל?",
|
||||||
|
"pl": "Czy to dzieło sztuki pełni funkcję ławki?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -698,7 +727,8 @@
|
||||||
"nl": "Dit kunstwerk doet ook dienst als zitbank",
|
"nl": "Dit kunstwerk doet ook dienst als zitbank",
|
||||||
"ca": "Aquesta obra d'art també serveix com a banc",
|
"ca": "Aquesta obra d'art també serveix com a banc",
|
||||||
"cs": "Toto umělecké dílo slouží také jako lavička",
|
"cs": "Toto umělecké dílo slouží také jako lavička",
|
||||||
"he": "יצירה זו משמשת גם כספסל"
|
"he": "יצירה זו משמשת גם כספסל",
|
||||||
|
"pl": "To dzieło sztuki pełni również funkcję ławki"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -711,7 +741,8 @@
|
||||||
"nb_NO": "Dette kunstverket tjener ikke funksjonen som benk",
|
"nb_NO": "Dette kunstverket tjener ikke funksjonen som benk",
|
||||||
"ca": "Aquesta obra d'art no serveix com a banc",
|
"ca": "Aquesta obra d'art no serveix com a banc",
|
||||||
"cs": "Toto umělecké dílo neslouží jako lavička",
|
"cs": "Toto umělecké dílo neslouží jako lavička",
|
||||||
"he": "יצירה זו אינה משמשת כספסל"
|
"he": "יצירה זו אינה משמשת כספסל",
|
||||||
|
"pl": "To dzieło sztuki nie pełni funkcji ławki"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -724,7 +755,8 @@
|
||||||
"nb_NO": "Dette kunstverket tjener ikke den hensikten å være en benk",
|
"nb_NO": "Dette kunstverket tjener ikke den hensikten å være en benk",
|
||||||
"ca": "Aquesta obra d'art no serveix com a un banc",
|
"ca": "Aquesta obra d'art no serveix com a un banc",
|
||||||
"cs": "Toto umělecké dílo neslouží jako lavička",
|
"cs": "Toto umělecké dílo neslouží jako lavička",
|
||||||
"he": "יצירה זו אינה משמשת כספסל"
|
"he": "יצירה זו אינה משמשת כספסל",
|
||||||
|
"pl": "To dzieło sztuki nie pełni funkcji ławki"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,9 @@
|
||||||
"ca": "Caixers Automàtics",
|
"ca": "Caixers Automàtics",
|
||||||
"nb_NO": "Minibanker",
|
"nb_NO": "Minibanker",
|
||||||
"cs": "Bankomaty",
|
"cs": "Bankomaty",
|
||||||
"he": "כספומטים"
|
"he": "כספומטים",
|
||||||
|
"eu": "kutxazainak",
|
||||||
|
"pl": "Bankomaty"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "ATMs to withdraw money",
|
"en": "ATMs to withdraw money",
|
||||||
|
@ -19,7 +21,8 @@
|
||||||
"nb_NO": "Minibanker fo rå ta ut penger",
|
"nb_NO": "Minibanker fo rå ta ut penger",
|
||||||
"cs": "Bankomaty pro výběr peněz",
|
"cs": "Bankomaty pro výběr peněz",
|
||||||
"es": "Cajeros automáticos para retirar dinero",
|
"es": "Cajeros automáticos para retirar dinero",
|
||||||
"he": "כספומטים למשיכת כסף"
|
"he": "כספומטים למשיכת כסף",
|
||||||
|
"pl": "Bankomaty do wypłacania pieniędzy"
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"render": {
|
"render": {
|
||||||
|
@ -30,7 +33,9 @@
|
||||||
"nb_NO": "Minibank",
|
"nb_NO": "Minibank",
|
||||||
"ca": "Caixer Automàtic",
|
"ca": "Caixer Automàtic",
|
||||||
"cs": "Bankomat",
|
"cs": "Bankomat",
|
||||||
"he": "כספומט"
|
"he": "כספומט",
|
||||||
|
"eu": "Kutxazaina",
|
||||||
|
"pl": "Bankomat"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -43,7 +48,8 @@
|
||||||
"nb_NO": "{brand}-minibank",
|
"nb_NO": "{brand}-minibank",
|
||||||
"ca": "Caixer automàtic {brand}",
|
"ca": "Caixer automàtic {brand}",
|
||||||
"cs": "Bankomat {brand}",
|
"cs": "Bankomat {brand}",
|
||||||
"he": "כספומט {brand}"
|
"he": "כספומט {brand}",
|
||||||
|
"pl": "Bankomat {brand}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -64,7 +70,8 @@
|
||||||
"nl": "een geldautomaat",
|
"nl": "een geldautomaat",
|
||||||
"ca": "un caixer automàtic",
|
"ca": "un caixer automàtic",
|
||||||
"nb_NO": "en minibank",
|
"nb_NO": "en minibank",
|
||||||
"cs": "bankomat"
|
"cs": "bankomat",
|
||||||
|
"pl": "bankomat"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -80,7 +87,8 @@
|
||||||
"ca": "El nom d'aquest caixer és {name}",
|
"ca": "El nom d'aquest caixer és {name}",
|
||||||
"nb_NO": "Navnet på denne minibanken er {name}",
|
"nb_NO": "Navnet på denne minibanken er {name}",
|
||||||
"cs": "Název tohoto bankomatu je {name}",
|
"cs": "Název tohoto bankomatu je {name}",
|
||||||
"he": "שמו של כספומט זה הוא {name}"
|
"he": "שמו של כספומט זה הוא {name}",
|
||||||
|
"pl": "Nazwa tego bankomatu to {name}"
|
||||||
},
|
},
|
||||||
"condition": "name~*"
|
"condition": "name~*"
|
||||||
},
|
},
|
||||||
|
@ -132,7 +140,8 @@
|
||||||
"nb_NO": "Hvilket selskap driver denne minibanken?",
|
"nb_NO": "Hvilket selskap driver denne minibanken?",
|
||||||
"ca": "Quina companyia opera aquest caixer?",
|
"ca": "Quina companyia opera aquest caixer?",
|
||||||
"cs": "Která společnost provozuje tento bankomat?",
|
"cs": "Která společnost provozuje tento bankomat?",
|
||||||
"he": "איזו חברה מפעילה את הכספומט הזה?"
|
"he": "איזו חברה מפעילה את הכספומט הזה?",
|
||||||
|
"pl": "Jaka firma obsługuje ten bankomat?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "operator",
|
"key": "operator",
|
||||||
|
@ -144,7 +153,8 @@
|
||||||
"nl": "Beheerder",
|
"nl": "Beheerder",
|
||||||
"ca": "Operador",
|
"ca": "Operador",
|
||||||
"cs": "Operátor",
|
"cs": "Operátor",
|
||||||
"he": "מפעיל"
|
"he": "מפעיל",
|
||||||
|
"eu": "Operadorea"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
|
@ -155,7 +165,8 @@
|
||||||
"nb_NO": "Minibanken drives av {operator}",
|
"nb_NO": "Minibanken drives av {operator}",
|
||||||
"ca": "{operator} opera aquest caixer",
|
"ca": "{operator} opera aquest caixer",
|
||||||
"cs": "Bankomat provozuje {operator}",
|
"cs": "Bankomat provozuje {operator}",
|
||||||
"he": "הכספומט מופעל על ידי {operator}"
|
"he": "הכספומט מופעל על ידי {operator}",
|
||||||
|
"pl": "Ten bankomat jest obsługiwany przez {operator}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"opening_hours",
|
"opening_hours",
|
||||||
|
@ -180,7 +191,8 @@
|
||||||
"ca": "Pots retirar diners a aquest caixer",
|
"ca": "Pots retirar diners a aquest caixer",
|
||||||
"nb_NO": "Du kan gjøre uttak i denne minibanken",
|
"nb_NO": "Du kan gjøre uttak i denne minibanken",
|
||||||
"cs": "Z tohoto bankomatu můžete vybírat hotovost",
|
"cs": "Z tohoto bankomatu můžete vybírat hotovost",
|
||||||
"he": "אתה יכול למשוך מזומן מהכספומט הזה"
|
"he": "אתה יכול למשוך מזומן מהכספומט הזה",
|
||||||
|
"pl": "Z tego bankomatu można wypłacić pieniądze"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -217,7 +229,8 @@
|
||||||
"ca": "Pots dipositar diners a aquest caixer?",
|
"ca": "Pots dipositar diners a aquest caixer?",
|
||||||
"cs": "Můžete do tohoto bankomatu vložit hotovost?",
|
"cs": "Můžete do tohoto bankomatu vložit hotovost?",
|
||||||
"fr": "Pouvez-vous déposer de l'argent liquide dans ce DAB ?",
|
"fr": "Pouvez-vous déposer de l'argent liquide dans ce DAB ?",
|
||||||
"he": "האם אתה יכול להפקיד מזומן בכספומט הזה?"
|
"he": "האם אתה יכול להפקיד מזומן בכספומט הזה?",
|
||||||
|
"pl": "Czy ten bankomat pozwala wpłacać pieniądze?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -230,7 +243,8 @@
|
||||||
"nb_NO": "Du kan antagelig ikke gjøre innskudd i denne minibanken",
|
"nb_NO": "Du kan antagelig ikke gjøre innskudd i denne minibanken",
|
||||||
"cs": "Do tohoto bankomatu pravděpodobně nelze vložit hotovost",
|
"cs": "Do tohoto bankomatu pravděpodobně nelze vložit hotovost",
|
||||||
"fr": "Vous ne pouvez probablement pas déposer d'argent liquide dans ce DAB",
|
"fr": "Vous ne pouvez probablement pas déposer d'argent liquide dans ce DAB",
|
||||||
"he": "כנראה שלא תוכל להפקיד מזומן בכספומט הזה"
|
"he": "כנראה שלא תוכל להפקיד מזומן בכספומט הזה",
|
||||||
|
"pl": "Prawdopodobnie ten bankomat nie pozwala wpłacać pieniędzy"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -244,7 +258,8 @@
|
||||||
"ca": "Pots dipositar diners a aquest caixer",
|
"ca": "Pots dipositar diners a aquest caixer",
|
||||||
"cs": "Do tohoto bankomatu můžete vkládat hotovost",
|
"cs": "Do tohoto bankomatu můžete vkládat hotovost",
|
||||||
"fr": "Vous pouvez déposer de l'argent liquide dans ce DAB",
|
"fr": "Vous pouvez déposer de l'argent liquide dans ce DAB",
|
||||||
"he": "אתה יכול להפקיד מזומן לכספומט זה"
|
"he": "אתה יכול להפקיד מזומן לכספומט זה",
|
||||||
|
"pl": "Ten bankomat pozwala wpłacać pieniądze"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -257,7 +272,8 @@
|
||||||
"ca": "No pots dipositar diners a aquest caixer",
|
"ca": "No pots dipositar diners a aquest caixer",
|
||||||
"cs": "Do tohoto bankomatu nelze vkládat hotovost",
|
"cs": "Do tohoto bankomatu nelze vkládat hotovost",
|
||||||
"fr": "Vous ne pouvez pas déposer d'agent liquide dans ce DAB",
|
"fr": "Vous ne pouvez pas déposer d'agent liquide dans ce DAB",
|
||||||
"he": "לא ניתן להפקיד מזומן לכספומט זה"
|
"he": "לא ניתן להפקיד מזומן לכספומט זה",
|
||||||
|
"pl": "Ten bankomat nie pozwala wpłacać pieniędzy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -274,27 +290,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"or": [
|
"or": [
|
||||||
"_country=",
|
"_currency=",
|
||||||
"_country=at",
|
"_currency~.*EUR.*"
|
||||||
"_country=be",
|
|
||||||
"_country=cy",
|
|
||||||
"_country=de",
|
|
||||||
"_country=ee",
|
|
||||||
"_country=es",
|
|
||||||
"_country=fi",
|
|
||||||
"_country=fr",
|
|
||||||
"_country=gr",
|
|
||||||
"_country=hr",
|
|
||||||
"_country=ie",
|
|
||||||
"_country=it",
|
|
||||||
"_country=lt",
|
|
||||||
"_country=lu",
|
|
||||||
"_country=lv",
|
|
||||||
"_country=mt",
|
|
||||||
"_country=nl",
|
|
||||||
"_country=pt",
|
|
||||||
"_country=si",
|
|
||||||
"_country=sk"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -305,78 +302,94 @@
|
||||||
"fr": "Quels billets pouvez-vous retirer ici ?",
|
"fr": "Quels billets pouvez-vous retirer ici ?",
|
||||||
"de": "Welche Geldscheine können Sie hier abheben?",
|
"de": "Welche Geldscheine können Sie hier abheben?",
|
||||||
"cs": "Jaké bankovky zde můžete vybírat?",
|
"cs": "Jaké bankovky zde můžete vybírat?",
|
||||||
"he": "אילו הערות תוכל למשוך כאן?"
|
"he": "אילו הערות תוכל למשוך כאן?",
|
||||||
|
"ca": "Quins bitllets pots retirar aquí?",
|
||||||
|
"pl": "Jakie banknoty można tutaj wypłacić?"
|
||||||
},
|
},
|
||||||
"multiAnswer": true,
|
"multiAnswer": true,
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "cash_out:notes:denominations=5 EUR",
|
"if": "cash_out:notes:denominations=5 EUR",
|
||||||
"icon": "./assets/layers/questions/5euro.svg",
|
"icon": "./assets/layers/questions/denominations/eur/5euro.svg",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "5 euro notes can be withdrawn",
|
"en": "5 euro notes can be withdrawn",
|
||||||
"nl": "Je kunt biljetten van 5 euro afhalen",
|
"nl": "Je kunt biljetten van 5 euro afhalen",
|
||||||
"de": "5-Euro-Scheine können abgehoben werden",
|
"de": "5-Euro-Scheine können abgehoben werden",
|
||||||
"cs": "Bankovky v hodnotě 5 eur lze vybírat"
|
"cs": "Bankovky v hodnotě 5 eur lze vybírat",
|
||||||
|
"ca": "es poden retirar bitllets de 5 euros",
|
||||||
|
"fr": "On peut retirer des billets de 5 euros"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "cash_out:notes:denominations=10 EUR",
|
"if": "cash_out:notes:denominations=10 EUR",
|
||||||
"icon": "./assets/layers/questions/10euro.svg",
|
"icon": "./assets/layers/questions/denominations/eur/10euro.svg",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "10 euro notes can be withdrawn",
|
"en": "10 euro notes can be withdrawn",
|
||||||
"nl": "Je kunt biljetten van 10 euro afhalen",
|
"nl": "Je kunt biljetten van 10 euro afhalen",
|
||||||
"de": "10-Euro-Scheine können abgehoben werden",
|
"de": "10-Euro-Scheine können abgehoben werden",
|
||||||
"cs": "Bankovky v hodnotě 10 eur lze vybírat"
|
"cs": "Bankovky v hodnotě 10 eur lze vybírat",
|
||||||
|
"ca": "es poden retirar bitllets de 10 euros",
|
||||||
|
"fr": "On peut retirer des billets de 10 euros"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "cash_out:notes:denominations=20 EUR",
|
"if": "cash_out:notes:denominations=20 EUR",
|
||||||
"icon": "./assets/layers/questions/20euro.svg",
|
"icon": "./assets/layers/questions/denominations/eur/20euro.svg",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "20 euro notes can be withdrawn",
|
"en": "20 euro notes can be withdrawn",
|
||||||
"nl": "Je kunt biljetten van 20 euro afhalen",
|
"nl": "Je kunt biljetten van 20 euro afhalen",
|
||||||
"de": "20-Euro-Scheine können abgehoben werden",
|
"de": "20-Euro-Scheine können abgehoben werden",
|
||||||
"cs": "Bankovky v hodnotě 20 eur lze vybírat"
|
"cs": "Bankovky v hodnotě 20 eur lze vybírat",
|
||||||
|
"ca": "es poden retirar bitllets de 20 euros",
|
||||||
|
"fr": "On peut retirer des billets de 20 euros"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "cash_out:notes:denominations=50 EUR",
|
"if": "cash_out:notes:denominations=50 EUR",
|
||||||
"icon": "./assets/layers/questions/50euro.svg",
|
"icon": "./assets/layers/questions/denominations/eur/50euro.svg",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "50 euro notes can be withdrawn",
|
"en": "50 euro notes can be withdrawn",
|
||||||
"nl": "Je kunt biljetten van 50 euro afhalen",
|
"nl": "Je kunt biljetten van 50 euro afhalen",
|
||||||
"de": "Es können 50-Euro-Scheine abgehoben werden",
|
"de": "Es können 50-Euro-Scheine abgehoben werden",
|
||||||
"cs": "50 eurové bankovky lze vybírat"
|
"cs": "50 eurové bankovky lze vybírat",
|
||||||
|
"ca": "es poden retirar bitllets de 50 euros",
|
||||||
|
"fr": "On peut retirer des billets de 50 euros"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "cash_out:notes:denominations=100 EUR",
|
"if": "cash_out:notes:denominations=100 EUR",
|
||||||
"icon": "./assets/layers/questions/100euro.svg",
|
"icon": "./assets/layers/questions/denominations/eur/100euro.svg",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "100 euro notes can be withdrawn",
|
"en": "100 euro notes can be withdrawn",
|
||||||
"nl": "Je kunt biljetten van 100 euro afhalen",
|
"nl": "Je kunt biljetten van 100 euro afhalen",
|
||||||
"de": "100-Euro-Scheine können abgehoben werden",
|
"de": "100-Euro-Scheine können abgehoben werden",
|
||||||
"cs": "100 eurové bankovky lze vybírat"
|
"cs": "100 eurové bankovky lze vybírat",
|
||||||
|
"ca": "es poden retirar bitllets de 100 euros",
|
||||||
|
"fr": "On peut retirer des billets de 100 euros"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "cash_out:notes:denominations=200 EUR",
|
"if": "cash_out:notes:denominations=200 EUR",
|
||||||
"icon": "./assets/layers/questions/200euro.svg",
|
"icon": "./assets/layers/questions/denominations/eur/200euro.svg",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "200 euro notes can be withdrawn",
|
"en": "200 euro notes can be withdrawn",
|
||||||
"nl": "Je kunt biljetten van 200 euro afhalen",
|
"nl": "Je kunt biljetten van 200 euro afhalen",
|
||||||
"de": "200-Euro-Scheine können abgehoben werden",
|
"de": "200-Euro-Scheine können abgehoben werden",
|
||||||
"cs": "200 eurové bankovky lze vybírat"
|
"cs": "200 eurové bankovky lze vybírat",
|
||||||
|
"ca": "es poden retirar bitllets de 200 euros",
|
||||||
|
"fr": "On peut retirer des billets de 200 euros"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "cash_out:notes:denominations=500 EUR",
|
"if": "cash_out:notes:denominations=500 EUR",
|
||||||
"icon": "./assets/layers/questions/500euro.svg",
|
"icon": "./assets/layers/questions/denominations/eur/500euro.svg",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "500 euro notes can be withdrawn",
|
"en": "500 euro notes can be withdrawn",
|
||||||
"nl": "Je kunt biljetten van 500 euro afhalen",
|
"nl": "Je kunt biljetten van 500 euro afhalen",
|
||||||
"de": "500-Euro-Scheine können abgehoben werden",
|
"de": "500-Euro-Scheine können abgehoben werden",
|
||||||
"cs": "Bankovky v hodnotě 500 eur lze vybírat"
|
"cs": "Bankovky v hodnotě 500 eur lze vybírat",
|
||||||
|
"ca": "es poden retirar bitllets de 500 euros",
|
||||||
|
"fr": "On peut retirer des billets de 500 euros"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -491,4 +504,4 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -6,7 +6,8 @@
|
||||||
"nl": "Een financiële instelling waar je geld kunt",
|
"nl": "Een financiële instelling waar je geld kunt",
|
||||||
"ca": "Una institució financera per a dipositar diners",
|
"ca": "Una institució financera per a dipositar diners",
|
||||||
"cs": "Finanční instituce pro ukládání peněz",
|
"cs": "Finanční instituce pro ukládání peněz",
|
||||||
"he": "מוסד פיננסי להפקדת כסף"
|
"he": "מוסד פיננסי להפקדת כסף",
|
||||||
|
"pl": "Instytucja finansowa pozwalająca wpłacić pieniądze"
|
||||||
},
|
},
|
||||||
"name": {
|
"name": {
|
||||||
"en": "Banks",
|
"en": "Banks",
|
||||||
|
@ -15,7 +16,9 @@
|
||||||
"nb_NO": "Banker",
|
"nb_NO": "Banker",
|
||||||
"nl": "Banken",
|
"nl": "Banken",
|
||||||
"cs": "Banky",
|
"cs": "Banky",
|
||||||
"he": "בנקים"
|
"he": "בנקים",
|
||||||
|
"eu": "Bankuak",
|
||||||
|
"pl": "Banki"
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"render": "Bank",
|
"render": "Bank",
|
||||||
|
@ -48,7 +51,8 @@
|
||||||
"nl": "Heeft deze bank een bankautomaat?",
|
"nl": "Heeft deze bank een bankautomaat?",
|
||||||
"ca": "Aquest banc té un caixer automàtic?",
|
"ca": "Aquest banc té un caixer automàtic?",
|
||||||
"cs": "Má tato banka bankomat?",
|
"cs": "Má tato banka bankomat?",
|
||||||
"he": "האם לבנק הזה יש כספומט?"
|
"he": "האם לבנק הזה יש כספומט?",
|
||||||
|
"pl": "Czy ten bank ma bankomat?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -60,7 +64,8 @@
|
||||||
"nl": "Deze bank heeft een bankautomaat",
|
"nl": "Deze bank heeft een bankautomaat",
|
||||||
"ca": "Aquest banc té un caixer automàtic",
|
"ca": "Aquest banc té un caixer automàtic",
|
||||||
"cs": "Tato banka má bankomat",
|
"cs": "Tato banka má bankomat",
|
||||||
"he": "לבנק הזה יש כספומט"
|
"he": "לבנק הזה יש כספומט",
|
||||||
|
"pl": "Ten bank ma bankomat"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -71,7 +76,8 @@
|
||||||
"nb_NO": "Denne banken har <b>ikke</b> en minibank",
|
"nb_NO": "Denne banken har <b>ikke</b> en minibank",
|
||||||
"nl": "Deze bank heeft <b>geen</b> bankautomaaat",
|
"nl": "Deze bank heeft <b>geen</b> bankautomaaat",
|
||||||
"ca": "Aquest banc <b>no</b> té un caixer automàtic",
|
"ca": "Aquest banc <b>no</b> té un caixer automàtic",
|
||||||
"cs": "Tato banka <b>nemá bankomat</b>"
|
"cs": "Tato banka <b>nemá bankomat</b>",
|
||||||
|
"pl": "Ten bank <b>nie ma</b> bankomatu"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -100,7 +106,8 @@
|
||||||
"nl": "Met een bankautomaat",
|
"nl": "Met een bankautomaat",
|
||||||
"ca": "Amb un caixer automàtic",
|
"ca": "Amb un caixer automàtic",
|
||||||
"cs": "S bankomatem",
|
"cs": "S bankomatem",
|
||||||
"he": "עם כספומט"
|
"he": "עם כספומט",
|
||||||
|
"pl": "Za pomocą bankomatu"
|
||||||
},
|
},
|
||||||
"osmTags": "atm=yes"
|
"osmTags": "atm=yes"
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,9 @@
|
||||||
"cs": "Překážky",
|
"cs": "Překážky",
|
||||||
"pa_PK": "رُکاوٹاں",
|
"pa_PK": "رُکاوٹاں",
|
||||||
"nb_NO": "Barrièrer",
|
"nb_NO": "Barrièrer",
|
||||||
"he": "מחסומים"
|
"he": "מחסומים",
|
||||||
|
"eu": "Barrerak",
|
||||||
|
"pl": "Barierki"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Obstacles while cycling, such as bollards and cycle barriers",
|
"en": "Obstacles while cycling, such as bollards and cycle barriers",
|
||||||
|
@ -48,7 +50,8 @@
|
||||||
"da": "Barriere",
|
"da": "Barriere",
|
||||||
"cs": "Bariéra",
|
"cs": "Bariéra",
|
||||||
"pa_PK": "رُکاوٹ",
|
"pa_PK": "رُکاوٹ",
|
||||||
"he": "מחסום"
|
"he": "מחסום",
|
||||||
|
"eu": "Barrera"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -63,7 +66,8 @@
|
||||||
"ca": "Pilona",
|
"ca": "Pilona",
|
||||||
"da": "Pullert",
|
"da": "Pullert",
|
||||||
"cs": "Sloupek",
|
"cs": "Sloupek",
|
||||||
"pa_PK": "بولارڈ"
|
"pa_PK": "بولارڈ",
|
||||||
|
"eu": "Bolardoa"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,7 +21,8 @@
|
||||||
"da": "Bænke",
|
"da": "Bænke",
|
||||||
"cs": "Lavičky",
|
"cs": "Lavičky",
|
||||||
"pa_PK": "بینچ",
|
"pa_PK": "بینچ",
|
||||||
"he": "ספסלים"
|
"he": "ספסלים",
|
||||||
|
"eu": "Bankuak"
|
||||||
},
|
},
|
||||||
"minzoom": 14,
|
"minzoom": 14,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -49,7 +50,8 @@
|
||||||
"da": "Bænk",
|
"da": "Bænk",
|
||||||
"cs": "Lavička",
|
"cs": "Lavička",
|
||||||
"pa_PK": "بینچ",
|
"pa_PK": "بینچ",
|
||||||
"he": "ספסל"
|
"he": "ספסל",
|
||||||
|
"eu": "Bankua"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
|
@ -81,7 +83,9 @@
|
||||||
"ca": "Aquest banc té dues cares i comparteix el respatller",
|
"ca": "Aquest banc té dues cares i comparteix el respatller",
|
||||||
"cs": "Tato lavička je oboustranná a má společné opěradlo",
|
"cs": "Tato lavička je oboustranná a má společné opěradlo",
|
||||||
"es": "Este banco tiene dos caras y comparte el respaldo",
|
"es": "Este banco tiene dos caras y comparte el respaldo",
|
||||||
"he": "ספסל זה דו צדדי וחולק את משענת הגב"
|
"he": "ספסל זה דו צדדי וחולק את משענת הגב",
|
||||||
|
"fr": "Ce banc a deux côtés avec un dossier partagé",
|
||||||
|
"pl": "Ta ławka jest dwustronna ze wspólnym oparciem"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/bench/two_sided.svg",
|
"path": "./assets/layers/bench/two_sided.svg",
|
||||||
|
@ -266,7 +270,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The seating is made from wood",
|
"en": "The seating is made from wood",
|
||||||
"de": "Die Sitzfläche ist aus Holz",
|
"de": "Die Sitzfläche ist aus Holz",
|
||||||
"fr": "Matériau du siège : bois",
|
"fr": "L'assise est en bois",
|
||||||
"nl": "Gemaakt uit hout",
|
"nl": "Gemaakt uit hout",
|
||||||
"es": "El asiento está hecho de madera",
|
"es": "El asiento está hecho de madera",
|
||||||
"hu": "Ülőfelület: fa",
|
"hu": "Ülőfelület: fa",
|
||||||
|
@ -291,7 +295,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The seating is made from metal",
|
"en": "The seating is made from metal",
|
||||||
"de": "Die Sitzfläche ist aus Metall",
|
"de": "Die Sitzfläche ist aus Metall",
|
||||||
"fr": "Matériau du siège : métal",
|
"fr": "L'assise est en métal",
|
||||||
"nl": "Gemaakt uit metaal",
|
"nl": "Gemaakt uit metaal",
|
||||||
"es": "El asiento está hecho de metal",
|
"es": "El asiento está hecho de metal",
|
||||||
"hu": "Ülőfelület: fém",
|
"hu": "Ülőfelület: fém",
|
||||||
|
@ -315,7 +319,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The seating is made from stone",
|
"en": "The seating is made from stone",
|
||||||
"de": "Die Sitzfläche ist aus Stein",
|
"de": "Die Sitzfläche ist aus Stein",
|
||||||
"fr": "Matériau : pierre",
|
"fr": "L'assise est en pierre",
|
||||||
"nl": "Het zitgedeelte is gemaakt uit steen",
|
"nl": "Het zitgedeelte is gemaakt uit steen",
|
||||||
"es": "El asiento está hecho de piedra",
|
"es": "El asiento está hecho de piedra",
|
||||||
"hu": "Ülőfelület: kő",
|
"hu": "Ülőfelület: kő",
|
||||||
|
@ -365,7 +369,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The seating is made from plastic",
|
"en": "The seating is made from plastic",
|
||||||
"de": "Die Sitzfläche ist aus Kunststoff",
|
"de": "Die Sitzfläche ist aus Kunststoff",
|
||||||
"fr": "Matériau : plastique",
|
"fr": "L'assise est en plastique",
|
||||||
"nl": "Het zitgedeelte is gemaakt uit plastiek",
|
"nl": "Het zitgedeelte is gemaakt uit plastiek",
|
||||||
"es": "El asiento está hecho de plástico",
|
"es": "El asiento está hecho de plástico",
|
||||||
"hu": "Ülőfelület: műanyag",
|
"hu": "Ülőfelület: műanyag",
|
||||||
|
@ -390,7 +394,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The seating is made from steel",
|
"en": "The seating is made from steel",
|
||||||
"de": "Die Sitzfläche ist aus Stahl",
|
"de": "Die Sitzfläche ist aus Stahl",
|
||||||
"fr": "Matériau du siège : acier",
|
"fr": "L'assise est en acier",
|
||||||
"nl": "Het zitgedeelte is gemaakt uit staal",
|
"nl": "Het zitgedeelte is gemaakt uit staal",
|
||||||
"es": "El asiento está hecho de acero",
|
"es": "El asiento está hecho de acero",
|
||||||
"hu": "Ülőfelület: acél",
|
"hu": "Ülőfelület: acél",
|
||||||
|
@ -865,9 +869,9 @@
|
||||||
"en": "E.g. on a mounted plaque, in the backrest, …",
|
"en": "E.g. on a mounted plaque, in the backrest, …",
|
||||||
"nl": "Bijvoorbeeld op een aangebracht plakkaat, ingesneden in de rugleuning, ...",
|
"nl": "Bijvoorbeeld op een aangebracht plakkaat, ingesneden in de rugleuning, ...",
|
||||||
"de": "Z.B. auf einer angebrachten Plakette, in der Rückenlehne, …",
|
"de": "Z.B. auf einer angebrachten Plakette, in der Rückenlehne, …",
|
||||||
"fr": "Par exemple, sur une plaque accrochée, sur le dossier, ...",
|
"fr": "Par exemple, sur une plaque accrochée, sur le dossier, …",
|
||||||
"ca": "P. ex. en una placa, al respatller, ...",
|
"ca": "P. ex. en una placa, al respatller, …",
|
||||||
"cs": "Např. na připevněné desce, v opěradle, ...",
|
"cs": "Např. na připevněné desce, v opěradle, …",
|
||||||
"pt": "Por exemplo: em placa montada, no encosto, ..."
|
"pt": "Por exemplo: em placa montada, no encosto, ..."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -879,7 +883,9 @@
|
||||||
"de": "Hat diese Bank ein künstlerisches Element?",
|
"de": "Hat diese Bank ein künstlerisches Element?",
|
||||||
"ca": "Aquest banc té algun element artístic?",
|
"ca": "Aquest banc té algun element artístic?",
|
||||||
"cs": "Má tato lavička umělecké prvky?",
|
"cs": "Má tato lavička umělecké prvky?",
|
||||||
"he": "האם לספסל הזה יש אלמנט אומנותי?"
|
"he": "האם לספסל הזה יש אלמנט אומנותי?",
|
||||||
|
"fr": "Est-ce que ce banc inclut un élément artistique ?",
|
||||||
|
"pl": "Czy ta ławka ma wbudowane dzieło sztuki?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -891,7 +897,8 @@
|
||||||
"fr": "Une oeuvre d'art est intégrée à ce banc",
|
"fr": "Une oeuvre d'art est intégrée à ce banc",
|
||||||
"ca": "Aquest banc té integrada una obra d'art",
|
"ca": "Aquest banc té integrada una obra d'art",
|
||||||
"cs": "Tato lavička má integrované umělecké dílo",
|
"cs": "Tato lavička má integrované umělecké dílo",
|
||||||
"he": "לספסל זה יצירת אמנות משולבת"
|
"he": "לספסל זה יצירת אמנות משולבת",
|
||||||
|
"pl": "Ta ławka ma wbudowane dzieło sztuki"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -904,7 +911,8 @@
|
||||||
"es": "Este banco no tiene una obra de arte integrada",
|
"es": "Este banco no tiene una obra de arte integrada",
|
||||||
"ca": "Aquest banc no té una obra d'art integrada",
|
"ca": "Aquest banc no té una obra d'art integrada",
|
||||||
"cs": "Tato lavička nemá integrované umělecké dílo",
|
"cs": "Tato lavička nemá integrované umělecké dílo",
|
||||||
"he": "לספסל זה אין יצירת אמנות משולבת"
|
"he": "לספסל זה אין יצירת אמנות משולבת",
|
||||||
|
"pl": "Ta ławka nie ma wbudowanego dzieła sztuki"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -913,7 +921,9 @@
|
||||||
"nl": "Bijvoorbeeld een standbeeld, schildering of ander, niet-triviaal kunstwerk",
|
"nl": "Bijvoorbeeld een standbeeld, schildering of ander, niet-triviaal kunstwerk",
|
||||||
"de": "Z.B. hat es ein integriertes Gemälde, eine Statue oder eine andere nicht triviale, kreative Arbeit",
|
"de": "Z.B. hat es ein integriertes Gemälde, eine Statue oder eine andere nicht triviale, kreative Arbeit",
|
||||||
"ca": "P.e. té una pintura integrada, estatua o altres treballs no trivials i creatius",
|
"ca": "P.e. té una pintura integrada, estatua o altres treballs no trivials i creatius",
|
||||||
"cs": "Např. má integrovaný obraz, sochu nebo jiné netriviální tvůrčí dílo"
|
"cs": "Např. má integrovaný obraz, sochu nebo jiné netriviální tvůrčí dílo",
|
||||||
|
"fr": "Par ex. il intègre une peinture, statue ou autre élément non commune, travail cratif",
|
||||||
|
"pl": "Np. jest na niej coś namalowane, ma rzeźbę lub inną nietrywialną pracę"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -936,7 +946,8 @@
|
||||||
"fr": "Ce banc sert-il de mémorial pour quelqu'un ou quelque chose ?",
|
"fr": "Ce banc sert-il de mémorial pour quelqu'un ou quelque chose ?",
|
||||||
"ca": "Aquest banc actua com a memorial per a algú o algo?",
|
"ca": "Aquest banc actua com a memorial per a algú o algo?",
|
||||||
"cs": "Slouží tato lavička jako památník někoho nebo něčeho?",
|
"cs": "Slouží tato lavička jako památník někoho nebo něčeho?",
|
||||||
"pt": "Este banco serve como memorial para alguém ou algo?"
|
"pt": "Este banco serve como memorial para alguém ou algo?",
|
||||||
|
"pl": "Czy ta ławka służy jako pomnik upamiętniający kogoś lub coś?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -948,7 +959,8 @@
|
||||||
"fr": "Ce banc est un mémorial pour quelqu'un ou quelque chose",
|
"fr": "Ce banc est un mémorial pour quelqu'un ou quelque chose",
|
||||||
"ca": "Aquest banc és un memorial per a algú o alguna cosa",
|
"ca": "Aquest banc és un memorial per a algú o alguna cosa",
|
||||||
"cs": "Tato lavička je pomníkem pro někoho nebo něco",
|
"cs": "Tato lavička je pomníkem pro někoho nebo něco",
|
||||||
"pt": "Este banco é um memorial para alguém ou algo"
|
"pt": "Este banco é um memorial para alguém ou algo",
|
||||||
|
"pl": "Ta ławka jest pomnikiem upamiętniającym kogoś lub coś"
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"memorial=bench"
|
"memorial=bench"
|
||||||
|
@ -968,7 +980,8 @@
|
||||||
"fr": "Ce banc n'est <b>pas</b> un mémorial pour quelqu'un ou quelque chose",
|
"fr": "Ce banc n'est <b>pas</b> un mémorial pour quelqu'un ou quelque chose",
|
||||||
"ca": "Aquest banc <b>no</b> és un memorial per a algú o alguna cosa",
|
"ca": "Aquest banc <b>no</b> és un memorial per a algú o alguna cosa",
|
||||||
"cs": "Tato lavička <b>není</b> pro někoho nebo něco památníkem",
|
"cs": "Tato lavička <b>není</b> pro někoho nebo něco památníkem",
|
||||||
"pt": "Este banco <b>não é</b> um memorial para alguém ou algo"
|
"pt": "Este banco <b>não é</b> um memorial para alguém ou algo",
|
||||||
|
"pl": "Ta ławka <b>nie</b> jest pomnikiem upamiętniającym kogoś lub coś"
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"memorial="
|
"memorial="
|
||||||
|
@ -1077,7 +1090,8 @@
|
||||||
"fr": "Avec et sans dossier",
|
"fr": "Avec et sans dossier",
|
||||||
"ca": "Amb i sense respatller",
|
"ca": "Amb i sense respatller",
|
||||||
"cs": "S opěradlem a bez opěradla",
|
"cs": "S opěradlem a bez opěradla",
|
||||||
"he": "עם ובלי משענת גב"
|
"he": "עם ובלי משענת גב",
|
||||||
|
"pl": "Z oraz bez oparcia"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1089,7 +1103,8 @@
|
||||||
"fr": "A un dossier",
|
"fr": "A un dossier",
|
||||||
"ca": "Té un respatller",
|
"ca": "Té un respatller",
|
||||||
"cs": "Má opěradlo",
|
"cs": "Má opěradlo",
|
||||||
"he": "בעל משענת גב"
|
"he": "בעל משענת גב",
|
||||||
|
"pl": "Ma oparcie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1101,7 +1116,8 @@
|
||||||
"fr": "N'a pas de dossier",
|
"fr": "N'a pas de dossier",
|
||||||
"ca": "No té respatller",
|
"ca": "No té respatller",
|
||||||
"cs": "Nemá opěradlo",
|
"cs": "Nemá opěradlo",
|
||||||
"he": "אין משענת גב"
|
"he": "אין משענת גב",
|
||||||
|
"pl": "Nie ma oparcia"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -55,7 +55,8 @@
|
||||||
"da": "Bænk",
|
"da": "Bænk",
|
||||||
"cs": "Lavička",
|
"cs": "Lavička",
|
||||||
"pa_PK": "بینچ",
|
"pa_PK": "بینچ",
|
||||||
"he": "ספסל"
|
"he": "ספסל",
|
||||||
|
"eu": "Banku"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -135,7 +136,8 @@
|
||||||
"es": "{name}",
|
"es": "{name}",
|
||||||
"ca": "{name}",
|
"ca": "{name}",
|
||||||
"da": "{name}",
|
"da": "{name}",
|
||||||
"cs": "{name}"
|
"cs": "{name}",
|
||||||
|
"eu": "{name}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "name"
|
"key": "name"
|
||||||
|
@ -230,7 +232,8 @@
|
||||||
"nl": "Deze bushalte heeft geen zitbank (er is er nooit een geweest of deze is verwijderd)",
|
"nl": "Deze bushalte heeft geen zitbank (er is er nooit een geweest of deze is verwijderd)",
|
||||||
"ca": "Aquesta para de bus no té un banc (mai n'ha tingut un o ha estat eliminat)",
|
"ca": "Aquesta para de bus no té un banc (mai n'ha tingut un o ha estat eliminat)",
|
||||||
"cs": "Na této autobusové zastávce není lavička (nikdy zde nebyla nebo byla odstraněna)",
|
"cs": "Na této autobusové zastávce není lavička (nikdy zde nebyla nebo byla odstraněna)",
|
||||||
"pt": "Este ponto de ônibus não tem banco (nunca houve ou foi removido)"
|
"pt": "Este ponto de ônibus não tem banco (nunca houve ou foi removido)",
|
||||||
|
"pl": "Ten przystanek autobusowy nie ma ławki (nigdy jej nie było lub została usunięta)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -244,7 +247,8 @@
|
||||||
"nl": "Deze bushalte wordt niet meer gebruikt",
|
"nl": "Deze bushalte wordt niet meer gebruikt",
|
||||||
"ca": "Aquesta parada de bus no s'utilitza més",
|
"ca": "Aquesta parada de bus no s'utilitza més",
|
||||||
"cs": "Tato autobusová zastávka se již nepoužívá",
|
"cs": "Tato autobusová zastávka se již nepoužívá",
|
||||||
"pt": "Este ponto de ônibus não é mais usado"
|
"pt": "Este ponto de ônibus não é mais usado",
|
||||||
|
"pl": "Ten przystanek autobusowy nie jest już używany"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -264,6 +268,7 @@
|
||||||
"da": "Et lag, der viser alle offentlige stoppesteder, som har en bænk",
|
"da": "Et lag, der viser alle offentlige stoppesteder, som har en bænk",
|
||||||
"cs": "Vrstva zobrazující všechny zastávky veřejné dopravy, které mají lavičku",
|
"cs": "Vrstva zobrazující všechny zastávky veřejné dopravy, které mají lavičku",
|
||||||
"ca": "Una capa que mostra totes les parades de transport públic que tenen bancs",
|
"ca": "Una capa que mostra totes les parades de transport públic que tenen bancs",
|
||||||
"pt": "Uma camada mostrando todas as paradas de transporte público que possuem um banco"
|
"pt": "Uma camada mostrando todas as paradas de transporte público que possuem um banco",
|
||||||
|
"pl": "Warstwa pokazująca wszystkie przystanki transportu publicznego, które mają ławki"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,8 @@
|
||||||
"da": "Cykeludlejning",
|
"da": "Cykeludlejning",
|
||||||
"fr": "Location de vélo",
|
"fr": "Location de vélo",
|
||||||
"cs": "Půjčovna kol",
|
"cs": "Půjčovna kol",
|
||||||
"ca": "Lloguer de bicicletes"
|
"ca": "Lloguer de bicicletes",
|
||||||
|
"pl": "Wypożyczalnia rowerów"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -51,7 +52,9 @@
|
||||||
"es": "{name}",
|
"es": "{name}",
|
||||||
"da": "{name}",
|
"da": "{name}",
|
||||||
"fr": "{name}",
|
"fr": "{name}",
|
||||||
"cs": "{name}"
|
"cs": "{name}",
|
||||||
|
"eu": "{name}",
|
||||||
|
"pl": "{name}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -166,7 +169,7 @@
|
||||||
"es": "Este es un punto de entrega, ej. un aparcamiento reservado para colocar las bicicletas, claramente marcado como solo para el servicio de alquiler",
|
"es": "Este es un punto de entrega, ej. un aparcamiento reservado para colocar las bicicletas, claramente marcado como solo para el servicio de alquiler",
|
||||||
"fr": "C'est un point de dépôt, p.ex. un emplacement de parking réservé aux vélos de location",
|
"fr": "C'est un point de dépôt, p.ex. un emplacement de parking réservé aux vélos de location",
|
||||||
"da": "Dette er et afleveringssted, f.eks. en reserveret parkeringsplads til cykler, som er tydeligt markeret som værende forbeholdt udlejningstjenesten",
|
"da": "Dette er et afleveringssted, f.eks. en reserveret parkeringsplads til cykler, som er tydeligt markeret som værende forbeholdt udlejningstjenesten",
|
||||||
"cs": "Jedná se o místo předání, např. vyhrazené parkoviště pro umístění jízdních kol, které je zřetelně označeno jako místo určené pouze pro půjčovnu",
|
"cs": "Jedná se o místo předání, např. vyhrazené parkoviště pro umístění jízdních kol, zřetelně označené jako místo určené pouze pro půjčovnu",
|
||||||
"ca": "Aquest és un punt de baixada, p. ex. un aparcament reservat per col·locar les bicicletes marcades clarament com a només per al servei de lloguer"
|
"ca": "Aquest és un punt de baixada, p. ex. un aparcament reservat per col·locar les bicicletes marcades clarament com a només per al servei de lloguer"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -358,7 +361,8 @@
|
||||||
"eo": "urbaj bicikloj",
|
"eo": "urbaj bicikloj",
|
||||||
"fr": "vélos de ville",
|
"fr": "vélos de ville",
|
||||||
"cs": "městská kola",
|
"cs": "městská kola",
|
||||||
"ca": "Bicicletes de ciutat"
|
"ca": "Bicicletes de ciutat",
|
||||||
|
"pl": "rowery miejskie"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -372,7 +376,8 @@
|
||||||
"eo": "elektraj bicikloj",
|
"eo": "elektraj bicikloj",
|
||||||
"fr": "vélos électriques",
|
"fr": "vélos électriques",
|
||||||
"cs": "elektrokola",
|
"cs": "elektrokola",
|
||||||
"ca": "bicicletes elèctriques"
|
"ca": "bicicletes elèctriques",
|
||||||
|
"pl": "rowery elektryczne"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -386,7 +391,8 @@
|
||||||
"eo": "bicikloj por infanoj",
|
"eo": "bicikloj por infanoj",
|
||||||
"fr": "vélos d'enfants",
|
"fr": "vélos d'enfants",
|
||||||
"cs": "kola pro děti",
|
"cs": "kola pro děti",
|
||||||
"ca": "bicicletes per a xiquets"
|
"ca": "bicicletes per a xiquets",
|
||||||
|
"pl": "rowery dla dzieci"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -400,7 +406,8 @@
|
||||||
"eo": "BMX-bicikloj",
|
"eo": "BMX-bicikloj",
|
||||||
"fr": "BMX",
|
"fr": "BMX",
|
||||||
"cs": "BMX kola",
|
"cs": "BMX kola",
|
||||||
"ca": "Bicicletes BMX"
|
"ca": "Bicicletes BMX",
|
||||||
|
"pl": "rowery BMX"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -414,7 +421,9 @@
|
||||||
"da": "mountainbike",
|
"da": "mountainbike",
|
||||||
"eo": "montobicikloj",
|
"eo": "montobicikloj",
|
||||||
"fr": "vélos de montagne",
|
"fr": "vélos de montagne",
|
||||||
"cs": "horská kola"
|
"cs": "horská kola",
|
||||||
|
"eu": "mendiko bizikletak",
|
||||||
|
"pl": "rowery górskie"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
@ -440,7 +449,9 @@
|
||||||
"da": "tandem",
|
"da": "tandem",
|
||||||
"es": "tándem",
|
"es": "tándem",
|
||||||
"fr": "tandem",
|
"fr": "tandem",
|
||||||
"cs": "tandem"
|
"cs": "tandem",
|
||||||
|
"eu": "tandem",
|
||||||
|
"pl": "tandem"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
|
@ -103,7 +103,7 @@
|
||||||
"zh_Hant": "運作狀態是 <i>{operational_status}</i>",
|
"zh_Hant": "運作狀態是 <i>{operational_status}</i>",
|
||||||
"pt_BR": "O estado operacional é: <i>{operational_status}</i>",
|
"pt_BR": "O estado operacional é: <i>{operational_status}</i>",
|
||||||
"pt": "O estado operacional é: <i>{operational_status}</i>",
|
"pt": "O estado operacional é: <i>{operational_status}</i>",
|
||||||
"es": "El estado operacional es <i>{operational_status}</i></i>",
|
"es": "El estado operacional es <i>{operational_status}</i>",
|
||||||
"da": "Driftsstatus er <i>{operational_status}</i>",
|
"da": "Driftsstatus er <i>{operational_status}</i>",
|
||||||
"cs": "Provozní stav je <i>{operational_status}</i>",
|
"cs": "Provozní stav je <i>{operational_status}</i>",
|
||||||
"ca": "L'estat operatiu és <i>{operational_status}</i>"
|
"ca": "L'estat operatiu és <i>{operational_status}</i>"
|
||||||
|
|
|
@ -309,7 +309,9 @@
|
||||||
"pt_BR": "Quando este café de bicicleta abre?",
|
"pt_BR": "Quando este café de bicicleta abre?",
|
||||||
"de": "Wann ist dieses Fahrradcafé geöffnet?",
|
"de": "Wann ist dieses Fahrradcafé geöffnet?",
|
||||||
"pt": "Quando este café de bicicleta abre?",
|
"pt": "Quando este café de bicicleta abre?",
|
||||||
"da": "Hvornår er denne cykelcafé åbent?"
|
"da": "Hvornår er denne cykelcafé åbent?",
|
||||||
|
"cs": "Kdy byla tato cyklistická kavárna otevřena?",
|
||||||
|
"ca": "Quan obri aquest cafè ciclista?"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -215,9 +215,9 @@
|
||||||
"en": "There is a fee to use this cleaning service",
|
"en": "There is a fee to use this cleaning service",
|
||||||
"nl": "Dit fietsschoonmaakpunt is betalend",
|
"nl": "Dit fietsschoonmaakpunt is betalend",
|
||||||
"es": "Este servicio de limpieza es de pago",
|
"es": "Este servicio de limpieza es de pago",
|
||||||
"ca": "Aquest servei de neteja és de pagament",
|
"ca": "Hi ha un cost per utilitzar aquest servei de neteja",
|
||||||
"de": "Dieser Reinigungsservice ist kostenpflichtig",
|
"de": "Dieser Reinigungsservice ist kostenpflichtig",
|
||||||
"cs": "Tato úklidová služba je placená"
|
"cs": "Využití úklidové služby je zpoplatněno"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -189,7 +189,8 @@
|
||||||
"ru": "Стойка",
|
"ru": "Стойка",
|
||||||
"ca": "Enganxament",
|
"ca": "Enganxament",
|
||||||
"da": "Stativ",
|
"da": "Stativ",
|
||||||
"cs": "Stojan"
|
"cs": "Stojan",
|
||||||
|
"eu": "Rack-a"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/bike_parking/rack.svg",
|
"path": "./assets/layers/bike_parking/rack.svg",
|
||||||
|
@ -233,7 +234,8 @@
|
||||||
"da": "Skur",
|
"da": "Skur",
|
||||||
"cs": "Přístřešek",
|
"cs": "Přístřešek",
|
||||||
"pa_PK": "شیڈ",
|
"pa_PK": "شیڈ",
|
||||||
"ca": "cobert"
|
"ca": "cobert",
|
||||||
|
"eu": "Etxola"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/bike_parking/shed.svg",
|
"path": "./assets/layers/bike_parking/shed.svg",
|
||||||
|
@ -253,7 +255,8 @@
|
||||||
"es": "Bolardo",
|
"es": "Bolardo",
|
||||||
"da": "Pullert",
|
"da": "Pullert",
|
||||||
"cs": "Sloupek",
|
"cs": "Sloupek",
|
||||||
"pa_PK": "بولارڈ"
|
"pa_PK": "بولارڈ",
|
||||||
|
"eu": "Bolardo"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/bike_parking/bollard.svg",
|
"path": "./assets/layers/bike_parking/bollard.svg",
|
||||||
|
@ -266,10 +269,10 @@
|
||||||
"en": "An area on the floor which is marked for bicycle parking",
|
"en": "An area on the floor which is marked for bicycle parking",
|
||||||
"nl": "Een oppervlakte die gemarkeerd is om fietsen te parkeren",
|
"nl": "Een oppervlakte die gemarkeerd is om fietsen te parkeren",
|
||||||
"fr": "Zone au sol qui est marquée pour le stationnement des vélos",
|
"fr": "Zone au sol qui est marquée pour le stationnement des vélos",
|
||||||
"it": "Una zona del pavimento che è marcata per il parcheggio delle bici",
|
"it": "Una zona del terreno che è marcata per il parcheggio delle bici",
|
||||||
"de": "Ein Bereich auf dem Boden, der für das Abstellen von Fahrrädern gekennzeichnet ist",
|
"de": "Ein Bereich auf dem Boden, der für das Abstellen von Fahrrädern gekennzeichnet ist",
|
||||||
"zh_Hant": "樓層當中標示為單車停車場的區域",
|
"zh_Hant": "樓層當中標示為單車停車場的區域",
|
||||||
"es": "Una área en el suelo que está marcada para el aparcamiento de bicicletas",
|
"es": "Una área en el suelo que está marcada para el aparcamiento de bicicletas",
|
||||||
"da": "Et område på gulvet, der er markeret til cykelparkering",
|
"da": "Et område på gulvet, der er markeret til cykelparkering",
|
||||||
"cs": "Plocha na zemi označená pro parkování jízdních kol",
|
"cs": "Plocha na zemi označená pro parkování jízdních kol",
|
||||||
"ca": "Una zona al terra que està senyalitzada per a l'aparcament de bicicletes"
|
"ca": "Una zona al terra que està senyalitzada per a l'aparcament de bicicletes"
|
||||||
|
@ -348,7 +351,8 @@
|
||||||
"ca": "Aparcament al terrat",
|
"ca": "Aparcament al terrat",
|
||||||
"es": "Aparcamiento de azotea",
|
"es": "Aparcamiento de azotea",
|
||||||
"da": "Tagparkering",
|
"da": "Tagparkering",
|
||||||
"cs": "Parkoviště na střeše"
|
"cs": "Parkoviště na střeše",
|
||||||
|
"pl": "Parking na dachu"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -468,7 +472,8 @@
|
||||||
"es": "Espacio para {capacity} bicis",
|
"es": "Espacio para {capacity} bicis",
|
||||||
"da": "Plads til {capacity} cykler",
|
"da": "Plads til {capacity} cykler",
|
||||||
"cs": "Místo pro {capacity} kol",
|
"cs": "Místo pro {capacity} kol",
|
||||||
"ca": "Espai per a {capacity} bicis"
|
"ca": "Espai per a {capacity} bicis",
|
||||||
|
"pl": "Miejsce na {capacity} rowerów"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "capacity",
|
"key": "capacity",
|
||||||
|
@ -490,7 +495,8 @@
|
||||||
"es": "¿Quién puede utilizar este aparcamiento de bicicletas?",
|
"es": "¿Quién puede utilizar este aparcamiento de bicicletas?",
|
||||||
"da": "Hvem kan bruge denne cykelparkering?",
|
"da": "Hvem kan bruge denne cykelparkering?",
|
||||||
"cs": "Kdo může parkoviště pro jízdní kola využívat?",
|
"cs": "Kdo může parkoviště pro jízdní kola využívat?",
|
||||||
"ca": "Qui pot utilitzar aquest aparcament de bicicletes?"
|
"ca": "Qui pot utilitzar aquest aparcament de bicicletes?",
|
||||||
|
"pl": "Kto może używać tego parkingu dla rowerów?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "{access}",
|
"en": "{access}",
|
||||||
|
@ -508,7 +514,9 @@
|
||||||
"ca": "{access}",
|
"ca": "{access}",
|
||||||
"es": "{access}",
|
"es": "{access}",
|
||||||
"da": "{access}",
|
"da": "{access}",
|
||||||
"cs": "{access}"
|
"cs": "{access}",
|
||||||
|
"eu": "{access}",
|
||||||
|
"pl": "{access}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "access",
|
"key": "access",
|
||||||
|
@ -531,7 +539,8 @@
|
||||||
"ca": "Accessible al públic",
|
"ca": "Accessible al públic",
|
||||||
"es": "Accesible públicamente",
|
"es": "Accesible públicamente",
|
||||||
"da": "Offentligt tilgængelig",
|
"da": "Offentligt tilgængelig",
|
||||||
"cs": "Veřejně přístupné"
|
"cs": "Veřejně přístupné",
|
||||||
|
"pl": "Dostępne publicznie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -717,6 +726,7 @@
|
||||||
"da": "Et lag, der viser, hvor man kan parkere sin cykel",
|
"da": "Et lag, der viser, hvor man kan parkere sin cykel",
|
||||||
"fr": "Une couche montrant où stationner son vélo",
|
"fr": "Une couche montrant où stationner son vélo",
|
||||||
"cs": "Vrstva ukazující, kde můžete zaparkovat kolo",
|
"cs": "Vrstva ukazující, kde můžete zaparkovat kolo",
|
||||||
"ca": "Una capa que mostra on pots aparcar la teva bicicleta"
|
"ca": "Una capa que mostra on pots aparcar la teva bicicleta",
|
||||||
|
"it": "Un livello che mostra dove puoi parcheggiare la tua bicicletta"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,8 @@
|
||||||
"es": "Estación de reparación de bicis",
|
"es": "Estación de reparación de bicis",
|
||||||
"da": "Cykelreparationsstation",
|
"da": "Cykelreparationsstation",
|
||||||
"cs": "Stanice na opravu kol",
|
"cs": "Stanice na opravu kol",
|
||||||
"ca": "Estació de reparació de bicicletes"
|
"ca": "Estació de reparació de bicicletes",
|
||||||
|
"pl": "Stacja naprawy rowerów"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -81,7 +82,8 @@
|
||||||
"es": "Estación de reparación de bicis",
|
"es": "Estación de reparación de bicis",
|
||||||
"da": "Cykelreparationsstation",
|
"da": "Cykelreparationsstation",
|
||||||
"cs": "Stanice na opravu kol",
|
"cs": "Stanice na opravu kol",
|
||||||
"ca": "Estació de reparació de bicicletes"
|
"ca": "Estació de reparació de bicicletes",
|
||||||
|
"pl": "Stacja naprawy rowerów"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -108,7 +110,8 @@
|
||||||
"ca": "Bomba trencada",
|
"ca": "Bomba trencada",
|
||||||
"es": "Bomba rota",
|
"es": "Bomba rota",
|
||||||
"da": "Defekt pumpe",
|
"da": "Defekt pumpe",
|
||||||
"cs": "Rozbitý vzduchový kompresor"
|
"cs": "Rozbitý vzduchový kompresor",
|
||||||
|
"pl": "Zepsuta pompka"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -131,7 +134,8 @@
|
||||||
"es": "Bomba de bicicletas <i>{name}</i>",
|
"es": "Bomba de bicicletas <i>{name}</i>",
|
||||||
"da": "Cykelpumpe <i>{name}</i>",
|
"da": "Cykelpumpe <i>{name}</i>",
|
||||||
"cs": "Vzduchový kompresor <i>{name}</i>",
|
"cs": "Vzduchový kompresor <i>{name}</i>",
|
||||||
"ca": "Bomba per a bicicletes <i>{name}</i>"
|
"ca": "Bomba per a bicicletes <i>{name}</i>",
|
||||||
|
"pl": "Pompka do rowerów <i>{name}</i>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -153,7 +157,8 @@
|
||||||
"ca": "Bomba de bicicleta",
|
"ca": "Bomba de bicicleta",
|
||||||
"es": "Bomba para bicicletas",
|
"es": "Bomba para bicicletas",
|
||||||
"da": "Cykelpumpe",
|
"da": "Cykelpumpe",
|
||||||
"cs": "Vzduchový kompresor"
|
"cs": "Vzduchový kompresor",
|
||||||
|
"pl": "Pompka do rowerów"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -318,7 +323,8 @@
|
||||||
"ru": "Когда работает эта точка обслуживания велосипедов?",
|
"ru": "Когда работает эта точка обслуживания велосипедов?",
|
||||||
"es": "¿Cuándo está abierto este punto de reparación de bicicletas?",
|
"es": "¿Cuándo está abierto este punto de reparación de bicicletas?",
|
||||||
"da": "Hvornår er dette cykelreparationssted åbent?",
|
"da": "Hvornår er dette cykelreparationssted åbent?",
|
||||||
"cs": "Kdy je toto místo pro opravu jízdních kol otevřeno?"
|
"cs": "Kdy je toto místo pro opravu jízdních kol otevřeno?",
|
||||||
|
"ca": "Quan està obert aquest punt de reparació de bicicletes?"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -358,7 +364,8 @@
|
||||||
"da": "Offentligt tilgængelig",
|
"da": "Offentligt tilgængelig",
|
||||||
"fr": "Accessible au public",
|
"fr": "Accessible au public",
|
||||||
"cs": "Veřejně přístupné",
|
"cs": "Veřejně přístupné",
|
||||||
"ca": "Accessible al públic"
|
"ca": "Accessible al públic",
|
||||||
|
"pl": "Dostępne publicznie"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -372,7 +379,8 @@
|
||||||
"da": "Kun for kunder",
|
"da": "Kun for kunder",
|
||||||
"fr": "Réservé aux clients",
|
"fr": "Réservé aux clients",
|
||||||
"cs": "Pouze pro zákazníky",
|
"cs": "Pouze pro zákazníky",
|
||||||
"ca": "Només per a clients"
|
"ca": "Només per a clients",
|
||||||
|
"pl": "Tylko dla klientów"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -606,7 +614,8 @@
|
||||||
"fr": "Pompe à vélo cassée",
|
"fr": "Pompe à vélo cassée",
|
||||||
"da": "Cykelpumpe i stykker",
|
"da": "Cykelpumpe i stykker",
|
||||||
"cs": "Rozbitý vzduchový kompresor",
|
"cs": "Rozbitý vzduchový kompresor",
|
||||||
"ca": "Bomba de bicicleta trencada"
|
"ca": "Bomba de bicicleta trencada",
|
||||||
|
"pl": "Zepsuta pompka rowerowa"
|
||||||
},
|
},
|
||||||
"body": {
|
"body": {
|
||||||
"en": "Hello,\n\nWith this email, I'd like to inform you that the bicycle pump located at https://mapcomplete.org/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} is broken.\n\n Kind regards",
|
"en": "Hello,\n\nWith this email, I'd like to inform you that the bicycle pump located at https://mapcomplete.org/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} is broken.\n\n Kind regards",
|
||||||
|
@ -626,7 +635,8 @@
|
||||||
"da": "Anmeld denne cykelpumpe som værende i stykker",
|
"da": "Anmeld denne cykelpumpe som værende i stykker",
|
||||||
"es": "Reportar esta bomba para bicicletas como rota",
|
"es": "Reportar esta bomba para bicicletas como rota",
|
||||||
"cs": "Nahlásit tento vzduchový kompresor na kolo jako rozbitý",
|
"cs": "Nahlásit tento vzduchový kompresor na kolo jako rozbitý",
|
||||||
"ca": "Informar aquesta bomba de bicicleta com a trencada"
|
"ca": "Informar aquesta bomba de bicicleta com a trencada",
|
||||||
|
"pl": "Zgłoś, że ta pompka rowerowa jest zepsuta"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -697,7 +707,8 @@
|
||||||
"da": "Dunlop",
|
"da": "Dunlop",
|
||||||
"es": "Dunlop",
|
"es": "Dunlop",
|
||||||
"cs": "Dunlop",
|
"cs": "Dunlop",
|
||||||
"ca": "Dunlop"
|
"ca": "Dunlop",
|
||||||
|
"eu": "Dunlop"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -54,7 +54,8 @@
|
||||||
"pt": "Reparo/loja de bicicletas",
|
"pt": "Reparo/loja de bicicletas",
|
||||||
"ca": "Botiga/reparació de bicicletes",
|
"ca": "Botiga/reparació de bicicletes",
|
||||||
"da": "Cykelværksted/butik",
|
"da": "Cykelværksted/butik",
|
||||||
"es": "Taller/tienda de bicis"
|
"es": "Taller/tienda de bicis",
|
||||||
|
"cs": "Oprava kol/obchod"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -93,7 +94,8 @@
|
||||||
"fr": "Magasin",
|
"fr": "Magasin",
|
||||||
"da": "Winkel",
|
"da": "Winkel",
|
||||||
"ca": "Winkel",
|
"ca": "Winkel",
|
||||||
"cs": "Winkel"
|
"cs": "Winkel",
|
||||||
|
"eu": "Winkela"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -165,7 +167,8 @@
|
||||||
"pt": "Loja de bicicletas <i>{name}</i>",
|
"pt": "Loja de bicicletas <i>{name}</i>",
|
||||||
"es": "Tienda de bicis <i>{name}</i>",
|
"es": "Tienda de bicis <i>{name}</i>",
|
||||||
"da": "Cykelforretning <i>{name}</i>",
|
"da": "Cykelforretning <i>{name}</i>",
|
||||||
"ca": "Botiga de bicis <i>{name}</i>"
|
"ca": "Botiga de bicis <i>{name}</i>",
|
||||||
|
"cs": "Prodejna kol <i>{name}</i>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -181,7 +184,8 @@
|
||||||
"pt": "Loja/reparo de bicicletas <i>{name}</i>",
|
"pt": "Loja/reparo de bicicletas <i>{name}</i>",
|
||||||
"da": "Cykelværksted<i>{name}</i>",
|
"da": "Cykelværksted<i>{name}</i>",
|
||||||
"es": "Taller/tienda de bicis <i>{name}</i>",
|
"es": "Taller/tienda de bicis <i>{name}</i>",
|
||||||
"ca": "Taller/botiga de bicis <i>{name}</i>"
|
"ca": "Taller/botiga de bicis <i>{name}</i>",
|
||||||
|
"cs": "Oprava kol/obchod <i>{name}</i>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -313,7 +317,8 @@
|
||||||
"fr": "Seulement accessible à {access}",
|
"fr": "Seulement accessible à {access}",
|
||||||
"da": "Kun tilgængelig for {access}",
|
"da": "Kun tilgængelig for {access}",
|
||||||
"ca": "Només accessible per a {access}",
|
"ca": "Només accessible per a {access}",
|
||||||
"cs": "Přístupné pouze pro {access}"
|
"cs": "Přístupné pouze pro {access}",
|
||||||
|
"pl": "Dostępne tylko dla {access}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "access"
|
"key": "access"
|
||||||
|
@ -887,7 +892,8 @@
|
||||||
"nl": "Biedt doe-het-zelfreparaties aan",
|
"nl": "Biedt doe-het-zelfreparaties aan",
|
||||||
"it": "Offre riparazioni fai da te",
|
"it": "Offre riparazioni fai da te",
|
||||||
"cs": "Nabízí opravy kol \"Udělej si sám\"",
|
"cs": "Nabízí opravy kol \"Udělej si sám\"",
|
||||||
"fr": "Offre des services DIY"
|
"fr": "Offre des services DIY",
|
||||||
|
"ca": "Ofereix reparar un mateix la bici"
|
||||||
},
|
},
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
"or": [
|
"or": [
|
||||||
|
|
|
@ -8,7 +8,9 @@
|
||||||
"it": "Oggetto relativo alle bici",
|
"it": "Oggetto relativo alle bici",
|
||||||
"es": "Objeto relacionado con bicis",
|
"es": "Objeto relacionado con bicis",
|
||||||
"da": "Cykelrelateret genstand",
|
"da": "Cykelrelateret genstand",
|
||||||
"ca": "Objectes relacionats amb bicicletes"
|
"ca": "Objectes relacionats amb bicicletes",
|
||||||
|
"cs": "Objekt související s jízdním kolem",
|
||||||
|
"pl": "Obiekt związany z rowerami"
|
||||||
},
|
},
|
||||||
"minzoom": 13,
|
"minzoom": 13,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -35,7 +37,9 @@
|
||||||
"it": "Oggetto relativo alle bici",
|
"it": "Oggetto relativo alle bici",
|
||||||
"es": "Objeto relacionado con bicis",
|
"es": "Objeto relacionado con bicis",
|
||||||
"da": "Cykelrelateret objekt",
|
"da": "Cykelrelateret objekt",
|
||||||
"ca": "Objecte relacionat amb bicis"
|
"ca": "Objecte relacionat amb bicis",
|
||||||
|
"cs": "Objekt související s jízdním kolem",
|
||||||
|
"pl": "Obiekt związany z rowerami"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -53,7 +57,8 @@
|
||||||
"ru": "Велотрек",
|
"ru": "Велотрек",
|
||||||
"ca": "Pista ciclable",
|
"ca": "Pista ciclable",
|
||||||
"es": "Carril bici",
|
"es": "Carril bici",
|
||||||
"da": "Cykelsti"
|
"da": "Cykelsti",
|
||||||
|
"cs": "Cyklostezka"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -89,6 +94,7 @@
|
||||||
"es": "Una capa con los objetos relacionados con bicis pero que no coinciden con ninguna otra capa",
|
"es": "Una capa con los objetos relacionados con bicis pero que no coinciden con ninguna otra capa",
|
||||||
"fr": "Une couche sur le thème des vélos mais qui ne correspondent à aucune autre couche",
|
"fr": "Une couche sur le thème des vélos mais qui ne correspondent à aucune autre couche",
|
||||||
"da": "Et lag med objekter med cykeltema, men som ikke matcher noget andet lag",
|
"da": "Et lag med objekter med cykeltema, men som ikke matcher noget andet lag",
|
||||||
"ca": "Una capa amb els objectes relacionats amb bicis però que no coinxideixen amb cap altra capa"
|
"ca": "Una capa amb els objectes relacionats amb bicis però que no coinxideixen amb cap altra capa",
|
||||||
|
"cs": "Vrstva s objekty s tématikou jízdních kol, které však neodpovídají žádné jiné vrstvě"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,9 @@
|
||||||
"da": "Kikkert",
|
"da": "Kikkert",
|
||||||
"es": "Prismáticos",
|
"es": "Prismáticos",
|
||||||
"fr": "Jumelles",
|
"fr": "Jumelles",
|
||||||
"pa_PK": "بائینوکولر"
|
"pa_PK": "بائینوکولر",
|
||||||
|
"cs": "Dalekohledy",
|
||||||
|
"eu": "Prismatikoak"
|
||||||
},
|
},
|
||||||
"minzoom": 0,
|
"minzoom": 0,
|
||||||
"title": {
|
"title": {
|
||||||
|
@ -22,7 +24,8 @@
|
||||||
"es": "Prismáticos",
|
"es": "Prismáticos",
|
||||||
"da": "Kikkert",
|
"da": "Kikkert",
|
||||||
"fr": "Jumelles",
|
"fr": "Jumelles",
|
||||||
"pa_PK": "بائینوکولر"
|
"pa_PK": "بائینوکولر",
|
||||||
|
"eu": "Prismatikoak"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
|
@ -34,7 +37,9 @@
|
||||||
"da": "Kikkerter",
|
"da": "Kikkerter",
|
||||||
"es": "Prismáticos",
|
"es": "Prismáticos",
|
||||||
"fr": "Jumelles",
|
"fr": "Jumelles",
|
||||||
"pa_PK": "بائینوکولر"
|
"pa_PK": "بائینوکولر",
|
||||||
|
"cs": "Dalekohledy",
|
||||||
|
"eu": "Prismatikoak"
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
"images",
|
"images",
|
||||||
|
@ -54,7 +59,8 @@
|
||||||
"da": "Gratis at bruge",
|
"da": "Gratis at bruge",
|
||||||
"es": "De uso gratuito",
|
"es": "De uso gratuito",
|
||||||
"fr": "En libre service",
|
"fr": "En libre service",
|
||||||
"ca": "Debades"
|
"ca": "Debades",
|
||||||
|
"cs": "Použití zdarma"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -80,7 +86,8 @@
|
||||||
"es": "¿Cuánto hay que pagar para utilizar estos prismáticos?",
|
"es": "¿Cuánto hay que pagar para utilizar estos prismáticos?",
|
||||||
"da": "Hvor meget koster det at bruge denne kikkert?",
|
"da": "Hvor meget koster det at bruge denne kikkert?",
|
||||||
"fr": "Combien l’utilisation des ces jumelles coûte-t-elle ?",
|
"fr": "Combien l’utilisation des ces jumelles coûte-t-elle ?",
|
||||||
"ca": "Quant s'ha de pagar per utilitzar aquests prismàtics?"
|
"ca": "Quant s'ha de pagar per utilitzar aquests prismàtics?",
|
||||||
|
"cs": "Kolik se platí za používání těchto dalekohledů?"
|
||||||
},
|
},
|
||||||
"id": "binocular-charge"
|
"id": "binocular-charge"
|
||||||
},
|
},
|
||||||
|
@ -123,7 +130,8 @@
|
||||||
"ca": "uns prismàtics",
|
"ca": "uns prismàtics",
|
||||||
"da": "en kikkert",
|
"da": "en kikkert",
|
||||||
"es": "unos prismáticos",
|
"es": "unos prismáticos",
|
||||||
"fr": "des jumelles"
|
"fr": "des jumelles",
|
||||||
|
"cs": "dalekohled"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A telescope or pair of binoculars mounted on a pole, available to the public to look around. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
"en": "A telescope or pair of binoculars mounted on a pole, available to the public to look around. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
||||||
|
@ -132,7 +140,8 @@
|
||||||
"fr": "Une longue-vue ou une paire de jumelles montée sur un poteau, disponible au public pour scruter les environs. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
"fr": "Une longue-vue ou une paire de jumelles montée sur un poteau, disponible au public pour scruter les environs. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
||||||
"da": "Et teleskop eller en kikkert monteret på en stang, som offentligheden kan se sig omkring med. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
"da": "Et teleskop eller en kikkert monteret på en stang, som offentligheden kan se sig omkring med. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
||||||
"es": "Un telescopio o unos prismáticos montados en un poste, disponible para que el público mire alrededor. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
"es": "Un telescopio o unos prismáticos montados en un poste, disponible para que el público mire alrededor. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
||||||
"ca": "Un telescopi o un parell de prismàtics muntats en un pal, a disposició del públic per mirar al seu voltant. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />"
|
"ca": "Un telescopi o un parell de prismàtics muntats en un pal, a disposició del públic per mirar al seu voltant. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />",
|
||||||
|
"cs": "Jednooký teleskop nebo dalekohled umístěný na stožáru, který je k dispozici veřejnosti k prohlídce. <img src='./assets/layers/binoculars/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -7,7 +7,8 @@
|
||||||
"es": "Lugares para ver pájaros",
|
"es": "Lugares para ver pájaros",
|
||||||
"da": "Steder til fugleobservation",
|
"da": "Steder til fugleobservation",
|
||||||
"fr": "Lieu pour observer des oiseaux",
|
"fr": "Lieu pour observer des oiseaux",
|
||||||
"ca": "Llocs per a vore ocells"
|
"ca": "Llocs per a vore ocells",
|
||||||
|
"pl": "Miejsca do obserwacji ptaków"
|
||||||
},
|
},
|
||||||
"minzoom": 14,
|
"minzoom": 14,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -23,7 +24,8 @@
|
||||||
"nl": "Vogelkijkplaats",
|
"nl": "Vogelkijkplaats",
|
||||||
"de": "Ort zur Vogelbeobachtung",
|
"de": "Ort zur Vogelbeobachtung",
|
||||||
"fr": "Lieu d’observation d’oiseaux",
|
"fr": "Lieu d’observation d’oiseaux",
|
||||||
"da": "Plads til fugleobservation"
|
"da": "Plads til fugleobservation",
|
||||||
|
"ca": "Lloc d'observació d'ocells"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -54,7 +56,8 @@
|
||||||
"nl": "Vogelkijkhut {name}",
|
"nl": "Vogelkijkhut {name}",
|
||||||
"da": "Fugleskjul {name}",
|
"da": "Fugleskjul {name}",
|
||||||
"de": "Vogelbeobachtungsplatz {name}",
|
"de": "Vogelbeobachtungsplatz {name}",
|
||||||
"fr": "Observatoire ornithologique {name}"
|
"fr": "Observatoire ornithologique {name}",
|
||||||
|
"ca": "Observatori d'Ocells {name}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -138,7 +141,8 @@
|
||||||
"nl": "Vogelkijktoren",
|
"nl": "Vogelkijktoren",
|
||||||
"de": "Turm zur Vogelbeobachtung",
|
"de": "Turm zur Vogelbeobachtung",
|
||||||
"fr": "Tour d’observation ornithologique",
|
"fr": "Tour d’observation ornithologique",
|
||||||
"da": "Fugletårn skjul"
|
"da": "Fugletårn skjul",
|
||||||
|
"ca": "Torre d'observació d'ocells"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -182,7 +186,8 @@
|
||||||
"es": "Hay provisiones especiales para usuarios de sillas de ruedas",
|
"es": "Hay provisiones especiales para usuarios de sillas de ruedas",
|
||||||
"de": "Für Rollstuhlfahrer gibt es besondere Vorrichtungen",
|
"de": "Für Rollstuhlfahrer gibt es besondere Vorrichtungen",
|
||||||
"fr": "L’infrastructure est adaptée aux utilisateurs de chaises roulantes",
|
"fr": "L’infrastructure est adaptée aux utilisateurs de chaises roulantes",
|
||||||
"da": "Der er særlige bestemmelser for kørestolsbrugere"
|
"da": "Der er særlige bestemmelser for kørestolsbrugere",
|
||||||
|
"ca": "Hi ha provisions especials per als usuaris de cadira de rodes"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -196,7 +201,8 @@
|
||||||
"nl": "Een rolstoel raakt er vlot",
|
"nl": "Een rolstoel raakt er vlot",
|
||||||
"da": "En kørestolsbruger kan sagtens bruge dette fugleskjul",
|
"da": "En kørestolsbruger kan sagtens bruge dette fugleskjul",
|
||||||
"de": "Der Ort ist rollstuhlgerecht gestaltet",
|
"de": "Der Ort ist rollstuhlgerecht gestaltet",
|
||||||
"fr": "Cet observatoire ornithologique est facilement accessible en chaise roulante"
|
"fr": "Cet observatoire ornithologique est facilement accessible en chaise roulante",
|
||||||
|
"ca": "Una cadira de rodes pot utilitzar fàcilment aquest observador d'ocells"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -210,7 +216,8 @@
|
||||||
"nl": "Je kan er raken met een rolstoel, maar het is niet makkelijk",
|
"nl": "Je kan er raken met een rolstoel, maar het is niet makkelijk",
|
||||||
"da": "Dette fugleskjul kan nås med kørestol, men det er ikke nemt",
|
"da": "Dette fugleskjul kan nås med kørestol, men det er ikke nemt",
|
||||||
"de": "Der Ort ist nur eingeschränkt rollstuhlgerecht gestaltet",
|
"de": "Der Ort ist nur eingeschränkt rollstuhlgerecht gestaltet",
|
||||||
"fr": "Cet observatoire ornithologique est accessible en chaise roulante mais difficilement"
|
"fr": "Cet observatoire ornithologique est accessible en chaise roulante mais difficilement",
|
||||||
|
"ca": "Aquest observatori d'ocells és accessible amb cadira de rodes, però no és fàcil"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -226,7 +233,8 @@
|
||||||
"es": "No accesible a usuarios con sillas de ruedas",
|
"es": "No accesible a usuarios con sillas de ruedas",
|
||||||
"da": "Ikke tilgængelig for kørestolsbrugere",
|
"da": "Ikke tilgængelig for kørestolsbrugere",
|
||||||
"fr": "Pas accessible en chaise roulante",
|
"fr": "Pas accessible en chaise roulante",
|
||||||
"ca": "No accessible per a persones amb cadira de rodes"
|
"ca": "No accessible per a persones amb cadira de rodes",
|
||||||
|
"pl": "Niedostępne dla osób na wózkach"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -238,7 +246,9 @@
|
||||||
"de": "Betrieben von {operator}",
|
"de": "Betrieben von {operator}",
|
||||||
"es": "Operado por {operator}",
|
"es": "Operado por {operator}",
|
||||||
"da": "Drives af {operator}",
|
"da": "Drives af {operator}",
|
||||||
"fr": "Opéré par {operator}"
|
"fr": "Opéré par {operator}",
|
||||||
|
"ca": "Gestionat per {operator}",
|
||||||
|
"pl": "Obsługiwane przez {operator}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "operator"
|
"key": "operator"
|
||||||
|
@ -248,7 +258,8 @@
|
||||||
"nl": "Wie beheert deze vogelkijkplaats?",
|
"nl": "Wie beheert deze vogelkijkplaats?",
|
||||||
"da": "Hvem driver dette fugleskjul?",
|
"da": "Hvem driver dette fugleskjul?",
|
||||||
"de": "Wer betreibt diesen Ort zur Vogelbeobachtung?",
|
"de": "Wer betreibt diesen Ort zur Vogelbeobachtung?",
|
||||||
"fr": "Qui opère cet observatoire ornithologique ?"
|
"fr": "Qui opère cet observatoire ornithologique ?",
|
||||||
|
"ca": "Qui gestiona aquest observatori d'ocells?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -259,7 +270,9 @@
|
||||||
"de": "Betrieben von Natuurpunt",
|
"de": "Betrieben von Natuurpunt",
|
||||||
"es": "Operado por Natuurpunt",
|
"es": "Operado por Natuurpunt",
|
||||||
"da": "Drives af Natuurpunt",
|
"da": "Drives af Natuurpunt",
|
||||||
"fr": "Opéré par Natuurpunt"
|
"fr": "Opéré par Natuurpunt",
|
||||||
|
"ca": "Operat per Natuurpunt",
|
||||||
|
"pl": "Obsługiwane przez Natuurpunt"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
"hu": "Kávézók és kocsmák",
|
"hu": "Kávézók és kocsmák",
|
||||||
"es": "Cafeterías y bares",
|
"es": "Cafeterías y bares",
|
||||||
"da": "Caféer og pubber",
|
"da": "Caféer og pubber",
|
||||||
"ca": "Cafés i bars"
|
"ca": "Cafés i bars",
|
||||||
|
"pl": "Kawiarnie i puby"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
|
@ -36,7 +37,8 @@
|
||||||
"ca": "un bar",
|
"ca": "un bar",
|
||||||
"da": "en pub",
|
"da": "en pub",
|
||||||
"es": "un bar",
|
"es": "un bar",
|
||||||
"fr": "un pub"
|
"fr": "un pub",
|
||||||
|
"pl": "pub"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A pub, mostly for drinking beers in a warm, relaxed interior",
|
"en": "A pub, mostly for drinking beers in a warm, relaxed interior",
|
||||||
|
@ -61,7 +63,8 @@
|
||||||
"ca": "un bar de copes",
|
"ca": "un bar de copes",
|
||||||
"da": "en bar",
|
"da": "en bar",
|
||||||
"es": "un bar de copas",
|
"es": "un bar de copas",
|
||||||
"fr": "un bar"
|
"fr": "un bar",
|
||||||
|
"pl": "bar"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A more modern and commercial <b>bar</b>, possibly with a music and light installation",
|
"en": "A more modern and commercial <b>bar</b>, possibly with a music and light installation",
|
||||||
|
@ -86,7 +89,8 @@
|
||||||
"ca": "un cafè",
|
"ca": "un cafè",
|
||||||
"da": "en cafe",
|
"da": "en cafe",
|
||||||
"es": "una cafetería",
|
"es": "una cafetería",
|
||||||
"fr": "un café"
|
"fr": "un café",
|
||||||
|
"pl": "Kawiarnia"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment",
|
"en": "A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment",
|
||||||
|
@ -109,7 +113,8 @@
|
||||||
"es": "un club nocturno o una discoteca",
|
"es": "un club nocturno o una discoteca",
|
||||||
"fr": "une boîte de nuit ou discothèque",
|
"fr": "une boîte de nuit ou discothèque",
|
||||||
"da": "en natklub eller et diskotek",
|
"da": "en natklub eller et diskotek",
|
||||||
"ca": "un club nocturn o discoteca"
|
"ca": "un club nocturn o discoteca",
|
||||||
|
"pl": "klub nocny lub dyskoteka"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A <b>nightclub</b> or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks",
|
"en": "A <b>nightclub</b> or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks",
|
||||||
|
@ -129,9 +134,11 @@
|
||||||
"ca": "Bar",
|
"ca": "Bar",
|
||||||
"de": "Kneipe",
|
"de": "Kneipe",
|
||||||
"da": "Pub",
|
"da": "Pub",
|
||||||
"es": "Pub",
|
"es": "Bar",
|
||||||
"fr": "Bar",
|
"fr": "Bar",
|
||||||
"pa_PK": "پب"
|
"pa_PK": "پب",
|
||||||
|
"eu": "Edaritegia",
|
||||||
|
"pl": "Pub"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -148,7 +155,8 @@
|
||||||
"ca": "<i>{name}</i>",
|
"ca": "<i>{name}</i>",
|
||||||
"da": "<i>{name}</i>",
|
"da": "<i>{name}</i>",
|
||||||
"es": "<i>{name}</i>",
|
"es": "<i>{name}</i>",
|
||||||
"fr": "<i>{name}</i>"
|
"fr": "<i>{name}</i>",
|
||||||
|
"eu": "<i>{name}</i>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -189,9 +197,10 @@
|
||||||
"de": "Was ist das für ein Café?",
|
"de": "Was ist das für ein Café?",
|
||||||
"hu": "Milyen fajta kávézó ez?",
|
"hu": "Milyen fajta kávézó ez?",
|
||||||
"da": "Hvilken slags cafe er dette?",
|
"da": "Hvilken slags cafe er dette?",
|
||||||
"es": "Qué tipo de cafetería es esta",
|
"es": "Qué tipo de cafe es este?",
|
||||||
"fr": "Quel genre de café est-ce ?",
|
"fr": "Quel genre de café est-ce ?",
|
||||||
"ca": "Quin tipus de cafeteria és aquesta?"
|
"ca": "Quin tipus de cafeteria és aquesta?",
|
||||||
|
"pl": "Jakiego rodzaju jest to kawiarnia?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
"nl": "Autoverhuur",
|
"nl": "Autoverhuur",
|
||||||
"de": "Autovermietung",
|
"de": "Autovermietung",
|
||||||
"fr": "Société de location de véhicules",
|
"fr": "Société de location de véhicules",
|
||||||
"ca": "Lloguer de cotxes"
|
"ca": "Lloguer de cotxes",
|
||||||
|
"pl": "Wypożyczalnia samochodów"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": "amenity=car_rental"
|
"osmTags": "amenity=car_rental"
|
||||||
|
@ -17,7 +18,8 @@
|
||||||
"nl": "Autoverhuur",
|
"nl": "Autoverhuur",
|
||||||
"de": "Autovermietung",
|
"de": "Autovermietung",
|
||||||
"fr": "Société de location de véhicules",
|
"fr": "Société de location de véhicules",
|
||||||
"ca": "Lloguer de cotxes"
|
"ca": "Lloguer de cotxes",
|
||||||
|
"pl": "Wypożyczalnia samochodów"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -31,7 +33,8 @@
|
||||||
"nl": "Plaatsen waar je een auto kunt huren",
|
"nl": "Plaatsen waar je een auto kunt huren",
|
||||||
"de": "Orte, an denen Sie ein Auto mieten können",
|
"de": "Orte, an denen Sie ein Auto mieten können",
|
||||||
"fr": "Lieu où vous pouvez louer une voiture",
|
"fr": "Lieu où vous pouvez louer une voiture",
|
||||||
"ca": "Llocs on pots llogar un cotxe"
|
"ca": "Llocs on pots llogar un cotxe",
|
||||||
|
"pl": "Miejsca, w których można wypożyczyć samochód"
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
"images",
|
"images",
|
||||||
|
@ -45,7 +48,8 @@
|
||||||
"nl": "Naam van de autoverhuur",
|
"nl": "Naam van de autoverhuur",
|
||||||
"de": "Name der Autovermietung",
|
"de": "Name der Autovermietung",
|
||||||
"fr": "Nom de la société de location de véhicules",
|
"fr": "Nom de la société de location de véhicules",
|
||||||
"ca": "Nom del lloguer de cotxes"
|
"ca": "Nom del lloguer de cotxes",
|
||||||
|
"pl": "Nazwa wypożyczalni samochodów"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
|
@ -53,7 +57,8 @@
|
||||||
"nl": "Wat is de naam van deze autoverhuur?",
|
"nl": "Wat is de naam van deze autoverhuur?",
|
||||||
"de": "Wie lautet der Name dieser Autovermietung?",
|
"de": "Wie lautet der Name dieser Autovermietung?",
|
||||||
"fr": "Quel est le nom de cette société de location de véhicules ?",
|
"fr": "Quel est le nom de cette société de location de véhicules ?",
|
||||||
"ca": "Com es diu aquest lloguer de cotxes?"
|
"ca": "Com es diu aquest lloguer de cotxes?",
|
||||||
|
"pl": "Jaka jest nazwa tej wypożyczalni samochodów?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -63,7 +68,8 @@
|
||||||
"nl": "Deze autoverhuur heeft geen naam",
|
"nl": "Deze autoverhuur heeft geen naam",
|
||||||
"de": "Diese Autovermietung hat keinen Namen",
|
"de": "Diese Autovermietung hat keinen Namen",
|
||||||
"fr": "Cette société de location de véhicules n'a pas de nom",
|
"fr": "Cette société de location de véhicules n'a pas de nom",
|
||||||
"ca": "Aquest lloguer de cotxes no té nom"
|
"ca": "Aquest lloguer de cotxes no té nom",
|
||||||
|
"pl": "Ta wypożyczalnia samochodów nie ma nazwy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -72,7 +78,8 @@
|
||||||
"nl": "Deze autoverhuur heet {name}",
|
"nl": "Deze autoverhuur heet {name}",
|
||||||
"de": "Der Name der Autovermietung lautet {name}",
|
"de": "Der Name der Autovermietung lautet {name}",
|
||||||
"fr": "Cette société de location de véhicules est appelée {name}",
|
"fr": "Cette société de location de véhicules est appelée {name}",
|
||||||
"ca": "Aquest lloguer de cotxes es diu {name}"
|
"ca": "Aquest lloguer de cotxes es diu {name}",
|
||||||
|
"pl": "Ta wypożyczalnia samochodów nazywa się {name}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"website",
|
"website",
|
||||||
|
@ -90,14 +97,16 @@
|
||||||
"nl": "een autoverhuur",
|
"nl": "een autoverhuur",
|
||||||
"de": "eine Autovermietung",
|
"de": "eine Autovermietung",
|
||||||
"fr": "Une société de location de véhicules",
|
"fr": "Une société de location de véhicules",
|
||||||
"ca": "un lloguer de cotxes"
|
"ca": "un lloguer de cotxes",
|
||||||
|
"pl": "wypożyczalnia samochodów"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A place where you can rent a car",
|
"en": "A place where you can rent a car",
|
||||||
"nl": "Een plaats waar je een auto kunt huren",
|
"nl": "Een plaats waar je een auto kunt huren",
|
||||||
"de": "Ein Ort, an dem Sie ein Auto mieten können",
|
"de": "Ein Ort, an dem Sie ein Auto mieten können",
|
||||||
"fr": "Un lieu où vous pouvez louer une voiture",
|
"fr": "Un lieu où vous pouvez louer une voiture",
|
||||||
"ca": "Un lloc on pots llogar un cotxe"
|
"ca": "Un lloc on pots llogar un cotxe",
|
||||||
|
"pl": "Miejsce, w którym można wypożyczyć samochód"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
"ca": "Estacions de càrrega",
|
"ca": "Estacions de càrrega",
|
||||||
"da": "Ladestationer",
|
"da": "Ladestationer",
|
||||||
"de": "Ladestationen",
|
"de": "Ladestationen",
|
||||||
"es": "Estaciones de carga"
|
"es": "Estaciones de carga",
|
||||||
|
"pl": "Stacje ładowania"
|
||||||
},
|
},
|
||||||
"minzoom": 10,
|
"minzoom": 10,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -29,7 +30,8 @@
|
||||||
"nl": "Oplaadpunt",
|
"nl": "Oplaadpunt",
|
||||||
"ca": "Estació de càrrega",
|
"ca": "Estació de càrrega",
|
||||||
"de": "Ladestation",
|
"de": "Ladestation",
|
||||||
"es": "Estación de carga"
|
"es": "Estación de carga",
|
||||||
|
"pl": "Stacja ładowania"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -79,7 +81,8 @@
|
||||||
"da": "En ladestation",
|
"da": "En ladestation",
|
||||||
"de": "Eine Ladestation",
|
"de": "Eine Ladestation",
|
||||||
"es": "Una estación de carga",
|
"es": "Una estación de carga",
|
||||||
"fr": "Une station de recharge"
|
"fr": "Une station de recharge",
|
||||||
|
"pl": "Stacja ładowania"
|
||||||
},
|
},
|
||||||
"#": "no-question-hint-check",
|
"#": "no-question-hint-check",
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
|
@ -163,7 +166,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Who is allowed to use this charging station?",
|
"en": "Who is allowed to use this charging station?",
|
||||||
"nl": "Wie mag er dit oplaadpunt gebruiken?",
|
"nl": "Wie mag er dit oplaadpunt gebruiken?",
|
||||||
"ca": "Qui pot utilitzar aquest punt de càrrega?",
|
"ca": "Qui pot utilitzar aquesta estació de càrrega?",
|
||||||
"da": "Hvem må bruge denne ladestation?",
|
"da": "Hvem må bruge denne ladestation?",
|
||||||
"de": "Wer darf diese Ladestation benutzen?",
|
"de": "Wer darf diese Ladestation benutzen?",
|
||||||
"es": "¿A quién se le permite utilizar esta estación de carga?"
|
"es": "¿A quién se le permite utilizar esta estación de carga?"
|
||||||
|
@ -244,6 +247,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.",
|
"en": "This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.",
|
||||||
"nl": "Dit oplaadstation is publiek toegankelijk onder voorwaarden (bv. enkel tijdens bepaalde uren). ",
|
"nl": "Dit oplaadstation is publiek toegankelijk onder voorwaarden (bv. enkel tijdens bepaalde uren). ",
|
||||||
|
"ca": "Aquesta estació de càrrega és accessible al públic durant certes hores o condicions. Es poden aplicar restriccions, però es permet l'ús general.",
|
||||||
"de": "Diese Ladestation ist zu gewissen Öffnungszeiten oder Bedingungen öffentlich zugänglich. Einschränkungen sind möglich, aber generelle Nutzung ist erlaubt."
|
"de": "Diese Ladestation ist zu gewissen Öffnungszeiten oder Bedingungen öffentlich zugänglich. Einschränkungen sind möglich, aber generelle Nutzung ist erlaubt."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -376,10 +380,11 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>Chademo</b>",
|
"en": "<b>Chademo</b>",
|
||||||
"nl": "<b>Chademo</b>",
|
"nl": "<b>Chademo</b>",
|
||||||
"ca": "<b>CHAdeMo</b>",
|
"ca": "<b>Chademo</b>",
|
||||||
"da": "<b>Chademo</b>",
|
"da": "<b>Chademo</b>",
|
||||||
"de": "<b>Chademo-Anschluss</b>",
|
"de": "<b>Chademo-Anschluss</b>",
|
||||||
"es": "<b>Chademo</b>"
|
"es": "<b>Chademo</b>",
|
||||||
|
"eu": "<b>Chademo</b>"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/charging_station/Chademo_type4.svg",
|
"path": "./assets/layers/charging_station/Chademo_type4.svg",
|
||||||
|
@ -425,7 +430,8 @@
|
||||||
"ca": "<b>Chademo</b>",
|
"ca": "<b>Chademo</b>",
|
||||||
"da": "<b>Chademo</b>",
|
"da": "<b>Chademo</b>",
|
||||||
"de": "<b>Chademo-Anschluss</b>",
|
"de": "<b>Chademo-Anschluss</b>",
|
||||||
"es": "<b>Chademo</b>"
|
"es": "<b>Chademo</b>",
|
||||||
|
"eu": "<b>Chademo</b>"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true,
|
"hideInAnswer": true,
|
||||||
"icon": {
|
"icon": {
|
||||||
|
@ -677,7 +683,8 @@
|
||||||
"ca": "<b>Supercarregador de Tesla</b>",
|
"ca": "<b>Supercarregador de Tesla</b>",
|
||||||
"da": "<b>Tesla Supercharger</b>",
|
"da": "<b>Tesla Supercharger</b>",
|
||||||
"de": "<b>Tesla Supercharger</b>",
|
"de": "<b>Tesla Supercharger</b>",
|
||||||
"es": "<b>Supercargador de Tesla</b>"
|
"es": "<b>Supercargador de Tesla</b>",
|
||||||
|
"pl": "<b>Tesla Supercharger</b>"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true,
|
"hideInAnswer": true,
|
||||||
"icon": {
|
"icon": {
|
||||||
|
@ -1063,6 +1070,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)",
|
"en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)",
|
||||||
"nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)",
|
"nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)",
|
||||||
|
"ca": "Supercarregador Tesla (destinació)</b> (Un Tipus 2 amb un cable de marca Tesla)",
|
||||||
"de": "<b>Tesla supercharger (Destination)</b> (Typ 2 mit Kabel von Tesla)",
|
"de": "<b>Tesla supercharger (Destination)</b> (Typ 2 mit Kabel von Tesla)",
|
||||||
"es": "<b>Supercargador Tesla (destino)</b> (Un Tipo 2 con un cable de marca tesla)"
|
"es": "<b>Supercargador Tesla (destino)</b> (Un Tipo 2 con un cable de marca tesla)"
|
||||||
},
|
},
|
||||||
|
@ -1098,6 +1106,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>USB</b> to charge phones and small electronics",
|
"en": "<b>USB</b> to charge phones and small electronics",
|
||||||
"nl": "<b>USB</b> om GSMs en kleine electronica op te laden",
|
"nl": "<b>USB</b> om GSMs en kleine electronica op te laden",
|
||||||
|
"ca": "<b>USB</b> per a carregar mòbils i dispositius petits",
|
||||||
"da": "<b>USB</b> til opladning af telefoner og mindre elektronik",
|
"da": "<b>USB</b> til opladning af telefoner og mindre elektronik",
|
||||||
"de": "<b>USB</b> zum Aufladen von Handys und kleinen Elektrogeräten",
|
"de": "<b>USB</b> zum Aufladen von Handys und kleinen Elektrogeräten",
|
||||||
"es": "<b>USB</b> para cargar teléfonos y dispositivos pequeños"
|
"es": "<b>USB</b> para cargar teléfonos y dispositivos pequeños"
|
||||||
|
@ -1114,6 +1123,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>Bosch Active Connect with 3 pins</b> and cable",
|
"en": "<b>Bosch Active Connect with 3 pins</b> and cable",
|
||||||
"nl": "<b>Bosch Active Connect met 3 pinnen</b> aan een kabel",
|
"nl": "<b>Bosch Active Connect met 3 pinnen</b> aan een kabel",
|
||||||
|
"ca": "<b>Bosch Active Connect amb 3 pins</b> i cable",
|
||||||
"da": "<b> Bosch Active Connect med 3 ben</b> og kabel",
|
"da": "<b> Bosch Active Connect med 3 ben</b> og kabel",
|
||||||
"de": "<b>Bosch Active Connect mit 3 Pins</b> und Kabel",
|
"de": "<b>Bosch Active Connect mit 3 Pins</b> und Kabel",
|
||||||
"es": "<b>Bosch Active Connect con 3 pines</b> y cable"
|
"es": "<b>Bosch Active Connect con 3 pines</b> y cable"
|
||||||
|
@ -1155,6 +1165,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>Bosch Active Connect with 3 pins</b> and cable",
|
"en": "<b>Bosch Active Connect with 3 pins</b> and cable",
|
||||||
"nl": "<b>Bosch Active Connect met 3 pinnen</b> aan een kabel",
|
"nl": "<b>Bosch Active Connect met 3 pinnen</b> aan een kabel",
|
||||||
|
"ca": "<b>Bosch Active Connect amb 3 pins</b> i cable",
|
||||||
"da": "<b>Bosch Active Connect med 3 ben</b> og kabel",
|
"da": "<b>Bosch Active Connect med 3 ben</b> og kabel",
|
||||||
"de": "<b> Bosch Active Connect mit 3 Pins </b> und Kabel",
|
"de": "<b> Bosch Active Connect mit 3 Pins </b> und Kabel",
|
||||||
"es": "<b>Bosch Active Connect con 3 pines</b> y cable"
|
"es": "<b>Bosch Active Connect con 3 pines</b> y cable"
|
||||||
|
@ -1171,6 +1182,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>Bosch Active Connect with 5 pins</b> and cable",
|
"en": "<b>Bosch Active Connect with 5 pins</b> and cable",
|
||||||
"nl": "<b>Bosch Active Connect met 5 pinnen</b> aan een kabel",
|
"nl": "<b>Bosch Active Connect met 5 pinnen</b> aan een kabel",
|
||||||
|
"ca": "<b>Bosch Active Connect amb 5 pins</b> i cable",
|
||||||
"da": "<b>Bosch Active Connect med 5 ben</b> og kabel",
|
"da": "<b>Bosch Active Connect med 5 ben</b> og kabel",
|
||||||
"de": "<b>Bosch Active Connect mit 5 Pins</b> und Kabel",
|
"de": "<b>Bosch Active Connect mit 5 Pins</b> und Kabel",
|
||||||
"es": "<b>Bosch Active Connect con 5 pines</b> y cable"
|
"es": "<b>Bosch Active Connect con 5 pines</b> y cable"
|
||||||
|
@ -1212,6 +1224,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>Bosch Active Connect with 5 pins</b> and cable",
|
"en": "<b>Bosch Active Connect with 5 pins</b> and cable",
|
||||||
"nl": "<b>Bosch Active Connect met 5 pinnen</b> aan een kabel",
|
"nl": "<b>Bosch Active Connect met 5 pinnen</b> aan een kabel",
|
||||||
|
"ca": "<b>Bosch Active Connect amb 5 pins</b> i cable",
|
||||||
"da": "<b>Bosch Active Connect med 5 ben</b> og kabel",
|
"da": "<b>Bosch Active Connect med 5 ben</b> og kabel",
|
||||||
"de": "<b> Bosch Active Connect mit 5 Pins </b> und Kabel",
|
"de": "<b> Bosch Active Connect mit 5 Pins </b> und Kabel",
|
||||||
"es": "<b>Bosch Active Connect con 5 pines</b> y cable"
|
"es": "<b>Bosch Active Connect con 5 pines</b> y cable"
|
||||||
|
@ -1661,6 +1674,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What current do the plugs with <div style='display: inline-block'><b><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> offer?",
|
"en": "What current do the plugs with <div style='display: inline-block'><b><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> offer?",
|
||||||
"nl": "Welke stroom levert de stekker van type <div style='display: inline-block'><b><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>?",
|
"nl": "Welke stroom levert de stekker van type <div style='display: inline-block'><b><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>?",
|
||||||
|
"ca": "Quina intensitat ofereixen els endolls amb <div style='display: inline-block'><b><b>de paret Shuko</b> sense pin de terra (CEE7/4 tipus F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>?",
|
||||||
"da": "Hvilken strømstyrke har stikkene med <div style='display: inline-block'><b><b> Schuko-vægstik</b> uden jordstift (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> ?",
|
"da": "Hvilken strømstyrke har stikkene med <div style='display: inline-block'><b><b> Schuko-vægstik</b> uden jordstift (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> ?",
|
||||||
"de": "Welche Stromstärke liefern die Anschlüsse mit <div style='display: inline-block'><b><b>Schuko-Stecker</b> ohne Schutzkontakt (CEE7/4 Typ F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>?"
|
"de": "Welche Stromstärke liefern die Anschlüsse mit <div style='display: inline-block'><b><b>Schuko-Stecker</b> ohne Schutzkontakt (CEE7/4 Typ F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>?"
|
||||||
},
|
},
|
||||||
|
@ -1680,6 +1694,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A",
|
"en": "<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A",
|
||||||
"nl": "<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F) levert een stroom van maximaal 16 A",
|
"nl": "<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F) levert een stroom van maximaal 16 A",
|
||||||
|
"ca": "<b>Endoll de paret Shuko</b> sense ping de terra (CEE7/4 tipus F) surt com a màxim 16 A",
|
||||||
"da": "<b>Schuko vægstik</b> uden jordstift (CEE7/4 type F) yder højst 16 A",
|
"da": "<b>Schuko vægstik</b> uden jordstift (CEE7/4 type F) yder højst 16 A",
|
||||||
"de": "<b>Schuko-Steckdose</b> ohne Erdungsstift (CEE7/4 Typ F) liefert 16 A"
|
"de": "<b>Schuko-Steckdose</b> ohne Erdungsstift (CEE7/4 Typ F) liefert 16 A"
|
||||||
},
|
},
|
||||||
|
@ -3668,7 +3683,7 @@
|
||||||
"ca": "<div style='display: inline-block'><b><b>USB</b>per a carregar telèfons i petits dispositius electrònics</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> com a màxim a {socket:USB-A:current}A",
|
"ca": "<div style='display: inline-block'><b><b>USB</b>per a carregar telèfons i petits dispositius electrònics</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> com a màxim a {socket:USB-A:current}A",
|
||||||
"da": "<div style='display: inline-block'><b><b>USB</b> til opladning af telefoner og småt elektronikudstyr</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> udsender højst {socket:USB-A:current}A",
|
"da": "<div style='display: inline-block'><b><b>USB</b> til opladning af telefoner og småt elektronikudstyr</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> udsender højst {socket:USB-A:current}A",
|
||||||
"de": "<div style='display: inline-block'><b><b>USB</b> zum Aufladen von Telefonen und kleinen Elektrogeräten</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> liefert maximal {socket:USB-A:current} A",
|
"de": "<div style='display: inline-block'><b><b>USB</b> zum Aufladen von Telefonen und kleinen Elektrogeräten</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> liefert maximal {socket:USB-A:current} A",
|
||||||
"es": "<div style='display: inline-block'><b><b>USB</b> para carga teléfonos y dispositivos electrónicos pequeños</b> <img style='width:1rem; display: inline-block' src='./assets/layers/changing_station/usb_port.svg'></div> salida de hasta {socket:USB-A:current}A"
|
"es": "<div style='display: inline-block'><b><b>USB</b> para carga teléfonos y dispositivos electrónicos pequeños</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> salida de hasta {socket:USB-A:current}A"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "socket:USB-A:current",
|
"key": "socket:USB-A:current",
|
||||||
|
@ -3937,7 +3952,9 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "When is this charging station opened?",
|
"en": "When is this charging station opened?",
|
||||||
"nl": "Wanneer is dit oplaadpunt beschikbaar??",
|
"nl": "Wanneer is dit oplaadpunt beschikbaar??",
|
||||||
"de": "Wann ist die Ladestation geöffnet?"
|
"ca": "Quan està oberta aquesta estació de càrrega?",
|
||||||
|
"de": "Wann ist die Ladestation geöffnet?",
|
||||||
|
"pl": "Kiedy otwiera się ta stacja ładowania?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"id": "OH"
|
"id": "OH"
|
||||||
|
@ -3996,6 +4013,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"nl": "Gratis te gebruiken",
|
"nl": "Gratis te gebruiken",
|
||||||
"en": "Free to use",
|
"en": "Free to use",
|
||||||
|
"ca": "Ús gratuït",
|
||||||
"da": "Gratis at bruge",
|
"da": "Gratis at bruge",
|
||||||
"de": "Kostenlose Nutzung"
|
"de": "Kostenlose Nutzung"
|
||||||
},
|
},
|
||||||
|
@ -4011,7 +4029,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"nl": "Betalend te gebruiken, maar gratis voor klanten van het bijhorende hotel/café/ziekenhuis/…",
|
"nl": "Betalend te gebruiken, maar gratis voor klanten van het bijhorende hotel/café/ziekenhuis/…",
|
||||||
"en": "Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station",
|
"en": "Paid use, but free for customers of the hotel/pub/hospital/… who operates the charging station",
|
||||||
"ca": "De pagament, però gratuït per als clients de l'hotel/bar/hospital/… que opera l'estació de càrrega",
|
"ca": "De pagament, però gratuït per als clients de l'hotel/bar/hospital/… que gestiona l'estació de càrrega",
|
||||||
"da": "Betalt brug, men gratis for kunder på det hotel/pub/hospital/... der driver ladestationen",
|
"da": "Betalt brug, men gratis for kunder på det hotel/pub/hospital/... der driver ladestationen",
|
||||||
"de": "Die Nutzung ist kostenpflichtig, aber für Kunden des Betreibers der Einrichtung, wie Hotel, Krankenhaus, … kostenlos",
|
"de": "Die Nutzung ist kostenpflichtig, aber für Kunden des Betreibers der Einrichtung, wie Hotel, Krankenhaus, … kostenlos",
|
||||||
"es": "De pago, pero gratis para clientes del hotel/pub/hostpital... quien opera la estación de carga"
|
"es": "De pago, pero gratis para clientes del hotel/pub/hostpital... quien opera la estación de carga"
|
||||||
|
@ -4142,7 +4160,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Authentication via NFC is available",
|
"en": "Authentication via NFC is available",
|
||||||
"nl": "Aanmelden via NFC is mogelijk",
|
"nl": "Aanmelden via NFC is mogelijk",
|
||||||
"ca": "L'autenticació via NFC està disponible",
|
"ca": "L'autenticació mitjançant NFC està disponible",
|
||||||
"da": "Godkendelse via NFC er tilgængelig",
|
"da": "Godkendelse via NFC er tilgængelig",
|
||||||
"de": "Authentifizierung per NFC ist möglich",
|
"de": "Authentifizierung per NFC ist möglich",
|
||||||
"es": "Autenticación mediante NFC disponible",
|
"es": "Autenticación mediante NFC disponible",
|
||||||
|
@ -4155,6 +4173,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Authentication via Money Card is available",
|
"en": "Authentication via Money Card is available",
|
||||||
"nl": "Aanmelden met Money Card is mogelijk",
|
"nl": "Aanmelden met Money Card is mogelijk",
|
||||||
|
"ca": "L'autenticació mitjançant targeta de pagament està disponible",
|
||||||
"da": "Godkendelse via Money Card er tilgængelig",
|
"da": "Godkendelse via Money Card er tilgængelig",
|
||||||
"de": "Authentifizierung per Geldkarte ist möglich",
|
"de": "Authentifizierung per Geldkarte ist möglich",
|
||||||
"es": "Autenticación mediante Money Card disponible"
|
"es": "Autenticación mediante Money Card disponible"
|
||||||
|
@ -4166,6 +4185,7 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Authentication via debit card is available",
|
"en": "Authentication via debit card is available",
|
||||||
"nl": "Aanmelden met een betaalkaart is mogelijk",
|
"nl": "Aanmelden met een betaalkaart is mogelijk",
|
||||||
|
"ca": "L'autenticació mitjançant targeta de debit està disponible",
|
||||||
"da": "Godkendelse via betalingskort er tilgængelig",
|
"da": "Godkendelse via betalingskort er tilgængelig",
|
||||||
"de": "Authentifizierung per Kreditkarte ist möglich",
|
"de": "Authentifizierung per Kreditkarte ist möglich",
|
||||||
"es": "Autenticación mediante tarjeta de débito disponible",
|
"es": "Autenticación mediante tarjeta de débito disponible",
|
||||||
|
@ -4280,7 +4300,8 @@
|
||||||
"ca": "Aquesta estació de càrrega forma part d'una xarxa?",
|
"ca": "Aquesta estació de càrrega forma part d'una xarxa?",
|
||||||
"da": "Er denne ladestation en del af et netværk?",
|
"da": "Er denne ladestation en del af et netværk?",
|
||||||
"de": "Ist diese Ladestation Teil eines Netzwerks?",
|
"de": "Ist diese Ladestation Teil eines Netzwerks?",
|
||||||
"es": "¿Esta estación de carga forma parte de una red?"
|
"es": "¿Esta estación de carga forma parte de una red?",
|
||||||
|
"pl": "Czy ta stacja ładowania jest częścią sieci?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "network"
|
"key": "network"
|
||||||
|
@ -4305,7 +4326,8 @@
|
||||||
"ca": "No forma part d'una xarxa major",
|
"ca": "No forma part d'una xarxa major",
|
||||||
"da": "Ikke en del af et større netværk",
|
"da": "Ikke en del af et større netværk",
|
||||||
"de": "Nicht Teil eines größeren Netzwerks",
|
"de": "Nicht Teil eines größeren Netzwerks",
|
||||||
"es": "No forma parte de una red mayor"
|
"es": "No forma parte de una red mayor",
|
||||||
|
"pl": "Nie jest częścią większej sieci"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -4363,7 +4385,8 @@
|
||||||
"ca": "Aquesta estació de càrrega l'opera {operator}",
|
"ca": "Aquesta estació de càrrega l'opera {operator}",
|
||||||
"da": "Denne ladestation drives af {operator}",
|
"da": "Denne ladestation drives af {operator}",
|
||||||
"de": "Die Station wird betrieben von {operator}",
|
"de": "Die Station wird betrieben von {operator}",
|
||||||
"es": "Esta estación de carga la opera {operator}"
|
"es": "Esta estación de carga la opera {operator}",
|
||||||
|
"pl": "Ta stacja ładowania jest obsługiwana przez {operator}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "operator"
|
"key": "operator"
|
||||||
|
@ -4429,9 +4452,10 @@
|
||||||
"render": {
|
"render": {
|
||||||
"en": "In case of problems, send an email to <a href='mailto:{email}'>{email}</a>",
|
"en": "In case of problems, send an email to <a href='mailto:{email}'>{email}</a>",
|
||||||
"nl": "Bij problemen, email naar <a href='mailto:{email}'>{email}</a>",
|
"nl": "Bij problemen, email naar <a href='mailto:{email}'>{email}</a>",
|
||||||
|
"ca": "En cas de problemes, envia un email a <a href='mailto:{email}'>{email}</a>",
|
||||||
"da": "I tilfælde af problemer kan du sende en e-mail til <a href='mailto:{email}'>{email}</a>",
|
"da": "I tilfælde af problemer kan du sende en e-mail til <a href='mailto:{email}'>{email}</a>",
|
||||||
"de": "Bei Problemen senden Sie bitte eine E-Mail an <a href='mailto:{email}'>{email}</a>",
|
"de": "Bei Problemen senden Sie bitte eine E-Mail an <a href='mailto:{email}'>{email}</a>",
|
||||||
"es": "En caso de problemas, envía un correo electrónico a <a href=\"mailto:{email}'>{email}</a>"
|
"es": "En caso de problemas, envía un correo electrónico a <a href='mailto:{email}'>{email}</a>"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "email",
|
"key": "email",
|
||||||
|
@ -4505,7 +4529,8 @@
|
||||||
"ca": "Aquesta estació de càrrega funciona",
|
"ca": "Aquesta estació de càrrega funciona",
|
||||||
"da": "Denne ladestation fungerer",
|
"da": "Denne ladestation fungerer",
|
||||||
"de": "Die Station ist in Betrieb",
|
"de": "Die Station ist in Betrieb",
|
||||||
"es": "Esta estación de carga funciona"
|
"es": "Esta estación de carga funciona",
|
||||||
|
"pl": "Ta stacja ładowania działa"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -4524,7 +4549,8 @@
|
||||||
"ca": "Aquesta estació de carrega està trencada",
|
"ca": "Aquesta estació de carrega està trencada",
|
||||||
"da": "Denne ladestation er i stykker",
|
"da": "Denne ladestation er i stykker",
|
||||||
"de": "Die Station ist defekt",
|
"de": "Die Station ist defekt",
|
||||||
"es": "Esta estación de carga está rota"
|
"es": "Esta estación de carga está rota",
|
||||||
|
"pl": "Ta stacja ładowania jest zepsuta"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -4543,7 +4569,8 @@
|
||||||
"ca": "Aquí està prevista una estació de recàrrega",
|
"ca": "Aquí està prevista una estació de recàrrega",
|
||||||
"da": "Her er der planlagt en ladestation",
|
"da": "Her er der planlagt en ladestation",
|
||||||
"de": "Die Station ist erst in Planung",
|
"de": "Die Station ist erst in Planung",
|
||||||
"es": "Aquí está planeada una estación de carga"
|
"es": "Aquí está planeada una estación de carga",
|
||||||
|
"pl": "Planowana jest tutaj stacja ładowania"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -4562,7 +4589,8 @@
|
||||||
"ca": "Aquí està construint-se una estació de càrrega",
|
"ca": "Aquí està construint-se una estació de càrrega",
|
||||||
"da": "Her er opført en ladestation",
|
"da": "Her er opført en ladestation",
|
||||||
"de": "Die Station ist aktuell im Bau",
|
"de": "Die Station ist aktuell im Bau",
|
||||||
"es": "Aquí está construida una estación de carga"
|
"es": "Aquí está construida una estación de carga",
|
||||||
|
"pl": "Budowana jest tutaj stacja ładowania"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -4734,7 +4762,8 @@
|
||||||
"ca": "una estació de càrrega per a cotxes",
|
"ca": "una estació de càrrega per a cotxes",
|
||||||
"da": "en ladestation til biler",
|
"da": "en ladestation til biler",
|
||||||
"de": "Eine Ladestation für Elektrofahrzeuge",
|
"de": "Eine Ladestation für Elektrofahrzeuge",
|
||||||
"es": "una estación de carga para coches"
|
"es": "una estación de carga para coches",
|
||||||
|
"pl": "stacja ładowania dla samochodów"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -4750,7 +4779,8 @@
|
||||||
"da": "Alle køretøjstyper",
|
"da": "Alle køretøjstyper",
|
||||||
"de": "Ladestationen für alle Fahrzeugtypen",
|
"de": "Ladestationen für alle Fahrzeugtypen",
|
||||||
"es": "Todo tipo de vehículos",
|
"es": "Todo tipo de vehículos",
|
||||||
"fr": "Tout type de véhicule"
|
"fr": "Tout type de véhicule",
|
||||||
|
"pl": "Wszystkie rodzaje pojazdów"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -4761,7 +4791,8 @@
|
||||||
"da": "Ladestation til cykler",
|
"da": "Ladestation til cykler",
|
||||||
"de": "Ladestationen für Fahrräder",
|
"de": "Ladestationen für Fahrräder",
|
||||||
"es": "Estación de carga para bicicletas",
|
"es": "Estación de carga para bicicletas",
|
||||||
"fr": "Station de charge pour vélos"
|
"fr": "Station de charge pour vélos",
|
||||||
|
"pl": "Stacja ładowania dla rowerów"
|
||||||
},
|
},
|
||||||
"osmTags": "bicycle=yes"
|
"osmTags": "bicycle=yes"
|
||||||
},
|
},
|
||||||
|
@ -4773,7 +4804,8 @@
|
||||||
"da": "Ladestation til biler",
|
"da": "Ladestation til biler",
|
||||||
"de": "Ladestationen für Autos",
|
"de": "Ladestationen für Autos",
|
||||||
"es": "Estación de carga para coches",
|
"es": "Estación de carga para coches",
|
||||||
"fr": "Station de charge pour automobiles"
|
"fr": "Station de charge pour automobiles",
|
||||||
|
"pl": "Stacja ładowania dla samochodów"
|
||||||
},
|
},
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
"or": [
|
"or": [
|
||||||
|
@ -4795,7 +4827,8 @@
|
||||||
"da": "Kun fungerende ladestationer",
|
"da": "Kun fungerende ladestationer",
|
||||||
"de": "Nur Ladestationen in Betrieb",
|
"de": "Nur Ladestationen in Betrieb",
|
||||||
"es": "Solo estaciones de carga funcionales",
|
"es": "Solo estaciones de carga funcionales",
|
||||||
"fr": "Stations de recharge en service uniquement"
|
"fr": "Stations de recharge en service uniquement",
|
||||||
|
"pl": "Tylko działające stacje ładowania"
|
||||||
},
|
},
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -4835,9 +4868,10 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>European wall plug</b> with ground pin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>European wall plug</b> with ground pin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>endoll de paret Europeu</b> amb un pin de terra (CEE7/4 tipus F)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> Europæisk vægstik</b> med jordstik (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> Europæisk vægstik</b> med jordstik (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> stik",
|
||||||
"de": "Verfügt über einen <div style='display: inline-block'><b><b>europäischen Netzstecker</b> mit Erdungsstift (CEE7/4 Typ E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> Anschluss",
|
"de": "Verfügt über einen <div style='display: inline-block'><b><b>europäischen Netzstecker</b> mit Erdungsstift (CEE7/4 Typ E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> Anschluss",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>enchufe de pared Europeo</b> con un pin de tierra (CEE7/4 tipo E</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>enchufe de pared Europeo</b> con un pin de tierra (CEE7/4 tipo E)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div>"
|
||||||
},
|
},
|
||||||
"osmTags": "socket:typee~*"
|
"osmTags": "socket:typee~*"
|
||||||
},
|
},
|
||||||
|
@ -4845,6 +4879,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> stik",
|
||||||
"de": "Verfügt über einen <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> Stecker",
|
"de": "Verfügt über einen <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> Stecker",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>Chademo</b></b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>Chademo</b></b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div>"
|
||||||
|
@ -4855,10 +4890,10 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
||||||
"ca": "Té un connector de <div style='display: inline-block'><b><b>Tipus 1 amb cable</b> (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
"ca": "Té un connector <div style='display: inline-block'><b><b>Tipus 1 amb cable</b> (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> Type 1 med kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> Type 1 med kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> stik",
|
||||||
"de": "Verfügt über einen <div style='display: inline-block'><b><b>Typ 1 </b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> Stecker mit Kabel",
|
"de": "Verfügt über einen <div style='display: inline-block'><b><b>Typ 1 </b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> Stecker mit Kabel",
|
||||||
"es": "Tiene un conector de <div style='display: inline-block'><b><b>Tipo 1 con cable</b> (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>Tipo 1 con cable</b> (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>"
|
||||||
},
|
},
|
||||||
"osmTags": "socket:type1_cable~*"
|
"osmTags": "socket:type1_cable~*"
|
||||||
},
|
},
|
||||||
|
@ -4866,7 +4901,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b>Type 1 <i>without</i> cable (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b>Type 1 <i>without</i> cable (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b>Type 1 <i>zonder</i> kabel (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b>Type 1 <i>zonder</i> kabel (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
||||||
"ca": "Té un connecgtor de <div style='display: inline-block'><b>Tipus 1<i>sense</i>cable (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
"ca": "Té un connector <div style='display: inline-block'><b>Tipus 1<i>sense</i>cable (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b>Type 1 <i>uden</i> kabel (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b>Type 1 <i>uden</i> kabel (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> stik",
|
||||||
"de": "Verfügt über einen <div style='display: inline-block'><b>Typ 1 (J1772)</b>Stecker <i>ohne</i> Kabel<img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
"de": "Verfügt über einen <div style='display: inline-block'><b>Typ 1 (J1772)</b>Stecker <i>ohne</i> Kabel<img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>",
|
||||||
"es": "Tiene un conector de <div style='display: inline-block'><b>Tipo 1 <i>sin</i> cable (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>"
|
"es": "Tiene un conector de <div style='display: inline-block'><b>Tipo 1 <i>sin</i> cable (J1772)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>"
|
||||||
|
@ -4911,6 +4946,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b> Tipus 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>",
|
||||||
"da": "Har en <div style='display: inline-block'><b><b> Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> connector",
|
"da": "Har en <div style='display: inline-block'><b><b> Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> connector",
|
||||||
"de": "Hat einen <div style='display: inline-block'><b><b>Typ 2 CCS</b> (Mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> Anschluss",
|
"de": "Hat einen <div style='display: inline-block'><b><b>Typ 2 CCS</b> (Mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> Anschluss",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b>Tipo 2 CCS</b> (mennekes)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b>Tipo 2 CCS</b> (mennekes)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>"
|
||||||
|
@ -4921,6 +4957,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>Tipus 2 amb cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> Type 2 med kabel</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> Type 2 med kabel</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> stik",
|
||||||
"de": "Hat einen <div style='display: inline-block'><b><b>Typ 2</b> (Mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> Anschluss mit Kabel",
|
"de": "Hat einen <div style='display: inline-block'><b><b>Typ 2</b> (Mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> Anschluss mit Kabel",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>Tipo 2 con cable</b> (mennekes)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>Tipo 2 con cable</b> (mennekes)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>"
|
||||||
|
@ -4931,6 +4968,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (a branded type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (a branded type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (un tipus2_css de marca)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> Tesla Supercharger CCS-stik</b> (et mærkevarer type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> Tesla Supercharger CCS-stik</b> (et mærkevarer type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> stik",
|
||||||
"de": "Hat einen <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (Typ 2 CSS vonTesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> Anschluss",
|
"de": "Hat einen <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (Typ 2 CSS vonTesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> Anschluss",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (un tipo2_css de marca)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (un tipo2_css de marca)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div>"
|
||||||
|
@ -4941,6 +4979,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div>",
|
||||||
"da": "Har en <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> stik",
|
"da": "Har en <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> stik",
|
||||||
"de": "Hat einen <div style='display: inline-block'><b><b>Tesla Supercharger (Destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> Anschluss",
|
"de": "Hat einen <div style='display: inline-block'><b><b>Tesla Supercharger (Destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> Anschluss",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div>"
|
||||||
|
@ -4962,6 +5001,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>USB</b> to charge phones and small electronics</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>USB</b> to charge phones and small electronics</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>USB</b> om GSMs en kleine electronica op te laden</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>USB</b> om GSMs en kleine electronica op te laden</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>USB</b> per a carregar telèfons i dispositius electrònics petits</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> USB-stik</b> til opladning af telefoner og mindre elektronik</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> USB-stik</b> til opladning af telefoner og mindre elektronik</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> stik",
|
||||||
"de": "Hat einen <div style='display: inline-block'><b><b>USB</b>-Anschluss zum Aufladen von Telefonen und kleinen Elektrogeräten</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div>",
|
"de": "Hat einen <div style='display: inline-block'><b><b>USB</b>-Anschluss zum Aufladen von Telefonen und kleinen Elektrogeräten</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div>",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>USB</b> para cargar teléfonos y dispositivos electrónicos pequeños</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>USB</b> para cargar teléfonos y dispositivos electrónicos pequeños</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div>"
|
||||||
|
@ -4972,6 +5012,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Bosch Active Connect with 3 pins</b> and cable</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Bosch Active Connect with 3 pins</b> and cable</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Bosch Active Connect met 3 pinnen</b> aan een kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Bosch Active Connect met 3 pinnen</b> aan een kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>Bosch Active Connect amb 3 pins</b> i cable</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> Bosch Active Connect med 3 pins</b> og et kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> Bosch Active Connect med 3 pins</b> og et kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div> stik",
|
||||||
"de": "Hat einen <div style='display: inline-block'><b><b>Bosch Active Connect Anschluss mit 3 Pins</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div> und Kabel",
|
"de": "Hat einen <div style='display: inline-block'><b><b>Bosch Active Connect Anschluss mit 3 Pins</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div> und Kabel",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>Bosch Active Connect con 3 pines</b> y cable</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>Bosch Active Connect con 3 pines</b> y cable</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-3pin.svg'/></div>"
|
||||||
|
@ -4982,6 +5023,7 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has a <div style='display: inline-block'><b><b>Bosch Active Connect with 5 pins</b> and cable</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div> connector",
|
"en": "Has a <div style='display: inline-block'><b><b>Bosch Active Connect with 5 pins</b> and cable</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div> connector",
|
||||||
"nl": "Heeft een <div style='display: inline-block'><b><b>Bosch Active Connect met 5 pinnen</b> aan een kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div>",
|
"nl": "Heeft een <div style='display: inline-block'><b><b>Bosch Active Connect met 5 pinnen</b> aan een kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div>",
|
||||||
|
"ca": "Té un connector <div style='display: inline-block'><b><b>Bosch Active Connect amb 5 pins</b> i cable</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div>",
|
||||||
"da": "Har et <div style='display: inline-block'><b><b> Bosch Active Connect-stik med 5 pins</b> og kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div> stik",
|
"da": "Har et <div style='display: inline-block'><b><b> Bosch Active Connect-stik med 5 pins</b> og kabel</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div> stik",
|
||||||
"de": "Hat einen <div style='display: inline-block'><b><b>Bosch Active Connect Anschluss mit 5 Pins</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div> und Kabel",
|
"de": "Hat einen <div style='display: inline-block'><b><b>Bosch Active Connect Anschluss mit 5 Pins</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div> und Kabel",
|
||||||
"es": "Tiene un conector <div style='display: inline-block'><b><b>Bosch Active Connect con 5 pines</b> y cable</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div>"
|
"es": "Tiene un conector <div style='display: inline-block'><b><b>Bosch Active Connect con 5 pines</b> y cable</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/bosch-5pin.svg'/></div>"
|
||||||
|
@ -5013,7 +5055,9 @@
|
||||||
"ca": " minuts",
|
"ca": " minuts",
|
||||||
"de": " Minuten",
|
"de": " Minuten",
|
||||||
"es": " minutos",
|
"es": " minutos",
|
||||||
|
"eu": " ·minutu",
|
||||||
"pa_PK": " منٹ",
|
"pa_PK": " منٹ",
|
||||||
|
"pl": " minut",
|
||||||
"ru": " минут"
|
"ru": " минут"
|
||||||
},
|
},
|
||||||
"humanSingular": {
|
"humanSingular": {
|
||||||
|
@ -5022,6 +5066,8 @@
|
||||||
"ca": " minut",
|
"ca": " minut",
|
||||||
"de": " Minute",
|
"de": " Minute",
|
||||||
"es": " minuto",
|
"es": " minuto",
|
||||||
|
"eu": " ·minutu",
|
||||||
|
"pl": " minuta",
|
||||||
"ru": " минута"
|
"ru": " минута"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -5042,6 +5088,8 @@
|
||||||
"ca": " hores",
|
"ca": " hores",
|
||||||
"de": " Stunden",
|
"de": " Stunden",
|
||||||
"es": " horas",
|
"es": " horas",
|
||||||
|
"eu": " ·ordu",
|
||||||
|
"pl": " godzin",
|
||||||
"ru": " часов"
|
"ru": " часов"
|
||||||
},
|
},
|
||||||
"humanSingular": {
|
"humanSingular": {
|
||||||
|
@ -5050,6 +5098,8 @@
|
||||||
"ca": " hora",
|
"ca": " hora",
|
||||||
"de": " Stunde",
|
"de": " Stunde",
|
||||||
"es": " hora",
|
"es": " hora",
|
||||||
|
"eu": " ·ordu",
|
||||||
|
"pl": " godzina",
|
||||||
"ru": " час"
|
"ru": " час"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -5067,6 +5117,8 @@
|
||||||
"ca": " dies",
|
"ca": " dies",
|
||||||
"de": " Tage",
|
"de": " Tage",
|
||||||
"es": " días",
|
"es": " días",
|
||||||
|
"eu": " ·egun",
|
||||||
|
"pl": " dni",
|
||||||
"ru": " дней"
|
"ru": " дней"
|
||||||
},
|
},
|
||||||
"humanSingular": {
|
"humanSingular": {
|
||||||
|
@ -5075,6 +5127,8 @@
|
||||||
"ca": " dia",
|
"ca": " dia",
|
||||||
"de": " Tag",
|
"de": " Tag",
|
||||||
"es": " día",
|
"es": " día",
|
||||||
|
"eu": " ·egun",
|
||||||
|
"pl": " dzień",
|
||||||
"ru": " день"
|
"ru": " день"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5115,6 +5169,7 @@
|
||||||
"ca": "Volts",
|
"ca": "Volts",
|
||||||
"de": "Volt",
|
"de": "Volt",
|
||||||
"es": "Voltios",
|
"es": "Voltios",
|
||||||
|
"eu": "Voltio",
|
||||||
"ru": "Вольт"
|
"ru": "Вольт"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5154,7 +5209,8 @@
|
||||||
"nl": "A",
|
"nl": "A",
|
||||||
"ca": "A",
|
"ca": "A",
|
||||||
"de": "Ein",
|
"de": "Ein",
|
||||||
"es": "A"
|
"es": "A",
|
||||||
|
"eu": "A"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -5191,6 +5247,7 @@
|
||||||
"ca": "quilovats",
|
"ca": "quilovats",
|
||||||
"de": "Kilowatt",
|
"de": "Kilowatt",
|
||||||
"es": "kilvatio",
|
"es": "kilvatio",
|
||||||
|
"eu": "kilovatio",
|
||||||
"pa_PK": "کیلوواٹ",
|
"pa_PK": "کیلوواٹ",
|
||||||
"ru": "киловатт"
|
"ru": "киловатт"
|
||||||
}
|
}
|
||||||
|
@ -5206,6 +5263,7 @@
|
||||||
"ca": "megavats",
|
"ca": "megavats",
|
||||||
"de": "Megawatt",
|
"de": "Megawatt",
|
||||||
"es": "megavatio",
|
"es": "megavatio",
|
||||||
|
"eu": "megawatt",
|
||||||
"pa_PK": "میگاواٹ",
|
"pa_PK": "میگاواٹ",
|
||||||
"ru": "мегаватт"
|
"ru": "мегаватт"
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
"club="
|
"club="
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"render": "<a href='{url}' target='_blank'>{url}</a>",
|
"render": "<a href='{url}' target='_blank' rel='noopener'>{url}</a>",
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "url",
|
"key": "url",
|
||||||
"type": "url"
|
"type": "url"
|
||||||
|
|
|
@ -159,7 +159,8 @@
|
||||||
"id": "<strong>{name}</strong>",
|
"id": "<strong>{name}</strong>",
|
||||||
"ru": "<strong>{name}</strong>",
|
"ru": "<strong>{name}</strong>",
|
||||||
"ja": "<strong>{name}</strong>",
|
"ja": "<strong>{name}</strong>",
|
||||||
"it": "<strong>{name}</strong>"
|
"it": "<strong>{name}</strong>",
|
||||||
|
"eu": "<strong>{name}</strong>"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the name of this climbing opportunity?",
|
"en": "What is the name of this climbing opportunity?",
|
||||||
|
@ -249,7 +250,8 @@
|
||||||
"fr": "Calcaire",
|
"fr": "Calcaire",
|
||||||
"de": "Kalkstein",
|
"de": "Kalkstein",
|
||||||
"it": "Calcare",
|
"it": "Calcare",
|
||||||
"pa_PK": "چونہ پتھر"
|
"pa_PK": "چونہ پتھر",
|
||||||
|
"eu": "Kareharria"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -86,7 +86,8 @@
|
||||||
"en": "Can one rent climbing shoes here?",
|
"en": "Can one rent climbing shoes here?",
|
||||||
"nl": "Kunnen hier klimschoenen gehuurd worden?",
|
"nl": "Kunnen hier klimschoenen gehuurd worden?",
|
||||||
"fr": "Peut-on louer des chaussures d'escalade ici ?",
|
"fr": "Peut-on louer des chaussures d'escalade ici ?",
|
||||||
"de": "Kann man hier Kletterschuhe ausleihen?"
|
"de": "Kann man hier Kletterschuhe ausleihen?",
|
||||||
|
"pl": "Czy można tutaj wypożyczyć buty do wspinaczki?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -132,7 +133,8 @@
|
||||||
"en": "Climbing shoes can be rented here",
|
"en": "Climbing shoes can be rented here",
|
||||||
"nl": "Klimschoenen kunnen hier gehuurd worden",
|
"nl": "Klimschoenen kunnen hier gehuurd worden",
|
||||||
"fr": "Les chaussures d'escalade peuvent être louées ici",
|
"fr": "Les chaussures d'escalade peuvent être louées ici",
|
||||||
"de": "Kletterschuhe können hier ausgeliehen werden"
|
"de": "Kletterschuhe können hier ausgeliehen werden",
|
||||||
|
"pl": "Można tutaj wypożyczyć buty do wspinaczki"
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"service:climbing_shoes:rental:charge="
|
"service:climbing_shoes:rental:charge="
|
||||||
|
@ -144,7 +146,8 @@
|
||||||
"en": "Climbing shoes can <b>not</b> be rented here",
|
"en": "Climbing shoes can <b>not</b> be rented here",
|
||||||
"nl": "Hier kunnen <b>geen</b> klimschoenen gehuurd worden",
|
"nl": "Hier kunnen <b>geen</b> klimschoenen gehuurd worden",
|
||||||
"fr": "Les chaussures d'escalade ne peuvent <b>pas</b> être louées ici",
|
"fr": "Les chaussures d'escalade ne peuvent <b>pas</b> être louées ici",
|
||||||
"de": "Kletterschuhe können hier <b>nicht</b> ausgeliehen werden"
|
"de": "Kletterschuhe können hier <b>nicht</b> ausgeliehen werden",
|
||||||
|
"pl": "<b>Nie</b> można wypożyczyć tutaj butów do wspinaczki"
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"service:climbing_shoes:rental:fee=",
|
"service:climbing_shoes:rental:fee=",
|
||||||
|
|
|
@ -55,7 +55,8 @@
|
||||||
"ru": "<strong>{name}</strong>",
|
"ru": "<strong>{name}</strong>",
|
||||||
"ja": "<strong>{name}</strong>",
|
"ja": "<strong>{name}</strong>",
|
||||||
"nl": "<strong>{name}</strong>",
|
"nl": "<strong>{name}</strong>",
|
||||||
"it": "<strong>{name}</strong>"
|
"it": "<strong>{name}</strong>",
|
||||||
|
"pl": "<strong>{name}</strong>"
|
||||||
},
|
},
|
||||||
"condition": "name~*"
|
"condition": "name~*"
|
||||||
},
|
},
|
||||||
|
|
|
@ -4,20 +4,24 @@
|
||||||
"en": "Clocks",
|
"en": "Clocks",
|
||||||
"nl": "Klokken",
|
"nl": "Klokken",
|
||||||
"de": "Uhren",
|
"de": "Uhren",
|
||||||
"ca": "Rellotges"
|
"ca": "Rellotges",
|
||||||
|
"fr": "Horloges"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Layer with public clocks",
|
"en": "Layer with public clocks",
|
||||||
"nl": "Laag met publieke klokken",
|
"nl": "Laag met publieke klokken",
|
||||||
"de": "Ebene mit öffentlichen Uhren",
|
"de": "Ebene mit öffentlichen Uhren",
|
||||||
"ca": "Capa amb rellotges públics"
|
"ca": "Capa amb rellotges públics",
|
||||||
|
"fr": "Couche avec les horloges publiques"
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"render": {
|
"render": {
|
||||||
"en": "Clock",
|
"en": "Clock",
|
||||||
"nl": "Klok",
|
"nl": "Klok",
|
||||||
"de": "Uhr",
|
"de": "Uhr",
|
||||||
"ca": "Rellotge"
|
"ca": "Rellotge",
|
||||||
|
"fr": "Horloge",
|
||||||
|
"pl": "Zegar"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -33,7 +37,8 @@
|
||||||
"nl": "Hoe is de klok bevestigd?",
|
"nl": "Hoe is de klok bevestigd?",
|
||||||
"de": "Wie ist die Uhr montiert?",
|
"de": "Wie ist die Uhr montiert?",
|
||||||
"ca": "De quina forma està muntat aquest rellotge?",
|
"ca": "De quina forma està muntat aquest rellotge?",
|
||||||
"fr": "De quelle manière est fixée cette horloge ?"
|
"fr": "De quelle manière est fixée cette horloge ?",
|
||||||
|
"pl": "W jaki sposób zamontowany jest ten zegar?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -43,7 +48,8 @@
|
||||||
"nl": "Deze klok is bevestigd aan een paal",
|
"nl": "Deze klok is bevestigd aan een paal",
|
||||||
"de": "Diese Uhr ist auf einem Mast montiert",
|
"de": "Diese Uhr ist auf einem Mast montiert",
|
||||||
"ca": "Aquest rellotge està muntat en un pal",
|
"ca": "Aquest rellotge està muntat en un pal",
|
||||||
"fr": "Cette horloge est montée sur un poteau"
|
"fr": "Cette horloge est montée sur un poteau",
|
||||||
|
"pl": "Ten zegar jest zamontowany na słupie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -53,7 +59,8 @@
|
||||||
"nl": "Deze klok is bevestigd aan een muur",
|
"nl": "Deze klok is bevestigd aan een muur",
|
||||||
"de": "Diese Uhr ist an einer Wand montiert",
|
"de": "Diese Uhr ist an einer Wand montiert",
|
||||||
"ca": "Aquest rellotge està muntat en una paret",
|
"ca": "Aquest rellotge està muntat en una paret",
|
||||||
"fr": "Cette horloge est fixée sur un mur"
|
"fr": "Cette horloge est fixée sur un mur",
|
||||||
|
"pl": "Ten zegar jest zamontowany na ścianie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -63,7 +70,8 @@
|
||||||
"nl": "Deze klok is onderdeel van een reclamebord",
|
"nl": "Deze klok is onderdeel van een reclamebord",
|
||||||
"de": "Diese Uhr ist Teil einer Werbetafel",
|
"de": "Diese Uhr ist Teil einer Werbetafel",
|
||||||
"ca": "Aquest rellotge està muntat en una tanca publicitària",
|
"ca": "Aquest rellotge està muntat en una tanca publicitària",
|
||||||
"fr": "Cette horloge fait partie d'un panneau publicitaire"
|
"fr": "Cette horloge fait partie d'un panneau publicitaire",
|
||||||
|
"pl": "Ten zegar jest częścią bilbordu"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -73,7 +81,8 @@
|
||||||
"nl": "Deze klok staat op de grond",
|
"nl": "Deze klok staat op de grond",
|
||||||
"de": "Diese Uhr befindet sich auf dem Boden",
|
"de": "Diese Uhr befindet sich auf dem Boden",
|
||||||
"ca": "Aquest rellotge està al sòl",
|
"ca": "Aquest rellotge està al sòl",
|
||||||
"fr": "Cette horloge est posée au sol"
|
"fr": "Cette horloge est posée au sol",
|
||||||
|
"pl": "Ten zegar jest na ziemi"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -85,7 +94,8 @@
|
||||||
"nl": "Hoe toont deze klok de tijd?",
|
"nl": "Hoe toont deze klok de tijd?",
|
||||||
"de": "Wie zeigt diese Uhr die Zeit an?",
|
"de": "Wie zeigt diese Uhr die Zeit an?",
|
||||||
"ca": "Com mostra aquest rellotge l'hora?",
|
"ca": "Com mostra aquest rellotge l'hora?",
|
||||||
"fr": "Comment cette horloge indique-t-elle l'heure ?"
|
"fr": "Comment cette horloge indique-t-elle l'heure ?",
|
||||||
|
"pl": "Jak ten zegar wyświetla czas?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -95,7 +105,8 @@
|
||||||
"nl": "Deze klok toont de tijd met wijzers",
|
"nl": "Deze klok toont de tijd met wijzers",
|
||||||
"de": "Diese Uhr zeigt die Zeit mit Zeigern an",
|
"de": "Diese Uhr zeigt die Zeit mit Zeigern an",
|
||||||
"ca": "Aquest rellotge mostra l'hora amb mans",
|
"ca": "Aquest rellotge mostra l'hora amb mans",
|
||||||
"fr": "Cette horloge indique l'heure avec des aiguilles"
|
"fr": "Cette horloge indique l'heure avec des aiguilles",
|
||||||
|
"pl": "Ten zegar pokazuje czas za pomocą wskazówek"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -105,7 +116,8 @@
|
||||||
"nl": "Deze klok toont de tijd met cijfers",
|
"nl": "Deze klok toont de tijd met cijfers",
|
||||||
"de": "Diese Uhr zeigt die Zeit mit Ziffern an",
|
"de": "Diese Uhr zeigt die Zeit mit Ziffern an",
|
||||||
"ca": "Aquest rellotge mostra l'hora amb dígits",
|
"ca": "Aquest rellotge mostra l'hora amb dígits",
|
||||||
"fr": "Cette horloges indique l'heure avec des chiffres numériques"
|
"fr": "Cette horloges indique l'heure avec des chiffres numériques",
|
||||||
|
"pl": "Ten zegar wyświetla czas za pomocą cyfr"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -125,7 +137,8 @@
|
||||||
"nl": "Deze klok toont de tijd op een niet-standaard manier, bijvoorbeeld met binaire cijfers, water of iets anders",
|
"nl": "Deze klok toont de tijd op een niet-standaard manier, bijvoorbeeld met binaire cijfers, water of iets anders",
|
||||||
"de": "Diese Uhr zeigt die Zeit auf eine nicht standardisierte Weise an, z. B. mit Binärzeichen, Wasser oder etwas anderem",
|
"de": "Diese Uhr zeigt die Zeit auf eine nicht standardisierte Weise an, z. B. mit Binärzeichen, Wasser oder etwas anderem",
|
||||||
"ca": "Aquest rellotge mostra l'hora d'una manera no estàndard, p.e. utilitzant binari, aigua o quelcom més",
|
"ca": "Aquest rellotge mostra l'hora d'una manera no estàndard, p.e. utilitzant binari, aigua o quelcom més",
|
||||||
"fr": "Cette horloge indique l'heure d'une manière inhabituelle, par ex. en binaire, avec de l'eau, ou autre"
|
"fr": "Cette horloge indique l'heure d'une manière inhabituelle, par ex. en binaire, avec de l'eau, ou autre",
|
||||||
|
"pl": "Ten zegar wyświetla czas w niestandardowy sposób, np. używając systemu binarnego, wody lub czegoś innego"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -136,7 +149,9 @@
|
||||||
"en": "How visible is this clock?",
|
"en": "How visible is this clock?",
|
||||||
"nl": "Hoe zichtbaar is deze klok?",
|
"nl": "Hoe zichtbaar is deze klok?",
|
||||||
"de": "Wie sichtbar ist diese Uhr?",
|
"de": "Wie sichtbar ist diese Uhr?",
|
||||||
"ca": "Com de visible és aquest rellotge?"
|
"ca": "Com de visible és aquest rellotge?",
|
||||||
|
"fr": "Quelle est la visibilité de cette horloge ?",
|
||||||
|
"pl": "Jaka jest widoczność tego zegara?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -145,7 +160,9 @@
|
||||||
"en": "This clock is visible from about 5 meters away (small wall-mounted clock)",
|
"en": "This clock is visible from about 5 meters away (small wall-mounted clock)",
|
||||||
"nl": "Deze klok is zichtbaar vanaf ongeveer 5 meter afstand (kleine klok aan een muur)",
|
"nl": "Deze klok is zichtbaar vanaf ongeveer 5 meter afstand (kleine klok aan een muur)",
|
||||||
"de": "Diese Uhr ist aus etwa 5 Metern Entfernung sichtbar (kleine Wanduhr)",
|
"de": "Diese Uhr ist aus etwa 5 Metern Entfernung sichtbar (kleine Wanduhr)",
|
||||||
"ca": "Aquest rellotge és visible al voltant dels 5 metres de distància (un petit rellotge muntat a la paret)"
|
"ca": "Aquest rellotge és visible al voltant dels 5 metres de distància (un petit rellotge muntat a la paret)",
|
||||||
|
"fr": "Cette horloge est visible d'environ 5 mètres (petite horloge fixée au mur)",
|
||||||
|
"pl": "Ten zegar jest widoczny z około 5 metrów (mały zegar ścienny)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -154,7 +171,9 @@
|
||||||
"en": "This clock is visible from about 20 meters away (medium size billboard clock)",
|
"en": "This clock is visible from about 20 meters away (medium size billboard clock)",
|
||||||
"nl": "Deze klok is zichtbaar vanaf ongeveer 20 meter afstand (klok op gemiddeld reclamebord)",
|
"nl": "Deze klok is zichtbaar vanaf ongeveer 20 meter afstand (klok op gemiddeld reclamebord)",
|
||||||
"de": "Diese Uhr ist aus etwa 20 Metern Entfernung sichtbar (mittelgroße Plakatuhr)",
|
"de": "Diese Uhr ist aus etwa 20 Metern Entfernung sichtbar (mittelgroße Plakatuhr)",
|
||||||
"ca": "Aquest rellotge és visible al voltant dels 20 metres de distància (rellotge de tamany mig a una tanca publicitària)"
|
"ca": "Aquest rellotge és visible al voltant dels 20 metres de distància (rellotge de tamany mig a una tanca publicitària)",
|
||||||
|
"fr": "Cette horloge est visible d'environ 20 mètres (horloge sur un panneau publicitaire)",
|
||||||
|
"pl": "Ten zegar jest widoczny z około 20 metrów (średniej wielkości zegar na bilbordzie)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -163,7 +182,9 @@
|
||||||
"en": "This clock is visible from more than 20 meters away (e.g. a church clock or station clock)",
|
"en": "This clock is visible from more than 20 meters away (e.g. a church clock or station clock)",
|
||||||
"nl": "Deze klok is zichtbaar vanaf meer dan 20 meter afstand (kerkklok)",
|
"nl": "Deze klok is zichtbaar vanaf meer dan 20 meter afstand (kerkklok)",
|
||||||
"de": "Diese Uhr ist aus mehr als 20 Metern Entfernung sichtbar (Kirchuhr, Bahnhofsuhr)",
|
"de": "Diese Uhr ist aus mehr als 20 Metern Entfernung sichtbar (Kirchuhr, Bahnhofsuhr)",
|
||||||
"ca": "Aquest rellotge és visible des de més de 20 metres de distància (p. ex. el d'una església o estació de tren)"
|
"ca": "Aquest rellotge és visible des de més de 20 metres de distància (p. ex. el d'una església o estació de tren)",
|
||||||
|
"fr": "Cette horloge est visible de plus de 20 mètres (par ex. horloge d'église ou de gare)",
|
||||||
|
"pl": "Ten zegar jest widoczny z ponad 20 metrów (np. zegar kościelny lub stacyjny)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -175,7 +196,8 @@
|
||||||
"nl": "Toont deze klok ook de datum?",
|
"nl": "Toont deze klok ook de datum?",
|
||||||
"de": "Zeigt diese Uhr auch das Datum an?",
|
"de": "Zeigt diese Uhr auch das Datum an?",
|
||||||
"ca": "Aquest rellotge també mostra la data?",
|
"ca": "Aquest rellotge també mostra la data?",
|
||||||
"fr": "Cette horloge indique-t-elle également la date ?"
|
"fr": "Cette horloge indique-t-elle également la date ?",
|
||||||
|
"pl": "Czy ten zegar wyświetla datę?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -185,7 +207,8 @@
|
||||||
"nl": "Deze klok toont ook de datum",
|
"nl": "Deze klok toont ook de datum",
|
||||||
"de": "Diese Uhr zeigt auch das Datum an",
|
"de": "Diese Uhr zeigt auch das Datum an",
|
||||||
"ca": "Aquest rellotge també mostra la data",
|
"ca": "Aquest rellotge també mostra la data",
|
||||||
"fr": "Cette horloge indique également la date"
|
"fr": "Cette horloge indique également la date",
|
||||||
|
"pl": "Ten zegar wyświetla również datę"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -195,7 +218,8 @@
|
||||||
"nl": "Deze klok toont de datum niet",
|
"nl": "Deze klok toont de datum niet",
|
||||||
"de": "Diese Uhr zeigt kein Datum an",
|
"de": "Diese Uhr zeigt kein Datum an",
|
||||||
"ca": "Aquest rellotge no mostra la data",
|
"ca": "Aquest rellotge no mostra la data",
|
||||||
"fr": "Cette horloge n'indique pas la date"
|
"fr": "Cette horloge n'indique pas la date",
|
||||||
|
"pl": "Ten zegar nie wyświetla daty"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -204,7 +228,9 @@
|
||||||
"en": "This clock does probably not display the date",
|
"en": "This clock does probably not display the date",
|
||||||
"nl": "Deze klok toont de datum waarschijnlijk niet",
|
"nl": "Deze klok toont de datum waarschijnlijk niet",
|
||||||
"de": "Diese Uhr zeigt wahrscheinlich nicht das Datum an",
|
"de": "Diese Uhr zeigt wahrscheinlich nicht das Datum an",
|
||||||
"ca": "Aquest rellotge probablement no mostra la data"
|
"ca": "Aquest rellotge probablement no mostra la data",
|
||||||
|
"fr": "Cette horloge n'affiche probablement pas la date",
|
||||||
|
"pl": "Ten zegar prawdopodobnie nie wyświetla daty"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -216,7 +242,9 @@
|
||||||
"en": "Does this clock also display the temperature?",
|
"en": "Does this clock also display the temperature?",
|
||||||
"nl": "Toont deze klok ook de temperatuur?",
|
"nl": "Toont deze klok ook de temperatuur?",
|
||||||
"de": "Zeigt diese Uhr auch die Temperatur an?",
|
"de": "Zeigt diese Uhr auch die Temperatur an?",
|
||||||
"ca": "Aquest rellotge també mostra la temperatura?"
|
"ca": "Aquest rellotge també mostra la temperatura?",
|
||||||
|
"fr": "Est-ce que cette horloge affiche également la température ?",
|
||||||
|
"pl": "Czy ten zegar wyświetla również temperaturę?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -225,7 +253,9 @@
|
||||||
"en": "This clock also displays the temperature",
|
"en": "This clock also displays the temperature",
|
||||||
"nl": "Deze klok toont ook de temperatuur",
|
"nl": "Deze klok toont ook de temperatuur",
|
||||||
"de": "Diese Uhr zeigt auch die Temperatur an",
|
"de": "Diese Uhr zeigt auch die Temperatur an",
|
||||||
"ca": "Aquest rellotge també mostra la temperatura"
|
"ca": "Aquest rellotge també mostra la temperatura",
|
||||||
|
"fr": "Cette horloge affiche également la température",
|
||||||
|
"pl": "Ten zegar wyświetla również temperaturę"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -234,7 +264,9 @@
|
||||||
"en": "This clock does not display the temperature",
|
"en": "This clock does not display the temperature",
|
||||||
"nl": "Deze klok toont de temperatuur niet",
|
"nl": "Deze klok toont de temperatuur niet",
|
||||||
"de": "Diese Uhr zeigt nicht die Temperatur an",
|
"de": "Diese Uhr zeigt nicht die Temperatur an",
|
||||||
"ca": "Aquest rellotge no mostra la temperatura"
|
"ca": "Aquest rellotge no mostra la temperatura",
|
||||||
|
"fr": "Cette horloge n'affiche pas la température",
|
||||||
|
"pl": "Ten zegar nie wyświetla temperatury"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -244,7 +276,8 @@
|
||||||
"nl": "Deze klok toont de temperatuur waarschijnlijk niet",
|
"nl": "Deze klok toont de temperatuur waarschijnlijk niet",
|
||||||
"de": "Diese Uhr zeigt wahrscheinlich nicht die Temperatur an",
|
"de": "Diese Uhr zeigt wahrscheinlich nicht die Temperatur an",
|
||||||
"ca": "Aquest rellotge probablement no mostra la temperatura",
|
"ca": "Aquest rellotge probablement no mostra la temperatura",
|
||||||
"fr": "Cette horloge n'indique probablement pas la date"
|
"fr": "Cette horloge n'indique probablement pas la date",
|
||||||
|
"pl": "Ten zegar prawdopodobnie nie wyświetla temperatury"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -256,7 +289,9 @@
|
||||||
"en": "Does this clock also display the air pressure?",
|
"en": "Does this clock also display the air pressure?",
|
||||||
"nl": "Toont deze klok ook de luchtdruk?",
|
"nl": "Toont deze klok ook de luchtdruk?",
|
||||||
"de": "Zeigt diese Uhr auch den Luftdruck an?",
|
"de": "Zeigt diese Uhr auch den Luftdruck an?",
|
||||||
"ca": "Aquest rellotge també mostra la pressió de l'aire?"
|
"ca": "Aquest rellotge també mostra la pressió de l'aire?",
|
||||||
|
"fr": "Est-ce que cette horloge affiche également la pression atmosphérique ?",
|
||||||
|
"pl": "Czy ten zegar wyświetla ciśnienie?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -265,7 +300,9 @@
|
||||||
"en": "This clock also displays the air pressure",
|
"en": "This clock also displays the air pressure",
|
||||||
"nl": "Deze klok toont ook de luchtdruk",
|
"nl": "Deze klok toont ook de luchtdruk",
|
||||||
"de": "Diese Uhr zeigt auch den Luftdruck an",
|
"de": "Diese Uhr zeigt auch den Luftdruck an",
|
||||||
"ca": "Aquest rellotge també mostra la pressió de l'aire"
|
"ca": "Aquest rellotge també mostra la pressió de l'aire",
|
||||||
|
"fr": "Cette horloge affiche également la pression atmosphérique",
|
||||||
|
"pl": "Ten zegar wyświetla również ciśnienie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -274,7 +311,9 @@
|
||||||
"en": "This clock does not display the air pressure",
|
"en": "This clock does not display the air pressure",
|
||||||
"nl": "Deze klok toont de luchtdruk niet",
|
"nl": "Deze klok toont de luchtdruk niet",
|
||||||
"de": "Diese Uhr zeigt den Luftdruck nicht an",
|
"de": "Diese Uhr zeigt den Luftdruck nicht an",
|
||||||
"ca": "Aquest rellotge no mostra la pressió de l'aire"
|
"ca": "Aquest rellotge no mostra la pressió de l'aire",
|
||||||
|
"fr": "Cette horloge n'affiche pas la pression atmosphérique",
|
||||||
|
"pl": "Ten zegar nie wyświetla ciśnienia"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -283,7 +322,9 @@
|
||||||
"en": "This clock does probably not display the air pressure",
|
"en": "This clock does probably not display the air pressure",
|
||||||
"nl": "Deze klok toont de luchtdruk waarschijnlijk niet",
|
"nl": "Deze klok toont de luchtdruk waarschijnlijk niet",
|
||||||
"de": "Diese Uhr zeigt wahrscheinlich nicht den Luftdruck an",
|
"de": "Diese Uhr zeigt wahrscheinlich nicht den Luftdruck an",
|
||||||
"ca": "Aquest rellotge probablement no mostra la pressió de l'aire"
|
"ca": "Aquest rellotge probablement no mostra la pressió de l'aire",
|
||||||
|
"fr": "Cette horloge affiche probablement la pression atmosphérique",
|
||||||
|
"pl": "Ten zegar prawdopodobnie nie wyświetla ciśnienia"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -296,7 +337,8 @@
|
||||||
"nl": "Toont deze klok ook de luchtvochtigheid?",
|
"nl": "Toont deze klok ook de luchtvochtigheid?",
|
||||||
"de": "Zeigt diese Uhr auch die Luftfeuchtigkeit an?",
|
"de": "Zeigt diese Uhr auch die Luftfeuchtigkeit an?",
|
||||||
"ca": "Aquest rellotge també mostra la humitat?",
|
"ca": "Aquest rellotge també mostra la humitat?",
|
||||||
"fr": "Cette horloge indique-t-elle également l'humidité ?"
|
"fr": "Cette horloge indique-t-elle également l'humidité ?",
|
||||||
|
"pl": "Czy ten zegar wyświetla również wilgotność?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -306,7 +348,8 @@
|
||||||
"nl": "Deze klok toont ook de luchtvochtigheid",
|
"nl": "Deze klok toont ook de luchtvochtigheid",
|
||||||
"de": "Diese Uhr zeigt auch die Luftfeuchtigkeit an",
|
"de": "Diese Uhr zeigt auch die Luftfeuchtigkeit an",
|
||||||
"ca": "Aquest rellotge també mostra la humitat",
|
"ca": "Aquest rellotge també mostra la humitat",
|
||||||
"fr": "Cette horloge indique également l'humidité"
|
"fr": "Cette horloge indique également l'humidité",
|
||||||
|
"pl": "Ten zegar wyświetla również wilgotność"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -316,7 +359,8 @@
|
||||||
"nl": "Deze klok toont de luchtvochtigheid niet",
|
"nl": "Deze klok toont de luchtvochtigheid niet",
|
||||||
"de": "Diese Uhr zeigt nicht die Luftfeuchtigkeit an",
|
"de": "Diese Uhr zeigt nicht die Luftfeuchtigkeit an",
|
||||||
"ca": "Aquest rellotge no mostra la humitat",
|
"ca": "Aquest rellotge no mostra la humitat",
|
||||||
"fr": "Cette horloge n'indique pas l'humidité"
|
"fr": "Cette horloge n'indique pas l'humidité",
|
||||||
|
"pl": "Ten zegar nie wyświetla wilgotności"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -326,7 +370,8 @@
|
||||||
"nl": "Deze klok toont de luchtvochtigheid waarschijnlijk niet",
|
"nl": "Deze klok toont de luchtvochtigheid waarschijnlijk niet",
|
||||||
"de": "Diese Uhr zeigt wahrscheinlich nicht die Luftfeuchtigkeit an",
|
"de": "Diese Uhr zeigt wahrscheinlich nicht die Luftfeuchtigkeit an",
|
||||||
"ca": "Aquest rellotge probablement no mostra la humitat",
|
"ca": "Aquest rellotge probablement no mostra la humitat",
|
||||||
"fr": "Cette horloge n'indique probablement pas l'humidité"
|
"fr": "Cette horloge n'indique probablement pas l'humidité",
|
||||||
|
"pl": "Ten zegar prawdopodobnie nie wyświetla wilgotności"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -349,7 +394,8 @@
|
||||||
"en": "Number of faces",
|
"en": "Number of faces",
|
||||||
"nl": "Aantal klokken",
|
"nl": "Aantal klokken",
|
||||||
"de": "Anzahl der Zifferblätter",
|
"de": "Anzahl der Zifferblätter",
|
||||||
"ca": "Nombre de cares"
|
"ca": "Nombre de cares",
|
||||||
|
"fr": "Nombre de faces"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
|
@ -402,13 +448,16 @@
|
||||||
"en": "a clock",
|
"en": "a clock",
|
||||||
"nl": "een klok",
|
"nl": "een klok",
|
||||||
"de": "eine Uhr",
|
"de": "eine Uhr",
|
||||||
"ca": "un rellotge"
|
"ca": "un rellotge",
|
||||||
|
"fr": "une horloge",
|
||||||
|
"pl": "zegar"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A publicly visible clock",
|
"en": "A publicly visible clock",
|
||||||
"nl": "Een publiekelijk zichtbare klok",
|
"nl": "Een publiekelijk zichtbare klok",
|
||||||
"de": "Eine öffentlich sichtbare Uhr",
|
"de": "Eine öffentlich sichtbare Uhr",
|
||||||
"ca": "Un rellotge visible públicament"
|
"ca": "Un rellotge visible públicament",
|
||||||
|
"fr": "Une horloge visible de l'espace public"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -420,14 +469,17 @@
|
||||||
"en": "a wall-mounted clock",
|
"en": "a wall-mounted clock",
|
||||||
"nl": "een klok aan een muur",
|
"nl": "een klok aan een muur",
|
||||||
"de": "eine an der Wand montierte Uhr",
|
"de": "eine an der Wand montierte Uhr",
|
||||||
"ca": "un rellotge muntat en un paret"
|
"ca": "un rellotge muntat en un paret",
|
||||||
|
"fr": "une horloge fixée au mur",
|
||||||
|
"pl": "zegar na ścianie"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A publicly visible clock mounted on a wall",
|
"en": "A publicly visible clock mounted on a wall",
|
||||||
"nl": "Een publiekelijk zichtbare klok aan een muur",
|
"nl": "Een publiekelijk zichtbare klok aan een muur",
|
||||||
"de": "Eine öffentlich sichtbare Uhr an einer Wand",
|
"de": "Eine öffentlich sichtbare Uhr an einer Wand",
|
||||||
"ca": "Un rellotge visible públicament muntat en una paret",
|
"ca": "Un rellotge visible públicament muntat en una paret",
|
||||||
"fr": "Une horloge publique fixée sur un mur"
|
"fr": "Une horloge publique fixée sur un mur",
|
||||||
|
"pl": "Publicznie widoczny zegar zamontowany na ścianie"
|
||||||
},
|
},
|
||||||
"snapToLayer": [
|
"snapToLayer": [
|
||||||
"walls_and_buildings"
|
"walls_and_buildings"
|
||||||
|
|
|
@ -16,7 +16,8 @@
|
||||||
"de": "Übergänge für Fußgänger und Radfahrer",
|
"de": "Übergänge für Fußgänger und Radfahrer",
|
||||||
"fr": "Traversée pour piétons et cyclistes",
|
"fr": "Traversée pour piétons et cyclistes",
|
||||||
"da": "Overgange for fodgængere og cyklister",
|
"da": "Overgange for fodgængere og cyklister",
|
||||||
"es": "Cruces para peatones y ciclistas"
|
"es": "Cruces para peatones y ciclistas",
|
||||||
|
"ca": "Creuaments per a vianants i ciclistes"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
|
@ -69,7 +70,7 @@
|
||||||
"nl": "een oversteekplaats",
|
"nl": "een oversteekplaats",
|
||||||
"de": "eine Kreuzung",
|
"de": "eine Kreuzung",
|
||||||
"fr": "une traversée",
|
"fr": "une traversée",
|
||||||
"ca": "un pas de vianants",
|
"ca": "un creuament",
|
||||||
"da": "en overgang",
|
"da": "en overgang",
|
||||||
"es": "un cruce"
|
"es": "un cruce"
|
||||||
},
|
},
|
||||||
|
@ -82,7 +83,8 @@
|
||||||
"de": "Kreuzung für Fußgänger und/oder Radfahrer",
|
"de": "Kreuzung für Fußgänger und/oder Radfahrer",
|
||||||
"fr": "Traversée pour piétons et/ou cyclistes",
|
"fr": "Traversée pour piétons et/ou cyclistes",
|
||||||
"da": "Overgang for fodgængere og/eller cyklister",
|
"da": "Overgang for fodgængere og/eller cyklister",
|
||||||
"es": "Cruce para peatones y/o ciclistas"
|
"es": "Cruce para peatones y/o ciclistas",
|
||||||
|
"ca": "Creuament per a vianants i/o ciclistes"
|
||||||
},
|
},
|
||||||
"snapToLayer": [
|
"snapToLayer": [
|
||||||
"cycleways_and_roads"
|
"cycleways_and_roads"
|
||||||
|
@ -97,7 +99,8 @@
|
||||||
"de": "eine Ampel",
|
"de": "eine Ampel",
|
||||||
"fr": "une feu de signalisation",
|
"fr": "une feu de signalisation",
|
||||||
"da": "et trafiksignal",
|
"da": "et trafiksignal",
|
||||||
"es": "una señal de tráfico"
|
"es": "una señal de tráfico",
|
||||||
|
"ca": "una senyal de trànsit"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"highway=traffic_signals"
|
"highway=traffic_signals"
|
||||||
|
@ -108,7 +111,8 @@
|
||||||
"de": "Ampel an einer Straße",
|
"de": "Ampel an einer Straße",
|
||||||
"fr": "Feu de signalisation sur la voie",
|
"fr": "Feu de signalisation sur la voie",
|
||||||
"da": "Trafiksignal på en vej",
|
"da": "Trafiksignal på en vej",
|
||||||
"es": "Señal de tráfico en una carretera"
|
"es": "Señal de tráfico en una carretera",
|
||||||
|
"ca": "Senyal de trànsit en una carretera"
|
||||||
},
|
},
|
||||||
"snapToLayer": [
|
"snapToLayer": [
|
||||||
"cycleways_and_roads"
|
"cycleways_and_roads"
|
||||||
|
@ -180,7 +184,9 @@
|
||||||
"nl": "Is dit een zebrapad?",
|
"nl": "Is dit een zebrapad?",
|
||||||
"de": "Ist das ein Zebrastreifen?",
|
"de": "Ist das ein Zebrastreifen?",
|
||||||
"es": "¿Esto es un paso de cebra?",
|
"es": "¿Esto es un paso de cebra?",
|
||||||
"fr": "Est-ce un passage piéton ?"
|
"fr": "Est-ce un passage piéton ?",
|
||||||
|
"ca": "Açò és un pas de vianants?",
|
||||||
|
"pl": "Czy to jest przejście dla pieszych typu \"zebra\"?"
|
||||||
},
|
},
|
||||||
"condition": "crossing=uncontrolled",
|
"condition": "crossing=uncontrolled",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -191,7 +197,8 @@
|
||||||
"nl": "Dit is een zebrapad",
|
"nl": "Dit is een zebrapad",
|
||||||
"de": "Dies ist ein Zebrastreifen",
|
"de": "Dies ist ein Zebrastreifen",
|
||||||
"es": "Esto es un paso de cebra",
|
"es": "Esto es un paso de cebra",
|
||||||
"fr": "C'est un passage piéton"
|
"fr": "C'est un passage piéton",
|
||||||
|
"ca": "Açò és un pas de vianants"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -201,7 +208,8 @@
|
||||||
"nl": "Dit is geen zebrapad",
|
"nl": "Dit is geen zebrapad",
|
||||||
"de": "Dies ist kein Zebrastreifen",
|
"de": "Dies ist kein Zebrastreifen",
|
||||||
"es": "Esto no es un paso de cebra",
|
"es": "Esto no es un paso de cebra",
|
||||||
"fr": "Ce n'est pas un passage piéton"
|
"fr": "Ce n'est pas un passage piéton",
|
||||||
|
"ca": "Açò no és un pas de vianants"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -213,7 +221,9 @@
|
||||||
"nl": "Is deze oversteekplaats ook voor fietsers",
|
"nl": "Is deze oversteekplaats ook voor fietsers",
|
||||||
"de": "Können Radfahrer diese Kreuzung nutzen?",
|
"de": "Können Radfahrer diese Kreuzung nutzen?",
|
||||||
"da": "Er denne overgang også for cykler?",
|
"da": "Er denne overgang også for cykler?",
|
||||||
"es": "¿Este cruce también es para ciclistas?"
|
"es": "¿Este cruce también es para ciclistas?",
|
||||||
|
"ca": "Aquest creuament també és per a ciclistes?",
|
||||||
|
"fr": "Est-ce que ce passage est également pour les vélos ?"
|
||||||
},
|
},
|
||||||
"condition": "highway=crossing",
|
"condition": "highway=crossing",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -224,7 +234,9 @@
|
||||||
"nl": "Een fietser kan deze oversteekplaats gebruiken",
|
"nl": "Een fietser kan deze oversteekplaats gebruiken",
|
||||||
"de": "Radfahrer können diese Kreuzung nutzen",
|
"de": "Radfahrer können diese Kreuzung nutzen",
|
||||||
"da": "En cyklist kan benytte denne overgang",
|
"da": "En cyklist kan benytte denne overgang",
|
||||||
"es": "Un ciclista puede utilizar este cruce"
|
"es": "Un ciclista puede utilizar este cruce",
|
||||||
|
"ca": "Un ciclista pot utilitzar aquest creuament",
|
||||||
|
"fr": "Un cycliste peut utiliser ce passage"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -234,7 +246,9 @@
|
||||||
"nl": "Een fietser kan deze oversteekplaats niet gebruiken",
|
"nl": "Een fietser kan deze oversteekplaats niet gebruiken",
|
||||||
"de": "Radfahrer können diese Kreuzung nicht nutzen",
|
"de": "Radfahrer können diese Kreuzung nicht nutzen",
|
||||||
"da": "En cyklist kan ikke benytte denne overgang",
|
"da": "En cyklist kan ikke benytte denne overgang",
|
||||||
"es": "Un ciclista no puede utilizar este cruce"
|
"es": "Un ciclista no puede utilizar este cruce",
|
||||||
|
"ca": "Un ciclista no pot utilitzar aquest creuament",
|
||||||
|
"fr": "Un cycliste ne peut pas utiliser ce passage"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -246,7 +260,8 @@
|
||||||
"nl": "Heeft deze oversteekplaats een verkeerseiland in het midden?",
|
"nl": "Heeft deze oversteekplaats een verkeerseiland in het midden?",
|
||||||
"de": "Gibt es an diesem Übergang eine Verkehrsinsel?",
|
"de": "Gibt es an diesem Übergang eine Verkehrsinsel?",
|
||||||
"es": "¿Tiene una isla en el medio este cruce?",
|
"es": "¿Tiene una isla en el medio este cruce?",
|
||||||
"fr": "Est-ce que ce passage a un refuge au milieu ?"
|
"fr": "Est-ce que ce passage a un refuge au milieu ?",
|
||||||
|
"ca": "Aquest creuament té una illa al mig?"
|
||||||
},
|
},
|
||||||
"condition": "highway=crossing",
|
"condition": "highway=crossing",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -257,7 +272,8 @@
|
||||||
"nl": "Deze oversteekplaats heeft een verkeerseiland in het midden",
|
"nl": "Deze oversteekplaats heeft een verkeerseiland in het midden",
|
||||||
"de": "Der Übergang hat eine Verkehrsinsel",
|
"de": "Der Übergang hat eine Verkehrsinsel",
|
||||||
"es": "Este cruce tiene una isla en el medio",
|
"es": "Este cruce tiene una isla en el medio",
|
||||||
"fr": "Ce passage a un îlot au milieu"
|
"fr": "Ce passage a un îlot au milieu",
|
||||||
|
"ca": "Aquest creuament té una illa al mig"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -267,7 +283,8 @@
|
||||||
"nl": "Deze oversteekplaats heeft geen verkeerseiland in het midden",
|
"nl": "Deze oversteekplaats heeft geen verkeerseiland in het midden",
|
||||||
"de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern",
|
"de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern",
|
||||||
"es": "Este cruce no tiene una isla en el medio",
|
"es": "Este cruce no tiene una isla en el medio",
|
||||||
"fr": "Ce passage n'a pas d'îlot au milieu"
|
"fr": "Ce passage n'a pas d'îlot au milieu",
|
||||||
|
"ca": "Aquest creuament no té una illa al mig"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -289,8 +306,9 @@
|
||||||
"en": "This crossing has tactile paving",
|
"en": "This crossing has tactile paving",
|
||||||
"nl": "Deze oversteekplaats heeft een geleidelijn",
|
"nl": "Deze oversteekplaats heeft een geleidelijn",
|
||||||
"de": "An dieser Kreuzung gibt es ein Blindenleitsystem",
|
"de": "An dieser Kreuzung gibt es ein Blindenleitsystem",
|
||||||
"es": "Este cruce tiene pavimento táctil",
|
"es": "Este cruce tiene superficie podotáctil",
|
||||||
"fr": "Ce passage piéton a une surface podotactile"
|
"fr": "Ce passage piéton a une surface podotactile",
|
||||||
|
"ca": "Este creuament té superfície podotàctil"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -299,8 +317,9 @@
|
||||||
"en": "This crossing does not have tactile paving",
|
"en": "This crossing does not have tactile paving",
|
||||||
"nl": "Deze oversteekplaats heeft geen geleidelijn",
|
"nl": "Deze oversteekplaats heeft geen geleidelijn",
|
||||||
"de": "Diese Kreuzung hat kein Blindenleitsystem",
|
"de": "Diese Kreuzung hat kein Blindenleitsystem",
|
||||||
"es": "Este cruce no tiene pavimento táctil",
|
"es": "Este cruce no tiene superficie podotáctil",
|
||||||
"fr": "Ce passage piéton n'a pas de surface podotactile"
|
"fr": "Ce passage piéton n'a pas de surface podotactile",
|
||||||
|
"ca": "Este creuament no té superfície podotàctil"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -309,8 +328,9 @@
|
||||||
"en": "This crossing has tactile paving, but is not correct",
|
"en": "This crossing has tactile paving, but is not correct",
|
||||||
"nl": "Deze oversteekplaats heeft een geleidelijn, die incorrect is.",
|
"nl": "Deze oversteekplaats heeft een geleidelijn, die incorrect is.",
|
||||||
"de": "Diese Kreuzung hat taktile Pflasterung, ist aber nicht korrekt",
|
"de": "Diese Kreuzung hat taktile Pflasterung, ist aber nicht korrekt",
|
||||||
"es": "Este cruce tiene pavimento táctil, pero no es correcto",
|
"es": "Este cruce tiene superficie podotáctil, pero no es correcto",
|
||||||
"fr": "Ce passage piéton a une surface podotactile, mais elle n'est pas adéquate"
|
"fr": "Ce passage piéton a une surface podotactile, mais elle n'est pas adéquate",
|
||||||
|
"ca": "Este creuament té superfície podotàctil, però no correctament"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -322,7 +342,9 @@
|
||||||
"en": "Does this traffic light have a button to request green light?",
|
"en": "Does this traffic light have a button to request green light?",
|
||||||
"nl": "Heeft dit verkeerslicht een knop voor groen licht?",
|
"nl": "Heeft dit verkeerslicht een knop voor groen licht?",
|
||||||
"de": "Hat diese Ampel eine Taste, um ein grünes Signal anzufordern?",
|
"de": "Hat diese Ampel eine Taste, um ein grünes Signal anzufordern?",
|
||||||
"es": "¿Este semáforo tiene un botón para pedir luz verde?"
|
"es": "¿Este semáforo tiene un botón para pedir luz verde?",
|
||||||
|
"ca": "Aquest semàfor té un botó per a demanar la llum verda?",
|
||||||
|
"fr": "Est-ce que ce feu a un bouton pour demander le passage au vert ?"
|
||||||
},
|
},
|
||||||
"condition": {
|
"condition": {
|
||||||
"or": [
|
"or": [
|
||||||
|
@ -337,7 +359,9 @@
|
||||||
"en": "This traffic light has a button to request green light",
|
"en": "This traffic light has a button to request green light",
|
||||||
"nl": "Dit verkeerslicht heeft een knop voor groen licht",
|
"nl": "Dit verkeerslicht heeft een knop voor groen licht",
|
||||||
"de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern",
|
"de": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern",
|
||||||
"es": "Este semáforo tiene un botón para pedir luz verde"
|
"es": "Este semáforo tiene un botón para pedir luz verde",
|
||||||
|
"ca": "Aquest semàfor té un botó per a demanar la llum verda",
|
||||||
|
"fr": "Ce feu a un bouton pour demander le vert"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -346,7 +370,9 @@
|
||||||
"en": "This traffic light does not have a button to request green light",
|
"en": "This traffic light does not have a button to request green light",
|
||||||
"nl": "Dit verkeerlicht heeft geen knop voor groen licht",
|
"nl": "Dit verkeerlicht heeft geen knop voor groen licht",
|
||||||
"de": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern",
|
"de": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern",
|
||||||
"es": "Este semáforo no tiene un botón para pedir luz verde"
|
"es": "Este semáforo no tiene un botón para pedir luz verde",
|
||||||
|
"ca": "Aquest semàfor no té un botó per a demanar la llum verda",
|
||||||
|
"fr": "Ce feu n'a pas de bouton pour demander le vert"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -357,7 +383,8 @@
|
||||||
"en": "Does this traffic light have sound signals to aid crossing?",
|
"en": "Does this traffic light have sound signals to aid crossing?",
|
||||||
"de": "Gibt die Ampel akustische Signale, um das Überqueren zu erleichtern?",
|
"de": "Gibt die Ampel akustische Signale, um das Überqueren zu erleichtern?",
|
||||||
"fr": "Est-ce que le feu de signalisation a une signalisation sonore pour aider à traverser ?",
|
"fr": "Est-ce que le feu de signalisation a une signalisation sonore pour aider à traverser ?",
|
||||||
"nl": "Heeft dit verkeerslicht geluidssignalen om te helpen bij het oversteken?"
|
"nl": "Heeft dit verkeerslicht geluidssignalen om te helpen bij het oversteken?",
|
||||||
|
"ca": "Aquest semàfor té senyals sonors per facilitar el pas?"
|
||||||
},
|
},
|
||||||
"condition": "crossing=traffic_signals",
|
"condition": "crossing=traffic_signals",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -367,7 +394,8 @@
|
||||||
"en": "This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.",
|
"en": "This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.",
|
||||||
"de": "Die Ampel gibt akustische Signale, um das Auffinden und Überqueren der Kreuzung zu erleichtern.",
|
"de": "Die Ampel gibt akustische Signale, um das Auffinden und Überqueren der Kreuzung zu erleichtern.",
|
||||||
"fr": "Ce feu de signalisation a une alarme sonore pour aider à traverser, à la fois pour trouver le passage piéton, et pour traverser.",
|
"fr": "Ce feu de signalisation a une alarme sonore pour aider à traverser, à la fois pour trouver le passage piéton, et pour traverser.",
|
||||||
"nl": "Dit verkeerslicht heeft geluidssignalen om te helpen bij het oversteken, zowel voor het vinden van de oversteekplaats als voor het oversteken."
|
"nl": "Dit verkeerslicht heeft geluidssignalen om te helpen bij het oversteken, zowel voor het vinden van de oversteekplaats als voor het oversteken.",
|
||||||
|
"ca": "Aquest semàfor disposa de senyals sonors per ajudar a creuar, tant per trobar l'encreuament com per creuar."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -376,7 +404,8 @@
|
||||||
"en": "This traffic light does not have sound signals to help crossing.",
|
"en": "This traffic light does not have sound signals to help crossing.",
|
||||||
"de": "Die Ampel gibt keine akustischen Signale, um das Überqueren zu erleichtern.",
|
"de": "Die Ampel gibt keine akustischen Signale, um das Überqueren zu erleichtern.",
|
||||||
"fr": "Ce feu de signalisation n'a pas de signal sonore pour aider à traverser.",
|
"fr": "Ce feu de signalisation n'a pas de signal sonore pour aider à traverser.",
|
||||||
"nl": "Dit verkeerslicht heeft geen geluidssignalen om te helpen bij het oversteken."
|
"nl": "Dit verkeerslicht heeft geen geluidssignalen om te helpen bij het oversteken.",
|
||||||
|
"ca": "Aquest semàfor no té senyals sonores per ajudar a creuar."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -384,7 +413,9 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.",
|
"en": "This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.",
|
||||||
"de": "Die Ampel gibt ein akustisches Signal, zum Auffinden des Mastes, aber kein Signal für die Grünphase.",
|
"de": "Die Ampel gibt ein akustisches Signal, zum Auffinden des Mastes, aber kein Signal für die Grünphase.",
|
||||||
"nl": "Dit verkeerslicht heeft een geluidssignaal om de paal te vinden, maar niet om aan te geven dat oversteken veilig kan."
|
"nl": "Dit verkeerslicht heeft een geluidssignaal om de paal te vinden, maar niet om aan te geven dat oversteken veilig kan.",
|
||||||
|
"ca": "Aquest semàfor té un senyal sonor per ajudar a localitzar el pal, però cap senyal que indique que és segur creuar.",
|
||||||
|
"fr": "Ce feu a un signal sonore pour aider à situer les poteaux, mais pas de signal pour indiquer qu'on peut traverser en sécurité."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -392,7 +423,9 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.",
|
"en": "This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.",
|
||||||
"de": "Die Ampel gibt ein akustisches Signal für die Grünphase, aber kein Signal zum Auffinden des Mastes.",
|
"de": "Die Ampel gibt ein akustisches Signal für die Grünphase, aber kein Signal zum Auffinden des Mastes.",
|
||||||
"nl": "Dit verkeerslicht heeft een geluidssignaal om aan te geven dat oversteken veilig kan, maar geen signaal om de paal te vinden."
|
"nl": "Dit verkeerslicht heeft een geluidssignaal om aan te geven dat oversteken veilig kan, maar geen signaal om de paal te vinden.",
|
||||||
|
"ca": "Aquest semàfor té un senyal sonor per indicar que és segur creuar, però cap senyal que ajude a localitzar el pal.",
|
||||||
|
"fr": "Cet feu a un signal sonore pour indiquer qu'on peut traverser en sécurité, mais pas de signal pour localiser les poteaux."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -402,7 +435,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Does this traffic light have vibration signals to aid crossing? (usually located at the bottom of the crossing button)",
|
"en": "Does this traffic light have vibration signals to aid crossing? (usually located at the bottom of the crossing button)",
|
||||||
"de": "Gibt die Ampel ein Vibrationssignal, um das Überqueren zu erleichtern? (in der Regel am unteren Ende der Ampeltaste)",
|
"de": "Gibt die Ampel ein Vibrationssignal, um das Überqueren zu erleichtern? (in der Regel am unteren Ende der Ampeltaste)",
|
||||||
"nl": "Heeft dit verkeerslicht een element dat trilt om te helpen bij het oversteken? (meestal onderaan de oversteekknop geplaatst)"
|
"nl": "Heeft dit verkeerslicht een element dat trilt om te helpen bij het oversteken? (meestal onderaan de oversteekknop geplaatst)",
|
||||||
|
"fr": "Est-ce que ce feu a un signal vibrant pour aider à traverser ? (habituellement situé sous le bouton)"
|
||||||
},
|
},
|
||||||
"condition": {
|
"condition": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -416,7 +450,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The button for this traffic light has a vibration signal to indicate that it is safe to cross.",
|
"en": "The button for this traffic light has a vibration signal to indicate that it is safe to cross.",
|
||||||
"de": "Die Ampeltaste vibriert während der Grünphase.",
|
"de": "Die Ampeltaste vibriert während der Grünphase.",
|
||||||
"nl": "De knop bij dit verkeerslicht trilt om aan te geven dat men veilig kan oversteken."
|
"nl": "De knop bij dit verkeerslicht trilt om aan te geven dat men veilig kan oversteken.",
|
||||||
|
"fr": "Le bouton de ce feu vibre pour indiquer qu'on peut traverser en sécurité."
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/crossings/Vibrating_button_illustration.jpg",
|
"path": "./assets/layers/crossings/Vibrating_button_illustration.jpg",
|
||||||
|
@ -428,7 +463,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.",
|
"en": "The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.",
|
||||||
"de": "Die Ampeltaste vibriert nicht während der Grünphase.",
|
"de": "Die Ampeltaste vibriert nicht während der Grünphase.",
|
||||||
"nl": "De knop bij dit verkeerslicht kan <b>niet</b> trillen om aan te geven dat men veilig kan oversteken."
|
"nl": "De knop bij dit verkeerslicht kan <b>niet</b> trillen om aan te geven dat men veilig kan oversteken.",
|
||||||
|
"fr": "Le bouton de ce feu ne vibre pas pour indiquer qu'on peut traverser en sécurité."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -437,7 +473,8 @@
|
||||||
"id": "crossing-arrow",
|
"id": "crossing-arrow",
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Does this traffic light have an arrow pointing in the direction of crossing?",
|
"en": "Does this traffic light have an arrow pointing in the direction of crossing?",
|
||||||
"de": "Hat diese Ampel einen Pfeil, der in Richtung der Kreuzung zeigt?"
|
"de": "Hat diese Ampel einen Pfeil, der in Richtung der Kreuzung zeigt?",
|
||||||
|
"ca": "Aquest semàfor té una fletxa apuntant en la direcció del creuament?"
|
||||||
},
|
},
|
||||||
"condition": "crossing=traffic_signals",
|
"condition": "crossing=traffic_signals",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -445,14 +482,16 @@
|
||||||
"if": "traffic_signals:arrow=yes",
|
"if": "traffic_signals:arrow=yes",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This traffic light has an arrow pointing in the direction of crossing.",
|
"en": "This traffic light has an arrow pointing in the direction of crossing.",
|
||||||
"de": "Diese Ampel hat einen Pfeil, der in Richtung der Kreuzung zeigt."
|
"de": "Diese Ampel hat einen Pfeil, der in Richtung der Kreuzung zeigt.",
|
||||||
|
"ca": "Aquest semàfor té una fletxa apuntant en la direcció del creuament."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "traffic_signals:arrow=no",
|
"if": "traffic_signals:arrow=no",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This traffic light does <b>not</b> have an arrow pointing in the direction of crossing.",
|
"en": "This traffic light does <b>not</b> have an arrow pointing in the direction of crossing.",
|
||||||
"de": "Diese Ampel hat <b>keinen</b> Pfeil, der in Richtung der Kreuzung zeigt."
|
"de": "Diese Ampel hat <b>keinen</b> Pfeil, der in Richtung der Kreuzung zeigt.",
|
||||||
|
"ca": "Aquest semàfor <b>no</b> té una fletxa apuntant en la direcció del creuament."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -461,7 +500,8 @@
|
||||||
"id": "crossing-minimap",
|
"id": "crossing-minimap",
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Does this traffic light have a tactile map showing the layout of the crossing?",
|
"en": "Does this traffic light have a tactile map showing the layout of the crossing?",
|
||||||
"de": "Hat die Ampel hat eine taktile Karte, die den Verlauf der Kreuzung zeigt?"
|
"de": "Hat die Ampel hat eine taktile Karte, die den Verlauf der Kreuzung zeigt?",
|
||||||
|
"ca": "Aquest semàfor disposa d'un mapa tàctil que mostra el traçat de l'encreuament?"
|
||||||
},
|
},
|
||||||
"condition": "crossing=traffic_signals",
|
"condition": "crossing=traffic_signals",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -470,7 +510,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This traffic light has a tactile map showing the layout of the crossing.",
|
"en": "This traffic light has a tactile map showing the layout of the crossing.",
|
||||||
"de": "Die Ampel hat eine taktile Karte, die den Verlauf der Kreuzung zeigt.",
|
"de": "Die Ampel hat eine taktile Karte, die den Verlauf der Kreuzung zeigt.",
|
||||||
"nl": "Dit verkeerlicht heeft een voelkaart die de indeling van de oversteekplaats laat zien."
|
"nl": "Dit verkeerlicht heeft een voelkaart die de indeling van de oversteekplaats laat zien.",
|
||||||
|
"ca": "Aquest semàfor disposa d'un mapa tàctil que mostra el traçat de l'encreuament."
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/crossings/180px-Trairvoja_mapeto.jpg",
|
"path": "./assets/layers/crossings/180px-Trairvoja_mapeto.jpg",
|
||||||
|
@ -482,7 +523,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This traffic light does <b>not</b> have a tactile map showing the layout of the crossing.",
|
"en": "This traffic light does <b>not</b> have a tactile map showing the layout of the crossing.",
|
||||||
"de": "Die Ampel hat <b>keine</b> taktile Karte, die den Verlauf der Kreuzung zeigt.",
|
"de": "Die Ampel hat <b>keine</b> taktile Karte, die den Verlauf der Kreuzung zeigt.",
|
||||||
"nl": "Dit verkeerlicht heeft <b>geen</b> voelkaart die de indeling van de oversteekplaats laat zien."
|
"nl": "Dit verkeerlicht heeft <b>geen</b> voelkaart die de indeling van de oversteekplaats laat zien.",
|
||||||
|
"ca": "Aquest semàfor <b>no</b> disposa d'un mapa tàctil que mostra el traçat del pas."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -494,7 +536,8 @@
|
||||||
"nl": "Mag een fietser rechtsaf slaan als het licht rood is?",
|
"nl": "Mag een fietser rechtsaf slaan als het licht rood is?",
|
||||||
"de": "Dürfen Radfahrer bei roter Ampel rechts abbiegen?",
|
"de": "Dürfen Radfahrer bei roter Ampel rechts abbiegen?",
|
||||||
"es": "¿Puede girar a la derecha un ciclista cuando la luz está roja?",
|
"es": "¿Puede girar a la derecha un ciclista cuando la luz está roja?",
|
||||||
"fr": "Un cycliste peut-il tourner à droite quand le feu est rouge ?"
|
"fr": "Un cycliste peut-il tourner à droite quand le feu est rouge ?",
|
||||||
|
"ca": "Un ciclista pot girar a la dreta si el semàfor està en roig?"
|
||||||
},
|
},
|
||||||
"condition": "highway=traffic_signals",
|
"condition": "highway=traffic_signals",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -505,7 +548,8 @@
|
||||||
"nl": "Een fietser mag wel rechtsaf slaan als het licht rood is",
|
"nl": "Een fietser mag wel rechtsaf slaan als het licht rood is",
|
||||||
"de": "Ein Radfahrer kann bei roter Ampel rechts abbiegen",
|
"de": "Ein Radfahrer kann bei roter Ampel rechts abbiegen",
|
||||||
"es": "Un ciclista puede girar a la derecha si la luz está roja",
|
"es": "Un ciclista puede girar a la derecha si la luz está roja",
|
||||||
"fr": "Un cycliste peut tourner à droite si le feu est rouge"
|
"fr": "Un cycliste peut tourner à droite si le feu est rouge",
|
||||||
|
"ca": "Un ciclista pot girar a la dreta si el semàfor està en roig"
|
||||||
},
|
},
|
||||||
"hideInAnswer": "_country!=be",
|
"hideInAnswer": "_country!=be",
|
||||||
"icon": {
|
"icon": {
|
||||||
|
@ -520,7 +564,8 @@
|
||||||
"nl": "Een fietser mag wel rechtsaf slaan als het licht rood is",
|
"nl": "Een fietser mag wel rechtsaf slaan als het licht rood is",
|
||||||
"de": "Radfahrer dürfen bei roter Ampel rechts abbiegen",
|
"de": "Radfahrer dürfen bei roter Ampel rechts abbiegen",
|
||||||
"es": "Un ciclista puede girar a la derecha si la luz está roja",
|
"es": "Un ciclista puede girar a la derecha si la luz está roja",
|
||||||
"fr": "Un cycliste peut tourner à droite si le feu est rouge"
|
"fr": "Un cycliste peut tourner à droite si le feu est rouge",
|
||||||
|
"ca": "Un ciclista pot girar a la dreta si el semàfor està en roig"
|
||||||
},
|
},
|
||||||
"hideInAnswer": "_country=be"
|
"hideInAnswer": "_country=be"
|
||||||
},
|
},
|
||||||
|
@ -531,7 +576,8 @@
|
||||||
"nl": "Een fietser mag niet rechtsaf slaan als het licht rood is",
|
"nl": "Een fietser mag niet rechtsaf slaan als het licht rood is",
|
||||||
"de": "Radfahrer dürfen bei roter Ampel nicht rechts abbiegen",
|
"de": "Radfahrer dürfen bei roter Ampel nicht rechts abbiegen",
|
||||||
"es": "Un ciclista no puede girar a la derecha si la luz está roja",
|
"es": "Un ciclista no puede girar a la derecha si la luz está roja",
|
||||||
"fr": "Un cycliste ne peut pas tourner à droite si le feu est rouge"
|
"fr": "Un cycliste ne peut pas tourner à droite si le feu est rouge",
|
||||||
|
"ca": "Un ciclista no pot girar a la dreta si el semàfor està en roig"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -543,7 +589,8 @@
|
||||||
"nl": "Mag een fietser rechtdoor gaan als het licht rood is?",
|
"nl": "Mag een fietser rechtdoor gaan als het licht rood is?",
|
||||||
"de": "Dürfen Radfahrer bei roter Ampel geradeaus fahren?",
|
"de": "Dürfen Radfahrer bei roter Ampel geradeaus fahren?",
|
||||||
"es": "¿Puede ir de frente un ciclista cuando la luz está roja?",
|
"es": "¿Puede ir de frente un ciclista cuando la luz está roja?",
|
||||||
"fr": "Est-ce qu'un cycliste peut aller tout droit quand le feu est rouge ?"
|
"fr": "Est-ce qu'un cycliste peut aller tout droit quand le feu est rouge ?",
|
||||||
|
"ca": "Un ciclista pot seguir recte si el semàfor està en roig?"
|
||||||
},
|
},
|
||||||
"condition": "highway=traffic_signals",
|
"condition": "highway=traffic_signals",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -553,7 +600,8 @@
|
||||||
"en": "A cyclist can go straight on if the light is red",
|
"en": "A cyclist can go straight on if the light is red",
|
||||||
"nl": "Een fietser mag wel rechtdoor gaan als het licht rood is",
|
"nl": "Een fietser mag wel rechtdoor gaan als het licht rood is",
|
||||||
"de": "Ein Radfahrer kann bei roter Ampel geradeaus fahren",
|
"de": "Ein Radfahrer kann bei roter Ampel geradeaus fahren",
|
||||||
"es": "Un ciclista puede ir de frente si la luz está roja"
|
"es": "Un ciclista puede ir de frente si la luz está roja",
|
||||||
|
"ca": "Un ciclista pot seguir recte si el semàfor està en roig"
|
||||||
},
|
},
|
||||||
"hideInAnswer": "_country!=be",
|
"hideInAnswer": "_country!=be",
|
||||||
"icon": {
|
"icon": {
|
||||||
|
@ -567,7 +615,8 @@
|
||||||
"en": "A cyclist can go straight on if the light is red",
|
"en": "A cyclist can go straight on if the light is red",
|
||||||
"nl": "Een fietser mag wel rechtdoor gaan als het licht rood is",
|
"nl": "Een fietser mag wel rechtdoor gaan als het licht rood is",
|
||||||
"de": "Radfahrer dürfen bei roter Ampel geradeaus fahren",
|
"de": "Radfahrer dürfen bei roter Ampel geradeaus fahren",
|
||||||
"es": "Un ciclista puede ir de frente si la luz está roja"
|
"es": "Un ciclista puede ir de frente si la luz está roja",
|
||||||
|
"ca": "Un ciclista pot seguir recte si el semàfor està en roig"
|
||||||
},
|
},
|
||||||
"hideInAnswer": "_country=be"
|
"hideInAnswer": "_country=be"
|
||||||
},
|
},
|
||||||
|
@ -577,7 +626,8 @@
|
||||||
"en": "A cyclist can not go straight on if the light is red",
|
"en": "A cyclist can not go straight on if the light is red",
|
||||||
"nl": "Een fietser mag niet rechtdoor gaan als het licht rood is",
|
"nl": "Een fietser mag niet rechtdoor gaan als het licht rood is",
|
||||||
"de": "Radfahrer dürfen bei roter Ampel nicht geradeaus fahren",
|
"de": "Radfahrer dürfen bei roter Ampel nicht geradeaus fahren",
|
||||||
"es": "Un ciclista no puede ir de frente si la luz está roja"
|
"es": "Un ciclista no puede ir de frente si la luz está roja",
|
||||||
|
"ca": "Un ciclista no pot seguir recte si el semàfor està en roig"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -129,7 +129,8 @@
|
||||||
"de": "Fahrradspur",
|
"de": "Fahrradspur",
|
||||||
"fr": "Bande cyclable",
|
"fr": "Bande cyclable",
|
||||||
"ca": "Carril bici",
|
"ca": "Carril bici",
|
||||||
"es": "Carril bici"
|
"es": "Carril bici",
|
||||||
|
"pl": "Pas rowerowy"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -285,7 +286,8 @@
|
||||||
"da": "Er denne gade belyst?",
|
"da": "Er denne gade belyst?",
|
||||||
"es": "¿Esta calle está iluminada?",
|
"es": "¿Esta calle está iluminada?",
|
||||||
"fr": "Cette rue est-elle éclairée ?",
|
"fr": "Cette rue est-elle éclairée ?",
|
||||||
"ca": "Aquesta carretera està il·luminada?"
|
"ca": "Aquesta carretera està il·luminada?",
|
||||||
|
"pl": "Czy ta ulica jest oświetlona?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -295,7 +297,8 @@
|
||||||
"nl": "Deze weg is verlicht",
|
"nl": "Deze weg is verlicht",
|
||||||
"de": "Diese Straße ist beleuchtet",
|
"de": "Diese Straße ist beleuchtet",
|
||||||
"es": "La calle está iluminada",
|
"es": "La calle está iluminada",
|
||||||
"fr": "Cette rue est éclairée"
|
"fr": "Cette rue est éclairée",
|
||||||
|
"pl": "Ta ulica jest oświetlona"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -307,7 +310,8 @@
|
||||||
"da": "Denne vej er ikke belyst",
|
"da": "Denne vej er ikke belyst",
|
||||||
"es": "Esta carretera no está iluminada",
|
"es": "Esta carretera no está iluminada",
|
||||||
"fr": "Cette rue n'est pas éclairée",
|
"fr": "Cette rue n'est pas éclairée",
|
||||||
"ca": "Aquesta carretera no està il·luminada"
|
"ca": "Aquesta carretera no està il·luminada",
|
||||||
|
"pl": "Ta droga nie jest oświetlona"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -319,7 +323,8 @@
|
||||||
"da": "Denne vej er belyst om natten",
|
"da": "Denne vej er belyst om natten",
|
||||||
"es": "Esta carretera está iluminada por la noche",
|
"es": "Esta carretera está iluminada por la noche",
|
||||||
"fr": "Cette route est éclairée la nuit",
|
"fr": "Cette route est éclairée la nuit",
|
||||||
"ca": "Aquesta carretera està il·luminada per la nit"
|
"ca": "Aquesta carretera està il·luminada per la nit",
|
||||||
|
"pl": "Ta droga jest oświetlona w nocy"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -332,7 +337,8 @@
|
||||||
"da": "Denne vej er belyst døgnet rundt",
|
"da": "Denne vej er belyst døgnet rundt",
|
||||||
"es": "Esta carretera está iluminada 24/7",
|
"es": "Esta carretera está iluminada 24/7",
|
||||||
"fr": "Cette route est éclairée 24h/24 et 7j/7",
|
"fr": "Cette route est éclairée 24h/24 et 7j/7",
|
||||||
"ca": "Aquesta carretera està il·luminada 24/7"
|
"ca": "Aquesta carretera està il·luminada 24/7",
|
||||||
|
"pl": "Ta droga jest oświetlona 24/7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -404,7 +410,8 @@
|
||||||
"id": "Kecepatan maksimum di jalan ini adalah {maxspeed} km/jam",
|
"id": "Kecepatan maksimum di jalan ini adalah {maxspeed} km/jam",
|
||||||
"es": "La velocidad máxima en esta carretera es de {maxspeed} km/h",
|
"es": "La velocidad máxima en esta carretera es de {maxspeed} km/h",
|
||||||
"fr": "La vitesse maximum dans cette rue est de {maxspeed} km/h",
|
"fr": "La vitesse maximum dans cette rue est de {maxspeed} km/h",
|
||||||
"ca": "La velocitat màxima a aquesta carretera és {maxspeed} km/h"
|
"ca": "La velocitat màxima a aquesta carretera és {maxspeed} km/h",
|
||||||
|
"pl": "Maksymalna prędkość na tej drodze to {maxspeed} km/h"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "maxspeed",
|
"key": "maxspeed",
|
||||||
|
@ -425,7 +432,8 @@
|
||||||
"nl": "De maximumsnelheid is 20 km/u",
|
"nl": "De maximumsnelheid is 20 km/u",
|
||||||
"de": "Die Höchstgeschwindigkeit ist 20 km/h",
|
"de": "Die Höchstgeschwindigkeit ist 20 km/h",
|
||||||
"es": "La velocidad máxima es de 20km/h",
|
"es": "La velocidad máxima es de 20km/h",
|
||||||
"fr": "La vitesse maximum est de 20 km/h"
|
"fr": "La vitesse maximum est de 20 km/h",
|
||||||
|
"pl": "Maksymalna prędkość tutaj to 20 km/h"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -435,7 +443,8 @@
|
||||||
"nl": "De maximumsnelheid is 30 km/u",
|
"nl": "De maximumsnelheid is 30 km/u",
|
||||||
"de": "Die Höchstgeschwindigkeit ist 30 km/h",
|
"de": "Die Höchstgeschwindigkeit ist 30 km/h",
|
||||||
"es": "La velocidad máxima es de 30km/h",
|
"es": "La velocidad máxima es de 30km/h",
|
||||||
"fr": "La vitesse maximum est de 30 km/h"
|
"fr": "La vitesse maximum est de 30 km/h",
|
||||||
|
"pl": "Maksymalna prędkość tutaj to 30 km/h"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -445,7 +454,8 @@
|
||||||
"nl": "De maximumsnelheid is 50 km/u",
|
"nl": "De maximumsnelheid is 50 km/u",
|
||||||
"de": "Die Höchstgeschwindigkeit ist 50 km/h",
|
"de": "Die Höchstgeschwindigkeit ist 50 km/h",
|
||||||
"es": "La velocidad máxima es de 50km/h",
|
"es": "La velocidad máxima es de 50km/h",
|
||||||
"fr": "La vitesse maximum est de 50 km/h"
|
"fr": "La vitesse maximum est de 50 km/h",
|
||||||
|
"pl": "Maksymalna prędkość tutaj to 50 km/h"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -456,7 +466,8 @@
|
||||||
"de": "Die Höchstgeschwindigkeit ist 70 km/h",
|
"de": "Die Höchstgeschwindigkeit ist 70 km/h",
|
||||||
"id": "Kecepatan maksimum 70 km/jam",
|
"id": "Kecepatan maksimum 70 km/jam",
|
||||||
"es": "La velocidad máxima es de 70km/h",
|
"es": "La velocidad máxima es de 70km/h",
|
||||||
"fr": "La vitesse maximum est de 70 km/h"
|
"fr": "La vitesse maximum est de 70 km/h",
|
||||||
|
"pl": "Maksymalna prędkość tutaj to 70 km/h"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -468,7 +479,8 @@
|
||||||
"id": "Kecepatan maksimum 90 km/jam",
|
"id": "Kecepatan maksimum 90 km/jam",
|
||||||
"es": "La velocidad máxima es de 90km/h",
|
"es": "La velocidad máxima es de 90km/h",
|
||||||
"fr": "La vitesse maximum est de 90 km/h",
|
"fr": "La vitesse maximum est de 90 km/h",
|
||||||
"ca": "La velocitat màxima és de 90km/h"
|
"ca": "La velocitat màxima és de 90km/h",
|
||||||
|
"pl": "Maksymalna prędkość tutaj to 90 km/h"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -479,7 +491,8 @@
|
||||||
"id": "Berapa kecepatan maksimum di jalan ini?",
|
"id": "Berapa kecepatan maksimum di jalan ini?",
|
||||||
"es": "¿Cual es la velocidad máxima en esta calle?",
|
"es": "¿Cual es la velocidad máxima en esta calle?",
|
||||||
"fr": "Quelle est la vitesse maximum dans cette rue ?",
|
"fr": "Quelle est la vitesse maximum dans cette rue ?",
|
||||||
"ca": "Quina és la velocitat màxima a aquest carrer?"
|
"ca": "Quina és la velocitat màxima a aquest carrer?",
|
||||||
|
"pl": "Jaka jest maksymalna prędkość na tej ulicy?"
|
||||||
},
|
},
|
||||||
"id": "Maxspeed (for road)"
|
"id": "Maxspeed (for road)"
|
||||||
},
|
},
|
||||||
|
|
|
@ -39,7 +39,8 @@
|
||||||
"de": "Defibrillator",
|
"de": "Defibrillator",
|
||||||
"it": "Defibrillatore",
|
"it": "Defibrillatore",
|
||||||
"ru": "Дефибриллятор",
|
"ru": "Дефибриллятор",
|
||||||
"sl": "Defibrilator"
|
"sl": "Defibrilator",
|
||||||
|
"pl": "Defibrylator"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"presets": [
|
"presets": [
|
||||||
|
@ -54,7 +55,8 @@
|
||||||
"it": "una defibrillatore",
|
"it": "una defibrillatore",
|
||||||
"ru": "Дефибриллятор",
|
"ru": "Дефибриллятор",
|
||||||
"sl": "Defibrilator",
|
"sl": "Defibrilator",
|
||||||
"da": "en hjertestarter"
|
"da": "en hjertestarter",
|
||||||
|
"pl": "defibrylator"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"emergency=defibrillator"
|
"emergency=defibrillator"
|
||||||
|
@ -68,7 +70,8 @@
|
||||||
"da": "en hjertestarter monteret på en væg",
|
"da": "en hjertestarter monteret på en væg",
|
||||||
"de": "einen wandseitig befestigten Defibrillator",
|
"de": "einen wandseitig befestigten Defibrillator",
|
||||||
"es": "un desfibrilador montado en una pared",
|
"es": "un desfibrilador montado en una pared",
|
||||||
"ca": "un desfibril·lador muntat en la paret"
|
"ca": "un desfibril·lador muntat en la paret",
|
||||||
|
"pl": "defibrylator na ścianie"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"emergency=defibrillator"
|
"emergency=defibrillator"
|
||||||
|
@ -91,7 +94,8 @@
|
||||||
"nl": "Hangt deze defibrillator binnen of buiten?",
|
"nl": "Hangt deze defibrillator binnen of buiten?",
|
||||||
"de": "Befindet sich der Defibrillator in einem Gebäude?",
|
"de": "Befindet sich der Defibrillator in einem Gebäude?",
|
||||||
"it": "Questo defibrillatore si trova all’interno?",
|
"it": "Questo defibrillatore si trova all’interno?",
|
||||||
"sl": "Ali se ta defibrilator nahaja znotraj?"
|
"sl": "Ali se ta defibrilator nahaja znotraj?",
|
||||||
|
"pl": "Czy ten defibrylator znajduje się wewnątrz budynku?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -104,7 +108,8 @@
|
||||||
"nl": "Deze defibrillator bevindt zich in een gebouw",
|
"nl": "Deze defibrillator bevindt zich in een gebouw",
|
||||||
"de": "Der Defibrillator befindet sich in einem Gebäude",
|
"de": "Der Defibrillator befindet sich in einem Gebäude",
|
||||||
"it": "Questo defibrillatore si trova all’interno",
|
"it": "Questo defibrillatore si trova all’interno",
|
||||||
"sl": "Defibrilator se nahaja znotraj"
|
"sl": "Defibrilator se nahaja znotraj",
|
||||||
|
"pl": "Ten defibrylator jest wewnątrz budynku"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -117,7 +122,8 @@
|
||||||
"nl": "Deze defibrillator hangt buiten",
|
"nl": "Deze defibrillator hangt buiten",
|
||||||
"de": "Der Defibrillator befindet sich im Freien",
|
"de": "Der Defibrillator befindet sich im Freien",
|
||||||
"it": "Questo defibrillatore si trova all’esterno",
|
"it": "Questo defibrillatore si trova all’esterno",
|
||||||
"sl": "Defibrilator se nahaja zunaj"
|
"sl": "Defibrilator se nahaja zunaj",
|
||||||
|
"pl": "Ten defibrylator jest na dworze"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -132,7 +138,8 @@
|
||||||
"de": "Ist der Defibrillator frei zugänglich?",
|
"de": "Ist der Defibrillator frei zugänglich?",
|
||||||
"it": "Questo defibrillatore è liberamente accessibile?",
|
"it": "Questo defibrillatore è liberamente accessibile?",
|
||||||
"sl": "Ali je ta defibrilator prosto dostopen?",
|
"sl": "Ali je ta defibrilator prosto dostopen?",
|
||||||
"da": "Er denne hjertestarter frit tilgængelig?"
|
"da": "Er denne hjertestarter frit tilgængelig?",
|
||||||
|
"pl": "Czy ten defibrylator jest swobodnie dostępny?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "Access is {access}",
|
"en": "Access is {access}",
|
||||||
|
@ -163,7 +170,8 @@
|
||||||
"it": "Pubblicamente accessibile",
|
"it": "Pubblicamente accessibile",
|
||||||
"ru": "Общедоступный",
|
"ru": "Общедоступный",
|
||||||
"sl": "Javno dostopen",
|
"sl": "Javno dostopen",
|
||||||
"da": "Offentligt tilgængelig"
|
"da": "Offentligt tilgængelig",
|
||||||
|
"pl": "Dostępny publicznie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -178,7 +186,8 @@
|
||||||
"it": "Pubblicamente accessibile",
|
"it": "Pubblicamente accessibile",
|
||||||
"ru": "Общедоступный",
|
"ru": "Общедоступный",
|
||||||
"sl": "Javno dostopen",
|
"sl": "Javno dostopen",
|
||||||
"da": "Offentligt tilgængelig"
|
"da": "Offentligt tilgængelig",
|
||||||
|
"pl": "Dostępny publicznie"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -193,7 +202,8 @@
|
||||||
"de": "Der Defibrillator ist nur für Kunden zugänglich",
|
"de": "Der Defibrillator ist nur für Kunden zugänglich",
|
||||||
"it": "Accessibile solo ai clienti",
|
"it": "Accessibile solo ai clienti",
|
||||||
"ru": "Доступно только для клиентов",
|
"ru": "Доступно только для клиентов",
|
||||||
"sl": "Dostopen samo strankam"
|
"sl": "Dostopen samo strankam",
|
||||||
|
"pl": "Dostępny tylko dla klientów"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -206,7 +216,8 @@
|
||||||
"nl": "Niet toegankelijk voor het publiek (bv. enkel voor personeel, de eigenaar, …)",
|
"nl": "Niet toegankelijk voor het publiek (bv. enkel voor personeel, de eigenaar, …)",
|
||||||
"de": "Der Defibrillator ist nicht öffentlich zugänglich (z.B. nur für Personal, Eigentümer, …)",
|
"de": "Der Defibrillator ist nicht öffentlich zugänglich (z.B. nur für Personal, Eigentümer, …)",
|
||||||
"it": "Non accessibile al pubblico (ad esempio riservato al personale, ai proprietari, etc.)",
|
"it": "Non accessibile al pubblico (ad esempio riservato al personale, ai proprietari, etc.)",
|
||||||
"sl": "Ni dostopen splošni javnosti (npr. samo za osebje, za lastnike, ...)"
|
"sl": "Ni dostopen splošni javnosti (npr. samo za osebje, za lastnike, ...)",
|
||||||
|
"pl": "Niedostępny publicznie (np. dostępny tylko dla personelu, właścicieli, ...)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -219,7 +230,8 @@
|
||||||
"de": "Der Defibrillator ist nicht zugänglich, möglicherweise nur für betriebliche Nutzung",
|
"de": "Der Defibrillator ist nicht zugänglich, möglicherweise nur für betriebliche Nutzung",
|
||||||
"sl": "Ni dostopen, morda samo za profesionalno rabo",
|
"sl": "Ni dostopen, morda samo za profesionalno rabo",
|
||||||
"es": "No accesible, posiblemente solo para el uso profesional",
|
"es": "No accesible, posiblemente solo para el uso profesional",
|
||||||
"ca": "No accessible, posiblemente només d'ús profesional"
|
"ca": "No accessible, posiblemente només d'ús profesional",
|
||||||
|
"pl": "Niedostępny, być może tylko do profesjonalnego użytku"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -234,7 +246,8 @@
|
||||||
"de": "Ist dies ein normaler automatischer Defibrillator oder ein manueller Defibrillator nur für Profis?",
|
"de": "Ist dies ein normaler automatischer Defibrillator oder ein manueller Defibrillator nur für Profis?",
|
||||||
"sl": "Ali je to navaden avtomatski defibrilator ali ročni defibrilator namenjen poklicnim reševalcem?",
|
"sl": "Ali je to navaden avtomatski defibrilator ali ročni defibrilator namenjen poklicnim reševalcem?",
|
||||||
"es": "¿Este es un desfibrilador automático normal o un desfibrilador manual solo para profesionales?",
|
"es": "¿Este es un desfibrilador automático normal o un desfibrilador manual solo para profesionales?",
|
||||||
"ca": "És un desfibril·lador automàtic normal o un desfibril·lador manual només per a professionals?"
|
"ca": "És un desfibril·lador automàtic normal o un desfibril·lador manual només per a professionals?",
|
||||||
|
"pl": "Czy to jest zwykły automatyczny defibrylator czy ręczny defibrylator tylko dla profesjonalistów?"
|
||||||
},
|
},
|
||||||
"condition": {
|
"condition": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -252,7 +265,8 @@
|
||||||
"de": "Es gibt keine Informationen über den Gerätetyp",
|
"de": "Es gibt keine Informationen über den Gerätetyp",
|
||||||
"sl": "Ni informacij o vrsti naprave",
|
"sl": "Ni informacij o vrsti naprave",
|
||||||
"es": "No hay información sobre el tipo de dispositivo",
|
"es": "No hay información sobre el tipo de dispositivo",
|
||||||
"ca": "No hi ha informació sobre el tipus de dispositiu"
|
"ca": "No hi ha informació sobre el tipus de dispositiu",
|
||||||
|
"pl": "Nie ma informacji o rodzaju urządzenia"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -267,7 +281,8 @@
|
||||||
"sl": "To je ročni defibrilator za poklicne reševalce",
|
"sl": "To je ročni defibrilator za poklicne reševalce",
|
||||||
"da": "Dette er en manuel hjertestarter til professionelle",
|
"da": "Dette er en manuel hjertestarter til professionelle",
|
||||||
"es": "Este es un desfibrilador manual para profesionales",
|
"es": "Este es un desfibrilador manual para profesionales",
|
||||||
"ca": "Aquest és un desfibril·lador manual per a professionals"
|
"ca": "Aquest és un desfibril·lador manual per a professionals",
|
||||||
|
"pl": "To jest ręczny defibrylator dla profesjonalistów"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -282,7 +297,8 @@
|
||||||
"sl": "To je normalen avtomatski defibrilator",
|
"sl": "To je normalen avtomatski defibrilator",
|
||||||
"da": "Dette er en normal automatisk hjertestarter",
|
"da": "Dette er en normal automatisk hjertestarter",
|
||||||
"es": "Este es un desfibrilador automático normal",
|
"es": "Este es un desfibrilador automático normal",
|
||||||
"ca": "Aquest és un desfibril·lador automàtic normal"
|
"ca": "Aquest és un desfibril·lador automàtic normal",
|
||||||
|
"pl": "To jest zwykły automatyczny defibrylator"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -294,7 +310,8 @@
|
||||||
"da": "Dette er en særlig type hjertestarter: {defibrillator}",
|
"da": "Dette er en særlig type hjertestarter: {defibrillator}",
|
||||||
"de": "Dies ist eine besondere Art von Defibrillator: {defibrillator}",
|
"de": "Dies ist eine besondere Art von Defibrillator: {defibrillator}",
|
||||||
"es": "Este es un tipo de desfibrilador especial: {defibrillator}",
|
"es": "Este es un tipo de desfibrilador especial: {defibrillator}",
|
||||||
"ca": "Aquest és un tipus especial de desfibril·lador: {defibrillator}"
|
"ca": "Aquest és un tipus especial de desfibril·lador: {defibrillator}",
|
||||||
|
"pl": "To jest specjalny rodzaj defibrylatora: {defibrillator}"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -310,7 +327,8 @@
|
||||||
"nl": "Op welke verdieping bevindt deze defibrillator zich?",
|
"nl": "Op welke verdieping bevindt deze defibrillator zich?",
|
||||||
"de": "Auf welcher Etage befindet sich der Defibrillator?",
|
"de": "Auf welcher Etage befindet sich der Defibrillator?",
|
||||||
"it": "A che piano si trova questo defibrillatore?",
|
"it": "A che piano si trova questo defibrillatore?",
|
||||||
"sl": "V katerem nadstropju je defibrilator?"
|
"sl": "V katerem nadstropju je defibrilator?",
|
||||||
|
"pl": "Na którym piętrze jest ten defibrylator?"
|
||||||
},
|
},
|
||||||
"condition": {
|
"condition": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -329,7 +347,8 @@
|
||||||
"nl": "De defibrillator bevindt zicht op verdieping {level}",
|
"nl": "De defibrillator bevindt zicht op verdieping {level}",
|
||||||
"de": "Dieser Defibrallator befindet sich im {level}. Stockwerk",
|
"de": "Dieser Defibrallator befindet sich im {level}. Stockwerk",
|
||||||
"it": "Questo defibrillatore è al piano {level}",
|
"it": "Questo defibrillatore è al piano {level}",
|
||||||
"sl": "Ta defibrilator je v {level}. nadstropju"
|
"sl": "Ta defibrilator je v {level}. nadstropju",
|
||||||
|
"pl": "Ten defibrylator jest na piętrze {level}"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -342,7 +361,8 @@
|
||||||
"de": "Der Defibrillator befindet sich im <b>Erdgeschoss</b>",
|
"de": "Der Defibrillator befindet sich im <b>Erdgeschoss</b>",
|
||||||
"sl": "Ta defibrilator je v <b>pritličju</b>",
|
"sl": "Ta defibrilator je v <b>pritličju</b>",
|
||||||
"es": "Este desfibrilador se encuentra en la <b>planta baja</b>",
|
"es": "Este desfibrilador se encuentra en la <b>planta baja</b>",
|
||||||
"ca": "Aquest desfribil·lador està a la <b>planta baixa</b>"
|
"ca": "Aquest desfribil·lador està a la <b>planta baixa</b>",
|
||||||
|
"pl": "Ten defibrylator jest na <b>parterze</b>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -355,7 +375,8 @@
|
||||||
"de": "Der Defibrillator befindet sich in der <b>ersten Etage</b>",
|
"de": "Der Defibrillator befindet sich in der <b>ersten Etage</b>",
|
||||||
"sl": "Ta defibrilator je v <b>prvem nadstropju</b>",
|
"sl": "Ta defibrilator je v <b>prvem nadstropju</b>",
|
||||||
"es": "Este desfibrilador se encuentra en la <b>primera planta</b>",
|
"es": "Este desfibrilador se encuentra en la <b>primera planta</b>",
|
||||||
"ca": "Aquest desfribil·lador està a la <b>primera planta</b>"
|
"ca": "Aquest desfribil·lador està a la <b>primera planta</b>",
|
||||||
|
"pl": "Ten defibrylator jest na <b>pierwszym piętrze</b>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -370,7 +391,8 @@
|
||||||
"de": "<i>Zusätzliche Informationen über den Standort (in der Landessprache):</i><br/>{defibrillator:location}",
|
"de": "<i>Zusätzliche Informationen über den Standort (in der Landessprache):</i><br/>{defibrillator:location}",
|
||||||
"sl": "<i>Dodatne informacije o lokaciji (v lokalnem jeziku):</i><br/>{defibrillator:location}",
|
"sl": "<i>Dodatne informacije o lokaciji (v lokalnem jeziku):</i><br/>{defibrillator:location}",
|
||||||
"es": "<i>Información a mayores sobre la localización (en el idioma local):</i><br/>{defibrillator:location}",
|
"es": "<i>Información a mayores sobre la localización (en el idioma local):</i><br/>{defibrillator:location}",
|
||||||
"ca": "<i>Informació extra sobre la localització (en la llengua local):</i><br/> {defibrillator:location}"
|
"ca": "<i>Informació extra sobre la localització (en la llengua local):</i><br/> {defibrillator:location}",
|
||||||
|
"pl": "<i>Dodatkowe informacje o lokalizacji (w lokalnym języku):</i><br/>{defibrillator:location}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Please give some explanation on where the defibrillator can be found (in the local language)",
|
"en": "Please give some explanation on where the defibrillator can be found (in the local language)",
|
||||||
|
@ -380,7 +402,8 @@
|
||||||
"nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in de plaatselijke taal)",
|
"nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in de plaatselijke taal)",
|
||||||
"de": "Bitte geben Sie einen Hinweis, wo genau der Defibrillator zu finden ist (in lokaler Sprache)",
|
"de": "Bitte geben Sie einen Hinweis, wo genau der Defibrillator zu finden ist (in lokaler Sprache)",
|
||||||
"it": "Indica più precisamente dove si trova il defibrillatore (in lingua locale)",
|
"it": "Indica più precisamente dove si trova il defibrillatore (in lingua locale)",
|
||||||
"sl": "Prosimo, opišite kje se nahaja defibrilator (v lokalnem jeziku)"
|
"sl": "Prosimo, opišite kje se nahaja defibrilator (v lokalnem jeziku)",
|
||||||
|
"pl": "Proszę podaj opis gdzie znajduje się defibrylator (w lokalnym języku)"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
@ -397,7 +420,8 @@
|
||||||
"de": "<i>Zusätzliche Informationen über den Standort (auf Englisch):</i><br/>{defibrillator:location:en}",
|
"de": "<i>Zusätzliche Informationen über den Standort (auf Englisch):</i><br/>{defibrillator:location:en}",
|
||||||
"sl": "<i>Dodatne informacije o lokaciji (v Angleščini):</i><br/>{defibrillator:location:en}",
|
"sl": "<i>Dodatne informacije o lokaciji (v Angleščini):</i><br/>{defibrillator:location:en}",
|
||||||
"es": "<i>Información a mayores sobre la localización (en Inglés):</i><br/>{defibrillator:location:en}",
|
"es": "<i>Información a mayores sobre la localización (en Inglés):</i><br/>{defibrillator:location:en}",
|
||||||
"ca": "<i>Informació addicional sobre la ubicació (en anglès):</i><br/>{defibrillator:location:en}"
|
"ca": "<i>Informació addicional sobre la ubicació (en anglès):</i><br/>{defibrillator:location:en}",
|
||||||
|
"pl": "<i>Dodatkowe informacje o lokalizacji (po angielsku):</i><br/>{defibrillator:location:en}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Please give some explanation on where the defibrillator can be found (in English)",
|
"en": "Please give some explanation on where the defibrillator can be found (in English)",
|
||||||
|
@ -407,7 +431,8 @@
|
||||||
"nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Engels)",
|
"nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Engels)",
|
||||||
"de": "Bitte geben Sie einen Hinweis, wo der Defibrillator zu finden ist (auf Englisch)",
|
"de": "Bitte geben Sie einen Hinweis, wo der Defibrillator zu finden ist (auf Englisch)",
|
||||||
"it": "Indica più precisamente dove si trova il defibrillatore (in inglese)",
|
"it": "Indica più precisamente dove si trova il defibrillatore (in inglese)",
|
||||||
"sl": "Prosimo, opišite kje se nahaja defibrilator (v Angleščini)"
|
"sl": "Prosimo, opišite kje se nahaja defibrilator (v Angleščini)",
|
||||||
|
"pl": "Proszę podaj opis gdzie znajduje się defibrylator (po angielsku)"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
@ -424,7 +449,8 @@
|
||||||
"de": "<i>Zusätzliche Informationen zum Standort (auf Französisch):</i><br/>{defibrillator:location:fr}",
|
"de": "<i>Zusätzliche Informationen zum Standort (auf Französisch):</i><br/>{defibrillator:location:fr}",
|
||||||
"sl": "<i>Dodatne informacije o lokaciji (v Francoščini):</i><br/>{defibrillator:location:fr}",
|
"sl": "<i>Dodatne informacije o lokaciji (v Francoščini):</i><br/>{defibrillator:location:fr}",
|
||||||
"es": "<i>Información a mayores sobre la localización (en Francés):</i><br/>{defibrillator:location:fr}",
|
"es": "<i>Información a mayores sobre la localización (en Francés):</i><br/>{defibrillator:location:fr}",
|
||||||
"ca": "<i>Informació addicional sobre la ubicació (en francès):</i><br/>{defibrillator:location:fr}"
|
"ca": "<i>Informació addicional sobre la ubicació (en francès):</i><br/>{defibrillator:location:fr}",
|
||||||
|
"pl": "<i>Dodatkowe informacje o lokalizacji (po francusku):</i><br/>{defibrillator:location:fr}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Please give some explanation on where the defibrillator can be found (in French)",
|
"en": "Please give some explanation on where the defibrillator can be found (in French)",
|
||||||
|
@ -434,7 +460,8 @@
|
||||||
"nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Frans)",
|
"nl": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Frans)",
|
||||||
"de": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (auf Französisch)",
|
"de": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (auf Französisch)",
|
||||||
"it": "Indica più precisamente dove si trova il defibrillatore (in francese)",
|
"it": "Indica più precisamente dove si trova il defibrillatore (in francese)",
|
||||||
"sl": "Prosimo, opišite kje se nahaja defibrilator (v Francoščini)"
|
"sl": "Prosimo, opišite kje se nahaja defibrilator (v Francoščini)",
|
||||||
|
"pl": "Proszę podaj opis gdzie znajduje się defibrylator (po francusku)"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
@ -452,7 +479,8 @@
|
||||||
"de": "Offizielle Identifikationsnummer des Geräts: <i>{ref}</i>",
|
"de": "Offizielle Identifikationsnummer des Geräts: <i>{ref}</i>",
|
||||||
"sl": "Uradna identifikacijska številka te naprave: <i>{ref}</i>",
|
"sl": "Uradna identifikacijska številka te naprave: <i>{ref}</i>",
|
||||||
"es": "Número de identificación oficial del dispositivo: <i>{ref}</i>",
|
"es": "Número de identificación oficial del dispositivo: <i>{ref}</i>",
|
||||||
"ca": "Número d'identificació oficial del dispositiu: <i>{ref}</i>"
|
"ca": "Número d'identificació oficial del dispositiu: <i>{ref}</i>",
|
||||||
|
"pl": "Oficjalny numer identyfikacyjny urządzenia: <i>{ref}</i>"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the official identification number of the device? (if visible on device)",
|
"en": "What is the official identification number of the device? (if visible on device)",
|
||||||
|
@ -533,7 +561,9 @@
|
||||||
"ru": "В какое время доступен этот дефибриллятор?",
|
"ru": "В какое время доступен этот дефибриллятор?",
|
||||||
"de": "Zu welchen Zeiten ist der Defibrillator verfügbar?",
|
"de": "Zu welchen Zeiten ist der Defibrillator verfügbar?",
|
||||||
"sl": "Ob katerih urah je ta defibrilator na voljo?",
|
"sl": "Ob katerih urah je ta defibrilator na voljo?",
|
||||||
"es": "¿A qué horas está disponible este desfibrilador?"
|
"es": "¿A qué horas está disponible este desfibrilador?",
|
||||||
|
"ca": "En quins horaris està disponible aquest desfibril·lador?",
|
||||||
|
"pl": "W jakich godzinach dostępny jest ten defibrylator?"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -548,7 +578,8 @@
|
||||||
"id": "Informasi tambahan: {description}",
|
"id": "Informasi tambahan: {description}",
|
||||||
"sl": "Dodatne informacije: {description}",
|
"sl": "Dodatne informacije: {description}",
|
||||||
"es": "Información adicional: {description}",
|
"es": "Información adicional: {description}",
|
||||||
"ca": "Informació addicional: {description}"
|
"ca": "Informació addicional: {description}",
|
||||||
|
"pl": "Dodatkowe informacje: {description}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Is there any useful information for users that you haven't been able to describe above? (leave blank if no)",
|
"en": "Is there any useful information for users that you haven't been able to describe above? (leave blank if no)",
|
||||||
|
@ -603,7 +634,8 @@
|
||||||
"de": "Heute überprüft!",
|
"de": "Heute überprüft!",
|
||||||
"sl": "Preverjeno danes!",
|
"sl": "Preverjeno danes!",
|
||||||
"ca": "Comprovat avui!",
|
"ca": "Comprovat avui!",
|
||||||
"es": "¡Comprobado hoy!"
|
"es": "¡Comprobado hoy!",
|
||||||
|
"pl": "Sprawdzone dzisiaj!"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -619,7 +651,8 @@
|
||||||
"ru": "Дополнительная информация для экспертов OpenStreetMap: {fixme}",
|
"ru": "Дополнительная информация для экспертов OpenStreetMap: {fixme}",
|
||||||
"sl": "Dodatne informacije za OpenStreetMap strokovnjake: {fixme}",
|
"sl": "Dodatne informacije za OpenStreetMap strokovnjake: {fixme}",
|
||||||
"es": "Información extra para expertos en OpenStreetMap: {fixme}",
|
"es": "Información extra para expertos en OpenStreetMap: {fixme}",
|
||||||
"ca": "Informació addicional per als experts en OpenStreetMap: {fixme}"
|
"ca": "Informació addicional per als experts en OpenStreetMap: {fixme}",
|
||||||
|
"pl": "Więcej informacji dla doświadczonych użytkowników OpenStreetMap: {fixme}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)",
|
"en": "Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)",
|
||||||
|
|
|
@ -5,12 +5,14 @@
|
||||||
"nl": "Tandarts",
|
"nl": "Tandarts",
|
||||||
"de": "Zahnärzte",
|
"de": "Zahnärzte",
|
||||||
"es": "Dentista",
|
"es": "Dentista",
|
||||||
"ca": "Dentista"
|
"ca": "Dentista",
|
||||||
|
"pl": "Dentysta"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "This layer shows dentist offices",
|
"en": "This layer shows dentist offices",
|
||||||
"de": "Diese Ebene zeigt Zahnarztpraxen",
|
"de": "Diese Ebene zeigt Zahnarztpraxen",
|
||||||
"nl": "Deze laag toont tandartsen"
|
"nl": "Deze laag toont tandartsen",
|
||||||
|
"pl": "Ta warstwa pokazuje gabinety dentystyczne"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": "amenity=dentist"
|
"osmTags": "amenity=dentist"
|
||||||
|
@ -35,13 +37,15 @@
|
||||||
"en": "What is the name of this dentist?",
|
"en": "What is the name of this dentist?",
|
||||||
"de": "Wie lautet der Name dieses Zahnarztes?",
|
"de": "Wie lautet der Name dieses Zahnarztes?",
|
||||||
"nl": "Hoe heet deze tandarts?",
|
"nl": "Hoe heet deze tandarts?",
|
||||||
"ca": "Com s'anomena aquest dentista?"
|
"ca": "Com s'anomena aquest dentista?",
|
||||||
|
"pl": "Jaka jest nazwa tego gabinetu dentystycznego?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This dentist is called {name}",
|
"en": "This dentist is called {name}",
|
||||||
"de": "Dieser Zahnarzt heißt {name}",
|
"de": "Dieser Zahnarzt heißt {name}",
|
||||||
"nl": "Deze tandarts heet {name}",
|
"nl": "Deze tandarts heet {name}",
|
||||||
"ca": "El dentista s'anomena {name}"
|
"ca": "El dentista s'anomena {name}",
|
||||||
|
"pl": "Nazwa tego gabinetu dentystycznego to {name}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "name"
|
"key": "name"
|
||||||
|
|
|
@ -60,13 +60,15 @@
|
||||||
"de": "Dieser Arzt ist spezialisiert auf {healthcare:speciality}",
|
"de": "Dieser Arzt ist spezialisiert auf {healthcare:speciality}",
|
||||||
"nl": "Deze dokter is gespecialiseerd in {healthcare:speciality}",
|
"nl": "Deze dokter is gespecialiseerd in {healthcare:speciality}",
|
||||||
"fr": "Ce médecin est spécialisé dans {healthcare:speciality}",
|
"fr": "Ce médecin est spécialisé dans {healthcare:speciality}",
|
||||||
"he": "רופא זה מתמחה ב {healthcare:speciality}"
|
"he": "רופא זה מתמחה ב {healthcare:speciality}",
|
||||||
|
"pl": "Ten lekarz specjalizuje się w {healthcare:speciality}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is this doctor specialized in?",
|
"en": "What is this doctor specialized in?",
|
||||||
"de": "Worauf ist dieser Arzt spezialisiert?",
|
"de": "Worauf ist dieser Arzt spezialisiert?",
|
||||||
"nl": "Waar is deze dokter in gespecialiseerd?",
|
"nl": "Waar is deze dokter in gespecialiseerd?",
|
||||||
"fr": "En quoi ce médecin est-il spécialisé ?"
|
"fr": "En quoi ce médecin est-il spécialisé ?",
|
||||||
|
"pl": "W czym specjalizuje się ten lekarz?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "healthcare:speciality"
|
"key": "healthcare:speciality"
|
||||||
|
@ -88,7 +90,8 @@
|
||||||
"en": "This is a gynaecologist",
|
"en": "This is a gynaecologist",
|
||||||
"de": "Dies ist ein Gynäkologe",
|
"de": "Dies ist ein Gynäkologe",
|
||||||
"nl": "Dit is een gynaecoloog",
|
"nl": "Dit is een gynaecoloog",
|
||||||
"fr": "C'est un gynécologue"
|
"fr": "C'est un gynécologue",
|
||||||
|
"pl": "To jest ginekolog"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -97,7 +100,8 @@
|
||||||
"en": "This is a psychiatrist",
|
"en": "This is a psychiatrist",
|
||||||
"de": "Dies ist ein Psychiater",
|
"de": "Dies ist ein Psychiater",
|
||||||
"nl": "Dit is een psychiater",
|
"nl": "Dit is een psychiater",
|
||||||
"fr": "C'est un psychiatre"
|
"fr": "C'est un psychiatre",
|
||||||
|
"pl": "To jest psychiatra"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -106,7 +110,8 @@
|
||||||
"en": "This is a paediatrician",
|
"en": "This is a paediatrician",
|
||||||
"de": "Dies ist ein Kinderarzt",
|
"de": "Dies ist ein Kinderarzt",
|
||||||
"nl": "Dit is een kinderarts",
|
"nl": "Dit is een kinderarts",
|
||||||
"fr": "C'est un pédiatre"
|
"fr": "C'est un pédiatre",
|
||||||
|
"pl": "To jest pediatra"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
"de": "Aufzüge",
|
"de": "Aufzüge",
|
||||||
"nl": "Lift",
|
"nl": "Lift",
|
||||||
"pa_PK": "ایلیویٹر",
|
"pa_PK": "ایلیویٹر",
|
||||||
"ca": "Ascensor"
|
"ca": "Ascensor",
|
||||||
|
"pl": "Winda"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": "highway=elevator"
|
"osmTags": "highway=elevator"
|
||||||
|
@ -24,7 +25,8 @@
|
||||||
"fr": "Ascenseur",
|
"fr": "Ascenseur",
|
||||||
"de": "Aufzug",
|
"de": "Aufzug",
|
||||||
"nl": "Lift",
|
"nl": "Lift",
|
||||||
"pa_PK": "ایلیویٹر"
|
"pa_PK": "ایلیویٹر",
|
||||||
|
"pl": "Winda"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
|
@ -36,7 +38,8 @@
|
||||||
"en": "Does this elevator work?",
|
"en": "Does this elevator work?",
|
||||||
"fr": "Cet ascenseur fonctionne-t-il ?",
|
"fr": "Cet ascenseur fonctionne-t-il ?",
|
||||||
"de": "Ist dieser Aufzug in Betrieb?",
|
"de": "Ist dieser Aufzug in Betrieb?",
|
||||||
"nl": "Werkt deze lift?"
|
"nl": "Werkt deze lift?",
|
||||||
|
"pl": "Czy ta winda działa?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -45,7 +48,8 @@
|
||||||
"en": "This elevator is broken",
|
"en": "This elevator is broken",
|
||||||
"fr": "Cet ascenseur est en panne",
|
"fr": "Cet ascenseur est en panne",
|
||||||
"de": "Dieser Aufzug ist kaputt",
|
"de": "Dieser Aufzug ist kaputt",
|
||||||
"nl": "Deze lift is kapot"
|
"nl": "Deze lift is kapot",
|
||||||
|
"pl": "Ta winda jest zepsuta"
|
||||||
},
|
},
|
||||||
"icon": "close:red"
|
"icon": "close:red"
|
||||||
},
|
},
|
||||||
|
@ -55,7 +59,8 @@
|
||||||
"en": "This elevator is closed <span class='subtle'>e.g. because renovation works are going on</span>",
|
"en": "This elevator is closed <span class='subtle'>e.g. because renovation works are going on</span>",
|
||||||
"fr": "Cet ascenseur est fermé <span class='subtle'>par ex. parce que des travaux de rénovation sont en cours</span>",
|
"fr": "Cet ascenseur est fermé <span class='subtle'>par ex. parce que des travaux de rénovation sont en cours</span>",
|
||||||
"de": "Dieser Aufzug ist außer Betrieb <span class='subtle'>z.B. wegen Renovierungsarbeiten</span>",
|
"de": "Dieser Aufzug ist außer Betrieb <span class='subtle'>z.B. wegen Renovierungsarbeiten</span>",
|
||||||
"nl": "Deze lift is tijdelijk gesloten <span class='subtle'>bijvoorbeeld door renovatiewerken</span>"
|
"nl": "Deze lift is tijdelijk gesloten <span class='subtle'>bijvoorbeeld door renovatiewerken</span>",
|
||||||
|
"pl": "Ta winda jest nieczynna <span class='subtle'>np. z powodu renowacji</span>"
|
||||||
},
|
},
|
||||||
"icon": "invalid:red"
|
"icon": "invalid:red"
|
||||||
},
|
},
|
||||||
|
@ -65,7 +70,8 @@
|
||||||
"en": "This elevator works",
|
"en": "This elevator works",
|
||||||
"fr": "Cet ascenseur fonctionne",
|
"fr": "Cet ascenseur fonctionne",
|
||||||
"de": "Dieser Aufzug ist in Betrieb",
|
"de": "Dieser Aufzug ist in Betrieb",
|
||||||
"nl": "Deze lift werkt"
|
"nl": "Deze lift werkt",
|
||||||
|
"pl": "Ta winda działa"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -75,7 +81,8 @@
|
||||||
"fr": "Cet ascenseur fonctionne",
|
"fr": "Cet ascenseur fonctionne",
|
||||||
"de": "Dieser Aufzug ist in Betrieb",
|
"de": "Dieser Aufzug ist in Betrieb",
|
||||||
"nl": "Deze lift werkt",
|
"nl": "Deze lift werkt",
|
||||||
"ca": "Aquest ascensor funciona"
|
"ca": "Aquest ascensor funciona",
|
||||||
|
"pl": "Ta winda działa"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -87,14 +94,16 @@
|
||||||
"en": "This elevator's doors have a width of {canonical(door:width)}",
|
"en": "This elevator's doors have a width of {canonical(door:width)}",
|
||||||
"fr": "Les portes de cet ascenseur ont une largeur de {canonical(door:width)}",
|
"fr": "Les portes de cet ascenseur ont une largeur de {canonical(door:width)}",
|
||||||
"de": "Die Türen des Aufzugs haben eine Breite von {canonical(door:width)}",
|
"de": "Die Türen des Aufzugs haben eine Breite von {canonical(door:width)}",
|
||||||
"nl": "De breedte van de liftdeur is {canonical(door:width)}"
|
"nl": "De breedte van de liftdeur is {canonical(door:width)}",
|
||||||
|
"pl": "Drzwi tej windy mają szerokość {canonical(door:width)}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the width of this elevator's entrance?",
|
"en": "What is the width of this elevator's entrance?",
|
||||||
"fr": "Quelle est la largeur de l'entrée de cet ascenseur ?",
|
"fr": "Quelle est la largeur de l'entrée de cet ascenseur ?",
|
||||||
"de": "Wie breit ist die Tür dieses Aufzugs?",
|
"de": "Wie breit ist die Tür dieses Aufzugs?",
|
||||||
"nl": "Wat is de breedte van de liftdeur?",
|
"nl": "Wat is de breedte van de liftdeur?",
|
||||||
"ca": "Quina és l'amplada de l'entrada d'aquest ascensor?"
|
"ca": "Quina és l'amplada de l'entrada d'aquest ascensor?",
|
||||||
|
"pl": "Jaka jest szerokość drzwi windy?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "door:width",
|
"key": "door:width",
|
||||||
|
@ -107,13 +116,15 @@
|
||||||
"en": "This elevator has a width of {canonical(elevator:width)}",
|
"en": "This elevator has a width of {canonical(elevator:width)}",
|
||||||
"fr": "Cet ascenseur a une largeur de {canonical(elevator:width)}",
|
"fr": "Cet ascenseur a une largeur de {canonical(elevator:width)}",
|
||||||
"de": "Die Aufzugskabine hat eine Breite von {canonical(elevator:width)}",
|
"de": "Die Aufzugskabine hat eine Breite von {canonical(elevator:width)}",
|
||||||
"nl": "Deze lift heeft een breedte van {canonical(elevator:width)}"
|
"nl": "Deze lift heeft een breedte van {canonical(elevator:width)}",
|
||||||
|
"pl": "Szerokość tej windy to {canonical(elevator:width)}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the width of this elevator?",
|
"en": "What is the width of this elevator?",
|
||||||
"fr": "Quelle est la largeur de cet ascenseur ?",
|
"fr": "Quelle est la largeur de cet ascenseur ?",
|
||||||
"de": "Wie breit ist die Kabine dieses Aufzugs?",
|
"de": "Wie breit ist die Kabine dieses Aufzugs?",
|
||||||
"nl": "Wat is de breedte van deze lift?"
|
"nl": "Wat is de breedte van deze lift?",
|
||||||
|
"pl": "Jaka jest szerokość tej windy?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "elevator:width",
|
"key": "elevator:width",
|
||||||
|
@ -140,8 +151,23 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"induction-loop",
|
"induction-loop",
|
||||||
|
|
||||||
|
{"id": "tactile_writing_available",
|
||||||
|
"question": {"en": "Has this elevator tactile writing?"},
|
||||||
|
|
||||||
|
"mappings":[
|
||||||
|
{"if":"tactile_writing:braille=yes",
|
||||||
|
"then": {"en": "This elevator has tactile writing in Braille"}
|
||||||
|
},
|
||||||
|
{"if":"tactile_writing:braille=no",
|
||||||
|
"then": {"en": "This elevator does not have tactile writing"}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"id": "tactile_writing_language",
|
"id": "tactile_writing_language",
|
||||||
|
"condition": "tactile_writing:braille=yes",
|
||||||
"render": {
|
"render": {
|
||||||
"special": {
|
"special": {
|
||||||
"type": "language_chooser",
|
"type": "language_chooser",
|
||||||
|
@ -164,8 +190,22 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{"id": "speech_output_available",
|
||||||
|
"question": {"en": "Has this elevator speech output?"},
|
||||||
|
"questionHint": {"en": "E.g. it announces the current floor"},
|
||||||
|
"mappings":[
|
||||||
|
{"if":"speech_output=yes",
|
||||||
|
"then": {"en": "This elevator has speech output"}
|
||||||
|
},
|
||||||
|
{"if":"speech_output=no",
|
||||||
|
"then": {"en": "This elevator does not have speech output"}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"id": "speech_output",
|
"id": "speech_output",
|
||||||
|
"condition": "speech_output=yes",
|
||||||
"render": {
|
"render": {
|
||||||
"special": {
|
"special": {
|
||||||
"type": "language_chooser",
|
"type": "language_chooser",
|
||||||
|
@ -218,7 +258,8 @@
|
||||||
"nl": "een lift",
|
"nl": "een lift",
|
||||||
"fr": "un ascenseur",
|
"fr": "un ascenseur",
|
||||||
"de": "einen Aufzug",
|
"de": "einen Aufzug",
|
||||||
"ca": "un ascensor"
|
"ca": "un ascensor",
|
||||||
|
"pl": "winda"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"highway=elevator"
|
"highway=elevator"
|
||||||
|
@ -235,7 +276,8 @@
|
||||||
"defaultInput": "cm",
|
"defaultInput": "cm",
|
||||||
"applicableUnits": [
|
"applicableUnits": [
|
||||||
{
|
{
|
||||||
"canonicalDenomination": "m",
|
"canonicalDenomination": "m"
|
||||||
|
,
|
||||||
"alternativeDenomination": [
|
"alternativeDenomination": [
|
||||||
"meter"
|
"meter"
|
||||||
],
|
],
|
||||||
|
@ -245,7 +287,8 @@
|
||||||
"fr": "mètre",
|
"fr": "mètre",
|
||||||
"de": "Meter",
|
"de": "Meter",
|
||||||
"nl": "meter",
|
"nl": "meter",
|
||||||
"pa_PK": "میٹر"
|
"pa_PK": "میٹر",
|
||||||
|
"pl": "metr"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -259,7 +302,8 @@
|
||||||
"fr": "centimètre",
|
"fr": "centimètre",
|
||||||
"de": "Zentimeter",
|
"de": "Zentimeter",
|
||||||
"nl": "centimeter",
|
"nl": "centimeter",
|
||||||
"pa_PK": "سینٹیمیٹر"
|
"pa_PK": "سینٹیمیٹر",
|
||||||
|
"pl": "centymetr"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
362
assets/layers/elongated_coin/elongated_coin.json
Normal file
|
@ -0,0 +1,362 @@
|
||||||
|
{
|
||||||
|
"id": "elongated_coin",
|
||||||
|
"name": {
|
||||||
|
"en": "Penny Presses",
|
||||||
|
"de": "Münzpressen",
|
||||||
|
"es": "Prensas de centavo"
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"en": "Layer showing penny presses.",
|
||||||
|
"de": "Ebene mit Münzpressen.",
|
||||||
|
"es": "Capa mostrando prensas de centavo."
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"osmTags": {
|
||||||
|
"and": [
|
||||||
|
"amenity=vending_machine",
|
||||||
|
"vending=elongated_coin"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"render": {
|
||||||
|
"en": "Penny Press",
|
||||||
|
"de": "Münzpresse",
|
||||||
|
"es": "Prensa de centavo"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tagRenderings": [
|
||||||
|
"images",
|
||||||
|
"opening_hours_24_7",
|
||||||
|
{
|
||||||
|
"id": "designs",
|
||||||
|
"question": {
|
||||||
|
"en": "How many designs are available?",
|
||||||
|
"de": "Wieviele Motive sind verfügbar?",
|
||||||
|
"es": "Cuántos diseños son disponibles?"
|
||||||
|
},
|
||||||
|
"freeform": {
|
||||||
|
"key": "coin:design_count",
|
||||||
|
"type": "pnat",
|
||||||
|
"placeholder": {
|
||||||
|
"en": "Number of designs (e.g. 5)",
|
||||||
|
"de": "Motivanzahl (z.B. 5)",
|
||||||
|
"es": "Número de diseños (por ejemplo, 5)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"render": {
|
||||||
|
"en": "This penny press has {coin:design_count} designs available.",
|
||||||
|
"de": "Die Münzpresse hat {coin:design_count} Motive zur Auswahl.",
|
||||||
|
"es": "Esta prensa tiene {coin:design_count} diseños disponibles."
|
||||||
|
},
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": "coin:design_count=1",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press has one design available.",
|
||||||
|
"de": "Die Münzpresse hat ein Motiv zur Auswahl.",
|
||||||
|
"es": "Esta prensa tiene un diseño disponible."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:design_count=2",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press has two designs available.",
|
||||||
|
"de": "Die Münzpresse hat zwei Motive zur Auswahl.",
|
||||||
|
"es": "Esta prensa tiene dos diseños disponibles."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:design_count=3",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press has three designs available.",
|
||||||
|
"de": "Die Münzpresse hat drei Motive zur Auswahl.",
|
||||||
|
"es": "Esta prensa tiene tres diseños disponibles."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:design_count=4",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press has four designs available.",
|
||||||
|
"de": "Die Münzpresse hat vier Motive zur Auswahl.",
|
||||||
|
"es": "Esta prensa tiene cuatro diseños disponibles."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "fee",
|
||||||
|
"question": {
|
||||||
|
"en": "Does it cost money to press a penny?"
|
||||||
|
},
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": "fee=",
|
||||||
|
"then": {
|
||||||
|
"en": "It costs money to press a penny."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "fee=yes",
|
||||||
|
"then": {
|
||||||
|
"en": "It costs money to press a penny."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "fee=no",
|
||||||
|
"then": {
|
||||||
|
"en": "It is free to press a penny."
|
||||||
|
},
|
||||||
|
"addExtraTags": [
|
||||||
|
"payment:qr_code=",
|
||||||
|
"payment:coins=",
|
||||||
|
"payment:notes=",
|
||||||
|
"payment:debit_cards=",
|
||||||
|
"payment:credit_cards="
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"builtin": "payment-options-split",
|
||||||
|
"override": {
|
||||||
|
"condition": {
|
||||||
|
"or": [
|
||||||
|
"fee=yes",
|
||||||
|
"fee="
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "coin",
|
||||||
|
"question": {
|
||||||
|
"en": "What coin is used for pressing?",
|
||||||
|
"de": "Welche Münze wird zum Pressen verwendet?",
|
||||||
|
"es": "Qué moneda se utiliza para presionar?"
|
||||||
|
},
|
||||||
|
"freeform": {
|
||||||
|
"key": "coin:type",
|
||||||
|
"type": "string",
|
||||||
|
"placeholder": {
|
||||||
|
"en": "Coin type (e.g. 10cent)",
|
||||||
|
"de": "Münzenart (z.B. 10 Cent)",
|
||||||
|
"es": "Tipo de moneda (por ejemplo, 10 centavos)",
|
||||||
|
"pl": "Rodzaj monety (np. 10 centów)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": "coin:type=2cent",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press uses a 2 cent coin for pressing.",
|
||||||
|
"de": "Die Münzpresse benötigt eine 2 Cent Münze um zu Pressen.",
|
||||||
|
"es": "Esta prensa de centavo utiliza una moneda de 2 centavos para presionar."
|
||||||
|
},
|
||||||
|
"hideInAnswer": {
|
||||||
|
"and": [
|
||||||
|
"_currency!~.*EUR.*",
|
||||||
|
"_currency!~.*USD.*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:type=5cent",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press uses a 5 cent coin for pressing.",
|
||||||
|
"de": "Die Münzpresse benötigt eine 5 Cent Münze um zu Pressen.",
|
||||||
|
"es": "Esta prensa de centavo utiliza una moneda de 5 centavos para presionar."
|
||||||
|
},
|
||||||
|
"hideInAnswer": {
|
||||||
|
"and": [
|
||||||
|
"_currency!~.*EUR.*",
|
||||||
|
"_currency!~.*USD.*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:type=10cent",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press uses a 10 cent coin for pressing.",
|
||||||
|
"de": "Die Münzpresse benötigt eine 10 Cent Münze um zu Pressen.",
|
||||||
|
"es": "Esta prensa de centavo utiliza una moneda de 10 centavos para presionar."
|
||||||
|
},
|
||||||
|
"hideInAnswer": {
|
||||||
|
"and": [
|
||||||
|
"_currency!~.*EUR.*",
|
||||||
|
"_currency!~.*USD.*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:type=25cent",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press uses a 25 cent coin for pressing.",
|
||||||
|
"de": "Die Münzpresse benötigt eine 25 Cent Münze um zu Pressen.",
|
||||||
|
"es": "Esta prensa de centavo utiliza una moneda de 25 centavos para presionar."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*USD.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:type=50cent",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press uses a 50 cent coin for pressing.",
|
||||||
|
"de": "Die Münzpresse benötigt eine 50 Cent Münze um zu Pressen.",
|
||||||
|
"es": "Esta prensa de centavo utiliza una moneda de 50 centavos para presionar."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*USD.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:type=10centimes",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press uses a 10 centimes coin for pressing."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*CHF.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "coin:type=20centimes",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press uses a 20 centimes coin for pressing."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*CHF.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"render": {
|
||||||
|
"en": "This penny press uses a {coin:type} coin for pressing.",
|
||||||
|
"de": "Die Münzpresse benötigt eine {coin:type} Münze um zu Pressen.",
|
||||||
|
"es": "Esta prensa de centavo utiliza una moneda {coin:type} para presionar."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"website",
|
||||||
|
{
|
||||||
|
"id": "charge",
|
||||||
|
"condition": {
|
||||||
|
"or": [
|
||||||
|
"fee=yes",
|
||||||
|
"fee="
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"question": {
|
||||||
|
"en": "How much does it cost to press a penny?",
|
||||||
|
"de": "Wieviel kostet es eine Münze zu Pressen?",
|
||||||
|
"es": "¿Cuánto cuesta presionar un centavo?"
|
||||||
|
},
|
||||||
|
"freeform": {
|
||||||
|
"key": "charge",
|
||||||
|
"placeholder": {
|
||||||
|
"en": "Cost (e.g. 0.50 EUR)",
|
||||||
|
"de": "Einwurf (z.B. 0,5€)",
|
||||||
|
"fr": "Coût (par ex. 0.50 EUR)",
|
||||||
|
"es": "Costo (por ejemplo, 0.50 euros)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": "charge=1 EUR",
|
||||||
|
"then": {
|
||||||
|
"en": "It costs 1 euro to press a penny.",
|
||||||
|
"de": "Eine Münze zu Pressen kostet 1 Euro.",
|
||||||
|
"es": "Cuesta 1 euro para presionar un centavo."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*EUR.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "charge=2 EUR",
|
||||||
|
"then": {
|
||||||
|
"en": "It costs 2 euros to press a penny.",
|
||||||
|
"de": "Eine Münze zu Pressen kostet 2€.",
|
||||||
|
"es": "Cuesta 2 euros para presionar un centavo."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*EUR.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "charge=2 CHF",
|
||||||
|
"then": {
|
||||||
|
"en": "It costs 2 Swiss francs to press a penny."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*CHF.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "charge=1 CHF",
|
||||||
|
"then": {
|
||||||
|
"en": "It costs 1 Swiss franc to press a penny."
|
||||||
|
},
|
||||||
|
"hideInAnswer": "_currency!~.*CHF.*"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"render": {
|
||||||
|
"en": "It costs {charge} to press a penny.",
|
||||||
|
"de": "Es kostet {charge}€ um eine Münze zu Pressen.",
|
||||||
|
"es": "Cuesta {charge} para presionar un centavo."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"denominations-coins",
|
||||||
|
{
|
||||||
|
"id": "indoor",
|
||||||
|
"question": {
|
||||||
|
"en": "Is the penny press indoors?",
|
||||||
|
"de": "Befindet sich die Münzpresse im Inneren?",
|
||||||
|
"es": "La prensa de centavo esta al interior?"
|
||||||
|
},
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": "indoor=yes",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press is located indoors.",
|
||||||
|
"de": "Die Münzpresse befindet sich im Inneren.",
|
||||||
|
"es": "Esta prensa está ubicada en interior."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "indoor=no",
|
||||||
|
"then": {
|
||||||
|
"en": "This penny press is located outdoors.",
|
||||||
|
"de": "Die Münzpresse befindet sich Draußen.",
|
||||||
|
"es": "Esta prensa está ubicada al aire libre."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"level",
|
||||||
|
"check_date"
|
||||||
|
],
|
||||||
|
"mapRendering": [
|
||||||
|
{
|
||||||
|
"icon": "circle:#FFFFFF00;./assets/themes/elongated_coin/penny.svg",
|
||||||
|
"location": [
|
||||||
|
"point",
|
||||||
|
"centroid"
|
||||||
|
],
|
||||||
|
"iconBadges": [
|
||||||
|
{
|
||||||
|
"if": "opening_hours~*",
|
||||||
|
"then": "icons.isOpen"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"presets": [
|
||||||
|
{
|
||||||
|
"title": {
|
||||||
|
"en": "a penny press",
|
||||||
|
"de": "Eine Münzpresse",
|
||||||
|
"es": "una prensa de centavo"
|
||||||
|
},
|
||||||
|
"tags": [
|
||||||
|
"amenity=vending_machine",
|
||||||
|
"vending=elongated_coin",
|
||||||
|
"payment:coins=yes"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"allowMove": {
|
||||||
|
"enableImproveAccuracy": true,
|
||||||
|
"enableRelocation": true
|
||||||
|
},
|
||||||
|
"deletion": true,
|
||||||
|
"filter": [
|
||||||
|
"open_now",
|
||||||
|
"accepts_debit_cards",
|
||||||
|
"accepts_credit_cards"
|
||||||
|
]
|
||||||
|
}
|
|
@ -36,7 +36,8 @@
|
||||||
"de": "Eingang",
|
"de": "Eingang",
|
||||||
"es": "Entrada",
|
"es": "Entrada",
|
||||||
"fr": "Entrée",
|
"fr": "Entrée",
|
||||||
"pa_PK": "دروازہ"
|
"pa_PK": "دروازہ",
|
||||||
|
"pl": "Wejście"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
|
@ -49,7 +50,8 @@
|
||||||
"nl": "Wat voor ingang is dit?",
|
"nl": "Wat voor ingang is dit?",
|
||||||
"de": "Um welchen Eingangstyp handelt es sich?",
|
"de": "Um welchen Eingangstyp handelt es sich?",
|
||||||
"es": "¿Qué tipo de entrada es esta?",
|
"es": "¿Qué tipo de entrada es esta?",
|
||||||
"fr": "De quel type d'entrée s'agit-il ?"
|
"fr": "De quel type d'entrée s'agit-il ?",
|
||||||
|
"pl": "Jakiego rodzaju jest to wejście?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -91,7 +93,8 @@
|
||||||
"nl": "Dit is de hoofdingang",
|
"nl": "Dit is de hoofdingang",
|
||||||
"de": "Dies ist der Haupteingang",
|
"de": "Dies ist der Haupteingang",
|
||||||
"es": "Esta es la entrada principal",
|
"es": "Esta es la entrada principal",
|
||||||
"fr": "Ceci est l'entrée principale"
|
"fr": "Ceci est l'entrée principale",
|
||||||
|
"pl": "To jest główne wejście"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -122,7 +125,8 @@
|
||||||
"de": "Dies ist ein Diensteingang - normalerweise nur für Mitarbeiter, Anlieferung, …",
|
"de": "Dies ist ein Diensteingang - normalerweise nur für Mitarbeiter, Anlieferung, …",
|
||||||
"es": "Esta es una entrada de servicio - normalmente solo la utilizan empleados, repartidores, …",
|
"es": "Esta es una entrada de servicio - normalmente solo la utilizan empleados, repartidores, …",
|
||||||
"fr": "C'est une entrée de service - normalement utilisée uniquement pour les employés, la livraison, …",
|
"fr": "C'est une entrée de service - normalement utilisée uniquement pour les employés, la livraison, …",
|
||||||
"ca": "Aquesta és una entrada de servei - normalment utilitzada per empleats, repartidors, …"
|
"ca": "Aquesta és una entrada de servei - normalment utilitzada per empleats, repartidors, …",
|
||||||
|
"pl": "To jest wejście serwisowe - zazwyczaj używane tylko przez pracowników, dostawy, …"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -137,7 +141,8 @@
|
||||||
"nl": "Dit is enkel een uitgang, je kan hier niet naar binnen",
|
"nl": "Dit is enkel een uitgang, je kan hier niet naar binnen",
|
||||||
"de": "Dies ist ein Ausgang, ohne Zutrittsmöglichkeit",
|
"de": "Dies ist ein Ausgang, ohne Zutrittsmöglichkeit",
|
||||||
"es": "Esta es una salida por la cual no se puede entrar",
|
"es": "Esta es una salida por la cual no se puede entrar",
|
||||||
"fr": "C'est une sortie où l'on ne peut pas entrer"
|
"fr": "C'est une sortie où l'on ne peut pas entrer",
|
||||||
|
"pl": "To jest wyjście bez możliwości wejścia"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -152,7 +157,8 @@
|
||||||
"nl": "Dit is een ingang waar je enkel naar binnen kunt (niet naar buiten)",
|
"nl": "Dit is een ingang waar je enkel naar binnen kunt (niet naar buiten)",
|
||||||
"de": "Dies ist ein Eingang, an dem man nur hineingehen kann (aber nicht hinausgehen)",
|
"de": "Dies ist ein Eingang, an dem man nur hineingehen kann (aber nicht hinausgehen)",
|
||||||
"es": "Esta es una entrada por la que solo se puede entrar (pero no salir)",
|
"es": "Esta es una entrada por la que solo se puede entrar (pero no salir)",
|
||||||
"fr": "C'est une entrée où l'on ne peut qu'entrer (mais pas sortir)"
|
"fr": "C'est une entrée où l'on ne peut qu'entrer (mais pas sortir)",
|
||||||
|
"pl": "To jest wejście, którym nie można wychodzić"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -168,7 +174,8 @@
|
||||||
"de": "Dies ist ein Notausgang",
|
"de": "Dies ist ein Notausgang",
|
||||||
"es": "Esta es una salida de emergencia",
|
"es": "Esta es una salida de emergencia",
|
||||||
"fr": "C'est la sortie de secours",
|
"fr": "C'est la sortie de secours",
|
||||||
"he": "זו יציאת חירום"
|
"he": "זו יציאת חירום",
|
||||||
|
"pl": "To jest wyjście ewakuacyjne"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -183,7 +190,8 @@
|
||||||
"nl": "Dit is de ingang van een private woning",
|
"nl": "Dit is de ingang van een private woning",
|
||||||
"de": "Dies ist ein Eingang zu einem privaten Haus",
|
"de": "Dies ist ein Eingang zu einem privaten Haus",
|
||||||
"es": "Esta es la entrada a una vivienda privada",
|
"es": "Esta es la entrada a una vivienda privada",
|
||||||
"fr": "C'est l'entrée d'une maison privée"
|
"fr": "C'est l'entrée d'une maison privée",
|
||||||
|
"pl": "To jest wejście do prywatnego domu"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -281,7 +289,8 @@
|
||||||
"nl": "Dit is een automatische deur",
|
"nl": "Dit is een automatische deur",
|
||||||
"de": "Dies ist eine Automatiktür",
|
"de": "Dies ist eine Automatiktür",
|
||||||
"es": "Esta es una puerta automática",
|
"es": "Esta es una puerta automática",
|
||||||
"fr": "C'est une porte automatique"
|
"fr": "C'est une porte automatique",
|
||||||
|
"pl": "Te drzwi są automatyczne"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -293,7 +302,8 @@
|
||||||
"de": "Diese Tür ist <b>nicht</b> automatisiert",
|
"de": "Diese Tür ist <b>nicht</b> automatisiert",
|
||||||
"es": "Esta puerta <b>no</b> está automatizada",
|
"es": "Esta puerta <b>no</b> está automatizada",
|
||||||
"fr": "Cette porte n'est <b>pas</b> automatisée",
|
"fr": "Cette porte n'est <b>pas</b> automatisée",
|
||||||
"ca": "Aquesta porta <b>no </b> està automatitzada"
|
"ca": "Aquesta porta <b>no </b> està automatitzada",
|
||||||
|
"pl": "Te drzwi <b>nie</b> są automatyczne"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -303,7 +313,8 @@
|
||||||
"nl": "De deur gaat automatisch open wanneer er <b>beweging</b> wordt gedetecteerd",
|
"nl": "De deur gaat automatisch open wanneer er <b>beweging</b> wordt gedetecteerd",
|
||||||
"de": "Diese Tür öffnet sich automatisch, wenn <b>Bewegung</b> erkannt wird",
|
"de": "Diese Tür öffnet sich automatisch, wenn <b>Bewegung</b> erkannt wird",
|
||||||
"es": "Esta puerta se abre automáticamente cuando se detecta <b>movimiento</b>",
|
"es": "Esta puerta se abre automáticamente cuando se detecta <b>movimiento</b>",
|
||||||
"fr": "Cette porte s'ouvrira automatiquement lorsqu'un <b>mouvement</b> sera détecté"
|
"fr": "Cette porte s'ouvrira automatiquement lorsqu'un <b>mouvement</b> sera détecté",
|
||||||
|
"pl": "Te drzwi automatycznie się otwierają, kiedy zostanie wykryty <b>ruch</b>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -412,7 +423,8 @@
|
||||||
"en": "Height of the door kerb",
|
"en": "Height of the door kerb",
|
||||||
"fr": "Hauteur du seuil de porte",
|
"fr": "Hauteur du seuil de porte",
|
||||||
"de": "Höhe der Türschwelle",
|
"de": "Höhe der Türschwelle",
|
||||||
"nl": "Hoogte van de drempel"
|
"nl": "Hoogte van de drempel",
|
||||||
|
"pl": "Wysokość progu w drzwiach"
|
||||||
},
|
},
|
||||||
"type": "pnat"
|
"type": "pnat"
|
||||||
},
|
},
|
||||||
|
@ -423,7 +435,8 @@
|
||||||
"en": "This door does not have a kerb",
|
"en": "This door does not have a kerb",
|
||||||
"nl": "Deze deur heeft geen drempel",
|
"nl": "Deze deur heeft geen drempel",
|
||||||
"fr": "Cette porte n'a pas de seuil",
|
"fr": "Cette porte n'a pas de seuil",
|
||||||
"de": "Diese Tür hat keine Türschwelle"
|
"de": "Diese Tür hat keine Türschwelle",
|
||||||
|
"pl": "Te drzwi nie mają progu"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -495,7 +508,8 @@
|
||||||
"fr": "mètre",
|
"fr": "mètre",
|
||||||
"de": "Meter",
|
"de": "Meter",
|
||||||
"nl": "meter",
|
"nl": "meter",
|
||||||
"pa_PK": "میٹر"
|
"pa_PK": "میٹر",
|
||||||
|
"pl": "metr"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -509,7 +523,8 @@
|
||||||
"fr": "centimètre",
|
"fr": "centimètre",
|
||||||
"de": "Zentimeter",
|
"de": "Zentimeter",
|
||||||
"nl": "centimeter",
|
"nl": "centimeter",
|
||||||
"pa_PK": "سینٹیمیٹر"
|
"pa_PK": "سینٹیمیٹر",
|
||||||
|
"pl": "centrymetr"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -181,14 +181,16 @@
|
||||||
"en": "What is this object named after?",
|
"en": "What is this object named after?",
|
||||||
"nl": "Naar wat is dit object vernoemd?",
|
"nl": "Naar wat is dit object vernoemd?",
|
||||||
"de": "Wonach ist dieses Objekt benannt?",
|
"de": "Wonach ist dieses Objekt benannt?",
|
||||||
"fr": "En référence à quoi cet objet est-il nommé ?"
|
"fr": "En référence à quoi cet objet est-il nommé ?",
|
||||||
|
"pl": "Po czym nazwany jest ten obiekt?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "Named after {name:etymology}",
|
"en": "Named after {name:etymology}",
|
||||||
"nl": "Vernoemd naar {name:etymology}",
|
"nl": "Vernoemd naar {name:etymology}",
|
||||||
"de": "Benannt nach {name:etymology}",
|
"de": "Benannt nach {name:etymology}",
|
||||||
"da": "Opkaldt efter {name:etymology}",
|
"da": "Opkaldt efter {name:etymology}",
|
||||||
"fr": "Nommé en référence à {name:etymology}"
|
"fr": "Nommé en référence à {name:etymology}",
|
||||||
|
"pl": "Nazwane po {name:etymology}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "name:etymology"
|
"key": "name:etymology"
|
||||||
|
@ -252,7 +254,8 @@
|
||||||
"en": "A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}",
|
"en": "A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}",
|
||||||
"nl": "Een Wikipedia artikel over deze <b>straat</b> bestaat:<br/>{wikipedia():max-height:25rem}",
|
"nl": "Een Wikipedia artikel over deze <b>straat</b> bestaat:<br/>{wikipedia():max-height:25rem}",
|
||||||
"de": "Zu dieser <b>Straße</b> existiert ein Wikipedia-Artikel:<br/>{wikipedia():max-height:25rem}",
|
"de": "Zu dieser <b>Straße</b> existiert ein Wikipedia-Artikel:<br/>{wikipedia():max-height:25rem}",
|
||||||
"fr": "Un article Wikipédia à propos de cette <b>rue</b> existe :<br/>{wikipedia():max-height:25rem}"
|
"fr": "Un article Wikipédia à propos de cette <b>rue</b> existe :<br/>{wikipedia():max-height:25rem}",
|
||||||
|
"pl": "Istnieje artykuł Wikipedii na temat tej <b>ulicy</b>:<br/>{wikipedia():max-height:25rem}"
|
||||||
},
|
},
|
||||||
"condition": "wikidata~*"
|
"condition": "wikidata~*"
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,8 @@
|
||||||
"it": "Cartina degli estintori.",
|
"it": "Cartina degli estintori.",
|
||||||
"nl": "Kaart van brandblussers",
|
"nl": "Kaart van brandblussers",
|
||||||
"es": "Mapa de extintores",
|
"es": "Mapa de extintores",
|
||||||
"ca": "Mapa d'extintors"
|
"ca": "Mapa d'extintors",
|
||||||
|
"pl": "Mapa gaśnic"
|
||||||
},
|
},
|
||||||
"minzoom": 14,
|
"minzoom": 14,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -31,7 +32,8 @@
|
||||||
"it": "Estintori",
|
"it": "Estintori",
|
||||||
"nl": "Brandblussers",
|
"nl": "Brandblussers",
|
||||||
"ca": "Extintors",
|
"ca": "Extintors",
|
||||||
"es": "Extintores"
|
"es": "Extintores",
|
||||||
|
"pl": "Gaśnice"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
|
@ -46,7 +48,8 @@
|
||||||
"nl": "Kaartlaag met brandblussers.",
|
"nl": "Kaartlaag met brandblussers.",
|
||||||
"da": "Kortlag til visning af ildslukkere.",
|
"da": "Kortlag til visning af ildslukkere.",
|
||||||
"es": "Capa del mapa que muestra extintores.",
|
"es": "Capa del mapa que muestra extintores.",
|
||||||
"ca": "Capa que mostra extintors."
|
"ca": "Capa que mostra extintors.",
|
||||||
|
"pl": "Warstwa mapy pokazująca gaśnice."
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
{
|
{
|
||||||
|
@ -61,7 +64,8 @@
|
||||||
"it": "Posizione: {location}",
|
"it": "Posizione: {location}",
|
||||||
"nl": "Locatie: {location}",
|
"nl": "Locatie: {location}",
|
||||||
"es": "Localización: {location}",
|
"es": "Localización: {location}",
|
||||||
"ca": "Ubicació: {location}"
|
"ca": "Ubicació: {location}",
|
||||||
|
"pl": "Lokalizacja: {location}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Where is it positioned?",
|
"en": "Where is it positioned?",
|
||||||
|
@ -73,7 +77,8 @@
|
||||||
"nl": "Op welke locatie staat dit?",
|
"nl": "Op welke locatie staat dit?",
|
||||||
"da": "Hvor er den placeret?",
|
"da": "Hvor er den placeret?",
|
||||||
"es": "¿Dónde se encuentra?",
|
"es": "¿Dónde se encuentra?",
|
||||||
"ca": "On està situat?"
|
"ca": "On està situat?",
|
||||||
|
"pl": "Gdzie się znajduje?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -92,7 +97,8 @@
|
||||||
"nl": "In een gebouw.",
|
"nl": "In een gebouw.",
|
||||||
"da": "Findes indendørs.",
|
"da": "Findes indendørs.",
|
||||||
"es": "Se encuentra en el interior.",
|
"es": "Se encuentra en el interior.",
|
||||||
"ca": "Es troba a l'interior."
|
"ca": "Es troba a l'interior.",
|
||||||
|
"pl": "Znajduje się wewnątrz budynku."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -111,7 +117,8 @@
|
||||||
"nl": "In open lucht.",
|
"nl": "In open lucht.",
|
||||||
"da": "Findes udendørs.",
|
"da": "Findes udendørs.",
|
||||||
"es": "Se encuentra en el exterior.",
|
"es": "Se encuentra en el exterior.",
|
||||||
"ca": "Es troba a l'aire lliure."
|
"ca": "Es troba a l'aire lliure.",
|
||||||
|
"pl": "Znajduje się na dworze."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -137,7 +144,8 @@
|
||||||
"nl": "een brandblusser",
|
"nl": "een brandblusser",
|
||||||
"da": "en ildslukker",
|
"da": "en ildslukker",
|
||||||
"es": "un extintor",
|
"es": "un extintor",
|
||||||
"ca": "un extintor"
|
"ca": "un extintor",
|
||||||
|
"pl": "gaśnica"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A fire extinguisher is a small, portable device used to stop a fire",
|
"en": "A fire extinguisher is a small, portable device used to stop a fire",
|
||||||
|
@ -149,7 +157,8 @@
|
||||||
"nl": "Een brandblusser is een klein, draagbaar apparaat om een brand te blussen",
|
"nl": "Een brandblusser is een klein, draagbaar apparaat om een brand te blussen",
|
||||||
"da": "En ildslukker er en lille, bærbar beholder, der bruges til at stoppe en brand",
|
"da": "En ildslukker er en lille, bærbar beholder, der bruges til at stoppe en brand",
|
||||||
"es": "Un extintor es un dispositivo pequeño y portátil utilizado para parar un fuego",
|
"es": "Un extintor es un dispositivo pequeño y portátil utilizado para parar un fuego",
|
||||||
"ca": "Un extintor és un dispositiu petit i portàtil utilitzat per a para un foc"
|
"ca": "Un extintor és un dispositiu petit i portàtil utilitzat per a para un foc",
|
||||||
|
"pl": "Gaśnica to małe, przenośne urządzenie do gaszenia ognia"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
{
|
{
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Open now",
|
"en": "Open now",
|
||||||
"nl": "Nu geopened",
|
"nl": "Nu open",
|
||||||
"de": "Jetzt geöffnet",
|
"de": "Jetzt geöffnet",
|
||||||
"ca": "Obert ara",
|
"ca": "Obert ara",
|
||||||
"es": "Abierta ahora",
|
"es": "Abierta ahora",
|
||||||
|
@ -19,7 +19,8 @@
|
||||||
"da": "Åbent nu",
|
"da": "Åbent nu",
|
||||||
"zh_Hant": "目前開放",
|
"zh_Hant": "目前開放",
|
||||||
"id": "Saat ini buka",
|
"id": "Saat ini buka",
|
||||||
"it": "Aperto ora"
|
"it": "Aperto ora",
|
||||||
|
"pl": "Otwarte teraz"
|
||||||
},
|
},
|
||||||
"osmTags": "_isOpen=yes"
|
"osmTags": "_isOpen=yes"
|
||||||
}
|
}
|
||||||
|
@ -35,7 +36,8 @@
|
||||||
"de": "Akzeptiert Barzahlung",
|
"de": "Akzeptiert Barzahlung",
|
||||||
"nl": "Accepteert cash",
|
"nl": "Accepteert cash",
|
||||||
"es": "Acepta efectivo",
|
"es": "Acepta efectivo",
|
||||||
"fr": "Accepte les espèces"
|
"fr": "Accepte les espèces",
|
||||||
|
"pl": "Przyjmuje gotówkę"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -50,7 +52,8 @@
|
||||||
"de": "Akzeptiert Kartenzahlung",
|
"de": "Akzeptiert Kartenzahlung",
|
||||||
"nl": "Accepteert betaalkaarten",
|
"nl": "Accepteert betaalkaarten",
|
||||||
"es": "Acepta el pago por tarjeta",
|
"es": "Acepta el pago por tarjeta",
|
||||||
"fr": "Accepte les cartes de paiement"
|
"fr": "Accepte les cartes de paiement",
|
||||||
|
"pl": "Przyjmuje karty płatnicze"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -61,7 +64,9 @@
|
||||||
{
|
{
|
||||||
"osmTags": "payment:debit_cards=yes",
|
"osmTags": "payment:debit_cards=yes",
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Accepts debit cards"
|
"en": "Accepts debit cards",
|
||||||
|
"de": "Akzeptiert Debitkarten",
|
||||||
|
"pl": "Przyjmuje karty debetowe"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -72,7 +77,9 @@
|
||||||
{
|
{
|
||||||
"osmTags": "payment:credit_cards=yes",
|
"osmTags": "payment:credit_cards=yes",
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Accepts credit cards"
|
"en": "Accepts credit cards",
|
||||||
|
"de": "Akzeptiert Kreditkarten",
|
||||||
|
"pl": "Przyjmuje karty kredytowe"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -84,14 +91,16 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "With and without images",
|
"en": "With and without images",
|
||||||
"nl": "Met en zonder afbeelding",
|
"nl": "Met en zonder afbeelding",
|
||||||
"de": "Mit und ohne Bild"
|
"de": "Mit und ohne Bild",
|
||||||
|
"pl": "Z oraz bez zdjęć"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has at least one image",
|
"en": "Has at least one image",
|
||||||
"de": "Hat mindestens ein Bild",
|
"de": "Hat mindestens ein Bild",
|
||||||
"nl": "Heeft minstens één afbeelding"
|
"nl": "Heeft minstens één afbeelding",
|
||||||
|
"pl": "Ma co najmniej jedno zdjęcie"
|
||||||
},
|
},
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
"or": [
|
"or": [
|
||||||
|
@ -108,7 +117,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Probably does not have an image",
|
"en": "Probably does not have an image",
|
||||||
"de": "Hat wahrscheinlich kein Bild",
|
"de": "Hat wahrscheinlich kein Bild",
|
||||||
"nl": "Heeft waarschijnlijk geen afbeelding"
|
"nl": "Heeft waarschijnlijk geen afbeelding",
|
||||||
|
"pl": "Prawdopodobnie nie ma zdjęcia"
|
||||||
},
|
},
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -131,7 +141,8 @@
|
||||||
"en": "With tactile paving",
|
"en": "With tactile paving",
|
||||||
"de": "Mit taktilem Pflaster",
|
"de": "Mit taktilem Pflaster",
|
||||||
"fr": "Avec revêtement podotactile",
|
"fr": "Avec revêtement podotactile",
|
||||||
"nl": "Met voelbare bestrating"
|
"nl": "Met voelbare bestrating",
|
||||||
|
"pl": "Z wypustkami dla niewidomych"
|
||||||
},
|
},
|
||||||
"osmTags": "tactile_paving=yes"
|
"osmTags": "tactile_paving=yes"
|
||||||
}
|
}
|
||||||
|
@ -146,7 +157,8 @@
|
||||||
"en": "With or without tactile paving",
|
"en": "With or without tactile paving",
|
||||||
"de": "Mit oder ohne taktiles Pflaster",
|
"de": "Mit oder ohne taktiles Pflaster",
|
||||||
"fr": "Avec ou sans revêtement podotactile",
|
"fr": "Avec ou sans revêtement podotactile",
|
||||||
"nl": "Met of zonder voelbare bestrating"
|
"nl": "Met of zonder voelbare bestrating",
|
||||||
|
"pl": "Z lub bez wypustek dla niewidomych"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -154,7 +166,8 @@
|
||||||
"en": "With tactile paving",
|
"en": "With tactile paving",
|
||||||
"de": "Mit taktilem Pflaster",
|
"de": "Mit taktilem Pflaster",
|
||||||
"fr": "Avec revêtement podotactile",
|
"fr": "Avec revêtement podotactile",
|
||||||
"nl": "Met voelbare bestrating"
|
"nl": "Met voelbare bestrating",
|
||||||
|
"pl": "Z wypustkami dla niewidomych"
|
||||||
},
|
},
|
||||||
"osmTags": "tactile_paving=yes"
|
"osmTags": "tactile_paving=yes"
|
||||||
},
|
},
|
||||||
|
@ -163,7 +176,8 @@
|
||||||
"en": "Without tactile paving",
|
"en": "Without tactile paving",
|
||||||
"de": "Ohne taktiles Pflaster",
|
"de": "Ohne taktiles Pflaster",
|
||||||
"fr": "Sans revêtement podotactile",
|
"fr": "Sans revêtement podotactile",
|
||||||
"nl": "Zonder voelbare bestrating"
|
"nl": "Zonder voelbare bestrating",
|
||||||
|
"pl": "Bez wypustek dla niewidomych"
|
||||||
},
|
},
|
||||||
"osmTags": "tactile_paving=no"
|
"osmTags": "tactile_paving=no"
|
||||||
},
|
},
|
||||||
|
@ -173,7 +187,8 @@
|
||||||
"en": "No information about tactile paving",
|
"en": "No information about tactile paving",
|
||||||
"de": "Keine Informationen über taktiles Pflaster",
|
"de": "Keine Informationen über taktiles Pflaster",
|
||||||
"fr": "Sans information sur le revêtement podotactile",
|
"fr": "Sans information sur le revêtement podotactile",
|
||||||
"nl": "Geen informatie over voelbare bestrating"
|
"nl": "Geen informatie over voelbare bestrating",
|
||||||
|
"pl": "Brak informacji o wypustkach dla niewidomych"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
"id": "fixme",
|
"id": "fixme",
|
||||||
"name": {
|
"name": {
|
||||||
"en": "OSM objects with FIXME tags",
|
"en": "OSM objects with FIXME tags",
|
||||||
"de": "OSM-Objekte mit FIXME-Tags"
|
"de": "OSM-Objekte mit FIXME-Tags",
|
||||||
|
"pl": "Obiekty OSM z znacznikami FIXME"
|
||||||
},
|
},
|
||||||
"minzoom": 16,
|
"minzoom": 16,
|
||||||
"description": {
|
"description": {
|
||||||
|
@ -21,7 +22,8 @@
|
||||||
"title": {
|
"title": {
|
||||||
"render": {
|
"render": {
|
||||||
"en": "OSM object with FIXME tag",
|
"en": "OSM object with FIXME tag",
|
||||||
"de": "OSM-Objekt mit FIXME-Tags"
|
"de": "OSM-Objekt mit FIXME-Tags",
|
||||||
|
"pl": "Obiekt OSM z znacznikiem FIXME"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
|
@ -33,14 +35,16 @@
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is wrong with this feature?",
|
"en": "What is wrong with this feature?",
|
||||||
"de": "Was stimmt mit diesem Objekt nicht?"
|
"de": "Was stimmt mit diesem Objekt nicht?",
|
||||||
|
"pl": "Co jest nie tak z tym obiektem?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "fixme=",
|
"if": "fixme=",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This issue has been resolved",
|
"en": "This issue has been resolved",
|
||||||
"de": "Dieses Problem wurde behoben"
|
"de": "Dieses Problem wurde behoben",
|
||||||
|
"pl": "Ten problem został rozwiązany"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -54,7 +58,9 @@
|
||||||
"condition": "note~*",
|
"condition": "note~*",
|
||||||
"render": {
|
"render": {
|
||||||
"en": "Note Text: {note}",
|
"en": "Note Text: {note}",
|
||||||
"de": "Notiz Text: {note}"
|
"de": "Notiz Text: {note}",
|
||||||
|
"fr": "Texte de la note : {note}",
|
||||||
|
"pl": "Tekst notatki: {note}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"all_tags"
|
"all_tags"
|
||||||
|
|
|
@ -7,7 +7,8 @@
|
||||||
"da": "Restauranter og fastfood",
|
"da": "Restauranter og fastfood",
|
||||||
"es": "Restaurantes y comida rápida",
|
"es": "Restaurantes y comida rápida",
|
||||||
"fr": "Restaurants et nourriture rapide",
|
"fr": "Restaurants et nourriture rapide",
|
||||||
"ca": "Restaurants i menjar ràpid"
|
"ca": "Restaurants i menjar ràpid",
|
||||||
|
"pl": "Restauracje i fast-foody"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
|
@ -27,7 +28,8 @@
|
||||||
"de": "ein Restaurant",
|
"de": "ein Restaurant",
|
||||||
"ca": "un restaurant",
|
"ca": "un restaurant",
|
||||||
"es": "un restaurante",
|
"es": "un restaurante",
|
||||||
"fr": "un restaurant"
|
"fr": "un restaurant",
|
||||||
|
"pl": "restauracja"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"amenity=restaurant"
|
"amenity=restaurant"
|
||||||
|
@ -89,7 +91,8 @@
|
||||||
"de": "Restaurant",
|
"de": "Restaurant",
|
||||||
"es": "Restaurante",
|
"es": "Restaurante",
|
||||||
"fr": "Restaurant",
|
"fr": "Restaurant",
|
||||||
"pa_PK": "بھون آلہ"
|
"pa_PK": "بھون آلہ",
|
||||||
|
"pl": "Restauracja"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -105,7 +108,8 @@
|
||||||
"de": "Restaurant <i>{name}</i>",
|
"de": "Restaurant <i>{name}</i>",
|
||||||
"ca": "Restaurant <i>{name}</i>",
|
"ca": "Restaurant <i>{name}</i>",
|
||||||
"es": "Restaurante <i>{name}</i>",
|
"es": "Restaurante <i>{name}</i>",
|
||||||
"fr": "Restaurant <i>{name}</i>"
|
"fr": "Restaurant <i>{name}</i>",
|
||||||
|
"pl": "Restauracja <i>{name}</i>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -238,7 +242,8 @@
|
||||||
"de": "Dies ist eine Pizzeria",
|
"de": "Dies ist eine Pizzeria",
|
||||||
"es": "Esto es una pizzería",
|
"es": "Esto es una pizzería",
|
||||||
"fr": "C'est une pizzéria",
|
"fr": "C'est une pizzéria",
|
||||||
"ca": "Això és una pizzeria"
|
"ca": "Això és una pizzeria",
|
||||||
|
"pl": "To jest pizzeria"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -259,7 +264,8 @@
|
||||||
"de": "Bietet vorwiegend Pastagerichte an",
|
"de": "Bietet vorwiegend Pastagerichte an",
|
||||||
"es": "Principalmente sirve pasta",
|
"es": "Principalmente sirve pasta",
|
||||||
"fr": "Restaurant Italien",
|
"fr": "Restaurant Italien",
|
||||||
"ca": "Principalment serveix pasta"
|
"ca": "Principalment serveix pasta",
|
||||||
|
"pl": "Podaje głównie makarony"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -269,7 +275,8 @@
|
||||||
"nl": "Dit is een kebabzaak",
|
"nl": "Dit is een kebabzaak",
|
||||||
"de": "Das ist ein Dönerladen",
|
"de": "Das ist ein Dönerladen",
|
||||||
"es": "Esta es una tienda de kebak",
|
"es": "Esta es una tienda de kebak",
|
||||||
"fr": "C'est un resto kebab"
|
"fr": "C'est un resto kebab",
|
||||||
|
"pl": "To jest stoisko z kebabem"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -290,7 +297,8 @@
|
||||||
"de": "Hier werden Burger serviert",
|
"de": "Hier werden Burger serviert",
|
||||||
"es": "Aquí se sirven hamburguesas",
|
"es": "Aquí se sirven hamburguesas",
|
||||||
"fr": "Des hamburgers sont servis ici",
|
"fr": "Des hamburgers sont servis ici",
|
||||||
"ca": "Aquí es serveixen hamburgueses"
|
"ca": "Aquí es serveixen hamburgueses",
|
||||||
|
"pl": "Są tu podawane burgery"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -402,7 +410,8 @@
|
||||||
"nl": "Is reserveren verplicht voor deze zaak?",
|
"nl": "Is reserveren verplicht voor deze zaak?",
|
||||||
"de": "Ist an diesem Ort eine Reservierung erforderlich?",
|
"de": "Ist an diesem Ort eine Reservierung erforderlich?",
|
||||||
"ca": "És necessari reservar en aquest lloc?",
|
"ca": "És necessari reservar en aquest lloc?",
|
||||||
"fr": "Est-il nécessaire de réserver à cet endroit ?"
|
"fr": "Est-il nécessaire de réserver à cet endroit ?",
|
||||||
|
"pl": "Czy w tym miejscu rezerwacja jest wymagana?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -432,7 +441,8 @@
|
||||||
"nl": "Reserveren is mogelijk voor deze zaak",
|
"nl": "Reserveren is mogelijk voor deze zaak",
|
||||||
"de": "Eine Reservierung ist an diesem Ort möglich",
|
"de": "Eine Reservierung ist an diesem Ort möglich",
|
||||||
"ca": "És possible reservar en aquest lloc",
|
"ca": "És possible reservar en aquest lloc",
|
||||||
"fr": "La réservation est possible à cet endroit"
|
"fr": "La réservation est possible à cet endroit",
|
||||||
|
"pl": "W tym miejscu możliwa jest rezerwacja"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -442,7 +452,8 @@
|
||||||
"nl": "Reserveren is niet mogelijk voor deze zaak",
|
"nl": "Reserveren is niet mogelijk voor deze zaak",
|
||||||
"de": "Eine Reservierung ist an diesem Ort nicht möglich",
|
"de": "Eine Reservierung ist an diesem Ort nicht möglich",
|
||||||
"ca": "En aquest lloc no es pot reservar",
|
"ca": "En aquest lloc no es pot reservar",
|
||||||
"fr": "Il n'est pas possible de réserver à cet endroit"
|
"fr": "Il n'est pas possible de réserver à cet endroit",
|
||||||
|
"pl": "Rezerwacja nie jest możliwa w tym miejscu"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -532,7 +543,8 @@
|
||||||
"de": "Werden hier vegetarische Gerichte angeboten?",
|
"de": "Werden hier vegetarische Gerichte angeboten?",
|
||||||
"es": "¿Este restaurante tiene una opción vegetariana?",
|
"es": "¿Este restaurante tiene una opción vegetariana?",
|
||||||
"fr": "Ce restaurant propose-t-il une option végétarienne ?",
|
"fr": "Ce restaurant propose-t-il une option végétarienne ?",
|
||||||
"ca": "Aquest restaurant té opció vegetariana?"
|
"ca": "Aquest restaurant té opció vegetariana?",
|
||||||
|
"pl": "Czy ta restauracja ma danie wegetariańskie?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -543,7 +555,8 @@
|
||||||
"de": "Hier werden keine vegetarischen Gerichte angeboten",
|
"de": "Hier werden keine vegetarischen Gerichte angeboten",
|
||||||
"es": "Sin opciones vegetarianas",
|
"es": "Sin opciones vegetarianas",
|
||||||
"fr": "Aucune option végétarienne n'est disponible",
|
"fr": "Aucune option végétarienne n'est disponible",
|
||||||
"ca": "No hi ha opcions vegetarianes disponibles"
|
"ca": "No hi ha opcions vegetarianes disponibles",
|
||||||
|
"pl": "Brak dań wegetariańskich"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -554,7 +567,8 @@
|
||||||
"de": "Hier werden nur wenige vegetarische Gerichte angeboten",
|
"de": "Hier werden nur wenige vegetarische Gerichte angeboten",
|
||||||
"es": "Algunas opciones vegetarianas",
|
"es": "Algunas opciones vegetarianas",
|
||||||
"fr": "Certaines options végétariennes sont disponibles",
|
"fr": "Certaines options végétariennes sont disponibles",
|
||||||
"ca": "Algunes opcions vegetarianes"
|
"ca": "Algunes opcions vegetarianes",
|
||||||
|
"pl": "Pewne dania wegetariańskie są dostępne"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -565,7 +579,8 @@
|
||||||
"de": "Hier werden vegetarische Gerichte angeboten",
|
"de": "Hier werden vegetarische Gerichte angeboten",
|
||||||
"es": "Opciones vegetarianas disponibles",
|
"es": "Opciones vegetarianas disponibles",
|
||||||
"fr": "Des options végétariennes sont disponibles",
|
"fr": "Des options végétariennes sont disponibles",
|
||||||
"ca": "Hi ha opcions vegetarianes disponibles"
|
"ca": "Hi ha opcions vegetarianes disponibles",
|
||||||
|
"pl": "Dostępne są dania wegetariańskie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -576,7 +591,8 @@
|
||||||
"de": "Hier werden ausschließlich vegetarische Gerichte angeboten",
|
"de": "Hier werden ausschließlich vegetarische Gerichte angeboten",
|
||||||
"es": "Todos los platos son vegetarianos",
|
"es": "Todos los platos son vegetarianos",
|
||||||
"fr": "Tous les plats sont végétariens",
|
"fr": "Tous les plats sont végétariens",
|
||||||
"ca": "Tots els plats són vegetarians"
|
"ca": "Tots els plats són vegetarians",
|
||||||
|
"pl": "Wszystkie dania są wegetariańskie"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -601,7 +617,8 @@
|
||||||
"de": "Hier werden keine veganen Gerichte angeboten",
|
"de": "Hier werden keine veganen Gerichte angeboten",
|
||||||
"es": "Sin opciones veganas disponibles",
|
"es": "Sin opciones veganas disponibles",
|
||||||
"fr": "Aucune option végétalienne disponible",
|
"fr": "Aucune option végétalienne disponible",
|
||||||
"ca": "No hi ha opcions veganes disponibles"
|
"ca": "No hi ha opcions veganes disponibles",
|
||||||
|
"pl": "Brak dań wegańskich"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -612,7 +629,8 @@
|
||||||
"de": "Hier werden nur wenige vegane Gerichte angeboten",
|
"de": "Hier werden nur wenige vegane Gerichte angeboten",
|
||||||
"es": "Alguna opciones veganas disponibles",
|
"es": "Alguna opciones veganas disponibles",
|
||||||
"fr": "Certaines options végétaliennes sont disponibles",
|
"fr": "Certaines options végétaliennes sont disponibles",
|
||||||
"ca": "Hi ha algunes opcions veganes disponibles"
|
"ca": "Hi ha algunes opcions veganes disponibles",
|
||||||
|
"pl": "Pewne dania wegańskie są dostępne"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -623,7 +641,8 @@
|
||||||
"de": "Hier werden vegane Gerichte angeboten",
|
"de": "Hier werden vegane Gerichte angeboten",
|
||||||
"es": "Opciones veganas disponibles",
|
"es": "Opciones veganas disponibles",
|
||||||
"fr": "Des options végétaliennes sont disponibles",
|
"fr": "Des options végétaliennes sont disponibles",
|
||||||
"ca": "Hi ha opcions veganes disponibles"
|
"ca": "Hi ha opcions veganes disponibles",
|
||||||
|
"pl": "Dostępne są dania wegańskie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -634,7 +653,8 @@
|
||||||
"de": "Hier werden ausschließlich vegane Gerichte angeboten",
|
"de": "Hier werden ausschließlich vegane Gerichte angeboten",
|
||||||
"es": "Todos los platos son veganos",
|
"es": "Todos los platos son veganos",
|
||||||
"fr": "Tous les plats sont végétaliens",
|
"fr": "Tous les plats sont végétaliens",
|
||||||
"ca": "Tots els plats són vegans"
|
"ca": "Tots els plats són vegans",
|
||||||
|
"pl": "Wszystkie dania są wegańskie"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -868,7 +888,8 @@
|
||||||
"fr": "La friture est faite avec de l'huile végétale",
|
"fr": "La friture est faite avec de l'huile végétale",
|
||||||
"de": "Es wird pflanzliches Fett zum Frittieren verwendet",
|
"de": "Es wird pflanzliches Fett zum Frittieren verwendet",
|
||||||
"es": "La fritura se hace con aceite vegetal",
|
"es": "La fritura se hace con aceite vegetal",
|
||||||
"ca": "El fregit es fa amb oli vegetal"
|
"ca": "El fregit es fa amb oli vegetal",
|
||||||
|
"pl": "Smażenie jest na oleju roślinnym"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -879,7 +900,8 @@
|
||||||
"fr": "La friture est faite avec de la graisse animale",
|
"fr": "La friture est faite avec de la graisse animale",
|
||||||
"de": "Es wird tierisches Fett zum Frittieren verwendet",
|
"de": "Es wird tierisches Fett zum Frittieren verwendet",
|
||||||
"es": "La fritura se hace con aceite animal",
|
"es": "La fritura se hace con aceite animal",
|
||||||
"ca": "El fregit es fa amb oli animal"
|
"ca": "El fregit es fa amb oli animal",
|
||||||
|
"pl": "Smażenie jest na oleju zwierzęcym"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -949,7 +971,9 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Reservation not required",
|
"en": "Reservation not required",
|
||||||
"nl": "Reserveren niet vereist",
|
"nl": "Reserveren niet vereist",
|
||||||
"de": "Reservierung nicht erforderlich"
|
"de": "Reservierung nicht erforderlich",
|
||||||
|
"fr": "Pas de réservation nécessaire",
|
||||||
|
"pl": "Rezerwacja nie jest wymagana"
|
||||||
},
|
},
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
"or": [
|
"or": [
|
||||||
|
@ -970,18 +994,25 @@
|
||||||
"de": "Vegetarische Gerichte im Angebot",
|
"de": "Vegetarische Gerichte im Angebot",
|
||||||
"es": "Tiene menú vegetariano",
|
"es": "Tiene menú vegetariano",
|
||||||
"fr": "A un menu végétarien",
|
"fr": "A un menu végétarien",
|
||||||
"nl": "Heeft een vegetarisch menu"
|
"nl": "Heeft een vegetarisch menu",
|
||||||
|
"pl": "Ma menu wegetariańskie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Only fastfood buisinesses"
|
"en": "Only fastfood businesses",
|
||||||
|
"de": "Nur Fastfood-Geschäfte",
|
||||||
|
"fr": "Seulement les fastfood",
|
||||||
|
"pl": "Tylko fast-foody"
|
||||||
},
|
},
|
||||||
"osmTags": "amenity=fast_food"
|
"osmTags": "amenity=fast_food"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Only restaurants"
|
"en": "Only restaurants",
|
||||||
|
"de": "Nur Restaurants",
|
||||||
|
"fr": "Seulement les restaurants",
|
||||||
|
"pl": "Tylko restauracje"
|
||||||
},
|
},
|
||||||
"osmTags": "amenity=restaurant"
|
"osmTags": "amenity=restaurant"
|
||||||
}
|
}
|
||||||
|
@ -996,7 +1027,8 @@
|
||||||
"nl": "Heeft een veganistisch menu",
|
"nl": "Heeft een veganistisch menu",
|
||||||
"de": "Vegane Gerichte im Angebot",
|
"de": "Vegane Gerichte im Angebot",
|
||||||
"es": "Tiene menú vegano",
|
"es": "Tiene menú vegano",
|
||||||
"fr": "A un menu végétalien"
|
"fr": "A un menu végétalien",
|
||||||
|
"pl": "Ma menu wegańskie"
|
||||||
},
|
},
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
"or": [
|
"or": [
|
||||||
|
@ -1063,7 +1095,8 @@
|
||||||
"en": "This is actually a pub",
|
"en": "This is actually a pub",
|
||||||
"de": "Dies ist eigentlich eine Kneipe",
|
"de": "Dies ist eigentlich eine Kneipe",
|
||||||
"fr": "C'est en fait un bar",
|
"fr": "C'est en fait un bar",
|
||||||
"nl": "Dit is eigenlijk een bruin cafe of kroeg"
|
"nl": "Dit is eigenlijk een bruin cafe of kroeg",
|
||||||
|
"pl": "To tak naprawdę jest pub"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1072,7 +1105,8 @@
|
||||||
"en": "This is actually a cafe",
|
"en": "This is actually a cafe",
|
||||||
"de": "Dies ist eigentlich ein Café",
|
"de": "Dies ist eigentlich ein Café",
|
||||||
"fr": "C'est en fait un café",
|
"fr": "C'est en fait un café",
|
||||||
"nl": "Dit is eigenlijk een cafe (een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen)"
|
"nl": "Dit is eigenlijk een cafe (een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen)",
|
||||||
|
"pl": "To tak naprawdę jest kawiarnia"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -1089,7 +1123,8 @@
|
||||||
"en": "{title()} has closed down permanently",
|
"en": "{title()} has closed down permanently",
|
||||||
"de": "{title()} wurde dauerhaft geschlossen",
|
"de": "{title()} wurde dauerhaft geschlossen",
|
||||||
"es": "{title()} ha cerrado permanentemente",
|
"es": "{title()} ha cerrado permanentemente",
|
||||||
"fr": "{title()} a fermé définitivement"
|
"fr": "{title()} a fermé définitivement",
|
||||||
|
"pl": "{title()} jest zamknięte na stałe"
|
||||||
},
|
},
|
||||||
"changesetMessage": "shop_closed"
|
"changesetMessage": "shop_closed"
|
||||||
}
|
}
|
||||||
|
@ -1162,7 +1197,7 @@
|
||||||
"en": "A layer showing restaurants and fast-food amenities (with a special rendering for friteries)",
|
"en": "A layer showing restaurants and fast-food amenities (with a special rendering for friteries)",
|
||||||
"nl": "Een laag die restaurants en fast food toont (met een speciale weergave van frituren)",
|
"nl": "Een laag die restaurants en fast food toont (met een speciale weergave van frituren)",
|
||||||
"de": "Eine Ebene mit Restaurants und Fast-Food-Einrichtungen (mit speziellem Rendering für Pommesbuden)",
|
"de": "Eine Ebene mit Restaurants und Fast-Food-Einrichtungen (mit speziellem Rendering für Pommesbuden)",
|
||||||
"es": "Una capa que muestra restaurantes y locales de comida rápida (con un renderizado especial para freidurías)",
|
"es": "Una capa mostrando restaurantes y locales de comida rápida (con un renderizado especial para friterías)",
|
||||||
"fr": "Un claque montrant les restaurants et les endroits de nourriture rapide (avec un rendu spécial pour les friteries)",
|
"fr": "Un claque montrant les restaurants et les endroits de nourriture rapide (avec un rendu spécial pour les friteries)",
|
||||||
"ca": "Una capa que mostra restaurants i locals de menjar ràpid (amb un renderitzat especial per a fregiduries)",
|
"ca": "Una capa que mostra restaurants i locals de menjar ràpid (amb un renderitzat especial per a fregiduries)",
|
||||||
"cs": "Vrstva zobrazující restaurace a zařízení rychlého občerstvení (se speciálním vykreslením pro fritézy)"
|
"cs": "Vrstva zobrazující restaurace a zařízení rychlého občerstvení (se speciálním vykreslením pro fritézy)"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"it": "Bici fantasma",
|
"it": "Bici fantasma",
|
||||||
"fr": "Vélos fantômes",
|
"fr": "Vélos fantômes",
|
||||||
"eo": "Fantombiciklo",
|
"eo": "Fantombiciklo",
|
||||||
"es": "Bicicleta blanca",
|
"es": "Bicicletas blanca",
|
||||||
"fi": "Haamupyörä",
|
"fi": "Haamupyörä",
|
||||||
"gl": "Bicicleta pantasma",
|
"gl": "Bicicleta pantasma",
|
||||||
"hu": "Emlékkerékpárok",
|
"hu": "Emlékkerékpárok",
|
||||||
|
@ -144,7 +144,9 @@
|
||||||
"de": "Im Gedenken an {name}",
|
"de": "Im Gedenken an {name}",
|
||||||
"it": "In ricordo di {name}",
|
"it": "In ricordo di {name}",
|
||||||
"fr": "En souvenir de {name}",
|
"fr": "En souvenir de {name}",
|
||||||
"ru": "В знак памяти о {name}"
|
"ru": "В знак памяти о {name}",
|
||||||
|
"ca": "En record de {name}",
|
||||||
|
"pl": "Ku pamięci {name}"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -184,14 +186,20 @@
|
||||||
"ca": "En quina pàgina web es pot trobar més informació sobre la bicicleta blanca o l'accident?"
|
"ca": "En quina pàgina web es pot trobar més informació sobre la bicicleta blanca o l'accident?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "<a href='{source}' target='_blank'>More info available</a>",
|
"special": {
|
||||||
"nl": "<a href='{source}' target='_blank'>Meer informatie</a>",
|
"type": "link",
|
||||||
"de": "<a href='{source}' target='_blank'>Mehr Informationen</a>",
|
"href": "{source}",
|
||||||
"it": "<a href='{source}' target='_blank'>Sono disponibili ulteriori informazioni</a>",
|
"text": {
|
||||||
"ru": "<a href='{source}' target='_blank'>Доступна более подробная информация</a>",
|
"en": "More info available",
|
||||||
"fr": "<a href='{source}' target='_blank'>Plus d'informations sont disponibles</a>",
|
"nl": "Meer informatie",
|
||||||
"id": "<a href='{source}' target='_blank'>Informasi lanjut tersedia</a>",
|
"de": "Mehr Informationen",
|
||||||
"ca": "<a href='{source}' target='_blank'>Més informació disponible</a>"
|
"it": "Sono disponibili ulteriori informazioni",
|
||||||
|
"ru": "Доступна более подробная информация",
|
||||||
|
"fr": "Plus d'informations sont disponibles",
|
||||||
|
"id": "Informasi lanjut tersedia",
|
||||||
|
"ca": "Més informació disponible"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
|
@ -273,6 +281,8 @@
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A layer showing memorials for cyclists, killed in road accidents",
|
"en": "A layer showing memorials for cyclists, killed in road accidents",
|
||||||
"nl": "Een laag die herdenkingsplaatsen voor verongelukte fietsers toont",
|
"nl": "Een laag die herdenkingsplaatsen voor verongelukte fietsers toont",
|
||||||
"de": "Eine Ebene mit Gedenkstätten für Radfahrer, die bei Verkehrsunfällen ums Leben gekommen sind"
|
"de": "Eine Ebene mit Gedenkstätten für Radfahrer, die bei Verkehrsunfällen ums Leben gekommen sind",
|
||||||
|
"fr": "Une couche affichant les mémoriaux en l'hommage de cyclistes tuées lors d'accidents de la route",
|
||||||
|
"pl": "Warstwa pokazujące miejsca upamiętnienia rowerzystów, którzy zginęli w wypadkach drogowych"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,9 @@
|
||||||
"render": {
|
"render": {
|
||||||
"en": "Your travelled path",
|
"en": "Your travelled path",
|
||||||
"nl": "Jouw traject",
|
"nl": "Jouw traject",
|
||||||
"de": "Deine zurückgelegte Strecke"
|
"de": "Deine zurückgelegte Strecke",
|
||||||
|
"ca": "El teu camí recorregut",
|
||||||
|
"fr": "Votre chemin"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"shownByDefault": false,
|
"shownByDefault": false,
|
||||||
|
|
|
@ -5,12 +5,14 @@
|
||||||
"nl": "Hotels",
|
"nl": "Hotels",
|
||||||
"de": "Hotels",
|
"de": "Hotels",
|
||||||
"pa_PK": "ہوٹل",
|
"pa_PK": "ہوٹل",
|
||||||
"ru": "Гостиницы"
|
"ru": "Гостиницы",
|
||||||
|
"fr": "Hôtels"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Layer showing all hotels",
|
"en": "Layer showing all hotels",
|
||||||
"nl": "Laag die alle hotels toont",
|
"nl": "Laag die alle hotels toont",
|
||||||
"de": "Eine Ebene mit Hotels"
|
"de": "Eine Ebene mit Hotels",
|
||||||
|
"fr": "Couche affichant les hôtels"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": "tourism=hotel"
|
"osmTags": "tourism=hotel"
|
||||||
|
@ -21,7 +23,8 @@
|
||||||
"en": "Hotel",
|
"en": "Hotel",
|
||||||
"nl": "Hotel",
|
"nl": "Hotel",
|
||||||
"de": "Hotel",
|
"de": "Hotel",
|
||||||
"pa_PK": "ہوٹل"
|
"pa_PK": "ہوٹل",
|
||||||
|
"fr": "Hôtel"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -29,7 +32,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Hotel {name}",
|
"en": "Hotel {name}",
|
||||||
"nl": "Hotel {name}",
|
"nl": "Hotel {name}",
|
||||||
"de": "Hotel {name}"
|
"de": "Hotel {name}",
|
||||||
|
"fr": "Hôtel {name}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -41,7 +45,8 @@
|
||||||
"nl": "een hotel",
|
"nl": "een hotel",
|
||||||
"de": "ein Hotel",
|
"de": "ein Hotel",
|
||||||
"ca": "un hotel",
|
"ca": "un hotel",
|
||||||
"ru": "гостиница"
|
"ru": "гостиница",
|
||||||
|
"fr": "un hôtel"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"tourism=hotel"
|
"tourism=hotel"
|
||||||
|
@ -70,20 +75,23 @@
|
||||||
"en": "Name of the hotel",
|
"en": "Name of the hotel",
|
||||||
"nl": "Naam van het hotel",
|
"nl": "Naam van het hotel",
|
||||||
"de": "Name des Hotels",
|
"de": "Name des Hotels",
|
||||||
"ru": "Название гостиницы"
|
"ru": "Название гостиницы",
|
||||||
|
"fr": "Nom de l'hôtel"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the name of this hotel?",
|
"en": "What is the name of this hotel?",
|
||||||
"nl": "Wat is de naam van dit hotel?",
|
"nl": "Wat is de naam van dit hotel?",
|
||||||
"de": "Wie lautet der Name des Hotels?",
|
"de": "Wie lautet der Name des Hotels?",
|
||||||
"ru": "Как называется эта гостиница?"
|
"ru": "Как называется эта гостиница?",
|
||||||
|
"fr": "Quel est le nom de cet hôtel ?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This hotel is called {name}",
|
"en": "This hotel is called {name}",
|
||||||
"nl": "Dit hotel heet {name}",
|
"nl": "Dit hotel heet {name}",
|
||||||
"de": "Der Name des Hotels lautet {name}",
|
"de": "Der Name des Hotels lautet {name}",
|
||||||
"ca": "Aquest hotel es diu {name}"
|
"ca": "Aquest hotel es diu {name}",
|
||||||
|
"fr": "Cet hôtel s'appelle {name}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"phone",
|
"phone",
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"labels": [
|
"labels": [
|
||||||
"defaults"
|
"defaults"
|
||||||
],
|
],
|
||||||
"render": "<a href='https://wikipedia.org/wiki/{wikipedia}' target='_blank'><img src='./assets/svg/wikipedia.svg' textmode='📖' alt='Wikipedia'/></a>",
|
"render": "<a href='https://wikipedia.org/wiki/{wikipedia}' target='_blank' rel='noopener'><img src='./assets/svg/wikipedia.svg' textmode='📖' alt='Wikipedia'/></a>",
|
||||||
"condition": {
|
"condition": {
|
||||||
"or": [
|
"or": [
|
||||||
"wikipedia~*",
|
"wikipedia~*",
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
{
|
{
|
||||||
"#": "ignore-image-in-then",
|
"#": "ignore-image-in-then",
|
||||||
"if": "wikipedia=",
|
"if": "wikipedia=",
|
||||||
"then": "<a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'><img src='./assets/svg/wikidata.svg' alt='WD'/></a>"
|
"then": "<a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank' rel='noopener'><img src='./assets/svg/wikidata.svg' alt='WD'/></a>"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
"labels": [
|
"labels": [
|
||||||
"defaults"
|
"defaults"
|
||||||
],
|
],
|
||||||
"render": "<a href='{website}' target='_blank'><img textmode='🌐' alt='website' src='./assets/layers/icons/website.svg'/></a>",
|
"render": "<a href='{website}' target='_blank' rel='noopener'><img textmode='🌐' alt='website' src='./assets/layers/icons/website.svg'/></a>",
|
||||||
"condition": "website~*"
|
"condition": "website~*"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -140,7 +140,7 @@
|
||||||
"labels": [
|
"labels": [
|
||||||
"defaults"
|
"defaults"
|
||||||
],
|
],
|
||||||
"render": "<a href='https://openstreetmap.org/{id}' target='_blank'><img alt='on osm' textmode='🗺️' src='./assets/svg/osm-logo-us.svg'/></a>",
|
"render": "<a href='https://openstreetmap.org/{id}' target='_blank' rel='noopener'><img alt='on osm' textmode='🗺️' src='./assets/svg/osm-logo-us.svg'/></a>",
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "id~.*/-.*",
|
"if": "id~.*/-.*",
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
{
|
{
|
||||||
"#": "ignore-image-in-then",
|
"#": "ignore-image-in-then",
|
||||||
"if": "_backend~*",
|
"if": "_backend~*",
|
||||||
"then": "<a href='{_backend}/{id}' target='_blank'><img src='./assets/svg/osm-logo-us.svg'/></a>"
|
"then": "<a href='{_backend}/{id}' target='_blank' rel='noopener'><img src='./assets/svg/osm-logo-us.svg'/></a>"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"condition": "id~(node|way|relation)/[0-9]*"
|
"condition": "id~(node|way|relation)/[0-9]*"
|
||||||
|
|
|
@ -37,7 +37,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Indoor Room {name}",
|
"en": "Indoor Room {name}",
|
||||||
"de": "Innenraum {name}",
|
"de": "Innenraum {name}",
|
||||||
"nl": "Binnenruimte {name}"
|
"nl": "Binnenruimte {name}",
|
||||||
|
"pl": "Wewnętrzne pomieszczenie {name}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -91,12 +92,14 @@
|
||||||
"en": "What is the reference number of this room?",
|
"en": "What is the reference number of this room?",
|
||||||
"de": "Wie lautet die Nummer dieses Raums?",
|
"de": "Wie lautet die Nummer dieses Raums?",
|
||||||
"nl": "Wat is het referentienummer van deze ruimte?",
|
"nl": "Wat is het referentienummer van deze ruimte?",
|
||||||
"fr": "Quel est le numéro de référence de cette pièce ?"
|
"fr": "Quel est le numéro de référence de cette pièce ?",
|
||||||
|
"pl": "Jaki jest numer referencyjny tego pomieszczenia?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This room has the reference number {ref}",
|
"en": "This room has the reference number {ref}",
|
||||||
"de": "Dieser Raum hat die Raumnummer {ref}",
|
"de": "Dieser Raum hat die Raumnummer {ref}",
|
||||||
"nl": "Deze ruimte heeft het referentienummer {ref}"
|
"nl": "Deze ruimte heeft het referentienummer {ref}",
|
||||||
|
"pl": "To pomieszczenie ma numer referencyjny {ref}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "ref",
|
"key": "ref",
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
"de": "Informationstafeln",
|
"de": "Informationstafeln",
|
||||||
"ru": "Информационные щиты",
|
"ru": "Информационные щиты",
|
||||||
"ca": "Panells d'informació",
|
"ca": "Panells d'informació",
|
||||||
"es": "Paneles informativos"
|
"es": "Paneles informativos",
|
||||||
|
"pl": "Tablice informacyjne"
|
||||||
},
|
},
|
||||||
"minzoom": 12,
|
"minzoom": 12,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -27,7 +28,8 @@
|
||||||
"de": "Informationstafel",
|
"de": "Informationstafel",
|
||||||
"ru": "Информационный щит",
|
"ru": "Информационный щит",
|
||||||
"ca": "Panell d'informació",
|
"ca": "Panell d'informació",
|
||||||
"es": "Panel informativo"
|
"es": "Panel informativo",
|
||||||
|
"pl": "Tablica informacyjna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
|
@ -47,7 +49,8 @@
|
||||||
"de": "eine Informationstafel",
|
"de": "eine Informationstafel",
|
||||||
"ru": "информационный щит",
|
"ru": "информационный щит",
|
||||||
"es": "un panel informativo",
|
"es": "un panel informativo",
|
||||||
"ca": "un tauler informatiu"
|
"ca": "un tauler informatiu",
|
||||||
|
"pl": "tablica informacyjna"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -84,6 +87,7 @@
|
||||||
"nl": "Deze laag toont informatieborden in de publieke ruimte die uitleg geven over een bezienswaardigheid (bv. uitleg over het landschap, een ruine, een kaart van de omgeving, ...)",
|
"nl": "Deze laag toont informatieborden in de publieke ruimte die uitleg geven over een bezienswaardigheid (bv. uitleg over het landschap, een ruine, een kaart van de omgeving, ...)",
|
||||||
"de": "Eine Ebene mit touristischen, straßenseitigen Informationstafeln (z. B. mit Informationen über die Landschaft, ein Gebäude, ein Merkmal, eine Karte, …)",
|
"de": "Eine Ebene mit touristischen, straßenseitigen Informationstafeln (z. B. mit Informationen über die Landschaft, ein Gebäude, ein Merkmal, eine Karte, …)",
|
||||||
"es": "Una capa que muestra paneles informativos turísticos (ej. informan sobre el paisaje, una construcción, una característica, un mapa, ...)",
|
"es": "Una capa que muestra paneles informativos turísticos (ej. informan sobre el paisaje, una construcción, una característica, un mapa, ...)",
|
||||||
"ca": "Una capa que mostra panells informatius turístics (p.e. informen sobre el paissatge, una construcció, una característica, un mapa, …)"
|
"ca": "Una capa que mostra panells informatius turístics (p.e. informen sobre el paissatge, una construcció, una característica, un mapa, …)",
|
||||||
|
"pl": "Warstwa pokazujące przydrożne tablice informacyjne dla turystów (np. informujące o krajobrazie, budynku, obiekcie, mapa, ...)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,14 +6,16 @@
|
||||||
"de": "Bordsteine",
|
"de": "Bordsteine",
|
||||||
"fr": "Bordures",
|
"fr": "Bordures",
|
||||||
"pa_PK": "کرب",
|
"pa_PK": "کرب",
|
||||||
"ru": "Бордюры"
|
"ru": "Бордюры",
|
||||||
|
"pl": "Krawężniki"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A layer showing kerbs.",
|
"en": "A layer showing kerbs.",
|
||||||
"nl": "Een laag met stoepranden.",
|
"nl": "Een laag met stoepranden.",
|
||||||
"de": "Eine Ebene, die Bordsteine zeigt.",
|
"de": "Eine Ebene, die Bordsteine zeigt.",
|
||||||
"fr": "Un calque montrant les bordures.",
|
"fr": "Un calque montrant les bordures.",
|
||||||
"ru": "Слой, изображающий бордюры."
|
"ru": "Слой, изображающий бордюры.",
|
||||||
|
"pl": "Warstwa pokazująca krawężniki."
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": "barrier=kerb"
|
"osmTags": "barrier=kerb"
|
||||||
|
@ -26,7 +28,8 @@
|
||||||
"de": "Bordstein",
|
"de": "Bordstein",
|
||||||
"fr": "Bordure",
|
"fr": "Bordure",
|
||||||
"pa_PK": "کرب",
|
"pa_PK": "کرب",
|
||||||
"ru": "Бордюр"
|
"ru": "Бордюр",
|
||||||
|
"pl": "Krawężnik"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mapRendering": [
|
"mapRendering": [
|
||||||
|
@ -72,7 +75,8 @@
|
||||||
"de": "Wie hoch ist der Bordstein?",
|
"de": "Wie hoch ist der Bordstein?",
|
||||||
"fr": "Quelle est la hauteur de ce trottoir ?",
|
"fr": "Quelle est la hauteur de ce trottoir ?",
|
||||||
"ca": "Quina és l'altura d'aquest gual?",
|
"ca": "Quina és l'altura d'aquest gual?",
|
||||||
"ru": "Какая высота у этого бордюра?"
|
"ru": "Какая высота у этого бордюра?",
|
||||||
|
"pl": "Jaka jest wysokość tego krawężnika?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -82,7 +86,8 @@
|
||||||
"nl": "Deze stoeprand is hoog (>3 cm)",
|
"nl": "Deze stoeprand is hoog (>3 cm)",
|
||||||
"de": "Der Bordstein ist erhöht (>3 cm)",
|
"de": "Der Bordstein ist erhöht (>3 cm)",
|
||||||
"fr": "Cette bordure est surélevée (>3 cm)",
|
"fr": "Cette bordure est surélevée (>3 cm)",
|
||||||
"ca": "Aquest gual està elevat (>3cm)"
|
"ca": "Aquest gual està elevat (>3cm)",
|
||||||
|
"pl": "Ten krawężnik jest wyniesiony (>3 cm)"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/kerbs/raised.svg",
|
"path": "./assets/layers/kerbs/raised.svg",
|
||||||
|
@ -97,7 +102,8 @@
|
||||||
"de": "Der Bordstein ist abgesenkt (~3 cm)",
|
"de": "Der Bordstein ist abgesenkt (~3 cm)",
|
||||||
"fr": "Cette bordure est abaissée (~3 cm)",
|
"fr": "Cette bordure est abaissée (~3 cm)",
|
||||||
"ca": "Aquest gual està rebaixat (~3 cm)",
|
"ca": "Aquest gual està rebaixat (~3 cm)",
|
||||||
"ru": "Это пониженный бордюр (~3 см)"
|
"ru": "Это пониженный бордюр (~3 см)",
|
||||||
|
"pl": "Ten krawężnik jest obniżony (~3 cm)"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/kerbs/lowered.svg",
|
"path": "./assets/layers/kerbs/lowered.svg",
|
||||||
|
@ -126,7 +132,8 @@
|
||||||
"nl": "Er is hier geen stoeprand",
|
"nl": "Er is hier geen stoeprand",
|
||||||
"de": "Hier gibt es keinen Bordstein",
|
"de": "Hier gibt es keinen Bordstein",
|
||||||
"fr": "Il n'y a pas de bordure ici",
|
"fr": "Il n'y a pas de bordure ici",
|
||||||
"ru": "Здесь нет бордюра"
|
"ru": "Здесь нет бордюра",
|
||||||
|
"pl": "Nie ma tutaj krawężnika"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true,
|
"hideInAnswer": true,
|
||||||
"icon": {
|
"icon": {
|
||||||
|
@ -140,7 +147,8 @@
|
||||||
"en": "There is a kerb of unknown height",
|
"en": "There is a kerb of unknown height",
|
||||||
"nl": "Er is een stoeprand met onbekende hoogte",
|
"nl": "Er is een stoeprand met onbekende hoogte",
|
||||||
"de": "Es gibt einen Bordstein mit unbekannter Höhe",
|
"de": "Es gibt einen Bordstein mit unbekannter Höhe",
|
||||||
"fr": "Il y a un trottoir de hauteur inconnue"
|
"fr": "Il y a un trottoir de hauteur inconnue",
|
||||||
|
"pl": "Jest krawężnik o nieznanej wysokości"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -155,7 +163,8 @@
|
||||||
"fr": "Y a-t-il un revêtement tactile sur cette bordure ?",
|
"fr": "Y a-t-il un revêtement tactile sur cette bordure ?",
|
||||||
"nl": "Is er voelbare bestrating bij deze stoeprand?",
|
"nl": "Is er voelbare bestrating bij deze stoeprand?",
|
||||||
"ca": "Hi ha una superfície podotàctil a aquest gual?",
|
"ca": "Hi ha una superfície podotàctil a aquest gual?",
|
||||||
"ru": "Есть ли тактильная плитка у этого бордюра?"
|
"ru": "Есть ли тактильная плитка у этого бордюра?",
|
||||||
|
"pl": "Czy na tym krawężniku są wypustki dla niewidomych?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -166,7 +175,8 @@
|
||||||
"fr": "Cette bordure a un revêtement podotactile.",
|
"fr": "Cette bordure a un revêtement podotactile.",
|
||||||
"nl": "Deze stoeprand heeft voelbare bestrating.",
|
"nl": "Deze stoeprand heeft voelbare bestrating.",
|
||||||
"ca": "Aquest gual té superfície podotàctil.",
|
"ca": "Aquest gual té superfície podotàctil.",
|
||||||
"ru": "У этого бордюра есть тактильная плитка."
|
"ru": "У этого бордюра есть тактильная плитка.",
|
||||||
|
"pl": "Ten krawężnik ma wypustki dla niewidomych."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -177,7 +187,8 @@
|
||||||
"fr": "Cette bordure n'a pas de revêtement podotactile.",
|
"fr": "Cette bordure n'a pas de revêtement podotactile.",
|
||||||
"nl": "Deze stoeprand heeft geen voelbare bestrating.",
|
"nl": "Deze stoeprand heeft geen voelbare bestrating.",
|
||||||
"ca": "Aquest gual no té superfície podotàctil.",
|
"ca": "Aquest gual no té superfície podotàctil.",
|
||||||
"ru": "У этого бордюра нет тактильной плитки."
|
"ru": "У этого бордюра нет тактильной плитки.",
|
||||||
|
"pl": "Ten krawężnik nie ma wypustek dla niewidomych."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -188,7 +199,8 @@
|
||||||
"fr": "Cette bordure a un pavage tactile, mais il est incorrect.",
|
"fr": "Cette bordure a un pavage tactile, mais il est incorrect.",
|
||||||
"nl": "Deze stoeprand heeft voelbare bestrating, maar deze is incorrect.",
|
"nl": "Deze stoeprand heeft voelbare bestrating, maar deze is incorrect.",
|
||||||
"ca": "La vorera té superfície podotàctil, però és incorrecte.",
|
"ca": "La vorera té superfície podotàctil, però és incorrecte.",
|
||||||
"ru": "У этого бордюра неверно выложенная тактильная плитка."
|
"ru": "У этого бордюра неверно выложенная тактильная плитка.",
|
||||||
|
"pl": "Ten krawężnik ma wypustki dla niewidomych, ale nieprawidłowe."
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
}
|
}
|
||||||
|
@ -203,14 +215,16 @@
|
||||||
"de": "Wie hoch ist der Bordstein?",
|
"de": "Wie hoch ist der Bordstein?",
|
||||||
"fr": "Quelle est la hauteur de ce trottoir ?",
|
"fr": "Quelle est la hauteur de ce trottoir ?",
|
||||||
"ca": "Quina és l'altura d'aquest gual?",
|
"ca": "Quina és l'altura d'aquest gual?",
|
||||||
"ru": "Какая высота у этого бордюра?"
|
"ru": "Какая высота у этого бордюра?",
|
||||||
|
"pl": "Jaka jest wysokość tego krawężnika?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "Kerb height: {kerb:height}",
|
"en": "Kerb height: {kerb:height}",
|
||||||
"nl": "Stoeprandhoogte: {kerb:height}",
|
"nl": "Stoeprandhoogte: {kerb:height}",
|
||||||
"de": "Bordsteinhöhe: {kerb:height}",
|
"de": "Bordsteinhöhe: {kerb:height}",
|
||||||
"fr": "Hauteur du trottoir : {kerb:height}",
|
"fr": "Hauteur du trottoir : {kerb:height}",
|
||||||
"ru": "Высота бордюра: {kerb:height}"
|
"ru": "Высота бордюра: {kerb:height}",
|
||||||
|
"pl": "Wysokość krawężnika: {kerb:height}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "kerb:height",
|
"key": "kerb:height",
|
||||||
|
@ -219,7 +233,8 @@
|
||||||
"nl": "Hoogte van de stoeprand",
|
"nl": "Hoogte van de stoeprand",
|
||||||
"de": "Höhe des Bordsteins",
|
"de": "Höhe des Bordsteins",
|
||||||
"fr": "Hauteur de la bordure",
|
"fr": "Hauteur de la bordure",
|
||||||
"ru": "Высота бордюра"
|
"ru": "Высота бордюра",
|
||||||
|
"pl": "Wysokość krawężnika"
|
||||||
},
|
},
|
||||||
"type": "pnat"
|
"type": "pnat"
|
||||||
},
|
},
|
||||||
|
@ -243,7 +258,8 @@
|
||||||
"nl": "een stoeprand",
|
"nl": "een stoeprand",
|
||||||
"de": "einen Bordstein",
|
"de": "einen Bordstein",
|
||||||
"fr": "une bordure",
|
"fr": "une bordure",
|
||||||
"ru": "бордюр"
|
"ru": "бордюр",
|
||||||
|
"pl": "krawężnik"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"barrier=kerb"
|
"barrier=kerb"
|
||||||
|
@ -271,7 +287,8 @@
|
||||||
"nl": "Alle typen stoepranden",
|
"nl": "Alle typen stoepranden",
|
||||||
"de": "Alle Bordsteine",
|
"de": "Alle Bordsteine",
|
||||||
"fr": "Tous types de bordures",
|
"fr": "Tous types de bordures",
|
||||||
"ru": "Все виды бордюров"
|
"ru": "Все виды бордюров",
|
||||||
|
"pl": "Wszystkie rodzaje krawężników"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -280,7 +297,8 @@
|
||||||
"en": "Raised kerb (>3 cm)",
|
"en": "Raised kerb (>3 cm)",
|
||||||
"nl": "Hoge stoeprand (>3 cm)",
|
"nl": "Hoge stoeprand (>3 cm)",
|
||||||
"de": "Erhöhte Bordsteine (>3 cm)",
|
"de": "Erhöhte Bordsteine (>3 cm)",
|
||||||
"fr": "Bordure surélevée (>3 cm)"
|
"fr": "Bordure surélevée (>3 cm)",
|
||||||
|
"pl": "Podniesiony krawężnik (>3 cm)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -290,7 +308,8 @@
|
||||||
"nl": "Verlaagde stoeprand (~3 cm)",
|
"nl": "Verlaagde stoeprand (~3 cm)",
|
||||||
"de": "Abgesenkte Bordsteine (~3 cm)",
|
"de": "Abgesenkte Bordsteine (~3 cm)",
|
||||||
"fr": "Bordure abaissée (~3 cm)",
|
"fr": "Bordure abaissée (~3 cm)",
|
||||||
"ru": "Пониженный бордюр (~3 см)"
|
"ru": "Пониженный бордюр (~3 см)",
|
||||||
|
"pl": "Obniżony krawężnik (~3 cm)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -310,7 +329,8 @@
|
||||||
"nl": "Geen stoeprand",
|
"nl": "Geen stoeprand",
|
||||||
"de": "Kein Bordstein",
|
"de": "Kein Bordstein",
|
||||||
"fr": "Pas de trottoir",
|
"fr": "Pas de trottoir",
|
||||||
"ru": "Нет бордюра"
|
"ru": "Нет бордюра",
|
||||||
|
"pl": "Brak krawężnika"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -319,7 +339,8 @@
|
||||||
"en": "Kerb with unknown height",
|
"en": "Kerb with unknown height",
|
||||||
"nl": "Stoeprand met onbekende hoogte",
|
"nl": "Stoeprand met onbekende hoogte",
|
||||||
"de": "Bordsteine unbekannter Höhe",
|
"de": "Bordsteine unbekannter Höhe",
|
||||||
"fr": "Bordure de hauteur inconnue"
|
"fr": "Bordure de hauteur inconnue",
|
||||||
|
"pl": "Krawężnik z nieznaną wysokością"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -342,7 +363,8 @@
|
||||||
"fr": "centimètres",
|
"fr": "centimètres",
|
||||||
"pa_PK": "سینٹیمیٹر",
|
"pa_PK": "سینٹیمیٹر",
|
||||||
"ru": "сантиметры",
|
"ru": "сантиметры",
|
||||||
"ca": "centímetres"
|
"ca": "centímetres",
|
||||||
|
"pl": "centymetry"
|
||||||
},
|
},
|
||||||
"humanSingular": {
|
"humanSingular": {
|
||||||
"en": "centimeter",
|
"en": "centimeter",
|
||||||
|
@ -351,7 +373,8 @@
|
||||||
"fr": "centimètre",
|
"fr": "centimètre",
|
||||||
"pa_PK": "سینٹیمیٹر",
|
"pa_PK": "سینٹیمیٹر",
|
||||||
"ru": "сантиметр",
|
"ru": "сантиметр",
|
||||||
"ca": "centímetre"
|
"ca": "centímetre",
|
||||||
|
"pl": "centymetr"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -367,7 +390,8 @@
|
||||||
"fr": "mètres",
|
"fr": "mètres",
|
||||||
"pa_PK": "میٹر",
|
"pa_PK": "میٹر",
|
||||||
"ru": "метры",
|
"ru": "метры",
|
||||||
"ca": "metres"
|
"ca": "metres",
|
||||||
|
"pl": "metry"
|
||||||
},
|
},
|
||||||
"humanSingular": {
|
"humanSingular": {
|
||||||
"en": "meter",
|
"en": "meter",
|
||||||
|
@ -376,7 +400,8 @@
|
||||||
"fr": "mètre",
|
"fr": "mètre",
|
||||||
"pa_PK": "میٹر",
|
"pa_PK": "میٹر",
|
||||||
"ru": "метр",
|
"ru": "метр",
|
||||||
"ca": "metre"
|
"ca": "metre",
|
||||||
|
"pl": "metr"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
"en": "Kindergartens and childcare",
|
"en": "Kindergartens and childcare",
|
||||||
"nl": "Kleuterscholen en kinderopvang",
|
"nl": "Kleuterscholen en kinderopvang",
|
||||||
"de": "Kindergärten und Kinderkrippen",
|
"de": "Kindergärten und Kinderkrippen",
|
||||||
"ca": "Llars d'infants i guarderies"
|
"ca": "Llars d'infants i guarderies",
|
||||||
|
"pl": "Przedszkola i żłobki"
|
||||||
},
|
},
|
||||||
"description": "Shows kindergartens and preschools. Both are grouped in one layer, as they are regularly confused with each other",
|
"description": "Shows kindergartens and preschools. Both are grouped in one layer, as they are regularly confused with each other",
|
||||||
"minzoom": 12,
|
"minzoom": 12,
|
||||||
|
@ -24,7 +25,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Kindergarten {name}",
|
"en": "Kindergarten {name}",
|
||||||
"nl": "Kleuterschool {name}",
|
"nl": "Kleuterschool {name}",
|
||||||
"de": "Kindergarten {name}"
|
"de": "Kindergarten {name}",
|
||||||
|
"pl": "Przedszkole {name}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -32,7 +34,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Childcare {name}",
|
"en": "Childcare {name}",
|
||||||
"nl": "Kinderopvang {name}",
|
"nl": "Kinderopvang {name}",
|
||||||
"de": "Kinderkrippe {name}"
|
"de": "Kinderkrippe {name}",
|
||||||
|
"pl": "Żłobek {name}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -43,7 +46,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What type of facility is this?",
|
"en": "What type of facility is this?",
|
||||||
"nl": "Wat voor faciliteit is dit?",
|
"nl": "Wat voor faciliteit is dit?",
|
||||||
"de": "Um welche Art von Einrichtung handelt es sich?"
|
"de": "Um welche Art von Einrichtung handelt es sich?",
|
||||||
|
"pl": "Jaki to rodzaj placówki?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -52,7 +56,8 @@
|
||||||
"en": "This is a kindergarten (also known as <i>preschool</i>) where small kids receive early education.",
|
"en": "This is a kindergarten (also known as <i>preschool</i>) where small kids receive early education.",
|
||||||
"nl": "Dit is een kleuterschool waar kindjes (voorbereidend) onderwijs krijgen.",
|
"nl": "Dit is een kleuterschool waar kindjes (voorbereidend) onderwijs krijgen.",
|
||||||
"de": "Dies ist ein Kindergarten (auch bekannt als <i>Vorschule</i>), in dem kleine Kinder eine Früherziehung erhalten.",
|
"de": "Dies ist ein Kindergarten (auch bekannt als <i>Vorschule</i>), in dem kleine Kinder eine Früherziehung erhalten.",
|
||||||
"ca": "Aquesta és una llar d'infants (també coneguda com a <i>preescolar</i>) on els nens petits reben educació primerenca."
|
"ca": "Aquesta és una llar d'infants (també coneguda com a <i>preescolar</i>) on els nens petits reben educació primerenca.",
|
||||||
|
"pl": "To jest przedszkole, gdzie małe dzieci otrzymują wczesną edukację."
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"isced:level=0",
|
"isced:level=0",
|
||||||
|
@ -79,13 +84,15 @@
|
||||||
"en": "What is the name of this facility?",
|
"en": "What is the name of this facility?",
|
||||||
"de": "Wie lautet der Name dieser Einrichtung?",
|
"de": "Wie lautet der Name dieser Einrichtung?",
|
||||||
"nl": "Wat is de naam van deze faciliteit?",
|
"nl": "Wat is de naam van deze faciliteit?",
|
||||||
"ca": "Com s'anomena aquesta instal·lació?"
|
"ca": "Com s'anomena aquesta instal·lació?",
|
||||||
|
"pl": "Jaka jest nazwa tej placówki?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This facility is named <b>{name}</b>",
|
"en": "This facility is named <b>{name}</b>",
|
||||||
"de": "Diese Einrichtung hat den Namen <b>{name}</b>",
|
"de": "Diese Einrichtung hat den Namen <b>{name}</b>",
|
||||||
"ca": "Aquesta instal·lació s'anomena <b>{name}</b>",
|
"ca": "Aquesta instal·lació s'anomena <b>{name}</b>",
|
||||||
"nl": "Deze faciliteit heet <b>{name}</b>"
|
"nl": "Deze faciliteit heet <b>{name}</b>",
|
||||||
|
"pl": "Ta placówka nazywa się <b>{name}</b>"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "name"
|
"key": "name"
|
||||||
|
@ -100,7 +107,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "When is this childcare opened?",
|
"en": "When is this childcare opened?",
|
||||||
"nl": "Wanneer is deze kinderopvang geopend?",
|
"nl": "Wanneer is deze kinderopvang geopend?",
|
||||||
"de": "Wann ist diese Kinderbetreuung geöffnet?"
|
"de": "Wann ist diese Kinderbetreuung geöffnet?",
|
||||||
|
"pl": "W jakich godzinach ten żłobek jest otwarty?"
|
||||||
},
|
},
|
||||||
"condition": "amenity=childcare"
|
"condition": "amenity=childcare"
|
||||||
}
|
}
|
||||||
|
@ -111,13 +119,15 @@
|
||||||
"en": "How much kids (at most) can be enrolled here?",
|
"en": "How much kids (at most) can be enrolled here?",
|
||||||
"nl": "Hoeveel kinderen kunnen hier terecht?",
|
"nl": "Hoeveel kinderen kunnen hier terecht?",
|
||||||
"de": "Wie viele Kinder können hier maximal angemeldet werden?",
|
"de": "Wie viele Kinder können hier maximal angemeldet werden?",
|
||||||
"ca": "Quants nens (com a màxim) es poden inscriure aquí?"
|
"ca": "Quants nens (com a màxim) es poden inscriure aquí?",
|
||||||
|
"pl": "Jak wiele dzieci (maksymalnie) może być tutaj zapisanych?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This facility has room for {capacity} kids",
|
"en": "This facility has room for {capacity} kids",
|
||||||
"nl": "Hier kunnen {capacity} kinderen terecht",
|
"nl": "Hier kunnen {capacity} kinderen terecht",
|
||||||
"de": "Diese Einrichtung bietet Platz für {capacity} Kinder",
|
"de": "Diese Einrichtung bietet Platz für {capacity} Kinder",
|
||||||
"ca": "Aquesta instal·lació té espai per a {capacity} nens"
|
"ca": "Aquesta instal·lació té espai per a {capacity} nens",
|
||||||
|
"pl": "Ta placówka ma miejsce na {capacity} dzieci"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "capacity",
|
"key": "capacity",
|
||||||
|
@ -132,7 +142,8 @@
|
||||||
"nl": "een kleuterschool",
|
"nl": "een kleuterschool",
|
||||||
"de": "einen Kindergarten",
|
"de": "einen Kindergarten",
|
||||||
"ru": "детский сад",
|
"ru": "детский сад",
|
||||||
"ca": "una llar d'infants"
|
"ca": "una llar d'infants",
|
||||||
|
"pl": "przedszkole"
|
||||||
},
|
},
|
||||||
"description": "A kindergarten (also known as <i>preschool</i>) is a school where small kids receive early education.",
|
"description": "A kindergarten (also known as <i>preschool</i>) is a school where small kids receive early education.",
|
||||||
"tags": [
|
"tags": [
|
||||||
|
@ -146,7 +157,8 @@
|
||||||
"en": "a childcare",
|
"en": "a childcare",
|
||||||
"nl": "een kinderopvang",
|
"nl": "een kinderopvang",
|
||||||
"de": "eine Kinderkrippe",
|
"de": "eine Kinderkrippe",
|
||||||
"ca": "una guarderia"
|
"ca": "una guarderia",
|
||||||
|
"pl": "żłobek"
|
||||||
},
|
},
|
||||||
"description": "A childcare (also known as <i>a nursery</i> or <i>daycare</i>) is a facility which looks after small kids, but does not offer them an education program.",
|
"description": "A childcare (also known as <i>a nursery</i> or <i>daycare</i>) is a facility which looks after small kids, but does not offer them an education program.",
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|
|
@ -23,7 +23,10 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Add a new point or add a note",
|
"en": "Add a new point or add a note",
|
||||||
"nl": "Voeg een nieuw punt of een nieuwe kaartnota toe",
|
"nl": "Voeg een nieuw punt of een nieuwe kaartnota toe",
|
||||||
"de": "Objekt oder Hinweis auf der Karte hinzufügen"
|
"de": "Objekt oder Hinweis auf der Karte hinzufügen",
|
||||||
|
"ca": "Afegeix un nou punt o nota",
|
||||||
|
"fr": "Ajouter un nouveau point ou ajouter une note",
|
||||||
|
"pl": "Dodaj nowy punkt lub dodaj notatkę"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -31,7 +34,10 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Add a new note",
|
"en": "Add a new note",
|
||||||
"nl": "Voeg een nieuwe kaartnota toe",
|
"nl": "Voeg een nieuwe kaartnota toe",
|
||||||
"de": "Hinweis hinzufügen"
|
"de": "Hinweis hinzufügen",
|
||||||
|
"ca": "Afegeix una nova nota",
|
||||||
|
"fr": "Ajouter une nouvelle note",
|
||||||
|
"pl": "Dodaj nową notatkę"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -39,7 +45,10 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Add a new point",
|
"en": "Add a new point",
|
||||||
"nl": "Voeg een nieuw punt toe",
|
"nl": "Voeg een nieuw punt toe",
|
||||||
"de": "Objekt hinzufügen"
|
"de": "Objekt hinzufügen",
|
||||||
|
"ca": "Afegeix un nou punt",
|
||||||
|
"fr": "Ajouter un nouveau point",
|
||||||
|
"pl": "Dodaj nowy punkt"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -98,7 +107,8 @@
|
||||||
"nb_NO": "Legg til nytt element",
|
"nb_NO": "Legg til nytt element",
|
||||||
"nl": "Klik hier om een item toe te voegen",
|
"nl": "Klik hier om een item toe te voegen",
|
||||||
"pt": "Adicionar novo item",
|
"pt": "Adicionar novo item",
|
||||||
"zh_Hant": "點這邊新增新項目"
|
"zh_Hant": "點這邊新增新項目",
|
||||||
|
"pl": "Kliknij tutaj, aby dodać nowy obiekt"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -111,7 +121,10 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Create a new map note",
|
"en": "Create a new map note",
|
||||||
"nl": "Maak een nieuwe kaartnotitie",
|
"nl": "Maak een nieuwe kaartnotitie",
|
||||||
"de": "Hinweis auf der Karte hinzufügen"
|
"de": "Hinweis auf der Karte hinzufügen",
|
||||||
|
"ca": "Crea una nova nota del mapa",
|
||||||
|
"fr": "Créer une nouvelle note de carte",
|
||||||
|
"pl": "Utwórz nową notatkę na mapie"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
"de": "Karten",
|
"de": "Karten",
|
||||||
"ca": "Mapes",
|
"ca": "Mapes",
|
||||||
"es": "Mapas",
|
"es": "Mapas",
|
||||||
"pa_PK": "نقشے"
|
"pa_PK": "نقشے",
|
||||||
|
"pl": "Mapy"
|
||||||
},
|
},
|
||||||
"minzoom": 12,
|
"minzoom": 12,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -30,7 +31,8 @@
|
||||||
"de": "Karte",
|
"de": "Karte",
|
||||||
"ca": "Mapa",
|
"ca": "Mapa",
|
||||||
"es": "Mapa",
|
"es": "Mapa",
|
||||||
"pa_PK": "نقشہ"
|
"pa_PK": "نقشہ",
|
||||||
|
"pl": "Mapa"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
|
@ -39,7 +41,8 @@
|
||||||
"it": "Una mappa, destinata ai turisti e che è sistemata in maniera permanente in uno spazio pubblico",
|
"it": "Una mappa, destinata ai turisti e che è sistemata in maniera permanente in uno spazio pubblico",
|
||||||
"fr": "Une carte, destinée aux touristes, installée en permanence dans l'espace public",
|
"fr": "Une carte, destinée aux touristes, installée en permanence dans l'espace public",
|
||||||
"de": "Eine Karte, die für Touristen gedacht ist und dauerhaft im öffentlichen Raum aufgestellt ist",
|
"de": "Eine Karte, die für Touristen gedacht ist und dauerhaft im öffentlichen Raum aufgestellt ist",
|
||||||
"es": "Un mapa, pensado para turistas y que está instalado de manera permanente en un espacio público"
|
"es": "Un mapa, pensado para turistas y que está instalado de manera permanente en un espacio público",
|
||||||
|
"pl": "Mapa, przeznaczona dla turystów, która jest zainstalowana w przestrzeni publicznej na stałe"
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
"images",
|
"images",
|
||||||
|
@ -47,7 +50,8 @@
|
||||||
"id": "map_type",
|
"id": "map_type",
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What type of map is shown?",
|
"en": "What type of map is shown?",
|
||||||
"de": "Was für eine Karte ist das?"
|
"de": "Was für eine Karte ist das?",
|
||||||
|
"pl": "Jaki rodzaj mapy jest pokazany?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -61,14 +65,16 @@
|
||||||
"if": "map_type=street",
|
"if": "map_type=street",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "A map with all streets or ways of an area. <p class='subtle'>The streets are mostly named; the angles, distances etc. are accurate</p>",
|
"en": "A map with all streets or ways of an area. <p class='subtle'>The streets are mostly named; the angles, distances etc. are accurate</p>",
|
||||||
"de": "Eine Karte mit allen Straßen und Wegen eines Gebietes. <p class='subtle'>Die Straßen sind meist benannt; die Winkel, die Entfernungen, etc. stimmen</p>"
|
"de": "Eine Karte mit allen Straßen und Wegen eines Gebietes. <p class='subtle'>Die Straßen sind meist benannt; die Winkel, die Entfernungen, etc. stimmen</p>",
|
||||||
|
"pl": "Mapa z wszystkimi ulicami i ścieżkami w danym obszarze. <p class='subtle'>Ulica w większości mają nazwy; kąty, odległości itp. są poprawne</p>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "map_type=scheme",
|
"if": "map_type=scheme",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a schematic map. <p class='subtle'>A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.</p> ",
|
"en": "This is a schematic map. <p class='subtle'>A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.</p> ",
|
||||||
"de": "Dies ist eine schematische Karte. <p class='subtle'>Eine skizzierte Karte mit nur wichtigen Wegen und POIs. Die Winkel, Entfernungen usw. sind lediglich illustrativ, nicht genau.</p> "
|
"de": "Dies ist eine schematische Karte. <p class='subtle'>Eine skizzierte Karte mit nur wichtigen Wegen und POIs. Die Winkel, Entfernungen usw. sind lediglich illustrativ, nicht genau.</p> ",
|
||||||
|
"pl": "To jest mapa schematyczna. <p class='subtle'>Mapa-szkic z tylko ważnymi drogami i POI. Kąty, odległości itp. są tylko ilustratywne, niedokładne.</p> "
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -84,14 +90,16 @@
|
||||||
"id": "map_size",
|
"id": "map_size",
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the size of the shown area on the map?",
|
"en": "What is the size of the shown area on the map?",
|
||||||
"de": "Was wird von der Fläche abgedeckt?"
|
"de": "Was wird von der Fläche abgedeckt?",
|
||||||
|
"pl": "Jaki jest rozmiar obszaru pokazanego na tej mapie?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
"if": "map_size=building",
|
"if": "map_size=building",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "A map of the rooms within a building",
|
"en": "A map of the rooms within a building",
|
||||||
"de": "Eine Karte der Räume innerhalb eines Gebäudes"
|
"de": "Eine Karte der Räume innerhalb eines Gebäudes",
|
||||||
|
"pl": "Plan pomieszczeń w budynku"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -105,21 +113,24 @@
|
||||||
"if": "map_size=village",
|
"if": "map_size=village",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "A map showing the village or town",
|
"en": "A map showing the village or town",
|
||||||
"de": "Eine Karte, die das Dorf oder die Stadt anzeigt"
|
"de": "Eine Karte, die das Dorf oder die Stadt anzeigt",
|
||||||
|
"pl": "Mapa pokazująca wieś lub niewielkie miasto"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "map_size=city",
|
"if": "map_size=city",
|
||||||
"then": {
|
"then": {
|
||||||
"en": " A map of a city",
|
"en": " A map of a city",
|
||||||
"de": "Stadt"
|
"de": "Stadt",
|
||||||
|
"pl": " Mapa miasta"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"if": "map_size=region",
|
"if": "map_size=region",
|
||||||
"then": {
|
"then": {
|
||||||
"en": "The map of an entire region, showing multiple cities and villages",
|
"en": "The map of an entire region, showing multiple cities and villages",
|
||||||
"de": "Region"
|
"de": "Region",
|
||||||
|
"pl": "Mapa całego regionu, pokazująca wiele miast i wsi"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -135,7 +146,8 @@
|
||||||
"fr": "Sur quelles données cette carte est-elle basée ?",
|
"fr": "Sur quelles données cette carte est-elle basée ?",
|
||||||
"de": "Auf welchen Daten basiert diese Karte?",
|
"de": "Auf welchen Daten basiert diese Karte?",
|
||||||
"es": "¿En qué datos se basa este mapa?",
|
"es": "¿En qué datos se basa este mapa?",
|
||||||
"ca": "En quines dades es basa aquest mapa?"
|
"ca": "En quines dades es basa aquest mapa?",
|
||||||
|
"pl": "Na jakich danych bazuje ta mapa?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -153,7 +165,8 @@
|
||||||
"fr": "Cette carte est basée sur OpenStreetMap",
|
"fr": "Cette carte est basée sur OpenStreetMap",
|
||||||
"de": "Diese Karte basiert auf OpenStreetMap",
|
"de": "Diese Karte basiert auf OpenStreetMap",
|
||||||
"es": "Este mapa se basa en OpenStreetMap",
|
"es": "Este mapa se basa en OpenStreetMap",
|
||||||
"ca": "Aquest mapa està basat en OpenStreetMap"
|
"ca": "Aquest mapa està basat en OpenStreetMap",
|
||||||
|
"pl": "Ta mapa bazuje na OpenStreetMap"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -167,7 +180,8 @@
|
||||||
"ru": "Эта карта основана на {map_source}",
|
"ru": "Эта карта основана на {map_source}",
|
||||||
"fr": "Cette carte est basée sur {map_source}",
|
"fr": "Cette carte est basée sur {map_source}",
|
||||||
"de": "Diese Karte basiert auf {map_source}",
|
"de": "Diese Karte basiert auf {map_source}",
|
||||||
"es": "Este mapa se basa en {map_source}"
|
"es": "Este mapa se basa en {map_source}",
|
||||||
|
"pl": "Ta mapa bazuje na {map_source}"
|
||||||
},
|
},
|
||||||
"id": "map-map_source"
|
"id": "map-map_source"
|
||||||
},
|
},
|
||||||
|
@ -197,7 +211,8 @@
|
||||||
"it": "L’attribuzione a OpenStreetMap è chiaramente specificata, inclusa la licenza ODBL",
|
"it": "L’attribuzione a OpenStreetMap è chiaramente specificata, inclusa la licenza ODBL",
|
||||||
"de": "OpenStreetMap ist eindeutig attributiert, einschließlich der ODBL-Lizenz",
|
"de": "OpenStreetMap ist eindeutig attributiert, einschließlich der ODBL-Lizenz",
|
||||||
"fr": "L’attribution est clairement inscrite ainsi que la licence ODBL",
|
"fr": "L’attribution est clairement inscrite ainsi que la licence ODBL",
|
||||||
"es": "Se atribuye claramente a OpenStreetMap, incluyendo la licencia ODBL"
|
"es": "Se atribuye claramente a OpenStreetMap, incluyendo la licencia ODBL",
|
||||||
|
"pl": "Źródło, czyli OpenStreetMap, jest w widoczny sposób podane, zawiera informację o licencji ODBL"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -285,7 +300,8 @@
|
||||||
"fr": "une carte",
|
"fr": "une carte",
|
||||||
"de": "eine Karte",
|
"de": "eine Karte",
|
||||||
"ca": "un mapa",
|
"ca": "un mapa",
|
||||||
"es": "un mapa"
|
"es": "un mapa",
|
||||||
|
"pl": "mapa"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Add a missing map",
|
"en": "Add a missing map",
|
||||||
|
@ -295,7 +311,8 @@
|
||||||
"de": "Fehlende Karte hinzufügen",
|
"de": "Fehlende Karte hinzufügen",
|
||||||
"ru": "Добавить отсутствующую карту",
|
"ru": "Добавить отсутствующую карту",
|
||||||
"es": "Añadir un mapa que falta",
|
"es": "Añadir un mapa que falta",
|
||||||
"ca": "Afegeix un mapa que falta"
|
"ca": "Afegeix un mapa que falta",
|
||||||
|
"pl": "Dodaj brakującą mapę"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
"en": "Layer showing all tasks in MapRoulette",
|
"en": "Layer showing all tasks in MapRoulette",
|
||||||
"de": "Ebene, die alle MapRoulette-Aufgaben zeigt",
|
"de": "Ebene, die alle MapRoulette-Aufgaben zeigt",
|
||||||
"nl": "Laag met alle taken uit MapRoulette",
|
"nl": "Laag met alle taken uit MapRoulette",
|
||||||
"ca": "Capa que mostra totes les tasques de MapRoulette"
|
"ca": "Capa que mostra totes les tasques de MapRoulette",
|
||||||
|
"pl": "Warstwa pokazująca wszystkie zadania w MapRoulette"
|
||||||
},
|
},
|
||||||
"mapRendering": [
|
"mapRendering": [
|
||||||
{
|
{
|
||||||
|
@ -68,7 +69,8 @@
|
||||||
"en": "Task is created",
|
"en": "Task is created",
|
||||||
"de": "Aufgabe wurde erstellt",
|
"de": "Aufgabe wurde erstellt",
|
||||||
"nl": "Taak werd gecreëerd",
|
"nl": "Taak werd gecreëerd",
|
||||||
"ca": "Es crea la tasca"
|
"ca": "Es crea la tasca",
|
||||||
|
"pl": "Zadanie jest stworzone"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -76,7 +78,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Task is fixed",
|
"en": "Task is fixed",
|
||||||
"de": "Aufgabe wurde erledigt",
|
"de": "Aufgabe wurde erledigt",
|
||||||
"nl": "Taak werd opgelost"
|
"nl": "Taak werd opgelost",
|
||||||
|
"pl": "Zadanie jest naprawione"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -84,7 +87,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Task is a false positive",
|
"en": "Task is a false positive",
|
||||||
"de": "Aufgabe ist ein falsches Positiv",
|
"de": "Aufgabe ist ein falsches Positiv",
|
||||||
"nl": "Taak was vals positief"
|
"nl": "Taak was vals positief",
|
||||||
|
"pl": "Zadanie jest fałszywie pozytywne"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -92,7 +96,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Task is skipped",
|
"en": "Task is skipped",
|
||||||
"de": "Aufgabe wurde übersprungen",
|
"de": "Aufgabe wurde übersprungen",
|
||||||
"nl": "Taak werd overgeslagen"
|
"nl": "Taak werd overgeslagen",
|
||||||
|
"pl": "Zadanie jest pominięte"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -100,7 +105,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Task is deleted",
|
"en": "Task is deleted",
|
||||||
"de": "Aufgabe wurde gelöscht",
|
"de": "Aufgabe wurde gelöscht",
|
||||||
"nl": "Taak werd verwijderd"
|
"nl": "Taak werd verwijderd",
|
||||||
|
"pl": "Zadania jest usunięte"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -108,7 +114,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Task is already fixed",
|
"en": "Task is already fixed",
|
||||||
"de": "Aufgabe wurde bereits erledigt",
|
"de": "Aufgabe wurde bereits erledigt",
|
||||||
"nl": "Taak was al opgelost"
|
"nl": "Taak was al opgelost",
|
||||||
|
"pl": "Zadania jest już wykonane"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -116,7 +123,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Task is marked as too hard",
|
"en": "Task is marked as too hard",
|
||||||
"de": "Aufgabe wurde als zu schwer markiert",
|
"de": "Aufgabe wurde als zu schwer markiert",
|
||||||
"nl": "Taak werd als te moeilijk ervaren"
|
"nl": "Taak werd als te moeilijk ervaren",
|
||||||
|
"pl": "Zadanie jest oznaczone jako zbyt trudne"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -124,7 +132,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Task is disabled",
|
"en": "Task is disabled",
|
||||||
"de": "Aufgabe wurde deaktiviert",
|
"de": "Aufgabe wurde deaktiviert",
|
||||||
"nl": "Taak is uitgeschakeld"
|
"nl": "Taak is uitgeschakeld",
|
||||||
|
"pl": "Zadanie jest wyłączone"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -140,7 +149,8 @@
|
||||||
"message": {
|
"message": {
|
||||||
"en": "Mark as fixed",
|
"en": "Mark as fixed",
|
||||||
"de": "Als behoben markieren",
|
"de": "Als behoben markieren",
|
||||||
"ca": "Marca com a solucionat"
|
"ca": "Marca com a solucionat",
|
||||||
|
"pl": "Oznacz jako naprawione"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -156,7 +166,8 @@
|
||||||
"message": {
|
"message": {
|
||||||
"en": "Mark as not found or false positive",
|
"en": "Mark as not found or false positive",
|
||||||
"de": "Als nicht gefunden oder Falschmeldung markieren",
|
"de": "Als nicht gefunden oder Falschmeldung markieren",
|
||||||
"ca": "Marca com a no trobat o com a fals positiu"
|
"ca": "Marca com a no trobat o com a fals positiu",
|
||||||
|
"pl": "Oznacz jako nieznalezione lub fałszywie pozytywne"
|
||||||
},
|
},
|
||||||
"status": "2",
|
"status": "2",
|
||||||
"image": "close"
|
"image": "close"
|
||||||
|
@ -174,7 +185,8 @@
|
||||||
"message": {
|
"message": {
|
||||||
"en": "Mark as too hard",
|
"en": "Mark as too hard",
|
||||||
"de": "Als zu schwer markieren",
|
"de": "Als zu schwer markieren",
|
||||||
"ca": "Marca com a massa complicat"
|
"ca": "Marca com a massa complicat",
|
||||||
|
"pl": "Oznacz jako zbyt trudne"
|
||||||
},
|
},
|
||||||
"status": "6",
|
"status": "6",
|
||||||
"image": "not_found"
|
"image": "not_found"
|
||||||
|
@ -186,13 +198,15 @@
|
||||||
"name": {
|
"name": {
|
||||||
"en": "MapRoulette Tasks",
|
"en": "MapRoulette Tasks",
|
||||||
"de": "MapRoulette-Aufgaben",
|
"de": "MapRoulette-Aufgaben",
|
||||||
"nl": "MapRoulette Taken"
|
"nl": "MapRoulette Taken",
|
||||||
|
"pl": "Zadania MapRoulette"
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"render": {
|
"render": {
|
||||||
"en": "MapRoulette Item: {parentName}",
|
"en": "MapRoulette Item: {parentName}",
|
||||||
"de": "MapRoulette-Element: {parentName}",
|
"de": "MapRoulette-Element: {parentName}",
|
||||||
"nl": "MapRoulette Item: {parentName}"
|
"nl": "MapRoulette Item: {parentName}",
|
||||||
|
"pl": "Obiekt MapRoulette: {parentName}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"titleIcons": [
|
"titleIcons": [
|
||||||
|
@ -209,14 +223,16 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks with all statuses",
|
"en": "Show tasks with all statuses",
|
||||||
"de": "Aufgaben mit allen Status anzeigen",
|
"de": "Aufgaben mit allen Status anzeigen",
|
||||||
"nl": "Toon taken met alle statussen"
|
"nl": "Toon taken met alle statussen",
|
||||||
|
"pl": "Pokaż zadania z wszystkimi statusami"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks that are created",
|
"en": "Show tasks that are created",
|
||||||
"de": "Aufgaben anzeigen, die erstellt wurden",
|
"de": "Aufgaben anzeigen, die erstellt wurden",
|
||||||
"nl": "Toon aangemaakte taken"
|
"nl": "Toon aangemaakte taken",
|
||||||
|
"pl": "Pokaż zadania, które zostały stworzone"
|
||||||
},
|
},
|
||||||
"osmTags": "status=0"
|
"osmTags": "status=0"
|
||||||
},
|
},
|
||||||
|
@ -256,7 +272,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks that are already fixed",
|
"en": "Show tasks that are already fixed",
|
||||||
"de": "Aufgaben anzeigen, die bereits erledigt wurden",
|
"de": "Aufgaben anzeigen, die bereits erledigt wurden",
|
||||||
"nl": "Toon al opgeloste taken"
|
"nl": "Toon al opgeloste taken",
|
||||||
|
"pl": "Pokaż zadania, które są już wykonane"
|
||||||
},
|
},
|
||||||
"osmTags": "status=5"
|
"osmTags": "status=5"
|
||||||
},
|
},
|
||||||
|
@ -264,7 +281,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks that are marked as too hard",
|
"en": "Show tasks that are marked as too hard",
|
||||||
"de": "Aufgaben anzeigen, die als zu schwierig markiert wurden",
|
"de": "Aufgaben anzeigen, die als zu schwierig markiert wurden",
|
||||||
"nl": "Toon taken die als te lastig gemarkeerd zijn"
|
"nl": "Toon taken die als te lastig gemarkeerd zijn",
|
||||||
|
"pl": "Pokaż zadania oznaczone jako zbyt trudne"
|
||||||
},
|
},
|
||||||
"osmTags": "status=6"
|
"osmTags": "status=6"
|
||||||
},
|
},
|
||||||
|
@ -272,7 +290,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks that are disabled",
|
"en": "Show tasks that are disabled",
|
||||||
"de": "Aufgaben anzeigen, die deaktiviert wurden",
|
"de": "Aufgaben anzeigen, die deaktiviert wurden",
|
||||||
"nl": "Toon uitgeschakelde taken"
|
"nl": "Toon uitgeschakelde taken",
|
||||||
|
"pl": "Pokaż zadania, które są wyłączone"
|
||||||
},
|
},
|
||||||
"osmTags": "status=9"
|
"osmTags": "status=9"
|
||||||
}
|
}
|
||||||
|
@ -291,7 +310,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Challenge name contains {search}",
|
"en": "Challenge name contains {search}",
|
||||||
"de": "Name der Kampagne enthält {search}",
|
"de": "Name der Kampagne enthält {search}",
|
||||||
"nl": "Naam uitdaging bevat {search}"
|
"nl": "Naam uitdaging bevat {search}",
|
||||||
|
"pl": "Nazwa wyzwania zawiera {search}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -309,7 +329,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Challenge ID matches {search}",
|
"en": "Challenge ID matches {search}",
|
||||||
"de": "Kampagnen ID stimmt mit {search} überein",
|
"de": "Kampagnen ID stimmt mit {search} überein",
|
||||||
"nl": "ID uitdaging is {search}"
|
"nl": "ID uitdaging is {search}",
|
||||||
|
"pl": "ID wyzwania pasuje do {search}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -154,14 +154,16 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks with all statuses",
|
"en": "Show tasks with all statuses",
|
||||||
"de": "Aufgaben mit allen Status anzeigen",
|
"de": "Aufgaben mit allen Status anzeigen",
|
||||||
"nl": "Toon alle taken, ongeacht de status"
|
"nl": "Toon alle taken, ongeacht de status",
|
||||||
|
"pl": "Pokaż zadania z wszystkimi statusami"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks that are created",
|
"en": "Show tasks that are created",
|
||||||
"de": "Aufgaben anzeigen, die erstellt wurden",
|
"de": "Aufgaben anzeigen, die erstellt wurden",
|
||||||
"nl": "Toon taken die zijn gecreëerd"
|
"nl": "Toon taken die zijn gecreëerd",
|
||||||
|
"pl": "Pokaż zadania, które zostały stworzone"
|
||||||
},
|
},
|
||||||
"osmTags": "mr_taskStatus=Created"
|
"osmTags": "mr_taskStatus=Created"
|
||||||
},
|
},
|
||||||
|
@ -169,7 +171,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Show tasks that are fixed",
|
"en": "Show tasks that are fixed",
|
||||||
"de": "Aufgaben anzeigen, die erledigt wurden",
|
"de": "Aufgaben anzeigen, die erledigt wurden",
|
||||||
"nl": "Toon taken die zijn opgelost"
|
"nl": "Toon taken die zijn opgelost",
|
||||||
|
"pl": "Pokaż zadania, które są już wykonane"
|
||||||
},
|
},
|
||||||
"osmTags": "mr_taskStatus=Fixed"
|
"osmTags": "mr_taskStatus=Fixed"
|
||||||
},
|
},
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
"ca": "Velocitat",
|
"ca": "Velocitat",
|
||||||
"de": "Höchstgeschwindigkeiten",
|
"de": "Höchstgeschwindigkeiten",
|
||||||
"nl": "Maximumsnelheid",
|
"nl": "Maximumsnelheid",
|
||||||
"pa_PK": "حد رفتار"
|
"pa_PK": "حد رفتار",
|
||||||
|
"fr": "Vitesse maximale"
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"osmTags": {
|
"osmTags": {
|
||||||
|
@ -45,7 +46,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Road without a name",
|
"en": "Road without a name",
|
||||||
"de": "Straße ohne Namen",
|
"de": "Straße ohne Namen",
|
||||||
"nl": "Weg zonder een naam"
|
"nl": "Weg zonder een naam",
|
||||||
|
"fr": "Route sans nom"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -55,7 +57,8 @@
|
||||||
"de": "Zeigt die zulässige Geschwindigkeit für jede Straße an",
|
"de": "Zeigt die zulässige Geschwindigkeit für jede Straße an",
|
||||||
"nl": "Toont de toegestane snelheid voor elke weg",
|
"nl": "Toont de toegestane snelheid voor elke weg",
|
||||||
"cs": "Zobrazuje povolenou rychlost pro každou silnici",
|
"cs": "Zobrazuje povolenou rychlost pro každou silnici",
|
||||||
"ca": "Mostra la velocitat permesa per a cada carretera"
|
"ca": "Mostra la velocitat permesa per a cada carretera",
|
||||||
|
"fr": "Affiche les vitesses autorisées sur toutes les routes"
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
{
|
{
|
||||||
|
@ -67,7 +70,7 @@
|
||||||
"fr": "La vitesse maximum autorisée sur cette route est {canonical(maxspeed)}"
|
"fr": "La vitesse maximum autorisée sur cette route est {canonical(maxspeed)}"
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"es": "Qué velocidad tiene",
|
"es": "Qué es la velocidad máxima legal uno está permitido conducir en esta carretera?",
|
||||||
"ca": "Quina és la velocitat màxima legal que es permet conduir en aquesta carretera?",
|
"ca": "Quina és la velocitat màxima legal que es permet conduir en aquesta carretera?",
|
||||||
"en": "What is the legal maximum speed one is allowed to drive on this road?",
|
"en": "What is the legal maximum speed one is allowed to drive on this road?",
|
||||||
"de": "Wie hoch ist die zulässige Höchstgeschwindigkeit, die man auf dieser Straße fahren darf?",
|
"de": "Wie hoch ist die zulässige Höchstgeschwindigkeit, die man auf dieser Straße fahren darf?",
|
||||||
|
@ -84,7 +87,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a living street, which has a maxspeed of 20km/h",
|
"en": "This is a living street, which has a maxspeed of 20km/h",
|
||||||
"nl": "Dit is een woonerf en heeft dus een maximale snelheid van 20km/h",
|
"nl": "Dit is een woonerf en heeft dus een maximale snelheid van 20km/h",
|
||||||
"de": "Dies ist eine Wohnstraße, auf der eine Höchstgeschwindigkeit von 20 km/h gilt"
|
"de": "Dies ist eine Wohnstraße, auf der eine Höchstgeschwindigkeit von 20 km/h gilt",
|
||||||
|
"fr": "C'est une zone de rencontre, avec une vitesse maximale de 20 km/h"
|
||||||
},
|
},
|
||||||
"icon": {
|
"icon": {
|
||||||
"path": "./assets/layers/maxspeed/living_street_be.svg",
|
"path": "./assets/layers/maxspeed/living_street_be.svg",
|
||||||
|
@ -152,7 +156,8 @@
|
||||||
"es": "kilómetros/hora",
|
"es": "kilómetros/hora",
|
||||||
"nl": "kilometers/uur",
|
"nl": "kilometers/uur",
|
||||||
"de": "Kilometer/Stunde",
|
"de": "Kilometer/Stunde",
|
||||||
"pa_PK": "ہر گھنٹہ وچ کیلومیٹر"
|
"pa_PK": "ہر گھنٹہ وچ کیلومیٹر",
|
||||||
|
"fr": "kilomètres/heure"
|
||||||
},
|
},
|
||||||
"humanShort": {
|
"humanShort": {
|
||||||
"en": "km/h",
|
"en": "km/h",
|
||||||
|
@ -161,7 +166,8 @@
|
||||||
"nl": "km/u",
|
"nl": "km/u",
|
||||||
"de": "km/h",
|
"de": "km/h",
|
||||||
"pa_PK": "ہر گھنٹے وچ کیلومیٹر",
|
"pa_PK": "ہر گھنٹے وچ کیلومیٹر",
|
||||||
"ru": "км/ч"
|
"ru": "км/ч",
|
||||||
|
"fr": "km/h"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -181,7 +187,8 @@
|
||||||
"es": "millas/hora",
|
"es": "millas/hora",
|
||||||
"nl": "miles/uur",
|
"nl": "miles/uur",
|
||||||
"de": "Meilen/Stunde",
|
"de": "Meilen/Stunde",
|
||||||
"pa_PK": "ہر گھنٹہ وچ میل"
|
"pa_PK": "ہر گھنٹہ وچ میل",
|
||||||
|
"fr": "miles/heure"
|
||||||
},
|
},
|
||||||
"humanShort": {
|
"humanShort": {
|
||||||
"en": "mph",
|
"en": "mph",
|
||||||
|
@ -189,7 +196,8 @@
|
||||||
"es": "mph",
|
"es": "mph",
|
||||||
"nl": "mph",
|
"nl": "mph",
|
||||||
"de": "mph",
|
"de": "mph",
|
||||||
"pa_PK": "ہر گھنٹہ وچ میل"
|
"pa_PK": "ہر گھنٹہ وچ میل",
|
||||||
|
"fr": "mph"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -360,14 +360,7 @@
|
||||||
"ca": "A quina adreça de correu electrònic es pot enviar amb preguntes i problemes amb aquest parc natural?"
|
"ca": "A quina adreça de correu electrònic es pot enviar amb preguntes i problemes amb aquest parc natural?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"nl": "<a href='mailto:{email}' target='_blank'>{email}</a>",
|
"*": "<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>"
|
||||||
"en": "<a href='mailto:{email}' target='_blank'>{email}</a>",
|
|
||||||
"ca": "<a href='mailto:{email}' target='_blank'>{email}</a>",
|
|
||||||
"de": "<a href='mailto:{email}' target='_blank'>{email}</a>",
|
|
||||||
"fr": "<a href='mailto:{email}' target='_blank'>{email}</a>",
|
|
||||||
"it": "<a href='mailto:{email}' target='_blank'>{email}</a>",
|
|
||||||
"ru": "<a href='mailto:{email}' target='_blank'>{email}</a>",
|
|
||||||
"id": "<a href='mailto:{email}' target='_blank'>{email}</a>"
|
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "email",
|
"key": "email",
|
||||||
|
@ -393,7 +386,7 @@
|
||||||
"ca": "A quin número de telèfon es pot trucar amb preguntes i problemes amb aquest parc natural?"
|
"ca": "A quin número de telèfon es pot trucar amb preguntes i problemes amb aquest parc natural?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"*": "<a href='tel:{phone}' target='_blank'>{phone}</a>"
|
"*": "<a href='tel:{phone}' target='_blank' rel='noopener'>{phone}</a>"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "phone",
|
"key": "phone",
|
||||||
|
|
|
@ -22,7 +22,8 @@
|
||||||
"ca": "Nota",
|
"ca": "Nota",
|
||||||
"de": "Notiz",
|
"de": "Notiz",
|
||||||
"es": "Nota",
|
"es": "Nota",
|
||||||
"pa_PK": "نوٹ"
|
"pa_PK": "نوٹ",
|
||||||
|
"pl": "Notatka"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -31,7 +32,8 @@
|
||||||
"en": "Closed note",
|
"en": "Closed note",
|
||||||
"nl": "Gesloten Note",
|
"nl": "Gesloten Note",
|
||||||
"de": "Geschlossene Notiz",
|
"de": "Geschlossene Notiz",
|
||||||
"es": "Nota cerrada"
|
"es": "Nota cerrada",
|
||||||
|
"pl": "Zamknięta notatka"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -180,7 +182,8 @@
|
||||||
"en": "Opened by contributor {search}",
|
"en": "Opened by contributor {search}",
|
||||||
"nl": "Geopend door bijdrager {search}",
|
"nl": "Geopend door bijdrager {search}",
|
||||||
"de": "Erstellt von {search}",
|
"de": "Erstellt von {search}",
|
||||||
"es": "Abierto por el contributor {search}"
|
"es": "Abierto por el contributor {search}",
|
||||||
|
"fr": "Ouverte par {search}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
"ru": "Смотровые башни",
|
"ru": "Смотровые башни",
|
||||||
"de": "Aussichtstürme",
|
"de": "Aussichtstürme",
|
||||||
"ca": "Torres d'observació",
|
"ca": "Torres d'observació",
|
||||||
"es": "Torres de observación"
|
"es": "Torres de observación",
|
||||||
|
"pl": "Wieże obserwacyjne"
|
||||||
},
|
},
|
||||||
"minzoom": 8,
|
"minzoom": 8,
|
||||||
"title": {
|
"title": {
|
||||||
|
@ -16,7 +17,8 @@
|
||||||
"ru": "Смотровая башня",
|
"ru": "Смотровая башня",
|
||||||
"de": "Beobachtungsturm",
|
"de": "Beobachtungsturm",
|
||||||
"ca": "Torre d'observació",
|
"ca": "Torre d'observació",
|
||||||
"es": "Torre de observación"
|
"es": "Torre de observación",
|
||||||
|
"pl": "Wieża obserwacyjna"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -27,7 +29,8 @@
|
||||||
"ru": "<b>{name}</b>",
|
"ru": "<b>{name}</b>",
|
||||||
"de": "<b>{name}</b>",
|
"de": "<b>{name}</b>",
|
||||||
"ca": "<b>{name}</b>",
|
"ca": "<b>{name}</b>",
|
||||||
"es": "<b>{name}</b>"
|
"es": "<b>{name}</b>",
|
||||||
|
"pl": "<b>{name}</b>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -36,7 +39,8 @@
|
||||||
"en": "Towers with a panoramic view",
|
"en": "Towers with a panoramic view",
|
||||||
"nl": "Torens om van het uitzicht te genieten",
|
"nl": "Torens om van het uitzicht te genieten",
|
||||||
"de": "Türme zur Aussicht auf die umgebende Landschaft",
|
"de": "Türme zur Aussicht auf die umgebende Landschaft",
|
||||||
"es": "Torres con vista panorámica"
|
"es": "Torres con vista panorámica",
|
||||||
|
"pl": "Wieże z panoramicznym widokiem"
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
"images",
|
"images",
|
||||||
|
@ -46,14 +50,16 @@
|
||||||
"nl": "Heeft deze toren een naam?",
|
"nl": "Heeft deze toren een naam?",
|
||||||
"de": "Wie ist der Name des Turms?",
|
"de": "Wie ist der Name des Turms?",
|
||||||
"es": "¿Cual es el nombre de esta torre?",
|
"es": "¿Cual es el nombre de esta torre?",
|
||||||
"ca": "Com s'anomena aquesta torre?"
|
"ca": "Com s'anomena aquesta torre?",
|
||||||
|
"pl": "Jaka jest nazwa tej wieży?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This tower is called <b>{name}</b>",
|
"en": "This tower is called <b>{name}</b>",
|
||||||
"nl": "Deze toren heet <b>{name}</b>",
|
"nl": "Deze toren heet <b>{name}</b>",
|
||||||
"de": "Der Name des Turms ist <b>{name}</b>",
|
"de": "Der Name des Turms ist <b>{name}</b>",
|
||||||
"es": "Esta torre se llama <b>{name}</b>",
|
"es": "Esta torre se llama <b>{name}</b>",
|
||||||
"ca": "Aquesta torre s'anomena <b>{name}</b>"
|
"ca": "Aquesta torre s'anomena <b>{name}</b>",
|
||||||
|
"pl": "Ta wieża nazywa się <b>{name}</b>"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "name"
|
"key": "name"
|
||||||
|
@ -66,7 +72,8 @@
|
||||||
"nl": "Deze toren heeft geen specifieke naam",
|
"nl": "Deze toren heeft geen specifieke naam",
|
||||||
"de": "Der Turm hat keinen eigenen Namen",
|
"de": "Der Turm hat keinen eigenen Namen",
|
||||||
"es": "Esta torre no tiene un nombre específico",
|
"es": "Esta torre no tiene un nombre específico",
|
||||||
"ca": "Aquesta torre no té un nom concret"
|
"ca": "Aquesta torre no té un nom concret",
|
||||||
|
"pl": "Ta wieża nie ma określonej nazwy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -78,13 +85,15 @@
|
||||||
"nl": "Hoe hoog is deze toren?",
|
"nl": "Hoe hoog is deze toren?",
|
||||||
"de": "Wie hoch ist dieser Turm?",
|
"de": "Wie hoch ist dieser Turm?",
|
||||||
"es": "¿Cual es la altura de esta torre?",
|
"es": "¿Cual es la altura de esta torre?",
|
||||||
"ca": "Quina és l'alçada d'aquesta torre?"
|
"ca": "Quina és l'alçada d'aquesta torre?",
|
||||||
|
"pl": "Jaka jest wysokość tej wieży?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This tower is {height} high",
|
"en": "This tower is {height} high",
|
||||||
"nl": "Deze toren is {height} hoog",
|
"nl": "Deze toren is {height} hoog",
|
||||||
"de": "Dieser Turm ist {height} hoch",
|
"de": "Dieser Turm ist {height} hoch",
|
||||||
"es": "Esta torre mide {height}"
|
"es": "Esta torre mide {height}",
|
||||||
|
"pl": "Ta wieża ma wysokość {height}"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "height",
|
"key": "height",
|
||||||
|
@ -109,7 +118,8 @@
|
||||||
"nl": "Deze toren is publiek toegankelijk",
|
"nl": "Deze toren is publiek toegankelijk",
|
||||||
"de": "Der Turm ist öffentlich zugänglich",
|
"de": "Der Turm ist öffentlich zugänglich",
|
||||||
"es": "Esta torre es accesible públicamente",
|
"es": "Esta torre es accesible públicamente",
|
||||||
"ca": "Aquesta torre és d'accés públic"
|
"ca": "Aquesta torre és d'accés públic",
|
||||||
|
"pl": "Ta wieża jest publicznie dostępna"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -119,7 +129,8 @@
|
||||||
"nl": "Deze toren can enkel bezocht worden met een gids",
|
"nl": "Deze toren can enkel bezocht worden met een gids",
|
||||||
"de": "Der Turm darf nur in Begleitung eines Führers betreten werden",
|
"de": "Der Turm darf nur in Begleitung eines Führers betreten werden",
|
||||||
"es": "A esta torre solo se puede acceder con un guía",
|
"es": "A esta torre solo se puede acceder con un guía",
|
||||||
"ca": "Aquesta torre només es pot visitar amb un guia"
|
"ca": "Aquesta torre només es pot visitar amb un guia",
|
||||||
|
"pl": "Ta wieża można być zwiedzana tylko z przewodnikiem"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -129,13 +140,15 @@
|
||||||
"en": "How much does one have to pay to enter this tower?",
|
"en": "How much does one have to pay to enter this tower?",
|
||||||
"nl": "Hoeveel moet men betalen om deze toren te bezoeken?",
|
"nl": "Hoeveel moet men betalen om deze toren te bezoeken?",
|
||||||
"de": "Was kostet der Zugang zu diesem Turm?",
|
"de": "Was kostet der Zugang zu diesem Turm?",
|
||||||
"es": "¿Cuánto hay que pagar para entrar en esta torre?"
|
"es": "¿Cuánto hay que pagar para entrar en esta torre?",
|
||||||
|
"pl": "Ile kosztuje wstęp na tę wieżę?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "Visiting this tower costs <b>{charge}</b>",
|
"en": "Visiting this tower costs <b>{charge}</b>",
|
||||||
"nl": "Deze toren bezoeken kost <b>{charge}</b>",
|
"nl": "Deze toren bezoeken kost <b>{charge}</b>",
|
||||||
"de": "Der Besuch des Turms kostet <b>{charge}</b>",
|
"de": "Der Besuch des Turms kostet <b>{charge}</b>",
|
||||||
"es": "Visitar esta torre cuesta <b>{charge}</b>"
|
"es": "Visitar esta torre cuesta <b>{charge}</b>",
|
||||||
|
"pl": "Wizyta na tej wieży kosztuje <b>{charge}</b>"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "charge",
|
"key": "charge",
|
||||||
|
@ -154,7 +167,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "Free to visit",
|
"en": "Free to visit",
|
||||||
"nl": "Gratis te bezoeken",
|
"nl": "Gratis te bezoeken",
|
||||||
"de": "Eintritt kostenlos"
|
"de": "Eintritt kostenlos",
|
||||||
|
"pl": "Darmowe wejście"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -186,7 +200,8 @@
|
||||||
"nl": "Hoeveel treden moet men beklimmen op de top van de toren te bereiken?",
|
"nl": "Hoeveel treden moet men beklimmen op de top van de toren te bereiken?",
|
||||||
"de": "Wie viele einzelne Stufen muss man erklimmen, um die Spitze des Turms zu erreichen?",
|
"de": "Wie viele einzelne Stufen muss man erklimmen, um die Spitze des Turms zu erreichen?",
|
||||||
"es": "¿Cuántos escalones hay que subir para llegar a la cima de esta torre?",
|
"es": "¿Cuántos escalones hay que subir para llegar a la cima de esta torre?",
|
||||||
"ca": "Quants esglaons individuals cal pujar per arribar al cim d'aquesta torre?"
|
"ca": "Quants esglaons individuals cal pujar per arribar al cim d'aquesta torre?",
|
||||||
|
"pl": "Ile pojedynczych stopni trzeba pokonać, aby dostać się na górę tej wieży?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "step_count",
|
"key": "step_count",
|
||||||
|
@ -197,7 +212,8 @@
|
||||||
"nl": "Deze toren heeft {step_count} traptredes",
|
"nl": "Deze toren heeft {step_count} traptredes",
|
||||||
"de": "Dieser Turm hat {step_count} Stufen, um die Spitze zu erreichen",
|
"de": "Dieser Turm hat {step_count} Stufen, um die Spitze zu erreichen",
|
||||||
"es": "Esta torre tiene {step_count} escalones para lllegar a l a cima",
|
"es": "Esta torre tiene {step_count} escalones para lllegar a l a cima",
|
||||||
"ca": "Aquesta torre té {step_count} esglaons per arribar al cim"
|
"ca": "Aquesta torre té {step_count} esglaons per arribar al cim",
|
||||||
|
"pl": "Ta wieża ma {step_count} stopni na górę"
|
||||||
},
|
},
|
||||||
"condition": {
|
"condition": {
|
||||||
"or": [
|
"or": [
|
||||||
|
@ -212,7 +228,8 @@
|
||||||
"en": "Does this tower have an elevator?",
|
"en": "Does this tower have an elevator?",
|
||||||
"nl": "Heeft deze toren een lift?",
|
"nl": "Heeft deze toren een lift?",
|
||||||
"de": "Hat dieser Turm einen Aufzug?",
|
"de": "Hat dieser Turm einen Aufzug?",
|
||||||
"es": "¿Tiene ascensor esta torre?"
|
"es": "¿Tiene ascensor esta torre?",
|
||||||
|
"pl": "Czy ta wieża ma windę?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -221,7 +238,8 @@
|
||||||
"en": "This tower has an elevator which takes visitors to the top",
|
"en": "This tower has an elevator which takes visitors to the top",
|
||||||
"nl": "Deze toren heeft een lift die bezoekers naar de top van de toren brengt",
|
"nl": "Deze toren heeft een lift die bezoekers naar de top van de toren brengt",
|
||||||
"de": "Dieser Turm verfügt über einen Aufzug, der die Besucher nach oben bringt",
|
"de": "Dieser Turm verfügt über einen Aufzug, der die Besucher nach oben bringt",
|
||||||
"es": "Esta torre tiene un ascensor que lleva a los visitantes a la cima"
|
"es": "Esta torre tiene un ascensor que lleva a los visitantes a la cima",
|
||||||
|
"pl": "Ta wieża ma windę, która zabiera zwiedzających na górę"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -230,7 +248,8 @@
|
||||||
"en": "This tower does not have an elevator",
|
"en": "This tower does not have an elevator",
|
||||||
"nl": "Deze toren heeft geen lift",
|
"nl": "Deze toren heeft geen lift",
|
||||||
"de": "Dieser Turm hat keinen Aufzug",
|
"de": "Dieser Turm hat keinen Aufzug",
|
||||||
"es": "Esta torre no tiene ascensor"
|
"es": "Esta torre no tiene ascensor",
|
||||||
|
"pl": "Ta wieża nie ma windy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -247,13 +266,15 @@
|
||||||
"nl": "Wie onderhoudt deze toren?",
|
"nl": "Wie onderhoudt deze toren?",
|
||||||
"de": "Wer betreibt den Turm?",
|
"de": "Wer betreibt den Turm?",
|
||||||
"es": "¿Quién mantiene esta torre?",
|
"es": "¿Quién mantiene esta torre?",
|
||||||
"ca": "Qui manté aquesta torre?"
|
"ca": "Qui manté aquesta torre?",
|
||||||
|
"pl": "Kto obsługuje tę wieżę?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"nl": "Wordt onderhouden door <b>{operator}</b>",
|
"nl": "Wordt onderhouden door <b>{operator}</b>",
|
||||||
"en": "Maintained by <b>{operator}</b>",
|
"en": "Maintained by <b>{operator}</b>",
|
||||||
"de": "Betrieben von <b>{operator}</b>",
|
"de": "Betrieben von <b>{operator}</b>",
|
||||||
"es": "Mantenida por <b>{operator}</b>"
|
"es": "Mantenida por <b>{operator}</b>",
|
||||||
|
"pl": "Obsługiwana przez <b>{operator}</b>"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "operator"
|
"key": "operator"
|
||||||
|
@ -303,7 +324,8 @@
|
||||||
"ru": " метр",
|
"ru": " метр",
|
||||||
"de": " Meter",
|
"de": " Meter",
|
||||||
"ca": " metre",
|
"ca": " metre",
|
||||||
"es": " metros"
|
"es": " metros",
|
||||||
|
"pl": " metr"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -3,13 +3,17 @@
|
||||||
"name": {
|
"name": {
|
||||||
"en": "OSM Community Index",
|
"en": "OSM Community Index",
|
||||||
"de": "OSM-Community-Index",
|
"de": "OSM-Community-Index",
|
||||||
"ca": "Índex de comunitats d'OSM"
|
"ca": "Índex de comunitats d'OSM",
|
||||||
|
"fr": "Index des communautés OSM",
|
||||||
|
"pl": "Indeks społeczności OSM"
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"render": {
|
"render": {
|
||||||
"en": "OSM Community Index",
|
"en": "OSM Community Index",
|
||||||
"de": "OSM-Community-Index",
|
"de": "OSM-Community-Index",
|
||||||
"ca": "Índex de comunitats d'OSM"
|
"ca": "Índex de comunitats d'OSM",
|
||||||
|
"fr": "Index des communautés OSM",
|
||||||
|
"pl": "Indeks społeczności OSM"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -58,7 +62,9 @@
|
||||||
"en": "Country",
|
"en": "Country",
|
||||||
"de": "Land",
|
"de": "Land",
|
||||||
"nl": "Land",
|
"nl": "Land",
|
||||||
"ca": "País"
|
"ca": "País",
|
||||||
|
"fr": "Pays",
|
||||||
|
"pl": "Kraj"
|
||||||
},
|
},
|
||||||
"osmTags": "level=country"
|
"osmTags": "level=country"
|
||||||
}
|
}
|
||||||
|
@ -85,7 +91,9 @@
|
||||||
"en": "Region",
|
"en": "Region",
|
||||||
"de": "Region",
|
"de": "Region",
|
||||||
"nl": "Regio",
|
"nl": "Regio",
|
||||||
"ca": "Regió"
|
"ca": "Regió",
|
||||||
|
"fr": "Région",
|
||||||
|
"pl": "Region"
|
||||||
},
|
},
|
||||||
"osmTags": "level=region"
|
"osmTags": "level=region"
|
||||||
}
|
}
|
||||||
|
@ -111,7 +119,9 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Territory",
|
"en": "Territory",
|
||||||
"de": "Gebiet",
|
"de": "Gebiet",
|
||||||
"ca": "Territori"
|
"ca": "Territori",
|
||||||
|
"fr": "Territoire",
|
||||||
|
"pl": "Terytorium"
|
||||||
},
|
},
|
||||||
"osmTags": "level=territory"
|
"osmTags": "level=territory"
|
||||||
}
|
}
|
||||||
|
@ -125,7 +135,9 @@
|
||||||
"en": "World",
|
"en": "World",
|
||||||
"de": "Welt",
|
"de": "Welt",
|
||||||
"nl": "Wereld",
|
"nl": "Wereld",
|
||||||
"ca": "Món"
|
"ca": "Món",
|
||||||
|
"fr": "Monde",
|
||||||
|
"pl": "Świat"
|
||||||
},
|
},
|
||||||
"osmTags": "level=world"
|
"osmTags": "level=world"
|
||||||
}
|
}
|
||||||
|
@ -138,7 +150,9 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Other Communities",
|
"en": "Other Communities",
|
||||||
"de": "Andere Communities",
|
"de": "Andere Communities",
|
||||||
"ca": "Altres Comunitats"
|
"ca": "Altres Comunitats",
|
||||||
|
"fr": "Autres communautés",
|
||||||
|
"pl": "Inne społeczności"
|
||||||
},
|
},
|
||||||
"osmTags": "level="
|
"osmTags": "level="
|
||||||
}
|
}
|
||||||
|
@ -148,6 +162,8 @@
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A layer showing the OpenStreetMap Communities",
|
"en": "A layer showing the OpenStreetMap Communities",
|
||||||
"de": "Eine Ebene aller OpenStreetMap-Communities",
|
"de": "Eine Ebene aller OpenStreetMap-Communities",
|
||||||
"ca": "Una capa que mostra les comunitats d'OpenStreetMap"
|
"ca": "Una capa que mostra les comunitats d'OpenStreetMap",
|
||||||
|
"fr": "Une couche affichant les communautés OpenStreetMap",
|
||||||
|
"pl": "Warstwa pokazująca społeczności OpenStreetMap"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,13 +4,17 @@
|
||||||
"en": "Parcel Lockers",
|
"en": "Parcel Lockers",
|
||||||
"de": "Paketschließfächer",
|
"de": "Paketschließfächer",
|
||||||
"nl": "Pakketautomaten",
|
"nl": "Pakketautomaten",
|
||||||
"ca": "bústies intel·ligents"
|
"ca": "bústies intel·ligents",
|
||||||
|
"fr": "Casiers à colis",
|
||||||
|
"pl": "Paczkomaty"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Layer showing parcel lockers for collecting and sending parcels.",
|
"en": "Layer showing parcel lockers for collecting and sending parcels.",
|
||||||
"de": "Ebene mit Paketschließfächern zum Abholen und Versenden von Paketen.",
|
"de": "Ebene mit Paketschließfächern zum Abholen und Versenden von Paketen.",
|
||||||
"nl": "Laag met pakketautomaten voor het ophalen en verzenden van paketten.",
|
"nl": "Laag met pakketautomaten voor het ophalen en verzenden van paketten.",
|
||||||
"ca": "Capa que mostra les bústies intel·ligents per recollir i enviar paquets."
|
"ca": "Capa que mostra les bústies intel·ligents per recollir i enviar paquets.",
|
||||||
|
"fr": "Couche affichant les casiers pour récupérer ou envoyer des colis.",
|
||||||
|
"pl": "Warstwa pokazująca paczkomaty umożliwiające odbieranie i wysyłanie przesyłek."
|
||||||
},
|
},
|
||||||
"minzoom": 12,
|
"minzoom": 12,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -32,7 +36,9 @@
|
||||||
"en": "a parcel locker",
|
"en": "a parcel locker",
|
||||||
"nl": "een pakketautomaat",
|
"nl": "een pakketautomaat",
|
||||||
"de": "ein Paketschließfach",
|
"de": "ein Paketschließfach",
|
||||||
"ca": "una bústia intel·ligent"
|
"ca": "una bústia intel·ligent",
|
||||||
|
"fr": "un casier à colis",
|
||||||
|
"pl": "paczkomat"
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"amenity=parcel_locker"
|
"amenity=parcel_locker"
|
||||||
|
@ -44,7 +50,9 @@
|
||||||
"en": "Parcel Locker",
|
"en": "Parcel Locker",
|
||||||
"de": "Paketschließfach",
|
"de": "Paketschließfach",
|
||||||
"nl": "Pakketautomaat",
|
"nl": "Pakketautomaat",
|
||||||
"ca": "Bústia intel·ligent"
|
"ca": "Bústia intel·ligent",
|
||||||
|
"fr": "Casier à colis",
|
||||||
|
"pl": "Paczkomat"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -53,7 +61,9 @@
|
||||||
"en": "{brand} parcel locker",
|
"en": "{brand} parcel locker",
|
||||||
"de": "{brand} Paketschließfach",
|
"de": "{brand} Paketschließfach",
|
||||||
"nl": "{brand} pakketautomaat",
|
"nl": "{brand} pakketautomaat",
|
||||||
"ca": "{brand} bústia intel·ligent"
|
"ca": "{brand} bústia intel·ligent",
|
||||||
|
"fr": "Casier à colis {brand}",
|
||||||
|
"pl": "Paczkomat {brand}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -66,7 +76,9 @@
|
||||||
"en": "What is the brand of the parcel locker?",
|
"en": "What is the brand of the parcel locker?",
|
||||||
"de": "Welche Marke hat das Paketschließfach?",
|
"de": "Welche Marke hat das Paketschließfach?",
|
||||||
"nl": "Wat is het merk van deze pakketautomaat?",
|
"nl": "Wat is het merk van deze pakketautomaat?",
|
||||||
"ca": "Quina és la marca d'aquesta bústia intel·ligent?"
|
"ca": "Quina és la marca d'aquesta bústia intel·ligent?",
|
||||||
|
"fr": "Quelle est la marque de ce casier à colis ?",
|
||||||
|
"pl": "Jakiej marki jest ten paczkomat?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "brand",
|
"key": "brand",
|
||||||
|
@ -75,7 +87,9 @@
|
||||||
"en": "Brand",
|
"en": "Brand",
|
||||||
"de": "Marke",
|
"de": "Marke",
|
||||||
"nl": "Merk",
|
"nl": "Merk",
|
||||||
"ca": "Marca"
|
"ca": "Marca",
|
||||||
|
"fr": "Marque",
|
||||||
|
"pl": "Marka"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -85,7 +99,9 @@
|
||||||
"en": "This is an Amazon Locker",
|
"en": "This is an Amazon Locker",
|
||||||
"de": "Dies ist ein Amazon Locker",
|
"de": "Dies ist ein Amazon Locker",
|
||||||
"nl": "Dit is een Amazon Locker",
|
"nl": "Dit is een Amazon Locker",
|
||||||
"ca": "Açò és un Amazon Locker"
|
"ca": "Açò és un Amazon Locker",
|
||||||
|
"fr": "C'est un Amazon Locker",
|
||||||
|
"pl": "To jest paczkomat Amazonu"
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"brand:wikidata=Q16974764",
|
"brand:wikidata=Q16974764",
|
||||||
|
@ -113,7 +129,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a DPD Pickup Station",
|
"en": "This is a DPD Pickup Station",
|
||||||
"de": "Dies ist eine DPD Pickup Station",
|
"de": "Dies ist eine DPD Pickup Station",
|
||||||
"nl": "Dit is een DPD Pickup Station"
|
"nl": "Dit is een DPD Pickup Station",
|
||||||
|
"fr": "C'est une DPD Pickup Station"
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"operator=DPD"
|
"operator=DPD"
|
||||||
|
@ -126,7 +143,9 @@
|
||||||
"en": "This is a PostNL Parcel Locker",
|
"en": "This is a PostNL Parcel Locker",
|
||||||
"nl": "Dit is een PostNL pakketautomaat",
|
"nl": "Dit is een PostNL pakketautomaat",
|
||||||
"de": "Dies ist ein PostNL-Paketschließfach",
|
"de": "Dies ist ein PostNL-Paketschließfach",
|
||||||
"ca": "Açò és una bústia intel·ligent de PostNL"
|
"ca": "Açò és una bústia intel·ligent de PostNL",
|
||||||
|
"fr": "C'est un PostNL Parcel Locker",
|
||||||
|
"pl": "To jest paczkomat PostNL"
|
||||||
},
|
},
|
||||||
"addExtraTags": [
|
"addExtraTags": [
|
||||||
"operator=PostNL"
|
"operator=PostNL"
|
||||||
|
@ -138,7 +157,9 @@
|
||||||
"en": "This is a {brand} parcel locker",
|
"en": "This is a {brand} parcel locker",
|
||||||
"de": "Dies ist ein Paketschließfach von {brand}",
|
"de": "Dies ist ein Paketschließfach von {brand}",
|
||||||
"nl": "Dit is een {brand} pakketautomaat",
|
"nl": "Dit is een {brand} pakketautomaat",
|
||||||
"ca": "Açò és una bústia intel·ligent de {brand}"
|
"ca": "Açò és una bústia intel·ligent de {brand}",
|
||||||
|
"fr": "C'est un casier à colis {brand}",
|
||||||
|
"pl": "To jest paczkomat marki {brand}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -147,7 +168,8 @@
|
||||||
"en": "What is the operator of the parcel locker?",
|
"en": "What is the operator of the parcel locker?",
|
||||||
"de": "Was ist der Betreiber des Paketschließfachs?",
|
"de": "Was ist der Betreiber des Paketschließfachs?",
|
||||||
"nl": "Wat is de beheerder van deze pakketautomaat?",
|
"nl": "Wat is de beheerder van deze pakketautomaat?",
|
||||||
"ca": "Qui gestiona aquesta bústia intel·ligent?"
|
"ca": "Qui gestiona aquesta bústia intel·ligent?",
|
||||||
|
"fr": "Quel est l'exploitant de ce casier à colis ?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "operator",
|
"key": "operator",
|
||||||
|
@ -156,14 +178,18 @@
|
||||||
"en": "Operator",
|
"en": "Operator",
|
||||||
"de": "Betreiber",
|
"de": "Betreiber",
|
||||||
"nl": "Beheerder",
|
"nl": "Beheerder",
|
||||||
"ca": "Gestor"
|
"ca": "Gestor",
|
||||||
|
"fr": "Exploitant",
|
||||||
|
"pl": "Operator"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This parcel locker is operated by {operator}",
|
"en": "This parcel locker is operated by {operator}",
|
||||||
"de": "Dieses Paketschließfach wird von {operator} betrieben",
|
"de": "Dieses Paketschließfach wird von {operator} betrieben",
|
||||||
"nl": "Deze pakketautomaat wordt beheerd door {operator}",
|
"nl": "Deze pakketautomaat wordt beheerd door {operator}",
|
||||||
"ca": "Aquesta bústia intel·ligent la gestiona {operator}"
|
"ca": "Aquesta bústia intel·ligent la gestiona {operator}",
|
||||||
|
"fr": "Ce casier à colis est exploité par {operator}",
|
||||||
|
"pl": "Ten paczkomat jest obsługiwany przez {operator}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"opening_hours_24_7",
|
"opening_hours_24_7",
|
||||||
|
@ -173,7 +199,8 @@
|
||||||
"en": "What is the reference number/identifier of this parcel locker?",
|
"en": "What is the reference number/identifier of this parcel locker?",
|
||||||
"de": "Wie lautet die Referenznummer/Kennung dieses Paketschließfachs?",
|
"de": "Wie lautet die Referenznummer/Kennung dieses Paketschließfachs?",
|
||||||
"nl": "Wat is het referentienummer/identificator van deze pakketautomaat?",
|
"nl": "Wat is het referentienummer/identificator van deze pakketautomaat?",
|
||||||
"ca": "Quin és el nombre de referència/identificador d'aquesta bústia intel·ligent?"
|
"ca": "Quin és el nombre de referència/identificador d'aquesta bústia intel·ligent?",
|
||||||
|
"fr": "Quel est le numéro de référence/d'identification de ce casier à colis ?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "ref",
|
"key": "ref",
|
||||||
|
@ -183,14 +210,16 @@
|
||||||
"de": "Referenz",
|
"de": "Referenz",
|
||||||
"nl": "Referentie",
|
"nl": "Referentie",
|
||||||
"pa_PK": "ہوالہ",
|
"pa_PK": "ہوالہ",
|
||||||
"ca": "Referència"
|
"ca": "Referència",
|
||||||
|
"fr": "Référence"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This parcel locker has the reference {ref}",
|
"en": "This parcel locker has the reference {ref}",
|
||||||
"de": "Dieses Paketschließfach hat die Kennnummer {ref}",
|
"de": "Dieses Paketschließfach hat die Kennnummer {ref}",
|
||||||
"nl": "Deze pakketautomaat heeft de referentie {ref}",
|
"nl": "Deze pakketautomaat heeft de referentie {ref}",
|
||||||
"ca": "Aquesta bústia intel·ligent té la referència {ref}"
|
"ca": "Aquesta bústia intel·ligent té la referència {ref}",
|
||||||
|
"fr": "Ce casier a colis porte la référence {ref}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -199,7 +228,9 @@
|
||||||
"en": "Can you send packages from this parcel locker?",
|
"en": "Can you send packages from this parcel locker?",
|
||||||
"de": "Können Sie von diesem Paketschließfach aus Pakete versenden?",
|
"de": "Können Sie von diesem Paketschließfach aus Pakete versenden?",
|
||||||
"nl": "Kan je pakketten versturen vanuit deze pakketautomaat?",
|
"nl": "Kan je pakketten versturen vanuit deze pakketautomaat?",
|
||||||
"ca": "Pots enviar paquets des d'aquesta bústia intel·ligent?"
|
"ca": "Pots enviar paquets des d'aquesta bústia intel·ligent?",
|
||||||
|
"fr": "Peut-on envoyer des colis depuis ce casier ?",
|
||||||
|
"pl": "Czy z tego paczkomatu można wysyłać przesyłki?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -208,7 +239,9 @@
|
||||||
"en": "You can send packages from this parcel locker",
|
"en": "You can send packages from this parcel locker",
|
||||||
"de": "Sie können Pakete von diesem Paketschließfach aus versenden",
|
"de": "Sie können Pakete von diesem Paketschließfach aus versenden",
|
||||||
"nl": "Je kan pakketten versturen vanuit deze pakketautomaat",
|
"nl": "Je kan pakketten versturen vanuit deze pakketautomaat",
|
||||||
"ca": "Pots enviar paquets des d'aquesta bústia intel·ligent"
|
"ca": "Pots enviar paquets des d'aquesta bústia intel·ligent",
|
||||||
|
"fr": "On peut envoyer des colis depuis ce casier",
|
||||||
|
"pl": "Z tego paczkomatu można wysyłać przesyłki"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -217,7 +250,9 @@
|
||||||
"en": "You <b>can't</b> send packages from this parcel locker",
|
"en": "You <b>can't</b> send packages from this parcel locker",
|
||||||
"de": "Sie können <b>keine</b> Pakete von diesem Paketschließfach aus versenden",
|
"de": "Sie können <b>keine</b> Pakete von diesem Paketschließfach aus versenden",
|
||||||
"nl": "Je kan <b>geen</b> pakketten versturen vanuit deze pakketautomaat",
|
"nl": "Je kan <b>geen</b> pakketten versturen vanuit deze pakketautomaat",
|
||||||
"ca": "<b>No pots</b> enviar paquets des d'aquesta bústia intel·ligent"
|
"ca": "<b>No pots</b> enviar paquets des d'aquesta bústia intel·ligent",
|
||||||
|
"fr": "On <b>ne peut pas</b> envoyer de colis depuis ce casier",
|
||||||
|
"pl": "Z tego paczkomatu <b>nie można</b> wysyłać przesyłek"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -229,7 +264,9 @@
|
||||||
"en": "Can you pick up packages from this parcel locker?",
|
"en": "Can you pick up packages from this parcel locker?",
|
||||||
"de": "Können Sie Pakete aus diesem Paketschließfach abholen?",
|
"de": "Können Sie Pakete aus diesem Paketschließfach abholen?",
|
||||||
"nl": "Kan je pakketten ophalen bij deze pakketautomaat?",
|
"nl": "Kan je pakketten ophalen bij deze pakketautomaat?",
|
||||||
"ca": "Pots arreplegar paquets a aquest armari intel·ligent?"
|
"ca": "Pots arreplegar paquets a aquest armari intel·ligent?",
|
||||||
|
"fr": "Peut-on retirer des colis depuis ce casier ?",
|
||||||
|
"pl": "Czy z tego paczkomatu można odbierać przesyłki?"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -238,7 +275,9 @@
|
||||||
"en": "You can pick up packages from this parcel locker",
|
"en": "You can pick up packages from this parcel locker",
|
||||||
"de": "Sie können Pakete von diesem Paketschließfach abholen",
|
"de": "Sie können Pakete von diesem Paketschließfach abholen",
|
||||||
"nl": "Je kan pakketten ophalen bij deze pakketautomaat",
|
"nl": "Je kan pakketten ophalen bij deze pakketautomaat",
|
||||||
"ca": "Pots arreplegar paquets a aquesta bústia intel·ligent"
|
"ca": "Pots arreplegar paquets a aquesta bústia intel·ligent",
|
||||||
|
"fr": "On peut retirer des colis depuis ce casier",
|
||||||
|
"pl": "Z tego paczkomatu można odbierać przesyłki"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -247,7 +286,9 @@
|
||||||
"en": "You <b>can't</b> pick up packages from this parcel locker",
|
"en": "You <b>can't</b> pick up packages from this parcel locker",
|
||||||
"de": "Sie können <b>keine</b> Pakete von diesem Paketschließfach abholen",
|
"de": "Sie können <b>keine</b> Pakete von diesem Paketschließfach abholen",
|
||||||
"nl": "Je kan <b>geen</b> pakketten ophalen bij deze pakketautomaat",
|
"nl": "Je kan <b>geen</b> pakketten ophalen bij deze pakketautomaat",
|
||||||
"ca": "<b>No pots</b> arreplegar paquets a aquesta bústia intel·ligent"
|
"ca": "<b>No pots</b> arreplegar paquets a aquesta bústia intel·ligent",
|
||||||
|
"fr": "On <b>ne peut pas</b> retirer de colis depuis ce casier",
|
||||||
|
"pl": "Z tego paczkomatu <b>nie można</b> odbierać przesyłek"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -7,7 +7,8 @@
|
||||||
"ca": "Aparcament",
|
"ca": "Aparcament",
|
||||||
"es": "Aparcamiento",
|
"es": "Aparcamiento",
|
||||||
"fr": "Lieu de stationnement",
|
"fr": "Lieu de stationnement",
|
||||||
"pa_PK": "پارکنگ"
|
"pa_PK": "پارکنگ",
|
||||||
|
"pl": "Parking"
|
||||||
},
|
},
|
||||||
"minzoom": 12,
|
"minzoom": 12,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -19,7 +20,8 @@
|
||||||
"en": "Car parking",
|
"en": "Car parking",
|
||||||
"de": "Parkplatz",
|
"de": "Parkplatz",
|
||||||
"es": "aparcamiento de coches",
|
"es": "aparcamiento de coches",
|
||||||
"fr": "Lieu de stationnement"
|
"fr": "Lieu de stationnement",
|
||||||
|
"pl": "Parking samochodowy"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
|
@ -28,7 +30,8 @@
|
||||||
"de": "Eine Ebene mit Parkplätzen",
|
"de": "Eine Ebene mit Parkplätzen",
|
||||||
"es": "Una capa que muestra aparcamientos para coches",
|
"es": "Una capa que muestra aparcamientos para coches",
|
||||||
"fr": "Un calque montrant les parkings",
|
"fr": "Un calque montrant les parkings",
|
||||||
"ca": "Una capa que mostra aparcaments per a cotxes"
|
"ca": "Una capa que mostra aparcaments per a cotxes",
|
||||||
|
"pl": "Warstwa pokazująca parkingi samochodowe"
|
||||||
},
|
},
|
||||||
"tagRenderings": [
|
"tagRenderings": [
|
||||||
"images",
|
"images",
|
||||||
|
@ -62,7 +65,8 @@
|
||||||
"nl": "Dit is een ondergrondse parkeergarage",
|
"nl": "Dit is een ondergrondse parkeergarage",
|
||||||
"de": "Dies ist eine Tiefgarage",
|
"de": "Dies ist eine Tiefgarage",
|
||||||
"fr": "C'est un parking souterrain",
|
"fr": "C'est un parking souterrain",
|
||||||
"ca": "Aquest és un aparcament subterrani"
|
"ca": "Aquest és un aparcament subterrani",
|
||||||
|
"pl": "To jest podziemny parking"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -71,7 +75,8 @@
|
||||||
"en": "This is a multi-storey parking garage",
|
"en": "This is a multi-storey parking garage",
|
||||||
"nl": "Dit is een bovengrondse parkeergarage met meerdere verdiepingen",
|
"nl": "Dit is een bovengrondse parkeergarage met meerdere verdiepingen",
|
||||||
"de": "Dies ist ein mehrstöckiges oberirdisches Parkhaus",
|
"de": "Dies ist ein mehrstöckiges oberirdisches Parkhaus",
|
||||||
"fr": "C'est un parking à plusieurs étages"
|
"fr": "C'est un parking à plusieurs étages",
|
||||||
|
"pl": "To jest wielopiętrowy parking"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -89,7 +94,8 @@
|
||||||
"en": "This is a lane for parking on the road",
|
"en": "This is a lane for parking on the road",
|
||||||
"nl": "Dit is een strook voor parkeren op de weg",
|
"nl": "Dit is een strook voor parkeren op de weg",
|
||||||
"de": "Dies ist eine Fahrspur zum Parken auf der Straße",
|
"de": "Dies ist eine Fahrspur zum Parken auf der Straße",
|
||||||
"fr": "C'est une voie de stationnement sur la route"
|
"fr": "C'est une voie de stationnement sur la route",
|
||||||
|
"pl": "To jest pas do parkowania na jezdni"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -134,7 +140,8 @@
|
||||||
"nl": "Wat voor parking is dit?",
|
"nl": "Wat voor parking is dit?",
|
||||||
"de": "Was ist das für ein Parkplatz?",
|
"de": "Was ist das für ein Parkplatz?",
|
||||||
"fr": "De quel type de stationnement s'agit-il ?",
|
"fr": "De quel type de stationnement s'agit-il ?",
|
||||||
"ca": "Quin tipus d'aparcament és aquest?"
|
"ca": "Quin tipus d'aparcament és aquest?",
|
||||||
|
"pl": "Jaki to rodzaj parkingu?"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -147,7 +154,8 @@
|
||||||
"nl": "Aantal parkeerplaatsen voor gehandicapten",
|
"nl": "Aantal parkeerplaatsen voor gehandicapten",
|
||||||
"de": "Anzahl barrierefreier Stellplätze",
|
"de": "Anzahl barrierefreier Stellplätze",
|
||||||
"fr": "Nombre de places de stationnement réservées aux personnes à mobilité réduite",
|
"fr": "Nombre de places de stationnement réservées aux personnes à mobilité réduite",
|
||||||
"ca": "Quantitat de places d'aparcament reservades per a persones amb mobilitat reduïda"
|
"ca": "Quantitat de places d'aparcament reservades per a persones amb mobilitat reduïda",
|
||||||
|
"pl": "Liczba miejsc parkingowych przeznaczonych dla niepełnosprawnych"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
|
@ -158,7 +166,8 @@
|
||||||
"nl": "Er zijn parkeerplaatsen voor gehandicapten, maar het is niet bekend hoeveel er zijn",
|
"nl": "Er zijn parkeerplaatsen voor gehandicapten, maar het is niet bekend hoeveel er zijn",
|
||||||
"de": "Es gibt barrierefreie Stellplätze, aber die Anzahl ist unbekannt",
|
"de": "Es gibt barrierefreie Stellplätze, aber die Anzahl ist unbekannt",
|
||||||
"fr": "Il y a des places de stationnement pour personnes à mobilité réduite, mais on ne sait pas combien",
|
"fr": "Il y a des places de stationnement pour personnes à mobilité réduite, mais on ne sait pas combien",
|
||||||
"ca": "Hi ha places d'aparcament per a gent amb mobilitat reduïda, però no es sap quantes"
|
"ca": "Hi ha places d'aparcament per a gent amb mobilitat reduïda, però no es sap quantes",
|
||||||
|
"pl": "Są tutaj miejsca parkingowe dla niepełnosprawnych, ale nie wiadomo ile"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -168,7 +177,8 @@
|
||||||
"en": "There are no disabled parking spots",
|
"en": "There are no disabled parking spots",
|
||||||
"nl": "Er zijn geen parkeerplaatsen voor gehandicapten",
|
"nl": "Er zijn geen parkeerplaatsen voor gehandicapten",
|
||||||
"de": "Es gibt keine barrierefreien Stellplätze",
|
"de": "Es gibt keine barrierefreien Stellplätze",
|
||||||
"fr": "Il n'y a pas de places de stationnement pour personnes à mobilité réduite"
|
"fr": "Il n'y a pas de places de stationnement pour personnes à mobilité réduite",
|
||||||
|
"pl": "Nie ma tutaj żadnych miejsc parkingowych dla niepełnosprawnych"
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -179,7 +189,8 @@
|
||||||
"nl": "Er zijn geen parkeerplaatsen voor gehandicapten",
|
"nl": "Er zijn geen parkeerplaatsen voor gehandicapten",
|
||||||
"de": "Es gibt keine barrierefreien Stellplätze",
|
"de": "Es gibt keine barrierefreien Stellplätze",
|
||||||
"fr": "Il n'y a pas de places de stationnement pour personnes à mobilité réduite",
|
"fr": "Il n'y a pas de places de stationnement pour personnes à mobilité réduite",
|
||||||
"ca": "No hi ha places d'aparcament per a persones amb mobilitat reduïda"
|
"ca": "No hi ha places d'aparcament per a persones amb mobilitat reduïda",
|
||||||
|
"pl": "Nie ma tutaj żadnych miejsc parkingowych dla niepełnosprawnych"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -188,14 +199,16 @@
|
||||||
"nl": "Hoeveel parkeerplaatsen voor gehandicapten zijn er op deze parking?",
|
"nl": "Hoeveel parkeerplaatsen voor gehandicapten zijn er op deze parking?",
|
||||||
"de": "Wie viele barrierefreie Stellplätze gibt es auf diesem Parkplatz?",
|
"de": "Wie viele barrierefreie Stellplätze gibt es auf diesem Parkplatz?",
|
||||||
"fr": "Combien y a-t-il de places de stationnement pour personnes à mobilité réduite dans ce parking ?",
|
"fr": "Combien y a-t-il de places de stationnement pour personnes à mobilité réduite dans ce parking ?",
|
||||||
"ca": "Quantes places d'aparcament per a persones amb mobilitat reduïda hi ha al parking?"
|
"ca": "Quantes places d'aparcament per a persones amb mobilitat reduïda hi ha al parking?",
|
||||||
|
"pl": "Jak wiele miejsc parkingowych dla niepełnosprawnych znajduje się na tym parkingu?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "There are {capacity:disabled} disabled parking spots",
|
"en": "There are {capacity:disabled} disabled parking spots",
|
||||||
"nl": "Er zijn {capacity:disabled} parkeerplaatsen voor gehandicapten",
|
"nl": "Er zijn {capacity:disabled} parkeerplaatsen voor gehandicapten",
|
||||||
"de": "Es gibt {capacity:disabled} barrierefreie Stellplätze",
|
"de": "Es gibt {capacity:disabled} barrierefreie Stellplätze",
|
||||||
"fr": "Il y a {capacity:disabled} places de stationnement pour personnes à mobilité réduite",
|
"fr": "Il y a {capacity:disabled} places de stationnement pour personnes à mobilité réduite",
|
||||||
"ca": "Hi ha {capacity:disabled} places d'aparcament per a discapacitats"
|
"ca": "Hi ha {capacity:disabled} places d'aparcament per a discapacitats",
|
||||||
|
"pl": "Jest {capacity:disabled} miejsc parkingowych dla niepełnosprawnych"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -208,7 +221,8 @@
|
||||||
"nl": "Aantal parkeerplaatsen",
|
"nl": "Aantal parkeerplaatsen",
|
||||||
"de": "Anzahl der Parkplätze",
|
"de": "Anzahl der Parkplätze",
|
||||||
"fr": "Nombre de places de stationnement",
|
"fr": "Nombre de places de stationnement",
|
||||||
"ca": "Quantitat de places d'aparcament"
|
"ca": "Quantitat de places d'aparcament",
|
||||||
|
"pl": "Liczba miejsc parkingowych"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
|
@ -216,14 +230,16 @@
|
||||||
"nl": "Hoeveel parkeerplaatsen zijn er op deze parking?",
|
"nl": "Hoeveel parkeerplaatsen zijn er op deze parking?",
|
||||||
"de": "Wie viele Stellplätze gibt es auf diesem Parkplatz?",
|
"de": "Wie viele Stellplätze gibt es auf diesem Parkplatz?",
|
||||||
"fr": "Combien de places de stationnement y a-t-il dans ce parking ?",
|
"fr": "Combien de places de stationnement y a-t-il dans ce parking ?",
|
||||||
"ca": "Quantes places d'aparcament hi han a aquest aparcament?"
|
"ca": "Quantes places d'aparcament hi han a aquest aparcament?",
|
||||||
|
"pl": "Ile miejsc parkingowych jest na tym parkingu?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "There are {capacity} parking spots",
|
"en": "There are {capacity} parking spots",
|
||||||
"nl": "Er zijn {capacity} parkeerplaatsen",
|
"nl": "Er zijn {capacity} parkeerplaatsen",
|
||||||
"de": "Es gibt {capacity} Stellplätze",
|
"de": "Es gibt {capacity} Stellplätze",
|
||||||
"fr": "Il y a {capacity} places de stationnement",
|
"fr": "Il y a {capacity} places de stationnement",
|
||||||
"ca": "Hi han {capacity} places d'aparcament"
|
"ca": "Hi han {capacity} places d'aparcament",
|
||||||
|
"pl": "Jest {capacity} miejsc parkingowych"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -238,7 +254,8 @@
|
||||||
"de": "einen Parkplatz",
|
"de": "einen Parkplatz",
|
||||||
"es": "un aparcamiento de coches",
|
"es": "un aparcamiento de coches",
|
||||||
"fr": "un lieu de stationnement pour voitures",
|
"fr": "un lieu de stationnement pour voitures",
|
||||||
"ca": "un aparcament per a cotxes"
|
"ca": "un aparcament per a cotxes",
|
||||||
|
"pl": "parking samochodowy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -3,12 +3,14 @@
|
||||||
"name": {
|
"name": {
|
||||||
"en": "Parking Spaces",
|
"en": "Parking Spaces",
|
||||||
"de": "Stellplätze",
|
"de": "Stellplätze",
|
||||||
"nl": "Parkeerplekken"
|
"nl": "Parkeerplekken",
|
||||||
|
"pl": "Miejsca parkingowe"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Layer showing individual parking spaces.",
|
"en": "Layer showing individual parking spaces.",
|
||||||
"de": "Ebene mit den einzelnen PKW Stellplätzen.",
|
"de": "Ebene mit den einzelnen PKW Stellplätzen.",
|
||||||
"nl": "Laag met individuele parkeerplekken."
|
"nl": "Laag met individuele parkeerplekken.",
|
||||||
|
"pl": "Warstwa pokazująca pojedyncze miejsca parkingowe."
|
||||||
},
|
},
|
||||||
"minzoom": 19,
|
"minzoom": 19,
|
||||||
"source": {
|
"source": {
|
||||||
|
@ -30,7 +32,8 @@
|
||||||
"en": "This is a normal parking space.",
|
"en": "This is a normal parking space.",
|
||||||
"de": "Dies ist ein normaler Stellplatz.",
|
"de": "Dies ist ein normaler Stellplatz.",
|
||||||
"nl": "Dit is een normale parkeerplek.",
|
"nl": "Dit is een normale parkeerplek.",
|
||||||
"ca": "És un lloc normal d'aparcament."
|
"ca": "És un lloc normal d'aparcament.",
|
||||||
|
"pl": "To jest zwykłe miejsce parkingowe."
|
||||||
},
|
},
|
||||||
"hideInAnswer": true
|
"hideInAnswer": true
|
||||||
},
|
},
|
||||||
|
@ -39,7 +42,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a normal parking space.",
|
"en": "This is a normal parking space.",
|
||||||
"de": "Dies ist ein normaler Stellplatz.",
|
"de": "Dies ist ein normaler Stellplatz.",
|
||||||
"nl": "Dit is een normale parkeerplek."
|
"nl": "Dit is een normale parkeerplek.",
|
||||||
|
"pl": "To jest zwykłe miejsce parkingowe."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -47,7 +51,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a disabled parking space.",
|
"en": "This is a disabled parking space.",
|
||||||
"de": "Dies ist ein Behindertenstellplatz.",
|
"de": "Dies ist ein Behindertenstellplatz.",
|
||||||
"nl": "Dit is een gehandicaptenparkeerplaats."
|
"nl": "Dit is een gehandicaptenparkeerplaats.",
|
||||||
|
"pl": "To jest miejsce parkingowe dla niepełnosprawnych."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -55,7 +60,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a private parking space.",
|
"en": "This is a private parking space.",
|
||||||
"de": "Dies ist ein privater Stellplatz.",
|
"de": "Dies ist ein privater Stellplatz.",
|
||||||
"nl": "Dit is een privéparkeerplek."
|
"nl": "Dit is een privéparkeerplek.",
|
||||||
|
"pl": "To jest prywatne miejsce parkingowe."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -63,7 +69,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is parking space reserved for charging vehicles.",
|
"en": "This is parking space reserved for charging vehicles.",
|
||||||
"de": "Dies ist ein Stellplatz, der für das Laden von Fahrzeugen reserviert ist.",
|
"de": "Dies ist ein Stellplatz, der für das Laden von Fahrzeugen reserviert ist.",
|
||||||
"nl": "Deze parkeerplek is gereserveerd voor het opladen van voertuigen."
|
"nl": "Deze parkeerplek is gereserveerd voor het opladen van voertuigen.",
|
||||||
|
"pl": "To miejsce parkingowe jest zarezerwowane dla ładowania pojazdów."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -71,7 +78,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is parking space reserved for deliveries.",
|
"en": "This is parking space reserved for deliveries.",
|
||||||
"de": "Dies ist ein Stellplatz, der für Lieferfahrzeuge reserviert ist.",
|
"de": "Dies ist ein Stellplatz, der für Lieferfahrzeuge reserviert ist.",
|
||||||
"nl": "Deze parkeerplek is gereserveerd voor leveringen."
|
"nl": "Deze parkeerplek is gereserveerd voor leveringen.",
|
||||||
|
"pl": "To miejsce parkingowe jest przeznaczone dla dostaw."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -95,7 +103,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is parking space reserved for buses.",
|
"en": "This is parking space reserved for buses.",
|
||||||
"de": "Dies ist ein Stellplatz, der für Busse reserviert ist.",
|
"de": "Dies ist ein Stellplatz, der für Busse reserviert ist.",
|
||||||
"nl": "Deze parkeerplek is gereserveerd voor bussen."
|
"nl": "Deze parkeerplek is gereserveerd voor bussen.",
|
||||||
|
"pl": "To miejsce parkingowe jest przeznaczone dla busów."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -103,7 +112,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is parking space reserved for motorcycles.",
|
"en": "This is parking space reserved for motorcycles.",
|
||||||
"de": "Dies ist ein Stellplatz, der für Motorräder reserviert ist.",
|
"de": "Dies ist ein Stellplatz, der für Motorräder reserviert ist.",
|
||||||
"nl": "Deze parkeerplek is gereserveerd voor motoren."
|
"nl": "Deze parkeerplek is gereserveerd voor motoren.",
|
||||||
|
"pl": "To miejsce parkingowe jest przeznaczone dla motocykli."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -111,7 +121,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a parking space reserved for parents with children.",
|
"en": "This is a parking space reserved for parents with children.",
|
||||||
"de": "Dies ist ein Stellplatz, der für Eltern mit Kindern reserviert ist.",
|
"de": "Dies ist ein Stellplatz, der für Eltern mit Kindern reserviert ist.",
|
||||||
"nl": "Deze parkeerplek is gereserveerd voor ouders met kinderen."
|
"nl": "Deze parkeerplek is gereserveerd voor ouders met kinderen.",
|
||||||
|
"pl": "To miejsce jest przeznaczone dla rodziców z dziećmi."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -119,7 +130,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a parking space reserved for staff.",
|
"en": "This is a parking space reserved for staff.",
|
||||||
"de": "Dies ist ein Stellplatz, der für das Personal reserviert ist.",
|
"de": "Dies ist ein Stellplatz, der für das Personal reserviert ist.",
|
||||||
"nl": "Deze parkeerplek is gereserveerd voor personeel."
|
"nl": "Deze parkeerplek is gereserveerd voor personeel.",
|
||||||
|
"pl": "To jest miejsce parkingowe przeznaczone dla pracowników."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -127,7 +139,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This is a parking space reserved for taxis.",
|
"en": "This is a parking space reserved for taxis.",
|
||||||
"de": "Dies ist ein Stellplatz, der für Taxis reserviert ist.",
|
"de": "Dies ist ein Stellplatz, der für Taxis reserviert ist.",
|
||||||
"nl": "Deze parkeerplek is gereserveerd voor taxis."
|
"nl": "Deze parkeerplek is gereserveerd voor taxis.",
|
||||||
|
"pl": "To miejsce parkingowe jest przeznaczone dla taksówek."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -153,7 +166,8 @@
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This parking spaces has {capacity} spaces.",
|
"en": "This parking spaces has {capacity} spaces.",
|
||||||
"de": "Dieser Parkplatz hat {capacity} Stellplätze.",
|
"de": "Dieser Parkplatz hat {capacity} Stellplätze.",
|
||||||
"nl": "Deze parkeerplek heeft {capacity} plaatsen."
|
"nl": "Deze parkeerplek heeft {capacity} plaatsen.",
|
||||||
|
"ca": "Aquests espais d'aparcament tenen {capacity} places."
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -161,7 +175,8 @@
|
||||||
"then": {
|
"then": {
|
||||||
"en": "This parking space has 1 space.",
|
"en": "This parking space has 1 space.",
|
||||||
"de": "Dieser Parkplatz hat 1 Stellplatz.",
|
"de": "Dieser Parkplatz hat 1 Stellplatz.",
|
||||||
"nl": "Deze parkeerplek heeft 1 plaats."
|
"nl": "Deze parkeerplek heeft 1 plaats.",
|
||||||
|
"ca": "Aquest espai d'aparcament té 1 plaça."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Layer with parking ticket machines to pay for parking.",
|
"en": "Layer with parking ticket machines to pay for parking.",
|
||||||
"nl": "Laag met parkeerkaartautomaten om voor parkeren te betalen.",
|
"nl": "Laag met parkeerkaartautomaten om voor parkeren te betalen.",
|
||||||
"de": "Ebene mit Parkscheinautomaten zum Bezahlen des Parkens."
|
"de": "Ebene mit Parkscheinautomaten zum Bezahlen des Parkens.",
|
||||||
|
"fr": "Couche avec les distributeurs de tickets pour payer le parking."
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"render": {
|
"render": {
|
||||||
|
@ -59,7 +60,8 @@
|
||||||
"en": "Reference number",
|
"en": "Reference number",
|
||||||
"nl": "Referentienummer",
|
"nl": "Referentienummer",
|
||||||
"de": "Referenznummer",
|
"de": "Referenznummer",
|
||||||
"ca": "Número de referència"
|
"ca": "Número de referència",
|
||||||
|
"fr": "Numéro de référence"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
|
|
|
@ -5,18 +5,21 @@
|
||||||
"de": "Apotheken",
|
"de": "Apotheken",
|
||||||
"nl": "Apotheken",
|
"nl": "Apotheken",
|
||||||
"pa_PK": "فارمیسی",
|
"pa_PK": "فارمیسی",
|
||||||
"ca": "Farmàcies"
|
"ca": "Farmàcies",
|
||||||
|
"fr": "Pharmacies"
|
||||||
},
|
},
|
||||||
"description": {
|
"description": {
|
||||||
"en": "A layer showing pharmacies, which (probably) dispense prescription drugs",
|
"en": "A layer showing pharmacies, which (probably) dispense prescription drugs",
|
||||||
"de": "Eine Ebene mit Apotheken, die (wahrscheinlich) verschreibungspflichtige Medikamente ausgeben",
|
"de": "Eine Ebene mit Apotheken, die (wahrscheinlich) verschreibungspflichtige Medikamente ausgeben",
|
||||||
"nl": "Deze laag toont apotheken, welke (waarschijnlijk) ook medicijnen onder voorschrift verkopen"
|
"nl": "Deze laag toont apotheken, welke (waarschijnlijk) ook medicijnen onder voorschrift verkopen",
|
||||||
|
"fr": "Une couche affichant les pharmacie qui (probablement) délivrent des médicaments"
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"render": {
|
"render": {
|
||||||
"en": "{name}",
|
"en": "{name}",
|
||||||
"de": "{name}",
|
"de": "{name}",
|
||||||
"nl": "{name}"
|
"nl": "{name}",
|
||||||
|
"fr": "{name}"
|
||||||
},
|
},
|
||||||
"mappings": [
|
"mappings": [
|
||||||
{
|
{
|
||||||
|
@ -25,7 +28,8 @@
|
||||||
"en": "Pharmacy",
|
"en": "Pharmacy",
|
||||||
"de": "Apotheke",
|
"de": "Apotheke",
|
||||||
"nl": "Apotheek",
|
"nl": "Apotheek",
|
||||||
"pa_PK": "فارمیسی"
|
"pa_PK": "فارمیسی",
|
||||||
|
"fr": "Pharmacie"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -48,13 +52,15 @@
|
||||||
"placeholder": {
|
"placeholder": {
|
||||||
"en": "Name of the pharmacy",
|
"en": "Name of the pharmacy",
|
||||||
"de": "Name der Apotheke",
|
"de": "Name der Apotheke",
|
||||||
"nl": "Naam van de apotheek"
|
"nl": "Naam van de apotheek",
|
||||||
|
"fr": "Nom de la pharmacie"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "What is the name of the pharmacy?",
|
"en": "What is the name of the pharmacy?",
|
||||||
"de": "Wie lautet der Name der Apotheke?",
|
"de": "Wie lautet der Name der Apotheke?",
|
||||||
"nl": "Wat is de naam van deze apotheek?"
|
"nl": "Wat is de naam van deze apotheek?",
|
||||||
|
"fr": "Quel est le nom de cette pharmacie ?"
|
||||||
},
|
},
|
||||||
"render": {
|
"render": {
|
||||||
"en": "This pharmacy is called {name}",
|
"en": "This pharmacy is called {name}",
|
||||||
|
@ -144,7 +150,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Has drive through",
|
"en": "Has drive through",
|
||||||
"de": "Bietet einen Durchfahr-Service an",
|
"de": "Bietet einen Durchfahr-Service an",
|
||||||
"nl": "Heeft een drive-through"
|
"nl": "Heeft een drive-through",
|
||||||
|
"fr": "A une drive"
|
||||||
},
|
},
|
||||||
"osmTags": "drive_through=yes"
|
"osmTags": "drive_through=yes"
|
||||||
}
|
}
|
||||||
|
@ -157,7 +164,8 @@
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Pharmacy able to provide prescription drugs",
|
"en": "Pharmacy able to provide prescription drugs",
|
||||||
"de": "Apotheke, die verschreibungspflichtige Arzneimittel ausgibt",
|
"de": "Apotheke, die verschreibungspflichtige Arzneimittel ausgibt",
|
||||||
"nl": "Deze apotheek verdeelt medicijnen met voorschrift"
|
"nl": "Deze apotheek verdeelt medicijnen met voorschrift",
|
||||||
|
"fr": "Pharmacie pouvant délivrer des médicaments sous prescription"
|
||||||
},
|
},
|
||||||
"osmTags": "dispensing=yes"
|
"osmTags": "dispensing=yes"
|
||||||
}
|
}
|
||||||
|
@ -173,7 +181,8 @@
|
||||||
"title": {
|
"title": {
|
||||||
"en": "a pharmacy",
|
"en": "a pharmacy",
|
||||||
"nl": "een apotheek",
|
"nl": "een apotheek",
|
||||||
"de": "eine Apotheke"
|
"de": "eine Apotheke",
|
||||||
|
"fr": "une pharmacie"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
"id": "Layer yang memperlihatkan kotak pos.",
|
"id": "Layer yang memperlihatkan kotak pos.",
|
||||||
"hu": "Postaládákat megjelenítő réteg.",
|
"hu": "Postaládákat megjelenítő réteg.",
|
||||||
"nl": "Deze laag toont brievenbussen.",
|
"nl": "Deze laag toont brievenbussen.",
|
||||||
"es": "La capa que muestra buzones de correo.",
|
"es": "La capa que mostrando buzones de correo.",
|
||||||
"fr": "Le calque montrant les boîtes à lettres.",
|
"fr": "Le calque montrant les boîtes à lettres.",
|
||||||
"ca": "La capa que mostra bústies de correus."
|
"ca": "La capa que mostra bústies de correus."
|
||||||
},
|
},
|
||||||
|
|
|
@ -274,7 +274,8 @@
|
||||||
"en": "Can you send a parcel here?",
|
"en": "Can you send a parcel here?",
|
||||||
"de": "Können Sie hier Pakete versenden?",
|
"de": "Können Sie hier Pakete versenden?",
|
||||||
"nl": "Kan je hier pakketten versturen?",
|
"nl": "Kan je hier pakketten versturen?",
|
||||||
"ca": "Pots enviar un paquet des d'aquí?"
|
"ca": "Pots enviar un paquet des d'aquí?",
|
||||||
|
"pl": "Czy można tutaj wysłać paczkę?"
|
||||||
},
|
},
|
||||||
"freeform": {
|
"freeform": {
|
||||||
"key": "post_office:parcel_from",
|
"key": "post_office:parcel_from",
|
||||||
|
@ -287,7 +288,8 @@
|
||||||
"en": "You can send parcels here",
|
"en": "You can send parcels here",
|
||||||
"de": "Hier können Sie Pakete versenden",
|
"de": "Hier können Sie Pakete versenden",
|
||||||
"nl": "Je kan hier pakketten versturen",
|
"nl": "Je kan hier pakketten versturen",
|
||||||
"ca": "Pots enviar paquets des d'aquí"
|
"ca": "Pots enviar paquets des d'aquí",
|
||||||
|
"pl": "Można tutaj wysłać paczki"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -296,7 +298,8 @@
|
||||||
"en": "You can't send parcels here",
|
"en": "You can't send parcels here",
|
||||||
"de": "Sie können hier keine Pakete versenden",
|
"de": "Sie können hier keine Pakete versenden",
|
||||||
"nl": "Je kan hier geen pakketten versturen",
|
"nl": "Je kan hier geen pakketten versturen",
|
||||||
"ca": "No pots enviar paquets des d'aquí"
|
"ca": "No pots enviar paquets des d'aquí",
|
||||||
|
"pl": "Nie można tutaj wysłać paczek"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -406,6 +409,36 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "has_atm",
|
||||||
|
"question": {
|
||||||
|
"en": "Does this post office have an ATM?",
|
||||||
|
"nl": "Heeft dit postkantoor een bankautomaat?"
|
||||||
|
},
|
||||||
|
"mappings": [
|
||||||
|
{
|
||||||
|
"if": "atm=yes",
|
||||||
|
"then": {
|
||||||
|
"en": "This post office has an ATM",
|
||||||
|
"nl": "Dit postkantoor heeft een bankautomaat"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "atm=no",
|
||||||
|
"then": {
|
||||||
|
"en": "This post office does <b>not</b> have an ATM",
|
||||||
|
"nl": "Dit postkantoor heeft <b>geen</b> bankautomaaat"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": "atm=separate",
|
||||||
|
"then": {
|
||||||
|
"en": "This post office does have an ATM, but it is mapped as a different icon",
|
||||||
|
"nl": "Dit postkantoor heeft een bankautomaat, maar deze staat apart op de kaart aangeduid"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"presets": [
|
"presets": [
|
||||||
|
|
|
@ -334,7 +334,8 @@
|
||||||
"fr": "Fait partie du réseau Little Free Library",
|
"fr": "Fait partie du réseau Little Free Library",
|
||||||
"it": "Fa parte della rete 'Little Free Library'",
|
"it": "Fa parte della rete 'Little Free Library'",
|
||||||
"hu": "A „Little Free Library” hálózat része",
|
"hu": "A „Little Free Library” hálózat része",
|
||||||
"es": "Parte de la red 'Little Free Library'"
|
"es": "Parte de la red 'Little Free Library'",
|
||||||
|
"pl": "Część sieci \"Little Free Library\""
|
||||||
},
|
},
|
||||||
"if": {
|
"if": {
|
||||||
"and": [
|
"and": [
|
||||||
|
@ -438,13 +439,19 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"render": {
|
"render": {
|
||||||
"en": "More info on <a href='{website}' target='_blank'>the website</a>",
|
"special": {
|
||||||
"nl": "Meer info op <a href='{website}' target='_blank'>de website</a>",
|
"type": "link",
|
||||||
"de": "Weitere Informationen auf <a href='{website}' target='_blank'>der Webseite</a>",
|
"href": "{website}",
|
||||||
"fr": "Plus d'infos sur <a href='{website}' target='_blank'>le site web</a>",
|
"text": {
|
||||||
"ru": "Более подробная информация <a href='{website}' target='_blank'>на сайте</a>",
|
"en": "More info on the website",
|
||||||
"it": "Maggiori informazioni sul <a href='{website}' target='_blank'>sito web</a>",
|
"nl": "Meer info op de website",
|
||||||
"hu": "További információ <a href='{website}' target='_blank'>ezen a weboldalon</a>"
|
"de": "Weitere Informationen auf der Webseite",
|
||||||
|
"fr": "Plus d'infos sur le site web",
|
||||||
|
"ru": "Более подробная информация на сайте",
|
||||||
|
"it": "Maggiori informazioni sul sito web",
|
||||||
|
"hu": "További információ ezen a weboldalon"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"question": {
|
"question": {
|
||||||
"en": "Is there a website with more information about this public bookcase?",
|
"en": "Is there a website with more information about this public bookcase?",
|
||||||
|
|
39
assets/layers/questions/denominations/chf/1000chf.svg
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<svg width="700" height="1230" viewBox="0 0 700 1230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="700" height="1230" fill="#D9D9D9"/>
|
||||||
|
<rect y="1160" width="700" height="70" fill="#8E7BC4"/>
|
||||||
|
<rect width="700" height="900" fill="#8E7BC4"/>
|
||||||
|
<rect x="7.5" y="7.5" width="685" height="1215" stroke="black" stroke-width="15"/>
|
||||||
|
<circle cx="510.639" cy="1068.07" r="6.5" transform="rotate(-149.555 510.639 1068.07)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="461.319" cy="1004.32" r="6.5" transform="rotate(-149.555 461.319 1004.32)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="472.319" cy="1084.32" r="6.5" transform="rotate(-149.555 472.319 1084.32)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="583.32" cy="1066.32" r="6.5" transform="rotate(-149.555 583.32 1066.32)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="425.319" cy="916.319" r="6.5" transform="rotate(-149.555 425.319 916.319)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="387.283" cy="930.606" r="6.5" transform="rotate(-149.555 387.283 930.606)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="387.797" cy="949.467" r="6.5" transform="rotate(-149.555 387.797 949.467)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="419.333" cy="947.124" r="6.5" transform="rotate(-149.555 419.333 947.124)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="457.449" cy="913.85" r="6.5" transform="rotate(-149.555 457.449 913.85)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="447.315" cy="931.092" r="6.5" transform="rotate(-149.555 447.315 931.092)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="499.33" cy="917.587" r="6.5" transform="rotate(-149.555 499.33 917.587)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="473.178" cy="946.294" r="6.5" transform="rotate(-149.555 473.178 946.294)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="490.329" cy="984.213" r="6.5" transform="rotate(-149.555 490.329 984.213)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="506.135" cy="949.426" r="6.5" transform="rotate(-149.555 506.135 949.426)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="536.25" cy="941.607" r="6.5" transform="rotate(-149.555 536.25 941.607)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="526.523" cy="966.049" r="6.5" transform="rotate(-149.555 526.523 966.049)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="524.299" cy="985.621" r="6.5" transform="rotate(-149.555 524.299 985.621)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="511.836" cy="1010.77" r="6.5" transform="rotate(-149.555 511.836 1010.77)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="566.878" cy="952.649" r="6.5" transform="rotate(-149.555 566.878 952.649)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="586.66" cy="978.196" r="6.5" transform="rotate(-149.555 586.66 978.196)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="557.257" cy="988.752" r="6.5" transform="rotate(-149.555 557.257 988.752)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="580.383" cy="1004.66" r="6.5" transform="rotate(-149.555 580.383 1004.66)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="549.966" cy="1016.95" r="6.5" transform="rotate(-149.555 549.966 1016.95)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="585.358" cy="1023.83" r="6.5" transform="rotate(-149.555 585.358 1023.83)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="553.731" cy="1053.96" r="6.5" transform="rotate(-149.555 553.731 1053.96)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="489.737" cy="1032.58" r="6.5" transform="rotate(-149.555 489.737 1032.58)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="527.867" cy="1038.76" r="6.5" transform="rotate(-149.555 527.867 1038.76)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="531.224" cy="1068.57" r="6.5" transform="rotate(-149.555 531.224 1068.57)" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M87.3864 970.636V1087H59.3182V996.886H58.6364L32.6136 1012.8V988.477L61.3068 970.636H87.3864ZM161.236 1089.84C151.084 1089.84 142.334 1087.44 134.986 1082.62C127.637 1077.78 121.974 1070.83 117.997 1061.77C114.02 1052.68 112.05 1041.75 112.088 1028.99C112.126 1016.22 114.115 1005.39 118.054 996.489C122.031 987.549 127.675 980.75 134.986 976.091C142.334 971.394 151.084 969.045 161.236 969.045C171.387 969.045 180.137 971.394 187.486 976.091C194.872 980.75 200.554 987.549 204.531 996.489C208.509 1005.43 210.478 1016.26 210.44 1028.99C210.44 1041.79 208.452 1052.74 204.474 1061.83C200.497 1070.92 194.834 1077.87 187.486 1082.68C180.175 1087.45 171.425 1089.84 161.236 1089.84ZM161.236 1066.83C167.296 1066.83 172.202 1063.74 175.952 1057.57C179.702 1051.36 181.558 1041.83 181.52 1028.99C181.52 1020.58 180.668 1013.65 178.963 1008.19C177.259 1002.7 174.891 998.61 171.861 995.92C168.83 993.231 165.289 991.886 161.236 991.886C155.213 991.886 150.346 994.936 146.634 1001.03C142.921 1007.09 141.046 1016.41 141.009 1028.99C140.971 1037.51 141.785 1044.58 143.452 1050.18C145.156 1055.79 147.543 1059.97 150.611 1062.74C153.679 1065.47 157.221 1066.83 161.236 1066.83ZM274.673 1089.84C264.522 1089.84 255.772 1087.44 248.423 1082.62C241.075 1077.78 235.412 1070.83 231.435 1061.77C227.457 1052.68 225.488 1041.75 225.526 1028.99C225.563 1016.22 227.552 1005.39 231.491 996.489C235.469 987.549 241.113 980.75 248.423 976.091C255.772 971.394 264.522 969.045 274.673 969.045C284.825 969.045 293.575 971.394 300.923 976.091C308.31 980.75 313.991 987.549 317.969 996.489C321.946 1005.43 323.916 1016.26 323.878 1028.99C323.878 1041.79 321.889 1052.74 317.912 1061.83C313.935 1070.92 308.272 1077.87 300.923 1082.68C293.613 1087.45 284.863 1089.84 274.673 1089.84ZM274.673 1066.83C280.734 1066.83 285.639 1063.74 289.389 1057.57C293.139 1051.36 294.995 1041.83 294.957 1028.99C294.957 1020.58 294.105 1013.65 292.401 1008.19C290.696 1002.7 288.329 998.61 285.298 995.92C282.268 993.231 278.726 991.886 274.673 991.886C268.651 991.886 263.783 994.936 260.071 1001.03C256.359 1007.09 254.484 1016.41 254.446 1028.99C254.408 1037.51 255.223 1044.58 256.889 1050.18C258.594 1055.79 260.98 1059.97 264.048 1062.74C267.116 1065.47 270.658 1066.83 274.673 1066.83ZM388.111 1089.84C377.959 1089.84 369.209 1087.44 361.861 1082.62C354.512 1077.78 348.849 1070.83 344.872 1061.77C340.895 1052.68 338.925 1041.75 338.963 1028.99C339.001 1016.22 340.99 1005.39 344.929 996.489C348.906 987.549 354.55 980.75 361.861 976.091C369.209 971.394 377.959 969.045 388.111 969.045C398.262 969.045 407.012 971.394 414.361 976.091C421.747 980.75 427.429 987.549 431.406 996.489C435.384 1005.43 437.353 1016.26 437.315 1028.99C437.315 1041.79 435.327 1052.74 431.349 1061.83C427.372 1070.92 421.709 1077.87 414.361 1082.68C407.05 1087.45 398.3 1089.84 388.111 1089.84ZM388.111 1066.83C394.171 1066.83 399.077 1063.74 402.827 1057.57C406.577 1051.36 408.433 1041.83 408.395 1028.99C408.395 1020.58 407.543 1013.65 405.838 1008.19C404.134 1002.7 401.766 998.61 398.736 995.92C395.705 993.231 392.164 991.886 388.111 991.886C382.088 991.886 377.221 994.936 373.509 1001.03C369.796 1007.09 367.921 1016.41 367.884 1028.99C367.846 1037.51 368.66 1044.58 370.327 1050.18C372.031 1055.79 374.418 1059.97 377.486 1062.74C380.554 1065.47 384.096 1066.83 388.111 1066.83Z" fill="#5227CC"/>
|
||||||
|
<rect x="188" y="122" width="75" height="250" fill="#5227CC"/>
|
||||||
|
<rect x="100" y="291" width="75" height="250" transform="rotate(-90 100 291)" fill="#5227CC"/>
|
||||||
|
<circle cx="479" cy="668" r="160" fill="#976C39"/>
|
||||||
|
<path d="M164.983 542.545V688H129.898V575.358H129.045L96.517 595.244V564.847L132.384 542.545H164.983ZM257.295 691.551C244.605 691.551 233.668 688.545 224.482 682.531C215.297 676.471 208.218 667.782 203.246 656.466C198.275 645.102 195.813 631.442 195.86 615.486C195.907 599.529 198.393 585.988 203.317 574.861C208.289 563.687 215.344 555.187 224.482 549.364C233.668 543.492 244.605 540.557 257.295 540.557C269.984 540.557 280.922 543.492 290.107 549.364C299.34 555.187 306.442 563.687 311.414 574.861C316.386 586.035 318.848 599.577 318.8 615.486C318.8 631.49 316.315 645.173 311.343 656.537C306.371 667.901 299.293 676.589 290.107 682.602C280.969 688.568 270.031 691.551 257.295 691.551ZM257.295 662.787C264.871 662.787 271.002 658.928 275.69 651.21C280.377 643.445 282.697 631.537 282.65 615.486C282.65 604.974 281.585 596.31 279.454 589.491C277.323 582.626 274.364 577.512 270.576 574.151C266.788 570.789 262.361 569.108 257.295 569.108C249.766 569.108 243.682 572.92 239.042 580.543C234.402 588.118 232.058 599.766 232.011 615.486C231.963 626.139 232.981 634.97 235.065 641.977C237.195 648.985 240.178 654.217 244.013 657.673C247.849 661.082 252.276 662.787 257.295 662.787ZM399.092 691.551C386.402 691.551 375.465 688.545 366.279 682.531C357.094 676.471 350.015 667.782 345.043 656.466C340.072 645.102 337.61 631.442 337.657 615.486C337.704 599.529 340.19 585.988 345.114 574.861C350.086 563.687 357.141 555.187 366.279 549.364C375.465 543.492 386.402 540.557 399.092 540.557C411.781 540.557 422.719 543.492 431.904 549.364C441.137 555.187 448.239 563.687 453.211 574.861C458.183 586.035 460.645 599.577 460.597 615.486C460.597 631.49 458.112 645.173 453.14 656.537C448.168 667.901 441.09 676.589 431.904 682.602C422.766 688.568 411.828 691.551 399.092 691.551ZM399.092 662.787C406.667 662.787 412.799 658.928 417.487 651.21C422.174 643.445 424.494 631.537 424.447 615.486C424.447 604.974 423.381 596.31 421.251 589.491C419.12 582.626 416.161 577.512 412.373 574.151C408.585 570.789 404.158 569.108 399.092 569.108C391.563 569.108 385.479 572.92 380.839 580.543C376.199 588.118 373.855 599.766 373.808 615.486C373.76 626.139 374.778 634.97 376.862 641.977C378.992 648.985 381.975 654.217 385.81 657.673C389.646 661.082 394.073 662.787 399.092 662.787ZM540.888 691.551C528.199 691.551 517.262 688.545 508.076 682.531C498.89 676.471 491.812 667.782 486.84 656.466C481.869 645.102 479.406 631.442 479.454 615.486C479.501 599.529 481.987 585.988 486.911 574.861C491.883 563.687 498.938 555.187 508.076 549.364C517.262 543.492 528.199 540.557 540.888 540.557C553.578 540.557 564.515 543.492 573.701 549.364C582.934 555.187 590.036 563.687 595.008 574.861C599.979 586.035 602.442 599.577 602.394 615.486C602.394 631.49 599.908 645.173 594.937 656.537C589.965 667.901 582.887 676.589 573.701 682.602C564.563 688.568 553.625 691.551 540.888 691.551ZM540.888 662.787C548.464 662.787 554.596 658.928 559.283 651.21C563.971 643.445 566.291 631.537 566.244 615.486C566.244 604.974 565.178 596.31 563.048 589.491C560.917 582.626 557.958 577.512 554.17 574.151C550.382 570.789 545.955 569.108 540.888 569.108C533.36 569.108 527.276 572.92 522.636 580.543C517.996 588.118 515.652 599.766 515.604 615.486C515.557 626.139 516.575 634.97 518.658 641.977C520.789 648.985 523.772 654.217 527.607 657.673C531.442 661.082 535.87 662.787 540.888 662.787Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 10 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Robin van der Linde
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
39
assets/layers/questions/denominations/chf/100chf.svg
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<svg width="700" height="1230" viewBox="0 0 700 1230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="700" height="1230" fill="#D9D9D9"/>
|
||||||
|
<rect y="1160" width="700" height="70" fill="#1E8EBA"/>
|
||||||
|
<rect width="700" height="900" fill="#1E8EBA"/>
|
||||||
|
<rect x="7.5" y="7.5" width="685" height="1215" stroke="black" stroke-width="15"/>
|
||||||
|
<circle cx="463" cy="956" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="671" cy="1078" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="645" cy="1064" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="609" cy="1076" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="619" cy="1050" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="639" cy="1012" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="629" cy="996" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="603" cy="1014" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="587" cy="1062" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="587" cy="1042" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="549" cy="1080" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="557" cy="1042" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="523" cy="1018" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="527" cy="1056" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="505" cy="1078" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="501" cy="1052" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="493" cy="1034" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="491" cy="1006" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="473" cy="1084" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="443" cy="1072" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="463" cy="1048" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="435" cy="1046" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="455" cy="1020" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="421" cy="1032" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="433" cy="990" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="499" cy="976" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="463" cy="990" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="445" cy="966" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M104.983 954.545V1100H69.8977V987.358H69.0455L36.517 1007.24V976.847L72.3835 954.545H104.983ZM197.295 1103.55C184.605 1103.55 173.668 1100.54 164.482 1094.53C155.297 1088.47 148.218 1079.78 143.246 1068.47C138.275 1057.1 135.813 1043.44 135.86 1027.49C135.907 1011.53 138.393 997.988 143.317 986.861C148.289 975.687 155.344 967.187 164.482 961.364C173.668 955.492 184.605 952.557 197.295 952.557C209.984 952.557 220.922 955.492 230.107 961.364C239.34 967.187 246.442 975.687 251.414 986.861C256.386 998.035 258.848 1011.58 258.8 1027.49C258.8 1043.49 256.315 1057.17 251.343 1068.54C246.371 1079.9 239.293 1088.59 230.107 1094.6C220.969 1100.57 210.031 1103.55 197.295 1103.55ZM197.295 1074.79C204.871 1074.79 211.002 1070.93 215.69 1063.21C220.377 1055.45 222.697 1043.54 222.65 1027.49C222.65 1016.97 221.585 1008.31 219.454 1001.49C217.323 994.626 214.364 989.512 210.576 986.151C206.788 982.789 202.361 981.108 197.295 981.108C189.766 981.108 183.682 984.92 179.042 992.543C174.402 1000.12 172.058 1011.77 172.011 1027.49C171.963 1038.14 172.981 1046.97 175.065 1053.98C177.195 1060.98 180.178 1066.22 184.013 1069.67C187.849 1073.08 192.276 1074.79 197.295 1074.79ZM339.092 1103.55C326.402 1103.55 315.465 1100.54 306.279 1094.53C297.094 1088.47 290.015 1079.78 285.043 1068.47C280.072 1057.1 277.61 1043.44 277.657 1027.49C277.704 1011.53 280.19 997.988 285.114 986.861C290.086 975.687 297.141 967.187 306.279 961.364C315.465 955.492 326.402 952.557 339.092 952.557C351.781 952.557 362.719 955.492 371.904 961.364C381.137 967.187 388.239 975.687 393.211 986.861C398.183 998.035 400.645 1011.58 400.597 1027.49C400.597 1043.49 398.112 1057.17 393.14 1068.54C388.168 1079.9 381.09 1088.59 371.904 1094.6C362.766 1100.57 351.828 1103.55 339.092 1103.55ZM339.092 1074.79C346.667 1074.79 352.799 1070.93 357.487 1063.21C362.174 1055.45 364.494 1043.54 364.447 1027.49C364.447 1016.97 363.381 1008.31 361.251 1001.49C359.12 994.626 356.161 989.512 352.373 986.151C348.585 982.789 344.158 981.108 339.092 981.108C331.563 981.108 325.479 984.92 320.839 992.543C316.199 1000.12 313.855 1011.77 313.808 1027.49C313.76 1038.14 314.778 1046.97 316.862 1053.98C318.992 1060.98 321.975 1066.22 325.81 1069.67C329.646 1073.08 334.073 1074.79 339.092 1074.79Z" fill="#0A5471"/>
|
||||||
|
<rect x="188" y="122" width="75" height="250" fill="#0A5471"/>
|
||||||
|
<rect x="100" y="291" width="75" height="250" transform="rotate(-90 100 291)" fill="#0A5471"/>
|
||||||
|
<circle cx="479" cy="668" r="160" fill="#87475A"/>
|
||||||
|
<path d="M178.974 505.818V724H126.347V555.037H125.068L76.2756 584.866V539.27L130.075 505.818H178.974ZM317.442 729.327C298.408 729.327 282.002 724.817 268.223 715.797C254.445 706.706 243.827 693.673 236.37 676.699C228.912 659.653 225.219 639.163 225.29 615.229C225.361 591.294 229.09 570.982 236.476 554.291C243.934 537.53 254.516 524.781 268.223 516.045C282.002 507.239 298.408 502.835 317.442 502.835C336.476 502.835 352.882 507.239 366.661 516.045C380.51 524.781 391.164 537.53 398.621 554.291C406.078 571.053 409.772 591.365 409.701 615.229C409.701 639.234 405.972 659.76 398.515 676.805C391.057 693.851 380.439 706.884 366.661 715.903C352.953 724.852 336.547 729.327 317.442 729.327ZM317.442 686.18C328.806 686.18 338.003 680.392 345.034 668.815C352.066 657.168 355.546 639.305 355.475 615.229C355.475 599.462 353.877 586.464 350.681 576.237C347.485 565.939 343.046 558.268 337.364 553.226C331.682 548.183 325.042 545.662 317.442 545.662C306.15 545.662 297.023 551.379 290.063 562.814C283.103 574.178 279.587 591.649 279.516 615.229C279.445 631.209 280.972 644.455 284.097 654.966C287.293 665.477 291.767 673.325 297.52 678.51C303.273 683.624 309.914 686.18 317.442 686.18ZM530.137 729.327C511.103 729.327 494.697 724.817 480.919 715.797C467.14 706.706 456.522 693.673 449.065 676.699C441.608 659.653 437.914 639.163 437.985 615.229C438.056 591.294 441.785 570.982 449.172 554.291C456.629 537.53 467.211 524.781 480.919 516.045C494.697 507.239 511.103 502.835 530.137 502.835C549.172 502.835 565.578 507.239 579.356 516.045C593.206 524.781 603.859 537.53 611.316 554.291C618.774 571.053 622.467 591.365 622.396 615.229C622.396 639.234 618.667 659.76 611.21 676.805C603.752 693.851 593.135 706.884 579.356 715.903C565.649 724.852 549.243 729.327 530.137 729.327ZM530.137 686.18C541.501 686.18 550.699 680.392 557.73 668.815C564.761 657.168 568.241 639.305 568.17 615.229C568.17 599.462 566.572 586.464 563.376 576.237C560.18 565.939 555.741 558.268 550.059 553.226C544.377 548.183 537.737 545.662 530.137 545.662C518.845 545.662 509.718 551.379 502.758 562.814C495.798 574.178 492.282 591.649 492.211 615.229C492.14 631.209 493.667 644.455 496.792 654.966C499.988 665.477 504.463 673.325 510.216 678.51C515.968 683.624 522.609 686.18 530.137 686.18Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Robin van der Linde
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
39
assets/layers/questions/denominations/chf/10chf.svg
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<svg width="700" height="1230" viewBox="0 0 700 1230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="700" height="1230" fill="#D9D9D9"/>
|
||||||
|
<rect y="1160" width="700" height="70" fill="#FFBD3B"/>
|
||||||
|
<rect width="700" height="900" fill="#FFBD3B"/>
|
||||||
|
<rect x="7.5" y="7.5" width="685" height="1215" stroke="black" stroke-width="15"/>
|
||||||
|
<circle cx="376" cy="930" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="584" cy="1052" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="558" cy="1038" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="522" cy="1050" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="532" cy="1024" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="552" cy="986" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="542" cy="970" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="516" cy="988" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="500" cy="1036" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="500" cy="1016" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="462" cy="1054" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="470" cy="1016" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="436" cy="992" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="440" cy="1030" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="418" cy="1052" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="414" cy="1026" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="406" cy="1008" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="404" cy="980" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="386" cy="1058" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="356" cy="1046" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="376" cy="1022" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="348" cy="1020" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="368" cy="994" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="334" cy="1006" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="346" cy="964" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="412" cy="950" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="376" cy="964" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="358" cy="940" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M104.983 954.545V1100H69.8977V987.358H69.0455L36.517 1007.24V976.847L72.3835 954.545H104.983ZM197.295 1103.55C184.605 1103.55 173.668 1100.54 164.482 1094.53C155.297 1088.47 148.218 1079.78 143.246 1068.47C138.275 1057.1 135.813 1043.44 135.86 1027.49C135.907 1011.53 138.393 997.988 143.317 986.861C148.289 975.687 155.344 967.187 164.482 961.364C173.668 955.492 184.605 952.557 197.295 952.557C209.984 952.557 220.922 955.492 230.107 961.364C239.34 967.187 246.442 975.687 251.414 986.861C256.386 998.035 258.848 1011.58 258.8 1027.49C258.8 1043.49 256.315 1057.17 251.343 1068.54C246.371 1079.9 239.293 1088.59 230.107 1094.6C220.969 1100.57 210.031 1103.55 197.295 1103.55ZM197.295 1074.79C204.871 1074.79 211.002 1070.93 215.69 1063.21C220.377 1055.45 222.697 1043.54 222.65 1027.49C222.65 1016.97 221.585 1008.31 219.454 1001.49C217.323 994.626 214.364 989.512 210.576 986.151C206.788 982.789 202.361 981.108 197.295 981.108C189.766 981.108 183.682 984.92 179.042 992.543C174.402 1000.12 172.058 1011.77 172.011 1027.49C171.963 1038.14 172.981 1046.97 175.065 1053.98C177.195 1060.98 180.178 1066.22 184.013 1069.67C187.849 1073.08 192.276 1074.79 197.295 1074.79Z" fill="#E38155"/>
|
||||||
|
<rect x="188" y="122" width="75" height="250" fill="#E38155"/>
|
||||||
|
<rect x="100" y="291" width="75" height="250" transform="rotate(-90 100 291)" fill="#E38155"/>
|
||||||
|
<circle cx="479" cy="668" r="160" fill="#538268"/>
|
||||||
|
<path d="M253.462 450.727V778H174.52V524.555H172.602L99.4134 569.3V500.905L180.113 450.727H253.462ZM461.163 785.99C432.612 785.99 408.003 779.225 387.335 765.695C366.667 752.059 350.741 732.51 339.555 707.048C328.368 681.48 322.829 650.745 322.935 614.843C323.042 578.941 328.635 548.472 339.714 523.437C350.9 498.295 366.774 479.172 387.335 466.068C408.003 452.858 432.612 446.253 461.163 446.253C489.714 446.253 514.324 452.858 534.991 466.068C555.765 479.172 571.746 498.295 582.932 523.437C594.118 548.579 599.657 579.048 599.551 614.843C599.551 650.852 593.958 681.64 582.772 707.208C571.586 732.776 555.659 752.325 534.991 765.855C514.43 779.278 489.821 785.99 461.163 785.99ZM461.163 721.271C478.209 721.271 492.005 712.588 502.552 695.223C513.099 677.751 518.319 650.958 518.212 614.843C518.212 591.192 515.815 571.697 511.021 556.356C506.227 540.908 499.569 529.403 491.046 521.839C482.523 514.275 472.562 510.493 461.163 510.493C444.224 510.493 430.535 519.069 420.094 536.221C409.654 553.266 404.381 579.474 404.274 614.843C404.167 638.813 406.458 658.682 411.145 674.449C415.939 690.216 422.651 701.988 431.28 709.765C439.91 717.435 449.871 721.271 461.163 721.271Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Robin van der Linde
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
BIN
assets/layers/questions/denominations/chf/10rp-2019-800px.png
Normal file
After Width: | Height: | Size: 109 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Swissmint
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
BIN
assets/layers/questions/denominations/chf/1fr-2019-800px.png
Normal file
After Width: | Height: | Size: 153 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Swissmint
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
39
assets/layers/questions/denominations/chf/200chf.svg
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<svg width="700" height="1230" viewBox="0 0 700 1230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="700" height="1230" fill="#D9D9D9"/>
|
||||||
|
<rect y="1160" width="700" height="70" fill="#9F7C46"/>
|
||||||
|
<rect width="700" height="900" fill="#9F7C46"/>
|
||||||
|
<rect x="7.5" y="7.5" width="685" height="1215" stroke="black" stroke-width="15"/>
|
||||||
|
<path d="M502.097 976.459C502.097 979.157 499.859 981.418 497.007 981.418C494.155 981.418 491.918 979.157 491.918 976.459C491.918 973.761 494.155 971.5 497.007 971.5C499.859 971.5 502.097 973.761 502.097 976.459Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M677.5 1077.57C677.5 1080.27 675.262 1082.53 672.41 1082.53C669.558 1082.53 667.321 1080.27 667.321 1077.57C667.321 1074.87 669.558 1072.61 672.41 1072.61C675.262 1072.61 677.5 1074.87 677.5 1077.57Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M655.575 1065.97C655.575 1068.66 653.337 1070.92 650.485 1070.92C647.633 1070.92 645.396 1068.66 645.396 1065.97C645.396 1063.27 647.633 1061.01 650.485 1061.01C653.337 1061.01 655.575 1063.27 655.575 1065.97Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M625.216 1075.91C625.216 1078.61 622.979 1080.87 620.127 1080.87C617.275 1080.87 615.037 1078.61 615.037 1075.91C615.037 1073.21 617.275 1070.95 620.127 1070.95C622.979 1070.95 625.216 1073.21 625.216 1075.91Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M633.649 1054.36C633.649 1057.06 631.412 1059.32 628.56 1059.32C625.708 1059.32 623.47 1057.06 623.47 1054.36C623.47 1051.66 625.708 1049.4 628.56 1049.4C631.412 1049.4 633.649 1051.66 633.649 1054.36Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M650.515 1022.87C650.515 1025.57 648.277 1027.83 645.425 1027.83C642.573 1027.83 640.336 1025.57 640.336 1022.87C640.336 1020.17 642.573 1017.91 645.425 1017.91C648.277 1017.91 650.515 1020.17 650.515 1022.87Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M642.082 1009.61C642.082 1012.31 639.844 1014.57 636.993 1014.57C634.141 1014.57 631.903 1012.31 631.903 1009.61C631.903 1006.91 634.141 1004.65 636.993 1004.65C639.844 1004.65 642.082 1006.91 642.082 1009.61Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M620.157 1024.53C620.157 1027.23 617.919 1029.49 615.067 1029.49C612.215 1029.49 609.978 1027.23 609.978 1024.53C609.978 1021.83 612.215 1019.57 615.067 1019.57C617.919 1019.57 620.157 1021.83 620.157 1024.53Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M606.664 1064.31C606.664 1067.01 604.427 1069.27 601.575 1069.27C598.723 1069.27 596.485 1067.01 596.485 1064.31C596.485 1061.61 598.723 1059.35 601.575 1059.35C604.427 1059.35 606.664 1061.61 606.664 1064.31Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M606.664 1047.73C606.664 1050.43 604.427 1052.69 601.575 1052.69C598.723 1052.69 596.485 1050.43 596.485 1047.73C596.485 1045.03 598.723 1042.77 601.575 1042.77C604.427 1042.77 606.664 1045.03 606.664 1047.73Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M574.619 1079.23C574.619 1081.92 572.382 1084.18 569.53 1084.18C566.678 1084.18 564.44 1081.92 564.44 1079.23C564.44 1076.53 566.678 1074.27 569.53 1074.27C572.382 1074.27 574.619 1076.53 574.619 1079.23Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M581.366 1047.73C581.366 1050.43 579.128 1052.69 576.276 1052.69C573.424 1052.69 571.187 1050.43 571.187 1047.73C571.187 1045.03 573.424 1042.77 576.276 1042.77C579.128 1042.77 581.366 1045.03 581.366 1047.73Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M552.694 1027.84C552.694 1030.54 550.456 1032.8 547.604 1032.8C544.752 1032.8 542.515 1030.54 542.515 1027.84C542.515 1025.14 544.752 1022.88 547.604 1022.88C550.456 1022.88 552.694 1025.14 552.694 1027.84Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M556.067 1059.34C556.067 1062.03 553.83 1064.29 550.978 1064.29C548.126 1064.29 545.888 1062.03 545.888 1059.34C545.888 1056.64 548.126 1054.38 550.978 1054.38C553.83 1054.38 556.067 1056.64 556.067 1059.34Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M537.515 1077.57C537.515 1080.27 535.277 1082.53 532.425 1082.53C529.573 1082.53 527.336 1080.27 527.336 1077.57C527.336 1074.87 529.573 1072.61 532.425 1072.61C535.277 1072.61 537.515 1074.87 537.515 1077.57Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M534.142 1056.02C534.142 1058.72 531.904 1060.98 529.052 1060.98C526.2 1060.98 523.963 1058.72 523.963 1056.02C523.963 1053.32 526.2 1051.06 529.052 1051.06C531.904 1051.06 534.142 1053.32 534.142 1056.02Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M527.396 1041.1C527.396 1043.8 525.158 1046.06 522.306 1046.06C519.454 1046.06 517.216 1043.8 517.216 1041.1C517.216 1038.4 519.454 1036.14 522.306 1036.14C525.158 1036.14 527.396 1038.4 527.396 1041.1Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M525.709 1017.9C525.709 1020.6 523.471 1022.86 520.619 1022.86C517.767 1022.86 515.53 1020.6 515.53 1017.9C515.53 1015.2 517.767 1012.94 520.619 1012.94C523.471 1012.94 525.709 1015.2 525.709 1017.9Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M510.53 1082.54C510.53 1085.24 508.292 1087.5 505.44 1087.5C502.588 1087.5 500.351 1085.24 500.351 1082.54C500.351 1079.84 502.588 1077.58 505.44 1077.58C508.292 1077.58 510.53 1079.84 510.53 1082.54Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M485.231 1072.6C485.231 1075.29 482.994 1077.55 480.142 1077.55C477.29 1077.55 475.052 1075.29 475.052 1072.6C475.052 1069.9 477.29 1067.64 480.142 1067.64C482.994 1067.64 485.231 1069.9 485.231 1072.6Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M502.097 1052.71C502.097 1055.4 499.859 1057.66 497.007 1057.66C494.155 1057.66 491.918 1055.4 491.918 1052.71C491.918 1050.01 494.155 1047.75 497.007 1047.75C499.859 1047.75 502.097 1050.01 502.097 1052.71Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M478.485 1051.05C478.485 1053.75 476.248 1056.01 473.396 1056.01C470.544 1056.01 468.306 1053.75 468.306 1051.05C468.306 1048.35 470.544 1046.09 473.396 1046.09C476.248 1046.09 478.485 1048.35 478.485 1051.05Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M495.351 1029.5C495.351 1032.2 493.113 1034.46 490.261 1034.46C487.409 1034.46 485.172 1032.2 485.172 1029.5C485.172 1026.8 487.409 1024.54 490.261 1024.54C493.113 1024.54 495.351 1026.8 495.351 1029.5Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M466.679 1039.45C466.679 1042.14 464.442 1044.4 461.59 1044.4C458.738 1044.4 456.5 1042.14 456.5 1039.45C456.5 1036.75 458.738 1034.49 461.59 1034.49C464.442 1034.49 466.679 1036.75 466.679 1039.45Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M476.799 1004.64C476.799 1007.33 474.561 1009.6 471.709 1009.6C468.857 1009.6 466.619 1007.33 466.619 1004.64C466.619 1001.94 468.857 999.678 471.709 999.678C474.561 999.678 476.799 1001.94 476.799 1004.64Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M532.455 993.034C532.455 995.732 530.218 997.993 527.366 997.993C524.514 997.993 522.276 995.732 522.276 993.034C522.276 990.336 524.514 988.075 527.366 988.075C530.218 988.075 532.455 990.336 532.455 993.034Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M502.097 1004.64C502.097 1007.33 499.859 1009.6 497.007 1009.6C494.155 1009.6 491.918 1007.33 491.918 1004.64C491.918 1001.94 494.155 999.678 497.007 999.678C499.859 999.678 502.097 1001.94 502.097 1004.64Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M486.918 984.747C486.918 987.445 484.68 989.705 481.828 989.705C478.976 989.705 476.739 987.445 476.739 984.747C476.739 982.049 478.976 979.788 481.828 979.788C484.68 979.788 486.918 982.049 486.918 984.747Z" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M37.7244 1100V1074.72L90.7784 1028.27C94.7557 1024.67 98.1411 1021.38 100.935 1018.39C103.728 1015.36 105.859 1012.33 107.327 1009.3C108.795 1006.23 109.528 1002.89 109.528 999.29C109.528 995.265 108.652 991.832 106.901 988.991C105.149 986.103 102.734 983.878 99.6562 982.315C96.5786 980.753 93.0511 979.972 89.0739 979.972C85.0492 979.972 81.5218 980.8 78.4915 982.457C75.4612 984.067 73.0938 986.411 71.3892 989.489C69.732 992.566 68.9034 996.307 68.9034 1000.71H35.5938C35.5938 990.814 37.8191 982.268 42.2699 975.071C46.7206 967.874 52.9706 962.334 61.0199 958.452C69.1165 954.522 78.5152 952.557 89.2159 952.557C100.248 952.557 109.836 954.403 117.98 958.097C126.124 961.79 132.421 966.951 136.872 973.58C141.37 980.161 143.619 987.808 143.619 996.52C143.619 1002.06 142.507 1007.55 140.281 1013C138.056 1018.44 134.055 1024.46 128.278 1031.04C122.549 1037.62 114.405 1045.5 103.847 1054.69L86.446 1070.74V1071.66H145.395V1100H37.7244ZM225.42 1103.55C212.73 1103.55 201.793 1100.54 192.607 1094.53C183.422 1088.47 176.343 1079.78 171.371 1068.47C166.4 1057.1 163.938 1043.44 163.985 1027.49C164.032 1011.53 166.518 997.988 171.442 986.861C176.414 975.687 183.469 967.187 192.607 961.364C201.793 955.492 212.73 952.557 225.42 952.557C238.109 952.557 249.047 955.492 258.232 961.364C267.465 967.187 274.567 975.687 279.539 986.861C284.511 998.035 286.973 1011.58 286.925 1027.49C286.925 1043.49 284.44 1057.17 279.468 1068.54C274.496 1079.9 267.418 1088.59 258.232 1094.6C249.094 1100.57 238.156 1103.55 225.42 1103.55ZM225.42 1074.79C232.996 1074.79 239.127 1070.93 243.815 1063.21C248.502 1055.45 250.822 1043.54 250.775 1027.49C250.775 1016.97 249.71 1008.31 247.579 1001.49C245.448 994.626 242.489 989.512 238.701 986.151C234.913 982.789 230.486 981.108 225.42 981.108C217.891 981.108 211.807 984.92 207.167 992.543C202.527 1000.12 200.183 1011.77 200.136 1027.49C200.088 1038.14 201.106 1046.97 203.19 1053.98C205.32 1060.98 208.303 1066.22 212.138 1069.67C215.974 1073.08 220.401 1074.79 225.42 1074.79ZM367.217 1103.55C354.527 1103.55 343.59 1100.54 334.404 1094.53C325.219 1088.47 318.14 1079.78 313.168 1068.47C308.197 1057.1 305.735 1043.44 305.782 1027.49C305.829 1011.53 308.315 997.988 313.239 986.861C318.211 975.687 325.266 967.187 334.404 961.364C343.59 955.492 354.527 952.557 367.217 952.557C379.906 952.557 390.844 955.492 400.029 961.364C409.262 967.187 416.364 975.687 421.336 986.861C426.308 998.035 428.77 1011.58 428.722 1027.49C428.722 1043.49 426.237 1057.17 421.265 1068.54C416.293 1079.9 409.215 1088.59 400.029 1094.6C390.891 1100.57 379.953 1103.55 367.217 1103.55ZM367.217 1074.79C374.792 1074.79 380.924 1070.93 385.612 1063.21C390.299 1055.45 392.619 1043.54 392.572 1027.49C392.572 1016.97 391.506 1008.31 389.376 1001.49C387.245 994.626 384.286 989.512 380.498 986.151C376.71 982.789 372.283 981.108 367.217 981.108C359.688 981.108 353.604 984.92 348.964 992.543C344.324 1000.12 341.98 1011.77 341.933 1027.49C341.885 1038.14 342.903 1046.97 344.987 1053.98C347.117 1060.98 350.1 1066.22 353.935 1069.67C357.771 1073.08 362.198 1074.79 367.217 1074.79Z" fill="#80520C"/>
|
||||||
|
<rect x="188" y="122" width="75" height="250" fill="#80520C"/>
|
||||||
|
<rect x="100" y="291" width="75" height="250" transform="rotate(-90 100 291)" fill="#80520C"/>
|
||||||
|
<circle cx="479" cy="668" r="160" fill="#146A52"/>
|
||||||
|
<path d="M57.0866 724V686.074L136.668 616.401C142.634 611.003 147.712 606.067 151.902 601.592C156.092 597.047 159.288 592.501 161.49 587.956C163.692 583.339 164.793 578.332 164.793 572.935C164.793 566.898 163.479 561.749 160.851 557.487C158.223 553.155 154.601 549.817 149.984 547.473C145.368 545.129 140.077 543.957 134.111 543.957C128.074 543.957 122.783 545.2 118.237 547.686C113.692 550.101 110.141 553.616 107.584 558.233C105.098 562.849 103.855 568.46 103.855 575.065H53.8906C53.8906 560.222 57.2287 547.402 63.9048 536.607C70.581 525.811 79.956 517.501 92.0298 511.678C104.175 505.783 118.273 502.835 134.324 502.835C150.872 502.835 165.254 505.605 177.47 511.145C189.686 516.685 199.132 524.426 205.808 534.369C212.555 544.241 215.929 555.712 215.929 568.78C215.929 577.089 214.26 585.328 210.922 593.496C207.584 601.663 201.582 610.683 192.918 620.555C184.324 630.428 172.108 642.253 156.27 656.031L130.169 680.108V681.493H218.592V724H57.0866ZM338.63 729.327C319.596 729.327 303.189 724.817 289.411 715.797C275.632 706.706 265.015 693.673 257.557 676.699C250.1 659.653 246.407 639.163 246.478 615.229C246.549 591.294 250.277 570.982 257.664 554.291C265.121 537.53 275.703 524.781 289.411 516.045C303.189 507.239 319.596 502.835 338.63 502.835C357.664 502.835 374.07 507.239 387.848 516.045C401.698 524.781 412.351 537.53 419.809 554.291C427.266 571.053 430.959 591.365 430.888 615.229C430.888 639.234 427.159 659.76 419.702 676.805C412.245 693.851 401.627 706.884 387.848 715.903C374.141 724.852 357.735 729.327 338.63 729.327ZM338.63 686.18C349.993 686.18 359.191 680.392 366.222 668.815C373.253 657.168 376.733 639.305 376.662 615.229C376.662 599.462 375.064 586.464 371.868 576.237C368.672 565.939 364.233 558.268 358.551 553.226C352.87 548.183 346.229 545.662 338.63 545.662C327.337 545.662 318.211 551.379 311.25 562.814C304.29 574.178 300.775 591.649 300.703 615.229C300.632 631.209 302.159 644.455 305.284 654.966C308.48 665.477 312.955 673.325 318.708 678.51C324.461 683.624 331.101 686.18 338.63 686.18ZM551.325 729.327C532.291 729.327 515.885 724.817 502.106 715.797C488.328 706.706 477.71 693.673 470.252 676.699C462.795 659.653 459.102 639.163 459.173 615.229C459.244 591.294 462.973 570.982 470.359 554.291C477.816 537.53 488.399 524.781 502.106 516.045C515.885 507.239 532.291 502.835 551.325 502.835C570.359 502.835 586.765 507.239 600.544 516.045C614.393 524.781 625.047 537.53 632.504 554.291C639.961 571.053 643.654 591.365 643.583 615.229C643.583 639.234 639.855 659.76 632.397 676.805C624.94 693.851 614.322 706.884 600.544 715.903C586.836 724.852 570.43 729.327 551.325 729.327ZM551.325 686.18C562.689 686.18 571.886 680.392 578.917 668.815C585.949 657.168 589.429 639.305 589.358 615.229C589.358 599.462 587.76 586.464 584.564 576.237C581.368 565.939 576.929 558.268 571.247 553.226C565.565 548.183 558.924 545.662 551.325 545.662C540.032 545.662 530.906 551.379 523.946 562.814C516.985 574.178 513.47 591.649 513.399 615.229C513.328 631.209 514.855 644.455 517.98 654.966C521.176 665.477 525.65 673.325 531.403 678.51C537.156 683.624 543.797 686.18 551.325 686.18Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 14 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Robin van der Linde
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
39
assets/layers/questions/denominations/chf/20chf.svg
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<svg width="700" height="1230" viewBox="0 0 700 1230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="700" height="1230" fill="#D9D9D9"/>
|
||||||
|
<rect y="1160" width="700" height="70" fill="#FF5457"/>
|
||||||
|
<rect width="700" height="900" fill="#FF5457"/>
|
||||||
|
<rect x="7.5" y="7.5" width="685" height="1215" stroke="black" stroke-width="15"/>
|
||||||
|
<circle cx="376" cy="930" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="584" cy="1052" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="558" cy="1038" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="522" cy="1050" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="532" cy="1024" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="552" cy="986" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="542" cy="970" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="516" cy="988" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="500" cy="1036" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="500" cy="1016" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="462" cy="1054" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="470" cy="1016" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="436" cy="992" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="440" cy="1030" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="418" cy="1052" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="414" cy="1026" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="406" cy="1008" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="404" cy="980" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="386" cy="1058" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="356" cy="1046" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="376" cy="1022" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="348" cy="1020" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="368" cy="994" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="334" cy="1006" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="346" cy="964" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="412" cy="950" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="376" cy="964" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<circle cx="358" cy="940" r="6.5" stroke="#E38155" stroke-width="5"/>
|
||||||
|
<path d="M37.7244 1100V1074.72L90.7784 1028.27C94.7557 1024.67 98.1411 1021.38 100.935 1018.39C103.728 1015.36 105.859 1012.33 107.327 1009.3C108.795 1006.23 109.528 1002.89 109.528 999.29C109.528 995.265 108.652 991.832 106.901 988.991C105.149 986.103 102.734 983.878 99.6562 982.315C96.5786 980.753 93.0511 979.972 89.0739 979.972C85.0492 979.972 81.5218 980.8 78.4915 982.457C75.4612 984.067 73.0938 986.411 71.3892 989.489C69.732 992.566 68.9034 996.307 68.9034 1000.71H35.5938C35.5938 990.814 37.8191 982.268 42.2699 975.071C46.7206 967.874 52.9706 962.334 61.0199 958.452C69.1165 954.522 78.5152 952.557 89.2159 952.557C100.248 952.557 109.836 954.403 117.98 958.097C126.124 961.79 132.421 966.951 136.872 973.58C141.37 980.161 143.619 987.808 143.619 996.52C143.619 1002.06 142.507 1007.55 140.281 1013C138.056 1018.44 134.055 1024.46 128.278 1031.04C122.549 1037.62 114.405 1045.5 103.847 1054.69L86.446 1070.74V1071.66H145.395V1100H37.7244ZM225.42 1103.55C212.73 1103.55 201.793 1100.54 192.607 1094.53C183.422 1088.47 176.343 1079.78 171.371 1068.47C166.4 1057.1 163.938 1043.44 163.985 1027.49C164.032 1011.53 166.518 997.988 171.442 986.861C176.414 975.687 183.469 967.187 192.607 961.364C201.793 955.492 212.73 952.557 225.42 952.557C238.109 952.557 249.047 955.492 258.232 961.364C267.465 967.187 274.567 975.687 279.539 986.861C284.511 998.035 286.973 1011.58 286.925 1027.49C286.925 1043.49 284.44 1057.17 279.468 1068.54C274.496 1079.9 267.418 1088.59 258.232 1094.6C249.094 1100.57 238.156 1103.55 225.42 1103.55ZM225.42 1074.79C232.996 1074.79 239.127 1070.93 243.815 1063.21C248.502 1055.45 250.822 1043.54 250.775 1027.49C250.775 1016.97 249.71 1008.31 247.579 1001.49C245.448 994.626 242.489 989.512 238.701 986.151C234.913 982.789 230.486 981.108 225.42 981.108C217.891 981.108 211.807 984.92 207.167 992.543C202.527 1000.12 200.183 1011.77 200.136 1027.49C200.088 1038.14 201.106 1046.97 203.19 1053.98C205.32 1060.98 208.303 1066.22 212.138 1069.67C215.974 1073.08 220.401 1074.79 225.42 1074.79Z" fill="#721205"/>
|
||||||
|
<rect x="188" y="122" width="75" height="250" fill="#721205"/>
|
||||||
|
<rect x="100" y="291" width="75" height="250" transform="rotate(-90 100 291)" fill="#721205"/>
|
||||||
|
<circle cx="479" cy="668" r="160" fill="#538268"/>
|
||||||
|
<path d="M70.13 778V721.111L189.501 616.601C198.45 608.504 206.067 601.1 212.353 594.388C218.638 587.57 223.433 580.752 226.735 573.934C230.038 567.009 231.689 559.499 231.689 551.402C231.689 542.347 229.718 534.623 225.776 528.231C221.835 521.732 216.401 516.725 209.477 513.21C202.552 509.694 194.615 507.936 185.666 507.936C176.611 507.936 168.674 509.8 161.856 513.529C155.038 517.151 149.711 522.425 145.876 529.349C142.147 536.274 140.283 544.69 140.283 554.598H65.3359C65.3359 532.332 70.343 513.103 80.3572 496.91C90.3715 480.717 104.434 468.252 122.545 459.516C140.762 450.674 161.909 446.253 185.986 446.253C210.808 446.253 232.381 450.408 250.705 458.717C269.029 467.027 283.198 478.639 293.212 493.554C303.333 508.362 308.393 525.567 308.393 545.17C308.393 557.634 305.89 569.992 300.883 582.244C295.876 594.495 286.874 608.025 273.876 622.833C260.986 637.641 242.662 655.379 218.905 676.047L179.754 712.162V714.239H312.388V778H70.13ZM492.444 785.99C463.893 785.99 439.284 779.225 418.616 765.695C397.949 752.059 382.022 732.51 370.836 707.048C359.65 681.48 354.11 650.745 354.216 614.843C354.323 578.941 359.916 548.472 370.996 523.437C382.182 498.295 398.055 479.172 418.616 466.068C439.284 452.858 463.893 446.253 492.444 446.253C520.996 446.253 545.605 452.858 566.273 466.068C587.047 479.172 603.027 498.295 614.213 523.437C625.399 548.579 630.939 579.048 630.832 614.843C630.832 650.852 625.239 681.64 614.053 707.208C602.867 732.776 586.94 752.325 566.273 765.855C545.711 779.278 521.102 785.99 492.444 785.99ZM492.444 721.271C509.49 721.271 523.286 712.588 533.833 695.223C544.38 677.751 549.6 650.958 549.493 614.843C549.493 591.192 547.096 571.697 542.302 556.356C537.508 540.908 530.85 529.403 522.327 521.839C513.805 514.275 503.844 510.493 492.444 510.493C475.506 510.493 461.816 519.069 451.376 536.221C440.935 553.266 435.662 579.474 435.555 614.843C435.449 638.813 437.739 658.682 442.427 674.449C447.221 690.216 453.932 701.988 462.562 709.765C471.191 717.435 481.152 721.271 492.444 721.271Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Robin van der Linde
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
BIN
assets/layers/questions/denominations/chf/20rp-2019-800px.png
Normal file
After Width: | Height: | Size: 129 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Swissmint
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
BIN
assets/layers/questions/denominations/chf/2fr-2019-800px.png
Normal file
After Width: | Height: | Size: 201 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Swissmint
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
39
assets/layers/questions/denominations/chf/50chf.svg
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<svg width="700" height="1230" viewBox="0 0 700 1230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="700" height="1230" fill="#D9D9D9"/>
|
||||||
|
<rect y="1160" width="700" height="70" fill="#28B55F"/>
|
||||||
|
<rect width="700" height="900" fill="#28B55F"/>
|
||||||
|
<rect x="7.5" y="7.5" width="685" height="1215" stroke="black" stroke-width="15"/>
|
||||||
|
<circle cx="376" cy="930" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="584" cy="1052" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="558" cy="1038" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="522" cy="1050" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="532" cy="1024" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="552" cy="986" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="542" cy="970" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="516" cy="988" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="500" cy="1036" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="500" cy="1016" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="462" cy="1054" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="470" cy="1016" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="436" cy="992" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="440" cy="1030" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="418" cy="1052" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="414" cy="1026" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="406" cy="1008" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="404" cy="980" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="386" cy="1058" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="356" cy="1046" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="376" cy="1022" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="348" cy="1020" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="368" cy="994" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="334" cy="1006" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="346" cy="964" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="412" cy="950" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="376" cy="964" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<circle cx="358" cy="940" r="6.5" stroke="#7FBD60" stroke-width="5"/>
|
||||||
|
<path d="M93.4062 1101.99C82.8002 1101.99 73.3778 1100.07 65.1392 1096.24C56.9006 1092.4 50.3902 1087.12 45.608 1080.4C40.8731 1073.67 38.411 1065.96 38.2216 1057.24H72.3125C72.5966 1062.59 74.7746 1066.9 78.8466 1070.17C82.9186 1073.39 87.7718 1075 93.4062 1075C97.8097 1075 101.716 1074.03 105.125 1072.09C108.534 1070.15 111.209 1067.42 113.151 1063.92C115.092 1060.37 116.039 1056.3 115.991 1051.7C116.039 1047.02 115.068 1042.92 113.08 1039.42C111.138 1035.91 108.439 1033.19 104.983 1031.25C101.574 1029.26 97.6439 1028.27 93.1932 1028.27C88.9792 1028.22 84.9782 1029.14 81.1903 1031.04C77.4498 1032.93 74.6089 1035.51 72.6676 1038.78L41.6307 1032.95L47.9517 954.545H141.276V982.884H76.858L73.5199 1017.19H74.3722C76.7869 1013.16 80.6695 1009.85 86.0199 1007.24C91.4176 1004.59 97.5492 1003.27 104.415 1003.27C113.127 1003.27 120.892 1005.3 127.71 1009.38C134.576 1013.4 139.973 1018.99 143.903 1026.14C147.881 1033.29 149.869 1041.48 149.869 1050.71C149.869 1060.7 147.502 1069.55 142.767 1077.27C138.08 1084.99 131.498 1091.05 123.023 1095.45C114.595 1099.81 104.723 1101.99 93.4062 1101.99ZM229.326 1103.55C216.637 1103.55 205.699 1100.54 196.513 1094.53C187.328 1088.47 180.249 1079.78 175.278 1068.47C170.306 1057.1 167.844 1043.44 167.891 1027.49C167.939 1011.53 170.424 997.988 175.349 986.861C180.32 975.687 187.375 967.187 196.513 961.364C205.699 955.492 216.637 952.557 229.326 952.557C242.015 952.557 252.953 955.492 262.138 961.364C271.371 967.187 278.474 975.687 283.445 986.861C288.417 998.035 290.879 1011.58 290.832 1027.49C290.832 1043.49 288.346 1057.17 283.374 1068.54C278.403 1079.9 271.324 1088.59 262.138 1094.6C253 1100.57 242.063 1103.55 229.326 1103.55ZM229.326 1074.79C236.902 1074.79 243.033 1070.93 247.721 1063.21C252.408 1055.45 254.728 1043.54 254.681 1027.49C254.681 1016.97 253.616 1008.31 251.485 1001.49C249.354 994.626 246.395 989.512 242.607 986.151C238.819 982.789 234.392 981.108 229.326 981.108C221.798 981.108 215.713 984.92 211.073 992.543C206.433 1000.12 204.089 1011.77 204.042 1027.49C203.995 1038.14 205.013 1046.97 207.096 1053.98C209.227 1060.98 212.21 1066.22 216.045 1069.67C219.88 1073.08 224.307 1074.79 229.326 1074.79Z" fill="#075F29"/>
|
||||||
|
<rect x="188" y="122" width="75" height="250" fill="#075F29"/>
|
||||||
|
<rect x="100" y="291" width="75" height="250" transform="rotate(-90 100 291)" fill="#075F29"/>
|
||||||
|
<circle cx="479" cy="668" r="160" fill="#538268"/>
|
||||||
|
<path d="M191.414 782.474C167.55 782.474 146.35 778.16 127.813 769.531C109.276 760.901 94.6278 749.023 83.8679 733.895C73.2145 718.767 67.6747 701.402 67.2486 681.8H143.953C144.592 693.838 149.493 703.533 158.655 710.884C167.817 718.128 178.737 721.75 191.414 721.75C201.322 721.75 210.111 719.566 217.781 715.198C225.452 710.83 231.471 704.705 235.839 696.821C240.207 688.831 242.337 679.669 242.231 669.335C242.337 658.788 240.153 649.573 235.679 641.69C231.311 633.806 225.239 627.68 217.462 623.312C209.791 618.838 200.949 616.601 190.935 616.601C181.453 616.494 172.451 618.572 163.928 622.833C155.512 627.094 149.12 632.901 144.752 640.251L74.919 627.148L89.1413 450.727H299.12V514.488H154.18L146.67 591.672H148.587C154.021 582.616 162.756 575.159 174.795 569.3C186.94 563.334 200.736 560.351 216.183 560.351C235.786 560.351 253.257 564.932 268.598 574.094C284.045 583.149 296.19 595.72 305.033 611.807C313.982 627.893 318.456 646.324 318.456 667.098C318.456 689.577 313.129 709.499 302.476 726.864C291.929 744.229 277.121 757.865 258.051 767.773C239.088 777.574 216.876 782.474 191.414 782.474ZM497.233 785.99C468.682 785.99 444.073 779.225 423.405 765.695C402.738 752.059 386.811 732.51 375.625 707.048C364.439 681.48 358.899 650.745 359.006 614.843C359.112 578.941 364.705 548.472 375.785 523.437C386.971 498.295 402.844 479.172 423.405 466.068C444.073 452.858 468.682 446.253 497.233 446.253C525.785 446.253 550.394 452.858 571.062 466.068C591.836 479.172 607.816 498.295 619.002 523.437C630.188 548.579 635.728 579.048 635.621 614.843C635.621 650.852 630.028 681.64 618.842 707.208C607.656 732.776 591.729 752.325 571.062 765.855C550.501 779.278 525.891 785.99 497.233 785.99ZM497.233 721.271C514.279 721.271 528.075 712.588 538.622 695.223C549.169 677.751 554.389 650.958 554.283 614.843C554.283 591.192 551.885 571.697 547.091 556.356C542.297 540.908 535.639 529.403 527.116 521.839C518.594 514.275 508.633 510.493 497.233 510.493C480.295 510.493 466.605 519.069 456.165 536.221C445.724 553.266 440.451 579.474 440.344 614.843C440.238 638.813 442.528 658.682 447.216 674.449C452.01 690.216 458.721 701.988 467.351 709.765C475.98 717.435 485.941 721.271 497.233 721.271Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Robin van der Linde
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
BIN
assets/layers/questions/denominations/chf/50rp-2019-800px.png
Normal file
After Width: | Height: | Size: 103 KiB |
|
@ -0,0 +1,2 @@
|
||||||
|
SPDX-FileCopyrightText: Swissmint
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|