diff --git a/.eslintrc.json b/.eslintrc.json index 9d747b879..691ae90c7 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -2,15 +2,9 @@ "env": { "browser": true, "es2020": true, - "node": true + "node": true, + "jest": true }, - "extends": [ - "eslint:recommended", - "plugin:prettier/recommended", - "plugin:import/recommended", - "plugin:@typescript-eslint/recommended", - "next" - ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { @@ -19,29 +13,29 @@ "ecmaVersion": 11, "sourceType": "module" }, - "plugins": ["@typescript-eslint", "prettier"], "settings": { "import/resolver": { - "alias": { - "map": [ - ["assets", "./src/assets"], - ["components", "./src/components"], - ["db", "./db"], - ["hooks", "./src/components/hooks"], - ["lang", "./src/lang"], - ["lib", "./src/lib"], - ["public", "./public"], - ["queries", "./src/queries"], - ["store", "./src/store"], - ["styles", "./src/styles"] - ], - "extensions": [".ts", ".tsx", ".js", ".jsx", ".json"] + "node": { + "moduleDirectory": ["node_modules", "src/"] } } }, + "extends": [ + "plugin:@typescript-eslint/recommended", + "eslint:recommended", + "plugin:prettier/recommended", + "plugin:import/errors", + "plugin:import/typescript", + "plugin:css-modules/recommended", + "plugin:cypress/recommended", + "prettier", + "next" + ], + "plugins": ["@typescript-eslint", "prettier", "promise", "css-modules", "cypress"], "rules": { "no-console": "error", "react/display-name": "off", + "react-hooks/exhaustive-deps": "off", "react/react-in-jsx-scope": "off", "react/prop-types": "off", "import/no-anonymous-default-export": "off", diff --git a/.github/ISSUE_TEMPLATE/1.bug_report.yml b/.github/ISSUE_TEMPLATE/1.bug_report.yml index db8be2102..711468f25 100644 --- a/.github/ISSUE_TEMPLATE/1.bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1.bug_report.yml @@ -1,4 +1,4 @@ -name: "🐛 Bug Report" +name: '🐛 Bug Report' description: Create a bug report for Umami. body: - type: textarea @@ -22,6 +22,10 @@ body: label: Relevant log output description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. render: shell + - type: input + attributes: + label: Which Umami version are you using? (if relevant) + description: 'For example: Chrome, Edge, Firefox, etc' - type: input attributes: label: Which browser are you using? (if relevant) @@ -29,4 +33,4 @@ body: - type: input attributes: label: How are you deploying your application? (if relevant) - description: 'For example: Vercel, Railway, Docker, etc' \ No newline at end of file + description: 'For example: Vercel, Railway, Docker, etc' diff --git a/.github/workflows/cd-cloud.yml b/.github/workflows/cd-cloud.yml new file mode 100644 index 000000000..386a6ce03 --- /dev/null +++ b/.github/workflows/cd-cloud.yml @@ -0,0 +1,28 @@ +name: Create docker images + +on: + push: + branches: + - analytics + +jobs: + build: + name: Build, push, and deploy + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Generate random hash + id: random_hash + run: echo "hash=$(openssl rand -hex 4)" >> $GITHUB_OUTPUT + + - uses: mr-smithers-excellent/docker-build-push@v6 + name: Build & push Docker image to docker.io + with: + image: umamisoftware/umami + tags: cloud-${{ steps.random_hash.outputs.hash }}, cloud-latest + buildArgs: DATABASE_TYPE=postgresql + registry: docker.io + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} diff --git a/.github/workflows/cd-manual.yml b/.github/workflows/cd-manual.yml index ac701fcc5..1f8651fa2 100644 --- a/.github/workflows/cd-manual.yml +++ b/.github/workflows/cd-manual.yml @@ -20,11 +20,26 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Extract version parts from input + id: extract_version + run: | + echo "version=$(echo ${{ github.event.inputs.version }})" >> $GITHUB_ENV + echo "major=$(echo ${{ github.event.inputs.version }} | cut -d. -f1)" >> $GITHUB_ENV + echo "minor=$(echo ${{ github.event.inputs.version }} | cut -d. -f2)" >> $GITHUB_ENV + + - name: Generate tags + id: generate_tags + run: | + echo "tag_major=$(echo ${{ matrix.db-type }}-${{ env.major }})" >> $GITHUB_ENV + echo "tag_minor=$(echo ${{ matrix.db-type }}-${{ env.major }}.${{ env.minor }})" >> $GITHUB_ENV + echo "tag_patch=$(echo ${{ matrix.db-type }}-${{ env.version }})" >> $GITHUB_ENV + echo "tag_latest=$(echo ${{ matrix.db-type }}-latest)" >> $GITHUB_ENV + - uses: mr-smithers-excellent/docker-build-push@v6 name: Build & push Docker image to ghcr.io for ${{ matrix.db-type }} with: image: umami - tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest + tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }} buildArgs: DATABASE_TYPE=${{ matrix.db-type }} registry: ghcr.io multiPlatform: true @@ -36,7 +51,7 @@ jobs: name: Build & push Docker image to docker.io for ${{ matrix.db-type }} with: image: umamisoftware/umami - tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest + tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }} buildArgs: DATABASE_TYPE=${{ matrix.db-type }} registry: docker.io username: ${{ secrets.DOCKER_USERNAME }} diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0660bcbaa..f67f51c38 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -16,13 +16,22 @@ jobs: - uses: actions/checkout@v3 - name: Set env - run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV + run: | + echo "NOW=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV + + - name: Generate tags + id: generate_tags + run: | + echo "tag_patch=$(echo ${{ matrix.db-type }})-${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV + echo "tag_minor=$(echo ${{ matrix.db-type }})-$(echo ${GITHUB_REF#refs/tags/} | cut -d. -f1,2)" >> $GITHUB_ENV + echo "tag_major=$(echo ${{ matrix.db-type }})-$(echo ${GITHUB_REF#refs/tags/} | cut -d. -f1)" >> $GITHUB_ENV + echo "tag_latest=$(echo ${{ matrix.db-type }})-latest" >> $GITHUB_ENV - uses: mr-smithers-excellent/docker-build-push@v6 name: Build & push Docker image to ghcr.io for ${{ matrix.db-type }} with: image: umami - tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest + tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }} buildArgs: DATABASE_TYPE=${{ matrix.db-type }} registry: ghcr.io multiPlatform: true @@ -34,7 +43,7 @@ jobs: name: Build & push Docker image to docker.io for ${{ matrix.db-type }} with: image: umamisoftware/umami - tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest + tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }} buildArgs: DATABASE_TYPE=${{ matrix.db-type }} registry: docker.io username: ${{ secrets.DOCKER_USERNAME }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66e16a03e..314c6944b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,20 +16,21 @@ jobs: strategy: matrix: include: - - node-version: 18.x + - node-version: 18.18 db-type: postgresql - - node-version: 18.x + - node-version: 18.18 db-type: mysql steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - cache: 'npm' + cache: 'yarn' env: DATABASE_TYPE: ${{ matrix.db-type }} - run: npm install --global yarn - - run: yarn install --frozen-lockfile + - run: yarn install + - run: yarn test - run: yarn build diff --git a/.gitignore b/.gitignore index 050397c90..b11f45093 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ node_modules # misc .DS_Store .idea +.yarn *.iml *.log .vscode @@ -35,6 +36,7 @@ yarn-error.log* # local env files .env .env.* +*.env.* *.dev.yml diff --git a/.stylelintrc.json b/.stylelintrc.json index 9a05af144..b940b63e4 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -5,13 +5,7 @@ "stylelint-config-prettier" ], "rules": { - "no-descending-specificity": null, - "selector-pseudo-class-no-unknown": [ - true, - { - "ignorePseudoClasses": ["global", "horizontal", "vertical"] - } - ] + "no-descending-specificity": null }, "ignoreFiles": ["**/*.js", "**/*.md"] } diff --git a/Dockerfile b/Dockerfile index 801b2bc20..824c16db0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,8 +36,8 @@ RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs RUN set -x \ - && apk add --no-cache curl \ - && yarn add npm-run-all dotenv prisma semver + && apk add --no-cache curl openssl \ + && yarn add npm-run-all dotenv semver prisma@5.17.0 # You only need to copy next.config.js if you are NOT using the default configuration COPY --from=builder /app/next.config.js . diff --git a/README.md b/README.md index 0f76e5635..b13784283 100644 --- a/README.md +++ b/README.md @@ -1,69 +1,93 @@ -# umami +

+ Umami Logo +

-Umami is a simple, fast, privacy-focused alternative to Google Analytics. +

Umami

-## Getting started +

+ Umami is a simple, fast, privacy-focused alternative to Google Analytics. +

-A detailed getting started guide can be found at [https://umami.is/docs/](https://umami.is/docs/) +

+ + GitHub Release + + + MIT License + + + Build Status + + + Umami Demo + +

-## Installing from source +--- + +## 🚀 Getting Started + +A detailed getting started guide can be found at [umami.is/docs](https://umami.is/docs/). + +--- + +## 🛠 Installing from Source ### Requirements -- A server with Node.js version 16.13 or newer -- A database. Umami supports [MySQL](https://www.mysql.com/) and [Postgresql](https://www.postgresql.org/) databases. +- A server with Node.js version 18.18 or newer +- A database. Umami supports [MariaDB](https://www.mariadb.org/) (minimum v10.5), [MySQL](https://www.mysql.com/) (minimum v8.0) and [PostgreSQL](https://www.postgresql.org/) (minimum v12.14) databases. ### Install Yarn -``` +```bash npm install -g yarn ``` -### Get the source code and install packages +### Get the Source Code and Install Packages -``` +```bash git clone https://github.com/umami-software/umami.git cd umami yarn install ``` -### Configure umami +### Configure Umami -Create an `.env` file with the following +Create an `.env` file with the following: -``` +```bash DATABASE_URL=connection-url ``` -The connection url is in the following format: +The connection URL format: -``` +```bash postgresql://username:mypassword@localhost:5432/mydb - mysql://username:mypassword@localhost:3306/mydb ``` -### Build the application +### Build the Application ```bash yarn build ``` -The build step will also create tables in your database if you ae installing for the first time. It will also create a login user with username **admin** and password **umami**. +*The build step will create tables in your database if you are installing for the first time. It will also create a login user with username **admin** and password **umami**.* -### Start the application +### Start the Application ```bash yarn start ``` -By default this will launch the application on `http://localhost:3000`. You will need to either -[proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) requests from your web server -or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly. +*By default, this will launch the application on `http://localhost:3000`. You will need to either [proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) requests from your web server or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly.* -## Installing with Docker +--- -To build the umami container and start up a Postgres database, run: +## 🐳 Installing with Docker + +To build the Umami container and start up a Postgres database, run: ```bash docker compose up -d @@ -72,16 +96,18 @@ docker compose up -d Alternatively, to pull just the Umami Docker image with PostgreSQL support: ```bash -docker pull ghcr.io/umami-software/umami:postgresql-latest +docker pull docker.umami.is/umami-software/umami:postgresql-latest ``` Or with MySQL support: ```bash -docker pull ghcr.io/umami-software/umami:mysql-latest +docker pull docker.umami.is/umami-software/umami:mysql-latest ``` -## Getting updates +--- + +## 🔄 Getting Updates To get the latest features, simply do a pull, install any new dependencies, and rebuild: @@ -98,6 +124,36 @@ docker compose pull docker compose up --force-recreate ``` -## License +--- -MIT +## 🛟 Support + +

+ + GitHub + + + Twitter + + + LinkedIn + + + Discord + +

+ +[release-shield]: https://img.shields.io/github/release/umami-software/umami.svg +[releases-url]: https://github.com/umami-software/umami/releases +[license-shield]: https://img.shields.io/github/license/umami-software/umami.svg +[license-url]: https://github.com/umami-software/umami/blob/master/LICENSE +[build-shield]: https://img.shields.io/github/actions/workflow/status/umami-software/umami/ci.yml +[build-url]: https://github.com/umami-software/umami/actions +[github-shield]: https://img.shields.io/badge/GitHub--blue?style=social&logo=github +[github-url]: https://github.com/umami-software/umami +[twitter-shield]: https://img.shields.io/badge/Twitter--blue?style=social&logo=twitter +[twitter-url]: https://twitter.com/umami_software +[linkedin-shield]: https://img.shields.io/badge/LinkedIn--blue?style=social&logo=linkedin +[linkedin-url]: https://linkedin.com/company/umami-software +[discord-shield]: https://img.shields.io/badge/Discord--blue?style=social&logo=discord +[discord-url]: https://discord.com/invite/4dz4zcXYrQ diff --git a/cypress.config.ts b/cypress.config.ts new file mode 100644 index 000000000..4b01931b4 --- /dev/null +++ b/cypress.config.ts @@ -0,0 +1,12 @@ +import { defineConfig } from 'cypress'; + +export default defineConfig({ + e2e: { + baseUrl: 'http://localhost:3000', + }, + // default username / password on init + env: { + umami_user: 'admin', + umami_password: 'umami', + }, +}); diff --git a/cypress/docker-compose.yml b/cypress/docker-compose.yml new file mode 100644 index 000000000..01a47bd8c --- /dev/null +++ b/cypress/docker-compose.yml @@ -0,0 +1,52 @@ +--- +version: '3' +services: + umami: + build: ../ + #image: ghcr.io/umami-software/umami:postgresql-latest + ports: + - '3000:3000' + environment: + DATABASE_URL: postgresql://umami:umami@db:5432/umami + DATABASE_TYPE: postgresql + APP_SECRET: replace-me-with-a-random-string + depends_on: + db: + condition: service_healthy + restart: always + healthcheck: + test: ['CMD-SHELL', 'curl http://localhost:3000/api/heartbeat'] + interval: 5s + timeout: 5s + retries: 5 + db: + image: postgres:15-alpine + environment: + POSTGRES_DB: umami + POSTGRES_USER: umami + POSTGRES_PASSWORD: umami + volumes: + - umami-db-data:/var/lib/postgresql/data + restart: always + healthcheck: + test: ['CMD-SHELL', 'pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}'] + interval: 5s + timeout: 5s + retries: 5 + cypress: + image: 'cypress/included:13.6.0' + depends_on: + - umami + - db + environment: + - CYPRESS_baseUrl=http://umami:3000 + - CYPRESS_umami_user=admin + - CYPRESS_umami_password=umami + volumes: + - ./tsconfig.json:/tsconfig.json + - ../cypress.config.ts:/cypress.config.ts + - ./:/cypress + - ../node_modules/:/node_modules + - ../src/lib/crypto.ts:/src/lib/crypto.ts +volumes: + umami-db-data: diff --git a/cypress/e2e/login.cy.ts b/cypress/e2e/login.cy.ts new file mode 100644 index 000000000..5831c81d6 --- /dev/null +++ b/cypress/e2e/login.cy.ts @@ -0,0 +1,22 @@ +describe('Login tests', () => { + it( + 'logs user in with correct credentials and logs user out', + { + defaultCommandTimeout: 10000, + }, + () => { + cy.visit('/login'); + cy.getDataTest('input-username').find('input').click(); + cy.getDataTest('input-username').find('input').type(Cypress.env('umami_user'), { delay: 50 }); + cy.getDataTest('input-password').find('input').click(); + cy.getDataTest('input-password') + .find('input') + .type(Cypress.env('umami_password'), { delay: 50 }); + cy.getDataTest('button-submit').click(); + cy.url().should('eq', Cypress.config().baseUrl + '/dashboard'); + cy.getDataTest('button-profile').click(); + cy.getDataTest('item-logout').click(); + cy.url().should('eq', Cypress.config().baseUrl + '/login'); + }, + ); +}); diff --git a/cypress/e2e/website.cy.ts b/cypress/e2e/website.cy.ts new file mode 100644 index 000000000..b60d8e7a4 --- /dev/null +++ b/cypress/e2e/website.cy.ts @@ -0,0 +1,89 @@ +describe('Website tests', () => { + Cypress.session.clearAllSavedSessions(); + + beforeEach(() => { + cy.login(Cypress.env('umami_user'), Cypress.env('umami_password')); + }); + + it('Add a website', () => { + // add website + cy.visit('/settings/websites'); + cy.getDataTest('button-website-add').click(); + cy.contains(/Add website/i).should('be.visible'); + cy.getDataTest('input-name').find('input').click(); + cy.getDataTest('input-name').find('input').type('Add test', { delay: 50 }); + cy.getDataTest('input-domain').find('input').click(); + cy.getDataTest('input-domain').find('input').type('addtest.com', { delay: 50 }); + cy.getDataTest('button-submit').click(); + cy.get('td[label="Name"]').should('contain.text', 'Add test'); + cy.get('td[label="Domain"]').should('contain.text', 'addtest.com'); + + // clean-up data + cy.getDataTest('link-button-edit').first().click(); + cy.contains(/Details/i).should('be.visible'); + cy.getDataTest('text-field-websiteId') + .find('input') + .then($input => { + const websiteId = $input[0].value; + cy.deleteWebsite(websiteId); + }); + cy.visit('/settings/websites'); + cy.contains(/Add test/i).should('not.exist'); + }); + + it('Edit a website', () => { + // prep data + cy.addWebsite('Update test', 'updatetest.com'); + cy.visit('/settings/websites'); + + // edit website + cy.getDataTest('link-button-edit').first().click(); + cy.contains(/Details/i).should('be.visible'); + cy.getDataTest('input-name').find('input').click(); + cy.getDataTest('input-name').find('input').clear(); + cy.getDataTest('input-name').find('input').type('Updated website', { delay: 50 }); + cy.getDataTest('input-domain').find('input').click(); + cy.getDataTest('input-domain').find('input').clear(); + cy.getDataTest('input-domain').find('input').type('updatedwebsite.com', { delay: 50 }); + cy.getDataTest('button-submit').click({ force: true }); + cy.getDataTest('input-name').find('input').should('have.value', 'Updated website'); + cy.getDataTest('input-domain').find('input').should('have.value', 'updatedwebsite.com'); + + // verify tracking script + cy.get('div') + .contains(/Tracking code/i) + .click(); + cy.get('textarea').should('contain.text', Cypress.config().baseUrl + '/script.js'); + + // clean-up data + cy.get('div') + .contains(/Details/i) + .click(); + cy.contains(/Details/i).should('be.visible'); + cy.getDataTest('text-field-websiteId') + .find('input') + .then($input => { + const websiteId = $input[0].value; + cy.deleteWebsite(websiteId); + }); + cy.visit('/settings/websites'); + cy.contains(/Add test/i).should('not.exist'); + }); + + it('Delete a website', () => { + // prep data + cy.addWebsite('Delete test', 'deletetest.com'); + cy.visit('/settings/websites'); + + // delete website + cy.getDataTest('link-button-edit').first().click(); + cy.contains(/Data/i).should('be.visible'); + cy.get('div').contains(/Data/i).click(); + cy.contains(/All website data will be deleted./i).should('be.visible'); + cy.getDataTest('button-delete').click(); + cy.contains(/Type DELETE in the box below to confirm./i).should('be.visible'); + cy.get('input[name="confirm"').type('DELETE'); + cy.get('button[type="submit"]').click(); + cy.contains(/Delete test/i).should('not.exist'); + }); +}); diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts new file mode 100644 index 000000000..2c45142b3 --- /dev/null +++ b/cypress/support/e2e.ts @@ -0,0 +1,57 @@ +/// +import { uuid } from '../../src/lib/crypto'; + +Cypress.Commands.add('getDataTest', (value: string) => { + return cy.get(`[data-test=${value}]`); +}); + +Cypress.Commands.add('login', (username: string, password: string) => { + cy.session([username, password], () => { + cy.request({ + method: 'POST', + url: '/api/auth/login', + body: { + username, + password, + }, + }) + .then(response => { + Cypress.env('authorization', `bearer ${response.body.token}`); + window.localStorage.setItem('umami.auth', JSON.stringify(response.body.token)); + }) + .its('status') + .should('eq', 200); + }); +}); + +Cypress.Commands.add('addWebsite', (name: string, domain: string) => { + cy.request({ + method: 'POST', + url: '/api/websites', + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + body: { + id: uuid(), + createdBy: '41e2b680-648e-4b09-bcd7-3e2b10c06264', + name: name, + domain: domain, + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); + +Cypress.Commands.add('deleteWebsite', (websiteId: string) => { + cy.request({ + method: 'DELETE', + url: `/api/websites/${websiteId}`, + headers: { + 'Content-Type': 'application/json', + Authorization: Cypress.env('authorization'), + }, + }).then(response => { + expect(response.status).to.eq(200); + }); +}); diff --git a/cypress/support/index.d.ts b/cypress/support/index.d.ts new file mode 100644 index 000000000..90cca19b2 --- /dev/null +++ b/cypress/support/index.d.ts @@ -0,0 +1,26 @@ +/// + +declare namespace Cypress { + interface Chainable { + /** + * Custom command to select DOM element by data-test attribute. + * @example cy.getDataTest('greeting') + */ + getDataTest(value: string): Chainable>; + /** + * Custom command to login user into the app. + * @example cy.login('admin', 'password) + */ + login(username: string, password: string): Chainable>; + /** + * Custom command to create a website + * @example cy.addWebsite('test', 'test.com') + */ + addWebsite(name: string, domain: string): Chainable>; + /** + * Custom command to create a website + * @example cy.deleteWebsite('02d89813-7a72-41e1-87f0-8d668f85008b') + */ + deleteWebsite(websiteId: string): Chainable>; + } +} diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json new file mode 100644 index 000000000..48c3e14e4 --- /dev/null +++ b/cypress/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["es5", "dom"], + "types": ["cypress", "node"] + }, + "include": ["**/*.ts", "../cypress.config.ts"] +} diff --git a/db/clickhouse/migrations/02_add_visit_id.sql b/db/clickhouse/migrations/02_add_visit_id.sql new file mode 100644 index 000000000..202c0fd30 --- /dev/null +++ b/db/clickhouse/migrations/02_add_visit_id.sql @@ -0,0 +1,90 @@ +CREATE TABLE umami.website_event_join +( + session_id UUID, + visit_id UUID, + created_at DateTime('UTC') +) + engine = MergeTree + ORDER BY (session_id, created_at) + SETTINGS index_granularity = 8192; + +INSERT INTO umami.website_event_join +SELECT DISTINCT + s.session_id, + generateUUIDv4() visit_id, + s.created_at +FROM (SELECT DISTINCT session_id, + date_trunc('hour', created_at) created_at + FROM website_event) s; + +-- create new table +CREATE TABLE umami.website_event_new +( + website_id UUID, + session_id UUID, + visit_id UUID, + event_id UUID, + hostname LowCardinality(String), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + subdivision1 LowCardinality(String), + subdivision2 LowCardinality(String), + city String, + url_path String, + url_query String, + referrer_path String, + referrer_query String, + referrer_domain String, + page_title String, + event_type UInt32, + event_name String, + created_at DateTime('UTC'), + job_id UUID +) + engine = MergeTree + ORDER BY (website_id, session_id, created_at) + SETTINGS index_granularity = 8192; + +INSERT INTO umami.website_event_new +SELECT we.website_id, + we.session_id, + j.visit_id, + we.event_id, + we.hostname, + we.browser, + we.os, + we.device, + we.screen, + we.language, + we.country, + we.subdivision1, + we.subdivision2, + we.city, + we.url_path, + we.url_query, + we.referrer_path, + we.referrer_query, + we.referrer_domain, + we.page_title, + we.event_type, + we.event_name, + we.created_at, + we.job_id +FROM umami.website_event we +JOIN umami.website_event_join j + ON we.session_id = j.session_id + and date_trunc('hour', we.created_at) = j.created_at + +RENAME TABLE umami.website_event TO umami.website_event_old; +RENAME TABLE umami.website_event_new TO umami.website_event; + +/* + + DROP TABLE umami.website_event_old + DROP TABLE umami.website_event_join + + */ \ No newline at end of file diff --git a/db/clickhouse/migrations/03_session_data.sql b/db/clickhouse/migrations/03_session_data.sql new file mode 100644 index 000000000..1ed2c060e --- /dev/null +++ b/db/clickhouse/migrations/03_session_data.sql @@ -0,0 +1,57 @@ +CREATE TABLE umami.event_data_new +( + website_id UUID, + session_id UUID, + event_id UUID, + url_path String, + event_name String, + data_key String, + string_value Nullable(String), + number_value Nullable(Decimal64(4)), + date_value Nullable(DateTime('UTC')), + data_type UInt32, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) + engine = MergeTree + ORDER BY (website_id, event_id, data_key, created_at) + SETTINGS index_granularity = 8192; + +INSERT INTO umami.event_data_new +SELECT website_id, + session_id, + event_id, + url_path, + event_name, + event_key, + string_value, + number_value, + date_value, + data_type, + created_at, + NULL +FROM umami.event_data; + +CREATE TABLE umami.session_data +( + website_id UUID, + session_id UUID, + data_key String, + string_value Nullable(String), + number_value Nullable(Decimal64(4)), + date_value Nullable(DateTime('UTC')), + data_type UInt32, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) + engine = MergeTree + ORDER BY (website_id, session_id, data_key, created_at) + SETTINGS index_granularity = 8192; + +RENAME TABLE umami.event_data TO umami.event_data_old; +RENAME TABLE umami.event_data_new TO umami.event_data; + +/* +DROP TABLE umami.event_data_old + */ + diff --git a/db/clickhouse/migrations/04_add_tag.sql b/db/clickhouse/migrations/04_add_tag.sql new file mode 100644 index 000000000..7ffc49952 --- /dev/null +++ b/db/clickhouse/migrations/04_add_tag.sql @@ -0,0 +1,77 @@ +-- add tag column +ALTER TABLE umami.website_event ADD COLUMN "tag" String AFTER "event_name"; +ALTER TABLE umami.website_event_stats_hourly ADD COLUMN "tag" SimpleAggregateFunction(groupArrayArray, Array(String)) AFTER "max_time"; + +-- update materialized view +DROP TABLE umami.website_event_stats_hourly_mv; + +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + referrer_domain, + page_title, + event_type, + event_name, + views, + min_time, + max_time, + tag, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + event_type, + timestamp); \ No newline at end of file diff --git a/db/clickhouse/schema.sql b/db/clickhouse/schema.sql index 44428e94c..5ceaaa0eb 100644 --- a/db/clickhouse/schema.sql +++ b/db/clickhouse/schema.sql @@ -1,10 +1,9 @@ -SET allow_experimental_object_type = 1; - -- Create Event CREATE TABLE umami.website_event ( website_id UUID, session_id UUID, + visit_id UUID, event_id UUID, --sessions hostname LowCardinality(String), @@ -27,88 +26,15 @@ CREATE TABLE umami.website_event --events event_type UInt32, event_name String, + tag String, created_at DateTime('UTC'), - job_id UUID -) - engine = MergeTree - ORDER BY (website_id, session_id, created_at) - SETTINGS index_granularity = 8192; - -CREATE TABLE umami.website_event_queue ( - website_id UUID, - session_id UUID, - event_id UUID, - --sessions - hostname LowCardinality(String), - browser LowCardinality(String), - os LowCardinality(String), - device LowCardinality(String), - screen LowCardinality(String), - language LowCardinality(String), - country LowCardinality(String), - subdivision1 LowCardinality(String), - subdivision2 LowCardinality(String), - city String, - --pageviews - url_path String, - url_query String, - referrer_path String, - referrer_query String, - referrer_domain String, - page_title String, - --events - event_type UInt32, - event_name String, - created_at DateTime('UTC'), - --virtual columns - _error String, - _raw_message String -) -ENGINE = Kafka -SETTINGS kafka_broker_list = 'domain:9092,domain:9093,domain:9094', -- input broker list - kafka_topic_list = 'event', - kafka_group_name = 'event_consumer_group', - kafka_format = 'JSONEachRow', - kafka_max_block_size = 1048576, - kafka_handle_error_mode = 'stream'; - -CREATE MATERIALIZED VIEW umami.website_event_queue_mv TO umami.website_event AS -SELECT website_id, - session_id, - event_id, - hostname, - browser, - os, - device, - screen, - language, - country, - subdivision1, - subdivision2, - city, - url_path, - url_query, - referrer_path, - referrer_query, - referrer_domain, - page_title, - event_type, - event_name, - created_at -FROM umami.website_event_queue; - -CREATE MATERIALIZED VIEW umami.website_event_errors_mv -( - error String, - raw String + job_id Nullable(UUID) ) ENGINE = MergeTree -ORDER BY (error, raw) -SETTINGS index_granularity = 8192 AS -SELECT _error AS error, - _raw_message AS raw -FROM umami.website_event_queue -WHERE length(_error) > 0; + PARTITION BY toYYYYMM(created_at) + ORDER BY (toStartOfHour(created_at), website_id, session_id, visit_id, created_at) + PRIMARY KEY (toStartOfHour(created_at), website_id, session_id, visit_id) + SETTINGS index_granularity = 8192; CREATE TABLE umami.event_data ( @@ -117,65 +43,156 @@ CREATE TABLE umami.event_data event_id UUID, url_path String, event_name String, - event_key String, + data_key String, string_value Nullable(String), - number_value Nullable(Decimal64(4)), --922337203685477.5625 + number_value Nullable(Decimal64(4)), date_value Nullable(DateTime('UTC')), data_type UInt32, created_at DateTime('UTC'), - job_id UUID -) - engine = MergeTree - ORDER BY (website_id, event_id, event_key, created_at) - SETTINGS index_granularity = 8192; - -CREATE TABLE umami.event_data_queue ( - website_id UUID, - session_id UUID, - event_id UUID, - url_path String, - event_name String, - event_key String, - string_value Nullable(String), - number_value Nullable(Decimal64(4)), --922337203685477.5625 - date_value Nullable(DateTime('UTC')), - data_type UInt32, - created_at DateTime('UTC'), - --virtual columns - _error String, - _raw_message String -) -ENGINE = Kafka -SETTINGS kafka_broker_list = 'domain:9092,domain:9093,domain:9094', -- input broker list - kafka_topic_list = 'event_data', - kafka_group_name = 'event_data_consumer_group', - kafka_format = 'JSONEachRow', - kafka_max_block_size = 1048576, - kafka_handle_error_mode = 'stream'; - -CREATE MATERIALIZED VIEW umami.event_data_queue_mv TO umami.event_data AS -SELECT website_id, - session_id, - event_id, - url_path, - event_name, - event_key, - string_value, - number_value, - date_value, - data_type, - created_at -FROM umami.event_data_queue; - -CREATE MATERIALIZED VIEW umami.event_data_errors_mv -( - error String, - raw String + job_id Nullable(UUID) ) ENGINE = MergeTree -ORDER BY (error, raw) -SETTINGS index_granularity = 8192 AS -SELECT _error AS error, - _raw_message AS raw -FROM umami.event_data_queue -WHERE length(_error) > 0; \ No newline at end of file + ORDER BY (website_id, event_id, data_key, created_at) + SETTINGS index_granularity = 8192; + +CREATE TABLE umami.session_data +( + website_id UUID, + session_id UUID, + data_key String, + string_value Nullable(String), + number_value Nullable(Decimal64(4)), + date_value Nullable(DateTime('UTC')), + data_type UInt32, + created_at DateTime('UTC'), + job_id Nullable(UUID) +) +ENGINE = ReplacingMergeTree + ORDER BY (website_id, session_id, data_key) + SETTINGS index_granularity = 8192; + +-- stats hourly +CREATE TABLE umami.website_event_stats_hourly +( + website_id UUID, + session_id UUID, + visit_id UUID, + hostname LowCardinality(String), + browser LowCardinality(String), + os LowCardinality(String), + device LowCardinality(String), + screen LowCardinality(String), + language LowCardinality(String), + country LowCardinality(String), + subdivision1 LowCardinality(String), + city String, + entry_url AggregateFunction(argMin, String, DateTime('UTC')), + exit_url AggregateFunction(argMax, String, DateTime('UTC')), + url_path SimpleAggregateFunction(groupArrayArray, Array(String)), + url_query SimpleAggregateFunction(groupArrayArray, Array(String)), + referrer_domain SimpleAggregateFunction(groupArrayArray, Array(String)), + page_title SimpleAggregateFunction(groupArrayArray, Array(String)), + event_type UInt32, + event_name SimpleAggregateFunction(groupArrayArray, Array(String)), + views SimpleAggregateFunction(sum, UInt64), + min_time SimpleAggregateFunction(min, DateTime('UTC')), + max_time SimpleAggregateFunction(max, DateTime('UTC')), + tag SimpleAggregateFunction(groupArrayArray, Array(String)), + created_at Datetime('UTC') +) +ENGINE = AggregatingMergeTree + PARTITION BY toYYYYMM(created_at) + ORDER BY ( + website_id, + event_type, + toStartOfHour(created_at), + cityHash64(visit_id), + visit_id + ) + SAMPLE BY cityHash64(visit_id); + +CREATE MATERIALIZED VIEW umami.website_event_stats_hourly_mv +TO umami.website_event_stats_hourly +AS +SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + entry_url, + exit_url, + url_paths as url_path, + url_query, + referrer_domain, + page_title, + event_type, + event_name, + views, + min_time, + max_time, + tag, + timestamp as created_at +FROM (SELECT + website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + argMinState(url_path, created_at) entry_url, + argMaxState(url_path, created_at) exit_url, + arrayFilter(x -> x != '', groupArray(url_path)) as url_paths, + arrayFilter(x -> x != '', groupArray(url_query)) url_query, + arrayFilter(x -> x != '', groupArray(referrer_domain)) referrer_domain, + arrayFilter(x -> x != '', groupArray(page_title)) page_title, + event_type, + if(event_type = 2, groupArray(event_name), []) event_name, + sumIf(1, event_type = 1) views, + min(created_at) min_time, + max(created_at) max_time, + arrayFilter(x -> x != '', groupArray(tag)) tag, + toStartOfHour(created_at) timestamp +FROM umami.website_event +GROUP BY website_id, + session_id, + visit_id, + hostname, + browser, + os, + device, + screen, + language, + country, + subdivision1, + city, + event_type, + timestamp); + +-- projections +ALTER TABLE umami.website_event +ADD PROJECTION website_event_url_path_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, url_path, created_at +); + +ALTER TABLE umami.website_event MATERIALIZE PROJECTION website_event_url_path_projection; + +ALTER TABLE umami.website_event +ADD PROJECTION website_event_referrer_domain_projection ( +SELECT * ORDER BY toStartOfDay(created_at), website_id, referrer_domain, created_at +); + +ALTER TABLE umami.website_event MATERIALIZE PROJECTION website_event_referrer_domain_projection; diff --git a/db/mysql/migrations/01_init/migration.sql b/db/mysql/migrations/01_init/migration.sql index bd332805a..d66e2a9cc 100644 --- a/db/mysql/migrations/01_init/migration.sql +++ b/db/mysql/migrations/01_init/migration.sql @@ -11,7 +11,7 @@ CREATE TABLE `user` ( UNIQUE INDEX `user_user_id_key`(`user_id`), UNIQUE INDEX `user_username_key`(`username`), PRIMARY KEY (`user_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `session` ( @@ -33,7 +33,7 @@ CREATE TABLE `session` ( INDEX `session_created_at_idx`(`created_at`), INDEX `session_website_id_idx`(`website_id`), PRIMARY KEY (`session_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `website` ( @@ -53,7 +53,7 @@ CREATE TABLE `website` ( INDEX `website_created_at_idx`(`created_at`), INDEX `website_share_id_idx`(`share_id`), PRIMARY KEY (`website_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `website_event` ( @@ -76,7 +76,7 @@ CREATE TABLE `website_event` ( INDEX `website_event_website_id_created_at_idx`(`website_id`, `created_at`), INDEX `website_event_website_id_session_id_created_at_idx`(`website_id`, `session_id`, `created_at`), PRIMARY KEY (`event_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `event_data` ( @@ -95,7 +95,7 @@ CREATE TABLE `event_data` ( INDEX `event_data_website_event_id_idx`(`website_event_id`), INDEX `event_data_website_id_website_event_id_created_at_idx`(`website_id`, `website_event_id`, `created_at`), PRIMARY KEY (`event_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `team` ( @@ -109,7 +109,7 @@ CREATE TABLE `team` ( UNIQUE INDEX `team_access_code_key`(`access_code`), INDEX `team_access_code_idx`(`access_code`), PRIMARY KEY (`team_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `team_user` ( @@ -124,7 +124,7 @@ CREATE TABLE `team_user` ( INDEX `team_user_team_id_idx`(`team_id`), INDEX `team_user_user_id_idx`(`user_id`), PRIMARY KEY (`team_user_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `team_website` ( @@ -137,7 +137,7 @@ CREATE TABLE `team_website` ( INDEX `team_website_team_id_idx`(`team_id`), INDEX `team_website_website_id_idx`(`website_id`), PRIMARY KEY (`team_website_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- AddSystemUser INSERT INTO user (user_id, username, role, password) VALUES ('41e2b680-648e-4b09-bcd7-3e2b10c06264' , 'admin', 'admin', '$2b$10$BUli0c.muyCW1ErNJc3jL.vFRFtFJWrT8/GcR4A.sUdCznaXiqFXa'); \ No newline at end of file diff --git a/db/mysql/migrations/02_report_schema_session_data/migration.sql b/db/mysql/migrations/02_report_schema_session_data/migration.sql index 1649ace2d..b165383a6 100644 --- a/db/mysql/migrations/02_report_schema_session_data/migration.sql +++ b/db/mysql/migrations/02_report_schema_session_data/migration.sql @@ -21,7 +21,7 @@ CREATE TABLE `session_data` ( INDEX `session_data_website_id_idx`(`website_id`), INDEX `session_data_session_id_idx`(`session_id`), PRIMARY KEY (`session_data_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- CreateTable CREATE TABLE `report` ( @@ -41,7 +41,7 @@ CREATE TABLE `report` ( INDEX `report_type_idx`(`type`), INDEX `report_name_idx`(`name`), PRIMARY KEY (`report_id`) -) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- EventData migration UPDATE event_data diff --git a/db/mysql/migrations/04_team_redesign/migration.sql b/db/mysql/migrations/04_team_redesign/migration.sql new file mode 100644 index 000000000..bf64d45f2 --- /dev/null +++ b/db/mysql/migrations/04_team_redesign/migration.sql @@ -0,0 +1,29 @@ +/* + Warnings: + + - You are about to drop the `team_website` table. If the table is not empty, all the data it contains will be lost. + +*/ +-- AlterTable +ALTER TABLE `team` ADD COLUMN `deleted_at` TIMESTAMP(0) NULL, + ADD COLUMN `logo_url` VARCHAR(2183) NULL; + +-- AlterTable +ALTER TABLE `user` ADD COLUMN `display_name` VARCHAR(255) NULL, + ADD COLUMN `logo_url` VARCHAR(2183) NULL; + +-- AlterTable +ALTER TABLE `website` ADD COLUMN `created_by` VARCHAR(36) NULL, + ADD COLUMN `team_id` VARCHAR(36) NULL; + +-- MigrateData +UPDATE `website` SET created_by = user_id WHERE team_id IS NULL; + +-- DropTable +DROP TABLE `team_website`; + +-- CreateIndex +CREATE INDEX `website_team_id_idx` ON `website`(`team_id`); + +-- CreateIndex +CREATE INDEX `website_created_by_idx` ON `website`(`created_by`); diff --git a/db/mysql/migrations/05_add_visit_id/migration.sql b/db/mysql/migrations/05_add_visit_id/migration.sql new file mode 100644 index 000000000..7a833a885 --- /dev/null +++ b/db/mysql/migrations/05_add_visit_id/migration.sql @@ -0,0 +1,22 @@ +-- AlterTable +ALTER TABLE `website_event` ADD COLUMN `visit_id` VARCHAR(36) NULL; + +UPDATE `website_event` we +JOIN (SELECT DISTINCT + s.session_id, + s.visit_time, + BIN_TO_UUID(RANDOM_BYTES(16) & 0xffffffffffff0fff3fffffffffffffff | 0x00000000000040008000000000000000) uuid + FROM (SELECT DISTINCT session_id, + DATE_FORMAT(created_at, '%Y-%m-%d %H:00:00') visit_time + FROM `website_event`) s) a + ON we.session_id = a.session_id and DATE_FORMAT(we.created_at, '%Y-%m-%d %H:00:00') = a.visit_time +SET we.visit_id = a.uuid +WHERE we.visit_id IS NULL; + +ALTER TABLE `website_event` MODIFY `visit_id` VARCHAR(36) NOT NULL; + +-- CreateIndex +CREATE INDEX `website_event_visit_id_idx` ON `website_event`(`visit_id`); + +-- CreateIndex +CREATE INDEX `website_event_website_id_visit_id_created_at_idx` ON `website_event`(`website_id`, `visit_id`, `created_at`); diff --git a/db/mysql/migrations/06_session_data/migration.sql b/db/mysql/migrations/06_session_data/migration.sql new file mode 100644 index 000000000..97ed60adf --- /dev/null +++ b/db/mysql/migrations/06_session_data/migration.sql @@ -0,0 +1,20 @@ +-- DropIndex +DROP INDEX `event_data_website_id_created_at_event_key_idx` ON `event_data`; + +-- DropIndex +DROP INDEX `event_data_website_id_website_event_id_created_at_idx` ON `event_data`; + +-- AlterTable +ALTER TABLE `event_data` RENAME COLUMN `event_key` TO `data_key`; + +-- AlterTable +ALTER TABLE `session_data` RENAME COLUMN `event_key` TO `data_key`; + +-- CreateIndex +CREATE INDEX `event_data_website_id_created_at_data_key_idx` ON `event_data`(`website_id`, `created_at`, `data_key`); + +-- CreateIndex +CREATE INDEX `session_data_session_id_created_at_idx` ON `session_data`(`session_id`, `created_at`); + +-- CreateIndex +CREATE INDEX `session_data_website_id_created_at_data_key_idx` ON `session_data`(`website_id`, `created_at`, `data_key`); diff --git a/db/mysql/migrations/07_add_tag/migration.sql b/db/mysql/migrations/07_add_tag/migration.sql new file mode 100644 index 000000000..f1c349bd4 --- /dev/null +++ b/db/mysql/migrations/07_add_tag/migration.sql @@ -0,0 +1,5 @@ +-- AlterTable +ALTER TABLE `website_event` ADD COLUMN `tag` VARCHAR(50) NULL; + +-- CreateIndex +CREATE INDEX `website_event_website_id_created_at_tag_idx` ON `website_event`(`website_id`, `created_at`, `tag`); diff --git a/db/mysql/schema.prisma b/db/mysql/schema.prisma index 38bb91f4b..476e445f3 100644 --- a/db/mysql/schema.prisma +++ b/db/mysql/schema.prisma @@ -1,5 +1,6 @@ generator client { - provider = "prisma-client-js" + provider = "prisma-client-js" + binaryTargets = ["native", "linux-musl-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x"] } datasource db { @@ -9,17 +10,20 @@ datasource db { } model User { - id String @id @unique @map("user_id") @db.VarChar(36) - username String @unique @db.VarChar(255) - password String @db.VarChar(60) - role String @map("role") @db.VarChar(50) - createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0) - updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0) - deletedAt DateTime? @map("deleted_at") @db.Timestamp(0) + id String @id @unique @map("user_id") @db.VarChar(36) + username String @unique @db.VarChar(255) + password String @db.VarChar(60) + role String @map("role") @db.VarChar(50) + logoUrl String? @map("logo_url") @db.VarChar(2183) + displayName String? @map("display_name") @db.VarChar(255) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0) + deletedAt DateTime? @map("deleted_at") @db.Timestamp(0) - website Website[] - teamUser TeamUser[] - report Report[] + websiteUser Website[] @relation("user") + websiteCreateUser Website[] @relation("createUser") + teamUser TeamUser[] + report Report[] @@map("user") } @@ -64,19 +68,24 @@ model Website { shareId String? @unique @map("share_id") @db.VarChar(50) resetAt DateTime? @map("reset_at") @db.Timestamp(0) userId String? @map("user_id") @db.VarChar(36) + teamId String? @map("team_id") @db.VarChar(36) + createdBy String? @map("created_by") @db.VarChar(36) createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0) updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0) deletedAt DateTime? @map("deleted_at") @db.Timestamp(0) - user User? @relation(fields: [userId], references: [id]) - teamWebsite TeamWebsite[] + user User? @relation("user", fields: [userId], references: [id]) + createUser User? @relation("createUser", fields: [createdBy], references: [id]) + team Team? @relation(fields: [teamId], references: [id]) eventData EventData[] report Report[] sessionData SessionData[] @@index([userId]) + @@index([teamId]) @@index([createdAt]) @@index([shareId]) + @@index([createdBy]) @@map("website") } @@ -84,6 +93,7 @@ model WebsiteEvent { id String @id() @map("event_id") @db.VarChar(36) websiteId String @map("website_id") @db.VarChar(36) sessionId String @map("session_id") @db.VarChar(36) + visitId String @map("visit_id") @db.VarChar(36) createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0) urlPath String @map("url_path") @db.VarChar(500) urlQuery String? @map("url_query") @db.VarChar(500) @@ -93,12 +103,14 @@ model WebsiteEvent { pageTitle String? @map("page_title") @db.VarChar(500) eventType Int @default(1) @map("event_type") @db.UnsignedInt eventName String? @map("event_name") @db.VarChar(50) + tag String? @db.VarChar(50) eventData EventData[] session Session @relation(fields: [sessionId], references: [id]) @@index([createdAt]) @@index([sessionId]) + @@index([visitId]) @@index([websiteId]) @@index([websiteId, createdAt]) @@index([websiteId, createdAt, urlPath]) @@ -106,7 +118,9 @@ model WebsiteEvent { @@index([websiteId, createdAt, referrerDomain]) @@index([websiteId, createdAt, pageTitle]) @@index([websiteId, createdAt, eventName]) + @@index([websiteId, createdAt, tag]) @@index([websiteId, sessionId, createdAt]) + @@index([websiteId, visitId, createdAt]) @@map("website_event") } @@ -114,7 +128,7 @@ model EventData { id String @id() @map("event_data_id") @db.VarChar(36) websiteId String @map("website_id") @db.VarChar(36) websiteEventId String @map("website_event_id") @db.VarChar(36) - eventKey String @map("event_key") @db.VarChar(500) + dataKey String @map("data_key") @db.VarChar(500) stringValue String? @map("string_value") @db.VarChar(500) numberValue Decimal? @map("number_value") @db.Decimal(19, 4) dateValue DateTime? @map("date_value") @db.Timestamp(0) @@ -127,9 +141,8 @@ model EventData { @@index([createdAt]) @@index([websiteId]) @@index([websiteEventId]) - @@index([websiteId, websiteEventId, createdAt]) @@index([websiteId, createdAt]) - @@index([websiteId, createdAt, eventKey]) + @@index([websiteId, createdAt, dataKey]) @@map("event_data") } @@ -137,7 +150,7 @@ model SessionData { id String @id() @map("session_data_id") @db.VarChar(36) websiteId String @map("website_id") @db.VarChar(36) sessionId String @map("session_id") @db.VarChar(36) - eventKey String @map("event_key") @db.VarChar(500) + dataKey String @map("data_key") @db.VarChar(500) stringValue String? @map("string_value") @db.VarChar(500) numberValue Decimal? @map("number_value") @db.Decimal(19, 4) dateValue DateTime? @map("date_value") @db.Timestamp(0) @@ -150,6 +163,8 @@ model SessionData { @@index([createdAt]) @@index([websiteId]) @@index([sessionId]) + @@index([sessionId, createdAt]) + @@index([websiteId, createdAt, dataKey]) @@map("session_data") } @@ -157,11 +172,13 @@ model Team { id String @id() @unique() @map("team_id") @db.VarChar(36) name String @db.VarChar(50) accessCode String? @unique @map("access_code") @db.VarChar(50) + logoUrl String? @map("logo_url") @db.VarChar(2183) createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0) updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0) + deletedAt DateTime? @map("deleted_at") @db.Timestamp(0) - teamUser TeamUser[] - teamWebsite TeamWebsite[] + website Website[] + teamUser TeamUser[] @@index([accessCode]) @@map("team") @@ -183,20 +200,6 @@ model TeamUser { @@map("team_user") } -model TeamWebsite { - id String @id() @unique() @map("team_website_id") @db.VarChar(36) - teamId String @map("team_id") @db.VarChar(36) - websiteId String @map("website_id") @db.VarChar(36) - createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0) - - team Team @relation(fields: [teamId], references: [id]) - website Website @relation(fields: [websiteId], references: [id]) - - @@index([teamId]) - @@index([websiteId]) - @@map("team_website") -} - model Report { id String @id() @unique() @map("report_id") @db.VarChar(36) userId String @map("user_id") @db.VarChar(36) diff --git a/db/postgresql/migrations/04_team_redesign/migration.sql b/db/postgresql/migrations/04_team_redesign/migration.sql new file mode 100644 index 000000000..91726316b --- /dev/null +++ b/db/postgresql/migrations/04_team_redesign/migration.sql @@ -0,0 +1,29 @@ +/* + Warnings: + + - You are about to drop the `team_website` table. If the table is not empty, all the data it contains will be lost. + +*/ +-- AlterTable +ALTER TABLE "team" ADD COLUMN "deleted_at" TIMESTAMPTZ(6), +ADD COLUMN "logo_url" VARCHAR(2183); + +-- AlterTable +ALTER TABLE "user" ADD COLUMN "display_name" VARCHAR(255), +ADD COLUMN "logo_url" VARCHAR(2183); + +-- AlterTable +ALTER TABLE "website" ADD COLUMN "created_by" UUID, +ADD COLUMN "team_id" UUID; + +-- MigrateData +UPDATE "website" SET created_by = user_id WHERE team_id IS NULL; + +-- DropTable +DROP TABLE "team_website"; + +-- CreateIndex +CREATE INDEX "website_team_id_idx" ON "website"("team_id"); + +-- CreateIndex +CREATE INDEX "website_created_by_idx" ON "website"("created_by"); \ No newline at end of file diff --git a/db/postgresql/migrations/05_add_visit_id/migration.sql b/db/postgresql/migrations/05_add_visit_id/migration.sql new file mode 100644 index 000000000..fd2f1b905 --- /dev/null +++ b/db/postgresql/migrations/05_add_visit_id/migration.sql @@ -0,0 +1,22 @@ +-- AlterTable +ALTER TABLE "website_event" ADD COLUMN "visit_id" UUID NULL; + +UPDATE "website_event" we +SET visit_id = a.uuid +FROM (SELECT DISTINCT + s.session_id, + s.visit_time, + gen_random_uuid() uuid + FROM (SELECT DISTINCT session_id, + date_trunc('hour', created_at) visit_time + FROM "website_event") s) a +WHERE we.session_id = a.session_id + and date_trunc('hour', we.created_at) = a.visit_time; + +ALTER TABLE "website_event" ALTER COLUMN "visit_id" SET NOT NULL; + +-- CreateIndex +CREATE INDEX "website_event_visit_id_idx" ON "website_event"("visit_id"); + +-- CreateIndex +CREATE INDEX "website_event_website_id_visit_id_created_at_idx" ON "website_event"("website_id", "visit_id", "created_at"); \ No newline at end of file diff --git a/db/postgresql/migrations/06_session_data/migration.sql b/db/postgresql/migrations/06_session_data/migration.sql new file mode 100644 index 000000000..e15b2605a --- /dev/null +++ b/db/postgresql/migrations/06_session_data/migration.sql @@ -0,0 +1,18 @@ +-- DropIndex +DROP INDEX IF EXISTS "event_data_website_id_created_at_event_key_idx"; + +-- AlterTable +ALTER TABLE "event_data" RENAME COLUMN "event_key" TO "data_key"; + +-- AlterTable +ALTER TABLE "session_data" DROP COLUMN "deleted_at"; +ALTER TABLE "session_data" RENAME COLUMN "session_key" TO "data_key"; + +-- CreateIndex +CREATE INDEX "event_data_website_id_created_at_data_key_idx" ON "event_data"("website_id", "created_at", "data_key"); + +-- CreateIndex +CREATE INDEX "session_data_session_id_created_at_idx" ON "session_data"("session_id", "created_at"); + +-- CreateIndex +CREATE INDEX "session_data_website_id_created_at_data_key_idx" ON "session_data"("website_id", "created_at", "data_key"); diff --git a/db/postgresql/migrations/07_add_tag/migration.sql b/db/postgresql/migrations/07_add_tag/migration.sql new file mode 100644 index 000000000..ef465f838 --- /dev/null +++ b/db/postgresql/migrations/07_add_tag/migration.sql @@ -0,0 +1,5 @@ +-- AlterTable +ALTER TABLE "website_event" ADD COLUMN "tag" VARCHAR(50); + +-- CreateIndex +CREATE INDEX "website_event_website_id_created_at_tag_idx" ON "website_event"("website_id", "created_at", "tag"); diff --git a/db/postgresql/schema.prisma b/db/postgresql/schema.prisma index d7a70ab05..b95e4c52b 100644 --- a/db/postgresql/schema.prisma +++ b/db/postgresql/schema.prisma @@ -1,5 +1,6 @@ generator client { - provider = "prisma-client-js" + provider = "prisma-client-js" + binaryTargets = ["native", "linux-musl-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x"] } datasource db { @@ -9,17 +10,20 @@ datasource db { } model User { - id String @id @unique @map("user_id") @db.Uuid - username String @unique @db.VarChar(255) - password String @db.VarChar(60) - role String @map("role") @db.VarChar(50) - createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) - updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) - deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) + id String @id @unique @map("user_id") @db.Uuid + username String @unique @db.VarChar(255) + password String @db.VarChar(60) + role String @map("role") @db.VarChar(50) + logoUrl String? @map("logo_url") @db.VarChar(2183) + displayName String? @map("display_name") @db.VarChar(255) + createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) + updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) - website Website[] - teamUser TeamUser[] - report Report[] + websiteUser Website[] @relation("user") + websiteCreateUser Website[] @relation("createUser") + teamUser TeamUser[] + report Report[] @@map("user") } @@ -64,19 +68,24 @@ model Website { shareId String? @unique @map("share_id") @db.VarChar(50) resetAt DateTime? @map("reset_at") @db.Timestamptz(6) userId String? @map("user_id") @db.Uuid + teamId String? @map("team_id") @db.Uuid + createdBy String? @map("created_by") @db.Uuid createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) - user User? @relation(fields: [userId], references: [id]) - teamWebsite TeamWebsite[] + user User? @relation("user", fields: [userId], references: [id]) + createUser User? @relation("createUser", fields: [createdBy], references: [id]) + team Team? @relation(fields: [teamId], references: [id]) eventData EventData[] report Report[] sessionData SessionData[] @@index([userId]) + @@index([teamId]) @@index([createdAt]) @@index([shareId]) + @@index([createdBy]) @@map("website") } @@ -84,6 +93,7 @@ model WebsiteEvent { id String @id() @map("event_id") @db.Uuid websiteId String @map("website_id") @db.Uuid sessionId String @map("session_id") @db.Uuid + visitId String @map("visit_id") @db.Uuid createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) urlPath String @map("url_path") @db.VarChar(500) urlQuery String? @map("url_query") @db.VarChar(500) @@ -93,12 +103,14 @@ model WebsiteEvent { pageTitle String? @map("page_title") @db.VarChar(500) eventType Int @default(1) @map("event_type") @db.Integer eventName String? @map("event_name") @db.VarChar(50) + tag String? @db.VarChar(50) eventData EventData[] session Session @relation(fields: [sessionId], references: [id]) @@index([createdAt]) @@index([sessionId]) + @@index([visitId]) @@index([websiteId]) @@index([websiteId, createdAt]) @@index([websiteId, createdAt, urlPath]) @@ -106,7 +118,9 @@ model WebsiteEvent { @@index([websiteId, createdAt, referrerDomain]) @@index([websiteId, createdAt, pageTitle]) @@index([websiteId, createdAt, eventName]) + @@index([websiteId, createdAt, tag]) @@index([websiteId, sessionId, createdAt]) + @@index([websiteId, visitId, createdAt]) @@map("website_event") } @@ -114,7 +128,7 @@ model EventData { id String @id() @map("event_data_id") @db.Uuid websiteId String @map("website_id") @db.Uuid websiteEventId String @map("website_event_id") @db.Uuid - eventKey String @map("event_key") @db.VarChar(500) + dataKey String @map("data_key") @db.VarChar(500) stringValue String? @map("string_value") @db.VarChar(500) numberValue Decimal? @map("number_value") @db.Decimal(19, 4) dateValue DateTime? @map("date_value") @db.Timestamptz(6) @@ -128,7 +142,7 @@ model EventData { @@index([websiteId]) @@index([websiteEventId]) @@index([websiteId, createdAt]) - @@index([websiteId, createdAt, eventKey]) + @@index([websiteId, createdAt, dataKey]) @@map("event_data") } @@ -136,13 +150,12 @@ model SessionData { id String @id() @map("session_data_id") @db.Uuid websiteId String @map("website_id") @db.Uuid sessionId String @map("session_id") @db.Uuid - sessionKey String @map("session_key") @db.VarChar(500) + dataKey String @map("data_key") @db.VarChar(500) stringValue String? @map("string_value") @db.VarChar(500) numberValue Decimal? @map("number_value") @db.Decimal(19, 4) dateValue DateTime? @map("date_value") @db.Timestamptz(6) dataType Int @map("data_type") @db.Integer createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) - deletedAt DateTime? @default(now()) @map("deleted_at") @db.Timestamptz(6) website Website @relation(fields: [websiteId], references: [id]) session Session @relation(fields: [sessionId], references: [id]) @@ -150,6 +163,8 @@ model SessionData { @@index([createdAt]) @@index([websiteId]) @@index([sessionId]) + @@index([sessionId, createdAt]) + @@index([websiteId, createdAt, dataKey]) @@map("session_data") } @@ -157,11 +172,13 @@ model Team { id String @id() @unique() @map("team_id") @db.Uuid name String @db.VarChar(50) accessCode String? @unique @map("access_code") @db.VarChar(50) + logoUrl String? @map("logo_url") @db.VarChar(2183) createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6) + deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6) - teamUser TeamUser[] - teamWebsite TeamWebsite[] + website Website[] + teamUser TeamUser[] @@index([accessCode]) @@map("team") @@ -183,20 +200,6 @@ model TeamUser { @@map("team_user") } -model TeamWebsite { - id String @id() @unique() @map("team_website_id") @db.Uuid - teamId String @map("team_id") @db.Uuid - websiteId String @map("website_id") @db.Uuid - createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6) - - team Team @relation(fields: [teamId], references: [id]) - website Website @relation(fields: [websiteId], references: [id]) - - @@index([teamId]) - @@index([websiteId]) - @@map("team_website") -} - model Report { id String @id() @unique() @map("report_id") @db.Uuid userId String @map("user_id") @db.Uuid diff --git a/docker-compose.yml b/docker-compose.yml index 08f00b7c3..185f1d0e6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,6 +12,7 @@ services: depends_on: db: condition: service_healthy + init: true restart: always healthcheck: test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"] diff --git a/jest.config.ts b/jest.config.ts new file mode 100644 index 000000000..737386516 --- /dev/null +++ b/jest.config.ts @@ -0,0 +1,7 @@ +export default { + roots: ['./src'], + testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'], + transform: { + '^.+\\.(ts|tsx)$': 'ts-jest', + }, +}; diff --git a/jsconfig.json b/jsconfig.json index 738e8a465..5875dc5b6 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { - "baseUrl": "./src" - } + "baseUrl": "src" + }, + "include": ["src"] } diff --git a/lang-ignore.json b/lang-ignore.json index 4a0f9d41d..e278a52ea 100644 --- a/lang-ignore.json +++ b/lang-ignore.json @@ -36,6 +36,7 @@ "metrics.referrers", "message.powered-by" ], + "mn-MN": ["label.max", "label.min", "label.os", "label.query", "label.url", "label.urls"], "nb-NO": ["label.administrator", "label.dashboard"], "nl-NL": [ "label.analytics", diff --git a/next-env.d.ts b/next-env.d.ts index fd36f9494..725dd6f24 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -3,4 +3,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. +// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. diff --git a/next.config.js b/next.config.js index a155ece75..5e3a1225b 100644 --- a/next.config.js +++ b/next.config.js @@ -3,16 +3,31 @@ require('dotenv').config(); const path = require('path'); const pkg = require('./package.json'); +const TRACKER_SCRIPT = '/script.js'; + +const basePath = process.env.BASE_PATH; +const collectApiEndpoint = process.env.COLLECT_API_ENDPOINT; +const cloudMode = process.env.CLOUD_MODE; +const cloudUrl = process.env.CLOUD_URL; +const defaultLocale = process.env.DEFAULT_LOCALE; +const disableLogin = process.env.DISABLE_LOGIN; +const disableUI = process.env.DISABLE_UI; +const forceSSL = process.env.FORCE_SSL; +const frameAncestors = process.env.ALLOWED_FRAME_URLS; +const privateMode = process.env.PRIVATE_MODE; +const trackerScriptName = process.env.TRACKER_SCRIPT_NAME; +const trackerScriptURL = process.env.TRACKER_SCRIPT_URL; + const contentSecurityPolicy = [ `default-src 'self'`, - `img-src *`, + `img-src * data:`, `script-src 'self' 'unsafe-eval' 'unsafe-inline'`, `style-src 'self' 'unsafe-inline'`, - `connect-src 'self' api.umami.is`, - `frame-ancestors 'self' ${process.env.ALLOWED_FRAME_URLS || ''}`, + `connect-src 'self' api.umami.is cloud.umami.is`, + `frame-ancestors 'self' ${frameAncestors}`, ]; -const headers = [ +const defaultHeaders = [ { key: 'X-DNS-Prefetch-Control', value: 'on', @@ -26,68 +41,125 @@ const headers = [ }, ]; -if (process.env.FORCE_SSL) { - headers.push({ +if (forceSSL) { + defaultHeaders.push({ key: 'Strict-Transport-Security', value: 'max-age=63072000; includeSubDomains; preload', }); } +const trackerHeaders = [ + { + key: 'Access-Control-Allow-Origin', + value: '*', + }, + { + key: 'Cache-Control', + value: 'public, max-age=86400, must-revalidate', + }, +]; + +const headers = [ + { + source: '/:path*', + headers: defaultHeaders, + }, + { + source: TRACKER_SCRIPT, + headers: trackerHeaders, + }, +]; + const rewrites = []; -if (process.env.COLLECT_API_ENDPOINT) { +if (trackerScriptURL) { rewrites.push({ - source: process.env.COLLECT_API_ENDPOINT, - destination: '/api/send', + source: TRACKER_SCRIPT, + destination: trackerScriptURL, }); } -if (process.env.TRACKER_SCRIPT_NAME) { - const names = process.env.TRACKER_SCRIPT_NAME?.split(',').map(name => name.trim()); - - if (names) { - names.forEach(name => { - rewrites.push({ - source: `/${name.replace(/^\/+/, '')}`, - destination: '/script.js', - }); - }); - } +if (collectApiEndpoint) { + rewrites.push({ + source: collectApiEndpoint, + destination: '/api/send', + }); } const redirects = [ { source: '/settings', - destination: process.env.CLOUD_MODE - ? `${process.env.CLOUD_URL}/settings/websites` - : '/settings/websites', + destination: '/settings/websites', + permanent: true, + }, + { + source: '/teams/:id', + destination: '/teams/:id/dashboard', + permanent: true, + }, + { + source: '/teams/:id/settings', + destination: '/teams/:id/settings/team', permanent: true, }, ]; -if (process.env.CLOUD_MODE && process.env.CLOUD_URL && process.env.DISABLE_LOGIN) { - redirects.push({ - source: '/login', - destination: process.env.CLOUD_URL, - permanent: false, - }); +// Adding rewrites + headers for all alternative tracker script names. +if (trackerScriptName) { + const names = trackerScriptName?.split(',').map(name => name.trim()); + + if (names) { + names.forEach(name => { + const normalizedSource = `/${name.replace(/^\/+/, '')}`; + + rewrites.push({ + source: normalizedSource, + destination: TRACKER_SCRIPT, + }); + + headers.push({ + source: normalizedSource, + headers: trackerHeaders, + }); + }); + } } -const basePath = process.env.BASE_PATH; +if (cloudMode && cloudUrl) { + redirects.push({ + source: '/settings/:path*', + destination: `${cloudUrl}/settings/:path*`, + permanent: false, + }); + + redirects.push({ + source: '/teams/:id/settings/:path*', + destination: `${cloudUrl}/teams/:id/settings/:path*`, + permanent: false, + }); + + if (disableLogin) { + redirects.push({ + source: '/login', + destination: cloudUrl, + permanent: false, + }); + } +} /** @type {import('next').NextConfig} */ const config = { reactStrictMode: false, env: { - basePath: basePath || '', - cloudMode: process.env.CLOUD_MODE || '', - cloudUrl: process.env.CLOUD_URL || '', + basePath, + cloudMode, + cloudUrl, configUrl: '/config', currentVersion: pkg.version, - defaultLocale: process.env.DEFAULT_LOCALE || '', - disableLogin: process.env.DISABLE_LOGIN || '', - disableUI: process.env.DISABLE_UI || '', - hostUrl: process.env.HOST_URL || '', + defaultLocale, + disableLogin, + disableUI, + privateMode, }, basePath, output: 'standalone', @@ -121,12 +193,7 @@ const config = { return config; }, async headers() { - return [ - { - source: '/:path*', - headers, - }, - ]; + return headers; }, async rewrites() { return [ @@ -135,6 +202,10 @@ const config = { source: '/telemetry.js', destination: '/api/scripts/telemetry', }, + { + source: '/teams/:teamId/:path((?!settings).*)*', + destination: '/:path*', + }, ]; }, async redirects() { diff --git a/package.components.json b/package.components.json index 41e72579f..2ca9458d5 100644 --- a/package.components.json +++ b/package.components.json @@ -11,6 +11,7 @@ "@tanstack/react-query": "^4.33.0", "classnames": "^2.3.1", "colord": "^2.9.2", + "date-fns-tz": "^1.1.4", "immer": "^9.0.12", "moment-timezone": "^0.5.35", "next": "^13.4.0", diff --git a/package.json b/package.json index 0f437c355..b42831aa1 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "umami", - "version": "2.9.0", + "version": "2.15.1", "description": "A simple, fast, privacy-focused alternative to Google Analytics.", - "author": "Mike Cao ", + "author": "Umami Software, Inc. ", "license": "MIT", "homepage": "https://umami.is", "repository": { @@ -30,7 +30,7 @@ "check-db": "node scripts/check-db.js", "check-env": "node scripts/check-env.js", "copy-db-files": "node scripts/copy-db-files.js", - "extract-messages": "formatjs extract \"src/{pages,components}/**/*.js\" --out-file build/messages.json", + "extract-messages": "formatjs extract \"src/components/messages.ts\" --out-file build/extracted-messages.json", "merge-messages": "node scripts/merge-messages.js", "generate-lang": "npm-run-all extract-messages merge-messages", "format-lang": "node scripts/format-lang.js", @@ -42,7 +42,10 @@ "change-password": "node scripts/change-password.js", "lint": "next lint --quiet", "prepare": "node -e \"if (process.env.NODE_ENV !== 'production'){process.exit(1)} \" || husky install", - "postbuild": "node scripts/postbuild.js" + "postbuild": "node scripts/postbuild.js", + "test": "jest", + "cypress-open": "cypress open cypress run", + "cypress-run": "cypress run cypress run" }, "lint-staged": { "**/*.{js,jsx,ts,tsx}": [ @@ -60,17 +63,23 @@ "cacheDirectories": [ ".next/cache" ], + "resolutions": { + "jackspeak": "2.1.1" + }, "dependencies": { - "@clickhouse/client": "^0.2.2", + "@clickhouse/client": "^1.4.1", + "@date-fns/utc": "^1.2.0", + "@dicebear/collection": "^9.2.1", + "@dicebear/core": "^9.2.1", "@fontsource/inter": "^4.5.15", - "@prisma/client": "5.6.0", + "@prisma/client": "5.22.0", "@prisma/extension-read-replicas": "^0.3.0", "@react-spring/web": "^9.7.3", - "@tanstack/react-query": "^5.12.2", - "@umami/prisma-client": "^0.8.0", - "@umami/redis-client": "^0.18.0", + "@tanstack/react-query": "^5.28.6", + "@umami/prisma-client": "^0.14.0", + "@umami/redis-client": "^0.24.0", "chalk": "^4.1.1", - "chart.js": "^4.2.1", + "chart.js": "^4.4.2", "chartjs-adapter-date-fns": "^3.0.0", "classnames": "^2.3.1", "colord": "^2.9.2", @@ -78,30 +87,30 @@ "cross-spawn": "^7.0.3", "date-fns": "^2.23.0", "date-fns-tz": "^1.1.4", - "dateformat": "^5.0.3", "debug": "^4.3.4", "del": "^6.0.0", "detect-browser": "^5.2.0", "dotenv": "^10.0.0", + "eslint-plugin-promise": "^6.1.1", "fs-extra": "^10.0.1", "immer": "^9.0.12", "ipaddr.js": "^2.0.1", "is-ci": "^3.0.1", "is-docker": "^3.0.0", "is-localhost-ip": "^1.4.0", - "isbot": "^3.4.5", + "isbot": "^5.1.16", "kafkajs": "^2.1.0", "maxmind": "^4.3.6", - "moment-timezone": "^0.5.35", - "next": "14.0.4", + "md5": "^2.3.0", + "next": "15.0.4", "next-basics": "^0.39.0", "node-fetch": "^3.2.8", "npm-run-all": "^4.1.5", - "prisma": "5.6.0", - "react": "^18.2.0", - "react-basics": "^0.114.0", + "prisma": "5.22.0", + "react": "^19.0.0", + "react-basics": "^0.125.0", "react-beautiful-dnd": "^13.1.0", - "react-dom": "^18.2.0", + "react-dom": "^19.0.0", "react-error-boundary": "^4.0.4", "react-intl": "^6.5.5", "react-simple-maps": "^2.3.0", @@ -110,22 +119,22 @@ "request-ip": "^3.3.0", "semver": "^7.5.4", "thenby": "^1.3.4", - "timezone-support": "^2.0.2", "uuid": "^9.0.0", "yup": "^0.32.11", - "zustand": "^4.3.8" + "zustand": "^4.5.5" }, "devDependencies": { "@formatjs/cli": "^4.2.29", - "@netlify/plugin-nextjs": "^4.27.3", + "@netlify/plugin-nextjs": "^5.8.1", "@rollup/plugin-alias": "^5.0.0", - "@rollup/plugin-buble": "^1.0.2", "@rollup/plugin-commonjs": "^25.0.4", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.2.0", "@rollup/plugin-replace": "^5.0.2", "@svgr/rollup": "^8.1.0", "@svgr/webpack": "^8.1.0", + "@types/cypress": "^1.1.3", + "@types/jest": "^29.5.14", "@types/node": "^20.9.0", "@types/react": "^18.2.41", "@types/react-dom": "^18.2.17", @@ -133,15 +142,20 @@ "@typescript-eslint/eslint-plugin": "^6.7.3", "@typescript-eslint/parser": "^6.7.3", "cross-env": "^7.0.3", + "cypress": "^13.6.6", "esbuild": "^0.17.17", "eslint": "^8.33.0", - "eslint-config-next": "^12.2.4", + "eslint-config-next": "^14.0.4", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-alias": "^1.1.2", - "eslint-plugin-import": "^2.26.0", + "eslint-plugin-css-modules": "^2.12.0", + "eslint-plugin-cypress": "^2.15.1", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-jest": "^27.9.0", "eslint-plugin-prettier": "^4.0.0", "extract-react-intl-messages": "^4.1.1", "husky": "^8.0.3", + "jest": "^29.7.0", "lint-staged": "^14.0.1", "postcss": "^8.4.31", "postcss-flexbugs-fixes": "^5.0.2", @@ -159,11 +173,12 @@ "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-terser": "^7.0.2", "stylelint": "^15.10.1", - "stylelint-config-css-modules": "^4.1.0", + "stylelint-config-css-modules": "^4.4.0", "stylelint-config-prettier": "^9.0.3", - "stylelint-config-recommended": "^9.0.0", + "stylelint-config-recommended": "^14.0.0", "tar": "^6.1.2", + "ts-jest": "^29.1.2", "ts-node": "^10.9.1", - "typescript": "^5.1.6" + "typescript": "^5.5.3" } } diff --git a/public/datamaps.world.json b/public/datamaps.world.json index 22d103606..beaceb686 100644 --- a/public/datamaps.world.json +++ b/public/datamaps.world.json @@ -1,180 +1,13191 @@ -{"type":"FeatureCollection","features":[ -{"type":"Feature","properties":{"name":"Afghanistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]},"id":"AFG"}, -{"type":"Feature","properties":{"name":"Angola"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]},"id":"AGO"}, -{"type":"Feature","properties":{"name":"Albania"},"geometry":{"type":"Polygon","coordinates":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]},"id":"ALB"}, -{"type":"Feature","properties":{"name":"United Arab Emirates"},"geometry":{"type":"Polygon","coordinates":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]},"id":"ARE"}, -{"type":"Feature","properties":{"name":"Argentina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]},"id":"ARG"}, -{"type":"Feature","properties":{"name":"Armenia"},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]},"id":"ARM"}, -{"type":"Feature","properties":{"name":"Antarctica"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.572095,-80.040179],[-59.865849,-80.549657],[-60.159656,-81.000327],[-62.255393,-80.863178],[-64.488125,-80.921934],[-65.741666,-80.588827],[-65.741666,-80.549657],[-66.290031,-80.255773],[-64.037688,-80.294944],[-61.883246,-80.39287],[-61.138976,-79.981371],[-60.610119,-79.628679],[-59.572095,-80.040179]]],[[[-159.208184,-79.497059],[-161.127601,-79.634209],[-162.439847,-79.281465],[-163.027408,-78.928774],[-163.066604,-78.869966],[-163.712896,-78.595667],[-163.712896,-78.595667],[-163.105801,-78.223338],[-161.245113,-78.380176],[-160.246208,-78.693645],[-159.482405,-79.046338],[-159.208184,-79.497059]]],[[[-45.154758,-78.04707],[-43.920828,-78.478103],[-43.48995,-79.08556],[-43.372438,-79.516645],[-43.333267,-80.026123],[-44.880537,-80.339644],[-46.506174,-80.594357],[-48.386421,-80.829485],[-50.482107,-81.025442],[-52.851988,-80.966685],[-54.164259,-80.633528],[-53.987991,-80.222028],[-51.853134,-79.94773],[-50.991326,-79.614623],[-50.364595,-79.183487],[-49.914131,-78.811209],[-49.306959,-78.458569],[-48.660616,-78.047018],[-48.660616,-78.047019],[-48.151396,-78.04707],[-46.662857,-77.831476],[-45.154758,-78.04707]]],[[[-121.211511,-73.50099],[-119.918851,-73.657725],[-118.724143,-73.481353],[-119.292119,-73.834097],[-120.232217,-74.08881],[-121.62283,-74.010468],[-122.621735,-73.657778],[-122.621735,-73.657777],[-122.406245,-73.324619],[-121.211511,-73.50099]]],[[[-125.559566,-73.481353],[-124.031882,-73.873268],[-124.619469,-73.834097],[-125.912181,-73.736118],[-127.28313,-73.461769],[-127.28313,-73.461768],[-126.558472,-73.246226],[-125.559566,-73.481353]]],[[[-98.98155,-71.933334],[-97.884743,-72.070535],[-96.787937,-71.952971],[-96.20035,-72.521205],[-96.983765,-72.442864],[-98.198083,-72.482035],[-99.432013,-72.442864],[-100.783455,-72.50162],[-101.801868,-72.305663],[-102.330725,-71.894164],[-102.330725,-71.894164],[-101.703967,-71.717792],[-100.430919,-71.854993],[-98.98155,-71.933334]]],[[[-68.451346,-70.955823],[-68.333834,-71.406493],[-68.510128,-71.798407],[-68.784297,-72.170736],[-69.959471,-72.307885],[-71.075889,-72.503842],[-72.388134,-72.484257],[-71.8985,-72.092343],[-73.073622,-72.229492],[-74.19004,-72.366693],[-74.953895,-72.072757],[-75.012625,-71.661258],[-73.915819,-71.269345],[-73.915819,-71.269344],[-73.230331,-71.15178],[-72.074717,-71.190951],[-71.780962,-70.681473],[-71.72218,-70.309196],[-71.741791,-69.505782],[-71.173815,-69.035475],[-70.253252,-68.87874],[-69.724447,-69.251017],[-69.489422,-69.623346],[-69.058518,-70.074016],[-68.725541,-70.505153],[-68.451346,-70.955823]]],[[[-58.614143,-64.152467],[-59.045073,-64.36801],[-59.789342,-64.211223],[-60.611928,-64.309202],[-61.297416,-64.54433],[-62.0221,-64.799094],[-62.51176,-65.09303],[-62.648858,-65.484942],[-62.590128,-65.857219],[-62.120079,-66.190326],[-62.805567,-66.425505],[-63.74569,-66.503847],[-64.294106,-66.837004],[-64.881693,-67.150474],[-65.508425,-67.58161],[-65.665082,-67.953887],[-65.312545,-68.365335],[-64.783715,-68.678908],[-63.961103,-68.913984],[-63.1973,-69.227556],[-62.785955,-69.619419],[-62.570516,-69.991747],[-62.276736,-70.383661],[-61.806661,-70.716768],[-61.512906,-71.089045],[-61.375809,-72.010074],[-61.081977,-72.382351],[-61.003661,-72.774265],[-60.690269,-73.166179],[-60.827367,-73.695242],[-61.375809,-74.106742],[-61.96337,-74.439848],[-63.295201,-74.576997],[-63.74569,-74.92974],[-64.352836,-75.262847],[-65.860987,-75.635124],[-67.192818,-75.79191],[-68.446282,-76.007452],[-69.797724,-76.222995],[-70.600724,-76.634494],[-72.206776,-76.673665],[-73.969536,-76.634494],[-75.555977,-76.712887],[-77.24037,-76.712887],[-76.926979,-77.104802],[-75.399294,-77.28107],[-74.282876,-77.55542],[-73.656119,-77.908112],[-74.772536,-78.221633],[-76.4961,-78.123654],[-77.925858,-78.378419],[-77.984666,-78.789918],[-78.023785,-79.181833],[-76.848637,-79.514939],[-76.633224,-79.887216],[-75.360097,-80.259545],[-73.244852,-80.416331],[-71.442946,-80.69063],[-70.013163,-81.004151],[-68.191646,-81.317672],[-65.704279,-81.474458],[-63.25603,-81.748757],[-61.552026,-82.042692],[-59.691416,-82.37585],[-58.712121,-82.846106],[-58.222487,-83.218434],[-57.008117,-82.865691],[-55.362894,-82.571755],[-53.619771,-82.258235],[-51.543644,-82.003521],[-49.76135,-81.729171],[-47.273931,-81.709586],[-44.825708,-81.846735],[-42.808363,-82.081915],[-42.16202,-81.65083],[-40.771433,-81.356894],[-38.244818,-81.337309],[-36.26667,-81.121715],[-34.386397,-80.906172],[-32.310296,-80.769023],[-30.097098,-80.592651],[-28.549802,-80.337938],[-29.254901,-79.985195],[-29.685805,-79.632503],[-29.685805,-79.260226],[-31.624808,-79.299397],[-33.681324,-79.456132],[-35.639912,-79.456132],[-35.914107,-79.083855],[-35.77701,-78.339248],[-35.326546,-78.123654],[-33.896763,-77.888526],[-32.212369,-77.65345],[-30.998051,-77.359515],[-29.783732,-77.065579],[-28.882779,-76.673665],[-27.511752,-76.497345],[-26.160336,-76.360144],[-25.474822,-76.281803],[-23.927552,-76.24258],[-22.458598,-76.105431],[-21.224694,-75.909474],[-20.010375,-75.674346],[-18.913543,-75.439218],[-17.522982,-75.125698],[-16.641589,-74.79254],[-15.701491,-74.498604],[-15.40771,-74.106742],[-16.46532,-73.871614],[-16.112784,-73.460114],[-15.446855,-73.146542],[-14.408805,-72.950585],[-13.311973,-72.715457],[-12.293508,-72.401936],[-11.510067,-72.010074],[-11.020433,-71.539767],[-10.295774,-71.265416],[-9.101015,-71.324224],[-8.611381,-71.65733],[-7.416622,-71.696501],[-7.377451,-71.324224],[-6.868232,-70.93231],[-5.790985,-71.030289],[-5.536375,-71.402617],[-4.341667,-71.461373],[-3.048981,-71.285053],[-1.795492,-71.167438],[-0.659489,-71.226246],[-0.228637,-71.637745],[0.868195,-71.304639],[1.886686,-71.128267],[3.022638,-70.991118],[4.139055,-70.853917],[5.157546,-70.618789],[6.273912,-70.462055],[7.13572,-70.246512],[7.742866,-69.893769],[8.48711,-70.148534],[9.525135,-70.011333],[10.249845,-70.48164],[10.817821,-70.834332],[11.953824,-70.638375],[12.404287,-70.246512],[13.422778,-69.972162],[14.734998,-70.030918],[15.126757,-70.403247],[15.949342,-70.030918],[17.026589,-69.913354],[18.201711,-69.874183],[19.259373,-69.893769],[20.375739,-70.011333],[21.452985,-70.07014],[21.923034,-70.403247],[22.569403,-70.697182],[23.666184,-70.520811],[24.841357,-70.48164],[25.977309,-70.48164],[27.093726,-70.462055],[28.09258,-70.324854],[29.150242,-70.20729],[30.031583,-69.93294],[30.971733,-69.75662],[31.990172,-69.658641],[32.754053,-69.384291],[33.302443,-68.835642],[33.870419,-68.502588],[34.908495,-68.659271],[35.300202,-69.012014],[36.16201,-69.247142],[37.200035,-69.168748],[37.905108,-69.52144],[38.649404,-69.776205],[39.667894,-69.541077],[40.020431,-69.109941],[40.921358,-68.933621],[41.959434,-68.600514],[42.938702,-68.463313],[44.113876,-68.267408],[44.897291,-68.051866],[45.719928,-67.816738],[46.503343,-67.601196],[47.44344,-67.718759],[48.344419,-67.366068],[48.990736,-67.091718],[49.930885,-67.111303],[50.753471,-66.876175],[50.949325,-66.523484],[51.791547,-66.249133],[52.614133,-66.053176],[53.613038,-65.89639],[54.53355,-65.818049],[55.414943,-65.876805],[56.355041,-65.974783],[57.158093,-66.249133],[57.255968,-66.680218],[58.137361,-67.013324],[58.744508,-67.287675],[59.939318,-67.405239],[60.605221,-67.679589],[61.427806,-67.953887],[62.387489,-68.012695],[63.19049,-67.816738],[64.052349,-67.405239],[64.992447,-67.620729],[65.971715,-67.738345],[66.911864,-67.855909],[67.891133,-67.934302],[68.890038,-67.934302],[69.712624,-68.972791],[69.673453,-69.227556],[69.555941,-69.678226],[68.596258,-69.93294],[67.81274,-70.305268],[67.949889,-70.697182],[69.066307,-70.677545],[68.929157,-71.069459],[68.419989,-71.441788],[67.949889,-71.853287],[68.71377,-72.166808],[69.869307,-72.264787],[71.024895,-72.088415],[71.573285,-71.696501],[71.906288,-71.324224],[72.454627,-71.010703],[73.08141,-70.716768],[73.33602,-70.364024],[73.864877,-69.874183],[74.491557,-69.776205],[75.62756,-69.737034],[76.626465,-69.619419],[77.644904,-69.462684],[78.134539,-69.07077],[78.428371,-68.698441],[79.113859,-68.326216],[80.093127,-68.071503],[80.93535,-67.875546],[81.483792,-67.542388],[82.051767,-67.366068],[82.776426,-67.209282],[83.775331,-67.30726],[84.676206,-67.209282],[85.655527,-67.091718],[86.752359,-67.150474],[87.477017,-66.876175],[87.986289,-66.209911],[88.358411,-66.484261],[88.828408,-66.954568],[89.67063,-67.150474],[90.630365,-67.228867],[91.5901,-67.111303],[92.608539,-67.189696],[93.548637,-67.209282],[94.17542,-67.111303],[95.017591,-67.170111],[95.781472,-67.385653],[96.682399,-67.248504],[97.759646,-67.248504],[98.68021,-67.111303],[99.718182,-67.248504],[100.384188,-66.915346],[100.893356,-66.58224],[101.578896,-66.30789],[102.832411,-65.563284],[103.478676,-65.700485],[104.242557,-65.974783],[104.90846,-66.327527],[106.181561,-66.934931],[107.160881,-66.954568],[108.081393,-66.954568],[109.15864,-66.837004],[110.235835,-66.699804],[111.058472,-66.425505],[111.74396,-66.13157],[112.860378,-66.092347],[113.604673,-65.876805],[114.388088,-66.072762],[114.897308,-66.386283],[115.602381,-66.699804],[116.699161,-66.660633],[117.384701,-66.915346],[118.57946,-67.170111],[119.832924,-67.268089],[120.871,-67.189696],[121.654415,-66.876175],[122.320369,-66.562654],[123.221296,-66.484261],[124.122274,-66.621462],[125.160247,-66.719389],[126.100396,-66.562654],[127.001427,-66.562654],[127.882768,-66.660633],[128.80328,-66.758611],[129.704259,-66.58224],[130.781454,-66.425505],[131.799945,-66.386283],[132.935896,-66.386283],[133.85646,-66.288304],[134.757387,-66.209963],[135.031582,-65.72007],[135.070753,-65.308571],[135.697485,-65.582869],[135.873805,-66.033591],[136.206705,-66.44509],[136.618049,-66.778197],[137.460271,-66.954568],[138.596223,-66.895761],[139.908442,-66.876175],[140.809421,-66.817367],[142.121692,-66.817367],[143.061842,-66.797782],[144.374061,-66.837004],[145.490427,-66.915346],[146.195552,-67.228867],[145.999699,-67.601196],[146.646067,-67.895131],[147.723263,-68.130259],[148.839629,-68.385024],[150.132314,-68.561292],[151.483705,-68.71813],[152.502247,-68.874813],[153.638199,-68.894502],[154.284567,-68.561292],[155.165857,-68.835642],[155.92979,-69.149215],[156.811132,-69.384291],[158.025528,-69.482269],[159.181013,-69.599833],[159.670699,-69.991747],[160.80665,-70.226875],[161.570479,-70.579618],[162.686897,-70.736353],[163.842434,-70.716768],[164.919681,-70.775524],[166.11444,-70.755938],[167.309095,-70.834332],[168.425616,-70.971481],[169.463589,-71.20666],[170.501665,-71.402617],[171.20679,-71.696501],[171.089227,-72.088415],[170.560422,-72.441159],[170.109958,-72.891829],[169.75737,-73.24452],[169.287321,-73.65602],[167.975101,-73.812806],[167.387489,-74.165498],[166.094803,-74.38104],[165.644391,-74.772954],[164.958851,-75.145283],[164.234193,-75.458804],[163.822797,-75.870303],[163.568239,-76.24258],[163.47026,-76.693302],[163.489897,-77.065579],[164.057873,-77.457442],[164.273363,-77.82977],[164.743464,-78.182514],[166.604126,-78.319611],[166.995781,-78.750748],[165.193876,-78.907483],[163.666217,-79.123025],[161.766385,-79.162248],[160.924162,-79.730482],[160.747894,-80.200737],[160.316964,-80.573066],[159.788211,-80.945395],[161.120016,-81.278501],[161.629287,-81.690001],[162.490992,-82.062278],[163.705336,-82.395435],[165.095949,-82.708956],[166.604126,-83.022477],[168.895665,-83.335998],[169.404782,-83.825891],[172.283934,-84.041433],[172.477049,-84.117914],[173.224083,-84.41371],[175.985672,-84.158997],[178.277212,-84.472518],[180,-84.71338],[-179.942499,-84.721443],[-179.058677,-84.139412],[-177.256772,-84.452933],[-177.140807,-84.417941],[-176.084673,-84.099259],[-175.947235,-84.110449],[-175.829882,-84.117914],[-174.382503,-84.534323],[-173.116559,-84.117914],[-172.889106,-84.061019],[-169.951223,-83.884647],[-168.999989,-84.117914],[-168.530199,-84.23739],[-167.022099,-84.570497],[-164.182144,-84.82521],[-161.929775,-85.138731],[-158.07138,-85.37391],[-155.192253,-85.09956],[-150.942099,-85.295517],[-148.533073,-85.609038],[-145.888918,-85.315102],[-143.107718,-85.040752],[-142.892279,-84.570497],[-146.829068,-84.531274],[-150.060732,-84.296146],[-150.902928,-83.904232],[-153.586201,-83.68869],[-153.409907,-83.23802],[-153.037759,-82.82652],[-152.665637,-82.454192],[-152.861517,-82.042692],[-154.526299,-81.768394],[-155.29018,-81.41565],[-156.83745,-81.102129],[-154.408787,-81.160937],[-152.097662,-81.004151],[-150.648293,-81.337309],[-148.865998,-81.043373],[-147.22075,-80.671045],[-146.417749,-80.337938],[-146.770286,-79.926439],[-148.062947,-79.652089],[-149.531901,-79.358205],[-151.588416,-79.299397],[-153.390322,-79.162248],[-155.329376,-79.064269],[-155.975668,-78.69194],[-157.268302,-78.378419],[-158.051768,-78.025676],[-158.365134,-76.889207],[-157.875474,-76.987238],[-156.974573,-77.300759],[-155.329376,-77.202728],[-153.742832,-77.065579],[-152.920247,-77.496664],[-151.33378,-77.398737],[-150.00195,-77.183143],[-148.748486,-76.908845],[-147.612483,-76.575738],[-146.104409,-76.47776],[-146.143528,-76.105431],[-146.496091,-75.733154],[-146.20231,-75.380411],[-144.909624,-75.204039],[-144.322037,-75.537197],[-142.794353,-75.34124],[-141.638764,-75.086475],[-140.209007,-75.06689],[-138.85759,-74.968911],[-137.5062,-74.733783],[-136.428901,-74.518241],[-135.214583,-74.302699],[-134.431194,-74.361455],[-133.745654,-74.439848],[-132.257168,-74.302699],[-130.925311,-74.479019],[-129.554284,-74.459433],[-128.242038,-74.322284],[-126.890622,-74.420263],[-125.402082,-74.518241],[-124.011496,-74.479019],[-122.562152,-74.498604],[-121.073613,-74.518241],[-119.70256,-74.479019],[-118.684145,-74.185083],[-117.469801,-74.028348],[-116.216312,-74.243891],[-115.021552,-74.067519],[-113.944331,-73.714828],[-113.297988,-74.028348],[-112.945452,-74.38104],[-112.299083,-74.714198],[-111.261059,-74.420263],[-110.066325,-74.79254],[-108.714909,-74.910103],[-107.559346,-75.184454],[-106.149148,-75.125698],[-104.876074,-74.949326],[-103.367949,-74.988497],[-102.016507,-75.125698],[-100.645531,-75.302018],[-100.1167,-74.870933],[-100.763043,-74.537826],[-101.252703,-74.185083],[-102.545337,-74.106742],[-103.113313,-73.734413],[-103.328752,-73.362084],[-103.681289,-72.61753],[-102.917485,-72.754679],[-101.60524,-72.813436],[-100.312528,-72.754679],[-99.13738,-72.911414],[-98.118889,-73.20535],[-97.688037,-73.558041],[-96.336595,-73.616849],[-95.043961,-73.4797],[-93.672907,-73.283743],[-92.439003,-73.166179],[-91.420564,-73.401307],[-90.088733,-73.322914],[-89.226951,-72.558722],[-88.423951,-73.009393],[-87.268337,-73.185764],[-86.014822,-73.087786],[-85.192236,-73.4797],[-83.879991,-73.518871],[-82.665646,-73.636434],[-81.470913,-73.851977],[-80.687447,-73.4797],[-80.295791,-73.126956],[-79.296886,-73.518871],[-77.925858,-73.420892],[-76.907367,-73.636434],[-76.221879,-73.969541],[-74.890049,-73.871614],[-73.852024,-73.65602],[-72.833533,-73.401307],[-71.619215,-73.264157],[-70.209042,-73.146542],[-68.935916,-73.009393],[-67.956622,-72.79385],[-67.369061,-72.480329],[-67.134036,-72.049244],[-67.251548,-71.637745],[-67.56494,-71.245831],[-67.917477,-70.853917],[-68.230843,-70.462055],[-68.485452,-70.109311],[-68.544209,-69.717397],[-68.446282,-69.325535],[-67.976233,-68.953206],[-67.5845,-68.541707],[-67.427843,-68.149844],[-67.62367,-67.718759],[-67.741183,-67.326845],[-67.251548,-66.876175],[-66.703184,-66.58224],[-66.056815,-66.209963],[-65.371327,-65.89639],[-64.568276,-65.602506],[-64.176542,-65.171423],[-63.628152,-64.897073],[-63.001394,-64.642308],[-62.041686,-64.583552],[-61.414928,-64.270031],[-60.709855,-64.074074],[-59.887269,-63.95651],[-59.162585,-63.701745],[-58.594557,-63.388224],[-57.811143,-63.27066],[-57.223582,-63.525425],[-57.59573,-63.858532],[-58.614143,-64.152467]]]]},"id":"ATA"}, -{"type":"Feature","properties":{"name":"French Southern and Antarctic Lands"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]},"id":"ATF"}, -{"type":"Feature","properties":{"name":"Australia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]},"id":"AUS"}, -{"type":"Feature","properties":{"name":"Austria"},"geometry":{"type":"Polygon","coordinates":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]},"id":"AUT"}, -{"type":"Feature","properties":{"name":"Azerbaijan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]},"id":"AZE"}, -{"type":"Feature","properties":{"name":"Burundi"},"geometry":{"type":"Polygon","coordinates":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]},"id":"BDI"}, -{"type":"Feature","properties":{"name":"Belgium"},"geometry":{"type":"Polygon","coordinates":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]},"id":"BEL"}, -{"type":"Feature","properties":{"name":"Benin"},"geometry":{"type":"Polygon","coordinates":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]},"id":"BEN"}, -{"type":"Feature","properties":{"name":"Burkina Faso"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]},"id":"BFA"}, -{"type":"Feature","properties":{"name":"Bangladesh"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]},"id":"BGD"}, -{"type":"Feature","properties":{"name":"Bulgaria"},"geometry":{"type":"Polygon","coordinates":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]},"id":"BGR"}, -{"type":"Feature","properties":{"name":"The Bahamas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]},"id":"BHS"}, -{"type":"Feature","properties":{"name":"Bosnia and Herzegovina"},"geometry":{"type":"Polygon","coordinates":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]},"id":"BIH"}, -{"type":"Feature","properties":{"name":"Belarus"},"geometry":{"type":"Polygon","coordinates":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]},"id":"BLR"}, -{"type":"Feature","properties":{"name":"Belize"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]},"id":"BLZ"}, -{"type":"Feature","properties":{"name":"Bolivia"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]},"id":"BOL"}, -{"type":"Feature","properties":{"name":"Brazil"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]},"id":"BRA"}, -{"type":"Feature","properties":{"name":"Brunei"},"geometry":{"type":"Polygon","coordinates":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]},"id":"BRN"}, -{"type":"Feature","properties":{"name":"Bhutan"},"geometry":{"type":"Polygon","coordinates":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]},"id":"BTN"}, -{"type":"Feature","properties":{"name":"Botswana"},"geometry":{"type":"Polygon","coordinates":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]},"id":"BWA"}, -{"type":"Feature","properties":{"name":"Central African Republic"},"geometry":{"type":"Polygon","coordinates":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]},"id":"CAF"}, -{"type":"Feature","properties":{"name":"Canada"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-132.710009,54.040009],[-132.710008,54.040009],[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]},"id":"CAN"}, -{"type":"Feature","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]},"id":"CHE"}, -{"type":"Feature","properties":{"name":"Chile"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]},"id":"CHL"}, -{"type":"Feature","properties":{"name":"China"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]},"id":"CHN"}, -{"type":"Feature","properties":{"name":"Ivory Coast"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]},"id":"CIV"}, -{"type":"Feature","properties":{"name":"Cameroon"},"geometry":{"type":"Polygon","coordinates":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]},"id":"CMR"}, -{"type":"Feature","properties":{"name":"Democratic Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]},"id":"COD"}, -{"type":"Feature","properties":{"name":"Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]},"id":"COG"}, -{"type":"Feature","properties":{"name":"Colombia"},"geometry":{"type":"Polygon","coordinates":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]},"id":"COL"}, -{"type":"Feature","properties":{"name":"Costa Rica"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]},"id":"CRI"}, -{"type":"Feature","properties":{"name":"Cuba"},"geometry":{"type":"Polygon","coordinates":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]},"id":"CUB"}, -{"type":"Feature","properties":{"name":"Northern Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[32.73178,35.140026],[32.802474,35.145504],[32.946961,35.386703],[33.667227,35.373216],[34.576474,35.671596],[33.900804,35.245756],[33.973617,35.058506],[33.86644,35.093595],[33.675392,35.017863],[33.525685,35.038688],[33.475817,35.000345],[33.455922,35.101424],[33.383833,35.162712],[33.190977,35.173125],[32.919572,35.087833],[32.73178,35.140026]]]},"id":"-99"}, -{"type":"Feature","properties":{"name":"Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]},"id":"CYP"}, -{"type":"Feature","properties":{"name":"Czech Republic"},"geometry":{"type":"Polygon","coordinates":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]},"id":"CZE"}, -{"type":"Feature","properties":{"name":"Germany"},"geometry":{"type":"Polygon","coordinates":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]},"id":"DEU"}, -{"type":"Feature","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]},"id":"DJI"}, -{"type":"Feature","properties":{"name":"Denmark"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]},"id":"DNK"}, -{"type":"Feature","properties":{"name":"Dominican Republic"},"geometry":{"type":"Polygon","coordinates":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]},"id":"DOM"}, -{"type":"Feature","properties":{"name":"Algeria"},"geometry":{"type":"Polygon","coordinates":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]},"id":"DZA"}, -{"type":"Feature","properties":{"name":"Ecuador"},"geometry":{"type":"Polygon","coordinates":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]},"id":"ECU"}, -{"type":"Feature","properties":{"name":"Egypt"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]},"id":"EGY"}, -{"type":"Feature","properties":{"name":"Eritrea"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]},"id":"ERI"}, -{"type":"Feature","properties":{"name":"Spain"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.984433,42.592775],[-9.392884,43.026625],[-7.97819,43.748338],[-6.754492,43.567909],[-5.411886,43.57424],[-4.347843,43.403449],[-3.517532,43.455901],[-1.901351,43.422802],[-1.502771,43.034014],[0.338047,42.579546],[0.701591,42.795734],[1.826793,42.343385],[2.985999,42.473015],[3.039484,41.89212],[2.091842,41.226089],[0.810525,41.014732],[0.721331,40.678318],[0.106692,40.123934],[-0.278711,39.309978],[0.111291,38.738514],[-0.467124,38.292366],[-0.683389,37.642354],[-1.438382,37.443064],[-2.146453,36.674144],[-3.415781,36.6589],[-4.368901,36.677839],[-4.995219,36.324708],[-5.37716,35.94685],[-5.866432,36.029817],[-6.236694,36.367677],[-6.520191,36.942913],[-7.453726,37.097788],[-7.537105,37.428904],[-7.166508,37.803894],[-7.029281,38.075764],[-7.374092,38.373059],[-7.098037,39.030073],[-7.498632,39.629571],[-7.066592,39.711892],[-7.026413,40.184524],[-6.86402,40.330872],[-6.851127,41.111083],[-6.389088,41.381815],[-6.668606,41.883387],[-7.251309,41.918346],[-7.422513,41.792075],[-8.013175,41.790886],[-8.263857,42.280469],[-8.671946,42.134689],[-9.034818,41.880571]]]},"id":"ESP"}, -{"type":"Feature","properties":{"name":"Estonia"},"geometry":{"type":"Polygon","coordinates":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]},"id":"EST"}, -{"type":"Feature","properties":{"name":"Ethiopia"},"geometry":{"type":"Polygon","coordinates":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]},"id":"ETH"}, -{"type":"Feature","properties":{"name":"Finland"},"geometry":{"type":"Polygon","coordinates":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]},"id":"FIN"}, -{"type":"Feature","properties":{"name":"Fiji"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]},"id":"FJI"}, -{"type":"Feature","properties":{"name":"Falkland Islands"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]},"id":"FLK"}, -{"type":"Feature","properties":{"name":"France"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]},"id":"FRA"}, -{"type":"Feature","properties":{"name":"French Guiana"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]]]},"id":"GUF"}, -{"type":"Feature","properties":{"name":"Gabon"},"geometry":{"type":"Polygon","coordinates":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]},"id":"GAB"}, -{"type":"Feature","properties":{"name":"United Kingdom"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]},"id":"GBR"}, -{"type":"Feature","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]},"id":"GEO"}, -{"type":"Feature","properties":{"name":"Ghana"},"geometry":{"type":"Polygon","coordinates":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]},"id":"GHA"}, -{"type":"Feature","properties":{"name":"Guinea"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]},"id":"GIN"}, -{"type":"Feature","properties":{"name":"Gambia"},"geometry":{"type":"Polygon","coordinates":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]},"id":"GMB"}, -{"type":"Feature","properties":{"name":"Guinea Bissau"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]},"id":"GNB"}, -{"type":"Feature","properties":{"name":"Equatorial Guinea"},"geometry":{"type":"Polygon","coordinates":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]},"id":"GNQ"}, -{"type":"Feature","properties":{"name":"Greece"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]},"id":"GRC"}, -{"type":"Feature","properties":{"name":"Greenland"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]},"id":"GRL"}, -{"type":"Feature","properties":{"name":"Guatemala"},"geometry":{"type":"Polygon","coordinates":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]},"id":"GTM"}, -{"type":"Feature","properties":{"name":"Guyana"},"geometry":{"type":"Polygon","coordinates":[[[-59.758285,8.367035],[-59.101684,7.999202],[-58.482962,7.347691],[-58.454876,6.832787],[-58.078103,6.809094],[-57.542219,6.321268],[-57.147436,5.97315],[-57.307246,5.073567],[-57.914289,4.812626],[-57.86021,4.576801],[-58.044694,4.060864],[-57.601569,3.334655],[-57.281433,3.333492],[-57.150098,2.768927],[-56.539386,1.899523],[-56.782704,1.863711],[-57.335823,1.948538],[-57.660971,1.682585],[-58.11345,1.507195],[-58.429477,1.463942],[-58.540013,1.268088],[-59.030862,1.317698],[-59.646044,1.786894],[-59.718546,2.24963],[-59.974525,2.755233],[-59.815413,3.606499],[-59.53804,3.958803],[-59.767406,4.423503],[-60.111002,4.574967],[-59.980959,5.014061],[-60.213683,5.244486],[-60.733574,5.200277],[-61.410303,5.959068],[-61.139415,6.234297],[-61.159336,6.696077],[-60.543999,6.856584],[-60.295668,7.043911],[-60.637973,7.415],[-60.550588,7.779603],[-59.758285,8.367035]]]},"id":"GUY"}, -{"type":"Feature","properties":{"name":"Honduras"},"geometry":{"type":"Polygon","coordinates":[[[-87.316654,12.984686],[-87.489409,13.297535],[-87.793111,13.38448],[-87.723503,13.78505],[-87.859515,13.893312],[-88.065343,13.964626],[-88.503998,13.845486],[-88.541231,13.980155],[-88.843073,14.140507],[-89.058512,14.340029],[-89.353326,14.424133],[-89.145535,14.678019],[-89.22522,14.874286],[-89.154811,15.066419],[-88.68068,15.346247],[-88.225023,15.727722],[-88.121153,15.688655],[-87.901813,15.864458],[-87.61568,15.878799],[-87.522921,15.797279],[-87.367762,15.84694],[-86.903191,15.756713],[-86.440946,15.782835],[-86.119234,15.893449],[-86.001954,16.005406],[-85.683317,15.953652],[-85.444004,15.885749],[-85.182444,15.909158],[-84.983722,15.995923],[-84.52698,15.857224],[-84.368256,15.835158],[-84.063055,15.648244],[-83.773977,15.424072],[-83.410381,15.270903],[-83.147219,14.995829],[-83.489989,15.016267],[-83.628585,14.880074],[-83.975721,14.749436],[-84.228342,14.748764],[-84.449336,14.621614],[-84.649582,14.666805],[-84.820037,14.819587],[-84.924501,14.790493],[-85.052787,14.551541],[-85.148751,14.560197],[-85.165365,14.35437],[-85.514413,14.079012],[-85.698665,13.960078],[-85.801295,13.836055],[-86.096264,14.038187],[-86.312142,13.771356],[-86.520708,13.778487],[-86.755087,13.754845],[-86.733822,13.263093],[-86.880557,13.254204],[-87.005769,13.025794],[-87.316654,12.984686]]]},"id":"HND"}, -{"type":"Feature","properties":{"name":"Croatia"},"geometry":{"type":"Polygon","coordinates":[[[18.829838,45.908878],[19.072769,45.521511],[19.390476,45.236516],[19.005486,44.860234],[18.553214,45.08159],[17.861783,45.06774],[17.002146,45.233777],[16.534939,45.211608],[16.318157,45.004127],[15.959367,45.233777],[15.750026,44.818712],[16.23966,44.351143],[16.456443,44.04124],[16.916156,43.667722],[17.297373,43.446341],[17.674922,43.028563],[18.56,42.65],[18.450016,42.479991],[17.50997,42.849995],[16.930006,43.209998],[16.015385,43.507215],[15.174454,44.243191],[15.37625,44.317915],[14.920309,44.738484],[14.901602,45.07606],[14.258748,45.233777],[13.952255,44.802124],[13.656976,45.136935],[13.679403,45.484149],[13.71506,45.500324],[14.411968,45.466166],[14.595109,45.634941],[14.935244,45.471695],[15.327675,45.452316],[15.323954,45.731783],[15.67153,45.834154],[15.768733,46.238108],[16.564808,46.503751],[16.882515,46.380632],[17.630066,45.951769],[18.456062,45.759481],[18.829838,45.908878]]]},"id":"HRV"}, -{"type":"Feature","properties":{"name":"Haiti"},"geometry":{"type":"Polygon","coordinates":[[[-73.189791,19.915684],[-72.579673,19.871501],[-71.712361,19.714456],[-71.624873,19.169838],[-71.701303,18.785417],[-71.945112,18.6169],[-71.687738,18.31666],[-71.708305,18.044997],[-72.372476,18.214961],[-72.844411,18.145611],[-73.454555,18.217906],[-73.922433,18.030993],[-74.458034,18.34255],[-74.369925,18.664908],[-73.449542,18.526053],[-72.694937,18.445799],[-72.334882,18.668422],[-72.79165,19.101625],[-72.784105,19.483591],[-73.415022,19.639551],[-73.189791,19.915684]]]},"id":"HTI"}, -{"type":"Feature","properties":{"name":"Hungary"},"geometry":{"type":"Polygon","coordinates":[[[16.202298,46.852386],[16.534268,47.496171],[16.340584,47.712902],[16.903754,47.714866],[16.979667,48.123497],[17.488473,47.867466],[17.857133,47.758429],[18.696513,47.880954],[18.777025,48.081768],[19.174365,48.111379],[19.661364,48.266615],[19.769471,48.202691],[20.239054,48.327567],[20.473562,48.56285],[20.801294,48.623854],[21.872236,48.319971],[22.085608,48.422264],[22.64082,48.15024],[22.710531,47.882194],[22.099768,47.672439],[21.626515,46.994238],[21.021952,46.316088],[20.220192,46.127469],[19.596045,46.17173],[18.829838,45.908878],[18.456062,45.759481],[17.630066,45.951769],[16.882515,46.380632],[16.564808,46.503751],[16.370505,46.841327],[16.202298,46.852386]]]},"id":"HUN"}, -{"type":"Feature","properties":{"name":"Indonesia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.715609,-10.239581],[120.295014,-10.25865],[118.967808,-9.557969],[119.90031,-9.36134],[120.425756,-9.665921],[120.775502,-9.969675],[120.715609,-10.239581]]],[[[124.43595,-10.140001],[123.579982,-10.359987],[123.459989,-10.239995],[123.550009,-9.900016],[123.980009,-9.290027],[124.968682,-8.89279],[125.07002,-9.089987],[125.08852,-9.393173],[124.43595,-10.140001]]],[[[117.900018,-8.095681],[118.260616,-8.362383],[118.87846,-8.280683],[119.126507,-8.705825],[117.970402,-8.906639],[117.277731,-9.040895],[116.740141,-9.032937],[117.083737,-8.457158],[117.632024,-8.449303],[117.900018,-8.095681]]],[[[122.903537,-8.094234],[122.756983,-8.649808],[121.254491,-8.933666],[119.924391,-8.810418],[119.920929,-8.444859],[120.715092,-8.236965],[121.341669,-8.53674],[122.007365,-8.46062],[122.903537,-8.094234]]],[[[108.623479,-6.777674],[110.539227,-6.877358],[110.759576,-6.465186],[112.614811,-6.946036],[112.978768,-7.594213],[114.478935,-7.776528],[115.705527,-8.370807],[114.564511,-8.751817],[113.464734,-8.348947],[112.559672,-8.376181],[111.522061,-8.302129],[110.58615,-8.122605],[109.427667,-7.740664],[108.693655,-7.6416],[108.277763,-7.766657],[106.454102,-7.3549],[106.280624,-6.9249],[105.365486,-6.851416],[106.051646,-5.895919],[107.265009,-5.954985],[108.072091,-6.345762],[108.486846,-6.421985],[108.623479,-6.777674]]],[[[134.724624,-6.214401],[134.210134,-6.895238],[134.112776,-6.142467],[134.290336,-5.783058],[134.499625,-5.445042],[134.727002,-5.737582],[134.724624,-6.214401]]],[[[127.249215,-3.459065],[126.874923,-3.790983],[126.183802,-3.607376],[125.989034,-3.177273],[127.000651,-3.129318],[127.249215,-3.459065]]],[[[130.471344,-3.093764],[130.834836,-3.858472],[129.990547,-3.446301],[129.155249,-3.362637],[128.590684,-3.428679],[127.898891,-3.393436],[128.135879,-2.84365],[129.370998,-2.802154],[130.471344,-3.093764]]],[[[134.143368,-1.151867],[134.422627,-2.769185],[135.457603,-3.367753],[136.293314,-2.307042],[137.440738,-1.703513],[138.329727,-1.702686],[139.184921,-2.051296],[139.926684,-2.409052],[141.00021,-2.600151],[141.017057,-5.859022],[141.033852,-9.117893],[140.143415,-8.297168],[139.127767,-8.096043],[138.881477,-8.380935],[137.614474,-8.411683],[138.039099,-7.597882],[138.668621,-7.320225],[138.407914,-6.232849],[137.92784,-5.393366],[135.98925,-4.546544],[135.164598,-4.462931],[133.66288,-3.538853],[133.367705,-4.024819],[132.983956,-4.112979],[132.756941,-3.746283],[132.753789,-3.311787],[131.989804,-2.820551],[133.066845,-2.460418],[133.780031,-2.479848],[133.696212,-2.214542],[132.232373,-2.212526],[131.836222,-1.617162],[130.94284,-1.432522],[130.519558,-0.93772],[131.867538,-0.695461],[132.380116,-0.369538],[133.985548,-0.78021],[134.143368,-1.151867]]],[[[125.240501,1.419836],[124.437035,0.427881],[123.685505,0.235593],[122.723083,0.431137],[121.056725,0.381217],[120.183083,0.237247],[120.04087,-0.519658],[120.935905,-1.408906],[121.475821,-0.955962],[123.340565,-0.615673],[123.258399,-1.076213],[122.822715,-0.930951],[122.38853,-1.516858],[121.508274,-1.904483],[122.454572,-3.186058],[122.271896,-3.5295],[123.170963,-4.683693],[123.162333,-5.340604],[122.628515,-5.634591],[122.236394,-5.282933],[122.719569,-4.464172],[121.738234,-4.851331],[121.489463,-4.574553],[121.619171,-4.188478],[120.898182,-3.602105],[120.972389,-2.627643],[120.305453,-2.931604],[120.390047,-4.097579],[120.430717,-5.528241],[119.796543,-5.6734],[119.366906,-5.379878],[119.653606,-4.459417],[119.498835,-3.494412],[119.078344,-3.487022],[118.767769,-2.801999],[119.180974,-2.147104],[119.323394,-1.353147],[119.825999,0.154254],[120.035702,0.566477],[120.885779,1.309223],[121.666817,1.013944],[122.927567,0.875192],[124.077522,0.917102],[125.065989,1.643259],[125.240501,1.419836]]],[[[128.688249,1.132386],[128.635952,0.258486],[128.12017,0.356413],[127.968034,-0.252077],[128.379999,-0.780004],[128.100016,-0.899996],[127.696475,-0.266598],[127.39949,1.011722],[127.600512,1.810691],[127.932378,2.174596],[128.004156,1.628531],[128.594559,1.540811],[128.688249,1.132386]]],[[[117.875627,1.827641],[118.996747,0.902219],[117.811858,0.784242],[117.478339,0.102475],[117.521644,-0.803723],[116.560048,-1.487661],[116.533797,-2.483517],[116.148084,-4.012726],[116.000858,-3.657037],[114.864803,-4.106984],[114.468652,-3.495704],[113.755672,-3.43917],[113.256994,-3.118776],[112.068126,-3.478392],[111.703291,-2.994442],[111.04824,-3.049426],[110.223846,-2.934032],[110.070936,-1.592874],[109.571948,-1.314907],[109.091874,-0.459507],[108.952658,0.415375],[109.069136,1.341934],[109.66326,2.006467],[109.830227,1.338136],[110.514061,0.773131],[111.159138,0.976478],[111.797548,0.904441],[112.380252,1.410121],[112.859809,1.49779],[113.80585,1.217549],[114.621355,1.430688],[115.134037,2.821482],[115.519078,3.169238],[115.865517,4.306559],[117.015214,4.306094],[117.882035,4.137551],[117.313232,3.234428],[118.04833,2.28769],[117.875627,1.827641]]],[[[105.817655,-5.852356],[104.710384,-5.873285],[103.868213,-5.037315],[102.584261,-4.220259],[102.156173,-3.614146],[101.399113,-2.799777],[100.902503,-2.050262],[100.141981,-0.650348],[99.26374,0.183142],[98.970011,1.042882],[98.601351,1.823507],[97.699598,2.453184],[97.176942,3.308791],[96.424017,3.86886],[95.380876,4.970782],[95.293026,5.479821],[95.936863,5.439513],[97.484882,5.246321],[98.369169,4.26837],[99.142559,3.59035],[99.693998,3.174329],[100.641434,2.099381],[101.658012,2.083697],[102.498271,1.3987],[103.07684,0.561361],[103.838396,0.104542],[103.437645,-0.711946],[104.010789,-1.059212],[104.369991,-1.084843],[104.53949,-1.782372],[104.887893,-2.340425],[105.622111,-2.428844],[106.108593,-3.061777],[105.857446,-4.305525],[105.817655,-5.852356]]]]},"id":"IDN"}, -{"type":"Feature","properties":{"name":"India"},"geometry":{"type":"Polygon","coordinates":[[[77.837451,35.49401],[78.912269,34.321936],[78.811086,33.506198],[79.208892,32.994395],[79.176129,32.48378],[78.458446,32.618164],[78.738894,31.515906],[79.721367,30.882715],[81.111256,30.183481],[80.476721,29.729865],[80.088425,28.79447],[81.057203,28.416095],[81.999987,27.925479],[83.304249,27.364506],[84.675018,27.234901],[85.251779,26.726198],[86.024393,26.630985],[87.227472,26.397898],[88.060238,26.414615],[88.174804,26.810405],[88.043133,27.445819],[88.120441,27.876542],[88.730326,28.086865],[88.814248,27.299316],[88.835643,27.098966],[89.744528,26.719403],[90.373275,26.875724],[91.217513,26.808648],[92.033484,26.83831],[92.103712,27.452614],[91.696657,27.771742],[92.503119,27.896876],[93.413348,28.640629],[94.56599,29.277438],[95.404802,29.031717],[96.117679,29.452802],[96.586591,28.83098],[96.248833,28.411031],[97.327114,28.261583],[97.402561,27.882536],[97.051989,27.699059],[97.133999,27.083774],[96.419366,27.264589],[95.124768,26.573572],[95.155153,26.001307],[94.603249,25.162495],[94.552658,24.675238],[94.106742,23.850741],[93.325188,24.078556],[93.286327,23.043658],[93.060294,22.703111],[93.166128,22.27846],[92.672721,22.041239],[92.146035,23.627499],[91.869928,23.624346],[91.706475,22.985264],[91.158963,23.503527],[91.46773,24.072639],[91.915093,24.130414],[92.376202,24.976693],[91.799596,25.147432],[90.872211,25.132601],[89.920693,25.26975],[89.832481,25.965082],[89.355094,26.014407],[88.563049,26.446526],[88.209789,25.768066],[88.931554,25.238692],[88.306373,24.866079],[88.084422,24.501657],[88.69994,24.233715],[88.52977,23.631142],[88.876312,22.879146],[89.031961,22.055708],[88.888766,21.690588],[88.208497,21.703172],[86.975704,21.495562],[87.033169,20.743308],[86.499351,20.151638],[85.060266,19.478579],[83.941006,18.30201],[83.189217,17.671221],[82.192792,17.016636],[82.191242,16.556664],[81.692719,16.310219],[80.791999,15.951972],[80.324896,15.899185],[80.025069,15.136415],[80.233274,13.835771],[80.286294,13.006261],[79.862547,12.056215],[79.857999,10.357275],[79.340512,10.308854],[78.885345,9.546136],[79.18972,9.216544],[78.277941,8.933047],[77.941165,8.252959],[77.539898,7.965535],[76.592979,8.899276],[76.130061,10.29963],[75.746467,11.308251],[75.396101,11.781245],[74.864816,12.741936],[74.616717,13.992583],[74.443859,14.617222],[73.534199,15.990652],[73.119909,17.92857],[72.820909,19.208234],[72.824475,20.419503],[72.630533,21.356009],[71.175273,20.757441],[70.470459,20.877331],[69.16413,22.089298],[69.644928,22.450775],[69.349597,22.84318],[68.176645,23.691965],[68.842599,24.359134],[71.04324,24.356524],[70.844699,25.215102],[70.282873,25.722229],[70.168927,26.491872],[69.514393,26.940966],[70.616496,27.989196],[71.777666,27.91318],[72.823752,28.961592],[73.450638,29.976413],[74.42138,30.979815],[74.405929,31.692639],[75.258642,32.271105],[74.451559,32.7649],[74.104294,33.441473],[73.749948,34.317699],[74.240203,34.748887],[75.757061,34.504923],[76.871722,34.653544],[77.837451,35.49401]]]},"id":"IND"}, -{"type":"Feature","properties":{"name":"Ireland"},"geometry":{"type":"Polygon","coordinates":[[[-6.197885,53.867565],[-6.032985,53.153164],[-6.788857,52.260118],[-8.561617,51.669301],[-9.977086,51.820455],[-9.166283,52.864629],[-9.688525,53.881363],[-8.327987,54.664519],[-7.572168,55.131622],[-7.366031,54.595841],[-7.572168,54.059956],[-6.95373,54.073702],[-6.197885,53.867565]]]},"id":"IRL"}, -{"type":"Feature","properties":{"name":"Iran"},"geometry":{"type":"Polygon","coordinates":[[[53.921598,37.198918],[54.800304,37.392421],[55.511578,37.964117],[56.180375,37.935127],[56.619366,38.121394],[57.330434,38.029229],[58.436154,37.522309],[59.234762,37.412988],[60.377638,36.527383],[61.123071,36.491597],[61.210817,35.650072],[60.803193,34.404102],[60.52843,33.676446],[60.9637,33.528832],[60.536078,32.981269],[60.863655,32.18292],[60.941945,31.548075],[61.699314,31.379506],[61.781222,30.73585],[60.874248,29.829239],[61.369309,29.303276],[61.771868,28.699334],[62.72783,28.259645],[62.755426,27.378923],[63.233898,27.217047],[63.316632,26.756532],[61.874187,26.239975],[61.497363,25.078237],[59.616134,25.380157],[58.525761,25.609962],[57.397251,25.739902],[56.970766,26.966106],[56.492139,27.143305],[55.72371,26.964633],[54.71509,26.480658],[53.493097,26.812369],[52.483598,27.580849],[51.520763,27.86569],[50.852948,28.814521],[50.115009,30.147773],[49.57685,29.985715],[48.941333,30.31709],[48.567971,29.926778],[48.014568,30.452457],[48.004698,30.985137],[47.685286,30.984853],[47.849204,31.709176],[47.334661,32.469155],[46.109362,33.017287],[45.416691,33.967798],[45.64846,34.748138],[46.151788,35.093259],[46.07634,35.677383],[45.420618,35.977546],[44.77267,37.17045],[44.225756,37.971584],[44.421403,38.281281],[44.109225,39.428136],[44.79399,39.713003],[44.952688,39.335765],[45.457722,38.874139],[46.143623,38.741201],[46.50572,38.770605],[47.685079,39.508364],[48.060095,39.582235],[48.355529,39.288765],[48.010744,38.794015],[48.634375,38.270378],[48.883249,38.320245],[49.199612,37.582874],[50.147771,37.374567],[50.842354,36.872814],[52.264025,36.700422],[53.82579,36.965031],[53.921598,37.198918]]]},"id":"IRN"}, -{"type":"Feature","properties":{"name":"Iraq"},"geometry":{"type":"Polygon","coordinates":[[[45.420618,35.977546],[46.07634,35.677383],[46.151788,35.093259],[45.64846,34.748138],[45.416691,33.967798],[46.109362,33.017287],[47.334661,32.469155],[47.849204,31.709176],[47.685286,30.984853],[48.004698,30.985137],[48.014568,30.452457],[48.567971,29.926778],[47.974519,29.975819],[47.302622,30.05907],[46.568713,29.099025],[44.709499,29.178891],[41.889981,31.190009],[40.399994,31.889992],[39.195468,32.161009],[38.792341,33.378686],[41.006159,34.419372],[41.383965,35.628317],[41.289707,36.358815],[41.837064,36.605854],[42.349591,37.229873],[42.779126,37.385264],[43.942259,37.256228],[44.293452,37.001514],[44.772699,37.170445],[45.420618,35.977546]]]},"id":"IRQ"}, -{"type":"Feature","properties":{"name":"Iceland"},"geometry":{"type":"Polygon","coordinates":[[[-14.508695,66.455892],[-14.739637,65.808748],[-13.609732,65.126671],[-14.909834,64.364082],[-17.794438,63.678749],[-18.656246,63.496383],[-19.972755,63.643635],[-22.762972,63.960179],[-21.778484,64.402116],[-23.955044,64.89113],[-22.184403,65.084968],[-22.227423,65.378594],[-24.326184,65.611189],[-23.650515,66.262519],[-22.134922,66.410469],[-20.576284,65.732112],[-19.056842,66.276601],[-17.798624,65.993853],[-16.167819,66.526792],[-14.508695,66.455892]]]},"id":"ISL"}, -{"type":"Feature","properties":{"name":"Israel"},"geometry":{"type":"Polygon","coordinates":[[[35.719918,32.709192],[35.545665,32.393992],[35.18393,32.532511],[34.974641,31.866582],[35.225892,31.754341],[34.970507,31.616778],[34.927408,31.353435],[35.397561,31.489086],[35.420918,31.100066],[34.922603,29.501326],[34.265433,31.219361],[34.556372,31.548824],[34.488107,31.605539],[34.752587,32.072926],[34.955417,32.827376],[35.098457,33.080539],[35.126053,33.0909],[35.460709,33.08904],[35.552797,33.264275],[35.821101,33.277426],[35.836397,32.868123],[35.700798,32.716014],[35.719918,32.709192]]]},"id":"ISR"}, -{"type":"Feature","properties":{"name":"Italy"},"geometry":{"type":"MultiPolygon","coordinates":[[[[15.520376,38.231155],[15.160243,37.444046],[15.309898,37.134219],[15.099988,36.619987],[14.335229,36.996631],[13.826733,37.104531],[12.431004,37.61295],[12.570944,38.126381],[13.741156,38.034966],[14.761249,38.143874],[15.520376,38.231155]]],[[[9.210012,41.209991],[9.809975,40.500009],[9.669519,39.177376],[9.214818,39.240473],[8.806936,38.906618],[8.428302,39.171847],[8.388253,40.378311],[8.159998,40.950007],[8.709991,40.899984],[9.210012,41.209991]]],[[[12.376485,46.767559],[13.806475,46.509306],[13.69811,46.016778],[13.93763,45.591016],[13.141606,45.736692],[12.328581,45.381778],[12.383875,44.885374],[12.261453,44.600482],[12.589237,44.091366],[13.526906,43.587727],[14.029821,42.761008],[15.14257,41.95514],[15.926191,41.961315],[16.169897,41.740295],[15.889346,41.541082],[16.785002,41.179606],[17.519169,40.877143],[18.376687,40.355625],[18.480247,40.168866],[18.293385,39.810774],[17.73838,40.277671],[16.869596,40.442235],[16.448743,39.795401],[17.17149,39.4247],[17.052841,38.902871],[16.635088,38.843572],[16.100961,37.985899],[15.684087,37.908849],[15.687963,38.214593],[15.891981,38.750942],[16.109332,38.964547],[15.718814,39.544072],[15.413613,40.048357],[14.998496,40.172949],[14.703268,40.60455],[14.060672,40.786348],[13.627985,41.188287],[12.888082,41.25309],[12.106683,41.704535],[11.191906,42.355425],[10.511948,42.931463],[10.200029,43.920007],[9.702488,44.036279],[8.888946,44.366336],[8.428561,44.231228],[7.850767,43.767148],[7.435185,43.693845],[7.549596,44.127901],[7.007562,44.254767],[6.749955,45.028518],[7.096652,45.333099],[6.802355,45.70858],[6.843593,45.991147],[7.273851,45.776948],[7.755992,45.82449],[8.31663,46.163642],[8.489952,46.005151],[8.966306,46.036932],[9.182882,46.440215],[9.922837,46.314899],[10.363378,46.483571],[10.442701,46.893546],[11.048556,46.751359],[11.164828,46.941579],[12.153088,47.115393],[12.376485,46.767559]]]]},"id":"ITA"}, -{"type":"Feature","properties":{"name":"Jamaica"},"geometry":{"type":"Polygon","coordinates":[[[-77.569601,18.490525],[-76.896619,18.400867],[-76.365359,18.160701],[-76.199659,17.886867],[-76.902561,17.868238],[-77.206341,17.701116],[-77.766023,17.861597],[-78.337719,18.225968],[-78.217727,18.454533],[-77.797365,18.524218],[-77.569601,18.490525]]]},"id":"JAM"}, -{"type":"Feature","properties":{"name":"Jordan"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.719918,32.709192],[36.834062,32.312938],[38.792341,33.378686],[39.195468,32.161009],[39.004886,32.010217],[37.002166,31.508413],[37.998849,30.5085],[37.66812,30.338665],[37.503582,30.003776],[36.740528,29.865283],[36.501214,29.505254],[36.068941,29.197495],[34.956037,29.356555],[34.922603,29.501326],[35.420918,31.100066],[35.397561,31.489086],[35.545252,31.782505],[35.545665,32.393992]]]},"id":"JOR"}, -{"type":"Feature","properties":{"name":"Japan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[134.638428,34.149234],[134.766379,33.806335],[134.203416,33.201178],[133.79295,33.521985],[133.280268,33.28957],[133.014858,32.704567],[132.363115,32.989382],[132.371176,33.463642],[132.924373,34.060299],[133.492968,33.944621],[133.904106,34.364931],[134.638428,34.149234]]],[[[140.976388,37.142074],[140.59977,36.343983],[140.774074,35.842877],[140.253279,35.138114],[138.975528,34.6676],[137.217599,34.606286],[135.792983,33.464805],[135.120983,33.849071],[135.079435,34.596545],[133.340316,34.375938],[132.156771,33.904933],[130.986145,33.885761],[132.000036,33.149992],[131.33279,31.450355],[130.686318,31.029579],[130.20242,31.418238],[130.447676,32.319475],[129.814692,32.61031],[129.408463,33.296056],[130.353935,33.604151],[130.878451,34.232743],[131.884229,34.749714],[132.617673,35.433393],[134.608301,35.731618],[135.677538,35.527134],[136.723831,37.304984],[137.390612,36.827391],[138.857602,37.827485],[139.426405,38.215962],[140.05479,39.438807],[139.883379,40.563312],[140.305783,41.195005],[141.368973,41.37856],[141.914263,39.991616],[141.884601,39.180865],[140.959489,38.174001],[140.976388,37.142074]]],[[[143.910162,44.1741],[144.613427,43.960883],[145.320825,44.384733],[145.543137,43.262088],[144.059662,42.988358],[143.18385,41.995215],[141.611491,42.678791],[141.067286,41.584594],[139.955106,41.569556],[139.817544,42.563759],[140.312087,43.333273],[141.380549,43.388825],[141.671952,44.772125],[141.967645,45.551483],[143.14287,44.510358],[143.910162,44.1741]]]]},"id":"JPN"}, -{"type":"Feature","properties":{"name":"Kazakhstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[70.388965,42.081308],[69.070027,41.384244],[68.632483,40.668681],[68.259896,40.662325],[67.985856,41.135991],[66.714047,41.168444],[66.510649,41.987644],[66.023392,41.994646],[66.098012,42.99766],[64.900824,43.728081],[63.185787,43.650075],[62.0133,43.504477],[61.05832,44.405817],[60.239972,44.784037],[58.689989,45.500014],[58.503127,45.586804],[55.928917,44.995858],[55.968191,41.308642],[55.455251,41.259859],[54.755345,42.043971],[54.079418,42.324109],[52.944293,42.116034],[52.50246,41.783316],[52.446339,42.027151],[52.692112,42.443895],[52.501426,42.792298],[51.342427,43.132975],[50.891292,44.031034],[50.339129,44.284016],[50.305643,44.609836],[51.278503,44.514854],[51.316899,45.245998],[52.16739,45.408391],[53.040876,45.259047],[53.220866,46.234646],[53.042737,46.853006],[52.042023,46.804637],[51.191945,47.048705],[50.034083,46.60899],[49.10116,46.39933],[48.593241,46.561034],[48.694734,47.075628],[48.057253,47.743753],[47.315231,47.715847],[46.466446,48.394152],[47.043672,49.152039],[46.751596,49.356006],[47.54948,50.454698],[48.577841,49.87476],[48.702382,50.605128],[50.766648,51.692762],[52.328724,51.718652],[54.532878,51.02624],[55.716941,50.621717],[56.777961,51.043551],[58.363291,51.063653],[59.642282,50.545442],[59.932807,50.842194],[61.337424,50.79907],[61.588003,51.272659],[59.967534,51.96042],[60.927269,52.447548],[60.739993,52.719986],[61.699986,52.979996],[60.978066,53.664993],[61.436591,54.006265],[65.178534,54.354228],[65.666876,54.601267],[68.1691,54.970392],[69.068167,55.38525],[70.865267,55.169734],[71.180131,54.133285],[72.22415,54.376655],[73.508516,54.035617],[73.425679,53.48981],[74.384845,53.546861],[76.8911,54.490524],[76.525179,54.177003],[77.800916,53.404415],[80.03556,50.864751],[80.568447,51.388336],[81.945986,50.812196],[83.383004,51.069183],[83.935115,50.889246],[84.416377,50.3114],[85.11556,50.117303],[85.54127,49.692859],[86.829357,49.826675],[87.35997,49.214981],[86.598776,48.549182],[85.768233,48.455751],[85.720484,47.452969],[85.16429,47.000956],[83.180484,47.330031],[82.458926,45.53965],[81.947071,45.317027],[79.966106,44.917517],[80.866206,43.180362],[80.18015,42.920068],[80.25999,42.349999],[79.643645,42.496683],[79.142177,42.856092],[77.658392,42.960686],[76.000354,42.988022],[75.636965,42.8779],[74.212866,43.298339],[73.645304,43.091272],[73.489758,42.500894],[71.844638,42.845395],[71.186281,42.704293],[70.962315,42.266154]]]},"id":"KAZ"}, -{"type":"Feature","properties":{"name":"Kenya"},"geometry":{"type":"Polygon","coordinates":[[[40.993,-0.85829],[41.58513,-1.68325],[40.88477,-2.08255],[40.63785,-2.49979],[40.26304,-2.57309],[40.12119,-3.27768],[39.80006,-3.68116],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[33.903711,-0.95],[33.893569,0.109814],[34.18,0.515],[34.6721,1.17694],[35.03599,1.90584],[34.59607,3.05374],[34.47913,3.5556],[34.005,4.249885],[34.620196,4.847123],[35.298007,5.506],[35.817448,5.338232],[35.817448,4.776966],[36.159079,4.447864],[36.855093,4.447864],[38.120915,3.598605],[38.43697,3.58851],[38.67114,3.61607],[38.89251,3.50074],[39.559384,3.42206],[39.85494,3.83879],[40.76848,4.25702],[41.1718,3.91909],[41.855083,3.918912],[40.98105,2.78452],[40.993,-0.85829]]]},"id":"KEN"}, -{"type":"Feature","properties":{"name":"Kyrgyzstan"},"geometry":{"type":"Polygon","coordinates":[[[70.962315,42.266154],[71.186281,42.704293],[71.844638,42.845395],[73.489758,42.500894],[73.645304,43.091272],[74.212866,43.298339],[75.636965,42.8779],[76.000354,42.988022],[77.658392,42.960686],[79.142177,42.856092],[79.643645,42.496683],[80.25999,42.349999],[80.11943,42.123941],[78.543661,41.582243],[78.187197,41.185316],[76.904484,41.066486],[76.526368,40.427946],[75.467828,40.562072],[74.776862,40.366425],[73.822244,39.893973],[73.960013,39.660008],[73.675379,39.431237],[71.784694,39.279463],[70.549162,39.604198],[69.464887,39.526683],[69.55961,40.103211],[70.648019,39.935754],[71.014198,40.244366],[71.774875,40.145844],[73.055417,40.866033],[71.870115,41.3929],[71.157859,41.143587],[70.420022,41.519998],[71.259248,42.167711],[70.962315,42.266154]]]},"id":"KGZ"}, -{"type":"Feature","properties":{"name":"Cambodia"},"geometry":{"type":"Polygon","coordinates":[[[103.49728,10.632555],[103.09069,11.153661],[102.584932,12.186595],[102.348099,13.394247],[102.988422,14.225721],[104.281418,14.416743],[105.218777,14.273212],[106.043946,13.881091],[106.496373,14.570584],[107.382727,14.202441],[107.614548,13.535531],[107.491403,12.337206],[105.810524,11.567615],[106.24967,10.961812],[105.199915,10.88931],[104.334335,10.486544],[103.49728,10.632555]]]},"id":"KHM"}, -{"type":"Feature","properties":{"name":"South Korea"},"geometry":{"type":"Polygon","coordinates":[[[128.349716,38.612243],[129.21292,37.432392],[129.46045,36.784189],[129.468304,35.632141],[129.091377,35.082484],[128.18585,34.890377],[127.386519,34.475674],[126.485748,34.390046],[126.37392,34.93456],[126.559231,35.684541],[126.117398,36.725485],[126.860143,36.893924],[126.174759,37.749686],[126.237339,37.840378],[126.68372,37.804773],[127.073309,38.256115],[127.780035,38.304536],[128.205746,38.370397],[128.349716,38.612243]]]},"id":"KOR"}, -{"type":"Feature","properties":{"name":"Kosovo"},"geometry":{"type":"Polygon","coordinates":[[[20.76216,42.05186],[20.71731,41.84711],[20.59023,41.85541],[20.52295,42.21787],[20.28374,42.32025],[20.0707,42.58863],[20.25758,42.81275],[20.49679,42.88469],[20.63508,43.21671],[20.81448,43.27205],[20.95651,43.13094],[21.143395,43.068685],[21.27421,42.90959],[21.43866,42.86255],[21.63302,42.67717],[21.77505,42.6827],[21.66292,42.43922],[21.54332,42.32025],[21.576636,42.245224],[21.3527,42.2068],[20.76216,42.05186]]]},"id":"-99"}, -{"type":"Feature","properties":{"name":"Kuwait"},"geometry":{"type":"Polygon","coordinates":[[[47.974519,29.975819],[48.183189,29.534477],[48.093943,29.306299],[48.416094,28.552004],[47.708851,28.526063],[47.459822,29.002519],[46.568713,29.099025],[47.302622,30.05907],[47.974519,29.975819]]]},"id":"KWT"}, -{"type":"Feature","properties":{"name":"Laos"},"geometry":{"type":"Polygon","coordinates":[[[105.218777,14.273212],[105.544338,14.723934],[105.589039,15.570316],[104.779321,16.441865],[104.716947,17.428859],[103.956477,18.240954],[103.200192,18.309632],[102.998706,17.961695],[102.413005,17.932782],[102.113592,18.109102],[101.059548,17.512497],[101.035931,18.408928],[101.282015,19.462585],[100.606294,19.508344],[100.548881,20.109238],[100.115988,20.41785],[100.329101,20.786122],[101.180005,21.436573],[101.270026,21.201652],[101.80312,21.174367],[101.652018,22.318199],[102.170436,22.464753],[102.754896,21.675137],[103.203861,20.766562],[104.435,20.758733],[104.822574,19.886642],[104.183388,19.624668],[103.896532,19.265181],[105.094598,18.666975],[105.925762,17.485315],[106.556008,16.604284],[107.312706,15.908538],[107.564525,15.202173],[107.382727,14.202441],[106.496373,14.570584],[106.043946,13.881091],[105.218777,14.273212]]]},"id":"LAO"}, -{"type":"Feature","properties":{"name":"Lebanon"},"geometry":{"type":"Polygon","coordinates":[[[35.821101,33.277426],[35.552797,33.264275],[35.460709,33.08904],[35.126053,33.0909],[35.482207,33.90545],[35.979592,34.610058],[35.998403,34.644914],[36.448194,34.593935],[36.61175,34.201789],[36.06646,33.824912],[35.821101,33.277426]]]},"id":"LBN"}, -{"type":"Feature","properties":{"name":"Liberia"},"geometry":{"type":"Polygon","coordinates":[[[-7.712159,4.364566],[-7.974107,4.355755],[-9.004794,4.832419],[-9.91342,5.593561],[-10.765384,6.140711],[-11.438779,6.785917],[-11.199802,7.105846],[-11.146704,7.396706],[-10.695595,7.939464],[-10.230094,8.406206],[-10.016567,8.428504],[-9.755342,8.541055],[-9.33728,7.928534],[-9.403348,7.526905],[-9.208786,7.313921],[-8.926065,7.309037],[-8.722124,7.711674],[-8.439298,7.686043],[-8.485446,7.395208],[-8.385452,6.911801],[-8.60288,6.467564],[-8.311348,6.193033],[-7.993693,6.12619],[-7.570153,5.707352],[-7.539715,5.313345],[-7.635368,5.188159],[-7.712159,4.364566]]]},"id":"LBR"}, -{"type":"Feature","properties":{"name":"Libya"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,22.86295],[14.143871,22.491289],[13.581425,23.040506],[11.999506,23.471668],[11.560669,24.097909],[10.771364,24.562532],[10.303847,24.379313],[9.948261,24.936954],[9.910693,25.365455],[9.319411,26.094325],[9.716286,26.512206],[9.629056,27.140953],[9.756128,27.688259],[9.683885,28.144174],[9.859998,28.95999],[9.805634,29.424638],[9.48214,30.307556],[9.970017,30.539325],[10.056575,30.961831],[9.950225,31.37607],[10.636901,31.761421],[10.94479,32.081815],[11.432253,32.368903],[11.488787,33.136996],[12.66331,32.79278],[13.08326,32.87882],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[16.61162,31.18218],[18.02109,30.76357],[19.08641,30.26639],[19.57404,30.52582],[20.05335,30.98576],[19.82033,31.75179],[20.13397,32.2382],[20.85452,32.7068],[21.54298,32.8432],[22.89576,32.63858],[23.2368,32.19149],[23.60913,32.18726],[23.9275,32.01667],[24.92114,31.89936],[25.16482,31.56915],[24.80287,31.08929],[24.95762,30.6616],[24.70007,30.04419],[25,29.238655],[25,25.6825],[25,22],[25,20.00304],[23.85,20],[23.83766,19.58047],[19.84926,21.49509],[15.86085,23.40972],[14.8513,22.86295]]]},"id":"LBY"}, -{"type":"Feature","properties":{"name":"Sri Lanka"},"geometry":{"type":"Polygon","coordinates":[[[81.787959,7.523055],[81.637322,6.481775],[81.21802,6.197141],[80.348357,5.96837],[79.872469,6.763463],[79.695167,8.200843],[80.147801,9.824078],[80.838818,9.268427],[81.304319,8.564206],[81.787959,7.523055]]]},"id":"LKA"}, -{"type":"Feature","properties":{"name":"Lesotho"},"geometry":{"type":"Polygon","coordinates":[[[28.978263,-28.955597],[29.325166,-29.257387],[29.018415,-29.743766],[28.8484,-30.070051],[28.291069,-30.226217],[28.107205,-30.545732],[27.749397,-30.645106],[26.999262,-29.875954],[27.532511,-29.242711],[28.074338,-28.851469],[28.5417,-28.647502],[28.978263,-28.955597]]]},"id":"LSO"}, -{"type":"Feature","properties":{"name":"Lithuania"},"geometry":{"type":"Polygon","coordinates":[[[22.731099,54.327537],[22.651052,54.582741],[22.757764,54.856574],[22.315724,55.015299],[21.268449,55.190482],[21.0558,56.031076],[22.201157,56.337802],[23.878264,56.273671],[24.860684,56.372528],[25.000934,56.164531],[25.533047,56.100297],[26.494331,55.615107],[26.588279,55.167176],[25.768433,54.846963],[25.536354,54.282423],[24.450684,53.905702],[23.484128,53.912498],[23.243987,54.220567],[22.731099,54.327537]]]},"id":"LTU"}, -{"type":"Feature","properties":{"name":"Luxembourg"},"geometry":{"type":"Polygon","coordinates":[[[6.043073,50.128052],[6.242751,49.902226],[6.18632,49.463803],[5.897759,49.442667],[5.674052,49.529484],[5.782417,50.090328],[6.043073,50.128052]]]},"id":"LUX"}, -{"type":"Feature","properties":{"name":"Latvia"},"geometry":{"type":"Polygon","coordinates":[[[21.0558,56.031076],[21.090424,56.783873],[21.581866,57.411871],[22.524341,57.753374],[23.318453,57.006236],[24.12073,57.025693],[24.312863,57.793424],[25.164594,57.970157],[25.60281,57.847529],[26.463532,57.476389],[27.288185,57.474528],[27.770016,57.244258],[27.855282,56.759326],[28.176709,56.16913],[27.10246,55.783314],[26.494331,55.615107],[25.533047,56.100297],[25.000934,56.164531],[24.860684,56.372528],[23.878264,56.273671],[22.201157,56.337802],[21.0558,56.031076]]]},"id":"LVA"}, -{"type":"Feature","properties":{"name":"Morocco"},"geometry":{"type":"Polygon","coordinates":[[[-5.193863,35.755182],[-4.591006,35.330712],[-3.640057,35.399855],[-2.604306,35.179093],[-2.169914,35.168396],[-1.792986,34.527919],[-1.733455,33.919713],[-1.388049,32.864015],[-1.124551,32.651522],[-1.307899,32.262889],[-2.616605,32.094346],[-3.06898,31.724498],[-3.647498,31.637294],[-3.690441,30.896952],[-4.859646,30.501188],[-5.242129,30.000443],[-6.060632,29.7317],[-7.059228,29.579228],[-8.674116,28.841289],[-8.66559,27.656426],[-8.817809,27.656426],[-8.817828,27.656426],[-8.794884,27.120696],[-9.413037,27.088476],[-9.735343,26.860945],[-10.189424,26.860945],[-10.551263,26.990808],[-11.392555,26.883424],[-11.71822,26.104092],[-12.030759,26.030866],[-12.500963,24.770116],[-13.89111,23.691009],[-14.221168,22.310163],[-14.630833,21.86094],[-14.750955,21.5006],[-17.002962,21.420734],[-17.020428,21.42231],[-16.973248,21.885745],[-16.589137,22.158234],[-16.261922,22.67934],[-16.326414,23.017768],[-15.982611,23.723358],[-15.426004,24.359134],[-15.089332,24.520261],[-14.824645,25.103533],[-14.800926,25.636265],[-14.43994,26.254418],[-13.773805,26.618892],[-13.139942,27.640148],[-13.121613,27.654148],[-12.618837,28.038186],[-11.688919,28.148644],[-10.900957,28.832142],[-10.399592,29.098586],[-9.564811,29.933574],[-9.814718,31.177736],[-9.434793,32.038096],[-9.300693,32.564679],[-8.657476,33.240245],[-7.654178,33.697065],[-6.912544,34.110476],[-6.244342,35.145865],[-5.929994,35.759988],[-5.193863,35.755182]]]},"id":"MAR"}, -{"type":"Feature","properties":{"name":"Moldova"},"geometry":{"type":"Polygon","coordinates":[[[26.619337,48.220726],[26.857824,48.368211],[27.522537,48.467119],[28.259547,48.155562],[28.670891,48.118149],[29.122698,47.849095],[29.050868,47.510227],[29.415135,47.346645],[29.559674,46.928583],[29.908852,46.674361],[29.83821,46.525326],[30.024659,46.423937],[29.759972,46.349988],[29.170654,46.379262],[29.072107,46.517678],[28.862972,46.437889],[28.933717,46.25883],[28.659987,45.939987],[28.485269,45.596907],[28.233554,45.488283],[28.054443,45.944586],[28.160018,46.371563],[28.12803,46.810476],[27.551166,47.405117],[27.233873,47.826771],[26.924176,48.123264],[26.619337,48.220726]]]},"id":"MDA"}, -{"type":"Feature","properties":{"name":"Madagascar"},"geometry":{"type":"Polygon","coordinates":[[[49.543519,-12.469833],[49.808981,-12.895285],[50.056511,-13.555761],[50.217431,-14.758789],[50.476537,-15.226512],[50.377111,-15.706069],[50.200275,-16.000263],[49.860606,-15.414253],[49.672607,-15.710204],[49.863344,-16.451037],[49.774564,-16.875042],[49.498612,-17.106036],[49.435619,-17.953064],[49.041792,-19.118781],[48.548541,-20.496888],[47.930749,-22.391501],[47.547723,-23.781959],[47.095761,-24.94163],[46.282478,-25.178463],[45.409508,-25.601434],[44.833574,-25.346101],[44.03972,-24.988345],[43.763768,-24.460677],[43.697778,-23.574116],[43.345654,-22.776904],[43.254187,-22.057413],[43.433298,-21.336475],[43.893683,-21.163307],[43.89637,-20.830459],[44.374325,-20.072366],[44.464397,-19.435454],[44.232422,-18.961995],[44.042976,-18.331387],[43.963084,-17.409945],[44.312469,-16.850496],[44.446517,-16.216219],[44.944937,-16.179374],[45.502732,-15.974373],[45.872994,-15.793454],[46.312243,-15.780018],[46.882183,-15.210182],[47.70513,-14.594303],[48.005215,-14.091233],[47.869047,-13.663869],[48.293828,-13.784068],[48.84506,-13.089175],[48.863509,-12.487868],[49.194651,-12.040557],[49.543519,-12.469833]]]},"id":"MDG"}, -{"type":"Feature","properties":{"name":"Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-97.140008,25.869997],[-97.528072,24.992144],[-97.702946,24.272343],[-97.776042,22.93258],[-97.872367,22.444212],[-97.699044,21.898689],[-97.38896,21.411019],[-97.189333,20.635433],[-96.525576,19.890931],[-96.292127,19.320371],[-95.900885,18.828024],[-94.839063,18.562717],[-94.42573,18.144371],[-93.548651,18.423837],[-92.786114,18.524839],[-92.037348,18.704569],[-91.407903,18.876083],[-90.77187,19.28412],[-90.53359,19.867418],[-90.451476,20.707522],[-90.278618,20.999855],[-89.601321,21.261726],[-88.543866,21.493675],[-87.658417,21.458846],[-87.05189,21.543543],[-86.811982,21.331515],[-86.845908,20.849865],[-87.383291,20.255405],[-87.621054,19.646553],[-87.43675,19.472403],[-87.58656,19.04013],[-87.837191,18.259816],[-88.090664,18.516648],[-88.300031,18.499982],[-88.490123,18.486831],[-88.848344,17.883198],[-89.029857,18.001511],[-89.150909,17.955468],[-89.14308,17.808319],[-90.067934,17.819326],[-91.00152,17.817595],[-91.002269,17.254658],[-91.453921,17.252177],[-91.08167,16.918477],[-90.711822,16.687483],[-90.600847,16.470778],[-90.438867,16.41011],[-90.464473,16.069562],[-91.74796,16.066565],[-92.229249,15.251447],[-92.087216,15.064585],[-92.20323,14.830103],[-92.22775,14.538829],[-93.359464,15.61543],[-93.875169,15.940164],[-94.691656,16.200975],[-95.250227,16.128318],[-96.053382,15.752088],[-96.557434,15.653515],[-97.263592,15.917065],[-98.01303,16.107312],[-98.947676,16.566043],[-99.697397,16.706164],[-100.829499,17.171071],[-101.666089,17.649026],[-101.918528,17.91609],[-102.478132,17.975751],[-103.50099,18.292295],[-103.917527,18.748572],[-104.99201,19.316134],[-105.493038,19.946767],[-105.731396,20.434102],[-105.397773,20.531719],[-105.500661,20.816895],[-105.270752,21.076285],[-105.265817,21.422104],[-105.603161,21.871146],[-105.693414,22.26908],[-106.028716,22.773752],[-106.90998,23.767774],[-107.915449,24.548915],[-108.401905,25.172314],[-109.260199,25.580609],[-109.444089,25.824884],[-109.291644,26.442934],[-109.801458,26.676176],[-110.391732,27.162115],[-110.641019,27.859876],[-111.178919,27.941241],[-111.759607,28.467953],[-112.228235,28.954409],[-112.271824,29.266844],[-112.809594,30.021114],[-113.163811,30.786881],[-113.148669,31.170966],[-113.871881,31.567608],[-114.205737,31.524045],[-114.776451,31.799532],[-114.9367,31.393485],[-114.771232,30.913617],[-114.673899,30.162681],[-114.330974,29.750432],[-113.588875,29.061611],[-113.424053,28.826174],[-113.271969,28.754783],[-113.140039,28.411289],[-112.962298,28.42519],[-112.761587,27.780217],[-112.457911,27.525814],[-112.244952,27.171727],[-111.616489,26.662817],[-111.284675,25.73259],[-110.987819,25.294606],[-110.710007,24.826004],[-110.655049,24.298595],[-110.172856,24.265548],[-109.771847,23.811183],[-109.409104,23.364672],[-109.433392,23.185588],[-109.854219,22.818272],[-110.031392,22.823078],[-110.295071,23.430973],[-110.949501,24.000964],[-111.670568,24.484423],[-112.182036,24.738413],[-112.148989,25.470125],[-112.300711,26.012004],[-112.777297,26.32196],[-113.464671,26.768186],[-113.59673,26.63946],[-113.848937,26.900064],[-114.465747,27.14209],[-115.055142,27.722727],[-114.982253,27.7982],[-114.570366,27.741485],[-114.199329,28.115003],[-114.162018,28.566112],[-114.931842,29.279479],[-115.518654,29.556362],[-115.887365,30.180794],[-116.25835,30.836464],[-116.721526,31.635744],[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.754854],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.140008,25.869997]]]},"id":"MEX"}, -{"type":"Feature","properties":{"name":"Macedonia"},"geometry":{"type":"Polygon","coordinates":[[[20.59023,41.85541],[20.71731,41.84711],[20.76216,42.05186],[21.3527,42.2068],[21.576636,42.245224],[21.91708,42.30364],[22.380526,42.32026],[22.881374,41.999297],[22.952377,41.337994],[22.76177,41.3048],[22.597308,41.130487],[22.055378,41.149866],[21.674161,40.931275],[21.02004,40.842727],[20.60518,41.08622],[20.46315,41.51509],[20.59023,41.85541]]]},"id":"MKD"}, -{"type":"Feature","properties":{"name":"Mali"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-11.834208,14.799097],[-11.666078,15.388208],[-11.349095,15.411256],[-10.650791,15.132746],[-10.086846,15.330486],[-9.700255,15.264107],[-9.550238,15.486497],[-5.537744,15.50169],[-5.315277,16.201854],[-5.488523,16.325102],[-5.971129,20.640833],[-6.453787,24.956591],[-4.923337,24.974574],[-1.550055,22.792666],[1.823228,20.610809],[2.060991,20.142233],[2.683588,19.85623],[3.146661,19.693579],[3.158133,19.057364],[4.267419,19.155265],[4.27021,16.852227],[3.723422,16.184284],[3.638259,15.56812],[2.749993,15.409525],[1.385528,15.323561],[1.015783,14.968182],[0.374892,14.928908],[-0.266257,14.924309],[-0.515854,15.116158],[-1.066363,14.973815],[-2.001035,14.559008],[-2.191825,14.246418],[-2.967694,13.79815],[-3.103707,13.541267],[-3.522803,13.337662],[-4.006391,13.472485],[-4.280405,13.228444],[-4.427166,12.542646],[-5.220942,11.713859],[-5.197843,11.375146],[-5.470565,10.95127],[-5.404342,10.370737],[-5.816926,10.222555],[-6.050452,10.096361],[-6.205223,10.524061],[-6.493965,10.411303],[-6.666461,10.430811],[-6.850507,10.138994],[-7.622759,10.147236],[-7.89959,10.297382],[-8.029944,10.206535],[-8.335377,10.494812],[-8.282357,10.792597],[-8.407311,10.909257],[-8.620321,10.810891],[-8.581305,11.136246],[-8.376305,11.393646],[-8.786099,11.812561],[-8.905265,12.088358],[-9.127474,12.30806],[-9.327616,12.334286],[-9.567912,12.194243],[-9.890993,12.060479],[-10.165214,11.844084],[-10.593224,11.923975],[-10.87083,12.177887],[-11.036556,12.211245],[-11.297574,12.077971],[-11.456169,12.076834],[-11.513943,12.442988],[-11.467899,12.754519],[-11.553398,13.141214],[-11.927716,13.422075],[-12.124887,13.994727],[-12.17075,14.616834]]]},"id":"MLI"}, -{"type":"Feature","properties":{"name":"Myanmar"},"geometry":{"type":"Polygon","coordinates":[[[99.543309,20.186598],[98.959676,19.752981],[98.253724,19.708203],[97.797783,18.62708],[97.375896,18.445438],[97.859123,17.567946],[98.493761,16.837836],[98.903348,16.177824],[98.537376,15.308497],[98.192074,15.123703],[98.430819,14.622028],[99.097755,13.827503],[99.212012,13.269294],[99.196354,12.804748],[99.587286,11.892763],[99.038121,10.960546],[98.553551,9.93296],[98.457174,10.675266],[98.764546,11.441292],[98.428339,12.032987],[98.509574,13.122378],[98.103604,13.64046],[97.777732,14.837286],[97.597072,16.100568],[97.16454,16.928734],[96.505769,16.427241],[95.369352,15.71439],[94.808405,15.803454],[94.188804,16.037936],[94.533486,17.27724],[94.324817,18.213514],[93.540988,19.366493],[93.663255,19.726962],[93.078278,19.855145],[92.368554,20.670883],[92.303234,21.475485],[92.652257,21.324048],[92.672721,22.041239],[93.166128,22.27846],[93.060294,22.703111],[93.286327,23.043658],[93.325188,24.078556],[94.106742,23.850741],[94.552658,24.675238],[94.603249,25.162495],[95.155153,26.001307],[95.124768,26.573572],[96.419366,27.264589],[97.133999,27.083774],[97.051989,27.699059],[97.402561,27.882536],[97.327114,28.261583],[97.911988,28.335945],[98.246231,27.747221],[98.68269,27.508812],[98.712094,26.743536],[98.671838,25.918703],[97.724609,25.083637],[97.60472,23.897405],[98.660262,24.063286],[98.898749,23.142722],[99.531992,22.949039],[99.240899,22.118314],[99.983489,21.742937],[100.416538,21.558839],[101.150033,21.849984],[101.180005,21.436573],[100.329101,20.786122],[100.115988,20.41785],[99.543309,20.186598]]]},"id":"MMR"}, -{"type":"Feature","properties":{"name":"Montenegro"},"geometry":{"type":"Polygon","coordinates":[[[19.801613,42.500093],[19.738051,42.688247],[19.30449,42.19574],[19.37177,41.87755],[19.16246,41.95502],[18.88214,42.28151],[18.45,42.48],[18.56,42.65],[18.70648,43.20011],[19.03165,43.43253],[19.21852,43.52384],[19.48389,43.35229],[19.63,43.21378],[19.95857,43.10604],[20.3398,42.89852],[20.25758,42.81275],[20.0707,42.58863],[19.801613,42.500093]]]},"id":"MNE"}, -{"type":"Feature","properties":{"name":"Mongolia"},"geometry":{"type":"Polygon","coordinates":[[[87.751264,49.297198],[88.805567,49.470521],[90.713667,50.331812],[92.234712,50.802171],[93.104219,50.49529],[94.147566,50.480537],[94.815949,50.013433],[95.814028,49.977467],[97.259728,49.726061],[98.231762,50.422401],[97.82574,51.010995],[98.861491,52.047366],[99.981732,51.634006],[100.88948,51.516856],[102.065223,51.259921],[102.255909,50.510561],[103.676545,50.089966],[104.621552,50.275329],[105.886591,50.406019],[106.888804,50.274296],[107.868176,49.793705],[108.475167,49.282548],[109.402449,49.292961],[110.662011,49.130128],[111.581231,49.377968],[112.89774,49.543565],[114.362456,50.248303],[114.96211,50.140247],[115.485695,49.805177],[116.678801,49.888531],[116.191802,49.134598],[115.485282,48.135383],[115.742837,47.726545],[116.308953,47.85341],[117.295507,47.697709],[118.064143,48.06673],[118.866574,47.74706],[119.772824,47.048059],[119.66327,46.69268],[118.874326,46.805412],[117.421701,46.672733],[116.717868,46.388202],[115.985096,45.727235],[114.460332,45.339817],[113.463907,44.808893],[112.436062,45.011646],[111.873306,45.102079],[111.348377,44.457442],[111.667737,44.073176],[111.829588,43.743118],[111.129682,43.406834],[110.412103,42.871234],[109.243596,42.519446],[107.744773,42.481516],[106.129316,42.134328],[104.964994,41.59741],[104.522282,41.908347],[103.312278,41.907468],[101.83304,42.514873],[100.845866,42.663804],[99.515817,42.524691],[97.451757,42.74889],[96.349396,42.725635],[95.762455,43.319449],[95.306875,44.241331],[94.688929,44.352332],[93.480734,44.975472],[92.133891,45.115076],[90.94554,45.286073],[90.585768,45.719716],[90.970809,46.888146],[90.280826,47.693549],[88.854298,48.069082],[88.013832,48.599463],[87.751264,49.297198]]]},"id":"MNG"}, -{"type":"Feature","properties":{"name":"Mozambique"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[35.312398,-11.439146],[36.514082,-11.720938],[36.775151,-11.594537],[37.471284,-11.568751],[37.827645,-11.268769],[38.427557,-11.285202],[39.52103,-10.896854],[40.316589,-10.317096],[40.478387,-10.765441],[40.437253,-11.761711],[40.560811,-12.639177],[40.59962,-14.201975],[40.775475,-14.691764],[40.477251,-15.406294],[40.089264,-16.100774],[39.452559,-16.720891],[38.538351,-17.101023],[37.411133,-17.586368],[36.281279,-18.659688],[35.896497,-18.84226],[35.1984,-19.552811],[34.786383,-19.784012],[34.701893,-20.497043],[35.176127,-21.254361],[35.373428,-21.840837],[35.385848,-22.14],[35.562546,-22.09],[35.533935,-23.070788],[35.371774,-23.535359],[35.60747,-23.706563],[35.458746,-24.12261],[35.040735,-24.478351],[34.215824,-24.816314],[33.01321,-25.357573],[32.574632,-25.727318],[32.660363,-26.148584],[32.915955,-26.215867],[32.83012,-26.742192],[32.071665,-26.73382],[31.985779,-26.29178],[31.837778,-25.843332],[31.752408,-25.484284],[31.930589,-24.369417],[31.670398,-23.658969],[31.191409,-22.25151],[32.244988,-21.116489],[32.508693,-20.395292],[32.659743,-20.30429],[32.772708,-19.715592],[32.611994,-19.419383],[32.654886,-18.67209],[32.849861,-17.979057],[32.847639,-16.713398],[32.328239,-16.392074],[31.852041,-16.319417],[31.636498,-16.07199],[31.173064,-15.860944],[30.338955,-15.880839],[30.274256,-15.507787],[30.179481,-14.796099],[33.214025,-13.97186],[33.7897,-14.451831],[34.064825,-14.35995],[34.459633,-14.61301],[34.517666,-15.013709],[34.307291,-15.478641],[34.381292,-16.18356],[35.03381,-16.8013],[35.339063,-16.10744],[35.771905,-15.896859],[35.686845,-14.611046],[35.267956,-13.887834],[34.907151,-13.565425],[34.559989,-13.579998],[34.280006,-12.280025],[34.559989,-11.52002]]]},"id":"MOZ"}, -{"type":"Feature","properties":{"name":"Mauritania"},"geometry":{"type":"Polygon","coordinates":[[[-12.17075,14.616834],[-12.830658,15.303692],[-13.435738,16.039383],[-14.099521,16.304302],[-14.577348,16.598264],[-15.135737,16.587282],[-15.623666,16.369337],[-16.12069,16.455663],[-16.463098,16.135036],[-16.549708,16.673892],[-16.270552,17.166963],[-16.146347,18.108482],[-16.256883,19.096716],[-16.377651,19.593817],[-16.277838,20.092521],[-16.536324,20.567866],[-17.063423,20.999752],[-16.845194,21.333323],[-12.929102,21.327071],[-13.118754,22.77122],[-12.874222,23.284832],[-11.937224,23.374594],[-11.969419,25.933353],[-8.687294,25.881056],[-8.6844,27.395744],[-4.923337,24.974574],[-6.453787,24.956591],[-5.971129,20.640833],[-5.488523,16.325102],[-5.315277,16.201854],[-5.537744,15.50169],[-9.550238,15.486497],[-9.700255,15.264107],[-10.086846,15.330486],[-10.650791,15.132746],[-11.349095,15.411256],[-11.666078,15.388208],[-11.834208,14.799097],[-12.17075,14.616834]]]},"id":"MRT"}, -{"type":"Feature","properties":{"name":"Malawi"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-11.52002],[34.280006,-12.280025],[34.559989,-13.579998],[34.907151,-13.565425],[35.267956,-13.887834],[35.686845,-14.611046],[35.771905,-15.896859],[35.339063,-16.10744],[35.03381,-16.8013],[34.381292,-16.18356],[34.307291,-15.478641],[34.517666,-15.013709],[34.459633,-14.61301],[34.064825,-14.35995],[33.7897,-14.451831],[33.214025,-13.97186],[32.688165,-13.712858],[32.991764,-12.783871],[33.306422,-12.435778],[33.114289,-11.607198],[33.31531,-10.79655],[33.485688,-10.525559],[33.231388,-9.676722],[32.759375,-9.230599],[33.739729,-9.417151],[33.940838,-9.693674],[34.280006,-10.16],[34.559989,-11.52002]]]},"id":"MWI"}, -{"type":"Feature","properties":{"name":"Malaysia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.075516,6.204867],[101.154219,5.691384],[101.814282,5.810808],[102.141187,6.221636],[102.371147,6.128205],[102.961705,5.524495],[103.381215,4.855001],[103.438575,4.181606],[103.332122,3.726698],[103.429429,3.382869],[103.502448,2.791019],[103.854674,2.515454],[104.247932,1.631141],[104.228811,1.293048],[103.519707,1.226334],[102.573615,1.967115],[101.390638,2.760814],[101.27354,3.270292],[100.695435,3.93914],[100.557408,4.76728],[100.196706,5.312493],[100.30626,6.040562],[100.085757,6.464489],[100.259596,6.642825],[101.075516,6.204867]]],[[[118.618321,4.478202],[117.882035,4.137551],[117.015214,4.306094],[115.865517,4.306559],[115.519078,3.169238],[115.134037,2.821482],[114.621355,1.430688],[113.80585,1.217549],[112.859809,1.49779],[112.380252,1.410121],[111.797548,0.904441],[111.159138,0.976478],[110.514061,0.773131],[109.830227,1.338136],[109.66326,2.006467],[110.396135,1.663775],[111.168853,1.850637],[111.370081,2.697303],[111.796928,2.885897],[112.995615,3.102395],[113.712935,3.893509],[114.204017,4.525874],[114.659596,4.007637],[114.869557,4.348314],[115.347461,4.316636],[115.4057,4.955228],[115.45071,5.44773],[116.220741,6.143191],[116.725103,6.924771],[117.129626,6.928053],[117.643393,6.422166],[117.689075,5.98749],[118.347691,5.708696],[119.181904,5.407836],[119.110694,5.016128],[118.439727,4.966519],[118.618321,4.478202]]]]},"id":"MYS"}, -{"type":"Feature","properties":{"name":"Namibia"},"geometry":{"type":"Polygon","coordinates":[[[16.344977,-28.576705],[15.601818,-27.821247],[15.210472,-27.090956],[14.989711,-26.117372],[14.743214,-25.39292],[14.408144,-23.853014],[14.385717,-22.656653],[14.257714,-22.111208],[13.868642,-21.699037],[13.352498,-20.872834],[12.826845,-19.673166],[12.608564,-19.045349],[11.794919,-18.069129],[11.734199,-17.301889],[12.215461,-17.111668],[12.814081,-16.941343],[13.462362,-16.971212],[14.058501,-17.423381],[14.209707,-17.353101],[18.263309,-17.309951],[18.956187,-17.789095],[21.377176,-17.930636],[23.215048,-17.523116],[24.033862,-17.295843],[24.682349,-17.353411],[25.07695,-17.578823],[25.084443,-17.661816],[24.520705,-17.887125],[24.217365,-17.889347],[23.579006,-18.281261],[23.196858,-17.869038],[21.65504,-18.219146],[20.910641,-18.252219],[20.881134,-21.814327],[19.895458,-21.849157],[19.895768,-24.76779],[19.894734,-28.461105],[19.002127,-28.972443],[18.464899,-29.045462],[17.836152,-28.856378],[17.387497,-28.783514],[17.218929,-28.355943],[16.824017,-28.082162],[16.344977,-28.576705]]]},"id":"NAM"}, -{"type":"Feature","properties":{"name":"New Caledonia"},"geometry":{"type":"Polygon","coordinates":[[[165.77999,-21.080005],[166.599991,-21.700019],[167.120011,-22.159991],[166.740035,-22.399976],[166.189732,-22.129708],[165.474375,-21.679607],[164.829815,-21.14982],[164.167995,-20.444747],[164.029606,-20.105646],[164.459967,-20.120012],[165.020036,-20.459991],[165.460009,-20.800022],[165.77999,-21.080005]]]},"id":"NCL"}, -{"type":"Feature","properties":{"name":"Niger"},"geometry":{"type":"Polygon","coordinates":[[[2.154474,11.94015],[2.177108,12.625018],[1.024103,12.851826],[0.993046,13.33575],[0.429928,13.988733],[0.295646,14.444235],[0.374892,14.928908],[1.015783,14.968182],[1.385528,15.323561],[2.749993,15.409525],[3.638259,15.56812],[3.723422,16.184284],[4.27021,16.852227],[4.267419,19.155265],[5.677566,19.601207],[8.572893,21.565661],[11.999506,23.471668],[13.581425,23.040506],[14.143871,22.491289],[14.8513,22.86295],[15.096888,21.308519],[15.471077,21.048457],[15.487148,20.730415],[15.903247,20.387619],[15.685741,19.95718],[15.300441,17.92795],[15.247731,16.627306],[13.972202,15.684366],[13.540394,14.367134],[13.956699,13.996691],[13.954477,13.353449],[14.595781,13.330427],[14.495787,12.859396],[14.213531,12.802035],[14.181336,12.483657],[13.995353,12.461565],[13.318702,13.556356],[13.083987,13.596147],[12.302071,13.037189],[11.527803,13.32898],[10.989593,13.387323],[10.701032,13.246918],[10.114814,13.277252],[9.524928,12.851102],[9.014933,12.826659],[7.804671,13.343527],[7.330747,13.098038],[6.820442,13.115091],[6.445426,13.492768],[5.443058,13.865924],[4.368344,13.747482],[4.107946,13.531216],[3.967283,12.956109],[3.680634,12.552903],[3.61118,11.660167],[2.848643,12.235636],[2.490164,12.233052],[2.154474,11.94015]]]},"id":"NER"}, -{"type":"Feature","properties":{"name":"Nigeria"},"geometry":{"type":"Polygon","coordinates":[[[8.500288,4.771983],[7.462108,4.412108],[7.082596,4.464689],[6.698072,4.240594],[5.898173,4.262453],[5.362805,4.887971],[5.033574,5.611802],[4.325607,6.270651],[3.57418,6.2583],[2.691702,6.258817],[2.749063,7.870734],[2.723793,8.506845],[2.912308,9.137608],[3.220352,9.444153],[3.705438,10.06321],[3.60007,10.332186],[3.797112,10.734746],[3.572216,11.327939],[3.61118,11.660167],[3.680634,12.552903],[3.967283,12.956109],[4.107946,13.531216],[4.368344,13.747482],[5.443058,13.865924],[6.445426,13.492768],[6.820442,13.115091],[7.330747,13.098038],[7.804671,13.343527],[9.014933,12.826659],[9.524928,12.851102],[10.114814,13.277252],[10.701032,13.246918],[10.989593,13.387323],[11.527803,13.32898],[12.302071,13.037189],[13.083987,13.596147],[13.318702,13.556356],[13.995353,12.461565],[14.181336,12.483657],[14.577178,12.085361],[14.468192,11.904752],[14.415379,11.572369],[13.57295,10.798566],[13.308676,10.160362],[13.1676,9.640626],[12.955468,9.417772],[12.753672,8.717763],[12.218872,8.305824],[12.063946,7.799808],[11.839309,7.397042],[11.745774,6.981383],[11.058788,6.644427],[10.497375,7.055358],[10.118277,7.03877],[9.522706,6.453482],[9.233163,6.444491],[8.757533,5.479666],[8.500288,4.771983]]]},"id":"NGA"}, -{"type":"Feature","properties":{"name":"Nicaragua"},"geometry":{"type":"Polygon","coordinates":[[[-85.71254,11.088445],[-86.058488,11.403439],[-86.52585,11.806877],[-86.745992,12.143962],[-87.167516,12.458258],[-87.668493,12.90991],[-87.557467,13.064552],[-87.392386,12.914018],[-87.316654,12.984686],[-87.005769,13.025794],[-86.880557,13.254204],[-86.733822,13.263093],[-86.755087,13.754845],[-86.520708,13.778487],[-86.312142,13.771356],[-86.096264,14.038187],[-85.801295,13.836055],[-85.698665,13.960078],[-85.514413,14.079012],[-85.165365,14.35437],[-85.148751,14.560197],[-85.052787,14.551541],[-84.924501,14.790493],[-84.820037,14.819587],[-84.649582,14.666805],[-84.449336,14.621614],[-84.228342,14.748764],[-83.975721,14.749436],[-83.628585,14.880074],[-83.489989,15.016267],[-83.147219,14.995829],[-83.233234,14.899866],[-83.284162,14.676624],[-83.182126,14.310703],[-83.4125,13.970078],[-83.519832,13.567699],[-83.552207,13.127054],[-83.498515,12.869292],[-83.473323,12.419087],[-83.626104,12.32085],[-83.719613,11.893124],[-83.650858,11.629032],[-83.85547,11.373311],[-83.808936,11.103044],[-83.655612,10.938764],[-83.895054,10.726839],[-84.190179,10.79345],[-84.355931,10.999226],[-84.673069,11.082657],[-84.903003,10.952303],[-85.561852,11.217119],[-85.71254,11.088445]]]},"id":"NIC"}, -{"type":"Feature","properties":{"name":"Netherlands"},"geometry":{"type":"Polygon","coordinates":[[[6.074183,53.510403],[6.90514,53.482162],[7.092053,53.144043],[6.84287,52.22844],[6.589397,51.852029],[5.988658,51.851616],[6.156658,50.803721],[5.606976,51.037298],[4.973991,51.475024],[4.047071,51.267259],[3.314971,51.345755],[3.830289,51.620545],[4.705997,53.091798],[6.074183,53.510403]]]},"id":"NLD"}, -{"type":"Feature","properties":{"name":"Norway"},"geometry":{"type":"MultiPolygon","coordinates":[[[[28.165547,71.185474],[31.293418,70.453788],[30.005435,70.186259],[31.101079,69.55808],[29.399581,69.156916],[28.59193,69.064777],[29.015573,69.766491],[27.732292,70.164193],[26.179622,69.825299],[25.689213,69.092114],[24.735679,68.649557],[23.66205,68.891247],[22.356238,68.841741],[21.244936,69.370443],[20.645593,69.106247],[20.025269,69.065139],[19.87856,68.407194],[17.993868,68.567391],[17.729182,68.010552],[16.768879,68.013937],[16.108712,67.302456],[15.108411,66.193867],[13.55569,64.787028],[13.919905,64.445421],[13.571916,64.049114],[12.579935,64.066219],[11.930569,63.128318],[11.992064,61.800362],[12.631147,61.293572],[12.300366,60.117933],[11.468272,59.432393],[11.027369,58.856149],[10.356557,59.469807],[8.382,58.313288],[7.048748,58.078884],[5.665835,58.588155],[5.308234,59.663232],[4.992078,61.970998],[5.9129,62.614473],[8.553411,63.454008],[10.527709,64.486038],[12.358347,65.879726],[14.761146,67.810642],[16.435927,68.563205],[19.184028,69.817444],[21.378416,70.255169],[23.023742,70.202072],[24.546543,71.030497],[26.37005,70.986262],[28.165547,71.185474]]],[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[21.41611,77.93504],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[25.447625,80.40734],[27.407506,80.056406],[25.924651,79.517834],[23.024466,79.400012],[20.075188,79.566823],[19.897266,79.842362],[18.462264,79.85988],[17.368015,80.318896],[20.455992,80.598156],[21.907945,80.357679],[22.919253,80.657144],[25.447625,80.40734]]]]},"id":"NOR"}, -{"type":"Feature","properties":{"name":"Nepal"},"geometry":{"type":"Polygon","coordinates":[[[88.120441,27.876542],[88.043133,27.445819],[88.174804,26.810405],[88.060238,26.414615],[87.227472,26.397898],[86.024393,26.630985],[85.251779,26.726198],[84.675018,27.234901],[83.304249,27.364506],[81.999987,27.925479],[81.057203,28.416095],[80.088425,28.79447],[80.476721,29.729865],[81.111256,30.183481],[81.525804,30.422717],[82.327513,30.115268],[83.337115,29.463732],[83.898993,29.320226],[84.23458,28.839894],[85.011638,28.642774],[85.82332,28.203576],[86.954517,27.974262],[88.120441,27.876542]]]},"id":"NPL"}, -{"type":"Feature","properties":{"name":"New Zealand"},"geometry":{"type":"MultiPolygon","coordinates":[[[[173.020375,-40.919052],[173.247234,-41.331999],[173.958405,-40.926701],[174.247587,-41.349155],[174.248517,-41.770008],[173.876447,-42.233184],[173.22274,-42.970038],[172.711246,-43.372288],[173.080113,-43.853344],[172.308584,-43.865694],[171.452925,-44.242519],[171.185138,-44.897104],[170.616697,-45.908929],[169.831422,-46.355775],[169.332331,-46.641235],[168.411354,-46.619945],[167.763745,-46.290197],[166.676886,-46.219917],[166.509144,-45.852705],[167.046424,-45.110941],[168.303763,-44.123973],[168.949409,-43.935819],[169.667815,-43.555326],[170.52492,-43.031688],[171.12509,-42.512754],[171.569714,-41.767424],[171.948709,-41.514417],[172.097227,-40.956104],[172.79858,-40.493962],[173.020375,-40.919052]]],[[[174.612009,-36.156397],[175.336616,-37.209098],[175.357596,-36.526194],[175.808887,-36.798942],[175.95849,-37.555382],[176.763195,-37.881253],[177.438813,-37.961248],[178.010354,-37.579825],[178.517094,-37.695373],[178.274731,-38.582813],[177.97046,-39.166343],[177.206993,-39.145776],[176.939981,-39.449736],[177.032946,-39.879943],[176.885824,-40.065978],[176.508017,-40.604808],[176.01244,-41.289624],[175.239567,-41.688308],[175.067898,-41.425895],[174.650973,-41.281821],[175.22763,-40.459236],[174.900157,-39.908933],[173.824047,-39.508854],[173.852262,-39.146602],[174.574802,-38.797683],[174.743474,-38.027808],[174.697017,-37.381129],[174.292028,-36.711092],[174.319004,-36.534824],[173.840997,-36.121981],[173.054171,-35.237125],[172.636005,-34.529107],[173.007042,-34.450662],[173.551298,-35.006183],[174.32939,-35.265496],[174.612009,-36.156397]]]]},"id":"NZL"}, -{"type":"Feature","properties":{"name":"Oman"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.861141,21.114035],[58.487986,20.428986],[58.034318,20.481437],[57.826373,20.243002],[57.665762,19.736005],[57.7887,19.06757],[57.694391,18.94471],[57.234264,18.947991],[56.609651,18.574267],[56.512189,18.087113],[56.283521,17.876067],[55.661492,17.884128],[55.269939,17.632309],[55.2749,17.228354],[54.791002,16.950697],[54.239253,17.044981],[53.570508,16.707663],[53.108573,16.651051],[52.782184,17.349742],[52.00001,19.000003],[54.999982,19.999994],[55.666659,22.000001],[55.208341,22.70833],[55.234489,23.110993],[55.525841,23.524869],[55.528632,23.933604],[55.981214,24.130543],[55.804119,24.269604],[55.886233,24.920831],[56.396847,24.924732],[56.84514,24.241673],[57.403453,23.878594],[58.136948,23.747931],[58.729211,23.565668],[59.180502,22.992395],[59.450098,22.660271],[59.80806,22.533612],[59.806148,22.310525],[59.442191,21.714541],[59.282408,21.433886],[58.861141,21.114035]]],[[[56.391421,25.895991],[56.261042,25.714606],[56.070821,26.055464],[56.362017,26.395934],[56.485679,26.309118],[56.391421,25.895991]]]]},"id":"OMN"}, -{"type":"Feature","properties":{"name":"Pakistan"},"geometry":{"type":"Polygon","coordinates":[[[75.158028,37.133031],[75.896897,36.666806],[76.192848,35.898403],[77.837451,35.49401],[76.871722,34.653544],[75.757061,34.504923],[74.240203,34.748887],[73.749948,34.317699],[74.104294,33.441473],[74.451559,32.7649],[75.258642,32.271105],[74.405929,31.692639],[74.42138,30.979815],[73.450638,29.976413],[72.823752,28.961592],[71.777666,27.91318],[70.616496,27.989196],[69.514393,26.940966],[70.168927,26.491872],[70.282873,25.722229],[70.844699,25.215102],[71.04324,24.356524],[68.842599,24.359134],[68.176645,23.691965],[67.443667,23.944844],[67.145442,24.663611],[66.372828,25.425141],[64.530408,25.237039],[62.905701,25.218409],[61.497363,25.078237],[61.874187,26.239975],[63.316632,26.756532],[63.233898,27.217047],[62.755426,27.378923],[62.72783,28.259645],[61.771868,28.699334],[61.369309,29.303276],[60.874248,29.829239],[62.549857,29.318572],[63.550261,29.468331],[64.148002,29.340819],[64.350419,29.560031],[65.046862,29.472181],[66.346473,29.887943],[66.381458,30.738899],[66.938891,31.304911],[67.683394,31.303154],[67.792689,31.58293],[68.556932,31.71331],[68.926677,31.620189],[69.317764,31.901412],[69.262522,32.501944],[69.687147,33.105499],[70.323594,33.358533],[69.930543,34.02012],[70.881803,33.988856],[71.156773,34.348911],[71.115019,34.733126],[71.613076,35.153203],[71.498768,35.650563],[71.262348,36.074388],[71.846292,36.509942],[72.920025,36.720007],[74.067552,36.836176],[74.575893,37.020841],[75.158028,37.133031]]]},"id":"PAK"}, -{"type":"Feature","properties":{"name":"Panama"},"geometry":{"type":"Polygon","coordinates":[[[-77.881571,7.223771],[-78.214936,7.512255],[-78.429161,8.052041],[-78.182096,8.319182],[-78.435465,8.387705],[-78.622121,8.718124],[-79.120307,8.996092],[-79.557877,8.932375],[-79.760578,8.584515],[-80.164481,8.333316],[-80.382659,8.298409],[-80.480689,8.090308],[-80.00369,7.547524],[-80.276671,7.419754],[-80.421158,7.271572],[-80.886401,7.220541],[-81.059543,7.817921],[-81.189716,7.647906],[-81.519515,7.70661],[-81.721311,8.108963],[-82.131441,8.175393],[-82.390934,8.292362],[-82.820081,8.290864],[-82.850958,8.073823],[-82.965783,8.225028],[-82.913176,8.423517],[-82.829771,8.626295],[-82.868657,8.807266],[-82.719183,8.925709],[-82.927155,9.07433],[-82.932891,9.476812],[-82.546196,9.566135],[-82.187123,9.207449],[-82.207586,8.995575],[-81.808567,8.950617],[-81.714154,9.031955],[-81.439287,8.786234],[-80.947302,8.858504],[-80.521901,9.111072],[-79.9146,9.312765],[-79.573303,9.61161],[-79.021192,9.552931],[-79.05845,9.454565],[-78.500888,9.420459],[-78.055928,9.24773],[-77.729514,8.946844],[-77.353361,8.670505],[-77.474723,8.524286],[-77.242566,7.935278],[-77.431108,7.638061],[-77.753414,7.70984],[-77.881571,7.223771]]]},"id":"PAN"}, -{"type":"Feature","properties":{"name":"Peru"},"geometry":{"type":"Polygon","coordinates":[[[-69.590424,-17.580012],[-69.858444,-18.092694],[-70.372572,-18.347975],[-71.37525,-17.773799],[-71.462041,-17.363488],[-73.44453,-16.359363],[-75.237883,-15.265683],[-76.009205,-14.649286],[-76.423469,-13.823187],[-76.259242,-13.535039],[-77.106192,-12.222716],[-78.092153,-10.377712],[-79.036953,-8.386568],[-79.44592,-7.930833],[-79.760578,-7.194341],[-80.537482,-6.541668],[-81.249996,-6.136834],[-80.926347,-5.690557],[-81.410943,-4.736765],[-81.09967,-4.036394],[-80.302561,-3.404856],[-80.184015,-3.821162],[-80.469295,-4.059287],[-80.442242,-4.425724],[-80.028908,-4.346091],[-79.624979,-4.454198],[-79.205289,-4.959129],[-78.639897,-4.547784],[-78.450684,-3.873097],[-77.837905,-3.003021],[-76.635394,-2.608678],[-75.544996,-1.56161],[-75.233723,-0.911417],[-75.373223,-0.152032],[-75.106625,-0.057205],[-74.441601,-0.53082],[-74.122395,-1.002833],[-73.659504,-1.260491],[-73.070392,-2.308954],[-72.325787,-2.434218],[-71.774761,-2.16979],[-71.413646,-2.342802],[-70.813476,-2.256865],[-70.047709,-2.725156],[-70.692682,-3.742872],[-70.394044,-3.766591],[-69.893635,-4.298187],[-70.794769,-4.251265],[-70.928843,-4.401591],[-71.748406,-4.593983],[-72.891928,-5.274561],[-72.964507,-5.741251],[-73.219711,-6.089189],[-73.120027,-6.629931],[-73.724487,-6.918595],[-73.723401,-7.340999],[-73.987235,-7.52383],[-73.571059,-8.424447],[-73.015383,-9.032833],[-73.226713,-9.462213],[-72.563033,-9.520194],[-72.184891,-10.053598],[-71.302412,-10.079436],[-70.481894,-9.490118],[-70.548686,-11.009147],[-70.093752,-11.123972],[-69.529678,-10.951734],[-68.66508,-12.5613],[-68.88008,-12.899729],[-68.929224,-13.602684],[-68.948887,-14.453639],[-69.339535,-14.953195],[-69.160347,-15.323974],[-69.389764,-15.660129],[-68.959635,-16.500698],[-69.590424,-17.580012]]]},"id":"PER"}, -{"type":"Feature","properties":{"name":"Philippines"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.376814,8.414706],[126.478513,7.750354],[126.537424,7.189381],[126.196773,6.274294],[125.831421,7.293715],[125.363852,6.786485],[125.683161,6.049657],[125.396512,5.581003],[124.219788,6.161355],[123.93872,6.885136],[124.243662,7.36061],[123.610212,7.833527],[123.296071,7.418876],[122.825506,7.457375],[122.085499,6.899424],[121.919928,7.192119],[122.312359,8.034962],[122.942398,8.316237],[123.487688,8.69301],[123.841154,8.240324],[124.60147,8.514158],[124.764612,8.960409],[125.471391,8.986997],[125.412118,9.760335],[126.222714,9.286074],[126.306637,8.782487],[126.376814,8.414706]]],[[[123.982438,10.278779],[123.623183,9.950091],[123.309921,9.318269],[122.995883,9.022189],[122.380055,9.713361],[122.586089,9.981045],[122.837081,10.261157],[122.947411,10.881868],[123.49885,10.940624],[123.337774,10.267384],[124.077936,11.232726],[123.982438,10.278779]]],[[[118.504581,9.316383],[117.174275,8.3675],[117.664477,9.066889],[118.386914,9.6845],[118.987342,10.376292],[119.511496,11.369668],[119.689677,10.554291],[119.029458,10.003653],[118.504581,9.316383]]],[[[121.883548,11.891755],[122.483821,11.582187],[123.120217,11.58366],[123.100838,11.165934],[122.637714,10.741308],[122.00261,10.441017],[121.967367,10.905691],[122.03837,11.415841],[121.883548,11.891755]]],[[[125.502552,12.162695],[125.783465,11.046122],[125.011884,11.311455],[125.032761,10.975816],[125.277449,10.358722],[124.801819,10.134679],[124.760168,10.837995],[124.459101,10.88993],[124.302522,11.495371],[124.891013,11.415583],[124.87799,11.79419],[124.266762,12.557761],[125.227116,12.535721],[125.502552,12.162695]]],[[[121.527394,13.06959],[121.26219,12.20556],[120.833896,12.704496],[120.323436,13.466413],[121.180128,13.429697],[121.527394,13.06959]]],[[[121.321308,18.504065],[121.937601,18.218552],[122.246006,18.47895],[122.336957,18.224883],[122.174279,17.810283],[122.515654,17.093505],[122.252311,16.262444],[121.662786,15.931018],[121.50507,15.124814],[121.728829,14.328376],[122.258925,14.218202],[122.701276,14.336541],[123.950295,13.782131],[123.855107,13.237771],[124.181289,12.997527],[124.077419,12.536677],[123.298035,13.027526],[122.928652,13.55292],[122.671355,13.185836],[122.03465,13.784482],[121.126385,13.636687],[120.628637,13.857656],[120.679384,14.271016],[120.991819,14.525393],[120.693336,14.756671],[120.564145,14.396279],[120.070429,14.970869],[119.920929,15.406347],[119.883773,16.363704],[120.286488,16.034629],[120.390047,17.599081],[120.715867,18.505227],[121.321308,18.504065]]]]},"id":"PHL"}, -{"type":"Feature","properties":{"name":"Papua New Guinea"},"geometry":{"type":"MultiPolygon","coordinates":[[[[155.880026,-6.819997],[155.599991,-6.919991],[155.166994,-6.535931],[154.729192,-5.900828],[154.514114,-5.139118],[154.652504,-5.042431],[154.759991,-5.339984],[155.062918,-5.566792],[155.547746,-6.200655],[156.019965,-6.540014],[155.880026,-6.819997]]],[[[151.982796,-5.478063],[151.459107,-5.56028],[151.30139,-5.840728],[150.754447,-6.083763],[150.241197,-6.317754],[149.709963,-6.316513],[148.890065,-6.02604],[148.318937,-5.747142],[148.401826,-5.437756],[149.298412,-5.583742],[149.845562,-5.505503],[149.99625,-5.026101],[150.139756,-5.001348],[150.236908,-5.53222],[150.807467,-5.455842],[151.089672,-5.113693],[151.647881,-4.757074],[151.537862,-4.167807],[152.136792,-4.14879],[152.338743,-4.312966],[152.318693,-4.867661],[151.982796,-5.478063]]],[[[147.191874,-7.388024],[148.084636,-8.044108],[148.734105,-9.104664],[149.306835,-9.071436],[149.266631,-9.514406],[150.038728,-9.684318],[149.738798,-9.872937],[150.801628,-10.293687],[150.690575,-10.582713],[150.028393,-10.652476],[149.78231,-10.393267],[148.923138,-10.280923],[147.913018,-10.130441],[147.135443,-9.492444],[146.567881,-8.942555],[146.048481,-8.067414],[144.744168,-7.630128],[143.897088,-7.91533],[143.286376,-8.245491],[143.413913,-8.983069],[142.628431,-9.326821],[142.068259,-9.159596],[141.033852,-9.117893],[141.017057,-5.859022],[141.00021,-2.600151],[142.735247,-3.289153],[144.583971,-3.861418],[145.27318,-4.373738],[145.829786,-4.876498],[145.981922,-5.465609],[147.648073,-6.083659],[147.891108,-6.614015],[146.970905,-6.721657],[147.191874,-7.388024]]],[[[153.140038,-4.499983],[152.827292,-4.766427],[152.638673,-4.176127],[152.406026,-3.789743],[151.953237,-3.462062],[151.384279,-3.035422],[150.66205,-2.741486],[150.939965,-2.500002],[151.479984,-2.779985],[151.820015,-2.999972],[152.239989,-3.240009],[152.640017,-3.659983],[153.019994,-3.980015],[153.140038,-4.499983]]]]},"id":"PNG"}, -{"type":"Feature","properties":{"name":"Poland"},"geometry":{"type":"Polygon","coordinates":[[[15.016996,51.106674],[14.607098,51.745188],[14.685026,52.089947],[14.4376,52.62485],[14.074521,52.981263],[14.353315,53.248171],[14.119686,53.757029],[14.8029,54.050706],[16.363477,54.513159],[17.622832,54.851536],[18.620859,54.682606],[18.696255,54.438719],[19.66064,54.426084],[20.892245,54.312525],[22.731099,54.327537],[23.243987,54.220567],[23.484128,53.912498],[23.527536,53.470122],[23.804935,53.089731],[23.799199,52.691099],[23.199494,52.486977],[23.508002,52.023647],[23.527071,51.578454],[24.029986,50.705407],[23.922757,50.424881],[23.426508,50.308506],[22.51845,49.476774],[22.776419,49.027395],[22.558138,49.085738],[21.607808,49.470107],[20.887955,49.328772],[20.415839,49.431453],[19.825023,49.217125],[19.320713,49.571574],[18.909575,49.435846],[18.853144,49.49623],[18.392914,49.988629],[17.649445,50.049038],[17.554567,50.362146],[16.868769,50.473974],[16.719476,50.215747],[16.176253,50.422607],[16.238627,50.697733],[15.490972,50.78473],[15.016996,51.106674]]]},"id":"POL"}, -{"type":"Feature","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.282434,18.514762],[-65.771303,18.426679],[-65.591004,18.228035],[-65.847164,17.975906],[-66.599934,17.981823],[-67.184162,17.946553],[-67.242428,18.37446],[-67.100679,18.520601],[-66.282434,18.514762]]]},"id":"PRI"}, -{"type":"Feature","properties":{"name":"North Korea"},"geometry":{"type":"Polygon","coordinates":[[[130.640016,42.395009],[130.780007,42.220007],[130.400031,42.280004],[129.965949,41.941368],[129.667362,41.601104],[129.705189,40.882828],[129.188115,40.661808],[129.0104,40.485436],[128.633368,40.189847],[127.967414,40.025413],[127.533436,39.75685],[127.50212,39.323931],[127.385434,39.213472],[127.783343,39.050898],[128.349716,38.612243],[128.205746,38.370397],[127.780035,38.304536],[127.073309,38.256115],[126.68372,37.804773],[126.237339,37.840378],[126.174759,37.749686],[125.689104,37.94001],[125.568439,37.752089],[125.27533,37.669071],[125.240087,37.857224],[124.981033,37.948821],[124.712161,38.108346],[124.985994,38.548474],[125.221949,38.665857],[125.132859,38.848559],[125.38659,39.387958],[125.321116,39.551385],[124.737482,39.660344],[124.265625,39.928493],[125.079942,40.569824],[126.182045,41.107336],[126.869083,41.816569],[127.343783,41.503152],[128.208433,41.466772],[128.052215,41.994285],[129.596669,42.424982],[129.994267,42.985387],[130.640016,42.395009]]]},"id":"PRK"}, -{"type":"Feature","properties":{"name":"Portugal"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.671946,42.134689],[-8.263857,42.280469],[-8.013175,41.790886],[-7.422513,41.792075],[-7.251309,41.918346],[-6.668606,41.883387],[-6.389088,41.381815],[-6.851127,41.111083],[-6.86402,40.330872],[-7.026413,40.184524],[-7.066592,39.711892],[-7.498632,39.629571],[-7.098037,39.030073],[-7.374092,38.373059],[-7.029281,38.075764],[-7.166508,37.803894],[-7.537105,37.428904],[-7.453726,37.097788],[-7.855613,36.838269],[-8.382816,36.97888],[-8.898857,36.868809],[-8.746101,37.651346],[-8.839998,38.266243],[-9.287464,38.358486],[-9.526571,38.737429],[-9.446989,39.392066],[-9.048305,39.755093],[-8.977353,40.159306],[-8.768684,40.760639],[-8.790853,41.184334],[-8.990789,41.543459],[-9.034818,41.880571]]]},"id":"PRT"}, -{"type":"Feature","properties":{"name":"Paraguay"},"geometry":{"type":"Polygon","coordinates":[[[-62.685057,-22.249029],[-62.291179,-21.051635],[-62.265961,-20.513735],[-61.786326,-19.633737],[-60.043565,-19.342747],[-59.115042,-19.356906],[-58.183471,-19.868399],[-58.166392,-20.176701],[-57.870674,-20.732688],[-57.937156,-22.090176],[-56.88151,-22.282154],[-56.473317,-22.0863],[-55.797958,-22.35693],[-55.610683,-22.655619],[-55.517639,-23.571998],[-55.400747,-23.956935],[-55.027902,-24.001274],[-54.652834,-23.839578],[-54.29296,-24.021014],[-54.293476,-24.5708],[-54.428946,-25.162185],[-54.625291,-25.739255],[-54.788795,-26.621786],[-55.695846,-27.387837],[-56.486702,-27.548499],[-57.60976,-27.395899],[-58.618174,-27.123719],[-57.63366,-25.603657],[-57.777217,-25.16234],[-58.807128,-24.771459],[-60.028966,-24.032796],[-60.846565,-23.880713],[-62.685057,-22.249029]]]},"id":"PRY"}, -{"type":"Feature","properties":{"name":"Qatar"},"geometry":{"type":"Polygon","coordinates":[[[50.810108,24.754743],[50.743911,25.482424],[51.013352,26.006992],[51.286462,26.114582],[51.589079,25.801113],[51.6067,25.21567],[51.389608,24.627386],[51.112415,24.556331],[50.810108,24.754743]]]},"id":"QAT"}, -{"type":"Feature","properties":{"name":"Romania"},"geometry":{"type":"Polygon","coordinates":[[[22.710531,47.882194],[23.142236,48.096341],[23.760958,47.985598],[24.402056,47.981878],[24.866317,47.737526],[25.207743,47.891056],[25.945941,47.987149],[26.19745,48.220881],[26.619337,48.220726],[26.924176,48.123264],[27.233873,47.826771],[27.551166,47.405117],[28.12803,46.810476],[28.160018,46.371563],[28.054443,45.944586],[28.233554,45.488283],[28.679779,45.304031],[29.149725,45.464925],[29.603289,45.293308],[29.626543,45.035391],[29.141612,44.82021],[28.837858,44.913874],[28.558081,43.707462],[27.970107,43.812468],[27.2424,44.175986],[26.065159,43.943494],[25.569272,43.688445],[24.100679,43.741051],[23.332302,43.897011],[22.944832,43.823785],[22.65715,44.234923],[22.474008,44.409228],[22.705726,44.578003],[22.459022,44.702517],[22.145088,44.478422],[21.562023,44.768947],[21.483526,45.18117],[20.874313,45.416375],[20.762175,45.734573],[20.220192,46.127469],[21.021952,46.316088],[21.626515,46.994238],[22.099768,47.672439],[22.710531,47.882194]]]},"id":"ROU"}, -{"type":"Feature","properties":{"name":"Russia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[143.648007,50.7476],[144.654148,48.976391],[143.173928,49.306551],[142.558668,47.861575],[143.533492,46.836728],[143.505277,46.137908],[142.747701,46.740765],[142.09203,45.966755],[141.906925,46.805929],[142.018443,47.780133],[141.904445,48.859189],[142.1358,49.615163],[142.179983,50.952342],[141.594076,51.935435],[141.682546,53.301966],[142.606934,53.762145],[142.209749,54.225476],[142.654786,54.365881],[142.914616,53.704578],[143.260848,52.74076],[143.235268,51.75666],[143.648007,50.7476]]],[[[22.731099,54.327537],[20.892245,54.312525],[19.66064,54.426084],[19.888481,54.86616],[21.268449,55.190482],[22.315724,55.015299],[22.757764,54.856574],[22.651052,54.582741],[22.731099,54.327537]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-172.95533,64.25269],[-173.89184,64.2826],[-174.65392,64.63125],[-175.98353,64.92288],[-176.20716,65.35667],[-177.22266,65.52024],[-178.35993,65.39052],[-178.90332,65.74044],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.979709],[-180,68.963636],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[180,70.832199],[178.903425,70.78114],[178.7253,71.0988],[180,71.515714],[180,70.832199]]],[[[-178.69378,70.89302],[-180,70.832199],[-180,71.515714],[-179.871875,71.55762],[-179.02433,71.55553],[-177.577945,71.26948],[-177.663575,71.13277],[-178.69378,70.89302]]],[[[143.60385,73.21244],[142.08763,73.20544],[140.038155,73.31692],[139.86312,73.36983],[140.81171,73.76506],[142.06207,73.85758],[143.48283,73.47525],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[148.22223,75.345845],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.535693,70.720464],[56.944979,70.632743],[53.677375,70.762658],[53.412017,71.206662],[51.601895,71.474759],[51.455754,72.014881],[52.478275,72.229442],[52.444169,72.774731],[54.427614,73.627548],[53.50829,73.749814],[55.902459,74.627486],[55.631933,75.081412],[57.868644,75.60939],[61.170044,76.251883],[64.498368,76.439055],[66.210977,76.809782],[68.15706,76.939697],[68.852211,76.544811],[68.180573,76.233642],[64.637326,75.737755],[61.583508,75.260885],[58.477082,74.309056],[56.986786,73.333044],[55.419336,72.371268],[55.622838,71.540595],[57.535693,70.720464]]],[[[106.97013,76.97419],[107.24,76.48],[108.1538,76.72335],[111.07726,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779],[112.77918,75.03186],[110.15125,74.47673],[109.4,74.18],[110.64,74.04],[112.11919,73.78774],[113.01954,73.97693],[113.52958,73.33505],[113.96881,73.59488],[115.56782,73.75285],[118.77633,73.58772],[119.02,73.12],[123.20066,72.97122],[123.25777,73.73503],[125.38,73.56],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[128.46,71.98],[129.71599,71.19304],[131.28858,70.78699],[132.2535,71.8363],[133.85766,71.38642],[135.56193,71.65525],[137.49755,71.34763],[138.23409,71.62803],[139.86983,71.48783],[139.14791,72.41619],[140.46817,72.84941],[149.5,72.2],[150.35118,71.60643],[152.9689,70.84222],[157.00688,71.03141],[158.99779,70.86672],[159.83031,70.45324],[159.70866,69.72198],[160.94053,69.43728],[162.27907,69.64204],[164.05248,69.66823],[165.94037,69.47199],[167.83567,69.58269],[169.57763,68.6938],[170.81688,69.01363],[170.0082,69.65276],[170.45345,70.09703],[173.64391,69.81743],[175.72403,69.87725],[178.6,69.4],[180,68.963636],[180,64.979709],[179.99281,64.97433],[178.7072,64.53493],[177.41128,64.60821],[178.313,64.07593],[178.90825,63.25197],[179.37034,62.98262],[179.48636,62.56894],[179.22825,62.3041],[177.3643,62.5219],[174.56929,61.76915],[173.68013,61.65261],[172.15,60.95],[170.6985,60.33618],[170.33085,59.88177],[168.90046,60.57355],[166.29498,59.78855],[165.84,60.16],[164.87674,59.7316],[163.53929,59.86871],[163.21711,59.21101],[162.01733,58.24328],[162.05297,57.83912],[163.19191,57.61503],[163.05794,56.15924],[162.12958,56.12219],[161.70146,55.28568],[162.11749,54.85514],[160.36877,54.34433],[160.02173,53.20257],[158.53094,52.95868],[158.23118,51.94269],[156.78979,51.01105],[156.42,51.7],[155.99182,53.15895],[155.43366,55.38103],[155.91442,56.76792],[156.75815,57.3647],[156.81035,57.83204],[158.36433,58.05575],[160.15064,59.31477],[161.87204,60.343],[163.66969,61.1409],[164.47355,62.55061],[163.25842,62.46627],[162.65791,61.6425],[160.12148,60.54423],[159.30232,61.77396],[156.72068,61.43442],[154.21806,59.75818],[155.04375,59.14495],[152.81185,58.88385],[151.26573,58.78089],[151.33815,59.50396],[149.78371,59.65573],[148.54481,59.16448],[145.48722,59.33637],[142.19782,59.03998],[138.95848,57.08805],[135.12619,54.72959],[136.70171,54.60355],[137.19342,53.97732],[138.1647,53.75501],[138.80463,54.25455],[139.90151,54.18968],[141.34531,53.08957],[141.37923,52.23877],[140.59742,51.23967],[140.51308,50.04553],[140.06193,48.44671],[138.55472,46.99965],[138.21971,46.30795],[136.86232,45.1435],[135.51535,43.989],[134.86939,43.39821],[133.53687,42.81147],[132.90627,42.79849],[132.27807,43.28456],[130.93587,42.55274],[130.78,42.22],[130.64,42.395],[130.633866,42.903015],[131.144688,42.92999],[131.288555,44.11152],[131.02519,44.96796],[131.883454,45.321162],[133.09712,45.14409],[133.769644,46.116927],[134.11235,47.21248],[134.50081,47.57845],[135.026311,48.47823],[133.373596,48.183442],[132.50669,47.78896],[130.98726,47.79013],[130.582293,48.729687],[129.397818,49.4406],[127.6574,49.76027],[127.287456,50.739797],[126.939157,51.353894],[126.564399,51.784255],[125.946349,52.792799],[125.068211,53.161045],[123.57147,53.4588],[122.245748,53.431726],[121.003085,53.251401],[120.177089,52.753886],[120.725789,52.516226],[120.7382,51.96411],[120.18208,51.64355],[119.27939,50.58292],[119.288461,50.142883],[117.879244,49.510983],[116.678801,49.888531],[115.485695,49.805177],[114.96211,50.140247],[114.362456,50.248303],[112.89774,49.543565],[111.581231,49.377968],[110.662011,49.130128],[109.402449,49.292961],[108.475167,49.282548],[107.868176,49.793705],[106.888804,50.274296],[105.886591,50.406019],[104.62158,50.27532],[103.676545,50.089966],[102.25589,50.51056],[102.06521,51.25991],[100.88948,51.516856],[99.981732,51.634006],[98.861491,52.047366],[97.82574,51.010995],[98.231762,50.422401],[97.25976,49.72605],[95.81402,49.97746],[94.815949,50.013433],[94.147566,50.480537],[93.10421,50.49529],[92.234712,50.802171],[90.713667,50.331812],[88.805567,49.470521],[87.751264,49.297198],[87.35997,49.214981],[86.829357,49.826675],[85.54127,49.692859],[85.11556,50.117303],[84.416377,50.3114],[83.935115,50.889246],[83.383004,51.069183],[81.945986,50.812196],[80.568447,51.388336],[80.03556,50.864751],[77.800916,53.404415],[76.525179,54.177003],[76.8911,54.490524],[74.38482,53.54685],[73.425679,53.48981],[73.508516,54.035617],[72.22415,54.376655],[71.180131,54.133285],[70.865267,55.169734],[69.068167,55.38525],[68.1691,54.970392],[65.66687,54.60125],[65.178534,54.354228],[61.4366,54.00625],[60.978066,53.664993],[61.699986,52.979996],[60.739993,52.719986],[60.927269,52.447548],[59.967534,51.96042],[61.588003,51.272659],[61.337424,50.79907],[59.932807,50.842194],[59.642282,50.545442],[58.36332,51.06364],[56.77798,51.04355],[55.71694,50.62171],[54.532878,51.02624],[52.328724,51.718652],[50.766648,51.692762],[48.702382,50.605128],[48.577841,49.87476],[47.54948,50.454698],[46.751596,49.356006],[47.043672,49.152039],[46.466446,48.394152],[47.31524,47.71585],[48.05725,47.74377],[48.694734,47.075628],[48.59325,46.56104],[49.10116,46.39933],[48.64541,45.80629],[47.67591,45.64149],[46.68201,44.6092],[47.59094,43.66016],[47.49252,42.98658],[48.58437,41.80888],[47.987283,41.405819],[47.815666,41.151416],[47.373315,41.219732],[46.686071,41.827137],[46.404951,41.860675],[45.7764,42.09244],[45.470279,42.502781],[44.537623,42.711993],[43.93121,42.55496],[43.75599,42.74083],[42.3944,43.2203],[40.92219,43.38215],[40.076965,43.553104],[39.955009,43.434998],[38.68,44.28],[37.53912,44.65721],[36.67546,45.24469],[37.40317,45.40451],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475],[39.1212,47.26336],[38.223538,47.10219],[38.255112,47.5464],[38.77057,47.82562],[39.738278,47.898937],[39.89562,48.23241],[39.67465,48.78382],[40.080789,49.30743],[40.06904,49.60105],[38.594988,49.926462],[38.010631,49.915662],[37.39346,50.383953],[36.626168,50.225591],[35.356116,50.577197],[35.37791,50.77394],[35.022183,51.207572],[34.224816,51.255993],[34.141978,51.566413],[34.391731,51.768882],[33.7527,52.335075],[32.715761,52.238465],[32.412058,52.288695],[32.15944,52.06125],[31.78597,52.10168],[31.540018,52.742052],[31.305201,53.073996],[31.49764,53.16743],[32.304519,53.132726],[32.693643,53.351421],[32.405599,53.618045],[31.731273,53.794029],[31.791424,53.974639],[31.384472,54.157056],[30.757534,54.811771],[30.971836,55.081548],[30.873909,55.550976],[29.896294,55.789463],[29.371572,55.670091],[29.229513,55.918344],[28.176709,56.16913],[27.855282,56.759326],[27.770016,57.244258],[27.288185,57.474528],[27.716686,57.791899],[27.42015,58.72457],[28.131699,59.300825],[27.98112,59.47537],[29.1177,60.02805],[28.07,60.50352],[30.211107,61.780028],[31.139991,62.357693],[31.516092,62.867687],[30.035872,63.552814],[30.444685,64.204453],[29.54443,64.948672],[30.21765,65.80598],[29.054589,66.944286],[29.977426,67.698297],[28.445944,68.364613],[28.59193,69.064777],[29.39955,69.15692],[31.10108,69.55811],[32.13272,69.90595],[33.77547,69.30142],[36.51396,69.06342],[40.29234,67.9324],[41.05987,67.45713],[41.12595,66.79158],[40.01583,66.26618],[38.38295,65.99953],[33.91871,66.75961],[33.18444,66.63253],[34.81477,65.90015],[34.878574,65.436213],[34.94391,64.41437],[36.23129,64.10945],[37.01273,63.84983],[37.14197,64.33471],[36.539579,64.76446],[37.17604,65.14322],[39.59345,64.52079],[40.4356,64.76446],[39.7626,65.49682],[42.09309,66.47623],[43.01604,66.41858],[43.94975,66.06908],[44.53226,66.75634],[43.69839,67.35245],[44.18795,67.95051],[43.45282,68.57079],[46.25,68.25],[46.82134,67.68997],[45.55517,67.56652],[45.56202,67.01005],[46.34915,66.66767],[47.89416,66.88455],[48.13876,67.52238],[50.22766,67.99867],[53.71743,68.85738],[54.47171,68.80815],[53.48582,68.20131],[54.72628,68.09702],[55.44268,68.43866],[57.31702,68.46628],[58.802,68.88082],[59.94142,68.27844],[61.07784,68.94069],[60.03,69.52],[60.55,69.85],[63.504,69.54739],[64.888115,69.234835],[68.51216,68.09233],[69.18068,68.61563],[68.16444,69.14436],[68.13522,69.35649],[66.93008,69.45461],[67.25976,69.92873],[66.72492,70.70889],[66.69466,71.02897],[68.54006,71.9345],[69.19636,72.84336],[69.94,73.04],[72.58754,72.77629],[72.79603,72.22006],[71.84811,71.40898],[72.47011,71.09019],[72.79188,70.39114],[72.5647,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28,66.32],[72.42301,66.17267],[72.82077,66.53267],[73.92099,66.78946],[74.18651,67.28429],[75.052,67.76047],[74.46926,68.32899],[74.93584,68.98918],[73.84236,69.07146],[73.60187,69.62763],[74.3998,70.63175],[73.1011,71.44717],[74.89082,72.12119],[74.65926,72.83227],[75.15801,72.85497],[75.68351,72.30056],[75.28898,71.33556],[76.35911,71.15287],[75.90313,71.87401],[77.57665,72.26717],[79.65202,72.32011],[81.5,71.75],[80.61071,72.58285],[80.51109,73.6482],[82.25,73.85],[84.65526,73.80591],[86.8223,73.93688],[86.00956,74.45967],[87.16682,75.11643],[88.31571,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421,76.0472],[95.86,76.14],[96.67821,75.91548],[98.92254,76.44689],[100.75967,76.43028],[101.03532,76.86189],[101.99084,77.28754],[104.3516,77.69792],[106.06664,77.37389],[104.705,77.1274],[106.97013,76.97419]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.08635,79.34641],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.136187,80.54728],[49.793685,80.415428],[48.894411,80.339567],[48.754937,80.175468],[47.586119,80.010181],[46.502826,80.247247],[47.072455,80.559424],[44.846958,80.58981],[46.799139,80.771918],[48.318477,80.78401],[48.522806,80.514569],[49.09719,80.753986],[50.039768,80.918885],[51.522933,80.699726],[51.136187,80.54728]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]},"id":"RUS"}, -{"type":"Feature","properties":{"name":"Rwanda"},"geometry":{"type":"Polygon","coordinates":[[[30.419105,-1.134659],[30.816135,-1.698914],[30.758309,-2.28725],[30.469696,-2.413858],[29.938359,-2.348487],[29.632176,-2.917858],[29.024926,-2.839258],[29.117479,-2.292211],[29.254835,-2.21511],[29.291887,-1.620056],[29.579466,-1.341313],[29.821519,-1.443322],[30.419105,-1.134659]]]},"id":"RWA"}, -{"type":"Feature","properties":{"name":"Western Sahara"},"geometry":{"type":"Polygon","coordinates":[[[-8.794884,27.120696],[-8.817828,27.656426],[-8.66559,27.656426],[-8.665124,27.589479],[-8.6844,27.395744],[-8.687294,25.881056],[-11.969419,25.933353],[-11.937224,23.374594],[-12.874222,23.284832],[-13.118754,22.77122],[-12.929102,21.327071],[-16.845194,21.333323],[-17.063423,20.999752],[-17.020428,21.42231],[-17.002962,21.420734],[-14.750955,21.5006],[-14.630833,21.86094],[-14.221168,22.310163],[-13.89111,23.691009],[-12.500963,24.770116],[-12.030759,26.030866],[-11.71822,26.104092],[-11.392555,26.883424],[-10.551263,26.990808],[-10.189424,26.860945],[-9.735343,26.860945],[-9.413037,27.088476],[-8.794884,27.120696]]]},"id":"ESH"}, -{"type":"Feature","properties":{"name":"Saudi Arabia"},"geometry":{"type":"Polygon","coordinates":[[[42.779332,16.347891],[42.649573,16.774635],[42.347989,17.075806],[42.270888,17.474722],[41.754382,17.833046],[41.221391,18.6716],[40.939341,19.486485],[40.247652,20.174635],[39.801685,20.338862],[39.139399,21.291905],[39.023696,21.986875],[39.066329,22.579656],[38.492772,23.688451],[38.02386,24.078686],[37.483635,24.285495],[37.154818,24.858483],[37.209491,25.084542],[36.931627,25.602959],[36.639604,25.826228],[36.249137,26.570136],[35.640182,27.37652],[35.130187,28.063352],[34.632336,28.058546],[34.787779,28.607427],[34.83222,28.957483],[34.956037,29.356555],[36.068941,29.197495],[36.501214,29.505254],[36.740528,29.865283],[37.503582,30.003776],[37.66812,30.338665],[37.998849,30.5085],[37.002166,31.508413],[39.004886,32.010217],[39.195468,32.161009],[40.399994,31.889992],[41.889981,31.190009],[44.709499,29.178891],[46.568713,29.099025],[47.459822,29.002519],[47.708851,28.526063],[48.416094,28.552004],[48.807595,27.689628],[49.299554,27.461218],[49.470914,27.109999],[50.152422,26.689663],[50.212935,26.277027],[50.113303,25.943972],[50.239859,25.60805],[50.527387,25.327808],[50.660557,24.999896],[50.810108,24.754743],[51.112415,24.556331],[51.389608,24.627386],[51.579519,24.245497],[51.617708,24.014219],[52.000733,23.001154],[55.006803,22.496948],[55.208341,22.70833],[55.666659,22.000001],[54.999982,19.999994],[52.00001,19.000003],[49.116672,18.616668],[48.183344,18.166669],[47.466695,17.116682],[47.000005,16.949999],[46.749994,17.283338],[46.366659,17.233315],[45.399999,17.333335],[45.216651,17.433329],[44.062613,17.410359],[43.791519,17.319977],[43.380794,17.579987],[43.115798,17.08844],[43.218375,16.66689],[42.779332,16.347891]]]},"id":"SAU"}, -{"type":"Feature","properties":{"name":"Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.824963,9.484061],[33.842131,9.981915],[33.721959,10.325262],[33.206938,10.720112],[33.086766,11.441141],[33.206938,12.179338],[32.743419,12.248008],[32.67475,12.024832],[32.073892,11.97333],[32.314235,11.681484],[32.400072,11.080626],[31.850716,10.531271],[31.352862,9.810241],[30.837841,9.707237],[29.996639,10.290927],[29.618957,10.084919],[29.515953,9.793074],[29.000932,9.604232],[28.966597,9.398224],[27.97089,9.398224],[27.833551,9.604232],[27.112521,9.638567],[26.752006,9.466893],[26.477328,9.55273],[25.962307,10.136421],[25.790633,10.411099],[25.069604,10.27376],[24.794926,9.810241],[24.537415,8.917538],[24.194068,8.728696],[23.88698,8.61973],[23.805813,8.666319],[23.459013,8.954286],[23.394779,9.265068],[23.55725,9.681218],[23.554304,10.089255],[22.977544,10.714463],[22.864165,11.142395],[22.87622,11.38461],[22.50869,11.67936],[22.49762,12.26024],[22.28801,12.64605],[21.93681,12.58818],[22.03759,12.95546],[22.29658,13.37232],[22.18329,13.78648],[22.51202,14.09318],[22.30351,14.32682],[22.56795,14.94429],[23.02459,15.68072],[23.88689,15.61084],[23.83766,19.58047],[23.85,20],[25,20.00304],[25,22],[29.02,22],[32.9,22],[36.86623,22],[37.18872,21.01885],[36.96941,20.83744],[37.1147,19.80796],[37.48179,18.61409],[37.86276,18.36786],[38.41009,17.998307],[37.904,17.42754],[37.16747,17.26314],[36.85253,16.95655],[36.75389,16.29186],[36.32322,14.82249],[36.42951,14.42211],[36.27022,13.56333],[35.86363,12.57828],[35.26049,12.08286],[34.83163,11.31896],[34.73115,10.91017],[34.25745,10.63009],[33.96162,9.58358],[33.963393,9.464285]]]},"id":"SDN"}, -{"type":"Feature","properties":{"name":"South Sudan"},"geometry":{"type":"Polygon","coordinates":[[[33.963393,9.464285],[33.97498,8.68456],[33.8255,8.37916],[33.2948,8.35458],[32.95418,7.78497],[33.56829,7.71334],[34.0751,7.22595],[34.25032,6.82607],[34.70702,6.59422],[35.298007,5.506],[34.620196,4.847123],[34.005,4.249885],[33.39,3.79],[32.68642,3.79232],[31.88145,3.55827],[31.24556,3.7819],[30.83385,3.50917],[29.95349,4.1737],[29.715995,4.600805],[29.159078,4.389267],[28.696678,4.455077],[28.428994,4.287155],[27.979977,4.408413],[27.374226,5.233944],[27.213409,5.550953],[26.465909,5.946717],[26.213418,6.546603],[25.796648,6.979316],[25.124131,7.500085],[25.114932,7.825104],[24.567369,8.229188],[23.88698,8.61973],[24.194068,8.728696],[24.537415,8.917538],[24.794926,9.810241],[25.069604,10.27376],[25.790633,10.411099],[25.962307,10.136421],[26.477328,9.55273],[26.752006,9.466893],[27.112521,9.638567],[27.833551,9.604232],[27.97089,9.398224],[28.966597,9.398224],[29.000932,9.604232],[29.515953,9.793074],[29.618957,10.084919],[29.996639,10.290927],[30.837841,9.707237],[31.352862,9.810241],[31.850716,10.531271],[32.400072,11.080626],[32.314235,11.681484],[32.073892,11.97333],[32.67475,12.024832],[32.743419,12.248008],[33.206938,12.179338],[33.086766,11.441141],[33.206938,10.720112],[33.721959,10.325262],[33.842131,9.981915],[33.824963,9.484061],[33.963393,9.464285]]]},"id":"SSD"}, -{"type":"Feature","properties":{"name":"Senegal"},"geometry":{"type":"Polygon","coordinates":[[[-16.713729,13.594959],[-17.126107,14.373516],[-17.625043,14.729541],[-17.185173,14.919477],[-16.700706,15.621527],[-16.463098,16.135036],[-16.12069,16.455663],[-15.623666,16.369337],[-15.135737,16.587282],[-14.577348,16.598264],[-14.099521,16.304302],[-13.435738,16.039383],[-12.830658,15.303692],[-12.17075,14.616834],[-12.124887,13.994727],[-11.927716,13.422075],[-11.553398,13.141214],[-11.467899,12.754519],[-11.513943,12.442988],[-11.658301,12.386583],[-12.203565,12.465648],[-12.278599,12.35444],[-12.499051,12.33209],[-13.217818,12.575874],[-13.700476,12.586183],[-15.548477,12.62817],[-15.816574,12.515567],[-16.147717,12.547762],[-16.677452,12.384852],[-16.841525,13.151394],[-15.931296,13.130284],[-15.691001,13.270353],[-15.511813,13.27857],[-15.141163,13.509512],[-14.712197,13.298207],[-14.277702,13.280585],[-13.844963,13.505042],[-14.046992,13.794068],[-14.376714,13.62568],[-14.687031,13.630357],[-15.081735,13.876492],[-15.39877,13.860369],[-15.624596,13.623587],[-16.713729,13.594959]]]},"id":"SEN"}, -{"type":"Feature","properties":{"name":"Solomon Islands"},"geometry":{"type":"MultiPolygon","coordinates":[[[[162.119025,-10.482719],[162.398646,-10.826367],[161.700032,-10.820011],[161.319797,-10.204751],[161.917383,-10.446701],[162.119025,-10.482719]]],[[[160.852229,-9.872937],[160.462588,-9.89521],[159.849447,-9.794027],[159.640003,-9.63998],[159.702945,-9.24295],[160.362956,-9.400304],[160.688518,-9.610162],[160.852229,-9.872937]]],[[[161.679982,-9.599982],[161.529397,-9.784312],[160.788253,-8.917543],[160.579997,-8.320009],[160.920028,-8.320009],[161.280006,-9.120011],[161.679982,-9.599982]]],[[[159.875027,-8.33732],[159.917402,-8.53829],[159.133677,-8.114181],[158.586114,-7.754824],[158.21115,-7.421872],[158.359978,-7.320018],[158.820001,-7.560003],[159.640003,-8.020027],[159.875027,-8.33732]]],[[[157.538426,-7.34782],[157.33942,-7.404767],[156.90203,-7.176874],[156.491358,-6.765943],[156.542828,-6.599338],[157.14,-7.021638],[157.538426,-7.34782]]]]},"id":"SLB"}, -{"type":"Feature","properties":{"name":"Sierra Leone"},"geometry":{"type":"Polygon","coordinates":[[[-11.438779,6.785917],[-11.708195,6.860098],[-12.428099,7.262942],[-12.949049,7.798646],[-13.124025,8.163946],[-13.24655,8.903049],[-12.711958,9.342712],[-12.596719,9.620188],[-12.425929,9.835834],[-12.150338,9.858572],[-11.917277,10.046984],[-11.117481,10.045873],[-10.839152,9.688246],[-10.622395,9.26791],[-10.65477,8.977178],[-10.494315,8.715541],[-10.505477,8.348896],[-10.230094,8.406206],[-10.695595,7.939464],[-11.146704,7.396706],[-11.199802,7.105846],[-11.438779,6.785917]]]},"id":"SLE"}, -{"type":"Feature","properties":{"name":"El Salvador"},"geometry":{"type":"Polygon","coordinates":[[[-87.793111,13.38448],[-87.904112,13.149017],[-88.483302,13.163951],[-88.843228,13.259734],[-89.256743,13.458533],[-89.812394,13.520622],[-90.095555,13.735338],[-90.064678,13.88197],[-89.721934,14.134228],[-89.534219,14.244816],[-89.587343,14.362586],[-89.353326,14.424133],[-89.058512,14.340029],[-88.843073,14.140507],[-88.541231,13.980155],[-88.503998,13.845486],[-88.065343,13.964626],[-87.859515,13.893312],[-87.723503,13.78505],[-87.793111,13.38448]]]},"id":"SLV"}, -{"type":"Feature","properties":{"name":"Somaliland"},"geometry":{"type":"Polygon","coordinates":[[[48.93813,9.451749],[48.486736,8.837626],[47.78942,8.003],[46.948328,7.996877],[43.67875,9.18358],[43.296975,9.540477],[42.92812,10.02194],[42.55876,10.57258],[42.776852,10.926879],[43.145305,11.46204],[43.47066,11.27771],[43.666668,10.864169],[44.117804,10.445538],[44.614259,10.442205],[45.556941,10.698029],[46.645401,10.816549],[47.525658,11.127228],[48.021596,11.193064],[48.378784,11.375482],[48.948206,11.410622],[48.942005,11.394266],[48.938491,10.982327],[48.938233,9.9735],[48.93813,9.451749]]]},"id":"-99"}, -{"type":"Feature","properties":{"name":"Somalia"},"geometry":{"type":"Polygon","coordinates":[[[49.72862,11.5789],[50.25878,11.67957],[50.73202,12.0219],[51.1112,12.02464],[51.13387,11.74815],[51.04153,11.16651],[51.04531,10.6409],[50.83418,10.27972],[50.55239,9.19874],[50.07092,8.08173],[49.4527,6.80466],[48.59455,5.33911],[47.74079,4.2194],[46.56476,2.85529],[45.56399,2.04576],[44.06815,1.05283],[43.13597,0.2922],[42.04157,-0.91916],[41.81095,-1.44647],[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.855083,3.918912],[42.12861,4.23413],[42.76967,4.25259],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.486736,8.837626],[48.93813,9.451749],[48.938233,9.9735],[48.938491,10.982327],[48.942005,11.394266],[48.948205,11.410617],[49.26776,11.43033],[49.72862,11.5789]]]},"id":"SOM"}, -{"type":"Feature","properties":{"name":"Republic of Serbia"},"geometry":{"type":"Polygon","coordinates":[[[20.874313,45.416375],[21.483526,45.18117],[21.562023,44.768947],[22.145088,44.478422],[22.459022,44.702517],[22.705726,44.578003],[22.474008,44.409228],[22.65715,44.234923],[22.410446,44.008063],[22.500157,43.642814],[22.986019,43.211161],[22.604801,42.898519],[22.436595,42.580321],[22.545012,42.461362],[22.380526,42.32026],[21.91708,42.30364],[21.576636,42.245224],[21.54332,42.32025],[21.66292,42.43922],[21.77505,42.6827],[21.63302,42.67717],[21.43866,42.86255],[21.27421,42.90959],[21.143395,43.068685],[20.95651,43.13094],[20.81448,43.27205],[20.63508,43.21671],[20.49679,42.88469],[20.25758,42.81275],[20.3398,42.89852],[19.95857,43.10604],[19.63,43.21378],[19.48389,43.35229],[19.21852,43.52384],[19.454,43.5681],[19.59976,44.03847],[19.11761,44.42307],[19.36803,44.863],[19.00548,44.86023],[19.390476,45.236516],[19.072769,45.521511],[18.82982,45.90888],[19.596045,46.17173],[20.220192,46.127469],[20.762175,45.734573],[20.874313,45.416375]]]},"id":"SRB"}, -{"type":"Feature","properties":{"name":"Suriname"},"geometry":{"type":"Polygon","coordinates":[[[-57.147436,5.97315],[-55.949318,5.772878],[-55.84178,5.953125],[-55.03325,6.025291],[-53.958045,5.756548],[-54.478633,4.896756],[-54.399542,4.212611],[-54.006931,3.620038],[-54.181726,3.18978],[-54.269705,2.732392],[-54.524754,2.311849],[-55.097587,2.523748],[-55.569755,2.421506],[-55.973322,2.510364],[-56.073342,2.220795],[-55.9056,2.021996],[-55.995698,1.817667],[-56.539386,1.899523],[-57.150098,2.768927],[-57.281433,3.333492],[-57.601569,3.334655],[-58.044694,4.060864],[-57.86021,4.576801],[-57.914289,4.812626],[-57.307246,5.073567],[-57.147436,5.97315]]]},"id":"SUR"}, -{"type":"Feature","properties":{"name":"Slovakia"},"geometry":{"type":"Polygon","coordinates":[[[18.853144,49.49623],[18.909575,49.435846],[19.320713,49.571574],[19.825023,49.217125],[20.415839,49.431453],[20.887955,49.328772],[21.607808,49.470107],[22.558138,49.085738],[22.280842,48.825392],[22.085608,48.422264],[21.872236,48.319971],[20.801294,48.623854],[20.473562,48.56285],[20.239054,48.327567],[19.769471,48.202691],[19.661364,48.266615],[19.174365,48.111379],[18.777025,48.081768],[18.696513,47.880954],[17.857133,47.758429],[17.488473,47.867466],[16.979667,48.123497],[16.879983,48.470013],[16.960288,48.596982],[17.101985,48.816969],[17.545007,48.800019],[17.886485,48.903475],[17.913512,48.996493],[18.104973,49.043983],[18.170498,49.271515],[18.399994,49.315001],[18.554971,49.495015],[18.853144,49.49623]]]},"id":"SVK"}, -{"type":"Feature","properties":{"name":"Slovenia"},"geometry":{"type":"Polygon","coordinates":[[[13.806475,46.509306],[14.632472,46.431817],[15.137092,46.658703],[16.011664,46.683611],[16.202298,46.852386],[16.370505,46.841327],[16.564808,46.503751],[15.768733,46.238108],[15.67153,45.834154],[15.323954,45.731783],[15.327675,45.452316],[14.935244,45.471695],[14.595109,45.634941],[14.411968,45.466166],[13.71506,45.500324],[13.93763,45.591016],[13.69811,46.016778],[13.806475,46.509306]]]},"id":"SVN"}, -{"type":"Feature","properties":{"name":"Sweden"},"geometry":{"type":"Polygon","coordinates":[[[22.183173,65.723741],[21.213517,65.026005],[21.369631,64.413588],[19.778876,63.609554],[17.847779,62.7494],[17.119555,61.341166],[17.831346,60.636583],[18.787722,60.081914],[17.869225,58.953766],[16.829185,58.719827],[16.44771,57.041118],[15.879786,56.104302],[14.666681,56.200885],[14.100721,55.407781],[12.942911,55.361737],[12.625101,56.30708],[11.787942,57.441817],[11.027369,58.856149],[11.468272,59.432393],[12.300366,60.117933],[12.631147,61.293572],[11.992064,61.800362],[11.930569,63.128318],[12.579935,64.066219],[13.571916,64.049114],[13.919905,64.445421],[13.55569,64.787028],[15.108411,66.193867],[16.108712,67.302456],[16.768879,68.013937],[17.729182,68.010552],[17.993868,68.567391],[19.87856,68.407194],[20.025269,69.065139],[20.645593,69.106247],[21.978535,68.616846],[23.539473,67.936009],[23.56588,66.396051],[23.903379,66.006927],[22.183173,65.723741]]]},"id":"SWE"}, -{"type":"Feature","properties":{"name":"Swaziland"},"geometry":{"type":"Polygon","coordinates":[[[32.071665,-26.73382],[31.86806,-27.177927],[31.282773,-27.285879],[30.685962,-26.743845],[30.676609,-26.398078],[30.949667,-26.022649],[31.04408,-25.731452],[31.333158,-25.660191],[31.837778,-25.843332],[31.985779,-26.29178],[32.071665,-26.73382]]]},"id":"SWZ"}, -{"type":"Feature","properties":{"name":"Syria"},"geometry":{"type":"Polygon","coordinates":[[[38.792341,33.378686],[36.834062,32.312938],[35.719918,32.709192],[35.700798,32.716014],[35.836397,32.868123],[35.821101,33.277426],[36.06646,33.824912],[36.61175,34.201789],[36.448194,34.593935],[35.998403,34.644914],[35.905023,35.410009],[36.149763,35.821535],[36.41755,36.040617],[36.685389,36.259699],[36.739494,36.81752],[37.066761,36.623036],[38.167727,36.90121],[38.699891,36.712927],[39.52258,36.716054],[40.673259,37.091276],[41.212089,37.074352],[42.349591,37.229873],[41.837064,36.605854],[41.289707,36.358815],[41.383965,35.628317],[41.006159,34.419372],[38.792341,33.378686]]]},"id":"SYR"}, -{"type":"Feature","properties":{"name":"Chad"},"geometry":{"type":"Polygon","coordinates":[[[14.495787,12.859396],[14.595781,13.330427],[13.954477,13.353449],[13.956699,13.996691],[13.540394,14.367134],[13.97217,15.68437],[15.247731,16.627306],[15.300441,17.92795],[15.685741,19.95718],[15.903247,20.387619],[15.487148,20.730415],[15.47106,21.04845],[15.096888,21.308519],[14.8513,22.86295],[15.86085,23.40972],[19.84926,21.49509],[23.83766,19.58047],[23.88689,15.61084],[23.02459,15.68072],[22.56795,14.94429],[22.30351,14.32682],[22.51202,14.09318],[22.18329,13.78648],[22.29658,13.37232],[22.03759,12.95546],[21.93681,12.58818],[22.28801,12.64605],[22.49762,12.26024],[22.50869,11.67936],[22.87622,11.38461],[22.864165,11.142395],[22.231129,10.971889],[21.723822,10.567056],[21.000868,9.475985],[20.059685,9.012706],[19.094008,9.074847],[18.81201,8.982915],[18.911022,8.630895],[18.389555,8.281304],[17.96493,7.890914],[16.705988,7.508328],[16.456185,7.734774],[16.290562,7.754307],[16.106232,7.497088],[15.27946,7.421925],[15.436092,7.692812],[15.120866,8.38215],[14.979996,8.796104],[14.544467,8.965861],[13.954218,9.549495],[14.171466,10.021378],[14.627201,9.920919],[14.909354,9.992129],[15.467873,9.982337],[14.923565,10.891325],[14.960152,11.555574],[14.89336,12.21905],[14.495787,12.859396]]]},"id":"TCD"}, -{"type":"Feature","properties":{"name":"Togo"},"geometry":{"type":"Polygon","coordinates":[[[1.865241,6.142158],[1.060122,5.928837],[0.836931,6.279979],[0.570384,6.914359],[0.490957,7.411744],[0.712029,8.312465],[0.461192,8.677223],[0.365901,9.465004],[0.36758,10.191213],[-0.049785,10.706918],[0.023803,11.018682],[0.899563,10.997339],[0.772336,10.470808],[1.077795,10.175607],[1.425061,9.825395],[1.463043,9.334624],[1.664478,9.12859],[1.618951,6.832038],[1.865241,6.142158]]]},"id":"TGO"}, -{"type":"Feature","properties":{"name":"Thailand"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,12.186595],[101.687158,12.64574],[100.83181,12.627085],[100.978467,13.412722],[100.097797,13.406856],[100.018733,12.307001],[99.478921,10.846367],[99.153772,9.963061],[99.222399,9.239255],[99.873832,9.207862],[100.279647,8.295153],[100.459274,7.429573],[101.017328,6.856869],[101.623079,6.740622],[102.141187,6.221636],[101.814282,5.810808],[101.154219,5.691384],[101.075516,6.204867],[100.259596,6.642825],[100.085757,6.464489],[99.690691,6.848213],[99.519642,7.343454],[98.988253,7.907993],[98.503786,8.382305],[98.339662,7.794512],[98.150009,8.350007],[98.25915,8.973923],[98.553551,9.93296],[99.038121,10.960546],[99.587286,11.892763],[99.196354,12.804748],[99.212012,13.269294],[99.097755,13.827503],[98.430819,14.622028],[98.192074,15.123703],[98.537376,15.308497],[98.903348,16.177824],[98.493761,16.837836],[97.859123,17.567946],[97.375896,18.445438],[97.797783,18.62708],[98.253724,19.708203],[98.959676,19.752981],[99.543309,20.186598],[100.115988,20.41785],[100.548881,20.109238],[100.606294,19.508344],[101.282015,19.462585],[101.035931,18.408928],[101.059548,17.512497],[102.113592,18.109102],[102.413005,17.932782],[102.998706,17.961695],[103.200192,18.309632],[103.956477,18.240954],[104.716947,17.428859],[104.779321,16.441865],[105.589039,15.570316],[105.544338,14.723934],[105.218777,14.273212],[104.281418,14.416743],[102.988422,14.225721],[102.348099,13.394247],[102.584932,12.186595]]]},"id":"THA"}, -{"type":"Feature","properties":{"name":"Tajikistan"},"geometry":{"type":"Polygon","coordinates":[[[71.014198,40.244366],[70.648019,39.935754],[69.55961,40.103211],[69.464887,39.526683],[70.549162,39.604198],[71.784694,39.279463],[73.675379,39.431237],[73.928852,38.505815],[74.257514,38.606507],[74.864816,38.378846],[74.829986,37.990007],[74.980002,37.41999],[73.948696,37.421566],[73.260056,37.495257],[72.63689,37.047558],[72.193041,36.948288],[71.844638,36.738171],[71.448693,37.065645],[71.541918,37.905774],[71.239404,37.953265],[71.348131,38.258905],[70.806821,38.486282],[70.376304,38.138396],[70.270574,37.735165],[70.116578,37.588223],[69.518785,37.608997],[69.196273,37.151144],[68.859446,37.344336],[68.135562,37.023115],[67.83,37.144994],[68.392033,38.157025],[68.176025,38.901553],[67.44222,39.140144],[67.701429,39.580478],[68.536416,39.533453],[69.011633,40.086158],[69.329495,40.727824],[70.666622,40.960213],[70.45816,40.496495],[70.601407,40.218527],[71.014198,40.244366]]]},"id":"TJK"}, -{"type":"Feature","properties":{"name":"Turkmenistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[61.123071,36.491597],[60.377638,36.527383],[59.234762,37.412988],[58.436154,37.522309],[57.330434,38.029229],[56.619366,38.121394],[56.180375,37.935127],[55.511578,37.964117],[54.800304,37.392421],[53.921598,37.198918],[53.735511,37.906136],[53.880929,38.952093],[53.101028,39.290574],[53.357808,39.975286],[52.693973,40.033629],[52.915251,40.876523],[53.858139,40.631034],[54.736845,40.951015],[54.008311,41.551211],[53.721713,42.123191],[52.91675,41.868117],[52.814689,41.135371],[52.50246,41.783316],[52.944293,42.116034],[54.079418,42.324109],[54.755345,42.043971],[55.455251,41.259859],[55.968191,41.308642],[57.096391,41.32231],[56.932215,41.826026],[57.78653,42.170553],[58.629011,42.751551],[59.976422,42.223082],[60.083341,41.425146],[60.465953,41.220327],[61.547179,41.26637],[61.882714,41.084857],[62.37426,40.053886],[63.518015,39.363257],[64.170223,38.892407],[65.215999,38.402695],[66.54615,37.974685],[66.518607,37.362784],[66.217385,37.39379],[65.745631,37.661164],[65.588948,37.305217],[64.746105,37.111818],[64.546479,36.312073],[63.982896,36.007957],[63.193538,35.857166],[62.984662,35.404041],[62.230651,35.270664],[61.210817,35.650072]]]},"id":"TKM"}, -{"type":"Feature","properties":{"name":"East Timor"},"geometry":{"type":"Polygon","coordinates":[[[124.968682,-8.89279],[125.086246,-8.656887],[125.947072,-8.432095],[126.644704,-8.398247],[126.957243,-8.273345],[127.335928,-8.397317],[126.967992,-8.668256],[125.925885,-9.106007],[125.08852,-9.393173],[125.07002,-9.089987],[124.968682,-8.89279]]]},"id":"TLS"}, -{"type":"Feature","properties":{"name":"Trinidad and Tobago"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]},"id":"TTO"}, -{"type":"Feature","properties":{"name":"Tunisia"},"geometry":{"type":"Polygon","coordinates":[[[9.48214,30.307556],[9.055603,32.102692],[8.439103,32.506285],[8.430473,32.748337],[7.612642,33.344115],[7.524482,34.097376],[8.140981,34.655146],[8.376368,35.479876],[8.217824,36.433177],[8.420964,36.946427],[9.509994,37.349994],[10.210002,37.230002],[10.18065,36.724038],[11.028867,37.092103],[11.100026,36.899996],[10.600005,36.41],[10.593287,35.947444],[10.939519,35.698984],[10.807847,34.833507],[10.149593,34.330773],[10.339659,33.785742],[10.856836,33.76874],[11.108501,33.293343],[11.488787,33.136996],[11.432253,32.368903],[10.94479,32.081815],[10.636901,31.761421],[9.950225,31.37607],[10.056575,30.961831],[9.970017,30.539325],[9.48214,30.307556]]]},"id":"TUN"}, -{"type":"Feature","properties":{"name":"Turkey"},"geometry":{"type":"MultiPolygon","coordinates":[[[[36.913127,41.335358],[38.347665,40.948586],[39.512607,41.102763],[40.373433,41.013673],[41.554084,41.535656],[42.619549,41.583173],[43.582746,41.092143],[43.752658,40.740201],[43.656436,40.253564],[44.400009,40.005],[44.79399,39.713003],[44.109225,39.428136],[44.421403,38.281281],[44.225756,37.971584],[44.772699,37.170445],[44.293452,37.001514],[43.942259,37.256228],[42.779126,37.385264],[42.349591,37.229873],[41.212089,37.074352],[40.673259,37.091276],[39.52258,36.716054],[38.699891,36.712927],[38.167727,36.90121],[37.066761,36.623036],[36.739494,36.81752],[36.685389,36.259699],[36.41755,36.040617],[36.149763,35.821535],[35.782085,36.274995],[36.160822,36.650606],[35.550936,36.565443],[34.714553,36.795532],[34.026895,36.21996],[32.509158,36.107564],[31.699595,36.644275],[30.621625,36.677865],[30.391096,36.262981],[29.699976,36.144357],[28.732903,36.676831],[27.641187,36.658822],[27.048768,37.653361],[26.318218,38.208133],[26.8047,38.98576],[26.170785,39.463612],[27.28002,40.420014],[28.819978,40.460011],[29.240004,41.219991],[31.145934,41.087622],[32.347979,41.736264],[33.513283,42.01896],[35.167704,42.040225],[36.913127,41.335358]]],[[[27.192377,40.690566],[26.358009,40.151994],[26.043351,40.617754],[26.056942,40.824123],[26.294602,40.936261],[26.604196,41.562115],[26.117042,41.826905],[27.135739,42.141485],[27.99672,42.007359],[28.115525,41.622886],[28.988443,41.299934],[28.806438,41.054962],[27.619017,40.999823],[27.192377,40.690566]]]]},"id":"TUR"}, -{"type":"Feature","properties":{"name":"Taiwan"},"geometry":{"type":"Polygon","coordinates":[[[121.777818,24.394274],[121.175632,22.790857],[120.74708,21.970571],[120.220083,22.814861],[120.106189,23.556263],[120.69468,24.538451],[121.495044,25.295459],[121.951244,24.997596],[121.777818,24.394274]]]},"id":"TWN"}, -{"type":"Feature","properties":{"name":"United Republic of Tanzania"},"geometry":{"type":"Polygon","coordinates":[[[33.903711,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.74054,-5.90895],[38.79977,-6.47566],[39.44,-6.84],[39.47,-7.1],[39.19469,-7.7039],[39.25203,-8.00781],[39.18652,-8.48551],[39.53574,-9.11237],[39.9496,-10.0984],[40.31659,-10.3171],[39.521,-10.89688],[38.427557,-11.285202],[37.82764,-11.26879],[37.47129,-11.56876],[36.775151,-11.594537],[36.514082,-11.720938],[35.312398,-11.439146],[34.559989,-11.52002],[34.28,-10.16],[33.940838,-9.693674],[33.73972,-9.41715],[32.759375,-9.230599],[32.191865,-8.930359],[31.556348,-8.762049],[31.157751,-8.594579],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.419993,-5.939999],[29.519987,-5.419979],[29.339998,-4.499983],[29.753512,-4.452389],[30.11632,-4.09012],[30.50554,-3.56858],[30.75224,-3.35931],[30.74301,-3.03431],[30.52766,-2.80762],[30.46967,-2.41383],[30.758309,-2.28725],[30.816135,-1.698914],[30.419105,-1.134659],[30.76986,-1.01455],[31.86617,-1.02736],[33.903711,-0.95]]]},"id":"TZA"}, -{"type":"Feature","properties":{"name":"Uganda"},"geometry":{"type":"Polygon","coordinates":[[[31.86617,-1.02736],[30.76986,-1.01455],[30.419105,-1.134659],[29.821519,-1.443322],[29.579466,-1.341313],[29.587838,-0.587406],[29.8195,-0.2053],[29.875779,0.59738],[30.086154,1.062313],[30.468508,1.583805],[30.85267,1.849396],[31.174149,2.204465],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[31.88145,3.55827],[32.68642,3.79232],[33.39,3.79],[34.005,4.249885],[34.47913,3.5556],[34.59607,3.05374],[35.03599,1.90584],[34.6721,1.17694],[34.18,0.515],[33.893569,0.109814],[33.903711,-0.95],[31.86617,-1.02736]]]},"id":"UGA"}, -{"type":"Feature","properties":{"name":"Ukraine"},"geometry":{"type":"Polygon","coordinates":[[[31.785998,52.101678],[32.159412,52.061267],[32.412058,52.288695],[32.715761,52.238465],[33.7527,52.335075],[34.391731,51.768882],[34.141978,51.566413],[34.224816,51.255993],[35.022183,51.207572],[35.377924,50.773955],[35.356116,50.577197],[36.626168,50.225591],[37.39346,50.383953],[38.010631,49.915662],[38.594988,49.926462],[40.069058,49.601055],[40.080789,49.30743],[39.674664,48.783818],[39.895632,48.232405],[39.738278,47.898937],[38.770585,47.825608],[38.255112,47.5464],[38.223538,47.10219],[37.425137,47.022221],[36.759855,46.6987],[35.823685,46.645964],[34.962342,46.273197],[35.020788,45.651219],[35.510009,45.409993],[36.529998,45.46999],[36.334713,45.113216],[35.239999,44.939996],[33.882511,44.361479],[33.326421,44.564877],[33.546924,45.034771],[32.454174,45.327466],[32.630804,45.519186],[33.588162,45.851569],[33.298567,46.080598],[31.74414,46.333348],[31.675307,46.706245],[30.748749,46.5831],[30.377609,46.03241],[29.603289,45.293308],[29.149725,45.464925],[28.679779,45.304031],[28.233554,45.488283],[28.485269,45.596907],[28.659987,45.939987],[28.933717,46.25883],[28.862972,46.437889],[29.072107,46.517678],[29.170654,46.379262],[29.759972,46.349988],[30.024659,46.423937],[29.83821,46.525326],[29.908852,46.674361],[29.559674,46.928583],[29.415135,47.346645],[29.050868,47.510227],[29.122698,47.849095],[28.670891,48.118149],[28.259547,48.155562],[27.522537,48.467119],[26.857824,48.368211],[26.619337,48.220726],[26.19745,48.220881],[25.945941,47.987149],[25.207743,47.891056],[24.866317,47.737526],[24.402056,47.981878],[23.760958,47.985598],[23.142236,48.096341],[22.710531,47.882194],[22.64082,48.15024],[22.085608,48.422264],[22.280842,48.825392],[22.558138,49.085738],[22.776419,49.027395],[22.51845,49.476774],[23.426508,50.308506],[23.922757,50.424881],[24.029986,50.705407],[23.527071,51.578454],[24.005078,51.617444],[24.553106,51.888461],[25.327788,51.910656],[26.337959,51.832289],[27.454066,51.592303],[28.241615,51.572227],[28.617613,51.427714],[28.992835,51.602044],[29.254938,51.368234],[30.157364,51.416138],[30.555117,51.319503],[30.619454,51.822806],[30.927549,52.042353],[31.785998,52.101678]]]},"id":"UKR"}, -{"type":"Feature","properties":{"name":"Uruguay"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.976026,-30.109686],[-55.973245,-30.883076],[-55.60151,-30.853879],[-54.572452,-31.494511],[-53.787952,-32.047243],[-53.209589,-32.727666],[-53.650544,-33.202004],[-53.373662,-33.768378],[-53.806426,-34.396815],[-54.935866,-34.952647],[-55.67409,-34.752659],[-56.215297,-34.859836],[-57.139685,-34.430456],[-57.817861,-34.462547],[-58.427074,-33.909454],[-58.349611,-33.263189],[-58.132648,-33.040567],[-58.14244,-32.044504],[-57.874937,-31.016556],[-57.625133,-30.216295]]]},"id":"URY"}, -{"type":"Feature","properties":{"name":"United States of America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.272917,48.019808],[-88.378114,48.302918],[-87.439793,47.94],[-86.461991,47.553338],[-85.652363,47.220219],[-84.87608,46.900083],[-84.779238,46.637102],[-84.543749,46.538684],[-84.6049,46.4396],[-84.3367,46.40877],[-84.14212,46.512226],[-84.091851,46.275419],[-83.890765,46.116927],[-83.616131,46.116927],[-83.469551,45.994686],[-83.592851,45.816894],[-82.550925,45.347517],[-82.337763,44.44],[-82.137642,43.571088],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.142,41.975681],[-83.02981,41.832796],[-82.690089,41.675105],[-82.439278,41.675105],[-81.277747,42.209026],[-80.247448,42.3662],[-78.939362,42.863611],[-78.92,42.965],[-79.01,43.27],[-79.171674,43.466339],[-78.72028,43.625089],[-77.737885,43.629056],[-76.820034,43.628784],[-76.5,44.018459],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.645476,43.090238],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.931102],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.071835,38.782032],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.989998,38.239992],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.593831,30.159994],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.754854],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.295938,33.046225],[-117.944,33.621236],[-118.410602,33.740909],[-118.519895,34.027782],[-119.081,34.078],[-119.438841,34.348477],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.68721,48.184433],[-124.566101,48.379715],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.15907,49],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.115842],[-154.00509,56.734677],[-154.516403,56.992749],[-154.670993,57.461196],[-153.76278,57.816575],[-153.228729,57.968968],[-152.564791,57.901427],[-152.141147,57.591059],[-153.006314,57.115842]]],[[[-165.579164,59.909987],[-166.19277,59.754441],[-166.848337,59.941406],[-167.455277,60.213069],[-166.467792,60.38417],[-165.67443,60.293607],[-165.579164,59.909987]]],[[[-171.731657,63.782515],[-171.114434,63.592191],[-170.491112,63.694975],[-169.682505,63.431116],[-168.689439,63.297506],[-168.771941,63.188598],[-169.52944,62.976931],[-170.290556,63.194438],[-170.671386,63.375822],[-171.553063,63.317789],[-171.791111,63.405846],[-171.731657,63.782515]]],[[[-155.06779,71.147776],[-154.344165,70.696409],[-153.900006,70.889989],[-152.210006,70.829992],[-152.270002,70.600006],[-150.739992,70.430017],[-149.720003,70.53001],[-147.613362,70.214035],[-145.68999,70.12001],[-144.920011,69.989992],[-143.589446,70.152514],[-142.07251,69.851938],[-140.985988,69.711998],[-140.985988,69.711998],[-140.992499,66.000029],[-140.99777,60.306397],[-140.012998,60.276838],[-139.039,60.000007],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.355549,58.410285],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.979994,55.284998],[-130.53611,54.802753],[-131.085818,55.178906],[-131.967211,55.497776],[-132.250011,56.369996],[-133.539181,57.178887],[-134.078063,58.123068],[-135.038211,58.187715],[-136.628062,58.212209],[-137.800006,58.499995],[-139.867787,59.537762],[-140.825274,59.727517],[-142.574444,60.084447],[-143.958881,59.99918],[-145.925557,60.45861],[-147.114374,60.884656],[-148.224306,60.672989],[-148.018066,59.978329],[-148.570823,59.914173],[-149.727858,59.705658],[-150.608243,59.368211],[-151.716393,59.155821],[-151.859433,59.744984],[-151.409719,60.725803],[-150.346941,61.033588],[-150.621111,61.284425],[-151.895839,60.727198],[-152.57833,60.061657],[-154.019172,59.350279],[-153.287511,58.864728],[-154.232492,58.146374],[-155.307491,57.727795],[-156.308335,57.422774],[-156.556097,56.979985],[-158.117217,56.463608],[-158.433321,55.994154],[-159.603327,55.566686],[-160.28972,55.643581],[-161.223048,55.364735],[-162.237766,55.024187],[-163.069447,54.689737],[-164.785569,54.404173],[-164.942226,54.572225],[-163.84834,55.039431],[-162.870001,55.348043],[-161.804175,55.894986],[-160.563605,56.008055],[-160.07056,56.418055],[-158.684443,57.016675],[-158.461097,57.216921],[-157.72277,57.570001],[-157.550274,58.328326],[-157.041675,58.918885],[-158.194731,58.615802],[-158.517218,58.787781],[-159.058606,58.424186],[-159.711667,58.93139],[-159.981289,58.572549],[-160.355271,59.071123],[-161.355003,58.670838],[-161.968894,58.671665],[-162.054987,59.266925],[-161.874171,59.633621],[-162.518059,59.989724],[-163.818341,59.798056],[-164.662218,60.267484],[-165.346388,60.507496],[-165.350832,61.073895],[-166.121379,61.500019],[-165.734452,62.074997],[-164.919179,62.633076],[-164.562508,63.146378],[-163.753332,63.219449],[-163.067224,63.059459],[-162.260555,63.541936],[-161.53445,63.455817],[-160.772507,63.766108],[-160.958335,64.222799],[-161.518068,64.402788],[-160.777778,64.788604],[-161.391926,64.777235],[-162.45305,64.559445],[-162.757786,64.338605],[-163.546394,64.55916],[-164.96083,64.446945],[-166.425288,64.686672],[-166.845004,65.088896],[-168.11056,65.669997],[-166.705271,66.088318],[-164.47471,66.57666],[-163.652512,66.57666],[-163.788602,66.077207],[-161.677774,66.11612],[-162.489715,66.735565],[-163.719717,67.116395],[-164.430991,67.616338],[-165.390287,68.042772],[-166.764441,68.358877],[-166.204707,68.883031],[-164.430811,68.915535],[-163.168614,69.371115],[-162.930566,69.858062],[-161.908897,70.33333],[-160.934797,70.44769],[-159.039176,70.891642],[-158.119723,70.824721],[-156.580825,71.357764],[-155.06779,71.147776]]]]},"id":"USA"}, -{"type":"Feature","properties":{"name":"Uzbekistan"},"geometry":{"type":"Polygon","coordinates":[[[66.518607,37.362784],[66.54615,37.974685],[65.215999,38.402695],[64.170223,38.892407],[63.518015,39.363257],[62.37426,40.053886],[61.882714,41.084857],[61.547179,41.26637],[60.465953,41.220327],[60.083341,41.425146],[59.976422,42.223082],[58.629011,42.751551],[57.78653,42.170553],[56.932215,41.826026],[57.096391,41.32231],[55.968191,41.308642],[55.928917,44.995858],[58.503127,45.586804],[58.689989,45.500014],[60.239972,44.784037],[61.05832,44.405817],[62.0133,43.504477],[63.185787,43.650075],[64.900824,43.728081],[66.098012,42.99766],[66.023392,41.994646],[66.510649,41.987644],[66.714047,41.168444],[67.985856,41.135991],[68.259896,40.662325],[68.632483,40.668681],[69.070027,41.384244],[70.388965,42.081308],[70.962315,42.266154],[71.259248,42.167711],[70.420022,41.519998],[71.157859,41.143587],[71.870115,41.3929],[73.055417,40.866033],[71.774875,40.145844],[71.014198,40.244366],[70.601407,40.218527],[70.45816,40.496495],[70.666622,40.960213],[69.329495,40.727824],[69.011633,40.086158],[68.536416,39.533453],[67.701429,39.580478],[67.44222,39.140144],[68.176025,38.901553],[68.392033,38.157025],[67.83,37.144994],[67.075782,37.356144],[66.518607,37.362784]]]},"id":"UZB"}, -{"type":"Feature","properties":{"name":"Venezuela"},"geometry":{"type":"Polygon","coordinates":[[[-71.331584,11.776284],[-71.360006,11.539994],[-71.94705,11.423282],[-71.620868,10.96946],[-71.633064,10.446494],[-72.074174,9.865651],[-71.695644,9.072263],[-71.264559,9.137195],[-71.039999,9.859993],[-71.350084,10.211935],[-71.400623,10.968969],[-70.155299,11.375482],[-70.293843,11.846822],[-69.943245,12.162307],[-69.5843,11.459611],[-68.882999,11.443385],[-68.233271,10.885744],[-68.194127,10.554653],[-67.296249,10.545868],[-66.227864,10.648627],[-65.655238,10.200799],[-64.890452,10.077215],[-64.329479,10.389599],[-64.318007,10.641418],[-63.079322,10.701724],[-61.880946,10.715625],[-62.730119,10.420269],[-62.388512,9.948204],[-61.588767,9.873067],[-60.830597,9.38134],[-60.671252,8.580174],[-60.150096,8.602757],[-59.758285,8.367035],[-60.550588,7.779603],[-60.637973,7.415],[-60.295668,7.043911],[-60.543999,6.856584],[-61.159336,6.696077],[-61.139415,6.234297],[-61.410303,5.959068],[-60.733574,5.200277],[-60.601179,4.918098],[-60.966893,4.536468],[-62.08543,4.162124],[-62.804533,4.006965],[-63.093198,3.770571],[-63.888343,4.02053],[-64.628659,4.148481],[-64.816064,4.056445],[-64.368494,3.79721],[-64.408828,3.126786],[-64.269999,2.497006],[-63.422867,2.411068],[-63.368788,2.2009],[-64.083085,1.916369],[-64.199306,1.492855],[-64.611012,1.328731],[-65.354713,1.095282],[-65.548267,0.789254],[-66.325765,0.724452],[-66.876326,1.253361],[-67.181294,2.250638],[-67.447092,2.600281],[-67.809938,2.820655],[-67.303173,3.318454],[-67.337564,3.542342],[-67.621836,3.839482],[-67.823012,4.503937],[-67.744697,5.221129],[-67.521532,5.55687],[-67.34144,6.095468],[-67.695087,6.267318],[-68.265052,6.153268],[-68.985319,6.206805],[-69.38948,6.099861],[-70.093313,6.960376],[-70.674234,7.087785],[-71.960176,6.991615],[-72.198352,7.340431],[-72.444487,7.423785],[-72.479679,7.632506],[-72.360901,8.002638],[-72.439862,8.405275],[-72.660495,8.625288],[-72.78873,9.085027],[-73.304952,9.152],[-73.027604,9.73677],[-72.905286,10.450344],[-72.614658,10.821975],[-72.227575,11.108702],[-71.973922,11.608672],[-71.331584,11.776284]]]},"id":"VEN"}, -{"type":"Feature","properties":{"name":"Vietnam"},"geometry":{"type":"Polygon","coordinates":[[[108.05018,21.55238],[106.715068,20.696851],[105.881682,19.75205],[105.662006,19.058165],[106.426817,18.004121],[107.361954,16.697457],[108.269495,16.079742],[108.877107,15.276691],[109.33527,13.426028],[109.200136,11.666859],[108.36613,11.008321],[107.220929,10.364484],[106.405113,9.53084],[105.158264,8.59976],[104.795185,9.241038],[105.076202,9.918491],[104.334335,10.486544],[105.199915,10.88931],[106.24967,10.961812],[105.810524,11.567615],[107.491403,12.337206],[107.614548,13.535531],[107.382727,14.202441],[107.564525,15.202173],[107.312706,15.908538],[106.556008,16.604284],[105.925762,17.485315],[105.094598,18.666975],[103.896532,19.265181],[104.183388,19.624668],[104.822574,19.886642],[104.435,20.758733],[103.203861,20.766562],[102.754896,21.675137],[102.170436,22.464753],[102.706992,22.708795],[103.504515,22.703757],[104.476858,22.81915],[105.329209,23.352063],[105.811247,22.976892],[106.725403,22.794268],[106.567273,22.218205],[107.04342,21.811899],[108.05018,21.55238]]]},"id":"VNM"}, -{"type":"Feature","properties":{"name":"Vanuatu"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.844877,-16.466333],[167.515181,-16.59785],[167.180008,-16.159995],[167.216801,-15.891846],[167.844877,-16.466333]]],[[[167.107712,-14.93392],[167.270028,-15.740021],[167.001207,-15.614602],[166.793158,-15.668811],[166.649859,-15.392704],[166.629137,-14.626497],[167.107712,-14.93392]]]]},"id":"VUT"}, -{"type":"Feature","properties":{"name":"West Bank"},"geometry":{"type":"Polygon","coordinates":[[[35.545665,32.393992],[35.545252,31.782505],[35.397561,31.489086],[34.927408,31.353435],[34.970507,31.616778],[35.225892,31.754341],[34.974641,31.866582],[35.18393,32.532511],[35.545665,32.393992]]]},"id":"PSE"}, -{"type":"Feature","properties":{"name":"Yemen"},"geometry":{"type":"Polygon","coordinates":[[[53.108573,16.651051],[52.385206,16.382411],[52.191729,15.938433],[52.168165,15.59742],[51.172515,15.17525],[49.574576,14.708767],[48.679231,14.003202],[48.238947,13.94809],[47.938914,14.007233],[47.354454,13.59222],[46.717076,13.399699],[45.877593,13.347764],[45.62505,13.290946],[45.406459,13.026905],[45.144356,12.953938],[44.989533,12.699587],[44.494576,12.721653],[44.175113,12.58595],[43.482959,12.6368],[43.222871,13.22095],[43.251448,13.767584],[43.087944,14.06263],[42.892245,14.802249],[42.604873,15.213335],[42.805015,15.261963],[42.702438,15.718886],[42.823671,15.911742],[42.779332,16.347891],[43.218375,16.66689],[43.115798,17.08844],[43.380794,17.579987],[43.791519,17.319977],[44.062613,17.410359],[45.216651,17.433329],[45.399999,17.333335],[46.366659,17.233315],[46.749994,17.283338],[47.000005,16.949999],[47.466695,17.116682],[48.183344,18.166669],[49.116672,18.616668],[52.00001,19.000003],[52.782184,17.349742],[53.108573,16.651051]]]},"id":"YEM"}, -{"type":"Feature","properties":{"name":"South Africa"},"geometry":{"type":"Polygon","coordinates":[[[31.521001,-29.257387],[31.325561,-29.401978],[30.901763,-29.909957],[30.622813,-30.423776],[30.055716,-31.140269],[28.925553,-32.172041],[28.219756,-32.771953],[27.464608,-33.226964],[26.419452,-33.61495],[25.909664,-33.66704],[25.780628,-33.944646],[25.172862,-33.796851],[24.677853,-33.987176],[23.594043,-33.794474],[22.988189,-33.916431],[22.574157,-33.864083],[21.542799,-34.258839],[20.689053,-34.417175],[20.071261,-34.795137],[19.616405,-34.819166],[19.193278,-34.462599],[18.855315,-34.444306],[18.424643,-33.997873],[18.377411,-34.136521],[18.244499,-33.867752],[18.25008,-33.281431],[17.92519,-32.611291],[18.24791,-32.429131],[18.221762,-31.661633],[17.566918,-30.725721],[17.064416,-29.878641],[17.062918,-29.875954],[16.344977,-28.576705],[16.824017,-28.082162],[17.218929,-28.355943],[17.387497,-28.783514],[17.836152,-28.856378],[18.464899,-29.045462],[19.002127,-28.972443],[19.894734,-28.461105],[19.895768,-24.76779],[20.165726,-24.917962],[20.758609,-25.868136],[20.66647,-26.477453],[20.889609,-26.828543],[21.605896,-26.726534],[22.105969,-26.280256],[22.579532,-25.979448],[22.824271,-25.500459],[23.312097,-25.26869],[23.73357,-25.390129],[24.211267,-25.670216],[25.025171,-25.71967],[25.664666,-25.486816],[25.765849,-25.174845],[25.941652,-24.696373],[26.485753,-24.616327],[26.786407,-24.240691],[27.11941,-23.574323],[28.017236,-22.827754],[29.432188,-22.091313],[29.839037,-22.102216],[30.322883,-22.271612],[30.659865,-22.151567],[31.191409,-22.25151],[31.670398,-23.658969],[31.930589,-24.369417],[31.752408,-25.484284],[31.837778,-25.843332],[31.333158,-25.660191],[31.04408,-25.731452],[30.949667,-26.022649],[30.676609,-26.398078],[30.685962,-26.743845],[31.282773,-27.285879],[31.86806,-27.177927],[32.071665,-26.73382],[32.83012,-26.742192],[32.580265,-27.470158],[32.462133,-28.301011],[32.203389,-28.752405],[31.521001,-29.257387]],[[28.978263,-28.955597],[28.5417,-28.647502],[28.074338,-28.851469],[27.532511,-29.242711],[26.999262,-29.875954],[27.749397,-30.645106],[28.107205,-30.545732],[28.291069,-30.226217],[28.8484,-30.070051],[29.018415,-29.743766],[29.325166,-29.257387],[28.978263,-28.955597]]]},"id":"ZAF"}, -{"type":"Feature","properties":{"name":"Zambia"},"geometry":{"type":"Polygon","coordinates":[[[32.759375,-9.230599],[33.231388,-9.676722],[33.485688,-10.525559],[33.31531,-10.79655],[33.114289,-11.607198],[33.306422,-12.435778],[32.991764,-12.783871],[32.688165,-13.712858],[33.214025,-13.97186],[30.179481,-14.796099],[30.274256,-15.507787],[29.516834,-15.644678],[28.947463,-16.043051],[28.825869,-16.389749],[28.467906,-16.4684],[27.598243,-17.290831],[27.044427,-17.938026],[26.706773,-17.961229],[26.381935,-17.846042],[25.264226,-17.73654],[25.084443,-17.661816],[25.07695,-17.578823],[24.682349,-17.353411],[24.033862,-17.295843],[23.215048,-17.523116],[22.562478,-16.898451],[21.887843,-16.08031],[21.933886,-12.898437],[24.016137,-12.911046],[23.930922,-12.565848],[24.079905,-12.191297],[23.904154,-11.722282],[24.017894,-11.237298],[23.912215,-10.926826],[24.257155,-10.951993],[24.314516,-11.262826],[24.78317,-11.238694],[25.418118,-11.330936],[25.75231,-11.784965],[26.553088,-11.92444],[27.16442,-11.608748],[27.388799,-12.132747],[28.155109,-12.272481],[28.523562,-12.698604],[28.934286,-13.248958],[29.699614,-13.257227],[29.616001,-12.178895],[29.341548,-12.360744],[28.642417,-11.971569],[28.372253,-11.793647],[28.49607,-10.789884],[28.673682,-9.605925],[28.449871,-9.164918],[28.734867,-8.526559],[29.002912,-8.407032],[30.346086,-8.238257],[30.740015,-8.340007],[31.157751,-8.594579],[31.556348,-8.762049],[32.191865,-8.930359],[32.759375,-9.230599]]]},"id":"ZMB"}, -{"type":"Feature","properties":{"name":"Zimbabwe"},"geometry":{"type":"Polygon","coordinates":[[[31.191409,-22.25151],[30.659865,-22.151567],[30.322883,-22.271612],[29.839037,-22.102216],[29.432188,-22.091313],[28.794656,-21.639454],[28.02137,-21.485975],[27.727228,-20.851802],[27.724747,-20.499059],[27.296505,-20.39152],[26.164791,-19.293086],[25.850391,-18.714413],[25.649163,-18.536026],[25.264226,-17.73654],[26.381935,-17.846042],[26.706773,-17.961229],[27.044427,-17.938026],[27.598243,-17.290831],[28.467906,-16.4684],[28.825869,-16.389749],[28.947463,-16.043051],[29.516834,-15.644678],[30.274256,-15.507787],[30.338955,-15.880839],[31.173064,-15.860944],[31.636498,-16.07199],[31.852041,-16.319417],[32.328239,-16.392074],[32.847639,-16.713398],[32.849861,-17.979057],[32.654886,-18.67209],[32.611994,-19.419383],[32.772708,-19.715592],[32.659743,-20.30429],[32.508693,-20.395292],[32.244988,-21.116489],[31.191409,-22.25151]]]},"id":"ZWE"} -]} +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { "name": "Afghanistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [61.210817, 35.650072], + [62.230651, 35.270664], + [62.984662, 35.404041], + [63.193538, 35.857166], + [63.982896, 36.007957], + [64.546479, 36.312073], + [64.746105, 37.111818], + [65.588948, 37.305217], + [65.745631, 37.661164], + [66.217385, 37.39379], + [66.518607, 37.362784], + [67.075782, 37.356144], + [67.83, 37.144994], + [68.135562, 37.023115], + [68.859446, 37.344336], + [69.196273, 37.151144], + [69.518785, 37.608997], + [70.116578, 37.588223], + [70.270574, 37.735165], + [70.376304, 38.138396], + [70.806821, 38.486282], + [71.348131, 38.258905], + [71.239404, 37.953265], + [71.541918, 37.905774], + [71.448693, 37.065645], + [71.844638, 36.738171], + [72.193041, 36.948288], + [72.63689, 37.047558], + [73.260056, 37.495257], + [73.948696, 37.421566], + [74.980002, 37.41999], + [75.158028, 37.133031], + [74.575893, 37.020841], + [74.067552, 36.836176], + [72.920025, 36.720007], + [71.846292, 36.509942], + [71.262348, 36.074388], + [71.498768, 35.650563], + [71.613076, 35.153203], + [71.115019, 34.733126], + [71.156773, 34.348911], + [70.881803, 33.988856], + [69.930543, 34.02012], + [70.323594, 33.358533], + [69.687147, 33.105499], + [69.262522, 32.501944], + [69.317764, 31.901412], + [68.926677, 31.620189], + [68.556932, 31.71331], + [67.792689, 31.58293], + [67.683394, 31.303154], + [66.938891, 31.304911], + [66.381458, 30.738899], + [66.346473, 29.887943], + [65.046862, 29.472181], + [64.350419, 29.560031], + [64.148002, 29.340819], + [63.550261, 29.468331], + [62.549857, 29.318572], + [60.874248, 29.829239], + [61.781222, 30.73585], + [61.699314, 31.379506], + [60.941945, 31.548075], + [60.863655, 32.18292], + [60.536078, 32.981269], + [60.9637, 33.528832], + [60.52843, 33.676446], + [60.803193, 34.404102], + [61.210817, 35.650072] + ] + ] + }, + "id": "AFG" + }, + { + "type": "Feature", + "properties": { "name": "Angola" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [16.326528, -5.87747], + [16.57318, -6.622645], + [16.860191, -7.222298], + [17.089996, -7.545689], + [17.47297, -8.068551], + [18.134222, -7.987678], + [18.464176, -7.847014], + [19.016752, -7.988246], + [19.166613, -7.738184], + [19.417502, -7.155429], + [20.037723, -7.116361], + [20.091622, -6.94309], + [20.601823, -6.939318], + [20.514748, -7.299606], + [21.728111, -7.290872], + [21.746456, -7.920085], + [21.949131, -8.305901], + [21.801801, -8.908707], + [21.875182, -9.523708], + [22.208753, -9.894796], + [22.155268, -11.084801], + [22.402798, -10.993075], + [22.837345, -11.017622], + [23.456791, -10.867863], + [23.912215, -10.926826], + [24.017894, -11.237298], + [23.904154, -11.722282], + [24.079905, -12.191297], + [23.930922, -12.565848], + [24.016137, -12.911046], + [21.933886, -12.898437], + [21.887843, -16.08031], + [22.562478, -16.898451], + [23.215048, -17.523116], + [21.377176, -17.930636], + [18.956187, -17.789095], + [18.263309, -17.309951], + [14.209707, -17.353101], + [14.058501, -17.423381], + [13.462362, -16.971212], + [12.814081, -16.941343], + [12.215461, -17.111668], + [11.734199, -17.301889], + [11.640096, -16.673142], + [11.778537, -15.793816], + [12.123581, -14.878316], + [12.175619, -14.449144], + [12.500095, -13.5477], + [12.738479, -13.137906], + [13.312914, -12.48363], + [13.633721, -12.038645], + [13.738728, -11.297863], + [13.686379, -10.731076], + [13.387328, -10.373578], + [13.120988, -9.766897], + [12.87537, -9.166934], + [12.929061, -8.959091], + [13.236433, -8.562629], + [12.93304, -7.596539], + [12.728298, -6.927122], + [12.227347, -6.294448], + [12.322432, -6.100092], + [12.735171, -5.965682], + [13.024869, -5.984389], + [13.375597, -5.864241], + [16.326528, -5.87747] + ] + ], + [ + [ + [12.436688, -5.684304], + [12.182337, -5.789931], + [11.914963, -5.037987], + [12.318608, -4.60623], + [12.62076, -4.438023], + [12.995517, -4.781103], + [12.631612, -4.991271], + [12.468004, -5.248362], + [12.436688, -5.684304] + ] + ] + ] + }, + "id": "AGO" + }, + { + "type": "Feature", + "properties": { "name": "Albania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.590247, 41.855404], + [20.463175, 41.515089], + [20.605182, 41.086226], + [21.02004, 40.842727], + [20.99999, 40.580004], + [20.674997, 40.435], + [20.615, 40.110007], + [20.150016, 39.624998], + [19.98, 39.694993], + [19.960002, 39.915006], + [19.406082, 40.250773], + [19.319059, 40.72723], + [19.40355, 41.409566], + [19.540027, 41.719986], + [19.371769, 41.877548], + [19.304486, 42.195745], + [19.738051, 42.688247], + [19.801613, 42.500093], + [20.0707, 42.58863], + [20.283755, 42.32026], + [20.52295, 42.21787], + [20.590247, 41.855404] + ] + ] + }, + "id": "ALB" + }, + { + "type": "Feature", + "properties": { "name": "United Arab Emirates" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [51.579519, 24.245497], + [51.757441, 24.294073], + [51.794389, 24.019826], + [52.577081, 24.177439], + [53.404007, 24.151317], + [54.008001, 24.121758], + [54.693024, 24.797892], + [55.439025, 25.439145], + [56.070821, 26.055464], + [56.261042, 25.714606], + [56.396847, 24.924732], + [55.886233, 24.920831], + [55.804119, 24.269604], + [55.981214, 24.130543], + [55.528632, 23.933604], + [55.525841, 23.524869], + [55.234489, 23.110993], + [55.208341, 22.70833], + [55.006803, 22.496948], + [52.000733, 23.001154], + [51.617708, 24.014219], + [51.579519, 24.245497] + ] + ] + }, + "id": "ARE" + }, + { + "type": "Feature", + "properties": { "name": "Argentina" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-65.5, -55.2], + [-66.45, -55.25], + [-66.95992, -54.89681], + [-67.56244, -54.87001], + [-68.63335, -54.8695], + [-68.63401, -52.63637], + [-68.25, -53.1], + [-67.75, -53.85], + [-66.45, -54.45], + [-65.05, -54.7], + [-65.5, -55.2] + ] + ], + [ + [ + [-64.964892, -22.075862], + [-64.377021, -22.798091], + [-63.986838, -21.993644], + [-62.846468, -22.034985], + [-62.685057, -22.249029], + [-60.846565, -23.880713], + [-60.028966, -24.032796], + [-58.807128, -24.771459], + [-57.777217, -25.16234], + [-57.63366, -25.603657], + [-58.618174, -27.123719], + [-57.60976, -27.395899], + [-56.486702, -27.548499], + [-55.695846, -27.387837], + [-54.788795, -26.621786], + [-54.625291, -25.739255], + [-54.13005, -25.547639], + [-53.628349, -26.124865], + [-53.648735, -26.923473], + [-54.490725, -27.474757], + [-55.162286, -27.881915], + [-56.2909, -28.852761], + [-57.625133, -30.216295], + [-57.874937, -31.016556], + [-58.14244, -32.044504], + [-58.132648, -33.040567], + [-58.349611, -33.263189], + [-58.427074, -33.909454], + [-58.495442, -34.43149], + [-57.22583, -35.288027], + [-57.362359, -35.97739], + [-56.737487, -36.413126], + [-56.788285, -36.901572], + [-57.749157, -38.183871], + [-59.231857, -38.72022], + [-61.237445, -38.928425], + [-62.335957, -38.827707], + [-62.125763, -39.424105], + [-62.330531, -40.172586], + [-62.145994, -40.676897], + [-62.745803, -41.028761], + [-63.770495, -41.166789], + [-64.73209, -40.802677], + [-65.118035, -41.064315], + [-64.978561, -42.058001], + [-64.303408, -42.359016], + [-63.755948, -42.043687], + [-63.458059, -42.563138], + [-64.378804, -42.873558], + [-65.181804, -43.495381], + [-65.328823, -44.501366], + [-65.565269, -45.036786], + [-66.509966, -45.039628], + [-67.293794, -45.551896], + [-67.580546, -46.301773], + [-66.597066, -47.033925], + [-65.641027, -47.236135], + [-65.985088, -48.133289], + [-67.166179, -48.697337], + [-67.816088, -49.869669], + [-68.728745, -50.264218], + [-69.138539, -50.73251], + [-68.815561, -51.771104], + [-68.149995, -52.349983], + [-68.571545, -52.299444], + [-69.498362, -52.142761], + [-71.914804, -52.009022], + [-72.329404, -51.425956], + [-72.309974, -50.67701], + [-72.975747, -50.74145], + [-73.328051, -50.378785], + [-73.415436, -49.318436], + [-72.648247, -48.878618], + [-72.331161, -48.244238], + [-72.447355, -47.738533], + [-71.917258, -46.884838], + [-71.552009, -45.560733], + [-71.659316, -44.973689], + [-71.222779, -44.784243], + [-71.329801, -44.407522], + [-71.793623, -44.207172], + [-71.464056, -43.787611], + [-71.915424, -43.408565], + [-72.148898, -42.254888], + [-71.746804, -42.051386], + [-71.915734, -40.832339], + [-71.680761, -39.808164], + [-71.413517, -38.916022], + [-70.814664, -38.552995], + [-71.118625, -37.576827], + [-71.121881, -36.658124], + [-70.364769, -36.005089], + [-70.388049, -35.169688], + [-69.817309, -34.193571], + [-69.814777, -33.273886], + [-70.074399, -33.09121], + [-70.535069, -31.36501], + [-69.919008, -30.336339], + [-70.01355, -29.367923], + [-69.65613, -28.459141], + [-69.001235, -27.521214], + [-68.295542, -26.89934], + [-68.5948, -26.506909], + [-68.386001, -26.185016], + [-68.417653, -24.518555], + [-67.328443, -24.025303], + [-66.985234, -22.986349], + [-67.106674, -22.735925], + [-66.273339, -21.83231], + [-64.964892, -22.075862] + ] + ] + ] + }, + "id": "ARG" + }, + { + "type": "Feature", + "properties": { "name": "Armenia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [43.582746, 41.092143], + [44.97248, 41.248129], + [45.179496, 40.985354], + [45.560351, 40.81229], + [45.359175, 40.561504], + [45.891907, 40.218476], + [45.610012, 39.899994], + [46.034534, 39.628021], + [46.483499, 39.464155], + [46.50572, 38.770605], + [46.143623, 38.741201], + [45.735379, 39.319719], + [45.739978, 39.473999], + [45.298145, 39.471751], + [45.001987, 39.740004], + [44.79399, 39.713003], + [44.400009, 40.005], + [43.656436, 40.253564], + [43.752658, 40.740201], + [43.582746, 41.092143] + ] + ] + }, + "id": "ARM" + }, + { + "type": "Feature", + "properties": { "name": "Antarctica" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-59.572095, -80.040179], + [-59.865849, -80.549657], + [-60.159656, -81.000327], + [-62.255393, -80.863178], + [-64.488125, -80.921934], + [-65.741666, -80.588827], + [-65.741666, -80.549657], + [-66.290031, -80.255773], + [-64.037688, -80.294944], + [-61.883246, -80.39287], + [-61.138976, -79.981371], + [-60.610119, -79.628679], + [-59.572095, -80.040179] + ] + ], + [ + [ + [-159.208184, -79.497059], + [-161.127601, -79.634209], + [-162.439847, -79.281465], + [-163.027408, -78.928774], + [-163.066604, -78.869966], + [-163.712896, -78.595667], + [-163.712896, -78.595667], + [-163.105801, -78.223338], + [-161.245113, -78.380176], + [-160.246208, -78.693645], + [-159.482405, -79.046338], + [-159.208184, -79.497059] + ] + ], + [ + [ + [-45.154758, -78.04707], + [-43.920828, -78.478103], + [-43.48995, -79.08556], + [-43.372438, -79.516645], + [-43.333267, -80.026123], + [-44.880537, -80.339644], + [-46.506174, -80.594357], + [-48.386421, -80.829485], + [-50.482107, -81.025442], + [-52.851988, -80.966685], + [-54.164259, -80.633528], + [-53.987991, -80.222028], + [-51.853134, -79.94773], + [-50.991326, -79.614623], + [-50.364595, -79.183487], + [-49.914131, -78.811209], + [-49.306959, -78.458569], + [-48.660616, -78.047018], + [-48.660616, -78.047019], + [-48.151396, -78.04707], + [-46.662857, -77.831476], + [-45.154758, -78.04707] + ] + ], + [ + [ + [-121.211511, -73.50099], + [-119.918851, -73.657725], + [-118.724143, -73.481353], + [-119.292119, -73.834097], + [-120.232217, -74.08881], + [-121.62283, -74.010468], + [-122.621735, -73.657778], + [-122.621735, -73.657777], + [-122.406245, -73.324619], + [-121.211511, -73.50099] + ] + ], + [ + [ + [-125.559566, -73.481353], + [-124.031882, -73.873268], + [-124.619469, -73.834097], + [-125.912181, -73.736118], + [-127.28313, -73.461769], + [-127.28313, -73.461768], + [-126.558472, -73.246226], + [-125.559566, -73.481353] + ] + ], + [ + [ + [-98.98155, -71.933334], + [-97.884743, -72.070535], + [-96.787937, -71.952971], + [-96.20035, -72.521205], + [-96.983765, -72.442864], + [-98.198083, -72.482035], + [-99.432013, -72.442864], + [-100.783455, -72.50162], + [-101.801868, -72.305663], + [-102.330725, -71.894164], + [-102.330725, -71.894164], + [-101.703967, -71.717792], + [-100.430919, -71.854993], + [-98.98155, -71.933334] + ] + ], + [ + [ + [-68.451346, -70.955823], + [-68.333834, -71.406493], + [-68.510128, -71.798407], + [-68.784297, -72.170736], + [-69.959471, -72.307885], + [-71.075889, -72.503842], + [-72.388134, -72.484257], + [-71.8985, -72.092343], + [-73.073622, -72.229492], + [-74.19004, -72.366693], + [-74.953895, -72.072757], + [-75.012625, -71.661258], + [-73.915819, -71.269345], + [-73.915819, -71.269344], + [-73.230331, -71.15178], + [-72.074717, -71.190951], + [-71.780962, -70.681473], + [-71.72218, -70.309196], + [-71.741791, -69.505782], + [-71.173815, -69.035475], + [-70.253252, -68.87874], + [-69.724447, -69.251017], + [-69.489422, -69.623346], + [-69.058518, -70.074016], + [-68.725541, -70.505153], + [-68.451346, -70.955823] + ] + ], + [ + [ + [-58.614143, -64.152467], + [-59.045073, -64.36801], + [-59.789342, -64.211223], + [-60.611928, -64.309202], + [-61.297416, -64.54433], + [-62.0221, -64.799094], + [-62.51176, -65.09303], + [-62.648858, -65.484942], + [-62.590128, -65.857219], + [-62.120079, -66.190326], + [-62.805567, -66.425505], + [-63.74569, -66.503847], + [-64.294106, -66.837004], + [-64.881693, -67.150474], + [-65.508425, -67.58161], + [-65.665082, -67.953887], + [-65.312545, -68.365335], + [-64.783715, -68.678908], + [-63.961103, -68.913984], + [-63.1973, -69.227556], + [-62.785955, -69.619419], + [-62.570516, -69.991747], + [-62.276736, -70.383661], + [-61.806661, -70.716768], + [-61.512906, -71.089045], + [-61.375809, -72.010074], + [-61.081977, -72.382351], + [-61.003661, -72.774265], + [-60.690269, -73.166179], + [-60.827367, -73.695242], + [-61.375809, -74.106742], + [-61.96337, -74.439848], + [-63.295201, -74.576997], + [-63.74569, -74.92974], + [-64.352836, -75.262847], + [-65.860987, -75.635124], + [-67.192818, -75.79191], + [-68.446282, -76.007452], + [-69.797724, -76.222995], + [-70.600724, -76.634494], + [-72.206776, -76.673665], + [-73.969536, -76.634494], + [-75.555977, -76.712887], + [-77.24037, -76.712887], + [-76.926979, -77.104802], + [-75.399294, -77.28107], + [-74.282876, -77.55542], + [-73.656119, -77.908112], + [-74.772536, -78.221633], + [-76.4961, -78.123654], + [-77.925858, -78.378419], + [-77.984666, -78.789918], + [-78.023785, -79.181833], + [-76.848637, -79.514939], + [-76.633224, -79.887216], + [-75.360097, -80.259545], + [-73.244852, -80.416331], + [-71.442946, -80.69063], + [-70.013163, -81.004151], + [-68.191646, -81.317672], + [-65.704279, -81.474458], + [-63.25603, -81.748757], + [-61.552026, -82.042692], + [-59.691416, -82.37585], + [-58.712121, -82.846106], + [-58.222487, -83.218434], + [-57.008117, -82.865691], + [-55.362894, -82.571755], + [-53.619771, -82.258235], + [-51.543644, -82.003521], + [-49.76135, -81.729171], + [-47.273931, -81.709586], + [-44.825708, -81.846735], + [-42.808363, -82.081915], + [-42.16202, -81.65083], + [-40.771433, -81.356894], + [-38.244818, -81.337309], + [-36.26667, -81.121715], + [-34.386397, -80.906172], + [-32.310296, -80.769023], + [-30.097098, -80.592651], + [-28.549802, -80.337938], + [-29.254901, -79.985195], + [-29.685805, -79.632503], + [-29.685805, -79.260226], + [-31.624808, -79.299397], + [-33.681324, -79.456132], + [-35.639912, -79.456132], + [-35.914107, -79.083855], + [-35.77701, -78.339248], + [-35.326546, -78.123654], + [-33.896763, -77.888526], + [-32.212369, -77.65345], + [-30.998051, -77.359515], + [-29.783732, -77.065579], + [-28.882779, -76.673665], + [-27.511752, -76.497345], + [-26.160336, -76.360144], + [-25.474822, -76.281803], + [-23.927552, -76.24258], + [-22.458598, -76.105431], + [-21.224694, -75.909474], + [-20.010375, -75.674346], + [-18.913543, -75.439218], + [-17.522982, -75.125698], + [-16.641589, -74.79254], + [-15.701491, -74.498604], + [-15.40771, -74.106742], + [-16.46532, -73.871614], + [-16.112784, -73.460114], + [-15.446855, -73.146542], + [-14.408805, -72.950585], + [-13.311973, -72.715457], + [-12.293508, -72.401936], + [-11.510067, -72.010074], + [-11.020433, -71.539767], + [-10.295774, -71.265416], + [-9.101015, -71.324224], + [-8.611381, -71.65733], + [-7.416622, -71.696501], + [-7.377451, -71.324224], + [-6.868232, -70.93231], + [-5.790985, -71.030289], + [-5.536375, -71.402617], + [-4.341667, -71.461373], + [-3.048981, -71.285053], + [-1.795492, -71.167438], + [-0.659489, -71.226246], + [-0.228637, -71.637745], + [0.868195, -71.304639], + [1.886686, -71.128267], + [3.022638, -70.991118], + [4.139055, -70.853917], + [5.157546, -70.618789], + [6.273912, -70.462055], + [7.13572, -70.246512], + [7.742866, -69.893769], + [8.48711, -70.148534], + [9.525135, -70.011333], + [10.249845, -70.48164], + [10.817821, -70.834332], + [11.953824, -70.638375], + [12.404287, -70.246512], + [13.422778, -69.972162], + [14.734998, -70.030918], + [15.126757, -70.403247], + [15.949342, -70.030918], + [17.026589, -69.913354], + [18.201711, -69.874183], + [19.259373, -69.893769], + [20.375739, -70.011333], + [21.452985, -70.07014], + [21.923034, -70.403247], + [22.569403, -70.697182], + [23.666184, -70.520811], + [24.841357, -70.48164], + [25.977309, -70.48164], + [27.093726, -70.462055], + [28.09258, -70.324854], + [29.150242, -70.20729], + [30.031583, -69.93294], + [30.971733, -69.75662], + [31.990172, -69.658641], + [32.754053, -69.384291], + [33.302443, -68.835642], + [33.870419, -68.502588], + [34.908495, -68.659271], + [35.300202, -69.012014], + [36.16201, -69.247142], + [37.200035, -69.168748], + [37.905108, -69.52144], + [38.649404, -69.776205], + [39.667894, -69.541077], + [40.020431, -69.109941], + [40.921358, -68.933621], + [41.959434, -68.600514], + [42.938702, -68.463313], + [44.113876, -68.267408], + [44.897291, -68.051866], + [45.719928, -67.816738], + [46.503343, -67.601196], + [47.44344, -67.718759], + [48.344419, -67.366068], + [48.990736, -67.091718], + [49.930885, -67.111303], + [50.753471, -66.876175], + [50.949325, -66.523484], + [51.791547, -66.249133], + [52.614133, -66.053176], + [53.613038, -65.89639], + [54.53355, -65.818049], + [55.414943, -65.876805], + [56.355041, -65.974783], + [57.158093, -66.249133], + [57.255968, -66.680218], + [58.137361, -67.013324], + [58.744508, -67.287675], + [59.939318, -67.405239], + [60.605221, -67.679589], + [61.427806, -67.953887], + [62.387489, -68.012695], + [63.19049, -67.816738], + [64.052349, -67.405239], + [64.992447, -67.620729], + [65.971715, -67.738345], + [66.911864, -67.855909], + [67.891133, -67.934302], + [68.890038, -67.934302], + [69.712624, -68.972791], + [69.673453, -69.227556], + [69.555941, -69.678226], + [68.596258, -69.93294], + [67.81274, -70.305268], + [67.949889, -70.697182], + [69.066307, -70.677545], + [68.929157, -71.069459], + [68.419989, -71.441788], + [67.949889, -71.853287], + [68.71377, -72.166808], + [69.869307, -72.264787], + [71.024895, -72.088415], + [71.573285, -71.696501], + [71.906288, -71.324224], + [72.454627, -71.010703], + [73.08141, -70.716768], + [73.33602, -70.364024], + [73.864877, -69.874183], + [74.491557, -69.776205], + [75.62756, -69.737034], + [76.626465, -69.619419], + [77.644904, -69.462684], + [78.134539, -69.07077], + [78.428371, -68.698441], + [79.113859, -68.326216], + [80.093127, -68.071503], + [80.93535, -67.875546], + [81.483792, -67.542388], + [82.051767, -67.366068], + [82.776426, -67.209282], + [83.775331, -67.30726], + [84.676206, -67.209282], + [85.655527, -67.091718], + [86.752359, -67.150474], + [87.477017, -66.876175], + [87.986289, -66.209911], + [88.358411, -66.484261], + [88.828408, -66.954568], + [89.67063, -67.150474], + [90.630365, -67.228867], + [91.5901, -67.111303], + [92.608539, -67.189696], + [93.548637, -67.209282], + [94.17542, -67.111303], + [95.017591, -67.170111], + [95.781472, -67.385653], + [96.682399, -67.248504], + [97.759646, -67.248504], + [98.68021, -67.111303], + [99.718182, -67.248504], + [100.384188, -66.915346], + [100.893356, -66.58224], + [101.578896, -66.30789], + [102.832411, -65.563284], + [103.478676, -65.700485], + [104.242557, -65.974783], + [104.90846, -66.327527], + [106.181561, -66.934931], + [107.160881, -66.954568], + [108.081393, -66.954568], + [109.15864, -66.837004], + [110.235835, -66.699804], + [111.058472, -66.425505], + [111.74396, -66.13157], + [112.860378, -66.092347], + [113.604673, -65.876805], + [114.388088, -66.072762], + [114.897308, -66.386283], + [115.602381, -66.699804], + [116.699161, -66.660633], + [117.384701, -66.915346], + [118.57946, -67.170111], + [119.832924, -67.268089], + [120.871, -67.189696], + [121.654415, -66.876175], + [122.320369, -66.562654], + [123.221296, -66.484261], + [124.122274, -66.621462], + [125.160247, -66.719389], + [126.100396, -66.562654], + [127.001427, -66.562654], + [127.882768, -66.660633], + [128.80328, -66.758611], + [129.704259, -66.58224], + [130.781454, -66.425505], + [131.799945, -66.386283], + [132.935896, -66.386283], + [133.85646, -66.288304], + [134.757387, -66.209963], + [135.031582, -65.72007], + [135.070753, -65.308571], + [135.697485, -65.582869], + [135.873805, -66.033591], + [136.206705, -66.44509], + [136.618049, -66.778197], + [137.460271, -66.954568], + [138.596223, -66.895761], + [139.908442, -66.876175], + [140.809421, -66.817367], + [142.121692, -66.817367], + [143.061842, -66.797782], + [144.374061, -66.837004], + [145.490427, -66.915346], + [146.195552, -67.228867], + [145.999699, -67.601196], + [146.646067, -67.895131], + [147.723263, -68.130259], + [148.839629, -68.385024], + [150.132314, -68.561292], + [151.483705, -68.71813], + [152.502247, -68.874813], + [153.638199, -68.894502], + [154.284567, -68.561292], + [155.165857, -68.835642], + [155.92979, -69.149215], + [156.811132, -69.384291], + [158.025528, -69.482269], + [159.181013, -69.599833], + [159.670699, -69.991747], + [160.80665, -70.226875], + [161.570479, -70.579618], + [162.686897, -70.736353], + [163.842434, -70.716768], + [164.919681, -70.775524], + [166.11444, -70.755938], + [167.309095, -70.834332], + [168.425616, -70.971481], + [169.463589, -71.20666], + [170.501665, -71.402617], + [171.20679, -71.696501], + [171.089227, -72.088415], + [170.560422, -72.441159], + [170.109958, -72.891829], + [169.75737, -73.24452], + [169.287321, -73.65602], + [167.975101, -73.812806], + [167.387489, -74.165498], + [166.094803, -74.38104], + [165.644391, -74.772954], + [164.958851, -75.145283], + [164.234193, -75.458804], + [163.822797, -75.870303], + [163.568239, -76.24258], + [163.47026, -76.693302], + [163.489897, -77.065579], + [164.057873, -77.457442], + [164.273363, -77.82977], + [164.743464, -78.182514], + [166.604126, -78.319611], + [166.995781, -78.750748], + [165.193876, -78.907483], + [163.666217, -79.123025], + [161.766385, -79.162248], + [160.924162, -79.730482], + [160.747894, -80.200737], + [160.316964, -80.573066], + [159.788211, -80.945395], + [161.120016, -81.278501], + [161.629287, -81.690001], + [162.490992, -82.062278], + [163.705336, -82.395435], + [165.095949, -82.708956], + [166.604126, -83.022477], + [168.895665, -83.335998], + [169.404782, -83.825891], + [172.283934, -84.041433], + [172.477049, -84.117914], + [173.224083, -84.41371], + [175.985672, -84.158997], + [178.277212, -84.472518], + [180, -84.71338], + [-179.942499, -84.721443], + [-179.058677, -84.139412], + [-177.256772, -84.452933], + [-177.140807, -84.417941], + [-176.084673, -84.099259], + [-175.947235, -84.110449], + [-175.829882, -84.117914], + [-174.382503, -84.534323], + [-173.116559, -84.117914], + [-172.889106, -84.061019], + [-169.951223, -83.884647], + [-168.999989, -84.117914], + [-168.530199, -84.23739], + [-167.022099, -84.570497], + [-164.182144, -84.82521], + [-161.929775, -85.138731], + [-158.07138, -85.37391], + [-155.192253, -85.09956], + [-150.942099, -85.295517], + [-148.533073, -85.609038], + [-145.888918, -85.315102], + [-143.107718, -85.040752], + [-142.892279, -84.570497], + [-146.829068, -84.531274], + [-150.060732, -84.296146], + [-150.902928, -83.904232], + [-153.586201, -83.68869], + [-153.409907, -83.23802], + [-153.037759, -82.82652], + [-152.665637, -82.454192], + [-152.861517, -82.042692], + [-154.526299, -81.768394], + [-155.29018, -81.41565], + [-156.83745, -81.102129], + [-154.408787, -81.160937], + [-152.097662, -81.004151], + [-150.648293, -81.337309], + [-148.865998, -81.043373], + [-147.22075, -80.671045], + [-146.417749, -80.337938], + [-146.770286, -79.926439], + [-148.062947, -79.652089], + [-149.531901, -79.358205], + [-151.588416, -79.299397], + [-153.390322, -79.162248], + [-155.329376, -79.064269], + [-155.975668, -78.69194], + [-157.268302, -78.378419], + [-158.051768, -78.025676], + [-158.365134, -76.889207], + [-157.875474, -76.987238], + [-156.974573, -77.300759], + [-155.329376, -77.202728], + [-153.742832, -77.065579], + [-152.920247, -77.496664], + [-151.33378, -77.398737], + [-150.00195, -77.183143], + [-148.748486, -76.908845], + [-147.612483, -76.575738], + [-146.104409, -76.47776], + [-146.143528, -76.105431], + [-146.496091, -75.733154], + [-146.20231, -75.380411], + [-144.909624, -75.204039], + [-144.322037, -75.537197], + [-142.794353, -75.34124], + [-141.638764, -75.086475], + [-140.209007, -75.06689], + [-138.85759, -74.968911], + [-137.5062, -74.733783], + [-136.428901, -74.518241], + [-135.214583, -74.302699], + [-134.431194, -74.361455], + [-133.745654, -74.439848], + [-132.257168, -74.302699], + [-130.925311, -74.479019], + [-129.554284, -74.459433], + [-128.242038, -74.322284], + [-126.890622, -74.420263], + [-125.402082, -74.518241], + [-124.011496, -74.479019], + [-122.562152, -74.498604], + [-121.073613, -74.518241], + [-119.70256, -74.479019], + [-118.684145, -74.185083], + [-117.469801, -74.028348], + [-116.216312, -74.243891], + [-115.021552, -74.067519], + [-113.944331, -73.714828], + [-113.297988, -74.028348], + [-112.945452, -74.38104], + [-112.299083, -74.714198], + [-111.261059, -74.420263], + [-110.066325, -74.79254], + [-108.714909, -74.910103], + [-107.559346, -75.184454], + [-106.149148, -75.125698], + [-104.876074, -74.949326], + [-103.367949, -74.988497], + [-102.016507, -75.125698], + [-100.645531, -75.302018], + [-100.1167, -74.870933], + [-100.763043, -74.537826], + [-101.252703, -74.185083], + [-102.545337, -74.106742], + [-103.113313, -73.734413], + [-103.328752, -73.362084], + [-103.681289, -72.61753], + [-102.917485, -72.754679], + [-101.60524, -72.813436], + [-100.312528, -72.754679], + [-99.13738, -72.911414], + [-98.118889, -73.20535], + [-97.688037, -73.558041], + [-96.336595, -73.616849], + [-95.043961, -73.4797], + [-93.672907, -73.283743], + [-92.439003, -73.166179], + [-91.420564, -73.401307], + [-90.088733, -73.322914], + [-89.226951, -72.558722], + [-88.423951, -73.009393], + [-87.268337, -73.185764], + [-86.014822, -73.087786], + [-85.192236, -73.4797], + [-83.879991, -73.518871], + [-82.665646, -73.636434], + [-81.470913, -73.851977], + [-80.687447, -73.4797], + [-80.295791, -73.126956], + [-79.296886, -73.518871], + [-77.925858, -73.420892], + [-76.907367, -73.636434], + [-76.221879, -73.969541], + [-74.890049, -73.871614], + [-73.852024, -73.65602], + [-72.833533, -73.401307], + [-71.619215, -73.264157], + [-70.209042, -73.146542], + [-68.935916, -73.009393], + [-67.956622, -72.79385], + [-67.369061, -72.480329], + [-67.134036, -72.049244], + [-67.251548, -71.637745], + [-67.56494, -71.245831], + [-67.917477, -70.853917], + [-68.230843, -70.462055], + [-68.485452, -70.109311], + [-68.544209, -69.717397], + [-68.446282, -69.325535], + [-67.976233, -68.953206], + [-67.5845, -68.541707], + [-67.427843, -68.149844], + [-67.62367, -67.718759], + [-67.741183, -67.326845], + [-67.251548, -66.876175], + [-66.703184, -66.58224], + [-66.056815, -66.209963], + [-65.371327, -65.89639], + [-64.568276, -65.602506], + [-64.176542, -65.171423], + [-63.628152, -64.897073], + [-63.001394, -64.642308], + [-62.041686, -64.583552], + [-61.414928, -64.270031], + [-60.709855, -64.074074], + [-59.887269, -63.95651], + [-59.162585, -63.701745], + [-58.594557, -63.388224], + [-57.811143, -63.27066], + [-57.223582, -63.525425], + [-57.59573, -63.858532], + [-58.614143, -64.152467] + ] + ] + ] + }, + "id": "ATA" + }, + { + "type": "Feature", + "properties": { "name": "French Southern and Antarctic Lands" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [68.935, -48.625], + [69.58, -48.94], + [70.525, -49.065], + [70.56, -49.255], + [70.28, -49.71], + [68.745, -49.775], + [68.72, -49.2425], + [68.8675, -48.83], + [68.935, -48.625] + ] + ] + }, + "id": "ATF" + }, + { + "type": "Feature", + "properties": { "name": "Australia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [145.397978, -40.792549], + [146.364121, -41.137695], + [146.908584, -41.000546], + [147.689259, -40.808258], + [148.289068, -40.875438], + [148.359865, -42.062445], + [148.017301, -42.407024], + [147.914052, -43.211522], + [147.564564, -42.937689], + [146.870343, -43.634597], + [146.663327, -43.580854], + [146.048378, -43.549745], + [145.43193, -42.693776], + [145.29509, -42.03361], + [144.718071, -41.162552], + [144.743755, -40.703975], + [145.397978, -40.792549] + ] + ], + [ + [ + [143.561811, -13.763656], + [143.922099, -14.548311], + [144.563714, -14.171176], + [144.894908, -14.594458], + [145.374724, -14.984976], + [145.271991, -15.428205], + [145.48526, -16.285672], + [145.637033, -16.784918], + [145.888904, -16.906926], + [146.160309, -17.761655], + [146.063674, -18.280073], + [146.387478, -18.958274], + [147.471082, -19.480723], + [148.177602, -19.955939], + [148.848414, -20.39121], + [148.717465, -20.633469], + [149.28942, -21.260511], + [149.678337, -22.342512], + [150.077382, -22.122784], + [150.482939, -22.556142], + [150.727265, -22.402405], + [150.899554, -23.462237], + [151.609175, -24.076256], + [152.07354, -24.457887], + [152.855197, -25.267501], + [153.136162, -26.071173], + [153.161949, -26.641319], + [153.092909, -27.2603], + [153.569469, -28.110067], + [153.512108, -28.995077], + [153.339095, -29.458202], + [153.069241, -30.35024], + [153.089602, -30.923642], + [152.891578, -31.640446], + [152.450002, -32.550003], + [151.709117, -33.041342], + [151.343972, -33.816023], + [151.010555, -34.31036], + [150.714139, -35.17346], + [150.32822, -35.671879], + [150.075212, -36.420206], + [149.946124, -37.109052], + [149.997284, -37.425261], + [149.423882, -37.772681], + [148.304622, -37.809061], + [147.381733, -38.219217], + [146.922123, -38.606532], + [146.317922, -39.035757], + [145.489652, -38.593768], + [144.876976, -38.417448], + [145.032212, -37.896188], + [144.485682, -38.085324], + [143.609974, -38.809465], + [142.745427, -38.538268], + [142.17833, -38.380034], + [141.606582, -38.308514], + [140.638579, -38.019333], + [139.992158, -37.402936], + [139.806588, -36.643603], + [139.574148, -36.138362], + [139.082808, -35.732754], + [138.120748, -35.612296], + [138.449462, -35.127261], + [138.207564, -34.384723], + [137.71917, -35.076825], + [136.829406, -35.260535], + [137.352371, -34.707339], + [137.503886, -34.130268], + [137.890116, -33.640479], + [137.810328, -32.900007], + [136.996837, -33.752771], + [136.372069, -34.094766], + [135.989043, -34.890118], + [135.208213, -34.47867], + [135.239218, -33.947953], + [134.613417, -33.222778], + [134.085904, -32.848072], + [134.273903, -32.617234], + [132.990777, -32.011224], + [132.288081, -31.982647], + [131.326331, -31.495803], + [129.535794, -31.590423], + [128.240938, -31.948489], + [127.102867, -32.282267], + [126.148714, -32.215966], + [125.088623, -32.728751], + [124.221648, -32.959487], + [124.028947, -33.483847], + [123.659667, -33.890179], + [122.811036, -33.914467], + [122.183064, -34.003402], + [121.299191, -33.821036], + [120.580268, -33.930177], + [119.893695, -33.976065], + [119.298899, -34.509366], + [119.007341, -34.464149], + [118.505718, -34.746819], + [118.024972, -35.064733], + [117.295507, -35.025459], + [116.625109, -35.025097], + [115.564347, -34.386428], + [115.026809, -34.196517], + [115.048616, -33.623425], + [115.545123, -33.487258], + [115.714674, -33.259572], + [115.679379, -32.900369], + [115.801645, -32.205062], + [115.689611, -31.612437], + [115.160909, -30.601594], + [114.997043, -30.030725], + [115.040038, -29.461095], + [114.641974, -28.810231], + [114.616498, -28.516399], + [114.173579, -28.118077], + [114.048884, -27.334765], + [113.477498, -26.543134], + [113.338953, -26.116545], + [113.778358, -26.549025], + [113.440962, -25.621278], + [113.936901, -25.911235], + [114.232852, -26.298446], + [114.216161, -25.786281], + [113.721255, -24.998939], + [113.625344, -24.683971], + [113.393523, -24.384764], + [113.502044, -23.80635], + [113.706993, -23.560215], + [113.843418, -23.059987], + [113.736552, -22.475475], + [114.149756, -21.755881], + [114.225307, -22.517488], + [114.647762, -21.82952], + [115.460167, -21.495173], + [115.947373, -21.068688], + [116.711615, -20.701682], + [117.166316, -20.623599], + [117.441545, -20.746899], + [118.229559, -20.374208], + [118.836085, -20.263311], + [118.987807, -20.044203], + [119.252494, -19.952942], + [119.805225, -19.976506], + [120.85622, -19.683708], + [121.399856, -19.239756], + [121.655138, -18.705318], + [122.241665, -18.197649], + [122.286624, -17.798603], + [122.312772, -17.254967], + [123.012574, -16.4052], + [123.433789, -17.268558], + [123.859345, -17.069035], + [123.503242, -16.596506], + [123.817073, -16.111316], + [124.258287, -16.327944], + [124.379726, -15.56706], + [124.926153, -15.0751], + [125.167275, -14.680396], + [125.670087, -14.51007], + [125.685796, -14.230656], + [126.125149, -14.347341], + [126.142823, -14.095987], + [126.582589, -13.952791], + [127.065867, -13.817968], + [127.804633, -14.276906], + [128.35969, -14.86917], + [128.985543, -14.875991], + [129.621473, -14.969784], + [129.4096, -14.42067], + [129.888641, -13.618703], + [130.339466, -13.357376], + [130.183506, -13.10752], + [130.617795, -12.536392], + [131.223495, -12.183649], + [131.735091, -12.302453], + [132.575298, -12.114041], + [132.557212, -11.603012], + [131.824698, -11.273782], + [132.357224, -11.128519], + [133.019561, -11.376411], + [133.550846, -11.786515], + [134.393068, -12.042365], + [134.678632, -11.941183], + [135.298491, -12.248606], + [135.882693, -11.962267], + [136.258381, -12.049342], + [136.492475, -11.857209], + [136.95162, -12.351959], + [136.685125, -12.887223], + [136.305407, -13.29123], + [135.961758, -13.324509], + [136.077617, -13.724278], + [135.783836, -14.223989], + [135.428664, -14.715432], + [135.500184, -14.997741], + [136.295175, -15.550265], + [137.06536, -15.870762], + [137.580471, -16.215082], + [138.303217, -16.807604], + [138.585164, -16.806622], + [139.108543, -17.062679], + [139.260575, -17.371601], + [140.215245, -17.710805], + [140.875463, -17.369069], + [141.07111, -16.832047], + [141.274095, -16.38887], + [141.398222, -15.840532], + [141.702183, -15.044921], + [141.56338, -14.561333], + [141.63552, -14.270395], + [141.519869, -13.698078], + [141.65092, -12.944688], + [141.842691, -12.741548], + [141.68699, -12.407614], + [141.928629, -11.877466], + [142.118488, -11.328042], + [142.143706, -11.042737], + [142.51526, -10.668186], + [142.79731, -11.157355], + [142.866763, -11.784707], + [143.115947, -11.90563], + [143.158632, -12.325656], + [143.522124, -12.834358], + [143.597158, -13.400422], + [143.561811, -13.763656] + ] + ] + ] + }, + "id": "AUS" + }, + { + "type": "Feature", + "properties": { "name": "Austria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.979667, 48.123497], + [16.903754, 47.714866], + [16.340584, 47.712902], + [16.534268, 47.496171], + [16.202298, 46.852386], + [16.011664, 46.683611], + [15.137092, 46.658703], + [14.632472, 46.431817], + [13.806475, 46.509306], + [12.376485, 46.767559], + [12.153088, 47.115393], + [11.164828, 46.941579], + [11.048556, 46.751359], + [10.442701, 46.893546], + [9.932448, 46.920728], + [9.47997, 47.10281], + [9.632932, 47.347601], + [9.594226, 47.525058], + [9.896068, 47.580197], + [10.402084, 47.302488], + [10.544504, 47.566399], + [11.426414, 47.523766], + [12.141357, 47.703083], + [12.62076, 47.672388], + [12.932627, 47.467646], + [13.025851, 47.637584], + [12.884103, 48.289146], + [13.243357, 48.416115], + [13.595946, 48.877172], + [14.338898, 48.555305], + [14.901447, 48.964402], + [15.253416, 49.039074], + [16.029647, 48.733899], + [16.499283, 48.785808], + [16.960288, 48.596982], + [16.879983, 48.470013], + [16.979667, 48.123497] + ] + ] + }, + "id": "AUT" + }, + { + "type": "Feature", + "properties": { "name": "Azerbaijan" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [45.001987, 39.740004], + [45.298145, 39.471751], + [45.739978, 39.473999], + [45.735379, 39.319719], + [46.143623, 38.741201], + [45.457722, 38.874139], + [44.952688, 39.335765], + [44.79399, 39.713003], + [45.001987, 39.740004] + ] + ], + [ + [ + [47.373315, 41.219732], + [47.815666, 41.151416], + [47.987283, 41.405819], + [48.584353, 41.80887], + [49.110264, 41.282287], + [49.618915, 40.572924], + [50.08483, 40.526157], + [50.392821, 40.256561], + [49.569202, 40.176101], + [49.395259, 39.399482], + [49.223228, 39.049219], + [48.856532, 38.815486], + [48.883249, 38.320245], + [48.634375, 38.270378], + [48.010744, 38.794015], + [48.355529, 39.288765], + [48.060095, 39.582235], + [47.685079, 39.508364], + [46.50572, 38.770605], + [46.483499, 39.464155], + [46.034534, 39.628021], + [45.610012, 39.899994], + [45.891907, 40.218476], + [45.359175, 40.561504], + [45.560351, 40.81229], + [45.179496, 40.985354], + [44.97248, 41.248129], + [45.217426, 41.411452], + [45.962601, 41.123873], + [46.501637, 41.064445], + [46.637908, 41.181673], + [46.145432, 41.722802], + [46.404951, 41.860675], + [46.686071, 41.827137], + [47.373315, 41.219732] + ] + ] + ] + }, + "id": "AZE" + }, + { + "type": "Feature", + "properties": { "name": "Burundi" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [29.339998, -4.499983], + [29.276384, -3.293907], + [29.024926, -2.839258], + [29.632176, -2.917858], + [29.938359, -2.348487], + [30.469696, -2.413858], + [30.527677, -2.807632], + [30.743013, -3.034285], + [30.752263, -3.35933], + [30.50556, -3.568567], + [30.116333, -4.090138], + [29.753512, -4.452389], + [29.339998, -4.499983] + ] + ] + }, + "id": "BDI" + }, + { + "type": "Feature", + "properties": { "name": "Belgium" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [3.314971, 51.345781], + [4.047071, 51.267259], + [4.973991, 51.475024], + [5.606976, 51.037298], + [6.156658, 50.803721], + [6.043073, 50.128052], + [5.782417, 50.090328], + [5.674052, 49.529484], + [4.799222, 49.985373], + [4.286023, 49.907497], + [3.588184, 50.378992], + [3.123252, 50.780363], + [2.658422, 50.796848], + [2.513573, 51.148506], + [3.314971, 51.345781] + ] + ] + }, + "id": "BEL" + }, + { + "type": "Feature", + "properties": { "name": "Benin" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.691702, 6.258817], + [1.865241, 6.142158], + [1.618951, 6.832038], + [1.664478, 9.12859], + [1.463043, 9.334624], + [1.425061, 9.825395], + [1.077795, 10.175607], + [0.772336, 10.470808], + [0.899563, 10.997339], + [1.24347, 11.110511], + [1.447178, 11.547719], + [1.935986, 11.64115], + [2.154474, 11.94015], + [2.490164, 12.233052], + [2.848643, 12.235636], + [3.61118, 11.660167], + [3.572216, 11.327939], + [3.797112, 10.734746], + [3.60007, 10.332186], + [3.705438, 10.06321], + [3.220352, 9.444153], + [2.912308, 9.137608], + [2.723793, 8.506845], + [2.749063, 7.870734], + [2.691702, 6.258817] + ] + ] + }, + "id": "BEN" + }, + { + "type": "Feature", + "properties": { "name": "Burkina Faso" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.827496, 9.642461], + [-3.511899, 9.900326], + [-3.980449, 9.862344], + [-4.330247, 9.610835], + [-4.779884, 9.821985], + [-4.954653, 10.152714], + [-5.404342, 10.370737], + [-5.470565, 10.95127], + [-5.197843, 11.375146], + [-5.220942, 11.713859], + [-4.427166, 12.542646], + [-4.280405, 13.228444], + [-4.006391, 13.472485], + [-3.522803, 13.337662], + [-3.103707, 13.541267], + [-2.967694, 13.79815], + [-2.191825, 14.246418], + [-2.001035, 14.559008], + [-1.066363, 14.973815], + [-0.515854, 15.116158], + [-0.266257, 14.924309], + [0.374892, 14.928908], + [0.295646, 14.444235], + [0.429928, 13.988733], + [0.993046, 13.33575], + [1.024103, 12.851826], + [2.177108, 12.625018], + [2.154474, 11.94015], + [1.935986, 11.64115], + [1.447178, 11.547719], + [1.24347, 11.110511], + [0.899563, 10.997339], + [0.023803, 11.018682], + [-0.438702, 11.098341], + [-0.761576, 10.93693], + [-1.203358, 11.009819], + [-2.940409, 10.96269], + [-2.963896, 10.395335], + [-2.827496, 9.642461] + ] + ] + }, + "id": "BFA" + }, + { + "type": "Feature", + "properties": { "name": "Bangladesh" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [92.672721, 22.041239], + [92.652257, 21.324048], + [92.303234, 21.475485], + [92.368554, 20.670883], + [92.082886, 21.192195], + [92.025215, 21.70157], + [91.834891, 22.182936], + [91.417087, 22.765019], + [90.496006, 22.805017], + [90.586957, 22.392794], + [90.272971, 21.836368], + [89.847467, 22.039146], + [89.70205, 21.857116], + [89.418863, 21.966179], + [89.031961, 22.055708], + [88.876312, 22.879146], + [88.52977, 23.631142], + [88.69994, 24.233715], + [88.084422, 24.501657], + [88.306373, 24.866079], + [88.931554, 25.238692], + [88.209789, 25.768066], + [88.563049, 26.446526], + [89.355094, 26.014407], + [89.832481, 25.965082], + [89.920693, 25.26975], + [90.872211, 25.132601], + [91.799596, 25.147432], + [92.376202, 24.976693], + [91.915093, 24.130414], + [91.46773, 24.072639], + [91.158963, 23.503527], + [91.706475, 22.985264], + [91.869928, 23.624346], + [92.146035, 23.627499], + [92.672721, 22.041239] + ] + ] + }, + "id": "BGD" + }, + { + "type": "Feature", + "properties": { "name": "Bulgaria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.65715, 44.234923], + [22.944832, 43.823785], + [23.332302, 43.897011], + [24.100679, 43.741051], + [25.569272, 43.688445], + [26.065159, 43.943494], + [27.2424, 44.175986], + [27.970107, 43.812468], + [28.558081, 43.707462], + [28.039095, 43.293172], + [27.673898, 42.577892], + [27.99672, 42.007359], + [27.135739, 42.141485], + [26.117042, 41.826905], + [26.106138, 41.328899], + [25.197201, 41.234486], + [24.492645, 41.583896], + [23.692074, 41.309081], + [22.952377, 41.337994], + [22.881374, 41.999297], + [22.380526, 42.32026], + [22.545012, 42.461362], + [22.436595, 42.580321], + [22.604801, 42.898519], + [22.986019, 43.211161], + [22.500157, 43.642814], + [22.410446, 44.008063], + [22.65715, 44.234923] + ] + ] + }, + "id": "BGR" + }, + { + "type": "Feature", + "properties": { "name": "The Bahamas" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-77.53466, 23.75975], + [-77.78, 23.71], + [-78.03405, 24.28615], + [-78.40848, 24.57564], + [-78.19087, 25.2103], + [-77.89, 25.17], + [-77.54, 24.34], + [-77.53466, 23.75975] + ] + ], + [ + [ + [-77.82, 26.58], + [-78.91, 26.42], + [-78.98, 26.79], + [-78.51, 26.87], + [-77.85, 26.84], + [-77.82, 26.58] + ] + ], + [ + [ + [-77, 26.59], + [-77.17255, 25.87918], + [-77.35641, 26.00735], + [-77.34, 26.53], + [-77.78802, 26.92516], + [-77.79, 27.04], + [-77, 26.59] + ] + ] + ] + }, + "id": "BHS" + }, + { + "type": "Feature", + "properties": { "name": "Bosnia and Herzegovina" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [19.005486, 44.860234], + [19.36803, 44.863], + [19.11761, 44.42307], + [19.59976, 44.03847], + [19.454, 43.5681], + [19.21852, 43.52384], + [19.03165, 43.43253], + [18.70648, 43.20011], + [18.56, 42.65], + [17.674922, 43.028563], + [17.297373, 43.446341], + [16.916156, 43.667722], + [16.456443, 44.04124], + [16.23966, 44.351143], + [15.750026, 44.818712], + [15.959367, 45.233777], + [16.318157, 45.004127], + [16.534939, 45.211608], + [17.002146, 45.233777], + [17.861783, 45.06774], + [18.553214, 45.08159], + [19.005486, 44.860234] + ] + ] + }, + "id": "BIH" + }, + { + "type": "Feature", + "properties": { "name": "Belarus" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.484128, 53.912498], + [24.450684, 53.905702], + [25.536354, 54.282423], + [25.768433, 54.846963], + [26.588279, 55.167176], + [26.494331, 55.615107], + [27.10246, 55.783314], + [28.176709, 56.16913], + [29.229513, 55.918344], + [29.371572, 55.670091], + [29.896294, 55.789463], + [30.873909, 55.550976], + [30.971836, 55.081548], + [30.757534, 54.811771], + [31.384472, 54.157056], + [31.791424, 53.974639], + [31.731273, 53.794029], + [32.405599, 53.618045], + [32.693643, 53.351421], + [32.304519, 53.132726], + [31.497644, 53.167427], + [31.305201, 53.073996], + [31.540018, 52.742052], + [31.785998, 52.101678], + [30.927549, 52.042353], + [30.619454, 51.822806], + [30.555117, 51.319503], + [30.157364, 51.416138], + [29.254938, 51.368234], + [28.992835, 51.602044], + [28.617613, 51.427714], + [28.241615, 51.572227], + [27.454066, 51.592303], + [26.337959, 51.832289], + [25.327788, 51.910656], + [24.553106, 51.888461], + [24.005078, 51.617444], + [23.527071, 51.578454], + [23.508002, 52.023647], + [23.199494, 52.486977], + [23.799199, 52.691099], + [23.804935, 53.089731], + [23.527536, 53.470122], + [23.484128, 53.912498] + ] + ] + }, + "id": "BLR" + }, + { + "type": "Feature", + "properties": { "name": "Belize" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.14308, 17.808319], + [-89.150909, 17.955468], + [-89.029857, 18.001511], + [-88.848344, 17.883198], + [-88.490123, 18.486831], + [-88.300031, 18.499982], + [-88.296336, 18.353273], + [-88.106813, 18.348674], + [-88.123479, 18.076675], + [-88.285355, 17.644143], + [-88.197867, 17.489475], + [-88.302641, 17.131694], + [-88.239518, 17.036066], + [-88.355428, 16.530774], + [-88.551825, 16.265467], + [-88.732434, 16.233635], + [-88.930613, 15.887273], + [-89.229122, 15.886938], + [-89.150806, 17.015577], + [-89.14308, 17.808319] + ] + ] + }, + "id": "BLZ" + }, + { + "type": "Feature", + "properties": { "name": "Bolivia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.846468, -22.034985], + [-63.986838, -21.993644], + [-64.377021, -22.798091], + [-64.964892, -22.075862], + [-66.273339, -21.83231], + [-67.106674, -22.735925], + [-67.82818, -22.872919], + [-68.219913, -21.494347], + [-68.757167, -20.372658], + [-68.442225, -19.405068], + [-68.966818, -18.981683], + [-69.100247, -18.260125], + [-69.590424, -17.580012], + [-68.959635, -16.500698], + [-69.389764, -15.660129], + [-69.160347, -15.323974], + [-69.339535, -14.953195], + [-68.948887, -14.453639], + [-68.929224, -13.602684], + [-68.88008, -12.899729], + [-68.66508, -12.5613], + [-69.529678, -10.951734], + [-68.786158, -11.03638], + [-68.271254, -11.014521], + [-68.048192, -10.712059], + [-67.173801, -10.306812], + [-66.646908, -9.931331], + [-65.338435, -9.761988], + [-65.444837, -10.511451], + [-65.321899, -10.895872], + [-65.402281, -11.56627], + [-64.316353, -12.461978], + [-63.196499, -12.627033], + [-62.80306, -13.000653], + [-62.127081, -13.198781], + [-61.713204, -13.489202], + [-61.084121, -13.479384], + [-60.503304, -13.775955], + [-60.459198, -14.354007], + [-60.264326, -14.645979], + [-60.251149, -15.077219], + [-60.542966, -15.09391], + [-60.15839, -16.258284], + [-58.24122, -16.299573], + [-58.388058, -16.877109], + [-58.280804, -17.27171], + [-57.734558, -17.552468], + [-57.498371, -18.174188], + [-57.676009, -18.96184], + [-57.949997, -19.400004], + [-57.853802, -19.969995], + [-58.166392, -20.176701], + [-58.183471, -19.868399], + [-59.115042, -19.356906], + [-60.043565, -19.342747], + [-61.786326, -19.633737], + [-62.265961, -20.513735], + [-62.291179, -21.051635], + [-62.685057, -22.249029], + [-62.846468, -22.034985] + ] + ] + }, + "id": "BOL" + }, + { + "type": "Feature", + "properties": { "name": "Brazil" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-57.625133, -30.216295], + [-56.2909, -28.852761], + [-55.162286, -27.881915], + [-54.490725, -27.474757], + [-53.648735, -26.923473], + [-53.628349, -26.124865], + [-54.13005, -25.547639], + [-54.625291, -25.739255], + [-54.428946, -25.162185], + [-54.293476, -24.5708], + [-54.29296, -24.021014], + [-54.652834, -23.839578], + [-55.027902, -24.001274], + [-55.400747, -23.956935], + [-55.517639, -23.571998], + [-55.610683, -22.655619], + [-55.797958, -22.35693], + [-56.473317, -22.0863], + [-56.88151, -22.282154], + [-57.937156, -22.090176], + [-57.870674, -20.732688], + [-58.166392, -20.176701], + [-57.853802, -19.969995], + [-57.949997, -19.400004], + [-57.676009, -18.96184], + [-57.498371, -18.174188], + [-57.734558, -17.552468], + [-58.280804, -17.27171], + [-58.388058, -16.877109], + [-58.24122, -16.299573], + [-60.15839, -16.258284], + [-60.542966, -15.09391], + [-60.251149, -15.077219], + [-60.264326, -14.645979], + [-60.459198, -14.354007], + [-60.503304, -13.775955], + [-61.084121, -13.479384], + [-61.713204, -13.489202], + [-62.127081, -13.198781], + [-62.80306, -13.000653], + [-63.196499, -12.627033], + [-64.316353, -12.461978], + [-65.402281, -11.56627], + [-65.321899, -10.895872], + [-65.444837, -10.511451], + [-65.338435, -9.761988], + [-66.646908, -9.931331], + [-67.173801, -10.306812], + [-68.048192, -10.712059], + [-68.271254, -11.014521], + [-68.786158, -11.03638], + [-69.529678, -10.951734], + [-70.093752, -11.123972], + [-70.548686, -11.009147], + [-70.481894, -9.490118], + [-71.302412, -10.079436], + [-72.184891, -10.053598], + [-72.563033, -9.520194], + [-73.226713, -9.462213], + [-73.015383, -9.032833], + [-73.571059, -8.424447], + [-73.987235, -7.52383], + [-73.723401, -7.340999], + [-73.724487, -6.918595], + [-73.120027, -6.629931], + [-73.219711, -6.089189], + [-72.964507, -5.741251], + [-72.891928, -5.274561], + [-71.748406, -4.593983], + [-70.928843, -4.401591], + [-70.794769, -4.251265], + [-69.893635, -4.298187], + [-69.444102, -1.556287], + [-69.420486, -1.122619], + [-69.577065, -0.549992], + [-70.020656, -0.185156], + [-70.015566, 0.541414], + [-69.452396, 0.706159], + [-69.252434, 0.602651], + [-69.218638, 0.985677], + [-69.804597, 1.089081], + [-69.816973, 1.714805], + [-67.868565, 1.692455], + [-67.53781, 2.037163], + [-67.259998, 1.719999], + [-67.065048, 1.130112], + [-66.876326, 1.253361], + [-66.325765, 0.724452], + [-65.548267, 0.789254], + [-65.354713, 1.095282], + [-64.611012, 1.328731], + [-64.199306, 1.492855], + [-64.083085, 1.916369], + [-63.368788, 2.2009], + [-63.422867, 2.411068], + [-64.269999, 2.497006], + [-64.408828, 3.126786], + [-64.368494, 3.79721], + [-64.816064, 4.056445], + [-64.628659, 4.148481], + [-63.888343, 4.02053], + [-63.093198, 3.770571], + [-62.804533, 4.006965], + [-62.08543, 4.162124], + [-60.966893, 4.536468], + [-60.601179, 4.918098], + [-60.733574, 5.200277], + [-60.213683, 5.244486], + [-59.980959, 5.014061], + [-60.111002, 4.574967], + [-59.767406, 4.423503], + [-59.53804, 3.958803], + [-59.815413, 3.606499], + [-59.974525, 2.755233], + [-59.718546, 2.24963], + [-59.646044, 1.786894], + [-59.030862, 1.317698], + [-58.540013, 1.268088], + [-58.429477, 1.463942], + [-58.11345, 1.507195], + [-57.660971, 1.682585], + [-57.335823, 1.948538], + [-56.782704, 1.863711], + [-56.539386, 1.899523], + [-55.995698, 1.817667], + [-55.9056, 2.021996], + [-56.073342, 2.220795], + [-55.973322, 2.510364], + [-55.569755, 2.421506], + [-55.097587, 2.523748], + [-54.524754, 2.311849], + [-54.088063, 2.105557], + [-53.778521, 2.376703], + [-53.554839, 2.334897], + [-53.418465, 2.053389], + [-52.939657, 2.124858], + [-52.556425, 2.504705], + [-52.249338, 3.241094], + [-51.657797, 4.156232], + [-51.317146, 4.203491], + [-51.069771, 3.650398], + [-50.508875, 1.901564], + [-49.974076, 1.736483], + [-49.947101, 1.04619], + [-50.699251, 0.222984], + [-50.388211, -0.078445], + [-48.620567, -0.235489], + [-48.584497, -1.237805], + [-47.824956, -0.581618], + [-46.566584, -0.941028], + [-44.905703, -1.55174], + [-44.417619, -2.13775], + [-44.581589, -2.691308], + [-43.418791, -2.38311], + [-41.472657, -2.912018], + [-39.978665, -2.873054], + [-38.500383, -3.700652], + [-37.223252, -4.820946], + [-36.452937, -5.109404], + [-35.597796, -5.149504], + [-35.235389, -5.464937], + [-34.89603, -6.738193], + [-34.729993, -7.343221], + [-35.128212, -8.996401], + [-35.636967, -9.649282], + [-37.046519, -11.040721], + [-37.683612, -12.171195], + [-38.423877, -13.038119], + [-38.673887, -13.057652], + [-38.953276, -13.79337], + [-38.882298, -15.667054], + [-39.161092, -17.208407], + [-39.267339, -17.867746], + [-39.583521, -18.262296], + [-39.760823, -19.599113], + [-40.774741, -20.904512], + [-40.944756, -21.937317], + [-41.754164, -22.370676], + [-41.988284, -22.97007], + [-43.074704, -22.967693], + [-44.647812, -23.351959], + [-45.352136, -23.796842], + [-46.472093, -24.088969], + [-47.648972, -24.885199], + [-48.495458, -25.877025], + [-48.641005, -26.623698], + [-48.474736, -27.175912], + [-48.66152, -28.186135], + [-48.888457, -28.674115], + [-49.587329, -29.224469], + [-50.696874, -30.984465], + [-51.576226, -31.777698], + [-52.256081, -32.24537], + [-52.7121, -33.196578], + [-53.373662, -33.768378], + [-53.650544, -33.202004], + [-53.209589, -32.727666], + [-53.787952, -32.047243], + [-54.572452, -31.494511], + [-55.60151, -30.853879], + [-55.973245, -30.883076], + [-56.976026, -30.109686], + [-57.625133, -30.216295] + ] + ] + }, + "id": "BRA" + }, + { + "type": "Feature", + "properties": { "name": "Brunei" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [114.204017, 4.525874], + [114.599961, 4.900011], + [115.45071, 5.44773], + [115.4057, 4.955228], + [115.347461, 4.316636], + [114.869557, 4.348314], + [114.659596, 4.007637], + [114.204017, 4.525874] + ] + ] + }, + "id": "BRN" + }, + { + "type": "Feature", + "properties": { "name": "Bhutan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [91.696657, 27.771742], + [92.103712, 27.452614], + [92.033484, 26.83831], + [91.217513, 26.808648], + [90.373275, 26.875724], + [89.744528, 26.719403], + [88.835643, 27.098966], + [88.814248, 27.299316], + [89.47581, 28.042759], + [90.015829, 28.296439], + [90.730514, 28.064954], + [91.258854, 28.040614], + [91.696657, 27.771742] + ] + ] + }, + "id": "BTN" + }, + { + "type": "Feature", + "properties": { "name": "Botswana" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [25.649163, -18.536026], + [25.850391, -18.714413], + [26.164791, -19.293086], + [27.296505, -20.39152], + [27.724747, -20.499059], + [27.727228, -20.851802], + [28.02137, -21.485975], + [28.794656, -21.639454], + [29.432188, -22.091313], + [28.017236, -22.827754], + [27.11941, -23.574323], + [26.786407, -24.240691], + [26.485753, -24.616327], + [25.941652, -24.696373], + [25.765849, -25.174845], + [25.664666, -25.486816], + [25.025171, -25.71967], + [24.211267, -25.670216], + [23.73357, -25.390129], + [23.312097, -25.26869], + [22.824271, -25.500459], + [22.579532, -25.979448], + [22.105969, -26.280256], + [21.605896, -26.726534], + [20.889609, -26.828543], + [20.66647, -26.477453], + [20.758609, -25.868136], + [20.165726, -24.917962], + [19.895768, -24.76779], + [19.895458, -21.849157], + [20.881134, -21.814327], + [20.910641, -18.252219], + [21.65504, -18.219146], + [23.196858, -17.869038], + [23.579006, -18.281261], + [24.217365, -17.889347], + [24.520705, -17.887125], + [25.084443, -17.661816], + [25.264226, -17.73654], + [25.649163, -18.536026] + ] + ] + }, + "id": "BWA" + }, + { + "type": "Feature", + "properties": { "name": "Central African Republic" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [15.27946, 7.421925], + [16.106232, 7.497088], + [16.290562, 7.754307], + [16.456185, 7.734774], + [16.705988, 7.508328], + [17.96493, 7.890914], + [18.389555, 8.281304], + [18.911022, 8.630895], + [18.81201, 8.982915], + [19.094008, 9.074847], + [20.059685, 9.012706], + [21.000868, 9.475985], + [21.723822, 10.567056], + [22.231129, 10.971889], + [22.864165, 11.142395], + [22.977544, 10.714463], + [23.554304, 10.089255], + [23.55725, 9.681218], + [23.394779, 9.265068], + [23.459013, 8.954286], + [23.805813, 8.666319], + [24.567369, 8.229188], + [25.114932, 7.825104], + [25.124131, 7.500085], + [25.796648, 6.979316], + [26.213418, 6.546603], + [26.465909, 5.946717], + [27.213409, 5.550953], + [27.374226, 5.233944], + [27.044065, 5.127853], + [26.402761, 5.150875], + [25.650455, 5.256088], + [25.278798, 5.170408], + [25.128833, 4.927245], + [24.805029, 4.897247], + [24.410531, 5.108784], + [23.297214, 4.609693], + [22.84148, 4.710126], + [22.704124, 4.633051], + [22.405124, 4.02916], + [21.659123, 4.224342], + [20.927591, 4.322786], + [20.290679, 4.691678], + [19.467784, 5.031528], + [18.932312, 4.709506], + [18.542982, 4.201785], + [18.453065, 3.504386], + [17.8099, 3.560196], + [17.133042, 3.728197], + [16.537058, 3.198255], + [16.012852, 2.26764], + [15.907381, 2.557389], + [15.862732, 3.013537], + [15.405396, 3.335301], + [15.03622, 3.851367], + [14.950953, 4.210389], + [14.478372, 4.732605], + [14.558936, 5.030598], + [14.459407, 5.451761], + [14.53656, 6.226959], + [14.776545, 6.408498], + [15.27946, 7.421925] + ] + ] + }, + "id": "CAF" + }, + { + "type": "Feature", + "properties": { "name": "Canada" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-63.6645, 46.55001], + [-62.9393, 46.41587], + [-62.01208, 46.44314], + [-62.50391, 46.03339], + [-62.87433, 45.96818], + [-64.1428, 46.39265], + [-64.39261, 46.72747], + [-64.01486, 47.03601], + [-63.6645, 46.55001] + ] + ], + [ + [ + [-61.806305, 49.10506], + [-62.29318, 49.08717], + [-63.58926, 49.40069], + [-64.51912, 49.87304], + [-64.17322, 49.95718], + [-62.85829, 49.70641], + [-61.835585, 49.28855], + [-61.806305, 49.10506] + ] + ], + [ + [ + [-123.510002, 48.510011], + [-124.012891, 48.370846], + [-125.655013, 48.825005], + [-125.954994, 49.179996], + [-126.850004, 49.53], + [-127.029993, 49.814996], + [-128.059336, 49.994959], + [-128.444584, 50.539138], + [-128.358414, 50.770648], + [-127.308581, 50.552574], + [-126.695001, 50.400903], + [-125.755007, 50.295018], + [-125.415002, 49.950001], + [-124.920768, 49.475275], + [-123.922509, 49.062484], + [-123.510002, 48.510011] + ] + ], + [ + [ + [-56.134036, 50.68701], + [-56.795882, 49.812309], + [-56.143105, 50.150117], + [-55.471492, 49.935815], + [-55.822401, 49.587129], + [-54.935143, 49.313011], + [-54.473775, 49.556691], + [-53.476549, 49.249139], + [-53.786014, 48.516781], + [-53.086134, 48.687804], + [-52.958648, 48.157164], + [-52.648099, 47.535548], + [-53.069158, 46.655499], + [-53.521456, 46.618292], + [-54.178936, 46.807066], + [-53.961869, 47.625207], + [-54.240482, 47.752279], + [-55.400773, 46.884994], + [-55.997481, 46.91972], + [-55.291219, 47.389562], + [-56.250799, 47.632545], + [-57.325229, 47.572807], + [-59.266015, 47.603348], + [-59.419494, 47.899454], + [-58.796586, 48.251525], + [-59.231625, 48.523188], + [-58.391805, 49.125581], + [-57.35869, 50.718274], + [-56.73865, 51.287438], + [-55.870977, 51.632094], + [-55.406974, 51.588273], + [-55.600218, 51.317075], + [-56.134036, 50.68701] + ] + ], + [ + [ + [-132.710008, 54.040009], + [-132.710009, 54.040009], + [-132.710008, 54.040009], + [-132.710008, 54.040009], + [-131.74999, 54.120004], + [-132.04948, 52.984621], + [-131.179043, 52.180433], + [-131.57783, 52.182371], + [-132.180428, 52.639707], + [-132.549992, 53.100015], + [-133.054611, 53.411469], + [-133.239664, 53.85108], + [-133.180004, 54.169975], + [-132.710008, 54.040009] + ] + ], + [ + [ + [-79.26582, 62.158675], + [-79.65752, 61.63308], + [-80.09956, 61.7181], + [-80.36215, 62.01649], + [-80.315395, 62.085565], + [-79.92939, 62.3856], + [-79.52002, 62.36371], + [-79.26582, 62.158675] + ] + ], + [ + [ + [-81.89825, 62.7108], + [-83.06857, 62.15922], + [-83.77462, 62.18231], + [-83.99367, 62.4528], + [-83.25048, 62.91409], + [-81.87699, 62.90458], + [-81.89825, 62.7108] + ] + ], + [ + [ + [-85.161308, 65.657285], + [-84.975764, 65.217518], + [-84.464012, 65.371772], + [-83.882626, 65.109618], + [-82.787577, 64.766693], + [-81.642014, 64.455136], + [-81.55344, 63.979609], + [-80.817361, 64.057486], + [-80.103451, 63.725981], + [-80.99102, 63.411246], + [-82.547178, 63.651722], + [-83.108798, 64.101876], + [-84.100417, 63.569712], + [-85.523405, 63.052379], + [-85.866769, 63.637253], + [-87.221983, 63.541238], + [-86.35276, 64.035833], + [-86.224886, 64.822917], + [-85.883848, 65.738778], + [-85.161308, 65.657285] + ] + ], + [ + [ + [-75.86588, 67.14886], + [-76.98687, 67.09873], + [-77.2364, 67.58809], + [-76.81166, 68.14856], + [-75.89521, 68.28721], + [-75.1145, 68.01036], + [-75.10333, 67.58202], + [-75.21597, 67.44425], + [-75.86588, 67.14886] + ] + ], + [ + [ + [-95.647681, 69.10769], + [-96.269521, 68.75704], + [-97.617401, 69.06003], + [-98.431801, 68.9507], + [-99.797401, 69.40003], + [-98.917401, 69.71003], + [-98.218261, 70.14354], + [-97.157401, 69.86003], + [-96.557401, 69.68003], + [-96.257401, 69.49003], + [-95.647681, 69.10769] + ] + ], + [ + [ + [-90.5471, 69.49766], + [-90.55151, 68.47499], + [-89.21515, 69.25873], + [-88.01966, 68.61508], + [-88.31749, 67.87338], + [-87.35017, 67.19872], + [-86.30607, 67.92146], + [-85.57664, 68.78456], + [-85.52197, 69.88211], + [-84.10081, 69.80539], + [-82.62258, 69.65826], + [-81.28043, 69.16202], + [-81.2202, 68.66567], + [-81.96436, 68.13253], + [-81.25928, 67.59716], + [-81.38653, 67.11078], + [-83.34456, 66.41154], + [-84.73542, 66.2573], + [-85.76943, 66.55833], + [-86.0676, 66.05625], + [-87.03143, 65.21297], + [-87.32324, 64.77563], + [-88.48296, 64.09897], + [-89.91444, 64.03273], + [-90.70398, 63.61017], + [-90.77004, 62.96021], + [-91.93342, 62.83508], + [-93.15698, 62.02469], + [-94.24153, 60.89865], + [-94.62931, 60.11021], + [-94.6846, 58.94882], + [-93.21502, 58.78212], + [-92.76462, 57.84571], + [-92.29703, 57.08709], + [-90.89769, 57.28468], + [-89.03953, 56.85172], + [-88.03978, 56.47162], + [-87.32421, 55.99914], + [-86.07121, 55.72383], + [-85.01181, 55.3026], + [-83.36055, 55.24489], + [-82.27285, 55.14832], + [-82.4362, 54.28227], + [-82.12502, 53.27703], + [-81.40075, 52.15788], + [-79.91289, 51.20842], + [-79.14301, 51.53393], + [-78.60191, 52.56208], + [-79.12421, 54.14145], + [-79.82958, 54.66772], + [-78.22874, 55.13645], + [-77.0956, 55.83741], + [-76.54137, 56.53423], + [-76.62319, 57.20263], + [-77.30226, 58.05209], + [-78.51688, 58.80458], + [-77.33676, 59.85261], + [-77.77272, 60.75788], + [-78.10687, 62.31964], + [-77.41067, 62.55053], + [-75.69621, 62.2784], + [-74.6682, 62.18111], + [-73.83988, 62.4438], + [-72.90853, 62.10507], + [-71.67708, 61.52535], + [-71.37369, 61.13717], + [-69.59042, 61.06141], + [-69.62033, 60.22125], + [-69.2879, 58.95736], + [-68.37455, 58.80106], + [-67.64976, 58.21206], + [-66.20178, 58.76731], + [-65.24517, 59.87071], + [-64.58352, 60.33558], + [-63.80475, 59.4426], + [-62.50236, 58.16708], + [-61.39655, 56.96745], + [-61.79866, 56.33945], + [-60.46853, 55.77548], + [-59.56962, 55.20407], + [-57.97508, 54.94549], + [-57.3332, 54.6265], + [-56.93689, 53.78032], + [-56.15811, 53.64749], + [-55.75632, 53.27036], + [-55.68338, 52.14664], + [-56.40916, 51.7707], + [-57.12691, 51.41972], + [-58.77482, 51.0643], + [-60.03309, 50.24277], + [-61.72366, 50.08046], + [-63.86251, 50.29099], + [-65.36331, 50.2982], + [-66.39905, 50.22897], + [-67.23631, 49.51156], + [-68.51114, 49.06836], + [-69.95362, 47.74488], + [-71.10458, 46.82171], + [-70.25522, 46.98606], + [-68.65, 48.3], + [-66.55243, 49.1331], + [-65.05626, 49.23278], + [-64.17099, 48.74248], + [-65.11545, 48.07085], + [-64.79854, 46.99297], + [-64.47219, 46.23849], + [-63.17329, 45.73902], + [-61.52072, 45.88377], + [-60.51815, 47.00793], + [-60.4486, 46.28264], + [-59.80287, 45.9204], + [-61.03988, 45.26525], + [-63.25471, 44.67014], + [-64.24656, 44.26553], + [-65.36406, 43.54523], + [-66.1234, 43.61867], + [-66.16173, 44.46512], + [-64.42549, 45.29204], + [-66.02605, 45.25931], + [-67.13741, 45.13753], + [-67.79134, 45.70281], + [-67.79046, 47.06636], + [-68.23444, 47.35486], + [-68.905, 47.185], + [-69.237216, 47.447781], + [-69.99997, 46.69307], + [-70.305, 45.915], + [-70.66, 45.46], + [-71.08482, 45.30524], + [-71.405, 45.255], + [-71.50506, 45.0082], + [-73.34783, 45.00738], + [-74.867, 45.00048], + [-75.31821, 44.81645], + [-76.375, 44.09631], + [-76.5, 44.018459], + [-76.820034, 43.628784], + [-77.737885, 43.629056], + [-78.72028, 43.625089], + [-79.171674, 43.466339], + [-79.01, 43.27], + [-78.92, 42.965], + [-78.939362, 42.863611], + [-80.247448, 42.3662], + [-81.277747, 42.209026], + [-82.439278, 41.675105], + [-82.690089, 41.675105], + [-83.02981, 41.832796], + [-83.142, 41.975681], + [-83.12, 42.08], + [-82.9, 42.43], + [-82.43, 42.98], + [-82.137642, 43.571088], + [-82.337763, 44.44], + [-82.550925, 45.347517], + [-83.592851, 45.816894], + [-83.469551, 45.994686], + [-83.616131, 46.116927], + [-83.890765, 46.116927], + [-84.091851, 46.275419], + [-84.14212, 46.512226], + [-84.3367, 46.40877], + [-84.6049, 46.4396], + [-84.543749, 46.538684], + [-84.779238, 46.637102], + [-84.87608, 46.900083], + [-85.652363, 47.220219], + [-86.461991, 47.553338], + [-87.439793, 47.94], + [-88.378114, 48.302918], + [-89.272917, 48.019808], + [-89.6, 48.01], + [-90.83, 48.27], + [-91.64, 48.14], + [-92.61, 48.45], + [-93.63087, 48.60926], + [-94.32914, 48.67074], + [-94.64, 48.84], + [-94.81758, 49.38905], + [-95.15609, 49.38425], + [-95.15907, 49], + [-97.22872, 49.0007], + [-100.65, 49], + [-104.04826, 48.99986], + [-107.05, 49], + [-110.05, 49], + [-113, 49], + [-116.04818, 49], + [-117.03121, 49], + [-120, 49], + [-122.84, 49], + [-122.97421, 49.002538], + [-124.91024, 49.98456], + [-125.62461, 50.41656], + [-127.43561, 50.83061], + [-127.99276, 51.71583], + [-127.85032, 52.32961], + [-129.12979, 52.75538], + [-129.30523, 53.56159], + [-130.51497, 54.28757], + [-130.53611, 54.80278], + [-129.98, 55.285], + [-130.00778, 55.91583], + [-131.70781, 56.55212], + [-132.73042, 57.69289], + [-133.35556, 58.41028], + [-134.27111, 58.86111], + [-134.945, 59.27056], + [-135.47583, 59.78778], + [-136.47972, 59.46389], + [-137.4525, 58.905], + [-138.34089, 59.56211], + [-139.039, 60], + [-140.013, 60.27682], + [-140.99778, 60.30639], + [-140.9925, 66.00003], + [-140.986, 69.712], + [-139.12052, 69.47102], + [-137.54636, 68.99002], + [-136.50358, 68.89804], + [-135.62576, 69.31512], + [-134.41464, 69.62743], + [-132.92925, 69.50534], + [-131.43136, 69.94451], + [-129.79471, 70.19369], + [-129.10773, 69.77927], + [-128.36156, 70.01286], + [-128.13817, 70.48384], + [-127.44712, 70.37721], + [-125.75632, 69.48058], + [-124.42483, 70.1584], + [-124.28968, 69.39969], + [-123.06108, 69.56372], + [-122.6835, 69.85553], + [-121.47226, 69.79778], + [-119.94288, 69.37786], + [-117.60268, 69.01128], + [-116.22643, 68.84151], + [-115.2469, 68.90591], + [-113.89794, 68.3989], + [-115.30489, 67.90261], + [-113.49727, 67.68815], + [-110.798, 67.80612], + [-109.94619, 67.98104], + [-108.8802, 67.38144], + [-107.79239, 67.88736], + [-108.81299, 68.31164], + [-108.16721, 68.65392], + [-106.95, 68.7], + [-106.15, 68.8], + [-105.34282, 68.56122], + [-104.33791, 68.018], + [-103.22115, 68.09775], + [-101.45433, 67.64689], + [-99.90195, 67.80566], + [-98.4432, 67.78165], + [-98.5586, 68.40394], + [-97.66948, 68.57864], + [-96.11991, 68.23939], + [-96.12588, 67.29338], + [-95.48943, 68.0907], + [-94.685, 68.06383], + [-94.23282, 69.06903], + [-95.30408, 69.68571], + [-96.47131, 70.08976], + [-96.39115, 71.19482], + [-95.2088, 71.92053], + [-93.88997, 71.76015], + [-92.87818, 71.31869], + [-91.51964, 70.19129], + [-92.40692, 69.69997], + [-90.5471, 69.49766] + ] + ], + [ + [ + [-114.16717, 73.12145], + [-114.66634, 72.65277], + [-112.44102, 72.9554], + [-111.05039, 72.4504], + [-109.92035, 72.96113], + [-109.00654, 72.63335], + [-108.18835, 71.65089], + [-107.68599, 72.06548], + [-108.39639, 73.08953], + [-107.51645, 73.23598], + [-106.52259, 73.07601], + [-105.40246, 72.67259], + [-104.77484, 71.6984], + [-104.46476, 70.99297], + [-102.78537, 70.49776], + [-100.98078, 70.02432], + [-101.08929, 69.58447], + [-102.73116, 69.50402], + [-102.09329, 69.11962], + [-102.43024, 68.75282], + [-104.24, 68.91], + [-105.96, 69.18], + [-107.12254, 69.11922], + [-109, 68.78], + [-111.534149, 68.630059], + [-113.3132, 68.53554], + [-113.85496, 69.00744], + [-115.22, 69.28], + [-116.10794, 69.16821], + [-117.34, 69.96], + [-116.67473, 70.06655], + [-115.13112, 70.2373], + [-113.72141, 70.19237], + [-112.4161, 70.36638], + [-114.35, 70.6], + [-116.48684, 70.52045], + [-117.9048, 70.54056], + [-118.43238, 70.9092], + [-116.11311, 71.30918], + [-117.65568, 71.2952], + [-119.40199, 71.55859], + [-118.56267, 72.30785], + [-117.86642, 72.70594], + [-115.18909, 73.31459], + [-114.16717, 73.12145] + ] + ], + [ + [ + [-104.5, 73.42], + [-105.38, 72.76], + [-106.94, 73.46], + [-106.6, 73.6], + [-105.26, 73.64], + [-104.5, 73.42] + ] + ], + [ + [ + [-76.34, 73.102685], + [-76.251404, 72.826385], + [-77.314438, 72.855545], + [-78.39167, 72.876656], + [-79.486252, 72.742203], + [-79.775833, 72.802902], + [-80.876099, 73.333183], + [-80.833885, 73.693184], + [-80.353058, 73.75972], + [-78.064438, 73.651932], + [-76.34, 73.102685] + ] + ], + [ + [ + [-86.562179, 73.157447], + [-85.774371, 72.534126], + [-84.850112, 73.340278], + [-82.31559, 73.750951], + [-80.600088, 72.716544], + [-80.748942, 72.061907], + [-78.770639, 72.352173], + [-77.824624, 72.749617], + [-75.605845, 72.243678], + [-74.228616, 71.767144], + [-74.099141, 71.33084], + [-72.242226, 71.556925], + [-71.200015, 70.920013], + [-68.786054, 70.525024], + [-67.91497, 70.121948], + [-66.969033, 69.186087], + [-68.805123, 68.720198], + [-66.449866, 68.067163], + [-64.862314, 67.847539], + [-63.424934, 66.928473], + [-61.851981, 66.862121], + [-62.163177, 66.160251], + [-63.918444, 64.998669], + [-65.14886, 65.426033], + [-66.721219, 66.388041], + [-68.015016, 66.262726], + [-68.141287, 65.689789], + [-67.089646, 65.108455], + [-65.73208, 64.648406], + [-65.320168, 64.382737], + [-64.669406, 63.392927], + [-65.013804, 62.674185], + [-66.275045, 62.945099], + [-68.783186, 63.74567], + [-67.369681, 62.883966], + [-66.328297, 62.280075], + [-66.165568, 61.930897], + [-68.877367, 62.330149], + [-71.023437, 62.910708], + [-72.235379, 63.397836], + [-71.886278, 63.679989], + [-73.378306, 64.193963], + [-74.834419, 64.679076], + [-74.818503, 64.389093], + [-77.70998, 64.229542], + [-78.555949, 64.572906], + [-77.897281, 65.309192], + [-76.018274, 65.326969], + [-73.959795, 65.454765], + [-74.293883, 65.811771], + [-73.944912, 66.310578], + [-72.651167, 67.284576], + [-72.92606, 67.726926], + [-73.311618, 68.069437], + [-74.843307, 68.554627], + [-76.869101, 68.894736], + [-76.228649, 69.147769], + [-77.28737, 69.76954], + [-78.168634, 69.826488], + [-78.957242, 70.16688], + [-79.492455, 69.871808], + [-81.305471, 69.743185], + [-84.944706, 69.966634], + [-87.060003, 70.260001], + [-88.681713, 70.410741], + [-89.51342, 70.762038], + [-88.467721, 71.218186], + [-89.888151, 71.222552], + [-90.20516, 72.235074], + [-89.436577, 73.129464], + [-88.408242, 73.537889], + [-85.826151, 73.803816], + [-86.562179, 73.157447] + ] + ], + [ + [ + [-100.35642, 73.84389], + [-99.16387, 73.63339], + [-97.38, 73.76], + [-97.12, 73.47], + [-98.05359, 72.99052], + [-96.54, 72.56], + [-96.72, 71.66], + [-98.35966, 71.27285], + [-99.32286, 71.35639], + [-100.01482, 71.73827], + [-102.5, 72.51], + [-102.48, 72.83], + [-100.43836, 72.70588], + [-101.54, 73.36], + [-100.35642, 73.84389] + ] + ], + [ + [ + [-93.196296, 72.771992], + [-94.269047, 72.024596], + [-95.409856, 72.061881], + [-96.033745, 72.940277], + [-96.018268, 73.43743], + [-95.495793, 73.862417], + [-94.503658, 74.134907], + [-92.420012, 74.100025], + [-90.509793, 73.856732], + [-92.003965, 72.966244], + [-93.196296, 72.771992] + ] + ], + [ + [ + [-120.46, 71.383602], + [-123.09219, 70.90164], + [-123.62, 71.34], + [-125.928949, 71.868688], + [-125.5, 72.292261], + [-124.80729, 73.02256], + [-123.94, 73.68], + [-124.91775, 74.29275], + [-121.53788, 74.44893], + [-120.10978, 74.24135], + [-117.55564, 74.18577], + [-116.58442, 73.89607], + [-115.51081, 73.47519], + [-116.76794, 73.22292], + [-119.22, 72.52], + [-120.46, 71.82], + [-120.46, 71.383602] + ] + ], + [ + [ + [-93.612756, 74.979997], + [-94.156909, 74.592347], + [-95.608681, 74.666864], + [-96.820932, 74.927623], + [-96.288587, 75.377828], + [-94.85082, 75.647218], + [-93.977747, 75.29649], + [-93.612756, 74.979997] + ] + ], + [ + [ + [-98.5, 76.72], + [-97.735585, 76.25656], + [-97.704415, 75.74344], + [-98.16, 75], + [-99.80874, 74.89744], + [-100.88366, 75.05736], + [-100.86292, 75.64075], + [-102.50209, 75.5638], + [-102.56552, 76.3366], + [-101.48973, 76.30537], + [-99.98349, 76.64634], + [-98.57699, 76.58859], + [-98.5, 76.72] + ] + ], + [ + [ + [-108.21141, 76.20168], + [-107.81943, 75.84552], + [-106.92893, 76.01282], + [-105.881, 75.9694], + [-105.70498, 75.47951], + [-106.31347, 75.00527], + [-109.7, 74.85], + [-112.22307, 74.41696], + [-113.74381, 74.39427], + [-113.87135, 74.72029], + [-111.79421, 75.1625], + [-116.31221, 75.04343], + [-117.7104, 75.2222], + [-116.34602, 76.19903], + [-115.40487, 76.47887], + [-112.59056, 76.14134], + [-110.81422, 75.54919], + [-109.0671, 75.47321], + [-110.49726, 76.42982], + [-109.5811, 76.79417], + [-108.54859, 76.67832], + [-108.21141, 76.20168] + ] + ], + [ + [ + [-94.684086, 77.097878], + [-93.573921, 76.776296], + [-91.605023, 76.778518], + [-90.741846, 76.449597], + [-90.969661, 76.074013], + [-89.822238, 75.847774], + [-89.187083, 75.610166], + [-87.838276, 75.566189], + [-86.379192, 75.482421], + [-84.789625, 75.699204], + [-82.753445, 75.784315], + [-81.128531, 75.713983], + [-80.057511, 75.336849], + [-79.833933, 74.923127], + [-80.457771, 74.657304], + [-81.948843, 74.442459], + [-83.228894, 74.564028], + [-86.097452, 74.410032], + [-88.15035, 74.392307], + [-89.764722, 74.515555], + [-92.422441, 74.837758], + [-92.768285, 75.38682], + [-92.889906, 75.882655], + [-93.893824, 76.319244], + [-95.962457, 76.441381], + [-97.121379, 76.751078], + [-96.745123, 77.161389], + [-94.684086, 77.097878] + ] + ], + [ + [ + [-116.198587, 77.645287], + [-116.335813, 76.876962], + [-117.106051, 76.530032], + [-118.040412, 76.481172], + [-119.899318, 76.053213], + [-121.499995, 75.900019], + [-122.854924, 76.116543], + [-122.854925, 76.116543], + [-121.157535, 76.864508], + [-119.103939, 77.51222], + [-117.570131, 77.498319], + [-116.198587, 77.645287] + ] + ], + [ + [ + [-93.840003, 77.519997], + [-94.295608, 77.491343], + [-96.169654, 77.555111], + [-96.436304, 77.834629], + [-94.422577, 77.820005], + [-93.720656, 77.634331], + [-93.840003, 77.519997] + ] + ], + [ + [ + [-110.186938, 77.697015], + [-112.051191, 77.409229], + [-113.534279, 77.732207], + [-112.724587, 78.05105], + [-111.264443, 78.152956], + [-109.854452, 77.996325], + [-110.186938, 77.697015] + ] + ], + [ + [ + [-109.663146, 78.601973], + [-110.881314, 78.40692], + [-112.542091, 78.407902], + [-112.525891, 78.550555], + [-111.50001, 78.849994], + [-110.963661, 78.804441], + [-109.663146, 78.601973] + ] + ], + [ + [ + [-95.830295, 78.056941], + [-97.309843, 77.850597], + [-98.124289, 78.082857], + [-98.552868, 78.458105], + [-98.631984, 78.87193], + [-97.337231, 78.831984], + [-96.754399, 78.765813], + [-95.559278, 78.418315], + [-95.830295, 78.056941] + ] + ], + [ + [ + [-100.060192, 78.324754], + [-99.670939, 77.907545], + [-101.30394, 78.018985], + [-102.949809, 78.343229], + [-105.176133, 78.380332], + [-104.210429, 78.67742], + [-105.41958, 78.918336], + [-105.492289, 79.301594], + [-103.529282, 79.165349], + [-100.825158, 78.800462], + [-100.060192, 78.324754] + ] + ], + [ + [ + [-87.02, 79.66], + [-85.81435, 79.3369], + [-87.18756, 79.0393], + [-89.03535, 78.28723], + [-90.80436, 78.21533], + [-92.87669, 78.34333], + [-93.95116, 78.75099], + [-93.93574, 79.11373], + [-93.14524, 79.3801], + [-94.974, 79.37248], + [-96.07614, 79.70502], + [-96.70972, 80.15777], + [-96.01644, 80.60233], + [-95.32345, 80.90729], + [-94.29843, 80.97727], + [-94.73542, 81.20646], + [-92.40984, 81.25739], + [-91.13289, 80.72345], + [-89.45, 80.509322], + [-87.81, 80.32], + [-87.02, 79.66] + ] + ], + [ + [ + [-68.5, 83.106322], + [-65.82735, 83.02801], + [-63.68, 82.9], + [-61.85, 82.6286], + [-61.89388, 82.36165], + [-64.334, 81.92775], + [-66.75342, 81.72527], + [-67.65755, 81.50141], + [-65.48031, 81.50657], + [-67.84, 80.9], + [-69.4697, 80.61683], + [-71.18, 79.8], + [-73.2428, 79.63415], + [-73.88, 79.430162], + [-76.90773, 79.32309], + [-75.52924, 79.19766], + [-76.22046, 79.01907], + [-75.39345, 78.52581], + [-76.34354, 78.18296], + [-77.88851, 77.89991], + [-78.36269, 77.50859], + [-79.75951, 77.20968], + [-79.61965, 76.98336], + [-77.91089, 77.022045], + [-77.88911, 76.777955], + [-80.56125, 76.17812], + [-83.17439, 76.45403], + [-86.11184, 76.29901], + [-87.6, 76.42], + [-89.49068, 76.47239], + [-89.6161, 76.95213], + [-87.76739, 77.17833], + [-88.26, 77.9], + [-87.65, 77.970222], + [-84.97634, 77.53873], + [-86.34, 78.18], + [-87.96192, 78.37181], + [-87.15198, 78.75867], + [-85.37868, 78.9969], + [-85.09495, 79.34543], + [-86.50734, 79.73624], + [-86.93179, 80.25145], + [-84.19844, 80.20836], + [-83.408696, 80.1], + [-81.84823, 80.46442], + [-84.1, 80.58], + [-87.59895, 80.51627], + [-89.36663, 80.85569], + [-90.2, 81.26], + [-91.36786, 81.5531], + [-91.58702, 81.89429], + [-90.1, 82.085], + [-88.93227, 82.11751], + [-86.97024, 82.27961], + [-85.5, 82.652273], + [-84.260005, 82.6], + [-83.18, 82.32], + [-82.42, 82.86], + [-81.1, 83.02], + [-79.30664, 83.13056], + [-76.25, 83.172059], + [-75.71878, 83.06404], + [-72.83153, 83.23324], + [-70.665765, 83.169781], + [-68.5, 83.106322] + ] + ] + ] + }, + "id": "CAN" + }, + { + "type": "Feature", + "properties": { "name": "Switzerland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.594226, 47.525058], + [9.632932, 47.347601], + [9.47997, 47.10281], + [9.932448, 46.920728], + [10.442701, 46.893546], + [10.363378, 46.483571], + [9.922837, 46.314899], + [9.182882, 46.440215], + [8.966306, 46.036932], + [8.489952, 46.005151], + [8.31663, 46.163642], + [7.755992, 45.82449], + [7.273851, 45.776948], + [6.843593, 45.991147], + [6.5001, 46.429673], + [6.022609, 46.27299], + [6.037389, 46.725779], + [6.768714, 47.287708], + [6.736571, 47.541801], + [7.192202, 47.449766], + [7.466759, 47.620582], + [8.317301, 47.61358], + [8.522612, 47.830828], + [9.594226, 47.525058] + ] + ] + }, + "id": "CHE" + }, + { + "type": "Feature", + "properties": { "name": "Chile" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-68.63401, -52.63637], + [-68.63335, -54.8695], + [-67.56244, -54.87001], + [-66.95992, -54.89681], + [-67.29103, -55.30124], + [-68.14863, -55.61183], + [-68.639991, -55.580018], + [-69.2321, -55.49906], + [-69.95809, -55.19843], + [-71.00568, -55.05383], + [-72.2639, -54.49514], + [-73.2852, -53.95752], + [-74.66253, -52.83749], + [-73.8381, -53.04743], + [-72.43418, -53.7154], + [-71.10773, -54.07433], + [-70.59178, -53.61583], + [-70.26748, -52.93123], + [-69.34565, -52.5183], + [-68.63401, -52.63637] + ] + ], + [ + [ + [-68.219913, -21.494347], + [-67.82818, -22.872919], + [-67.106674, -22.735925], + [-66.985234, -22.986349], + [-67.328443, -24.025303], + [-68.417653, -24.518555], + [-68.386001, -26.185016], + [-68.5948, -26.506909], + [-68.295542, -26.89934], + [-69.001235, -27.521214], + [-69.65613, -28.459141], + [-70.01355, -29.367923], + [-69.919008, -30.336339], + [-70.535069, -31.36501], + [-70.074399, -33.09121], + [-69.814777, -33.273886], + [-69.817309, -34.193571], + [-70.388049, -35.169688], + [-70.364769, -36.005089], + [-71.121881, -36.658124], + [-71.118625, -37.576827], + [-70.814664, -38.552995], + [-71.413517, -38.916022], + [-71.680761, -39.808164], + [-71.915734, -40.832339], + [-71.746804, -42.051386], + [-72.148898, -42.254888], + [-71.915424, -43.408565], + [-71.464056, -43.787611], + [-71.793623, -44.207172], + [-71.329801, -44.407522], + [-71.222779, -44.784243], + [-71.659316, -44.973689], + [-71.552009, -45.560733], + [-71.917258, -46.884838], + [-72.447355, -47.738533], + [-72.331161, -48.244238], + [-72.648247, -48.878618], + [-73.415436, -49.318436], + [-73.328051, -50.378785], + [-72.975747, -50.74145], + [-72.309974, -50.67701], + [-72.329404, -51.425956], + [-71.914804, -52.009022], + [-69.498362, -52.142761], + [-68.571545, -52.299444], + [-69.461284, -52.291951], + [-69.94278, -52.537931], + [-70.845102, -52.899201], + [-71.006332, -53.833252], + [-71.429795, -53.856455], + [-72.557943, -53.53141], + [-73.702757, -52.835069], + [-73.702757, -52.83507], + [-74.946763, -52.262754], + [-75.260026, -51.629355], + [-74.976632, -51.043396], + [-75.479754, -50.378372], + [-75.608015, -48.673773], + [-75.18277, -47.711919], + [-74.126581, -46.939253], + [-75.644395, -46.647643], + [-74.692154, -45.763976], + [-74.351709, -44.103044], + [-73.240356, -44.454961], + [-72.717804, -42.383356], + [-73.3889, -42.117532], + [-73.701336, -43.365776], + [-74.331943, -43.224958], + [-74.017957, -41.794813], + [-73.677099, -39.942213], + [-73.217593, -39.258689], + [-73.505559, -38.282883], + [-73.588061, -37.156285], + [-73.166717, -37.12378], + [-72.553137, -35.50884], + [-71.861732, -33.909093], + [-71.43845, -32.418899], + [-71.668721, -30.920645], + [-71.370083, -30.095682], + [-71.489894, -28.861442], + [-70.905124, -27.64038], + [-70.724954, -25.705924], + [-70.403966, -23.628997], + [-70.091246, -21.393319], + [-70.16442, -19.756468], + [-70.372572, -18.347975], + [-69.858444, -18.092694], + [-69.590424, -17.580012], + [-69.100247, -18.260125], + [-68.966818, -18.981683], + [-68.442225, -19.405068], + [-68.757167, -20.372658], + [-68.219913, -21.494347] + ] + ] + ] + }, + "id": "CHL" + }, + { + "type": "Feature", + "properties": { "name": "China" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.339188, 18.678395], + [109.47521, 18.197701], + [108.655208, 18.507682], + [108.626217, 19.367888], + [109.119056, 19.821039], + [110.211599, 20.101254], + [110.786551, 20.077534], + [111.010051, 19.69593], + [110.570647, 19.255879], + [110.339188, 18.678395] + ] + ], + [ + [ + [127.657407, 49.76027], + [129.397818, 49.4406], + [130.582293, 48.729687], + [130.987282, 47.790132], + [132.506672, 47.78897], + [133.373596, 48.183442], + [135.026311, 48.47823], + [134.500814, 47.57844], + [134.112362, 47.212467], + [133.769644, 46.116927], + [133.097127, 45.144066], + [131.883454, 45.321162], + [131.025212, 44.967953], + [131.288555, 44.11152], + [131.144688, 42.92999], + [130.633866, 42.903015], + [130.640016, 42.395009], + [129.994267, 42.985387], + [129.596669, 42.424982], + [128.052215, 41.994285], + [128.208433, 41.466772], + [127.343783, 41.503152], + [126.869083, 41.816569], + [126.182045, 41.107336], + [125.079942, 40.569824], + [124.265625, 39.928493], + [122.86757, 39.637788], + [122.131388, 39.170452], + [121.054554, 38.897471], + [121.585995, 39.360854], + [121.376757, 39.750261], + [122.168595, 40.422443], + [121.640359, 40.94639], + [120.768629, 40.593388], + [119.639602, 39.898056], + [119.023464, 39.252333], + [118.042749, 39.204274], + [117.532702, 38.737636], + [118.059699, 38.061476], + [118.87815, 37.897325], + [118.911636, 37.448464], + [119.702802, 37.156389], + [120.823457, 37.870428], + [121.711259, 37.481123], + [122.357937, 37.454484], + [122.519995, 36.930614], + [121.104164, 36.651329], + [120.637009, 36.11144], + [119.664562, 35.609791], + [119.151208, 34.909859], + [120.227525, 34.360332], + [120.620369, 33.376723], + [121.229014, 32.460319], + [121.908146, 31.692174], + [121.891919, 30.949352], + [121.264257, 30.676267], + [121.503519, 30.142915], + [122.092114, 29.83252], + [121.938428, 29.018022], + [121.684439, 28.225513], + [121.125661, 28.135673], + [120.395473, 27.053207], + [119.585497, 25.740781], + [118.656871, 24.547391], + [117.281606, 23.624501], + [115.890735, 22.782873], + [114.763827, 22.668074], + [114.152547, 22.22376], + [113.80678, 22.54834], + [113.241078, 22.051367], + [111.843592, 21.550494], + [110.785466, 21.397144], + [110.444039, 20.341033], + [109.889861, 20.282457], + [109.627655, 21.008227], + [109.864488, 21.395051], + [108.522813, 21.715212], + [108.05018, 21.55238], + [107.04342, 21.811899], + [106.567273, 22.218205], + [106.725403, 22.794268], + [105.811247, 22.976892], + [105.329209, 23.352063], + [104.476858, 22.81915], + [103.504515, 22.703757], + [102.706992, 22.708795], + [102.170436, 22.464753], + [101.652018, 22.318199], + [101.80312, 21.174367], + [101.270026, 21.201652], + [101.180005, 21.436573], + [101.150033, 21.849984], + [100.416538, 21.558839], + [99.983489, 21.742937], + [99.240899, 22.118314], + [99.531992, 22.949039], + [98.898749, 23.142722], + [98.660262, 24.063286], + [97.60472, 23.897405], + [97.724609, 25.083637], + [98.671838, 25.918703], + [98.712094, 26.743536], + [98.68269, 27.508812], + [98.246231, 27.747221], + [97.911988, 28.335945], + [97.327114, 28.261583], + [96.248833, 28.411031], + [96.586591, 28.83098], + [96.117679, 29.452802], + [95.404802, 29.031717], + [94.56599, 29.277438], + [93.413348, 28.640629], + [92.503119, 27.896876], + [91.696657, 27.771742], + [91.258854, 28.040614], + [90.730514, 28.064954], + [90.015829, 28.296439], + [89.47581, 28.042759], + [88.814248, 27.299316], + [88.730326, 28.086865], + [88.120441, 27.876542], + [86.954517, 27.974262], + [85.82332, 28.203576], + [85.011638, 28.642774], + [84.23458, 28.839894], + [83.898993, 29.320226], + [83.337115, 29.463732], + [82.327513, 30.115268], + [81.525804, 30.422717], + [81.111256, 30.183481], + [79.721367, 30.882715], + [78.738894, 31.515906], + [78.458446, 32.618164], + [79.176129, 32.48378], + [79.208892, 32.994395], + [78.811086, 33.506198], + [78.912269, 34.321936], + [77.837451, 35.49401], + [76.192848, 35.898403], + [75.896897, 36.666806], + [75.158028, 37.133031], + [74.980002, 37.41999], + [74.829986, 37.990007], + [74.864816, 38.378846], + [74.257514, 38.606507], + [73.928852, 38.505815], + [73.675379, 39.431237], + [73.960013, 39.660008], + [73.822244, 39.893973], + [74.776862, 40.366425], + [75.467828, 40.562072], + [76.526368, 40.427946], + [76.904484, 41.066486], + [78.187197, 41.185316], + [78.543661, 41.582243], + [80.11943, 42.123941], + [80.25999, 42.349999], + [80.18015, 42.920068], + [80.866206, 43.180362], + [79.966106, 44.917517], + [81.947071, 45.317027], + [82.458926, 45.53965], + [83.180484, 47.330031], + [85.16429, 47.000956], + [85.720484, 47.452969], + [85.768233, 48.455751], + [86.598776, 48.549182], + [87.35997, 49.214981], + [87.751264, 49.297198], + [88.013832, 48.599463], + [88.854298, 48.069082], + [90.280826, 47.693549], + [90.970809, 46.888146], + [90.585768, 45.719716], + [90.94554, 45.286073], + [92.133891, 45.115076], + [93.480734, 44.975472], + [94.688929, 44.352332], + [95.306875, 44.241331], + [95.762455, 43.319449], + [96.349396, 42.725635], + [97.451757, 42.74889], + [99.515817, 42.524691], + [100.845866, 42.663804], + [101.83304, 42.514873], + [103.312278, 41.907468], + [104.522282, 41.908347], + [104.964994, 41.59741], + [106.129316, 42.134328], + [107.744773, 42.481516], + [109.243596, 42.519446], + [110.412103, 42.871234], + [111.129682, 43.406834], + [111.829588, 43.743118], + [111.667737, 44.073176], + [111.348377, 44.457442], + [111.873306, 45.102079], + [112.436062, 45.011646], + [113.463907, 44.808893], + [114.460332, 45.339817], + [115.985096, 45.727235], + [116.717868, 46.388202], + [117.421701, 46.672733], + [118.874326, 46.805412], + [119.66327, 46.69268], + [119.772824, 47.048059], + [118.866574, 47.74706], + [118.064143, 48.06673], + [117.295507, 47.697709], + [116.308953, 47.85341], + [115.742837, 47.726545], + [115.485282, 48.135383], + [116.191802, 49.134598], + [116.678801, 49.888531], + [117.879244, 49.510983], + [119.288461, 50.142883], + [119.279366, 50.582908], + [120.18205, 51.643566], + [120.738191, 51.964115], + [120.725789, 52.516226], + [120.177089, 52.753886], + [121.003085, 53.251401], + [122.245748, 53.431726], + [123.571507, 53.458804], + [125.068211, 53.161045], + [125.946349, 52.792799], + [126.564399, 51.784255], + [126.939157, 51.353894], + [127.287456, 50.739797], + [127.657407, 49.76027] + ] + ] + ] + }, + "id": "CHN" + }, + { + "type": "Feature", + "properties": { "name": "Ivory Coast" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.856125, 4.994476], + [-3.311084, 4.984296], + [-4.00882, 5.179813], + [-4.649917, 5.168264], + [-5.834496, 4.993701], + [-6.528769, 4.705088], + [-7.518941, 4.338288], + [-7.712159, 4.364566], + [-7.635368, 5.188159], + [-7.539715, 5.313345], + [-7.570153, 5.707352], + [-7.993693, 6.12619], + [-8.311348, 6.193033], + [-8.60288, 6.467564], + [-8.385452, 6.911801], + [-8.485446, 7.395208], + [-8.439298, 7.686043], + [-8.280703, 7.68718], + [-8.221792, 8.123329], + [-8.299049, 8.316444], + [-8.203499, 8.455453], + [-7.8321, 8.575704], + [-8.079114, 9.376224], + [-8.309616, 9.789532], + [-8.229337, 10.12902], + [-8.029944, 10.206535], + [-7.89959, 10.297382], + [-7.622759, 10.147236], + [-6.850507, 10.138994], + [-6.666461, 10.430811], + [-6.493965, 10.411303], + [-6.205223, 10.524061], + [-6.050452, 10.096361], + [-5.816926, 10.222555], + [-5.404342, 10.370737], + [-4.954653, 10.152714], + [-4.779884, 9.821985], + [-4.330247, 9.610835], + [-3.980449, 9.862344], + [-3.511899, 9.900326], + [-2.827496, 9.642461], + [-2.56219, 8.219628], + [-2.983585, 7.379705], + [-3.24437, 6.250472], + [-2.810701, 5.389051], + [-2.856125, 4.994476] + ] + ] + }, + "id": "CIV" + }, + { + "type": "Feature", + "properties": { "name": "Cameroon" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [13.075822, 2.267097], + [12.951334, 2.321616], + [12.35938, 2.192812], + [11.751665, 2.326758], + [11.276449, 2.261051], + [9.649158, 2.283866], + [9.795196, 3.073404], + [9.404367, 3.734527], + [8.948116, 3.904129], + [8.744924, 4.352215], + [8.488816, 4.495617], + [8.500288, 4.771983], + [8.757533, 5.479666], + [9.233163, 6.444491], + [9.522706, 6.453482], + [10.118277, 7.03877], + [10.497375, 7.055358], + [11.058788, 6.644427], + [11.745774, 6.981383], + [11.839309, 7.397042], + [12.063946, 7.799808], + [12.218872, 8.305824], + [12.753672, 8.717763], + [12.955468, 9.417772], + [13.1676, 9.640626], + [13.308676, 10.160362], + [13.57295, 10.798566], + [14.415379, 11.572369], + [14.468192, 11.904752], + [14.577178, 12.085361], + [14.181336, 12.483657], + [14.213531, 12.802035], + [14.495787, 12.859396], + [14.893386, 12.219048], + [14.960152, 11.555574], + [14.923565, 10.891325], + [15.467873, 9.982337], + [14.909354, 9.992129], + [14.627201, 9.920919], + [14.171466, 10.021378], + [13.954218, 9.549495], + [14.544467, 8.965861], + [14.979996, 8.796104], + [15.120866, 8.38215], + [15.436092, 7.692812], + [15.27946, 7.421925], + [14.776545, 6.408498], + [14.53656, 6.226959], + [14.459407, 5.451761], + [14.558936, 5.030598], + [14.478372, 4.732605], + [14.950953, 4.210389], + [15.03622, 3.851367], + [15.405396, 3.335301], + [15.862732, 3.013537], + [15.907381, 2.557389], + [16.012852, 2.26764], + [15.940919, 1.727673], + [15.146342, 1.964015], + [14.337813, 2.227875], + [13.075822, 2.267097] + ] + ] + }, + "id": "CMR" + }, + { + "type": "Feature", + "properties": { "name": "Democratic Republic of the Congo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.83386, 3.509166], + [30.773347, 2.339883], + [31.174149, 2.204465], + [30.85267, 1.849396], + [30.468508, 1.583805], + [30.086154, 1.062313], + [29.875779, 0.59738], + [29.819503, -0.20531], + [29.587838, -0.587406], + [29.579466, -1.341313], + [29.291887, -1.620056], + [29.254835, -2.21511], + [29.117479, -2.292211], + [29.024926, -2.839258], + [29.276384, -3.293907], + [29.339998, -4.499983], + [29.519987, -5.419979], + [29.419993, -5.939999], + [29.620032, -6.520015], + [30.199997, -7.079981], + [30.740015, -8.340007], + [30.346086, -8.238257], + [29.002912, -8.407032], + [28.734867, -8.526559], + [28.449871, -9.164918], + [28.673682, -9.605925], + [28.49607, -10.789884], + [28.372253, -11.793647], + [28.642417, -11.971569], + [29.341548, -12.360744], + [29.616001, -12.178895], + [29.699614, -13.257227], + [28.934286, -13.248958], + [28.523562, -12.698604], + [28.155109, -12.272481], + [27.388799, -12.132747], + [27.16442, -11.608748], + [26.553088, -11.92444], + [25.75231, -11.784965], + [25.418118, -11.330936], + [24.78317, -11.238694], + [24.314516, -11.262826], + [24.257155, -10.951993], + [23.912215, -10.926826], + [23.456791, -10.867863], + [22.837345, -11.017622], + [22.402798, -10.993075], + [22.155268, -11.084801], + [22.208753, -9.894796], + [21.875182, -9.523708], + [21.801801, -8.908707], + [21.949131, -8.305901], + [21.746456, -7.920085], + [21.728111, -7.290872], + [20.514748, -7.299606], + [20.601823, -6.939318], + [20.091622, -6.94309], + [20.037723, -7.116361], + [19.417502, -7.155429], + [19.166613, -7.738184], + [19.016752, -7.988246], + [18.464176, -7.847014], + [18.134222, -7.987678], + [17.47297, -8.068551], + [17.089996, -7.545689], + [16.860191, -7.222298], + [16.57318, -6.622645], + [16.326528, -5.87747], + [13.375597, -5.864241], + [13.024869, -5.984389], + [12.735171, -5.965682], + [12.322432, -6.100092], + [12.182337, -5.789931], + [12.436688, -5.684304], + [12.468004, -5.248362], + [12.631612, -4.991271], + [12.995517, -4.781103], + [13.25824, -4.882957], + [13.600235, -4.500138], + [14.144956, -4.510009], + [14.209035, -4.793092], + [14.582604, -4.970239], + [15.170992, -4.343507], + [15.75354, -3.855165], + [16.00629, -3.535133], + [15.972803, -2.712392], + [16.407092, -1.740927], + [16.865307, -1.225816], + [17.523716, -0.74383], + [17.638645, -0.424832], + [17.663553, -0.058084], + [17.82654, 0.288923], + [17.774192, 0.855659], + [17.898835, 1.741832], + [18.094276, 2.365722], + [18.393792, 2.900443], + [18.453065, 3.504386], + [18.542982, 4.201785], + [18.932312, 4.709506], + [19.467784, 5.031528], + [20.290679, 4.691678], + [20.927591, 4.322786], + [21.659123, 4.224342], + [22.405124, 4.02916], + [22.704124, 4.633051], + [22.84148, 4.710126], + [23.297214, 4.609693], + [24.410531, 5.108784], + [24.805029, 4.897247], + [25.128833, 4.927245], + [25.278798, 5.170408], + [25.650455, 5.256088], + [26.402761, 5.150875], + [27.044065, 5.127853], + [27.374226, 5.233944], + [27.979977, 4.408413], + [28.428994, 4.287155], + [28.696678, 4.455077], + [29.159078, 4.389267], + [29.715995, 4.600805], + [29.9535, 4.173699], + [30.83386, 3.509166] + ] + ] + }, + "id": "COD" + }, + { + "type": "Feature", + "properties": { "name": "Republic of the Congo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [12.995517, -4.781103], + [12.62076, -4.438023], + [12.318608, -4.60623], + [11.914963, -5.037987], + [11.093773, -3.978827], + [11.855122, -3.426871], + [11.478039, -2.765619], + [11.820964, -2.514161], + [12.495703, -2.391688], + [12.575284, -1.948511], + [13.109619, -2.42874], + [13.992407, -2.470805], + [14.29921, -1.998276], + [14.425456, -1.333407], + [14.316418, -0.552627], + [13.843321, 0.038758], + [14.276266, 1.19693], + [14.026669, 1.395677], + [13.282631, 1.314184], + [13.003114, 1.830896], + [13.075822, 2.267097], + [14.337813, 2.227875], + [15.146342, 1.964015], + [15.940919, 1.727673], + [16.012852, 2.26764], + [16.537058, 3.198255], + [17.133042, 3.728197], + [17.8099, 3.560196], + [18.453065, 3.504386], + [18.393792, 2.900443], + [18.094276, 2.365722], + [17.898835, 1.741832], + [17.774192, 0.855659], + [17.82654, 0.288923], + [17.663553, -0.058084], + [17.638645, -0.424832], + [17.523716, -0.74383], + [16.865307, -1.225816], + [16.407092, -1.740927], + [15.972803, -2.712392], + [16.00629, -3.535133], + [15.75354, -3.855165], + [15.170992, -4.343507], + [14.582604, -4.970239], + [14.209035, -4.793092], + [14.144956, -4.510009], + [13.600235, -4.500138], + [13.25824, -4.882957], + [12.995517, -4.781103] + ] + ] + }, + "id": "COG" + }, + { + "type": "Feature", + "properties": { "name": "Colombia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-75.373223, -0.152032], + [-75.801466, 0.084801], + [-76.292314, 0.416047], + [-76.57638, 0.256936], + [-77.424984, 0.395687], + [-77.668613, 0.825893], + [-77.855061, 0.809925], + [-78.855259, 1.380924], + [-78.990935, 1.69137], + [-78.617831, 1.766404], + [-78.662118, 2.267355], + [-78.42761, 2.629556], + [-77.931543, 2.696606], + [-77.510431, 3.325017], + [-77.12769, 3.849636], + [-77.496272, 4.087606], + [-77.307601, 4.667984], + [-77.533221, 5.582812], + [-77.318815, 5.845354], + [-77.476661, 6.691116], + [-77.881571, 7.223771], + [-77.753414, 7.70984], + [-77.431108, 7.638061], + [-77.242566, 7.935278], + [-77.474723, 8.524286], + [-77.353361, 8.670505], + [-76.836674, 8.638749], + [-76.086384, 9.336821], + [-75.6746, 9.443248], + [-75.664704, 9.774003], + [-75.480426, 10.61899], + [-74.906895, 11.083045], + [-74.276753, 11.102036], + [-74.197223, 11.310473], + [-73.414764, 11.227015], + [-72.627835, 11.731972], + [-72.238195, 11.95555], + [-71.75409, 12.437303], + [-71.399822, 12.376041], + [-71.137461, 12.112982], + [-71.331584, 11.776284], + [-71.973922, 11.608672], + [-72.227575, 11.108702], + [-72.614658, 10.821975], + [-72.905286, 10.450344], + [-73.027604, 9.73677], + [-73.304952, 9.152], + [-72.78873, 9.085027], + [-72.660495, 8.625288], + [-72.439862, 8.405275], + [-72.360901, 8.002638], + [-72.479679, 7.632506], + [-72.444487, 7.423785], + [-72.198352, 7.340431], + [-71.960176, 6.991615], + [-70.674234, 7.087785], + [-70.093313, 6.960376], + [-69.38948, 6.099861], + [-68.985319, 6.206805], + [-68.265052, 6.153268], + [-67.695087, 6.267318], + [-67.34144, 6.095468], + [-67.521532, 5.55687], + [-67.744697, 5.221129], + [-67.823012, 4.503937], + [-67.621836, 3.839482], + [-67.337564, 3.542342], + [-67.303173, 3.318454], + [-67.809938, 2.820655], + [-67.447092, 2.600281], + [-67.181294, 2.250638], + [-66.876326, 1.253361], + [-67.065048, 1.130112], + [-67.259998, 1.719999], + [-67.53781, 2.037163], + [-67.868565, 1.692455], + [-69.816973, 1.714805], + [-69.804597, 1.089081], + [-69.218638, 0.985677], + [-69.252434, 0.602651], + [-69.452396, 0.706159], + [-70.015566, 0.541414], + [-70.020656, -0.185156], + [-69.577065, -0.549992], + [-69.420486, -1.122619], + [-69.444102, -1.556287], + [-69.893635, -4.298187], + [-70.394044, -3.766591], + [-70.692682, -3.742872], + [-70.047709, -2.725156], + [-70.813476, -2.256865], + [-71.413646, -2.342802], + [-71.774761, -2.16979], + [-72.325787, -2.434218], + [-73.070392, -2.308954], + [-73.659504, -1.260491], + [-74.122395, -1.002833], + [-74.441601, -0.53082], + [-75.106625, -0.057205], + [-75.373223, -0.152032] + ] + ] + }, + "id": "COL" + }, + { + "type": "Feature", + "properties": { "name": "Costa Rica" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-82.965783, 8.225028], + [-83.508437, 8.446927], + [-83.711474, 8.656836], + [-83.596313, 8.830443], + [-83.632642, 9.051386], + [-83.909886, 9.290803], + [-84.303402, 9.487354], + [-84.647644, 9.615537], + [-84.713351, 9.908052], + [-84.97566, 10.086723], + [-84.911375, 9.795992], + [-85.110923, 9.55704], + [-85.339488, 9.834542], + [-85.660787, 9.933347], + [-85.797445, 10.134886], + [-85.791709, 10.439337], + [-85.659314, 10.754331], + [-85.941725, 10.895278], + [-85.71254, 11.088445], + [-85.561852, 11.217119], + [-84.903003, 10.952303], + [-84.673069, 11.082657], + [-84.355931, 10.999226], + [-84.190179, 10.79345], + [-83.895054, 10.726839], + [-83.655612, 10.938764], + [-83.40232, 10.395438], + [-83.015677, 9.992982], + [-82.546196, 9.566135], + [-82.932891, 9.476812], + [-82.927155, 9.07433], + [-82.719183, 8.925709], + [-82.868657, 8.807266], + [-82.829771, 8.626295], + [-82.913176, 8.423517], + [-82.965783, 8.225028] + ] + ] + }, + "id": "CRI" + }, + { + "type": "Feature", + "properties": { "name": "Cuba" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-82.268151, 23.188611], + [-81.404457, 23.117271], + [-80.618769, 23.10598], + [-79.679524, 22.765303], + [-79.281486, 22.399202], + [-78.347434, 22.512166], + [-77.993296, 22.277194], + [-77.146422, 21.657851], + [-76.523825, 21.20682], + [-76.19462, 21.220565], + [-75.598222, 21.016624], + [-75.67106, 20.735091], + [-74.933896, 20.693905], + [-74.178025, 20.284628], + [-74.296648, 20.050379], + [-74.961595, 19.923435], + [-75.63468, 19.873774], + [-76.323656, 19.952891], + [-77.755481, 19.855481], + [-77.085108, 20.413354], + [-77.492655, 20.673105], + [-78.137292, 20.739949], + [-78.482827, 21.028613], + [-78.719867, 21.598114], + [-79.285, 21.559175], + [-80.217475, 21.827324], + [-80.517535, 22.037079], + [-81.820943, 22.192057], + [-82.169992, 22.387109], + [-81.795002, 22.636965], + [-82.775898, 22.68815], + [-83.494459, 22.168518], + [-83.9088, 22.154565], + [-84.052151, 21.910575], + [-84.54703, 21.801228], + [-84.974911, 21.896028], + [-84.447062, 22.20495], + [-84.230357, 22.565755], + [-83.77824, 22.788118], + [-83.267548, 22.983042], + [-82.510436, 23.078747], + [-82.268151, 23.188611] + ] + ] + }, + "id": "CUB" + }, + { + "type": "Feature", + "properties": { "name": "Cyprus" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.973617, 35.058506], + [34.004881, 34.978098], + [32.979827, 34.571869], + [32.490296, 34.701655], + [32.256667, 35.103232], + [32.73178, 35.140026], + [32.919572, 35.087833], + [33.190977, 35.173125], + [33.383833, 35.162712], + [33.455922, 35.101424], + [33.475817, 35.000345], + [33.525685, 35.038688], + [33.675392, 35.017863], + [33.86644, 35.093595], + [33.973617, 35.058506] + ] + ] + }, + "id": "CYP" + }, + { + "type": "Feature", + "properties": { "name": "Czech Republic" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.960288, 48.596982], + [16.499283, 48.785808], + [16.029647, 48.733899], + [15.253416, 49.039074], + [14.901447, 48.964402], + [14.338898, 48.555305], + [13.595946, 48.877172], + [13.031329, 49.307068], + [12.521024, 49.547415], + [12.415191, 49.969121], + [12.240111, 50.266338], + [12.966837, 50.484076], + [13.338132, 50.733234], + [14.056228, 50.926918], + [14.307013, 51.117268], + [14.570718, 51.002339], + [15.016996, 51.106674], + [15.490972, 50.78473], + [16.238627, 50.697733], + [16.176253, 50.422607], + [16.719476, 50.215747], + [16.868769, 50.473974], + [17.554567, 50.362146], + [17.649445, 50.049038], + [18.392914, 49.988629], + [18.853144, 49.49623], + [18.554971, 49.495015], + [18.399994, 49.315001], + [18.170498, 49.271515], + [18.104973, 49.043983], + [17.913512, 48.996493], + [17.886485, 48.903475], + [17.545007, 48.800019], + [17.101985, 48.816969], + [16.960288, 48.596982] + ] + ] + }, + "id": "CZE" + }, + { + "type": "Feature", + "properties": { "name": "Germany" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.921906, 54.983104], + [9.93958, 54.596642], + [10.950112, 54.363607], + [10.939467, 54.008693], + [11.956252, 54.196486], + [12.51844, 54.470371], + [13.647467, 54.075511], + [14.119686, 53.757029], + [14.353315, 53.248171], + [14.074521, 52.981263], + [14.4376, 52.62485], + [14.685026, 52.089947], + [14.607098, 51.745188], + [15.016996, 51.106674], + [14.570718, 51.002339], + [14.307013, 51.117268], + [14.056228, 50.926918], + [13.338132, 50.733234], + [12.966837, 50.484076], + [12.240111, 50.266338], + [12.415191, 49.969121], + [12.521024, 49.547415], + [13.031329, 49.307068], + [13.595946, 48.877172], + [13.243357, 48.416115], + [12.884103, 48.289146], + [13.025851, 47.637584], + [12.932627, 47.467646], + [12.62076, 47.672388], + [12.141357, 47.703083], + [11.426414, 47.523766], + [10.544504, 47.566399], + [10.402084, 47.302488], + [9.896068, 47.580197], + [9.594226, 47.525058], + [8.522612, 47.830828], + [8.317301, 47.61358], + [7.466759, 47.620582], + [7.593676, 48.333019], + [8.099279, 49.017784], + [6.65823, 49.201958], + [6.18632, 49.463803], + [6.242751, 49.902226], + [6.043073, 50.128052], + [6.156658, 50.803721], + [5.988658, 51.851616], + [6.589397, 51.852029], + [6.84287, 52.22844], + [7.092053, 53.144043], + [6.90514, 53.482162], + [7.100425, 53.693932], + [7.936239, 53.748296], + [8.121706, 53.527792], + [8.800734, 54.020786], + [8.572118, 54.395646], + [8.526229, 54.962744], + [9.282049, 54.830865], + [9.921906, 54.983104] + ] + ] + }, + "id": "DEU" + }, + { + "type": "Feature", + "properties": { "name": "Djibouti" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [43.081226, 12.699639], + [43.317852, 12.390148], + [43.286381, 11.974928], + [42.715874, 11.735641], + [43.145305, 11.46204], + [42.776852, 10.926879], + [42.55493, 11.10511], + [42.31414, 11.0342], + [41.75557, 11.05091], + [41.73959, 11.35511], + [41.66176, 11.6312], + [42, 12.1], + [42.35156, 12.54223], + [42.779642, 12.455416], + [43.081226, 12.699639] + ] + ] + }, + "id": "DJI" + }, + { + "type": "Feature", + "properties": { "name": "Denmark" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [12.690006, 55.609991], + [12.089991, 54.800015], + [11.043543, 55.364864], + [10.903914, 55.779955], + [12.370904, 56.111407], + [12.690006, 55.609991] + ] + ], + [ + [ + [10.912182, 56.458621], + [10.667804, 56.081383], + [10.369993, 56.190007], + [9.649985, 55.469999], + [9.921906, 54.983104], + [9.282049, 54.830865], + [8.526229, 54.962744], + [8.120311, 55.517723], + [8.089977, 56.540012], + [8.256582, 56.809969], + [8.543438, 57.110003], + [9.424469, 57.172066], + [9.775559, 57.447941], + [10.580006, 57.730017], + [10.546106, 57.215733], + [10.25, 56.890016], + [10.369993, 56.609982], + [10.912182, 56.458621] + ] + ] + ] + }, + "id": "DNK" + }, + { + "type": "Feature", + "properties": { "name": "Dominican Republic" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.712361, 19.714456], + [-71.587304, 19.884911], + [-70.806706, 19.880286], + [-70.214365, 19.622885], + [-69.950815, 19.648], + [-69.76925, 19.293267], + [-69.222126, 19.313214], + [-69.254346, 19.015196], + [-68.809412, 18.979074], + [-68.317943, 18.612198], + [-68.689316, 18.205142], + [-69.164946, 18.422648], + [-69.623988, 18.380713], + [-69.952934, 18.428307], + [-70.133233, 18.245915], + [-70.517137, 18.184291], + [-70.669298, 18.426886], + [-70.99995, 18.283329], + [-71.40021, 17.598564], + [-71.657662, 17.757573], + [-71.708305, 18.044997], + [-71.687738, 18.31666], + [-71.945112, 18.6169], + [-71.701303, 18.785417], + [-71.624873, 19.169838], + [-71.712361, 19.714456] + ] + ] + }, + "id": "DOM" + }, + { + "type": "Feature", + "properties": { "name": "Algeria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.999506, 23.471668], + [8.572893, 21.565661], + [5.677566, 19.601207], + [4.267419, 19.155265], + [3.158133, 19.057364], + [3.146661, 19.693579], + [2.683588, 19.85623], + [2.060991, 20.142233], + [1.823228, 20.610809], + [-1.550055, 22.792666], + [-4.923337, 24.974574], + [-8.6844, 27.395744], + [-8.665124, 27.589479], + [-8.66559, 27.656426], + [-8.674116, 28.841289], + [-7.059228, 29.579228], + [-6.060632, 29.7317], + [-5.242129, 30.000443], + [-4.859646, 30.501188], + [-3.690441, 30.896952], + [-3.647498, 31.637294], + [-3.06898, 31.724498], + [-2.616605, 32.094346], + [-1.307899, 32.262889], + [-1.124551, 32.651522], + [-1.388049, 32.864015], + [-1.733455, 33.919713], + [-1.792986, 34.527919], + [-2.169914, 35.168396], + [-1.208603, 35.714849], + [-0.127454, 35.888662], + [0.503877, 36.301273], + [1.466919, 36.605647], + [3.161699, 36.783905], + [4.815758, 36.865037], + [5.32012, 36.716519], + [6.26182, 37.110655], + [7.330385, 37.118381], + [7.737078, 36.885708], + [8.420964, 36.946427], + [8.217824, 36.433177], + [8.376368, 35.479876], + [8.140981, 34.655146], + [7.524482, 34.097376], + [7.612642, 33.344115], + [8.430473, 32.748337], + [8.439103, 32.506285], + [9.055603, 32.102692], + [9.48214, 30.307556], + [9.805634, 29.424638], + [9.859998, 28.95999], + [9.683885, 28.144174], + [9.756128, 27.688259], + [9.629056, 27.140953], + [9.716286, 26.512206], + [9.319411, 26.094325], + [9.910693, 25.365455], + [9.948261, 24.936954], + [10.303847, 24.379313], + [10.771364, 24.562532], + [11.560669, 24.097909], + [11.999506, 23.471668] + ] + ] + }, + "id": "DZA" + }, + { + "type": "Feature", + "properties": { "name": "Ecuador" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-80.302561, -3.404856], + [-79.770293, -2.657512], + [-79.986559, -2.220794], + [-80.368784, -2.685159], + [-80.967765, -2.246943], + [-80.764806, -1.965048], + [-80.933659, -1.057455], + [-80.58337, -0.906663], + [-80.399325, -0.283703], + [-80.020898, 0.36034], + [-80.09061, 0.768429], + [-79.542762, 0.982938], + [-78.855259, 1.380924], + [-77.855061, 0.809925], + [-77.668613, 0.825893], + [-77.424984, 0.395687], + [-76.57638, 0.256936], + [-76.292314, 0.416047], + [-75.801466, 0.084801], + [-75.373223, -0.152032], + [-75.233723, -0.911417], + [-75.544996, -1.56161], + [-76.635394, -2.608678], + [-77.837905, -3.003021], + [-78.450684, -3.873097], + [-78.639897, -4.547784], + [-79.205289, -4.959129], + [-79.624979, -4.454198], + [-80.028908, -4.346091], + [-80.442242, -4.425724], + [-80.469295, -4.059287], + [-80.184015, -3.821162], + [-80.302561, -3.404856] + ] + ] + }, + "id": "ECU" + }, + { + "type": "Feature", + "properties": { "name": "Egypt" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.9226, 29.50133], + [34.64174, 29.09942], + [34.42655, 28.34399], + [34.15451, 27.8233], + [33.92136, 27.6487], + [33.58811, 27.97136], + [33.13676, 28.41765], + [32.42323, 29.85108], + [32.32046, 29.76043], + [32.73482, 28.70523], + [33.34876, 27.69989], + [34.10455, 26.14227], + [34.47387, 25.59856], + [34.79507, 25.03375], + [35.69241, 23.92671], + [35.49372, 23.75237], + [35.52598, 23.10244], + [36.69069, 22.20485], + [36.86623, 22], + [32.9, 22], + [29.02, 22], + [25, 22], + [25, 25.6825], + [25, 29.238655], + [24.70007, 30.04419], + [24.95762, 30.6616], + [24.80287, 31.08929], + [25.16482, 31.56915], + [26.49533, 31.58568], + [27.45762, 31.32126], + [28.45048, 31.02577], + [28.91353, 30.87005], + [29.68342, 31.18686], + [30.09503, 31.4734], + [30.97693, 31.55586], + [31.68796, 31.4296], + [31.96041, 30.9336], + [32.19247, 31.26034], + [32.99392, 31.02407], + [33.7734, 30.96746], + [34.26544, 31.21936], + [34.9226, 29.50133] + ] + ] + }, + "id": "EGY" + }, + { + "type": "Feature", + "properties": { "name": "Eritrea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.35156, 12.54223], + [42.00975, 12.86582], + [41.59856, 13.45209], + [41.155194, 13.77332], + [40.8966, 14.11864], + [40.026219, 14.519579], + [39.34061, 14.53155], + [39.0994, 14.74064], + [38.51295, 14.50547], + [37.90607, 14.95943], + [37.59377, 14.2131], + [36.42951, 14.42211], + [36.323189, 14.822481], + [36.75386, 16.291874], + [36.85253, 16.95655], + [37.16747, 17.26314], + [37.904, 17.42754], + [38.41009, 17.998307], + [38.990623, 16.840626], + [39.26611, 15.922723], + [39.814294, 15.435647], + [41.179275, 14.49108], + [41.734952, 13.921037], + [42.276831, 13.343992], + [42.589576, 13.000421], + [43.081226, 12.699639], + [42.779642, 12.455416], + [42.35156, 12.54223] + ] + ] + }, + "id": "ERI" + }, + { + "type": "Feature", + "properties": { "name": "Spain" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-9.034818, 41.880571], + [-8.984433, 42.592775], + [-9.392884, 43.026625], + [-7.97819, 43.748338], + [-6.754492, 43.567909], + [-5.411886, 43.57424], + [-4.347843, 43.403449], + [-3.517532, 43.455901], + [-1.901351, 43.422802], + [-1.502771, 43.034014], + [0.338047, 42.579546], + [0.701591, 42.795734], + [1.826793, 42.343385], + [2.985999, 42.473015], + [3.039484, 41.89212], + [2.091842, 41.226089], + [0.810525, 41.014732], + [0.721331, 40.678318], + [0.106692, 40.123934], + [-0.278711, 39.309978], + [0.111291, 38.738514], + [-0.467124, 38.292366], + [-0.683389, 37.642354], + [-1.438382, 37.443064], + [-2.146453, 36.674144], + [-3.415781, 36.6589], + [-4.368901, 36.677839], + [-4.995219, 36.324708], + [-5.37716, 35.94685], + [-5.866432, 36.029817], + [-6.236694, 36.367677], + [-6.520191, 36.942913], + [-7.453726, 37.097788], + [-7.537105, 37.428904], + [-7.166508, 37.803894], + [-7.029281, 38.075764], + [-7.374092, 38.373059], + [-7.098037, 39.030073], + [-7.498632, 39.629571], + [-7.066592, 39.711892], + [-7.026413, 40.184524], + [-6.86402, 40.330872], + [-6.851127, 41.111083], + [-6.389088, 41.381815], + [-6.668606, 41.883387], + [-7.251309, 41.918346], + [-7.422513, 41.792075], + [-8.013175, 41.790886], + [-8.263857, 42.280469], + [-8.671946, 42.134689], + [-9.034818, 41.880571] + ] + ] + }, + "id": "ESP" + }, + { + "type": "Feature", + "properties": { "name": "Estonia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [24.312863, 57.793424], + [24.428928, 58.383413], + [24.061198, 58.257375], + [23.42656, 58.612753], + [23.339795, 59.18724], + [24.604214, 59.465854], + [25.864189, 59.61109], + [26.949136, 59.445803], + [27.981114, 59.475388], + [28.131699, 59.300825], + [27.420166, 58.724581], + [27.716686, 57.791899], + [27.288185, 57.474528], + [26.463532, 57.476389], + [25.60281, 57.847529], + [25.164594, 57.970157], + [24.312863, 57.793424] + ] + ] + }, + "id": "EST" + }, + { + "type": "Feature", + "properties": { "name": "Ethiopia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [37.90607, 14.95943], + [38.51295, 14.50547], + [39.0994, 14.74064], + [39.34061, 14.53155], + [40.02625, 14.51959], + [40.8966, 14.11864], + [41.1552, 13.77333], + [41.59856, 13.45209], + [42.00975, 12.86582], + [42.35156, 12.54223], + [42, 12.1], + [41.66176, 11.6312], + [41.73959, 11.35511], + [41.75557, 11.05091], + [42.31414, 11.0342], + [42.55493, 11.10511], + [42.776852, 10.926879], + [42.55876, 10.57258], + [42.92812, 10.02194], + [43.29699, 9.54048], + [43.67875, 9.18358], + [46.94834, 7.99688], + [47.78942, 8.003], + [44.9636, 5.00162], + [43.66087, 4.95755], + [42.76967, 4.25259], + [42.12861, 4.23413], + [41.855083, 3.918912], + [41.1718, 3.91909], + [40.76848, 4.25702], + [39.85494, 3.83879], + [39.559384, 3.42206], + [38.89251, 3.50074], + [38.67114, 3.61607], + [38.43697, 3.58851], + [38.120915, 3.598605], + [36.855093, 4.447864], + [36.159079, 4.447864], + [35.817448, 4.776966], + [35.817448, 5.338232], + [35.298007, 5.506], + [34.70702, 6.59422], + [34.25032, 6.82607], + [34.0751, 7.22595], + [33.56829, 7.71334], + [32.95418, 7.78497], + [33.2948, 8.35458], + [33.8255, 8.37916], + [33.97498, 8.68456], + [33.96162, 9.58358], + [34.25745, 10.63009], + [34.73115, 10.91017], + [34.83163, 11.31896], + [35.26049, 12.08286], + [35.86363, 12.57828], + [36.27022, 13.56333], + [36.42951, 14.42211], + [37.59377, 14.2131], + [37.90607, 14.95943] + ] + ] + }, + "id": "ETH" + }, + { + "type": "Feature", + "properties": { "name": "Finland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.59193, 69.064777], + [28.445944, 68.364613], + [29.977426, 67.698297], + [29.054589, 66.944286], + [30.21765, 65.80598], + [29.54443, 64.948672], + [30.444685, 64.204453], + [30.035872, 63.552814], + [31.516092, 62.867687], + [31.139991, 62.357693], + [30.211107, 61.780028], + [28.069998, 60.503517], + [26.255173, 60.423961], + [24.496624, 60.057316], + [22.869695, 59.846373], + [22.290764, 60.391921], + [21.322244, 60.72017], + [21.544866, 61.705329], + [21.059211, 62.607393], + [21.536029, 63.189735], + [22.442744, 63.81781], + [24.730512, 64.902344], + [25.398068, 65.111427], + [25.294043, 65.534346], + [23.903379, 66.006927], + [23.56588, 66.396051], + [23.539473, 67.936009], + [21.978535, 68.616846], + [20.645593, 69.106247], + [21.244936, 69.370443], + [22.356238, 68.841741], + [23.66205, 68.891247], + [24.735679, 68.649557], + [25.689213, 69.092114], + [26.179622, 69.825299], + [27.732292, 70.164193], + [29.015573, 69.766491], + [28.59193, 69.064777] + ] + ] + }, + "id": "FIN" + }, + { + "type": "Feature", + "properties": { "name": "Fiji" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [178.3736, -17.33992], + [178.71806, -17.62846], + [178.55271, -18.15059], + [177.93266, -18.28799], + [177.38146, -18.16432], + [177.28504, -17.72465], + [177.67087, -17.38114], + [178.12557, -17.50481], + [178.3736, -17.33992] + ] + ], + [ + [ + [179.364143, -16.801354], + [178.725059, -17.012042], + [178.596839, -16.63915], + [179.096609, -16.433984], + [179.413509, -16.379054], + [180, -16.067133], + [180, -16.555217], + [179.364143, -16.801354] + ] + ], + [ + [ + [-179.917369, -16.501783], + [-180, -16.555217], + [-180, -16.067133], + [-179.79332, -16.020882], + [-179.917369, -16.501783] + ] + ] + ] + }, + "id": "FJI" + }, + { + "type": "Feature", + "properties": { "name": "Falkland Islands" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.2, -51.85], + [-60, -51.25], + [-59.15, -51.5], + [-58.55, -51.1], + [-57.75, -51.55], + [-58.05, -51.9], + [-59.4, -52.2], + [-59.85, -51.85], + [-60.7, -52.3], + [-61.2, -51.85] + ] + ] + }, + "id": "FLK" + }, + { + "type": "Feature", + "properties": { "name": "France" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [9.560016, 42.152492], + [9.229752, 41.380007], + [8.775723, 41.583612], + [8.544213, 42.256517], + [8.746009, 42.628122], + [9.390001, 43.009985], + [9.560016, 42.152492] + ] + ], + [ + [ + [3.588184, 50.378992], + [4.286023, 49.907497], + [4.799222, 49.985373], + [5.674052, 49.529484], + [5.897759, 49.442667], + [6.18632, 49.463803], + [6.65823, 49.201958], + [8.099279, 49.017784], + [7.593676, 48.333019], + [7.466759, 47.620582], + [7.192202, 47.449766], + [6.736571, 47.541801], + [6.768714, 47.287708], + [6.037389, 46.725779], + [6.022609, 46.27299], + [6.5001, 46.429673], + [6.843593, 45.991147], + [6.802355, 45.70858], + [7.096652, 45.333099], + [6.749955, 45.028518], + [7.007562, 44.254767], + [7.549596, 44.127901], + [7.435185, 43.693845], + [6.529245, 43.128892], + [4.556963, 43.399651], + [3.100411, 43.075201], + [2.985999, 42.473015], + [1.826793, 42.343385], + [0.701591, 42.795734], + [0.338047, 42.579546], + [-1.502771, 43.034014], + [-1.901351, 43.422802], + [-1.384225, 44.02261], + [-1.193798, 46.014918], + [-2.225724, 47.064363], + [-2.963276, 47.570327], + [-4.491555, 47.954954], + [-4.59235, 48.68416], + [-3.295814, 48.901692], + [-1.616511, 48.644421], + [-1.933494, 49.776342], + [-0.989469, 49.347376], + [1.338761, 50.127173], + [1.639001, 50.946606], + [2.513573, 51.148506], + [2.658422, 50.796848], + [3.123252, 50.780363], + [3.588184, 50.378992] + ] + ] + ] + }, + "id": "FRA" + }, + { + "type": "Feature", + "properties": { "name": "French Guiana" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-52.556425, 2.504705], + [-52.939657, 2.124858], + [-53.418465, 2.053389], + [-53.554839, 2.334897], + [-53.778521, 2.376703], + [-54.088063, 2.105557], + [-54.524754, 2.311849], + [-54.27123, 2.738748], + [-54.184284, 3.194172], + [-54.011504, 3.62257], + [-54.399542, 4.212611], + [-54.478633, 4.896756], + [-53.958045, 5.756548], + [-53.618453, 5.646529], + [-52.882141, 5.409851], + [-51.823343, 4.565768], + [-51.657797, 4.156232], + [-52.249338, 3.241094], + [-52.556425, 2.504705] + ] + ] + ] + }, + "id": "GUF" + }, + { + "type": "Feature", + "properties": { "name": "Gabon" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.093773, -3.978827], + [10.066135, -2.969483], + [9.405245, -2.144313], + [8.797996, -1.111301], + [8.830087, -0.779074], + [9.04842, -0.459351], + [9.291351, 0.268666], + [9.492889, 1.01012], + [9.830284, 1.067894], + [11.285079, 1.057662], + [11.276449, 2.261051], + [11.751665, 2.326758], + [12.35938, 2.192812], + [12.951334, 2.321616], + [13.075822, 2.267097], + [13.003114, 1.830896], + [13.282631, 1.314184], + [14.026669, 1.395677], + [14.276266, 1.19693], + [13.843321, 0.038758], + [14.316418, -0.552627], + [14.425456, -1.333407], + [14.29921, -1.998276], + [13.992407, -2.470805], + [13.109619, -2.42874], + [12.575284, -1.948511], + [12.495703, -2.391688], + [11.820964, -2.514161], + [11.478039, -2.765619], + [11.855122, -3.426871], + [11.093773, -3.978827] + ] + ] + }, + "id": "GAB" + }, + { + "type": "Feature", + "properties": { "name": "United Kingdom" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-5.661949, 54.554603], + [-6.197885, 53.867565], + [-6.95373, 54.073702], + [-7.572168, 54.059956], + [-7.366031, 54.595841], + [-7.572168, 55.131622], + [-6.733847, 55.17286], + [-5.661949, 54.554603] + ] + ], + [ + [ + [-3.005005, 58.635], + [-4.073828, 57.553025], + [-3.055002, 57.690019], + [-1.959281, 57.6848], + [-2.219988, 56.870017], + [-3.119003, 55.973793], + [-2.085009, 55.909998], + [-2.005676, 55.804903], + [-1.114991, 54.624986], + [-0.430485, 54.464376], + [0.184981, 53.325014], + [0.469977, 52.929999], + [1.681531, 52.73952], + [1.559988, 52.099998], + [1.050562, 51.806761], + [1.449865, 51.289428], + [0.550334, 50.765739], + [-0.787517, 50.774989], + [-2.489998, 50.500019], + [-2.956274, 50.69688], + [-3.617448, 50.228356], + [-4.542508, 50.341837], + [-5.245023, 49.96], + [-5.776567, 50.159678], + [-4.30999, 51.210001], + [-3.414851, 51.426009], + [-3.422719, 51.426848], + [-4.984367, 51.593466], + [-5.267296, 51.9914], + [-4.222347, 52.301356], + [-4.770013, 52.840005], + [-4.579999, 53.495004], + [-3.093831, 53.404547], + [-3.09208, 53.404441], + [-2.945009, 53.985], + [-3.614701, 54.600937], + [-3.630005, 54.615013], + [-4.844169, 54.790971], + [-5.082527, 55.061601], + [-4.719112, 55.508473], + [-5.047981, 55.783986], + [-5.586398, 55.311146], + [-5.644999, 56.275015], + [-6.149981, 56.78501], + [-5.786825, 57.818848], + [-5.009999, 58.630013], + [-4.211495, 58.550845], + [-3.005005, 58.635] + ] + ] + ] + }, + "id": "GBR" + }, + { + "type": "Feature", + "properties": { "name": "Georgia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [41.554084, 41.535656], + [41.703171, 41.962943], + [41.45347, 42.645123], + [40.875469, 43.013628], + [40.321394, 43.128634], + [39.955009, 43.434998], + [40.076965, 43.553104], + [40.922185, 43.382159], + [42.394395, 43.220308], + [43.756017, 42.740828], + [43.9312, 42.554974], + [44.537623, 42.711993], + [45.470279, 42.502781], + [45.77641, 42.092444], + [46.404951, 41.860675], + [46.145432, 41.722802], + [46.637908, 41.181673], + [46.501637, 41.064445], + [45.962601, 41.123873], + [45.217426, 41.411452], + [44.97248, 41.248129], + [43.582746, 41.092143], + [42.619549, 41.583173], + [41.554084, 41.535656] + ] + ] + }, + "id": "GEO" + }, + { + "type": "Feature", + "properties": { "name": "Ghana" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [1.060122, 5.928837], + [-0.507638, 5.343473], + [-1.063625, 5.000548], + [-1.964707, 4.710462], + [-2.856125, 4.994476], + [-2.810701, 5.389051], + [-3.24437, 6.250472], + [-2.983585, 7.379705], + [-2.56219, 8.219628], + [-2.827496, 9.642461], + [-2.963896, 10.395335], + [-2.940409, 10.96269], + [-1.203358, 11.009819], + [-0.761576, 10.93693], + [-0.438702, 11.098341], + [0.023803, 11.018682], + [-0.049785, 10.706918], + [0.36758, 10.191213], + [0.365901, 9.465004], + [0.461192, 8.677223], + [0.712029, 8.312465], + [0.490957, 7.411744], + [0.570384, 6.914359], + [0.836931, 6.279979], + [1.060122, 5.928837] + ] + ] + }, + "id": "GHA" + }, + { + "type": "Feature", + "properties": { "name": "Guinea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.439298, 7.686043], + [-8.722124, 7.711674], + [-8.926065, 7.309037], + [-9.208786, 7.313921], + [-9.403348, 7.526905], + [-9.33728, 7.928534], + [-9.755342, 8.541055], + [-10.016567, 8.428504], + [-10.230094, 8.406206], + [-10.505477, 8.348896], + [-10.494315, 8.715541], + [-10.65477, 8.977178], + [-10.622395, 9.26791], + [-10.839152, 9.688246], + [-11.117481, 10.045873], + [-11.917277, 10.046984], + [-12.150338, 9.858572], + [-12.425929, 9.835834], + [-12.596719, 9.620188], + [-12.711958, 9.342712], + [-13.24655, 8.903049], + [-13.685154, 9.494744], + [-14.074045, 9.886167], + [-14.330076, 10.01572], + [-14.579699, 10.214467], + [-14.693232, 10.656301], + [-14.839554, 10.876572], + [-15.130311, 11.040412], + [-14.685687, 11.527824], + [-14.382192, 11.509272], + [-14.121406, 11.677117], + [-13.9008, 11.678719], + [-13.743161, 11.811269], + [-13.828272, 12.142644], + [-13.718744, 12.247186], + [-13.700476, 12.586183], + [-13.217818, 12.575874], + [-12.499051, 12.33209], + [-12.278599, 12.35444], + [-12.203565, 12.465648], + [-11.658301, 12.386583], + [-11.513943, 12.442988], + [-11.456169, 12.076834], + [-11.297574, 12.077971], + [-11.036556, 12.211245], + [-10.87083, 12.177887], + [-10.593224, 11.923975], + [-10.165214, 11.844084], + [-9.890993, 12.060479], + [-9.567912, 12.194243], + [-9.327616, 12.334286], + [-9.127474, 12.30806], + [-8.905265, 12.088358], + [-8.786099, 11.812561], + [-8.376305, 11.393646], + [-8.581305, 11.136246], + [-8.620321, 10.810891], + [-8.407311, 10.909257], + [-8.282357, 10.792597], + [-8.335377, 10.494812], + [-8.029944, 10.206535], + [-8.229337, 10.12902], + [-8.309616, 9.789532], + [-8.079114, 9.376224], + [-7.8321, 8.575704], + [-8.203499, 8.455453], + [-8.299049, 8.316444], + [-8.221792, 8.123329], + [-8.280703, 7.68718], + [-8.439298, 7.686043] + ] + ] + }, + "id": "GIN" + }, + { + "type": "Feature", + "properties": { "name": "Gambia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.841525, 13.151394], + [-16.713729, 13.594959], + [-15.624596, 13.623587], + [-15.39877, 13.860369], + [-15.081735, 13.876492], + [-14.687031, 13.630357], + [-14.376714, 13.62568], + [-14.046992, 13.794068], + [-13.844963, 13.505042], + [-14.277702, 13.280585], + [-14.712197, 13.298207], + [-15.141163, 13.509512], + [-15.511813, 13.27857], + [-15.691001, 13.270353], + [-15.931296, 13.130284], + [-16.841525, 13.151394] + ] + ] + }, + "id": "GMB" + }, + { + "type": "Feature", + "properties": { "name": "Guinea Bissau" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-15.130311, 11.040412], + [-15.66418, 11.458474], + [-16.085214, 11.524594], + [-16.314787, 11.806515], + [-16.308947, 11.958702], + [-16.613838, 12.170911], + [-16.677452, 12.384852], + [-16.147717, 12.547762], + [-15.816574, 12.515567], + [-15.548477, 12.62817], + [-13.700476, 12.586183], + [-13.718744, 12.247186], + [-13.828272, 12.142644], + [-13.743161, 11.811269], + [-13.9008, 11.678719], + [-14.121406, 11.677117], + [-14.382192, 11.509272], + [-14.685687, 11.527824], + [-15.130311, 11.040412] + ] + ] + }, + "id": "GNB" + }, + { + "type": "Feature", + "properties": { "name": "Equatorial Guinea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.492889, 1.01012], + [9.305613, 1.160911], + [9.649158, 2.283866], + [11.276449, 2.261051], + [11.285079, 1.057662], + [9.830284, 1.067894], + [9.492889, 1.01012] + ] + ] + }, + "id": "GNQ" + }, + { + "type": "Feature", + "properties": { "name": "Greece" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [23.69998, 35.705004], + [24.246665, 35.368022], + [25.025015, 35.424996], + [25.769208, 35.354018], + [25.745023, 35.179998], + [26.290003, 35.29999], + [26.164998, 35.004995], + [24.724982, 34.919988], + [24.735007, 35.084991], + [23.514978, 35.279992], + [23.69998, 35.705004] + ] + ], + [ + [ + [26.604196, 41.562115], + [26.294602, 40.936261], + [26.056942, 40.824123], + [25.447677, 40.852545], + [24.925848, 40.947062], + [23.714811, 40.687129], + [24.407999, 40.124993], + [23.899968, 39.962006], + [23.342999, 39.960998], + [22.813988, 40.476005], + [22.626299, 40.256561], + [22.849748, 39.659311], + [23.350027, 39.190011], + [22.973099, 38.970903], + [23.530016, 38.510001], + [24.025025, 38.219993], + [24.040011, 37.655015], + [23.115003, 37.920011], + [23.409972, 37.409991], + [22.774972, 37.30501], + [23.154225, 36.422506], + [22.490028, 36.41], + [21.670026, 36.844986], + [21.295011, 37.644989], + [21.120034, 38.310323], + [20.730032, 38.769985], + [20.217712, 39.340235], + [20.150016, 39.624998], + [20.615, 40.110007], + [20.674997, 40.435], + [20.99999, 40.580004], + [21.02004, 40.842727], + [21.674161, 40.931275], + [22.055378, 41.149866], + [22.597308, 41.130487], + [22.76177, 41.3048], + [22.952377, 41.337994], + [23.692074, 41.309081], + [24.492645, 41.583896], + [25.197201, 41.234486], + [26.106138, 41.328899], + [26.117042, 41.826905], + [26.604196, 41.562115] + ] + ] + ] + }, + "id": "GRC" + }, + { + "type": "Feature", + "properties": { "name": "Greenland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-46.76379, 82.62796], + [-43.40644, 83.22516], + [-39.89753, 83.18018], + [-38.62214, 83.54905], + [-35.08787, 83.64513], + [-27.10046, 83.51966], + [-20.84539, 82.72669], + [-22.69182, 82.34165], + [-26.51753, 82.29765], + [-31.9, 82.2], + [-31.39646, 82.02154], + [-27.85666, 82.13178], + [-24.84448, 81.78697], + [-22.90328, 82.09317], + [-22.07175, 81.73449], + [-23.16961, 81.15271], + [-20.62363, 81.52462], + [-15.76818, 81.91245], + [-12.77018, 81.71885], + [-12.20855, 81.29154], + [-16.28533, 80.58004], + [-16.85, 80.35], + [-20.04624, 80.17708], + [-17.73035, 80.12912], + [-18.9, 79.4], + [-19.70499, 78.75128], + [-19.67353, 77.63859], + [-18.47285, 76.98565], + [-20.03503, 76.94434], + [-21.67944, 76.62795], + [-19.83407, 76.09808], + [-19.59896, 75.24838], + [-20.66818, 75.15585], + [-19.37281, 74.29561], + [-21.59422, 74.22382], + [-20.43454, 73.81713], + [-20.76234, 73.46436], + [-22.17221, 73.30955], + [-23.56593, 73.30663], + [-22.31311, 72.62928], + [-22.29954, 72.18409], + [-24.27834, 72.59788], + [-24.79296, 72.3302], + [-23.44296, 72.08016], + [-22.13281, 71.46898], + [-21.75356, 70.66369], + [-23.53603, 70.471], + [-24.30702, 70.85649], + [-25.54341, 71.43094], + [-25.20135, 70.75226], + [-26.36276, 70.22646], + [-23.72742, 70.18401], + [-22.34902, 70.12946], + [-25.02927, 69.2588], + [-27.74737, 68.47046], + [-30.67371, 68.12503], + [-31.77665, 68.12078], + [-32.81105, 67.73547], + [-34.20196, 66.67974], + [-36.35284, 65.9789], + [-37.04378, 65.93768], + [-38.37505, 65.69213], + [-39.81222, 65.45848], + [-40.66899, 64.83997], + [-40.68281, 64.13902], + [-41.1887, 63.48246], + [-42.81938, 62.68233], + [-42.41666, 61.90093], + [-42.86619, 61.07404], + [-43.3784, 60.09772], + [-44.7875, 60.03676], + [-46.26364, 60.85328], + [-48.26294, 60.85843], + [-49.23308, 61.40681], + [-49.90039, 62.38336], + [-51.63325, 63.62691], + [-52.14014, 64.27842], + [-52.27659, 65.1767], + [-53.66166, 66.09957], + [-53.30161, 66.8365], + [-53.96911, 67.18899], + [-52.9804, 68.35759], + [-51.47536, 68.72958], + [-51.08041, 69.14781], + [-50.87122, 69.9291], + [-52.013585, 69.574925], + [-52.55792, 69.42616], + [-53.45629, 69.283625], + [-54.68336, 69.61003], + [-54.75001, 70.28932], + [-54.35884, 70.821315], + [-53.431315, 70.835755], + [-51.39014, 70.56978], + [-53.10937, 71.20485], + [-54.00422, 71.54719], + [-55, 71.406537], + [-55.83468, 71.65444], + [-54.71819, 72.58625], + [-55.32634, 72.95861], + [-56.12003, 73.64977], + [-57.32363, 74.71026], + [-58.59679, 75.09861], + [-58.58516, 75.51727], + [-61.26861, 76.10238], + [-63.39165, 76.1752], + [-66.06427, 76.13486], + [-68.50438, 76.06141], + [-69.66485, 76.37975], + [-71.40257, 77.00857], + [-68.77671, 77.32312], + [-66.76397, 77.37595], + [-71.04293, 77.63595], + [-73.297, 78.04419], + [-73.15938, 78.43271], + [-69.37345, 78.91388], + [-65.7107, 79.39436], + [-65.3239, 79.75814], + [-68.02298, 80.11721], + [-67.15129, 80.51582], + [-63.68925, 81.21396], + [-62.23444, 81.3211], + [-62.65116, 81.77042], + [-60.28249, 82.03363], + [-57.20744, 82.19074], + [-54.13442, 82.19962], + [-53.04328, 81.88833], + [-50.39061, 82.43883], + [-48.00386, 82.06481], + [-46.59984, 81.985945], + [-44.523, 81.6607], + [-46.9007, 82.19979], + [-46.76379, 82.62796] + ] + ] + }, + "id": "GRL" + }, + { + "type": "Feature", + "properties": { "name": "Guatemala" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90.095555, 13.735338], + [-90.608624, 13.909771], + [-91.23241, 13.927832], + [-91.689747, 14.126218], + [-92.22775, 14.538829], + [-92.20323, 14.830103], + [-92.087216, 15.064585], + [-92.229249, 15.251447], + [-91.74796, 16.066565], + [-90.464473, 16.069562], + [-90.438867, 16.41011], + [-90.600847, 16.470778], + [-90.711822, 16.687483], + [-91.08167, 16.918477], + [-91.453921, 17.252177], + [-91.002269, 17.254658], + [-91.00152, 17.817595], + [-90.067934, 17.819326], + [-89.14308, 17.808319], + [-89.150806, 17.015577], + [-89.229122, 15.886938], + [-88.930613, 15.887273], + [-88.604586, 15.70638], + [-88.518364, 15.855389], + [-88.225023, 15.727722], + [-88.68068, 15.346247], + [-89.154811, 15.066419], + [-89.22522, 14.874286], + [-89.145535, 14.678019], + [-89.353326, 14.424133], + [-89.587343, 14.362586], + [-89.534219, 14.244816], + [-89.721934, 14.134228], + [-90.064678, 13.88197], + [-90.095555, 13.735338] + ] + ] + }, + "id": "GTM" + }, + { + "type": "Feature", + "properties": { "name": "Guyana" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-59.758285, 8.367035], + [-59.101684, 7.999202], + [-58.482962, 7.347691], + [-58.454876, 6.832787], + [-58.078103, 6.809094], + [-57.542219, 6.321268], + [-57.147436, 5.97315], + [-57.307246, 5.073567], + [-57.914289, 4.812626], + [-57.86021, 4.576801], + [-58.044694, 4.060864], + [-57.601569, 3.334655], + [-57.281433, 3.333492], + [-57.150098, 2.768927], + [-56.539386, 1.899523], + [-56.782704, 1.863711], + [-57.335823, 1.948538], + [-57.660971, 1.682585], + [-58.11345, 1.507195], + [-58.429477, 1.463942], + [-58.540013, 1.268088], + [-59.030862, 1.317698], + [-59.646044, 1.786894], + [-59.718546, 2.24963], + [-59.974525, 2.755233], + [-59.815413, 3.606499], + [-59.53804, 3.958803], + [-59.767406, 4.423503], + [-60.111002, 4.574967], + [-59.980959, 5.014061], + [-60.213683, 5.244486], + [-60.733574, 5.200277], + [-61.410303, 5.959068], + [-61.139415, 6.234297], + [-61.159336, 6.696077], + [-60.543999, 6.856584], + [-60.295668, 7.043911], + [-60.637973, 7.415], + [-60.550588, 7.779603], + [-59.758285, 8.367035] + ] + ] + }, + "id": "GUY" + }, + { + "type": "Feature", + "properties": { "name": "Honduras" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-87.316654, 12.984686], + [-87.489409, 13.297535], + [-87.793111, 13.38448], + [-87.723503, 13.78505], + [-87.859515, 13.893312], + [-88.065343, 13.964626], + [-88.503998, 13.845486], + [-88.541231, 13.980155], + [-88.843073, 14.140507], + [-89.058512, 14.340029], + [-89.353326, 14.424133], + [-89.145535, 14.678019], + [-89.22522, 14.874286], + [-89.154811, 15.066419], + [-88.68068, 15.346247], + [-88.225023, 15.727722], + [-88.121153, 15.688655], + [-87.901813, 15.864458], + [-87.61568, 15.878799], + [-87.522921, 15.797279], + [-87.367762, 15.84694], + [-86.903191, 15.756713], + [-86.440946, 15.782835], + [-86.119234, 15.893449], + [-86.001954, 16.005406], + [-85.683317, 15.953652], + [-85.444004, 15.885749], + [-85.182444, 15.909158], + [-84.983722, 15.995923], + [-84.52698, 15.857224], + [-84.368256, 15.835158], + [-84.063055, 15.648244], + [-83.773977, 15.424072], + [-83.410381, 15.270903], + [-83.147219, 14.995829], + [-83.489989, 15.016267], + [-83.628585, 14.880074], + [-83.975721, 14.749436], + [-84.228342, 14.748764], + [-84.449336, 14.621614], + [-84.649582, 14.666805], + [-84.820037, 14.819587], + [-84.924501, 14.790493], + [-85.052787, 14.551541], + [-85.148751, 14.560197], + [-85.165365, 14.35437], + [-85.514413, 14.079012], + [-85.698665, 13.960078], + [-85.801295, 13.836055], + [-86.096264, 14.038187], + [-86.312142, 13.771356], + [-86.520708, 13.778487], + [-86.755087, 13.754845], + [-86.733822, 13.263093], + [-86.880557, 13.254204], + [-87.005769, 13.025794], + [-87.316654, 12.984686] + ] + ] + }, + "id": "HND" + }, + { + "type": "Feature", + "properties": { "name": "Croatia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [18.829838, 45.908878], + [19.072769, 45.521511], + [19.390476, 45.236516], + [19.005486, 44.860234], + [18.553214, 45.08159], + [17.861783, 45.06774], + [17.002146, 45.233777], + [16.534939, 45.211608], + [16.318157, 45.004127], + [15.959367, 45.233777], + [15.750026, 44.818712], + [16.23966, 44.351143], + [16.456443, 44.04124], + [16.916156, 43.667722], + [17.297373, 43.446341], + [17.674922, 43.028563], + [18.56, 42.65], + [18.450016, 42.479991], + [17.50997, 42.849995], + [16.930006, 43.209998], + [16.015385, 43.507215], + [15.174454, 44.243191], + [15.37625, 44.317915], + [14.920309, 44.738484], + [14.901602, 45.07606], + [14.258748, 45.233777], + [13.952255, 44.802124], + [13.656976, 45.136935], + [13.679403, 45.484149], + [13.71506, 45.500324], + [14.411968, 45.466166], + [14.595109, 45.634941], + [14.935244, 45.471695], + [15.327675, 45.452316], + [15.323954, 45.731783], + [15.67153, 45.834154], + [15.768733, 46.238108], + [16.564808, 46.503751], + [16.882515, 46.380632], + [17.630066, 45.951769], + [18.456062, 45.759481], + [18.829838, 45.908878] + ] + ] + }, + "id": "HRV" + }, + { + "type": "Feature", + "properties": { "name": "Haiti" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-73.189791, 19.915684], + [-72.579673, 19.871501], + [-71.712361, 19.714456], + [-71.624873, 19.169838], + [-71.701303, 18.785417], + [-71.945112, 18.6169], + [-71.687738, 18.31666], + [-71.708305, 18.044997], + [-72.372476, 18.214961], + [-72.844411, 18.145611], + [-73.454555, 18.217906], + [-73.922433, 18.030993], + [-74.458034, 18.34255], + [-74.369925, 18.664908], + [-73.449542, 18.526053], + [-72.694937, 18.445799], + [-72.334882, 18.668422], + [-72.79165, 19.101625], + [-72.784105, 19.483591], + [-73.415022, 19.639551], + [-73.189791, 19.915684] + ] + ] + }, + "id": "HTI" + }, + { + "type": "Feature", + "properties": { "name": "Hungary" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.202298, 46.852386], + [16.534268, 47.496171], + [16.340584, 47.712902], + [16.903754, 47.714866], + [16.979667, 48.123497], + [17.488473, 47.867466], + [17.857133, 47.758429], + [18.696513, 47.880954], + [18.777025, 48.081768], + [19.174365, 48.111379], + [19.661364, 48.266615], + [19.769471, 48.202691], + [20.239054, 48.327567], + [20.473562, 48.56285], + [20.801294, 48.623854], + [21.872236, 48.319971], + [22.085608, 48.422264], + [22.64082, 48.15024], + [22.710531, 47.882194], + [22.099768, 47.672439], + [21.626515, 46.994238], + [21.021952, 46.316088], + [20.220192, 46.127469], + [19.596045, 46.17173], + [18.829838, 45.908878], + [18.456062, 45.759481], + [17.630066, 45.951769], + [16.882515, 46.380632], + [16.564808, 46.503751], + [16.370505, 46.841327], + [16.202298, 46.852386] + ] + ] + }, + "id": "HUN" + }, + { + "type": "Feature", + "properties": { "name": "Indonesia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [120.715609, -10.239581], + [120.295014, -10.25865], + [118.967808, -9.557969], + [119.90031, -9.36134], + [120.425756, -9.665921], + [120.775502, -9.969675], + [120.715609, -10.239581] + ] + ], + [ + [ + [124.43595, -10.140001], + [123.579982, -10.359987], + [123.459989, -10.239995], + [123.550009, -9.900016], + [123.980009, -9.290027], + [124.968682, -8.89279], + [125.07002, -9.089987], + [125.08852, -9.393173], + [124.43595, -10.140001] + ] + ], + [ + [ + [117.900018, -8.095681], + [118.260616, -8.362383], + [118.87846, -8.280683], + [119.126507, -8.705825], + [117.970402, -8.906639], + [117.277731, -9.040895], + [116.740141, -9.032937], + [117.083737, -8.457158], + [117.632024, -8.449303], + [117.900018, -8.095681] + ] + ], + [ + [ + [122.903537, -8.094234], + [122.756983, -8.649808], + [121.254491, -8.933666], + [119.924391, -8.810418], + [119.920929, -8.444859], + [120.715092, -8.236965], + [121.341669, -8.53674], + [122.007365, -8.46062], + [122.903537, -8.094234] + ] + ], + [ + [ + [108.623479, -6.777674], + [110.539227, -6.877358], + [110.759576, -6.465186], + [112.614811, -6.946036], + [112.978768, -7.594213], + [114.478935, -7.776528], + [115.705527, -8.370807], + [114.564511, -8.751817], + [113.464734, -8.348947], + [112.559672, -8.376181], + [111.522061, -8.302129], + [110.58615, -8.122605], + [109.427667, -7.740664], + [108.693655, -7.6416], + [108.277763, -7.766657], + [106.454102, -7.3549], + [106.280624, -6.9249], + [105.365486, -6.851416], + [106.051646, -5.895919], + [107.265009, -5.954985], + [108.072091, -6.345762], + [108.486846, -6.421985], + [108.623479, -6.777674] + ] + ], + [ + [ + [134.724624, -6.214401], + [134.210134, -6.895238], + [134.112776, -6.142467], + [134.290336, -5.783058], + [134.499625, -5.445042], + [134.727002, -5.737582], + [134.724624, -6.214401] + ] + ], + [ + [ + [127.249215, -3.459065], + [126.874923, -3.790983], + [126.183802, -3.607376], + [125.989034, -3.177273], + [127.000651, -3.129318], + [127.249215, -3.459065] + ] + ], + [ + [ + [130.471344, -3.093764], + [130.834836, -3.858472], + [129.990547, -3.446301], + [129.155249, -3.362637], + [128.590684, -3.428679], + [127.898891, -3.393436], + [128.135879, -2.84365], + [129.370998, -2.802154], + [130.471344, -3.093764] + ] + ], + [ + [ + [134.143368, -1.151867], + [134.422627, -2.769185], + [135.457603, -3.367753], + [136.293314, -2.307042], + [137.440738, -1.703513], + [138.329727, -1.702686], + [139.184921, -2.051296], + [139.926684, -2.409052], + [141.00021, -2.600151], + [141.017057, -5.859022], + [141.033852, -9.117893], + [140.143415, -8.297168], + [139.127767, -8.096043], + [138.881477, -8.380935], + [137.614474, -8.411683], + [138.039099, -7.597882], + [138.668621, -7.320225], + [138.407914, -6.232849], + [137.92784, -5.393366], + [135.98925, -4.546544], + [135.164598, -4.462931], + [133.66288, -3.538853], + [133.367705, -4.024819], + [132.983956, -4.112979], + [132.756941, -3.746283], + [132.753789, -3.311787], + [131.989804, -2.820551], + [133.066845, -2.460418], + [133.780031, -2.479848], + [133.696212, -2.214542], + [132.232373, -2.212526], + [131.836222, -1.617162], + [130.94284, -1.432522], + [130.519558, -0.93772], + [131.867538, -0.695461], + [132.380116, -0.369538], + [133.985548, -0.78021], + [134.143368, -1.151867] + ] + ], + [ + [ + [125.240501, 1.419836], + [124.437035, 0.427881], + [123.685505, 0.235593], + [122.723083, 0.431137], + [121.056725, 0.381217], + [120.183083, 0.237247], + [120.04087, -0.519658], + [120.935905, -1.408906], + [121.475821, -0.955962], + [123.340565, -0.615673], + [123.258399, -1.076213], + [122.822715, -0.930951], + [122.38853, -1.516858], + [121.508274, -1.904483], + [122.454572, -3.186058], + [122.271896, -3.5295], + [123.170963, -4.683693], + [123.162333, -5.340604], + [122.628515, -5.634591], + [122.236394, -5.282933], + [122.719569, -4.464172], + [121.738234, -4.851331], + [121.489463, -4.574553], + [121.619171, -4.188478], + [120.898182, -3.602105], + [120.972389, -2.627643], + [120.305453, -2.931604], + [120.390047, -4.097579], + [120.430717, -5.528241], + [119.796543, -5.6734], + [119.366906, -5.379878], + [119.653606, -4.459417], + [119.498835, -3.494412], + [119.078344, -3.487022], + [118.767769, -2.801999], + [119.180974, -2.147104], + [119.323394, -1.353147], + [119.825999, 0.154254], + [120.035702, 0.566477], + [120.885779, 1.309223], + [121.666817, 1.013944], + [122.927567, 0.875192], + [124.077522, 0.917102], + [125.065989, 1.643259], + [125.240501, 1.419836] + ] + ], + [ + [ + [128.688249, 1.132386], + [128.635952, 0.258486], + [128.12017, 0.356413], + [127.968034, -0.252077], + [128.379999, -0.780004], + [128.100016, -0.899996], + [127.696475, -0.266598], + [127.39949, 1.011722], + [127.600512, 1.810691], + [127.932378, 2.174596], + [128.004156, 1.628531], + [128.594559, 1.540811], + [128.688249, 1.132386] + ] + ], + [ + [ + [117.875627, 1.827641], + [118.996747, 0.902219], + [117.811858, 0.784242], + [117.478339, 0.102475], + [117.521644, -0.803723], + [116.560048, -1.487661], + [116.533797, -2.483517], + [116.148084, -4.012726], + [116.000858, -3.657037], + [114.864803, -4.106984], + [114.468652, -3.495704], + [113.755672, -3.43917], + [113.256994, -3.118776], + [112.068126, -3.478392], + [111.703291, -2.994442], + [111.04824, -3.049426], + [110.223846, -2.934032], + [110.070936, -1.592874], + [109.571948, -1.314907], + [109.091874, -0.459507], + [108.952658, 0.415375], + [109.069136, 1.341934], + [109.66326, 2.006467], + [109.830227, 1.338136], + [110.514061, 0.773131], + [111.159138, 0.976478], + [111.797548, 0.904441], + [112.380252, 1.410121], + [112.859809, 1.49779], + [113.80585, 1.217549], + [114.621355, 1.430688], + [115.134037, 2.821482], + [115.519078, 3.169238], + [115.865517, 4.306559], + [117.015214, 4.306094], + [117.882035, 4.137551], + [117.313232, 3.234428], + [118.04833, 2.28769], + [117.875627, 1.827641] + ] + ], + [ + [ + [105.817655, -5.852356], + [104.710384, -5.873285], + [103.868213, -5.037315], + [102.584261, -4.220259], + [102.156173, -3.614146], + [101.399113, -2.799777], + [100.902503, -2.050262], + [100.141981, -0.650348], + [99.26374, 0.183142], + [98.970011, 1.042882], + [98.601351, 1.823507], + [97.699598, 2.453184], + [97.176942, 3.308791], + [96.424017, 3.86886], + [95.380876, 4.970782], + [95.293026, 5.479821], + [95.936863, 5.439513], + [97.484882, 5.246321], + [98.369169, 4.26837], + [99.142559, 3.59035], + [99.693998, 3.174329], + [100.641434, 2.099381], + [101.658012, 2.083697], + [102.498271, 1.3987], + [103.07684, 0.561361], + [103.838396, 0.104542], + [103.437645, -0.711946], + [104.010789, -1.059212], + [104.369991, -1.084843], + [104.53949, -1.782372], + [104.887893, -2.340425], + [105.622111, -2.428844], + [106.108593, -3.061777], + [105.857446, -4.305525], + [105.817655, -5.852356] + ] + ] + ] + }, + "id": "IDN" + }, + { + "type": "Feature", + "properties": { "name": "India" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [77.837451, 35.49401], + [78.912269, 34.321936], + [78.811086, 33.506198], + [79.208892, 32.994395], + [79.176129, 32.48378], + [78.458446, 32.618164], + [78.738894, 31.515906], + [79.721367, 30.882715], + [81.111256, 30.183481], + [80.476721, 29.729865], + [80.088425, 28.79447], + [81.057203, 28.416095], + [81.999987, 27.925479], + [83.304249, 27.364506], + [84.675018, 27.234901], + [85.251779, 26.726198], + [86.024393, 26.630985], + [87.227472, 26.397898], + [88.060238, 26.414615], + [88.174804, 26.810405], + [88.043133, 27.445819], + [88.120441, 27.876542], + [88.730326, 28.086865], + [88.814248, 27.299316], + [88.835643, 27.098966], + [89.744528, 26.719403], + [90.373275, 26.875724], + [91.217513, 26.808648], + [92.033484, 26.83831], + [92.103712, 27.452614], + [91.696657, 27.771742], + [92.503119, 27.896876], + [93.413348, 28.640629], + [94.56599, 29.277438], + [95.404802, 29.031717], + [96.117679, 29.452802], + [96.586591, 28.83098], + [96.248833, 28.411031], + [97.327114, 28.261583], + [97.402561, 27.882536], + [97.051989, 27.699059], + [97.133999, 27.083774], + [96.419366, 27.264589], + [95.124768, 26.573572], + [95.155153, 26.001307], + [94.603249, 25.162495], + [94.552658, 24.675238], + [94.106742, 23.850741], + [93.325188, 24.078556], + [93.286327, 23.043658], + [93.060294, 22.703111], + [93.166128, 22.27846], + [92.672721, 22.041239], + [92.146035, 23.627499], + [91.869928, 23.624346], + [91.706475, 22.985264], + [91.158963, 23.503527], + [91.46773, 24.072639], + [91.915093, 24.130414], + [92.376202, 24.976693], + [91.799596, 25.147432], + [90.872211, 25.132601], + [89.920693, 25.26975], + [89.832481, 25.965082], + [89.355094, 26.014407], + [88.563049, 26.446526], + [88.209789, 25.768066], + [88.931554, 25.238692], + [88.306373, 24.866079], + [88.084422, 24.501657], + [88.69994, 24.233715], + [88.52977, 23.631142], + [88.876312, 22.879146], + [89.031961, 22.055708], + [88.888766, 21.690588], + [88.208497, 21.703172], + [86.975704, 21.495562], + [87.033169, 20.743308], + [86.499351, 20.151638], + [85.060266, 19.478579], + [83.941006, 18.30201], + [83.189217, 17.671221], + [82.192792, 17.016636], + [82.191242, 16.556664], + [81.692719, 16.310219], + [80.791999, 15.951972], + [80.324896, 15.899185], + [80.025069, 15.136415], + [80.233274, 13.835771], + [80.286294, 13.006261], + [79.862547, 12.056215], + [79.857999, 10.357275], + [79.340512, 10.308854], + [78.885345, 9.546136], + [79.18972, 9.216544], + [78.277941, 8.933047], + [77.941165, 8.252959], + [77.539898, 7.965535], + [76.592979, 8.899276], + [76.130061, 10.29963], + [75.746467, 11.308251], + [75.396101, 11.781245], + [74.864816, 12.741936], + [74.616717, 13.992583], + [74.443859, 14.617222], + [73.534199, 15.990652], + [73.119909, 17.92857], + [72.820909, 19.208234], + [72.824475, 20.419503], + [72.630533, 21.356009], + [71.175273, 20.757441], + [70.470459, 20.877331], + [69.16413, 22.089298], + [69.644928, 22.450775], + [69.349597, 22.84318], + [68.176645, 23.691965], + [68.842599, 24.359134], + [71.04324, 24.356524], + [70.844699, 25.215102], + [70.282873, 25.722229], + [70.168927, 26.491872], + [69.514393, 26.940966], + [70.616496, 27.989196], + [71.777666, 27.91318], + [72.823752, 28.961592], + [73.450638, 29.976413], + [74.42138, 30.979815], + [74.405929, 31.692639], + [75.258642, 32.271105], + [74.451559, 32.7649], + [74.104294, 33.441473], + [73.749948, 34.317699], + [74.240203, 34.748887], + [75.757061, 34.504923], + [76.871722, 34.653544], + [77.837451, 35.49401] + ] + ] + }, + "id": "IND" + }, + { + "type": "Feature", + "properties": { "name": "Ireland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.197885, 53.867565], + [-6.032985, 53.153164], + [-6.788857, 52.260118], + [-8.561617, 51.669301], + [-9.977086, 51.820455], + [-9.166283, 52.864629], + [-9.688525, 53.881363], + [-8.327987, 54.664519], + [-7.572168, 55.131622], + [-7.366031, 54.595841], + [-7.572168, 54.059956], + [-6.95373, 54.073702], + [-6.197885, 53.867565] + ] + ] + }, + "id": "IRL" + }, + { + "type": "Feature", + "properties": { "name": "Iran" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [53.921598, 37.198918], + [54.800304, 37.392421], + [55.511578, 37.964117], + [56.180375, 37.935127], + [56.619366, 38.121394], + [57.330434, 38.029229], + [58.436154, 37.522309], + [59.234762, 37.412988], + [60.377638, 36.527383], + [61.123071, 36.491597], + [61.210817, 35.650072], + [60.803193, 34.404102], + [60.52843, 33.676446], + [60.9637, 33.528832], + [60.536078, 32.981269], + [60.863655, 32.18292], + [60.941945, 31.548075], + [61.699314, 31.379506], + [61.781222, 30.73585], + [60.874248, 29.829239], + [61.369309, 29.303276], + [61.771868, 28.699334], + [62.72783, 28.259645], + [62.755426, 27.378923], + [63.233898, 27.217047], + [63.316632, 26.756532], + [61.874187, 26.239975], + [61.497363, 25.078237], + [59.616134, 25.380157], + [58.525761, 25.609962], + [57.397251, 25.739902], + [56.970766, 26.966106], + [56.492139, 27.143305], + [55.72371, 26.964633], + [54.71509, 26.480658], + [53.493097, 26.812369], + [52.483598, 27.580849], + [51.520763, 27.86569], + [50.852948, 28.814521], + [50.115009, 30.147773], + [49.57685, 29.985715], + [48.941333, 30.31709], + [48.567971, 29.926778], + [48.014568, 30.452457], + [48.004698, 30.985137], + [47.685286, 30.984853], + [47.849204, 31.709176], + [47.334661, 32.469155], + [46.109362, 33.017287], + [45.416691, 33.967798], + [45.64846, 34.748138], + [46.151788, 35.093259], + [46.07634, 35.677383], + [45.420618, 35.977546], + [44.77267, 37.17045], + [44.225756, 37.971584], + [44.421403, 38.281281], + [44.109225, 39.428136], + [44.79399, 39.713003], + [44.952688, 39.335765], + [45.457722, 38.874139], + [46.143623, 38.741201], + [46.50572, 38.770605], + [47.685079, 39.508364], + [48.060095, 39.582235], + [48.355529, 39.288765], + [48.010744, 38.794015], + [48.634375, 38.270378], + [48.883249, 38.320245], + [49.199612, 37.582874], + [50.147771, 37.374567], + [50.842354, 36.872814], + [52.264025, 36.700422], + [53.82579, 36.965031], + [53.921598, 37.198918] + ] + ] + }, + "id": "IRN" + }, + { + "type": "Feature", + "properties": { "name": "Iraq" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [45.420618, 35.977546], + [46.07634, 35.677383], + [46.151788, 35.093259], + [45.64846, 34.748138], + [45.416691, 33.967798], + [46.109362, 33.017287], + [47.334661, 32.469155], + [47.849204, 31.709176], + [47.685286, 30.984853], + [48.004698, 30.985137], + [48.014568, 30.452457], + [48.567971, 29.926778], + [47.974519, 29.975819], + [47.302622, 30.05907], + [46.568713, 29.099025], + [44.709499, 29.178891], + [41.889981, 31.190009], + [40.399994, 31.889992], + [39.195468, 32.161009], + [38.792341, 33.378686], + [41.006159, 34.419372], + [41.383965, 35.628317], + [41.289707, 36.358815], + [41.837064, 36.605854], + [42.349591, 37.229873], + [42.779126, 37.385264], + [43.942259, 37.256228], + [44.293452, 37.001514], + [44.772699, 37.170445], + [45.420618, 35.977546] + ] + ] + }, + "id": "IRQ" + }, + { + "type": "Feature", + "properties": { "name": "Iceland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-14.508695, 66.455892], + [-14.739637, 65.808748], + [-13.609732, 65.126671], + [-14.909834, 64.364082], + [-17.794438, 63.678749], + [-18.656246, 63.496383], + [-19.972755, 63.643635], + [-22.762972, 63.960179], + [-21.778484, 64.402116], + [-23.955044, 64.89113], + [-22.184403, 65.084968], + [-22.227423, 65.378594], + [-24.326184, 65.611189], + [-23.650515, 66.262519], + [-22.134922, 66.410469], + [-20.576284, 65.732112], + [-19.056842, 66.276601], + [-17.798624, 65.993853], + [-16.167819, 66.526792], + [-14.508695, 66.455892] + ] + ] + }, + "id": "ISL" + }, + { + "type": "Feature", + "properties": { "name": "Israel" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.719918, 32.709192], + [35.545665, 32.393992], + [35.18393, 32.532511], + [34.974641, 31.866582], + [35.225892, 31.754341], + [34.970507, 31.616778], + [34.927408, 31.353435], + [35.397561, 31.489086], + [35.420918, 31.100066], + [34.922603, 29.501326], + [34.265433, 31.219361], + [34.556372, 31.548824], + [34.488107, 31.605539], + [34.752587, 32.072926], + [34.955417, 32.827376], + [35.098457, 33.080539], + [35.126053, 33.0909], + [35.460709, 33.08904], + [35.552797, 33.264275], + [35.821101, 33.277426], + [35.836397, 32.868123], + [35.700798, 32.716014], + [35.719918, 32.709192] + ] + ] + }, + "id": "ISR" + }, + { + "type": "Feature", + "properties": { "name": "Italy" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [15.520376, 38.231155], + [15.160243, 37.444046], + [15.309898, 37.134219], + [15.099988, 36.619987], + [14.335229, 36.996631], + [13.826733, 37.104531], + [12.431004, 37.61295], + [12.570944, 38.126381], + [13.741156, 38.034966], + [14.761249, 38.143874], + [15.520376, 38.231155] + ] + ], + [ + [ + [9.210012, 41.209991], + [9.809975, 40.500009], + [9.669519, 39.177376], + [9.214818, 39.240473], + [8.806936, 38.906618], + [8.428302, 39.171847], + [8.388253, 40.378311], + [8.159998, 40.950007], + [8.709991, 40.899984], + [9.210012, 41.209991] + ] + ], + [ + [ + [12.376485, 46.767559], + [13.806475, 46.509306], + [13.69811, 46.016778], + [13.93763, 45.591016], + [13.141606, 45.736692], + [12.328581, 45.381778], + [12.383875, 44.885374], + [12.261453, 44.600482], + [12.589237, 44.091366], + [13.526906, 43.587727], + [14.029821, 42.761008], + [15.14257, 41.95514], + [15.926191, 41.961315], + [16.169897, 41.740295], + [15.889346, 41.541082], + [16.785002, 41.179606], + [17.519169, 40.877143], + [18.376687, 40.355625], + [18.480247, 40.168866], + [18.293385, 39.810774], + [17.73838, 40.277671], + [16.869596, 40.442235], + [16.448743, 39.795401], + [17.17149, 39.4247], + [17.052841, 38.902871], + [16.635088, 38.843572], + [16.100961, 37.985899], + [15.684087, 37.908849], + [15.687963, 38.214593], + [15.891981, 38.750942], + [16.109332, 38.964547], + [15.718814, 39.544072], + [15.413613, 40.048357], + [14.998496, 40.172949], + [14.703268, 40.60455], + [14.060672, 40.786348], + [13.627985, 41.188287], + [12.888082, 41.25309], + [12.106683, 41.704535], + [11.191906, 42.355425], + [10.511948, 42.931463], + [10.200029, 43.920007], + [9.702488, 44.036279], + [8.888946, 44.366336], + [8.428561, 44.231228], + [7.850767, 43.767148], + [7.435185, 43.693845], + [7.549596, 44.127901], + [7.007562, 44.254767], + [6.749955, 45.028518], + [7.096652, 45.333099], + [6.802355, 45.70858], + [6.843593, 45.991147], + [7.273851, 45.776948], + [7.755992, 45.82449], + [8.31663, 46.163642], + [8.489952, 46.005151], + [8.966306, 46.036932], + [9.182882, 46.440215], + [9.922837, 46.314899], + [10.363378, 46.483571], + [10.442701, 46.893546], + [11.048556, 46.751359], + [11.164828, 46.941579], + [12.153088, 47.115393], + [12.376485, 46.767559] + ] + ] + ] + }, + "id": "ITA" + }, + { + "type": "Feature", + "properties": { "name": "Jamaica" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-77.569601, 18.490525], + [-76.896619, 18.400867], + [-76.365359, 18.160701], + [-76.199659, 17.886867], + [-76.902561, 17.868238], + [-77.206341, 17.701116], + [-77.766023, 17.861597], + [-78.337719, 18.225968], + [-78.217727, 18.454533], + [-77.797365, 18.524218], + [-77.569601, 18.490525] + ] + ] + }, + "id": "JAM" + }, + { + "type": "Feature", + "properties": { "name": "Jordan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.545665, 32.393992], + [35.719918, 32.709192], + [36.834062, 32.312938], + [38.792341, 33.378686], + [39.195468, 32.161009], + [39.004886, 32.010217], + [37.002166, 31.508413], + [37.998849, 30.5085], + [37.66812, 30.338665], + [37.503582, 30.003776], + [36.740528, 29.865283], + [36.501214, 29.505254], + [36.068941, 29.197495], + [34.956037, 29.356555], + [34.922603, 29.501326], + [35.420918, 31.100066], + [35.397561, 31.489086], + [35.545252, 31.782505], + [35.545665, 32.393992] + ] + ] + }, + "id": "JOR" + }, + { + "type": "Feature", + "properties": { "name": "Japan" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [134.638428, 34.149234], + [134.766379, 33.806335], + [134.203416, 33.201178], + [133.79295, 33.521985], + [133.280268, 33.28957], + [133.014858, 32.704567], + [132.363115, 32.989382], + [132.371176, 33.463642], + [132.924373, 34.060299], + [133.492968, 33.944621], + [133.904106, 34.364931], + [134.638428, 34.149234] + ] + ], + [ + [ + [140.976388, 37.142074], + [140.59977, 36.343983], + [140.774074, 35.842877], + [140.253279, 35.138114], + [138.975528, 34.6676], + [137.217599, 34.606286], + [135.792983, 33.464805], + [135.120983, 33.849071], + [135.079435, 34.596545], + [133.340316, 34.375938], + [132.156771, 33.904933], + [130.986145, 33.885761], + [132.000036, 33.149992], + [131.33279, 31.450355], + [130.686318, 31.029579], + [130.20242, 31.418238], + [130.447676, 32.319475], + [129.814692, 32.61031], + [129.408463, 33.296056], + [130.353935, 33.604151], + [130.878451, 34.232743], + [131.884229, 34.749714], + [132.617673, 35.433393], + [134.608301, 35.731618], + [135.677538, 35.527134], + [136.723831, 37.304984], + [137.390612, 36.827391], + [138.857602, 37.827485], + [139.426405, 38.215962], + [140.05479, 39.438807], + [139.883379, 40.563312], + [140.305783, 41.195005], + [141.368973, 41.37856], + [141.914263, 39.991616], + [141.884601, 39.180865], + [140.959489, 38.174001], + [140.976388, 37.142074] + ] + ], + [ + [ + [143.910162, 44.1741], + [144.613427, 43.960883], + [145.320825, 44.384733], + [145.543137, 43.262088], + [144.059662, 42.988358], + [143.18385, 41.995215], + [141.611491, 42.678791], + [141.067286, 41.584594], + [139.955106, 41.569556], + [139.817544, 42.563759], + [140.312087, 43.333273], + [141.380549, 43.388825], + [141.671952, 44.772125], + [141.967645, 45.551483], + [143.14287, 44.510358], + [143.910162, 44.1741] + ] + ] + ] + }, + "id": "JPN" + }, + { + "type": "Feature", + "properties": { "name": "Kazakhstan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70.962315, 42.266154], + [70.388965, 42.081308], + [69.070027, 41.384244], + [68.632483, 40.668681], + [68.259896, 40.662325], + [67.985856, 41.135991], + [66.714047, 41.168444], + [66.510649, 41.987644], + [66.023392, 41.994646], + [66.098012, 42.99766], + [64.900824, 43.728081], + [63.185787, 43.650075], + [62.0133, 43.504477], + [61.05832, 44.405817], + [60.239972, 44.784037], + [58.689989, 45.500014], + [58.503127, 45.586804], + [55.928917, 44.995858], + [55.968191, 41.308642], + [55.455251, 41.259859], + [54.755345, 42.043971], + [54.079418, 42.324109], + [52.944293, 42.116034], + [52.50246, 41.783316], + [52.446339, 42.027151], + [52.692112, 42.443895], + [52.501426, 42.792298], + [51.342427, 43.132975], + [50.891292, 44.031034], + [50.339129, 44.284016], + [50.305643, 44.609836], + [51.278503, 44.514854], + [51.316899, 45.245998], + [52.16739, 45.408391], + [53.040876, 45.259047], + [53.220866, 46.234646], + [53.042737, 46.853006], + [52.042023, 46.804637], + [51.191945, 47.048705], + [50.034083, 46.60899], + [49.10116, 46.39933], + [48.593241, 46.561034], + [48.694734, 47.075628], + [48.057253, 47.743753], + [47.315231, 47.715847], + [46.466446, 48.394152], + [47.043672, 49.152039], + [46.751596, 49.356006], + [47.54948, 50.454698], + [48.577841, 49.87476], + [48.702382, 50.605128], + [50.766648, 51.692762], + [52.328724, 51.718652], + [54.532878, 51.02624], + [55.716941, 50.621717], + [56.777961, 51.043551], + [58.363291, 51.063653], + [59.642282, 50.545442], + [59.932807, 50.842194], + [61.337424, 50.79907], + [61.588003, 51.272659], + [59.967534, 51.96042], + [60.927269, 52.447548], + [60.739993, 52.719986], + [61.699986, 52.979996], + [60.978066, 53.664993], + [61.436591, 54.006265], + [65.178534, 54.354228], + [65.666876, 54.601267], + [68.1691, 54.970392], + [69.068167, 55.38525], + [70.865267, 55.169734], + [71.180131, 54.133285], + [72.22415, 54.376655], + [73.508516, 54.035617], + [73.425679, 53.48981], + [74.384845, 53.546861], + [76.8911, 54.490524], + [76.525179, 54.177003], + [77.800916, 53.404415], + [80.03556, 50.864751], + [80.568447, 51.388336], + [81.945986, 50.812196], + [83.383004, 51.069183], + [83.935115, 50.889246], + [84.416377, 50.3114], + [85.11556, 50.117303], + [85.54127, 49.692859], + [86.829357, 49.826675], + [87.35997, 49.214981], + [86.598776, 48.549182], + [85.768233, 48.455751], + [85.720484, 47.452969], + [85.16429, 47.000956], + [83.180484, 47.330031], + [82.458926, 45.53965], + [81.947071, 45.317027], + [79.966106, 44.917517], + [80.866206, 43.180362], + [80.18015, 42.920068], + [80.25999, 42.349999], + [79.643645, 42.496683], + [79.142177, 42.856092], + [77.658392, 42.960686], + [76.000354, 42.988022], + [75.636965, 42.8779], + [74.212866, 43.298339], + [73.645304, 43.091272], + [73.489758, 42.500894], + [71.844638, 42.845395], + [71.186281, 42.704293], + [70.962315, 42.266154] + ] + ] + }, + "id": "KAZ" + }, + { + "type": "Feature", + "properties": { "name": "Kenya" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [40.993, -0.85829], + [41.58513, -1.68325], + [40.88477, -2.08255], + [40.63785, -2.49979], + [40.26304, -2.57309], + [40.12119, -3.27768], + [39.80006, -3.68116], + [39.60489, -4.34653], + [39.20222, -4.67677], + [37.7669, -3.67712], + [37.69869, -3.09699], + [34.07262, -1.05982], + [33.903711, -0.95], + [33.893569, 0.109814], + [34.18, 0.515], + [34.6721, 1.17694], + [35.03599, 1.90584], + [34.59607, 3.05374], + [34.47913, 3.5556], + [34.005, 4.249885], + [34.620196, 4.847123], + [35.298007, 5.506], + [35.817448, 5.338232], + [35.817448, 4.776966], + [36.159079, 4.447864], + [36.855093, 4.447864], + [38.120915, 3.598605], + [38.43697, 3.58851], + [38.67114, 3.61607], + [38.89251, 3.50074], + [39.559384, 3.42206], + [39.85494, 3.83879], + [40.76848, 4.25702], + [41.1718, 3.91909], + [41.855083, 3.918912], + [40.98105, 2.78452], + [40.993, -0.85829] + ] + ] + }, + "id": "KEN" + }, + { + "type": "Feature", + "properties": { "name": "Kyrgyzstan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [70.962315, 42.266154], + [71.186281, 42.704293], + [71.844638, 42.845395], + [73.489758, 42.500894], + [73.645304, 43.091272], + [74.212866, 43.298339], + [75.636965, 42.8779], + [76.000354, 42.988022], + [77.658392, 42.960686], + [79.142177, 42.856092], + [79.643645, 42.496683], + [80.25999, 42.349999], + [80.11943, 42.123941], + [78.543661, 41.582243], + [78.187197, 41.185316], + [76.904484, 41.066486], + [76.526368, 40.427946], + [75.467828, 40.562072], + [74.776862, 40.366425], + [73.822244, 39.893973], + [73.960013, 39.660008], + [73.675379, 39.431237], + [71.784694, 39.279463], + [70.549162, 39.604198], + [69.464887, 39.526683], + [69.55961, 40.103211], + [70.648019, 39.935754], + [71.014198, 40.244366], + [71.774875, 40.145844], + [73.055417, 40.866033], + [71.870115, 41.3929], + [71.157859, 41.143587], + [70.420022, 41.519998], + [71.259248, 42.167711], + [70.962315, 42.266154] + ] + ] + }, + "id": "KGZ" + }, + { + "type": "Feature", + "properties": { "name": "Cambodia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [103.49728, 10.632555], + [103.09069, 11.153661], + [102.584932, 12.186595], + [102.348099, 13.394247], + [102.988422, 14.225721], + [104.281418, 14.416743], + [105.218777, 14.273212], + [106.043946, 13.881091], + [106.496373, 14.570584], + [107.382727, 14.202441], + [107.614548, 13.535531], + [107.491403, 12.337206], + [105.810524, 11.567615], + [106.24967, 10.961812], + [105.199915, 10.88931], + [104.334335, 10.486544], + [103.49728, 10.632555] + ] + ] + }, + "id": "KHM" + }, + { + "type": "Feature", + "properties": { "name": "South Korea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [128.349716, 38.612243], + [129.21292, 37.432392], + [129.46045, 36.784189], + [129.468304, 35.632141], + [129.091377, 35.082484], + [128.18585, 34.890377], + [127.386519, 34.475674], + [126.485748, 34.390046], + [126.37392, 34.93456], + [126.559231, 35.684541], + [126.117398, 36.725485], + [126.860143, 36.893924], + [126.174759, 37.749686], + [126.237339, 37.840378], + [126.68372, 37.804773], + [127.073309, 38.256115], + [127.780035, 38.304536], + [128.205746, 38.370397], + [128.349716, 38.612243] + ] + ] + }, + "id": "KOR" + }, + { + "type": "Feature", + "properties": { "name": "Kosovo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.76216, 42.05186], + [20.71731, 41.84711], + [20.59023, 41.85541], + [20.52295, 42.21787], + [20.28374, 42.32025], + [20.0707, 42.58863], + [20.25758, 42.81275], + [20.49679, 42.88469], + [20.63508, 43.21671], + [20.81448, 43.27205], + [20.95651, 43.13094], + [21.143395, 43.068685], + [21.27421, 42.90959], + [21.43866, 42.86255], + [21.63302, 42.67717], + [21.77505, 42.6827], + [21.66292, 42.43922], + [21.54332, 42.32025], + [21.576636, 42.245224], + [21.3527, 42.2068], + [20.76216, 42.05186] + ] + ] + }, + "id": "-99" + }, + { + "type": "Feature", + "properties": { "name": "Kuwait" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [47.974519, 29.975819], + [48.183189, 29.534477], + [48.093943, 29.306299], + [48.416094, 28.552004], + [47.708851, 28.526063], + [47.459822, 29.002519], + [46.568713, 29.099025], + [47.302622, 30.05907], + [47.974519, 29.975819] + ] + ] + }, + "id": "KWT" + }, + { + "type": "Feature", + "properties": { "name": "Laos" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [105.218777, 14.273212], + [105.544338, 14.723934], + [105.589039, 15.570316], + [104.779321, 16.441865], + [104.716947, 17.428859], + [103.956477, 18.240954], + [103.200192, 18.309632], + [102.998706, 17.961695], + [102.413005, 17.932782], + [102.113592, 18.109102], + [101.059548, 17.512497], + [101.035931, 18.408928], + [101.282015, 19.462585], + [100.606294, 19.508344], + [100.548881, 20.109238], + [100.115988, 20.41785], + [100.329101, 20.786122], + [101.180005, 21.436573], + [101.270026, 21.201652], + [101.80312, 21.174367], + [101.652018, 22.318199], + [102.170436, 22.464753], + [102.754896, 21.675137], + [103.203861, 20.766562], + [104.435, 20.758733], + [104.822574, 19.886642], + [104.183388, 19.624668], + [103.896532, 19.265181], + [105.094598, 18.666975], + [105.925762, 17.485315], + [106.556008, 16.604284], + [107.312706, 15.908538], + [107.564525, 15.202173], + [107.382727, 14.202441], + [106.496373, 14.570584], + [106.043946, 13.881091], + [105.218777, 14.273212] + ] + ] + }, + "id": "LAO" + }, + { + "type": "Feature", + "properties": { "name": "Lebanon" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.821101, 33.277426], + [35.552797, 33.264275], + [35.460709, 33.08904], + [35.126053, 33.0909], + [35.482207, 33.90545], + [35.979592, 34.610058], + [35.998403, 34.644914], + [36.448194, 34.593935], + [36.61175, 34.201789], + [36.06646, 33.824912], + [35.821101, 33.277426] + ] + ] + }, + "id": "LBN" + }, + { + "type": "Feature", + "properties": { "name": "Liberia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-7.712159, 4.364566], + [-7.974107, 4.355755], + [-9.004794, 4.832419], + [-9.91342, 5.593561], + [-10.765384, 6.140711], + [-11.438779, 6.785917], + [-11.199802, 7.105846], + [-11.146704, 7.396706], + [-10.695595, 7.939464], + [-10.230094, 8.406206], + [-10.016567, 8.428504], + [-9.755342, 8.541055], + [-9.33728, 7.928534], + [-9.403348, 7.526905], + [-9.208786, 7.313921], + [-8.926065, 7.309037], + [-8.722124, 7.711674], + [-8.439298, 7.686043], + [-8.485446, 7.395208], + [-8.385452, 6.911801], + [-8.60288, 6.467564], + [-8.311348, 6.193033], + [-7.993693, 6.12619], + [-7.570153, 5.707352], + [-7.539715, 5.313345], + [-7.635368, 5.188159], + [-7.712159, 4.364566] + ] + ] + }, + "id": "LBR" + }, + { + "type": "Feature", + "properties": { "name": "Libya" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [14.8513, 22.86295], + [14.143871, 22.491289], + [13.581425, 23.040506], + [11.999506, 23.471668], + [11.560669, 24.097909], + [10.771364, 24.562532], + [10.303847, 24.379313], + [9.948261, 24.936954], + [9.910693, 25.365455], + [9.319411, 26.094325], + [9.716286, 26.512206], + [9.629056, 27.140953], + [9.756128, 27.688259], + [9.683885, 28.144174], + [9.859998, 28.95999], + [9.805634, 29.424638], + [9.48214, 30.307556], + [9.970017, 30.539325], + [10.056575, 30.961831], + [9.950225, 31.37607], + [10.636901, 31.761421], + [10.94479, 32.081815], + [11.432253, 32.368903], + [11.488787, 33.136996], + [12.66331, 32.79278], + [13.08326, 32.87882], + [13.91868, 32.71196], + [15.24563, 32.26508], + [15.71394, 31.37626], + [16.61162, 31.18218], + [18.02109, 30.76357], + [19.08641, 30.26639], + [19.57404, 30.52582], + [20.05335, 30.98576], + [19.82033, 31.75179], + [20.13397, 32.2382], + [20.85452, 32.7068], + [21.54298, 32.8432], + [22.89576, 32.63858], + [23.2368, 32.19149], + [23.60913, 32.18726], + [23.9275, 32.01667], + [24.92114, 31.89936], + [25.16482, 31.56915], + [24.80287, 31.08929], + [24.95762, 30.6616], + [24.70007, 30.04419], + [25, 29.238655], + [25, 25.6825], + [25, 22], + [25, 20.00304], + [23.85, 20], + [23.83766, 19.58047], + [19.84926, 21.49509], + [15.86085, 23.40972], + [14.8513, 22.86295] + ] + ] + }, + "id": "LBY" + }, + { + "type": "Feature", + "properties": { "name": "Sri Lanka" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [81.787959, 7.523055], + [81.637322, 6.481775], + [81.21802, 6.197141], + [80.348357, 5.96837], + [79.872469, 6.763463], + [79.695167, 8.200843], + [80.147801, 9.824078], + [80.838818, 9.268427], + [81.304319, 8.564206], + [81.787959, 7.523055] + ] + ] + }, + "id": "LKA" + }, + { + "type": "Feature", + "properties": { "name": "Lesotho" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.978263, -28.955597], + [29.325166, -29.257387], + [29.018415, -29.743766], + [28.8484, -30.070051], + [28.291069, -30.226217], + [28.107205, -30.545732], + [27.749397, -30.645106], + [26.999262, -29.875954], + [27.532511, -29.242711], + [28.074338, -28.851469], + [28.5417, -28.647502], + [28.978263, -28.955597] + ] + ] + }, + "id": "LSO" + }, + { + "type": "Feature", + "properties": { "name": "Lithuania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.731099, 54.327537], + [22.651052, 54.582741], + [22.757764, 54.856574], + [22.315724, 55.015299], + [21.268449, 55.190482], + [21.0558, 56.031076], + [22.201157, 56.337802], + [23.878264, 56.273671], + [24.860684, 56.372528], + [25.000934, 56.164531], + [25.533047, 56.100297], + [26.494331, 55.615107], + [26.588279, 55.167176], + [25.768433, 54.846963], + [25.536354, 54.282423], + [24.450684, 53.905702], + [23.484128, 53.912498], + [23.243987, 54.220567], + [22.731099, 54.327537] + ] + ] + }, + "id": "LTU" + }, + { + "type": "Feature", + "properties": { "name": "Luxembourg" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.043073, 50.128052], + [6.242751, 49.902226], + [6.18632, 49.463803], + [5.897759, 49.442667], + [5.674052, 49.529484], + [5.782417, 50.090328], + [6.043073, 50.128052] + ] + ] + }, + "id": "LUX" + }, + { + "type": "Feature", + "properties": { "name": "Latvia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [21.0558, 56.031076], + [21.090424, 56.783873], + [21.581866, 57.411871], + [22.524341, 57.753374], + [23.318453, 57.006236], + [24.12073, 57.025693], + [24.312863, 57.793424], + [25.164594, 57.970157], + [25.60281, 57.847529], + [26.463532, 57.476389], + [27.288185, 57.474528], + [27.770016, 57.244258], + [27.855282, 56.759326], + [28.176709, 56.16913], + [27.10246, 55.783314], + [26.494331, 55.615107], + [25.533047, 56.100297], + [25.000934, 56.164531], + [24.860684, 56.372528], + [23.878264, 56.273671], + [22.201157, 56.337802], + [21.0558, 56.031076] + ] + ] + }, + "id": "LVA" + }, + { + "type": "Feature", + "properties": { "name": "Morocco" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-5.193863, 35.755182], + [-4.591006, 35.330712], + [-3.640057, 35.399855], + [-2.604306, 35.179093], + [-2.169914, 35.168396], + [-1.792986, 34.527919], + [-1.733455, 33.919713], + [-1.388049, 32.864015], + [-1.124551, 32.651522], + [-1.307899, 32.262889], + [-2.616605, 32.094346], + [-3.06898, 31.724498], + [-3.647498, 31.637294], + [-3.690441, 30.896952], + [-4.859646, 30.501188], + [-5.242129, 30.000443], + [-6.060632, 29.7317], + [-7.059228, 29.579228], + [-8.674116, 28.841289], + [-8.66559, 27.656426], + [-8.817809, 27.656426], + [-8.817828, 27.656426], + [-8.794884, 27.120696], + [-9.413037, 27.088476], + [-9.735343, 26.860945], + [-10.189424, 26.860945], + [-10.551263, 26.990808], + [-11.392555, 26.883424], + [-11.71822, 26.104092], + [-12.030759, 26.030866], + [-12.500963, 24.770116], + [-13.89111, 23.691009], + [-14.221168, 22.310163], + [-14.630833, 21.86094], + [-14.750955, 21.5006], + [-17.002962, 21.420734], + [-17.020428, 21.42231], + [-16.973248, 21.885745], + [-16.589137, 22.158234], + [-16.261922, 22.67934], + [-16.326414, 23.017768], + [-15.982611, 23.723358], + [-15.426004, 24.359134], + [-15.089332, 24.520261], + [-14.824645, 25.103533], + [-14.800926, 25.636265], + [-14.43994, 26.254418], + [-13.773805, 26.618892], + [-13.139942, 27.640148], + [-13.121613, 27.654148], + [-12.618837, 28.038186], + [-11.688919, 28.148644], + [-10.900957, 28.832142], + [-10.399592, 29.098586], + [-9.564811, 29.933574], + [-9.814718, 31.177736], + [-9.434793, 32.038096], + [-9.300693, 32.564679], + [-8.657476, 33.240245], + [-7.654178, 33.697065], + [-6.912544, 34.110476], + [-6.244342, 35.145865], + [-5.929994, 35.759988], + [-5.193863, 35.755182] + ] + ] + }, + "id": "MAR" + }, + { + "type": "Feature", + "properties": { "name": "Moldova" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [26.619337, 48.220726], + [26.857824, 48.368211], + [27.522537, 48.467119], + [28.259547, 48.155562], + [28.670891, 48.118149], + [29.122698, 47.849095], + [29.050868, 47.510227], + [29.415135, 47.346645], + [29.559674, 46.928583], + [29.908852, 46.674361], + [29.83821, 46.525326], + [30.024659, 46.423937], + [29.759972, 46.349988], + [29.170654, 46.379262], + [29.072107, 46.517678], + [28.862972, 46.437889], + [28.933717, 46.25883], + [28.659987, 45.939987], + [28.485269, 45.596907], + [28.233554, 45.488283], + [28.054443, 45.944586], + [28.160018, 46.371563], + [28.12803, 46.810476], + [27.551166, 47.405117], + [27.233873, 47.826771], + [26.924176, 48.123264], + [26.619337, 48.220726] + ] + ] + }, + "id": "MDA" + }, + { + "type": "Feature", + "properties": { "name": "Madagascar" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [49.543519, -12.469833], + [49.808981, -12.895285], + [50.056511, -13.555761], + [50.217431, -14.758789], + [50.476537, -15.226512], + [50.377111, -15.706069], + [50.200275, -16.000263], + [49.860606, -15.414253], + [49.672607, -15.710204], + [49.863344, -16.451037], + [49.774564, -16.875042], + [49.498612, -17.106036], + [49.435619, -17.953064], + [49.041792, -19.118781], + [48.548541, -20.496888], + [47.930749, -22.391501], + [47.547723, -23.781959], + [47.095761, -24.94163], + [46.282478, -25.178463], + [45.409508, -25.601434], + [44.833574, -25.346101], + [44.03972, -24.988345], + [43.763768, -24.460677], + [43.697778, -23.574116], + [43.345654, -22.776904], + [43.254187, -22.057413], + [43.433298, -21.336475], + [43.893683, -21.163307], + [43.89637, -20.830459], + [44.374325, -20.072366], + [44.464397, -19.435454], + [44.232422, -18.961995], + [44.042976, -18.331387], + [43.963084, -17.409945], + [44.312469, -16.850496], + [44.446517, -16.216219], + [44.944937, -16.179374], + [45.502732, -15.974373], + [45.872994, -15.793454], + [46.312243, -15.780018], + [46.882183, -15.210182], + [47.70513, -14.594303], + [48.005215, -14.091233], + [47.869047, -13.663869], + [48.293828, -13.784068], + [48.84506, -13.089175], + [48.863509, -12.487868], + [49.194651, -12.040557], + [49.543519, -12.469833] + ] + ] + }, + "id": "MDG" + }, + { + "type": "Feature", + "properties": { "name": "Mexico" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-97.140008, 25.869997], + [-97.528072, 24.992144], + [-97.702946, 24.272343], + [-97.776042, 22.93258], + [-97.872367, 22.444212], + [-97.699044, 21.898689], + [-97.38896, 21.411019], + [-97.189333, 20.635433], + [-96.525576, 19.890931], + [-96.292127, 19.320371], + [-95.900885, 18.828024], + [-94.839063, 18.562717], + [-94.42573, 18.144371], + [-93.548651, 18.423837], + [-92.786114, 18.524839], + [-92.037348, 18.704569], + [-91.407903, 18.876083], + [-90.77187, 19.28412], + [-90.53359, 19.867418], + [-90.451476, 20.707522], + [-90.278618, 20.999855], + [-89.601321, 21.261726], + [-88.543866, 21.493675], + [-87.658417, 21.458846], + [-87.05189, 21.543543], + [-86.811982, 21.331515], + [-86.845908, 20.849865], + [-87.383291, 20.255405], + [-87.621054, 19.646553], + [-87.43675, 19.472403], + [-87.58656, 19.04013], + [-87.837191, 18.259816], + [-88.090664, 18.516648], + [-88.300031, 18.499982], + [-88.490123, 18.486831], + [-88.848344, 17.883198], + [-89.029857, 18.001511], + [-89.150909, 17.955468], + [-89.14308, 17.808319], + [-90.067934, 17.819326], + [-91.00152, 17.817595], + [-91.002269, 17.254658], + [-91.453921, 17.252177], + [-91.08167, 16.918477], + [-90.711822, 16.687483], + [-90.600847, 16.470778], + [-90.438867, 16.41011], + [-90.464473, 16.069562], + [-91.74796, 16.066565], + [-92.229249, 15.251447], + [-92.087216, 15.064585], + [-92.20323, 14.830103], + [-92.22775, 14.538829], + [-93.359464, 15.61543], + [-93.875169, 15.940164], + [-94.691656, 16.200975], + [-95.250227, 16.128318], + [-96.053382, 15.752088], + [-96.557434, 15.653515], + [-97.263592, 15.917065], + [-98.01303, 16.107312], + [-98.947676, 16.566043], + [-99.697397, 16.706164], + [-100.829499, 17.171071], + [-101.666089, 17.649026], + [-101.918528, 17.91609], + [-102.478132, 17.975751], + [-103.50099, 18.292295], + [-103.917527, 18.748572], + [-104.99201, 19.316134], + [-105.493038, 19.946767], + [-105.731396, 20.434102], + [-105.397773, 20.531719], + [-105.500661, 20.816895], + [-105.270752, 21.076285], + [-105.265817, 21.422104], + [-105.603161, 21.871146], + [-105.693414, 22.26908], + [-106.028716, 22.773752], + [-106.90998, 23.767774], + [-107.915449, 24.548915], + [-108.401905, 25.172314], + [-109.260199, 25.580609], + [-109.444089, 25.824884], + [-109.291644, 26.442934], + [-109.801458, 26.676176], + [-110.391732, 27.162115], + [-110.641019, 27.859876], + [-111.178919, 27.941241], + [-111.759607, 28.467953], + [-112.228235, 28.954409], + [-112.271824, 29.266844], + [-112.809594, 30.021114], + [-113.163811, 30.786881], + [-113.148669, 31.170966], + [-113.871881, 31.567608], + [-114.205737, 31.524045], + [-114.776451, 31.799532], + [-114.9367, 31.393485], + [-114.771232, 30.913617], + [-114.673899, 30.162681], + [-114.330974, 29.750432], + [-113.588875, 29.061611], + [-113.424053, 28.826174], + [-113.271969, 28.754783], + [-113.140039, 28.411289], + [-112.962298, 28.42519], + [-112.761587, 27.780217], + [-112.457911, 27.525814], + [-112.244952, 27.171727], + [-111.616489, 26.662817], + [-111.284675, 25.73259], + [-110.987819, 25.294606], + [-110.710007, 24.826004], + [-110.655049, 24.298595], + [-110.172856, 24.265548], + [-109.771847, 23.811183], + [-109.409104, 23.364672], + [-109.433392, 23.185588], + [-109.854219, 22.818272], + [-110.031392, 22.823078], + [-110.295071, 23.430973], + [-110.949501, 24.000964], + [-111.670568, 24.484423], + [-112.182036, 24.738413], + [-112.148989, 25.470125], + [-112.300711, 26.012004], + [-112.777297, 26.32196], + [-113.464671, 26.768186], + [-113.59673, 26.63946], + [-113.848937, 26.900064], + [-114.465747, 27.14209], + [-115.055142, 27.722727], + [-114.982253, 27.7982], + [-114.570366, 27.741485], + [-114.199329, 28.115003], + [-114.162018, 28.566112], + [-114.931842, 29.279479], + [-115.518654, 29.556362], + [-115.887365, 30.180794], + [-116.25835, 30.836464], + [-116.721526, 31.635744], + [-117.12776, 32.53534], + [-115.99135, 32.61239], + [-114.72139, 32.72083], + [-114.815, 32.52528], + [-113.30498, 32.03914], + [-111.02361, 31.33472], + [-109.035, 31.34194], + [-108.24194, 31.34222], + [-108.24, 31.754854], + [-106.50759, 31.75452], + [-106.1429, 31.39995], + [-105.63159, 31.08383], + [-105.03737, 30.64402], + [-104.70575, 30.12173], + [-104.45697, 29.57196], + [-103.94, 29.27], + [-103.11, 28.97], + [-102.48, 29.76], + [-101.6624, 29.7793], + [-100.9576, 29.38071], + [-100.45584, 28.69612], + [-100.11, 28.11], + [-99.52, 27.54], + [-99.3, 26.84], + [-99.02, 26.37], + [-98.24, 26.06], + [-97.53, 25.84], + [-97.140008, 25.869997] + ] + ] + }, + "id": "MEX" + }, + { + "type": "Feature", + "properties": { "name": "Macedonia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.59023, 41.85541], + [20.71731, 41.84711], + [20.76216, 42.05186], + [21.3527, 42.2068], + [21.576636, 42.245224], + [21.91708, 42.30364], + [22.380526, 42.32026], + [22.881374, 41.999297], + [22.952377, 41.337994], + [22.76177, 41.3048], + [22.597308, 41.130487], + [22.055378, 41.149866], + [21.674161, 40.931275], + [21.02004, 40.842727], + [20.60518, 41.08622], + [20.46315, 41.51509], + [20.59023, 41.85541] + ] + ] + }, + "id": "MKD" + }, + { + "type": "Feature", + "properties": { "name": "Mali" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-12.17075, 14.616834], + [-11.834208, 14.799097], + [-11.666078, 15.388208], + [-11.349095, 15.411256], + [-10.650791, 15.132746], + [-10.086846, 15.330486], + [-9.700255, 15.264107], + [-9.550238, 15.486497], + [-5.537744, 15.50169], + [-5.315277, 16.201854], + [-5.488523, 16.325102], + [-5.971129, 20.640833], + [-6.453787, 24.956591], + [-4.923337, 24.974574], + [-1.550055, 22.792666], + [1.823228, 20.610809], + [2.060991, 20.142233], + [2.683588, 19.85623], + [3.146661, 19.693579], + [3.158133, 19.057364], + [4.267419, 19.155265], + [4.27021, 16.852227], + [3.723422, 16.184284], + [3.638259, 15.56812], + [2.749993, 15.409525], + [1.385528, 15.323561], + [1.015783, 14.968182], + [0.374892, 14.928908], + [-0.266257, 14.924309], + [-0.515854, 15.116158], + [-1.066363, 14.973815], + [-2.001035, 14.559008], + [-2.191825, 14.246418], + [-2.967694, 13.79815], + [-3.103707, 13.541267], + [-3.522803, 13.337662], + [-4.006391, 13.472485], + [-4.280405, 13.228444], + [-4.427166, 12.542646], + [-5.220942, 11.713859], + [-5.197843, 11.375146], + [-5.470565, 10.95127], + [-5.404342, 10.370737], + [-5.816926, 10.222555], + [-6.050452, 10.096361], + [-6.205223, 10.524061], + [-6.493965, 10.411303], + [-6.666461, 10.430811], + [-6.850507, 10.138994], + [-7.622759, 10.147236], + [-7.89959, 10.297382], + [-8.029944, 10.206535], + [-8.335377, 10.494812], + [-8.282357, 10.792597], + [-8.407311, 10.909257], + [-8.620321, 10.810891], + [-8.581305, 11.136246], + [-8.376305, 11.393646], + [-8.786099, 11.812561], + [-8.905265, 12.088358], + [-9.127474, 12.30806], + [-9.327616, 12.334286], + [-9.567912, 12.194243], + [-9.890993, 12.060479], + [-10.165214, 11.844084], + [-10.593224, 11.923975], + [-10.87083, 12.177887], + [-11.036556, 12.211245], + [-11.297574, 12.077971], + [-11.456169, 12.076834], + [-11.513943, 12.442988], + [-11.467899, 12.754519], + [-11.553398, 13.141214], + [-11.927716, 13.422075], + [-12.124887, 13.994727], + [-12.17075, 14.616834] + ] + ] + }, + "id": "MLI" + }, + { + "type": "Feature", + "properties": { "name": "Myanmar" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [99.543309, 20.186598], + [98.959676, 19.752981], + [98.253724, 19.708203], + [97.797783, 18.62708], + [97.375896, 18.445438], + [97.859123, 17.567946], + [98.493761, 16.837836], + [98.903348, 16.177824], + [98.537376, 15.308497], + [98.192074, 15.123703], + [98.430819, 14.622028], + [99.097755, 13.827503], + [99.212012, 13.269294], + [99.196354, 12.804748], + [99.587286, 11.892763], + [99.038121, 10.960546], + [98.553551, 9.93296], + [98.457174, 10.675266], + [98.764546, 11.441292], + [98.428339, 12.032987], + [98.509574, 13.122378], + [98.103604, 13.64046], + [97.777732, 14.837286], + [97.597072, 16.100568], + [97.16454, 16.928734], + [96.505769, 16.427241], + [95.369352, 15.71439], + [94.808405, 15.803454], + [94.188804, 16.037936], + [94.533486, 17.27724], + [94.324817, 18.213514], + [93.540988, 19.366493], + [93.663255, 19.726962], + [93.078278, 19.855145], + [92.368554, 20.670883], + [92.303234, 21.475485], + [92.652257, 21.324048], + [92.672721, 22.041239], + [93.166128, 22.27846], + [93.060294, 22.703111], + [93.286327, 23.043658], + [93.325188, 24.078556], + [94.106742, 23.850741], + [94.552658, 24.675238], + [94.603249, 25.162495], + [95.155153, 26.001307], + [95.124768, 26.573572], + [96.419366, 27.264589], + [97.133999, 27.083774], + [97.051989, 27.699059], + [97.402561, 27.882536], + [97.327114, 28.261583], + [97.911988, 28.335945], + [98.246231, 27.747221], + [98.68269, 27.508812], + [98.712094, 26.743536], + [98.671838, 25.918703], + [97.724609, 25.083637], + [97.60472, 23.897405], + [98.660262, 24.063286], + [98.898749, 23.142722], + [99.531992, 22.949039], + [99.240899, 22.118314], + [99.983489, 21.742937], + [100.416538, 21.558839], + [101.150033, 21.849984], + [101.180005, 21.436573], + [100.329101, 20.786122], + [100.115988, 20.41785], + [99.543309, 20.186598] + ] + ] + }, + "id": "MMR" + }, + { + "type": "Feature", + "properties": { "name": "Montenegro" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [19.801613, 42.500093], + [19.738051, 42.688247], + [19.30449, 42.19574], + [19.37177, 41.87755], + [19.16246, 41.95502], + [18.88214, 42.28151], + [18.45, 42.48], + [18.56, 42.65], + [18.70648, 43.20011], + [19.03165, 43.43253], + [19.21852, 43.52384], + [19.48389, 43.35229], + [19.63, 43.21378], + [19.95857, 43.10604], + [20.3398, 42.89852], + [20.25758, 42.81275], + [20.0707, 42.58863], + [19.801613, 42.500093] + ] + ] + }, + "id": "MNE" + }, + { + "type": "Feature", + "properties": { "name": "Mongolia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [87.751264, 49.297198], + [88.805567, 49.470521], + [90.713667, 50.331812], + [92.234712, 50.802171], + [93.104219, 50.49529], + [94.147566, 50.480537], + [94.815949, 50.013433], + [95.814028, 49.977467], + [97.259728, 49.726061], + [98.231762, 50.422401], + [97.82574, 51.010995], + [98.861491, 52.047366], + [99.981732, 51.634006], + [100.88948, 51.516856], + [102.065223, 51.259921], + [102.255909, 50.510561], + [103.676545, 50.089966], + [104.621552, 50.275329], + [105.886591, 50.406019], + [106.888804, 50.274296], + [107.868176, 49.793705], + [108.475167, 49.282548], + [109.402449, 49.292961], + [110.662011, 49.130128], + [111.581231, 49.377968], + [112.89774, 49.543565], + [114.362456, 50.248303], + [114.96211, 50.140247], + [115.485695, 49.805177], + [116.678801, 49.888531], + [116.191802, 49.134598], + [115.485282, 48.135383], + [115.742837, 47.726545], + [116.308953, 47.85341], + [117.295507, 47.697709], + [118.064143, 48.06673], + [118.866574, 47.74706], + [119.772824, 47.048059], + [119.66327, 46.69268], + [118.874326, 46.805412], + [117.421701, 46.672733], + [116.717868, 46.388202], + [115.985096, 45.727235], + [114.460332, 45.339817], + [113.463907, 44.808893], + [112.436062, 45.011646], + [111.873306, 45.102079], + [111.348377, 44.457442], + [111.667737, 44.073176], + [111.829588, 43.743118], + [111.129682, 43.406834], + [110.412103, 42.871234], + [109.243596, 42.519446], + [107.744773, 42.481516], + [106.129316, 42.134328], + [104.964994, 41.59741], + [104.522282, 41.908347], + [103.312278, 41.907468], + [101.83304, 42.514873], + [100.845866, 42.663804], + [99.515817, 42.524691], + [97.451757, 42.74889], + [96.349396, 42.725635], + [95.762455, 43.319449], + [95.306875, 44.241331], + [94.688929, 44.352332], + [93.480734, 44.975472], + [92.133891, 45.115076], + [90.94554, 45.286073], + [90.585768, 45.719716], + [90.970809, 46.888146], + [90.280826, 47.693549], + [88.854298, 48.069082], + [88.013832, 48.599463], + [87.751264, 49.297198] + ] + ] + }, + "id": "MNG" + }, + { + "type": "Feature", + "properties": { "name": "Mozambique" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.559989, -11.52002], + [35.312398, -11.439146], + [36.514082, -11.720938], + [36.775151, -11.594537], + [37.471284, -11.568751], + [37.827645, -11.268769], + [38.427557, -11.285202], + [39.52103, -10.896854], + [40.316589, -10.317096], + [40.478387, -10.765441], + [40.437253, -11.761711], + [40.560811, -12.639177], + [40.59962, -14.201975], + [40.775475, -14.691764], + [40.477251, -15.406294], + [40.089264, -16.100774], + [39.452559, -16.720891], + [38.538351, -17.101023], + [37.411133, -17.586368], + [36.281279, -18.659688], + [35.896497, -18.84226], + [35.1984, -19.552811], + [34.786383, -19.784012], + [34.701893, -20.497043], + [35.176127, -21.254361], + [35.373428, -21.840837], + [35.385848, -22.14], + [35.562546, -22.09], + [35.533935, -23.070788], + [35.371774, -23.535359], + [35.60747, -23.706563], + [35.458746, -24.12261], + [35.040735, -24.478351], + [34.215824, -24.816314], + [33.01321, -25.357573], + [32.574632, -25.727318], + [32.660363, -26.148584], + [32.915955, -26.215867], + [32.83012, -26.742192], + [32.071665, -26.73382], + [31.985779, -26.29178], + [31.837778, -25.843332], + [31.752408, -25.484284], + [31.930589, -24.369417], + [31.670398, -23.658969], + [31.191409, -22.25151], + [32.244988, -21.116489], + [32.508693, -20.395292], + [32.659743, -20.30429], + [32.772708, -19.715592], + [32.611994, -19.419383], + [32.654886, -18.67209], + [32.849861, -17.979057], + [32.847639, -16.713398], + [32.328239, -16.392074], + [31.852041, -16.319417], + [31.636498, -16.07199], + [31.173064, -15.860944], + [30.338955, -15.880839], + [30.274256, -15.507787], + [30.179481, -14.796099], + [33.214025, -13.97186], + [33.7897, -14.451831], + [34.064825, -14.35995], + [34.459633, -14.61301], + [34.517666, -15.013709], + [34.307291, -15.478641], + [34.381292, -16.18356], + [35.03381, -16.8013], + [35.339063, -16.10744], + [35.771905, -15.896859], + [35.686845, -14.611046], + [35.267956, -13.887834], + [34.907151, -13.565425], + [34.559989, -13.579998], + [34.280006, -12.280025], + [34.559989, -11.52002] + ] + ] + }, + "id": "MOZ" + }, + { + "type": "Feature", + "properties": { "name": "Mauritania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-12.17075, 14.616834], + [-12.830658, 15.303692], + [-13.435738, 16.039383], + [-14.099521, 16.304302], + [-14.577348, 16.598264], + [-15.135737, 16.587282], + [-15.623666, 16.369337], + [-16.12069, 16.455663], + [-16.463098, 16.135036], + [-16.549708, 16.673892], + [-16.270552, 17.166963], + [-16.146347, 18.108482], + [-16.256883, 19.096716], + [-16.377651, 19.593817], + [-16.277838, 20.092521], + [-16.536324, 20.567866], + [-17.063423, 20.999752], + [-16.845194, 21.333323], + [-12.929102, 21.327071], + [-13.118754, 22.77122], + [-12.874222, 23.284832], + [-11.937224, 23.374594], + [-11.969419, 25.933353], + [-8.687294, 25.881056], + [-8.6844, 27.395744], + [-4.923337, 24.974574], + [-6.453787, 24.956591], + [-5.971129, 20.640833], + [-5.488523, 16.325102], + [-5.315277, 16.201854], + [-5.537744, 15.50169], + [-9.550238, 15.486497], + [-9.700255, 15.264107], + [-10.086846, 15.330486], + [-10.650791, 15.132746], + [-11.349095, 15.411256], + [-11.666078, 15.388208], + [-11.834208, 14.799097], + [-12.17075, 14.616834] + ] + ] + }, + "id": "MRT" + }, + { + "type": "Feature", + "properties": { "name": "Malawi" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.559989, -11.52002], + [34.280006, -12.280025], + [34.559989, -13.579998], + [34.907151, -13.565425], + [35.267956, -13.887834], + [35.686845, -14.611046], + [35.771905, -15.896859], + [35.339063, -16.10744], + [35.03381, -16.8013], + [34.381292, -16.18356], + [34.307291, -15.478641], + [34.517666, -15.013709], + [34.459633, -14.61301], + [34.064825, -14.35995], + [33.7897, -14.451831], + [33.214025, -13.97186], + [32.688165, -13.712858], + [32.991764, -12.783871], + [33.306422, -12.435778], + [33.114289, -11.607198], + [33.31531, -10.79655], + [33.485688, -10.525559], + [33.231388, -9.676722], + [32.759375, -9.230599], + [33.739729, -9.417151], + [33.940838, -9.693674], + [34.280006, -10.16], + [34.559989, -11.52002] + ] + ] + }, + "id": "MWI" + }, + { + "type": "Feature", + "properties": { "name": "Malaysia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [101.075516, 6.204867], + [101.154219, 5.691384], + [101.814282, 5.810808], + [102.141187, 6.221636], + [102.371147, 6.128205], + [102.961705, 5.524495], + [103.381215, 4.855001], + [103.438575, 4.181606], + [103.332122, 3.726698], + [103.429429, 3.382869], + [103.502448, 2.791019], + [103.854674, 2.515454], + [104.247932, 1.631141], + [104.228811, 1.293048], + [103.519707, 1.226334], + [102.573615, 1.967115], + [101.390638, 2.760814], + [101.27354, 3.270292], + [100.695435, 3.93914], + [100.557408, 4.76728], + [100.196706, 5.312493], + [100.30626, 6.040562], + [100.085757, 6.464489], + [100.259596, 6.642825], + [101.075516, 6.204867] + ] + ], + [ + [ + [118.618321, 4.478202], + [117.882035, 4.137551], + [117.015214, 4.306094], + [115.865517, 4.306559], + [115.519078, 3.169238], + [115.134037, 2.821482], + [114.621355, 1.430688], + [113.80585, 1.217549], + [112.859809, 1.49779], + [112.380252, 1.410121], + [111.797548, 0.904441], + [111.159138, 0.976478], + [110.514061, 0.773131], + [109.830227, 1.338136], + [109.66326, 2.006467], + [110.396135, 1.663775], + [111.168853, 1.850637], + [111.370081, 2.697303], + [111.796928, 2.885897], + [112.995615, 3.102395], + [113.712935, 3.893509], + [114.204017, 4.525874], + [114.659596, 4.007637], + [114.869557, 4.348314], + [115.347461, 4.316636], + [115.4057, 4.955228], + [115.45071, 5.44773], + [116.220741, 6.143191], + [116.725103, 6.924771], + [117.129626, 6.928053], + [117.643393, 6.422166], + [117.689075, 5.98749], + [118.347691, 5.708696], + [119.181904, 5.407836], + [119.110694, 5.016128], + [118.439727, 4.966519], + [118.618321, 4.478202] + ] + ] + ] + }, + "id": "MYS" + }, + { + "type": "Feature", + "properties": { "name": "Namibia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.344977, -28.576705], + [15.601818, -27.821247], + [15.210472, -27.090956], + [14.989711, -26.117372], + [14.743214, -25.39292], + [14.408144, -23.853014], + [14.385717, -22.656653], + [14.257714, -22.111208], + [13.868642, -21.699037], + [13.352498, -20.872834], + [12.826845, -19.673166], + [12.608564, -19.045349], + [11.794919, -18.069129], + [11.734199, -17.301889], + [12.215461, -17.111668], + [12.814081, -16.941343], + [13.462362, -16.971212], + [14.058501, -17.423381], + [14.209707, -17.353101], + [18.263309, -17.309951], + [18.956187, -17.789095], + [21.377176, -17.930636], + [23.215048, -17.523116], + [24.033862, -17.295843], + [24.682349, -17.353411], + [25.07695, -17.578823], + [25.084443, -17.661816], + [24.520705, -17.887125], + [24.217365, -17.889347], + [23.579006, -18.281261], + [23.196858, -17.869038], + [21.65504, -18.219146], + [20.910641, -18.252219], + [20.881134, -21.814327], + [19.895458, -21.849157], + [19.895768, -24.76779], + [19.894734, -28.461105], + [19.002127, -28.972443], + [18.464899, -29.045462], + [17.836152, -28.856378], + [17.387497, -28.783514], + [17.218929, -28.355943], + [16.824017, -28.082162], + [16.344977, -28.576705] + ] + ] + }, + "id": "NAM" + }, + { + "type": "Feature", + "properties": { "name": "New Caledonia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [165.77999, -21.080005], + [166.599991, -21.700019], + [167.120011, -22.159991], + [166.740035, -22.399976], + [166.189732, -22.129708], + [165.474375, -21.679607], + [164.829815, -21.14982], + [164.167995, -20.444747], + [164.029606, -20.105646], + [164.459967, -20.120012], + [165.020036, -20.459991], + [165.460009, -20.800022], + [165.77999, -21.080005] + ] + ] + }, + "id": "NCL" + }, + { + "type": "Feature", + "properties": { "name": "Niger" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.154474, 11.94015], + [2.177108, 12.625018], + [1.024103, 12.851826], + [0.993046, 13.33575], + [0.429928, 13.988733], + [0.295646, 14.444235], + [0.374892, 14.928908], + [1.015783, 14.968182], + [1.385528, 15.323561], + [2.749993, 15.409525], + [3.638259, 15.56812], + [3.723422, 16.184284], + [4.27021, 16.852227], + [4.267419, 19.155265], + [5.677566, 19.601207], + [8.572893, 21.565661], + [11.999506, 23.471668], + [13.581425, 23.040506], + [14.143871, 22.491289], + [14.8513, 22.86295], + [15.096888, 21.308519], + [15.471077, 21.048457], + [15.487148, 20.730415], + [15.903247, 20.387619], + [15.685741, 19.95718], + [15.300441, 17.92795], + [15.247731, 16.627306], + [13.972202, 15.684366], + [13.540394, 14.367134], + [13.956699, 13.996691], + [13.954477, 13.353449], + [14.595781, 13.330427], + [14.495787, 12.859396], + [14.213531, 12.802035], + [14.181336, 12.483657], + [13.995353, 12.461565], + [13.318702, 13.556356], + [13.083987, 13.596147], + [12.302071, 13.037189], + [11.527803, 13.32898], + [10.989593, 13.387323], + [10.701032, 13.246918], + [10.114814, 13.277252], + [9.524928, 12.851102], + [9.014933, 12.826659], + [7.804671, 13.343527], + [7.330747, 13.098038], + [6.820442, 13.115091], + [6.445426, 13.492768], + [5.443058, 13.865924], + [4.368344, 13.747482], + [4.107946, 13.531216], + [3.967283, 12.956109], + [3.680634, 12.552903], + [3.61118, 11.660167], + [2.848643, 12.235636], + [2.490164, 12.233052], + [2.154474, 11.94015] + ] + ] + }, + "id": "NER" + }, + { + "type": "Feature", + "properties": { "name": "Nigeria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.500288, 4.771983], + [7.462108, 4.412108], + [7.082596, 4.464689], + [6.698072, 4.240594], + [5.898173, 4.262453], + [5.362805, 4.887971], + [5.033574, 5.611802], + [4.325607, 6.270651], + [3.57418, 6.2583], + [2.691702, 6.258817], + [2.749063, 7.870734], + [2.723793, 8.506845], + [2.912308, 9.137608], + [3.220352, 9.444153], + [3.705438, 10.06321], + [3.60007, 10.332186], + [3.797112, 10.734746], + [3.572216, 11.327939], + [3.61118, 11.660167], + [3.680634, 12.552903], + [3.967283, 12.956109], + [4.107946, 13.531216], + [4.368344, 13.747482], + [5.443058, 13.865924], + [6.445426, 13.492768], + [6.820442, 13.115091], + [7.330747, 13.098038], + [7.804671, 13.343527], + [9.014933, 12.826659], + [9.524928, 12.851102], + [10.114814, 13.277252], + [10.701032, 13.246918], + [10.989593, 13.387323], + [11.527803, 13.32898], + [12.302071, 13.037189], + [13.083987, 13.596147], + [13.318702, 13.556356], + [13.995353, 12.461565], + [14.181336, 12.483657], + [14.577178, 12.085361], + [14.468192, 11.904752], + [14.415379, 11.572369], + [13.57295, 10.798566], + [13.308676, 10.160362], + [13.1676, 9.640626], + [12.955468, 9.417772], + [12.753672, 8.717763], + [12.218872, 8.305824], + [12.063946, 7.799808], + [11.839309, 7.397042], + [11.745774, 6.981383], + [11.058788, 6.644427], + [10.497375, 7.055358], + [10.118277, 7.03877], + [9.522706, 6.453482], + [9.233163, 6.444491], + [8.757533, 5.479666], + [8.500288, 4.771983] + ] + ] + }, + "id": "NGA" + }, + { + "type": "Feature", + "properties": { "name": "Nicaragua" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-85.71254, 11.088445], + [-86.058488, 11.403439], + [-86.52585, 11.806877], + [-86.745992, 12.143962], + [-87.167516, 12.458258], + [-87.668493, 12.90991], + [-87.557467, 13.064552], + [-87.392386, 12.914018], + [-87.316654, 12.984686], + [-87.005769, 13.025794], + [-86.880557, 13.254204], + [-86.733822, 13.263093], + [-86.755087, 13.754845], + [-86.520708, 13.778487], + [-86.312142, 13.771356], + [-86.096264, 14.038187], + [-85.801295, 13.836055], + [-85.698665, 13.960078], + [-85.514413, 14.079012], + [-85.165365, 14.35437], + [-85.148751, 14.560197], + [-85.052787, 14.551541], + [-84.924501, 14.790493], + [-84.820037, 14.819587], + [-84.649582, 14.666805], + [-84.449336, 14.621614], + [-84.228342, 14.748764], + [-83.975721, 14.749436], + [-83.628585, 14.880074], + [-83.489989, 15.016267], + [-83.147219, 14.995829], + [-83.233234, 14.899866], + [-83.284162, 14.676624], + [-83.182126, 14.310703], + [-83.4125, 13.970078], + [-83.519832, 13.567699], + [-83.552207, 13.127054], + [-83.498515, 12.869292], + [-83.473323, 12.419087], + [-83.626104, 12.32085], + [-83.719613, 11.893124], + [-83.650858, 11.629032], + [-83.85547, 11.373311], + [-83.808936, 11.103044], + [-83.655612, 10.938764], + [-83.895054, 10.726839], + [-84.190179, 10.79345], + [-84.355931, 10.999226], + [-84.673069, 11.082657], + [-84.903003, 10.952303], + [-85.561852, 11.217119], + [-85.71254, 11.088445] + ] + ] + }, + "id": "NIC" + }, + { + "type": "Feature", + "properties": { "name": "Netherlands" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.074183, 53.510403], + [6.90514, 53.482162], + [7.092053, 53.144043], + [6.84287, 52.22844], + [6.589397, 51.852029], + [5.988658, 51.851616], + [6.156658, 50.803721], + [5.606976, 51.037298], + [4.973991, 51.475024], + [4.047071, 51.267259], + [3.314971, 51.345755], + [3.830289, 51.620545], + [4.705997, 53.091798], + [6.074183, 53.510403] + ] + ] + }, + "id": "NLD" + }, + { + "type": "Feature", + "properties": { "name": "Norway" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [28.165547, 71.185474], + [31.293418, 70.453788], + [30.005435, 70.186259], + [31.101079, 69.55808], + [29.399581, 69.156916], + [28.59193, 69.064777], + [29.015573, 69.766491], + [27.732292, 70.164193], + [26.179622, 69.825299], + [25.689213, 69.092114], + [24.735679, 68.649557], + [23.66205, 68.891247], + [22.356238, 68.841741], + [21.244936, 69.370443], + [20.645593, 69.106247], + [20.025269, 69.065139], + [19.87856, 68.407194], + [17.993868, 68.567391], + [17.729182, 68.010552], + [16.768879, 68.013937], + [16.108712, 67.302456], + [15.108411, 66.193867], + [13.55569, 64.787028], + [13.919905, 64.445421], + [13.571916, 64.049114], + [12.579935, 64.066219], + [11.930569, 63.128318], + [11.992064, 61.800362], + [12.631147, 61.293572], + [12.300366, 60.117933], + [11.468272, 59.432393], + [11.027369, 58.856149], + [10.356557, 59.469807], + [8.382, 58.313288], + [7.048748, 58.078884], + [5.665835, 58.588155], + [5.308234, 59.663232], + [4.992078, 61.970998], + [5.9129, 62.614473], + [8.553411, 63.454008], + [10.527709, 64.486038], + [12.358347, 65.879726], + [14.761146, 67.810642], + [16.435927, 68.563205], + [19.184028, 69.817444], + [21.378416, 70.255169], + [23.023742, 70.202072], + [24.546543, 71.030497], + [26.37005, 70.986262], + [28.165547, 71.185474] + ] + ], + [ + [ + [24.72412, 77.85385], + [22.49032, 77.44493], + [20.72601, 77.67704], + [21.41611, 77.93504], + [20.8119, 78.25463], + [22.88426, 78.45494], + [23.28134, 78.07954], + [24.72412, 77.85385] + ] + ], + [ + [ + [18.25183, 79.70175], + [21.54383, 78.95611], + [19.02737, 78.5626], + [18.47172, 77.82669], + [17.59441, 77.63796], + [17.1182, 76.80941], + [15.91315, 76.77045], + [13.76259, 77.38035], + [14.66956, 77.73565], + [13.1706, 78.02493], + [11.22231, 78.8693], + [10.44453, 79.65239], + [13.17077, 80.01046], + [13.71852, 79.66039], + [15.14282, 79.67431], + [15.52255, 80.01608], + [16.99085, 80.05086], + [18.25183, 79.70175] + ] + ], + [ + [ + [25.447625, 80.40734], + [27.407506, 80.056406], + [25.924651, 79.517834], + [23.024466, 79.400012], + [20.075188, 79.566823], + [19.897266, 79.842362], + [18.462264, 79.85988], + [17.368015, 80.318896], + [20.455992, 80.598156], + [21.907945, 80.357679], + [22.919253, 80.657144], + [25.447625, 80.40734] + ] + ] + ] + }, + "id": "NOR" + }, + { + "type": "Feature", + "properties": { "name": "Nepal" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [88.120441, 27.876542], + [88.043133, 27.445819], + [88.174804, 26.810405], + [88.060238, 26.414615], + [87.227472, 26.397898], + [86.024393, 26.630985], + [85.251779, 26.726198], + [84.675018, 27.234901], + [83.304249, 27.364506], + [81.999987, 27.925479], + [81.057203, 28.416095], + [80.088425, 28.79447], + [80.476721, 29.729865], + [81.111256, 30.183481], + [81.525804, 30.422717], + [82.327513, 30.115268], + [83.337115, 29.463732], + [83.898993, 29.320226], + [84.23458, 28.839894], + [85.011638, 28.642774], + [85.82332, 28.203576], + [86.954517, 27.974262], + [88.120441, 27.876542] + ] + ] + }, + "id": "NPL" + }, + { + "type": "Feature", + "properties": { "name": "New Zealand" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [173.020375, -40.919052], + [173.247234, -41.331999], + [173.958405, -40.926701], + [174.247587, -41.349155], + [174.248517, -41.770008], + [173.876447, -42.233184], + [173.22274, -42.970038], + [172.711246, -43.372288], + [173.080113, -43.853344], + [172.308584, -43.865694], + [171.452925, -44.242519], + [171.185138, -44.897104], + [170.616697, -45.908929], + [169.831422, -46.355775], + [169.332331, -46.641235], + [168.411354, -46.619945], + [167.763745, -46.290197], + [166.676886, -46.219917], + [166.509144, -45.852705], + [167.046424, -45.110941], + [168.303763, -44.123973], + [168.949409, -43.935819], + [169.667815, -43.555326], + [170.52492, -43.031688], + [171.12509, -42.512754], + [171.569714, -41.767424], + [171.948709, -41.514417], + [172.097227, -40.956104], + [172.79858, -40.493962], + [173.020375, -40.919052] + ] + ], + [ + [ + [174.612009, -36.156397], + [175.336616, -37.209098], + [175.357596, -36.526194], + [175.808887, -36.798942], + [175.95849, -37.555382], + [176.763195, -37.881253], + [177.438813, -37.961248], + [178.010354, -37.579825], + [178.517094, -37.695373], + [178.274731, -38.582813], + [177.97046, -39.166343], + [177.206993, -39.145776], + [176.939981, -39.449736], + [177.032946, -39.879943], + [176.885824, -40.065978], + [176.508017, -40.604808], + [176.01244, -41.289624], + [175.239567, -41.688308], + [175.067898, -41.425895], + [174.650973, -41.281821], + [175.22763, -40.459236], + [174.900157, -39.908933], + [173.824047, -39.508854], + [173.852262, -39.146602], + [174.574802, -38.797683], + [174.743474, -38.027808], + [174.697017, -37.381129], + [174.292028, -36.711092], + [174.319004, -36.534824], + [173.840997, -36.121981], + [173.054171, -35.237125], + [172.636005, -34.529107], + [173.007042, -34.450662], + [173.551298, -35.006183], + [174.32939, -35.265496], + [174.612009, -36.156397] + ] + ] + ] + }, + "id": "NZL" + }, + { + "type": "Feature", + "properties": { "name": "Oman" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [58.861141, 21.114035], + [58.487986, 20.428986], + [58.034318, 20.481437], + [57.826373, 20.243002], + [57.665762, 19.736005], + [57.7887, 19.06757], + [57.694391, 18.94471], + [57.234264, 18.947991], + [56.609651, 18.574267], + [56.512189, 18.087113], + [56.283521, 17.876067], + [55.661492, 17.884128], + [55.269939, 17.632309], + [55.2749, 17.228354], + [54.791002, 16.950697], + [54.239253, 17.044981], + [53.570508, 16.707663], + [53.108573, 16.651051], + [52.782184, 17.349742], + [52.00001, 19.000003], + [54.999982, 19.999994], + [55.666659, 22.000001], + [55.208341, 22.70833], + [55.234489, 23.110993], + [55.525841, 23.524869], + [55.528632, 23.933604], + [55.981214, 24.130543], + [55.804119, 24.269604], + [55.886233, 24.920831], + [56.396847, 24.924732], + [56.84514, 24.241673], + [57.403453, 23.878594], + [58.136948, 23.747931], + [58.729211, 23.565668], + [59.180502, 22.992395], + [59.450098, 22.660271], + [59.80806, 22.533612], + [59.806148, 22.310525], + [59.442191, 21.714541], + [59.282408, 21.433886], + [58.861141, 21.114035] + ] + ], + [ + [ + [56.391421, 25.895991], + [56.261042, 25.714606], + [56.070821, 26.055464], + [56.362017, 26.395934], + [56.485679, 26.309118], + [56.391421, 25.895991] + ] + ] + ] + }, + "id": "OMN" + }, + { + "type": "Feature", + "properties": { "name": "Pakistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [75.158028, 37.133031], + [75.896897, 36.666806], + [76.192848, 35.898403], + [77.837451, 35.49401], + [76.871722, 34.653544], + [75.757061, 34.504923], + [74.240203, 34.748887], + [73.749948, 34.317699], + [74.104294, 33.441473], + [74.451559, 32.7649], + [75.258642, 32.271105], + [74.405929, 31.692639], + [74.42138, 30.979815], + [73.450638, 29.976413], + [72.823752, 28.961592], + [71.777666, 27.91318], + [70.616496, 27.989196], + [69.514393, 26.940966], + [70.168927, 26.491872], + [70.282873, 25.722229], + [70.844699, 25.215102], + [71.04324, 24.356524], + [68.842599, 24.359134], + [68.176645, 23.691965], + [67.443667, 23.944844], + [67.145442, 24.663611], + [66.372828, 25.425141], + [64.530408, 25.237039], + [62.905701, 25.218409], + [61.497363, 25.078237], + [61.874187, 26.239975], + [63.316632, 26.756532], + [63.233898, 27.217047], + [62.755426, 27.378923], + [62.72783, 28.259645], + [61.771868, 28.699334], + [61.369309, 29.303276], + [60.874248, 29.829239], + [62.549857, 29.318572], + [63.550261, 29.468331], + [64.148002, 29.340819], + [64.350419, 29.560031], + [65.046862, 29.472181], + [66.346473, 29.887943], + [66.381458, 30.738899], + [66.938891, 31.304911], + [67.683394, 31.303154], + [67.792689, 31.58293], + [68.556932, 31.71331], + [68.926677, 31.620189], + [69.317764, 31.901412], + [69.262522, 32.501944], + [69.687147, 33.105499], + [70.323594, 33.358533], + [69.930543, 34.02012], + [70.881803, 33.988856], + [71.156773, 34.348911], + [71.115019, 34.733126], + [71.613076, 35.153203], + [71.498768, 35.650563], + [71.262348, 36.074388], + [71.846292, 36.509942], + [72.920025, 36.720007], + [74.067552, 36.836176], + [74.575893, 37.020841], + [75.158028, 37.133031] + ] + ] + }, + "id": "PAK" + }, + { + "type": "Feature", + "properties": { "name": "Panama" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-77.881571, 7.223771], + [-78.214936, 7.512255], + [-78.429161, 8.052041], + [-78.182096, 8.319182], + [-78.435465, 8.387705], + [-78.622121, 8.718124], + [-79.120307, 8.996092], + [-79.557877, 8.932375], + [-79.760578, 8.584515], + [-80.164481, 8.333316], + [-80.382659, 8.298409], + [-80.480689, 8.090308], + [-80.00369, 7.547524], + [-80.276671, 7.419754], + [-80.421158, 7.271572], + [-80.886401, 7.220541], + [-81.059543, 7.817921], + [-81.189716, 7.647906], + [-81.519515, 7.70661], + [-81.721311, 8.108963], + [-82.131441, 8.175393], + [-82.390934, 8.292362], + [-82.820081, 8.290864], + [-82.850958, 8.073823], + [-82.965783, 8.225028], + [-82.913176, 8.423517], + [-82.829771, 8.626295], + [-82.868657, 8.807266], + [-82.719183, 8.925709], + [-82.927155, 9.07433], + [-82.932891, 9.476812], + [-82.546196, 9.566135], + [-82.187123, 9.207449], + [-82.207586, 8.995575], + [-81.808567, 8.950617], + [-81.714154, 9.031955], + [-81.439287, 8.786234], + [-80.947302, 8.858504], + [-80.521901, 9.111072], + [-79.9146, 9.312765], + [-79.573303, 9.61161], + [-79.021192, 9.552931], + [-79.05845, 9.454565], + [-78.500888, 9.420459], + [-78.055928, 9.24773], + [-77.729514, 8.946844], + [-77.353361, 8.670505], + [-77.474723, 8.524286], + [-77.242566, 7.935278], + [-77.431108, 7.638061], + [-77.753414, 7.70984], + [-77.881571, 7.223771] + ] + ] + }, + "id": "PAN" + }, + { + "type": "Feature", + "properties": { "name": "Peru" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-69.590424, -17.580012], + [-69.858444, -18.092694], + [-70.372572, -18.347975], + [-71.37525, -17.773799], + [-71.462041, -17.363488], + [-73.44453, -16.359363], + [-75.237883, -15.265683], + [-76.009205, -14.649286], + [-76.423469, -13.823187], + [-76.259242, -13.535039], + [-77.106192, -12.222716], + [-78.092153, -10.377712], + [-79.036953, -8.386568], + [-79.44592, -7.930833], + [-79.760578, -7.194341], + [-80.537482, -6.541668], + [-81.249996, -6.136834], + [-80.926347, -5.690557], + [-81.410943, -4.736765], + [-81.09967, -4.036394], + [-80.302561, -3.404856], + [-80.184015, -3.821162], + [-80.469295, -4.059287], + [-80.442242, -4.425724], + [-80.028908, -4.346091], + [-79.624979, -4.454198], + [-79.205289, -4.959129], + [-78.639897, -4.547784], + [-78.450684, -3.873097], + [-77.837905, -3.003021], + [-76.635394, -2.608678], + [-75.544996, -1.56161], + [-75.233723, -0.911417], + [-75.373223, -0.152032], + [-75.106625, -0.057205], + [-74.441601, -0.53082], + [-74.122395, -1.002833], + [-73.659504, -1.260491], + [-73.070392, -2.308954], + [-72.325787, -2.434218], + [-71.774761, -2.16979], + [-71.413646, -2.342802], + [-70.813476, -2.256865], + [-70.047709, -2.725156], + [-70.692682, -3.742872], + [-70.394044, -3.766591], + [-69.893635, -4.298187], + [-70.794769, -4.251265], + [-70.928843, -4.401591], + [-71.748406, -4.593983], + [-72.891928, -5.274561], + [-72.964507, -5.741251], + [-73.219711, -6.089189], + [-73.120027, -6.629931], + [-73.724487, -6.918595], + [-73.723401, -7.340999], + [-73.987235, -7.52383], + [-73.571059, -8.424447], + [-73.015383, -9.032833], + [-73.226713, -9.462213], + [-72.563033, -9.520194], + [-72.184891, -10.053598], + [-71.302412, -10.079436], + [-70.481894, -9.490118], + [-70.548686, -11.009147], + [-70.093752, -11.123972], + [-69.529678, -10.951734], + [-68.66508, -12.5613], + [-68.88008, -12.899729], + [-68.929224, -13.602684], + [-68.948887, -14.453639], + [-69.339535, -14.953195], + [-69.160347, -15.323974], + [-69.389764, -15.660129], + [-68.959635, -16.500698], + [-69.590424, -17.580012] + ] + ] + }, + "id": "PER" + }, + { + "type": "Feature", + "properties": { "name": "Philippines" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [126.376814, 8.414706], + [126.478513, 7.750354], + [126.537424, 7.189381], + [126.196773, 6.274294], + [125.831421, 7.293715], + [125.363852, 6.786485], + [125.683161, 6.049657], + [125.396512, 5.581003], + [124.219788, 6.161355], + [123.93872, 6.885136], + [124.243662, 7.36061], + [123.610212, 7.833527], + [123.296071, 7.418876], + [122.825506, 7.457375], + [122.085499, 6.899424], + [121.919928, 7.192119], + [122.312359, 8.034962], + [122.942398, 8.316237], + [123.487688, 8.69301], + [123.841154, 8.240324], + [124.60147, 8.514158], + [124.764612, 8.960409], + [125.471391, 8.986997], + [125.412118, 9.760335], + [126.222714, 9.286074], + [126.306637, 8.782487], + [126.376814, 8.414706] + ] + ], + [ + [ + [123.982438, 10.278779], + [123.623183, 9.950091], + [123.309921, 9.318269], + [122.995883, 9.022189], + [122.380055, 9.713361], + [122.586089, 9.981045], + [122.837081, 10.261157], + [122.947411, 10.881868], + [123.49885, 10.940624], + [123.337774, 10.267384], + [124.077936, 11.232726], + [123.982438, 10.278779] + ] + ], + [ + [ + [118.504581, 9.316383], + [117.174275, 8.3675], + [117.664477, 9.066889], + [118.386914, 9.6845], + [118.987342, 10.376292], + [119.511496, 11.369668], + [119.689677, 10.554291], + [119.029458, 10.003653], + [118.504581, 9.316383] + ] + ], + [ + [ + [121.883548, 11.891755], + [122.483821, 11.582187], + [123.120217, 11.58366], + [123.100838, 11.165934], + [122.637714, 10.741308], + [122.00261, 10.441017], + [121.967367, 10.905691], + [122.03837, 11.415841], + [121.883548, 11.891755] + ] + ], + [ + [ + [125.502552, 12.162695], + [125.783465, 11.046122], + [125.011884, 11.311455], + [125.032761, 10.975816], + [125.277449, 10.358722], + [124.801819, 10.134679], + [124.760168, 10.837995], + [124.459101, 10.88993], + [124.302522, 11.495371], + [124.891013, 11.415583], + [124.87799, 11.79419], + [124.266762, 12.557761], + [125.227116, 12.535721], + [125.502552, 12.162695] + ] + ], + [ + [ + [121.527394, 13.06959], + [121.26219, 12.20556], + [120.833896, 12.704496], + [120.323436, 13.466413], + [121.180128, 13.429697], + [121.527394, 13.06959] + ] + ], + [ + [ + [121.321308, 18.504065], + [121.937601, 18.218552], + [122.246006, 18.47895], + [122.336957, 18.224883], + [122.174279, 17.810283], + [122.515654, 17.093505], + [122.252311, 16.262444], + [121.662786, 15.931018], + [121.50507, 15.124814], + [121.728829, 14.328376], + [122.258925, 14.218202], + [122.701276, 14.336541], + [123.950295, 13.782131], + [123.855107, 13.237771], + [124.181289, 12.997527], + [124.077419, 12.536677], + [123.298035, 13.027526], + [122.928652, 13.55292], + [122.671355, 13.185836], + [122.03465, 13.784482], + [121.126385, 13.636687], + [120.628637, 13.857656], + [120.679384, 14.271016], + [120.991819, 14.525393], + [120.693336, 14.756671], + [120.564145, 14.396279], + [120.070429, 14.970869], + [119.920929, 15.406347], + [119.883773, 16.363704], + [120.286488, 16.034629], + [120.390047, 17.599081], + [120.715867, 18.505227], + [121.321308, 18.504065] + ] + ] + ] + }, + "id": "PHL" + }, + { + "type": "Feature", + "properties": { "name": "Papua New Guinea" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [155.880026, -6.819997], + [155.599991, -6.919991], + [155.166994, -6.535931], + [154.729192, -5.900828], + [154.514114, -5.139118], + [154.652504, -5.042431], + [154.759991, -5.339984], + [155.062918, -5.566792], + [155.547746, -6.200655], + [156.019965, -6.540014], + [155.880026, -6.819997] + ] + ], + [ + [ + [151.982796, -5.478063], + [151.459107, -5.56028], + [151.30139, -5.840728], + [150.754447, -6.083763], + [150.241197, -6.317754], + [149.709963, -6.316513], + [148.890065, -6.02604], + [148.318937, -5.747142], + [148.401826, -5.437756], + [149.298412, -5.583742], + [149.845562, -5.505503], + [149.99625, -5.026101], + [150.139756, -5.001348], + [150.236908, -5.53222], + [150.807467, -5.455842], + [151.089672, -5.113693], + [151.647881, -4.757074], + [151.537862, -4.167807], + [152.136792, -4.14879], + [152.338743, -4.312966], + [152.318693, -4.867661], + [151.982796, -5.478063] + ] + ], + [ + [ + [147.191874, -7.388024], + [148.084636, -8.044108], + [148.734105, -9.104664], + [149.306835, -9.071436], + [149.266631, -9.514406], + [150.038728, -9.684318], + [149.738798, -9.872937], + [150.801628, -10.293687], + [150.690575, -10.582713], + [150.028393, -10.652476], + [149.78231, -10.393267], + [148.923138, -10.280923], + [147.913018, -10.130441], + [147.135443, -9.492444], + [146.567881, -8.942555], + [146.048481, -8.067414], + [144.744168, -7.630128], + [143.897088, -7.91533], + [143.286376, -8.245491], + [143.413913, -8.983069], + [142.628431, -9.326821], + [142.068259, -9.159596], + [141.033852, -9.117893], + [141.017057, -5.859022], + [141.00021, -2.600151], + [142.735247, -3.289153], + [144.583971, -3.861418], + [145.27318, -4.373738], + [145.829786, -4.876498], + [145.981922, -5.465609], + [147.648073, -6.083659], + [147.891108, -6.614015], + [146.970905, -6.721657], + [147.191874, -7.388024] + ] + ], + [ + [ + [153.140038, -4.499983], + [152.827292, -4.766427], + [152.638673, -4.176127], + [152.406026, -3.789743], + [151.953237, -3.462062], + [151.384279, -3.035422], + [150.66205, -2.741486], + [150.939965, -2.500002], + [151.479984, -2.779985], + [151.820015, -2.999972], + [152.239989, -3.240009], + [152.640017, -3.659983], + [153.019994, -3.980015], + [153.140038, -4.499983] + ] + ] + ] + }, + "id": "PNG" + }, + { + "type": "Feature", + "properties": { "name": "Poland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [15.016996, 51.106674], + [14.607098, 51.745188], + [14.685026, 52.089947], + [14.4376, 52.62485], + [14.074521, 52.981263], + [14.353315, 53.248171], + [14.119686, 53.757029], + [14.8029, 54.050706], + [16.363477, 54.513159], + [17.622832, 54.851536], + [18.620859, 54.682606], + [18.696255, 54.438719], + [19.66064, 54.426084], + [20.892245, 54.312525], + [22.731099, 54.327537], + [23.243987, 54.220567], + [23.484128, 53.912498], + [23.527536, 53.470122], + [23.804935, 53.089731], + [23.799199, 52.691099], + [23.199494, 52.486977], + [23.508002, 52.023647], + [23.527071, 51.578454], + [24.029986, 50.705407], + [23.922757, 50.424881], + [23.426508, 50.308506], + [22.51845, 49.476774], + [22.776419, 49.027395], + [22.558138, 49.085738], + [21.607808, 49.470107], + [20.887955, 49.328772], + [20.415839, 49.431453], + [19.825023, 49.217125], + [19.320713, 49.571574], + [18.909575, 49.435846], + [18.853144, 49.49623], + [18.392914, 49.988629], + [17.649445, 50.049038], + [17.554567, 50.362146], + [16.868769, 50.473974], + [16.719476, 50.215747], + [16.176253, 50.422607], + [16.238627, 50.697733], + [15.490972, 50.78473], + [15.016996, 51.106674] + ] + ] + }, + "id": "POL" + }, + { + "type": "Feature", + "properties": { "name": "Puerto Rico" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-66.282434, 18.514762], + [-65.771303, 18.426679], + [-65.591004, 18.228035], + [-65.847164, 17.975906], + [-66.599934, 17.981823], + [-67.184162, 17.946553], + [-67.242428, 18.37446], + [-67.100679, 18.520601], + [-66.282434, 18.514762] + ] + ] + }, + "id": "PRI" + }, + { + "type": "Feature", + "properties": { "name": "North Korea" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130.640016, 42.395009], + [130.780007, 42.220007], + [130.400031, 42.280004], + [129.965949, 41.941368], + [129.667362, 41.601104], + [129.705189, 40.882828], + [129.188115, 40.661808], + [129.0104, 40.485436], + [128.633368, 40.189847], + [127.967414, 40.025413], + [127.533436, 39.75685], + [127.50212, 39.323931], + [127.385434, 39.213472], + [127.783343, 39.050898], + [128.349716, 38.612243], + [128.205746, 38.370397], + [127.780035, 38.304536], + [127.073309, 38.256115], + [126.68372, 37.804773], + [126.237339, 37.840378], + [126.174759, 37.749686], + [125.689104, 37.94001], + [125.568439, 37.752089], + [125.27533, 37.669071], + [125.240087, 37.857224], + [124.981033, 37.948821], + [124.712161, 38.108346], + [124.985994, 38.548474], + [125.221949, 38.665857], + [125.132859, 38.848559], + [125.38659, 39.387958], + [125.321116, 39.551385], + [124.737482, 39.660344], + [124.265625, 39.928493], + [125.079942, 40.569824], + [126.182045, 41.107336], + [126.869083, 41.816569], + [127.343783, 41.503152], + [128.208433, 41.466772], + [128.052215, 41.994285], + [129.596669, 42.424982], + [129.994267, 42.985387], + [130.640016, 42.395009] + ] + ] + }, + "id": "PRK" + }, + { + "type": "Feature", + "properties": { "name": "Portugal" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-9.034818, 41.880571], + [-8.671946, 42.134689], + [-8.263857, 42.280469], + [-8.013175, 41.790886], + [-7.422513, 41.792075], + [-7.251309, 41.918346], + [-6.668606, 41.883387], + [-6.389088, 41.381815], + [-6.851127, 41.111083], + [-6.86402, 40.330872], + [-7.026413, 40.184524], + [-7.066592, 39.711892], + [-7.498632, 39.629571], + [-7.098037, 39.030073], + [-7.374092, 38.373059], + [-7.029281, 38.075764], + [-7.166508, 37.803894], + [-7.537105, 37.428904], + [-7.453726, 37.097788], + [-7.855613, 36.838269], + [-8.382816, 36.97888], + [-8.898857, 36.868809], + [-8.746101, 37.651346], + [-8.839998, 38.266243], + [-9.287464, 38.358486], + [-9.526571, 38.737429], + [-9.446989, 39.392066], + [-9.048305, 39.755093], + [-8.977353, 40.159306], + [-8.768684, 40.760639], + [-8.790853, 41.184334], + [-8.990789, 41.543459], + [-9.034818, 41.880571] + ] + ] + }, + "id": "PRT" + }, + { + "type": "Feature", + "properties": { "name": "Paraguay" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.685057, -22.249029], + [-62.291179, -21.051635], + [-62.265961, -20.513735], + [-61.786326, -19.633737], + [-60.043565, -19.342747], + [-59.115042, -19.356906], + [-58.183471, -19.868399], + [-58.166392, -20.176701], + [-57.870674, -20.732688], + [-57.937156, -22.090176], + [-56.88151, -22.282154], + [-56.473317, -22.0863], + [-55.797958, -22.35693], + [-55.610683, -22.655619], + [-55.517639, -23.571998], + [-55.400747, -23.956935], + [-55.027902, -24.001274], + [-54.652834, -23.839578], + [-54.29296, -24.021014], + [-54.293476, -24.5708], + [-54.428946, -25.162185], + [-54.625291, -25.739255], + [-54.788795, -26.621786], + [-55.695846, -27.387837], + [-56.486702, -27.548499], + [-57.60976, -27.395899], + [-58.618174, -27.123719], + [-57.63366, -25.603657], + [-57.777217, -25.16234], + [-58.807128, -24.771459], + [-60.028966, -24.032796], + [-60.846565, -23.880713], + [-62.685057, -22.249029] + ] + ] + }, + "id": "PRY" + }, + { + "type": "Feature", + "properties": { "name": "Qatar" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50.810108, 24.754743], + [50.743911, 25.482424], + [51.013352, 26.006992], + [51.286462, 26.114582], + [51.589079, 25.801113], + [51.6067, 25.21567], + [51.389608, 24.627386], + [51.112415, 24.556331], + [50.810108, 24.754743] + ] + ] + }, + "id": "QAT" + }, + { + "type": "Feature", + "properties": { "name": "Romania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.710531, 47.882194], + [23.142236, 48.096341], + [23.760958, 47.985598], + [24.402056, 47.981878], + [24.866317, 47.737526], + [25.207743, 47.891056], + [25.945941, 47.987149], + [26.19745, 48.220881], + [26.619337, 48.220726], + [26.924176, 48.123264], + [27.233873, 47.826771], + [27.551166, 47.405117], + [28.12803, 46.810476], + [28.160018, 46.371563], + [28.054443, 45.944586], + [28.233554, 45.488283], + [28.679779, 45.304031], + [29.149725, 45.464925], + [29.603289, 45.293308], + [29.626543, 45.035391], + [29.141612, 44.82021], + [28.837858, 44.913874], + [28.558081, 43.707462], + [27.970107, 43.812468], + [27.2424, 44.175986], + [26.065159, 43.943494], + [25.569272, 43.688445], + [24.100679, 43.741051], + [23.332302, 43.897011], + [22.944832, 43.823785], + [22.65715, 44.234923], + [22.474008, 44.409228], + [22.705726, 44.578003], + [22.459022, 44.702517], + [22.145088, 44.478422], + [21.562023, 44.768947], + [21.483526, 45.18117], + [20.874313, 45.416375], + [20.762175, 45.734573], + [20.220192, 46.127469], + [21.021952, 46.316088], + [21.626515, 46.994238], + [22.099768, 47.672439], + [22.710531, 47.882194] + ] + ] + }, + "id": "ROU" + }, + { + "type": "Feature", + "properties": { "name": "Russia" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [143.648007, 50.7476], + [144.654148, 48.976391], + [143.173928, 49.306551], + [142.558668, 47.861575], + [143.533492, 46.836728], + [143.505277, 46.137908], + [142.747701, 46.740765], + [142.09203, 45.966755], + [141.906925, 46.805929], + [142.018443, 47.780133], + [141.904445, 48.859189], + [142.1358, 49.615163], + [142.179983, 50.952342], + [141.594076, 51.935435], + [141.682546, 53.301966], + [142.606934, 53.762145], + [142.209749, 54.225476], + [142.654786, 54.365881], + [142.914616, 53.704578], + [143.260848, 52.74076], + [143.235268, 51.75666], + [143.648007, 50.7476] + ] + ], + [ + [ + [22.731099, 54.327537], + [20.892245, 54.312525], + [19.66064, 54.426084], + [19.888481, 54.86616], + [21.268449, 55.190482], + [22.315724, 55.015299], + [22.757764, 54.856574], + [22.651052, 54.582741], + [22.731099, 54.327537] + ] + ], + [ + [ + [-175.01425, 66.58435], + [-174.33983, 66.33556], + [-174.57182, 67.06219], + [-171.85731, 66.91308], + [-169.89958, 65.97724], + [-170.89107, 65.54139], + [-172.53025, 65.43791], + [-172.555, 64.46079], + [-172.95533, 64.25269], + [-173.89184, 64.2826], + [-174.65392, 64.63125], + [-175.98353, 64.92288], + [-176.20716, 65.35667], + [-177.22266, 65.52024], + [-178.35993, 65.39052], + [-178.90332, 65.74044], + [-178.68611, 66.11211], + [-179.88377, 65.87456], + [-179.43268, 65.40411], + [-180, 64.979709], + [-180, 68.963636], + [-177.55, 68.2], + [-174.92825, 67.20589], + [-175.01425, 66.58435] + ] + ], + [ + [ + [180, 70.832199], + [178.903425, 70.78114], + [178.7253, 71.0988], + [180, 71.515714], + [180, 70.832199] + ] + ], + [ + [ + [-178.69378, 70.89302], + [-180, 70.832199], + [-180, 71.515714], + [-179.871875, 71.55762], + [-179.02433, 71.55553], + [-177.577945, 71.26948], + [-177.663575, 71.13277], + [-178.69378, 70.89302] + ] + ], + [ + [ + [143.60385, 73.21244], + [142.08763, 73.20544], + [140.038155, 73.31692], + [139.86312, 73.36983], + [140.81171, 73.76506], + [142.06207, 73.85758], + [143.48283, 73.47525], + [143.60385, 73.21244] + ] + ], + [ + [ + [150.73167, 75.08406], + [149.575925, 74.68892], + [147.977465, 74.778355], + [146.11919, 75.17298], + [146.358485, 75.49682], + [148.22223, 75.345845], + [150.73167, 75.08406] + ] + ], + [ + [ + [145.086285, 75.562625], + [144.3, 74.82], + [140.61381, 74.84768], + [138.95544, 74.61148], + [136.97439, 75.26167], + [137.51176, 75.94917], + [138.831075, 76.13676], + [141.471615, 76.09289], + [145.086285, 75.562625] + ] + ], + [ + [ + [57.535693, 70.720464], + [56.944979, 70.632743], + [53.677375, 70.762658], + [53.412017, 71.206662], + [51.601895, 71.474759], + [51.455754, 72.014881], + [52.478275, 72.229442], + [52.444169, 72.774731], + [54.427614, 73.627548], + [53.50829, 73.749814], + [55.902459, 74.627486], + [55.631933, 75.081412], + [57.868644, 75.60939], + [61.170044, 76.251883], + [64.498368, 76.439055], + [66.210977, 76.809782], + [68.15706, 76.939697], + [68.852211, 76.544811], + [68.180573, 76.233642], + [64.637326, 75.737755], + [61.583508, 75.260885], + [58.477082, 74.309056], + [56.986786, 73.333044], + [55.419336, 72.371268], + [55.622838, 71.540595], + [57.535693, 70.720464] + ] + ], + [ + [ + [106.97013, 76.97419], + [107.24, 76.48], + [108.1538, 76.72335], + [111.07726, 76.71], + [113.33151, 76.22224], + [114.13417, 75.84764], + [113.88539, 75.32779], + [112.77918, 75.03186], + [110.15125, 74.47673], + [109.4, 74.18], + [110.64, 74.04], + [112.11919, 73.78774], + [113.01954, 73.97693], + [113.52958, 73.33505], + [113.96881, 73.59488], + [115.56782, 73.75285], + [118.77633, 73.58772], + [119.02, 73.12], + [123.20066, 72.97122], + [123.25777, 73.73503], + [125.38, 73.56], + [126.97644, 73.56549], + [128.59126, 73.03871], + [129.05157, 72.39872], + [128.46, 71.98], + [129.71599, 71.19304], + [131.28858, 70.78699], + [132.2535, 71.8363], + [133.85766, 71.38642], + [135.56193, 71.65525], + [137.49755, 71.34763], + [138.23409, 71.62803], + [139.86983, 71.48783], + [139.14791, 72.41619], + [140.46817, 72.84941], + [149.5, 72.2], + [150.35118, 71.60643], + [152.9689, 70.84222], + [157.00688, 71.03141], + [158.99779, 70.86672], + [159.83031, 70.45324], + [159.70866, 69.72198], + [160.94053, 69.43728], + [162.27907, 69.64204], + [164.05248, 69.66823], + [165.94037, 69.47199], + [167.83567, 69.58269], + [169.57763, 68.6938], + [170.81688, 69.01363], + [170.0082, 69.65276], + [170.45345, 70.09703], + [173.64391, 69.81743], + [175.72403, 69.87725], + [178.6, 69.4], + [180, 68.963636], + [180, 64.979709], + [179.99281, 64.97433], + [178.7072, 64.53493], + [177.41128, 64.60821], + [178.313, 64.07593], + [178.90825, 63.25197], + [179.37034, 62.98262], + [179.48636, 62.56894], + [179.22825, 62.3041], + [177.3643, 62.5219], + [174.56929, 61.76915], + [173.68013, 61.65261], + [172.15, 60.95], + [170.6985, 60.33618], + [170.33085, 59.88177], + [168.90046, 60.57355], + [166.29498, 59.78855], + [165.84, 60.16], + [164.87674, 59.7316], + [163.53929, 59.86871], + [163.21711, 59.21101], + [162.01733, 58.24328], + [162.05297, 57.83912], + [163.19191, 57.61503], + [163.05794, 56.15924], + [162.12958, 56.12219], + [161.70146, 55.28568], + [162.11749, 54.85514], + [160.36877, 54.34433], + [160.02173, 53.20257], + [158.53094, 52.95868], + [158.23118, 51.94269], + [156.78979, 51.01105], + [156.42, 51.7], + [155.99182, 53.15895], + [155.43366, 55.38103], + [155.91442, 56.76792], + [156.75815, 57.3647], + [156.81035, 57.83204], + [158.36433, 58.05575], + [160.15064, 59.31477], + [161.87204, 60.343], + [163.66969, 61.1409], + [164.47355, 62.55061], + [163.25842, 62.46627], + [162.65791, 61.6425], + [160.12148, 60.54423], + [159.30232, 61.77396], + [156.72068, 61.43442], + [154.21806, 59.75818], + [155.04375, 59.14495], + [152.81185, 58.88385], + [151.26573, 58.78089], + [151.33815, 59.50396], + [149.78371, 59.65573], + [148.54481, 59.16448], + [145.48722, 59.33637], + [142.19782, 59.03998], + [138.95848, 57.08805], + [135.12619, 54.72959], + [136.70171, 54.60355], + [137.19342, 53.97732], + [138.1647, 53.75501], + [138.80463, 54.25455], + [139.90151, 54.18968], + [141.34531, 53.08957], + [141.37923, 52.23877], + [140.59742, 51.23967], + [140.51308, 50.04553], + [140.06193, 48.44671], + [138.55472, 46.99965], + [138.21971, 46.30795], + [136.86232, 45.1435], + [135.51535, 43.989], + [134.86939, 43.39821], + [133.53687, 42.81147], + [132.90627, 42.79849], + [132.27807, 43.28456], + [130.93587, 42.55274], + [130.78, 42.22], + [130.64, 42.395], + [130.633866, 42.903015], + [131.144688, 42.92999], + [131.288555, 44.11152], + [131.02519, 44.96796], + [131.883454, 45.321162], + [133.09712, 45.14409], + [133.769644, 46.116927], + [134.11235, 47.21248], + [134.50081, 47.57845], + [135.026311, 48.47823], + [133.373596, 48.183442], + [132.50669, 47.78896], + [130.98726, 47.79013], + [130.582293, 48.729687], + [129.397818, 49.4406], + [127.6574, 49.76027], + [127.287456, 50.739797], + [126.939157, 51.353894], + [126.564399, 51.784255], + [125.946349, 52.792799], + [125.068211, 53.161045], + [123.57147, 53.4588], + [122.245748, 53.431726], + [121.003085, 53.251401], + [120.177089, 52.753886], + [120.725789, 52.516226], + [120.7382, 51.96411], + [120.18208, 51.64355], + [119.27939, 50.58292], + [119.288461, 50.142883], + [117.879244, 49.510983], + [116.678801, 49.888531], + [115.485695, 49.805177], + [114.96211, 50.140247], + [114.362456, 50.248303], + [112.89774, 49.543565], + [111.581231, 49.377968], + [110.662011, 49.130128], + [109.402449, 49.292961], + [108.475167, 49.282548], + [107.868176, 49.793705], + [106.888804, 50.274296], + [105.886591, 50.406019], + [104.62158, 50.27532], + [103.676545, 50.089966], + [102.25589, 50.51056], + [102.06521, 51.25991], + [100.88948, 51.516856], + [99.981732, 51.634006], + [98.861491, 52.047366], + [97.82574, 51.010995], + [98.231762, 50.422401], + [97.25976, 49.72605], + [95.81402, 49.97746], + [94.815949, 50.013433], + [94.147566, 50.480537], + [93.10421, 50.49529], + [92.234712, 50.802171], + [90.713667, 50.331812], + [88.805567, 49.470521], + [87.751264, 49.297198], + [87.35997, 49.214981], + [86.829357, 49.826675], + [85.54127, 49.692859], + [85.11556, 50.117303], + [84.416377, 50.3114], + [83.935115, 50.889246], + [83.383004, 51.069183], + [81.945986, 50.812196], + [80.568447, 51.388336], + [80.03556, 50.864751], + [77.800916, 53.404415], + [76.525179, 54.177003], + [76.8911, 54.490524], + [74.38482, 53.54685], + [73.425679, 53.48981], + [73.508516, 54.035617], + [72.22415, 54.376655], + [71.180131, 54.133285], + [70.865267, 55.169734], + [69.068167, 55.38525], + [68.1691, 54.970392], + [65.66687, 54.60125], + [65.178534, 54.354228], + [61.4366, 54.00625], + [60.978066, 53.664993], + [61.699986, 52.979996], + [60.739993, 52.719986], + [60.927269, 52.447548], + [59.967534, 51.96042], + [61.588003, 51.272659], + [61.337424, 50.79907], + [59.932807, 50.842194], + [59.642282, 50.545442], + [58.36332, 51.06364], + [56.77798, 51.04355], + [55.71694, 50.62171], + [54.532878, 51.02624], + [52.328724, 51.718652], + [50.766648, 51.692762], + [48.702382, 50.605128], + [48.577841, 49.87476], + [47.54948, 50.454698], + [46.751596, 49.356006], + [47.043672, 49.152039], + [46.466446, 48.394152], + [47.31524, 47.71585], + [48.05725, 47.74377], + [48.694734, 47.075628], + [48.59325, 46.56104], + [49.10116, 46.39933], + [48.64541, 45.80629], + [47.67591, 45.64149], + [46.68201, 44.6092], + [47.59094, 43.66016], + [47.49252, 42.98658], + [48.58437, 41.80888], + [47.987283, 41.405819], + [47.815666, 41.151416], + [47.373315, 41.219732], + [46.686071, 41.827137], + [46.404951, 41.860675], + [45.7764, 42.09244], + [45.470279, 42.502781], + [44.537623, 42.711993], + [43.93121, 42.55496], + [43.75599, 42.74083], + [42.3944, 43.2203], + [40.92219, 43.38215], + [40.076965, 43.553104], + [39.955009, 43.434998], + [38.68, 44.28], + [37.53912, 44.65721], + [36.67546, 45.24469], + [37.40317, 45.40451], + [38.23295, 46.24087], + [37.67372, 46.63657], + [39.14767, 47.04475], + [39.1212, 47.26336], + [38.223538, 47.10219], + [38.255112, 47.5464], + [38.77057, 47.82562], + [39.738278, 47.898937], + [39.89562, 48.23241], + [39.67465, 48.78382], + [40.080789, 49.30743], + [40.06904, 49.60105], + [38.594988, 49.926462], + [38.010631, 49.915662], + [37.39346, 50.383953], + [36.626168, 50.225591], + [35.356116, 50.577197], + [35.37791, 50.77394], + [35.022183, 51.207572], + [34.224816, 51.255993], + [34.141978, 51.566413], + [34.391731, 51.768882], + [33.7527, 52.335075], + [32.715761, 52.238465], + [32.412058, 52.288695], + [32.15944, 52.06125], + [31.78597, 52.10168], + [31.540018, 52.742052], + [31.305201, 53.073996], + [31.49764, 53.16743], + [32.304519, 53.132726], + [32.693643, 53.351421], + [32.405599, 53.618045], + [31.731273, 53.794029], + [31.791424, 53.974639], + [31.384472, 54.157056], + [30.757534, 54.811771], + [30.971836, 55.081548], + [30.873909, 55.550976], + [29.896294, 55.789463], + [29.371572, 55.670091], + [29.229513, 55.918344], + [28.176709, 56.16913], + [27.855282, 56.759326], + [27.770016, 57.244258], + [27.288185, 57.474528], + [27.716686, 57.791899], + [27.42015, 58.72457], + [28.131699, 59.300825], + [27.98112, 59.47537], + [29.1177, 60.02805], + [28.07, 60.50352], + [30.211107, 61.780028], + [31.139991, 62.357693], + [31.516092, 62.867687], + [30.035872, 63.552814], + [30.444685, 64.204453], + [29.54443, 64.948672], + [30.21765, 65.80598], + [29.054589, 66.944286], + [29.977426, 67.698297], + [28.445944, 68.364613], + [28.59193, 69.064777], + [29.39955, 69.15692], + [31.10108, 69.55811], + [32.13272, 69.90595], + [33.77547, 69.30142], + [36.51396, 69.06342], + [40.29234, 67.9324], + [41.05987, 67.45713], + [41.12595, 66.79158], + [40.01583, 66.26618], + [38.38295, 65.99953], + [33.91871, 66.75961], + [33.18444, 66.63253], + [34.81477, 65.90015], + [34.878574, 65.436213], + [34.94391, 64.41437], + [36.23129, 64.10945], + [37.01273, 63.84983], + [37.14197, 64.33471], + [36.539579, 64.76446], + [37.17604, 65.14322], + [39.59345, 64.52079], + [40.4356, 64.76446], + [39.7626, 65.49682], + [42.09309, 66.47623], + [43.01604, 66.41858], + [43.94975, 66.06908], + [44.53226, 66.75634], + [43.69839, 67.35245], + [44.18795, 67.95051], + [43.45282, 68.57079], + [46.25, 68.25], + [46.82134, 67.68997], + [45.55517, 67.56652], + [45.56202, 67.01005], + [46.34915, 66.66767], + [47.89416, 66.88455], + [48.13876, 67.52238], + [50.22766, 67.99867], + [53.71743, 68.85738], + [54.47171, 68.80815], + [53.48582, 68.20131], + [54.72628, 68.09702], + [55.44268, 68.43866], + [57.31702, 68.46628], + [58.802, 68.88082], + [59.94142, 68.27844], + [61.07784, 68.94069], + [60.03, 69.52], + [60.55, 69.85], + [63.504, 69.54739], + [64.888115, 69.234835], + [68.51216, 68.09233], + [69.18068, 68.61563], + [68.16444, 69.14436], + [68.13522, 69.35649], + [66.93008, 69.45461], + [67.25976, 69.92873], + [66.72492, 70.70889], + [66.69466, 71.02897], + [68.54006, 71.9345], + [69.19636, 72.84336], + [69.94, 73.04], + [72.58754, 72.77629], + [72.79603, 72.22006], + [71.84811, 71.40898], + [72.47011, 71.09019], + [72.79188, 70.39114], + [72.5647, 69.02085], + [73.66787, 68.4079], + [73.2387, 67.7404], + [71.28, 66.32], + [72.42301, 66.17267], + [72.82077, 66.53267], + [73.92099, 66.78946], + [74.18651, 67.28429], + [75.052, 67.76047], + [74.46926, 68.32899], + [74.93584, 68.98918], + [73.84236, 69.07146], + [73.60187, 69.62763], + [74.3998, 70.63175], + [73.1011, 71.44717], + [74.89082, 72.12119], + [74.65926, 72.83227], + [75.15801, 72.85497], + [75.68351, 72.30056], + [75.28898, 71.33556], + [76.35911, 71.15287], + [75.90313, 71.87401], + [77.57665, 72.26717], + [79.65202, 72.32011], + [81.5, 71.75], + [80.61071, 72.58285], + [80.51109, 73.6482], + [82.25, 73.85], + [84.65526, 73.80591], + [86.8223, 73.93688], + [86.00956, 74.45967], + [87.16682, 75.11643], + [88.31571, 75.14393], + [90.26, 75.64], + [92.90058, 75.77333], + [93.23421, 76.0472], + [95.86, 76.14], + [96.67821, 75.91548], + [98.92254, 76.44689], + [100.75967, 76.43028], + [101.03532, 76.86189], + [101.99084, 77.28754], + [104.3516, 77.69792], + [106.06664, 77.37389], + [104.705, 77.1274], + [106.97013, 76.97419] + ] + ], + [ + [ + [105.07547, 78.30689], + [99.43814, 77.921], + [101.2649, 79.23399], + [102.08635, 79.34641], + [102.837815, 79.28129], + [105.37243, 78.71334], + [105.07547, 78.30689] + ] + ], + [ + [ + [51.136187, 80.54728], + [49.793685, 80.415428], + [48.894411, 80.339567], + [48.754937, 80.175468], + [47.586119, 80.010181], + [46.502826, 80.247247], + [47.072455, 80.559424], + [44.846958, 80.58981], + [46.799139, 80.771918], + [48.318477, 80.78401], + [48.522806, 80.514569], + [49.09719, 80.753986], + [50.039768, 80.918885], + [51.522933, 80.699726], + [51.136187, 80.54728] + ] + ], + [ + [ + [99.93976, 78.88094], + [97.75794, 78.7562], + [94.97259, 79.044745], + [93.31288, 79.4265], + [92.5454, 80.14379], + [91.18107, 80.34146], + [93.77766, 81.0246], + [95.940895, 81.2504], + [97.88385, 80.746975], + [100.186655, 79.780135], + [99.93976, 78.88094] + ] + ] + ] + }, + "id": "RUS" + }, + { + "type": "Feature", + "properties": { "name": "Rwanda" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.419105, -1.134659], + [30.816135, -1.698914], + [30.758309, -2.28725], + [30.469696, -2.413858], + [29.938359, -2.348487], + [29.632176, -2.917858], + [29.024926, -2.839258], + [29.117479, -2.292211], + [29.254835, -2.21511], + [29.291887, -1.620056], + [29.579466, -1.341313], + [29.821519, -1.443322], + [30.419105, -1.134659] + ] + ] + }, + "id": "RWA" + }, + { + "type": "Feature", + "properties": { "name": "Western Sahara" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.794884, 27.120696], + [-8.817828, 27.656426], + [-8.66559, 27.656426], + [-8.665124, 27.589479], + [-8.6844, 27.395744], + [-8.687294, 25.881056], + [-11.969419, 25.933353], + [-11.937224, 23.374594], + [-12.874222, 23.284832], + [-13.118754, 22.77122], + [-12.929102, 21.327071], + [-16.845194, 21.333323], + [-17.063423, 20.999752], + [-17.020428, 21.42231], + [-17.002962, 21.420734], + [-14.750955, 21.5006], + [-14.630833, 21.86094], + [-14.221168, 22.310163], + [-13.89111, 23.691009], + [-12.500963, 24.770116], + [-12.030759, 26.030866], + [-11.71822, 26.104092], + [-11.392555, 26.883424], + [-10.551263, 26.990808], + [-10.189424, 26.860945], + [-9.735343, 26.860945], + [-9.413037, 27.088476], + [-8.794884, 27.120696] + ] + ] + }, + "id": "ESH" + }, + { + "type": "Feature", + "properties": { "name": "Saudi Arabia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.779332, 16.347891], + [42.649573, 16.774635], + [42.347989, 17.075806], + [42.270888, 17.474722], + [41.754382, 17.833046], + [41.221391, 18.6716], + [40.939341, 19.486485], + [40.247652, 20.174635], + [39.801685, 20.338862], + [39.139399, 21.291905], + [39.023696, 21.986875], + [39.066329, 22.579656], + [38.492772, 23.688451], + [38.02386, 24.078686], + [37.483635, 24.285495], + [37.154818, 24.858483], + [37.209491, 25.084542], + [36.931627, 25.602959], + [36.639604, 25.826228], + [36.249137, 26.570136], + [35.640182, 27.37652], + [35.130187, 28.063352], + [34.632336, 28.058546], + [34.787779, 28.607427], + [34.83222, 28.957483], + [34.956037, 29.356555], + [36.068941, 29.197495], + [36.501214, 29.505254], + [36.740528, 29.865283], + [37.503582, 30.003776], + [37.66812, 30.338665], + [37.998849, 30.5085], + [37.002166, 31.508413], + [39.004886, 32.010217], + [39.195468, 32.161009], + [40.399994, 31.889992], + [41.889981, 31.190009], + [44.709499, 29.178891], + [46.568713, 29.099025], + [47.459822, 29.002519], + [47.708851, 28.526063], + [48.416094, 28.552004], + [48.807595, 27.689628], + [49.299554, 27.461218], + [49.470914, 27.109999], + [50.152422, 26.689663], + [50.212935, 26.277027], + [50.113303, 25.943972], + [50.239859, 25.60805], + [50.527387, 25.327808], + [50.660557, 24.999896], + [50.810108, 24.754743], + [51.112415, 24.556331], + [51.389608, 24.627386], + [51.579519, 24.245497], + [51.617708, 24.014219], + [52.000733, 23.001154], + [55.006803, 22.496948], + [55.208341, 22.70833], + [55.666659, 22.000001], + [54.999982, 19.999994], + [52.00001, 19.000003], + [49.116672, 18.616668], + [48.183344, 18.166669], + [47.466695, 17.116682], + [47.000005, 16.949999], + [46.749994, 17.283338], + [46.366659, 17.233315], + [45.399999, 17.333335], + [45.216651, 17.433329], + [44.062613, 17.410359], + [43.791519, 17.319977], + [43.380794, 17.579987], + [43.115798, 17.08844], + [43.218375, 16.66689], + [42.779332, 16.347891] + ] + ] + }, + "id": "SAU" + }, + { + "type": "Feature", + "properties": { "name": "Sudan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.963393, 9.464285], + [33.824963, 9.484061], + [33.842131, 9.981915], + [33.721959, 10.325262], + [33.206938, 10.720112], + [33.086766, 11.441141], + [33.206938, 12.179338], + [32.743419, 12.248008], + [32.67475, 12.024832], + [32.073892, 11.97333], + [32.314235, 11.681484], + [32.400072, 11.080626], + [31.850716, 10.531271], + [31.352862, 9.810241], + [30.837841, 9.707237], + [29.996639, 10.290927], + [29.618957, 10.084919], + [29.515953, 9.793074], + [29.000932, 9.604232], + [28.966597, 9.398224], + [27.97089, 9.398224], + [27.833551, 9.604232], + [27.112521, 9.638567], + [26.752006, 9.466893], + [26.477328, 9.55273], + [25.962307, 10.136421], + [25.790633, 10.411099], + [25.069604, 10.27376], + [24.794926, 9.810241], + [24.537415, 8.917538], + [24.194068, 8.728696], + [23.88698, 8.61973], + [23.805813, 8.666319], + [23.459013, 8.954286], + [23.394779, 9.265068], + [23.55725, 9.681218], + [23.554304, 10.089255], + [22.977544, 10.714463], + [22.864165, 11.142395], + [22.87622, 11.38461], + [22.50869, 11.67936], + [22.49762, 12.26024], + [22.28801, 12.64605], + [21.93681, 12.58818], + [22.03759, 12.95546], + [22.29658, 13.37232], + [22.18329, 13.78648], + [22.51202, 14.09318], + [22.30351, 14.32682], + [22.56795, 14.94429], + [23.02459, 15.68072], + [23.88689, 15.61084], + [23.83766, 19.58047], + [23.85, 20], + [25, 20.00304], + [25, 22], + [29.02, 22], + [32.9, 22], + [36.86623, 22], + [37.18872, 21.01885], + [36.96941, 20.83744], + [37.1147, 19.80796], + [37.48179, 18.61409], + [37.86276, 18.36786], + [38.41009, 17.998307], + [37.904, 17.42754], + [37.16747, 17.26314], + [36.85253, 16.95655], + [36.75389, 16.29186], + [36.32322, 14.82249], + [36.42951, 14.42211], + [36.27022, 13.56333], + [35.86363, 12.57828], + [35.26049, 12.08286], + [34.83163, 11.31896], + [34.73115, 10.91017], + [34.25745, 10.63009], + [33.96162, 9.58358], + [33.963393, 9.464285] + ] + ] + }, + "id": "SDN" + }, + { + "type": "Feature", + "properties": { "name": "South Sudan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.963393, 9.464285], + [33.97498, 8.68456], + [33.8255, 8.37916], + [33.2948, 8.35458], + [32.95418, 7.78497], + [33.56829, 7.71334], + [34.0751, 7.22595], + [34.25032, 6.82607], + [34.70702, 6.59422], + [35.298007, 5.506], + [34.620196, 4.847123], + [34.005, 4.249885], + [33.39, 3.79], + [32.68642, 3.79232], + [31.88145, 3.55827], + [31.24556, 3.7819], + [30.83385, 3.50917], + [29.95349, 4.1737], + [29.715995, 4.600805], + [29.159078, 4.389267], + [28.696678, 4.455077], + [28.428994, 4.287155], + [27.979977, 4.408413], + [27.374226, 5.233944], + [27.213409, 5.550953], + [26.465909, 5.946717], + [26.213418, 6.546603], + [25.796648, 6.979316], + [25.124131, 7.500085], + [25.114932, 7.825104], + [24.567369, 8.229188], + [23.88698, 8.61973], + [24.194068, 8.728696], + [24.537415, 8.917538], + [24.794926, 9.810241], + [25.069604, 10.27376], + [25.790633, 10.411099], + [25.962307, 10.136421], + [26.477328, 9.55273], + [26.752006, 9.466893], + [27.112521, 9.638567], + [27.833551, 9.604232], + [27.97089, 9.398224], + [28.966597, 9.398224], + [29.000932, 9.604232], + [29.515953, 9.793074], + [29.618957, 10.084919], + [29.996639, 10.290927], + [30.837841, 9.707237], + [31.352862, 9.810241], + [31.850716, 10.531271], + [32.400072, 11.080626], + [32.314235, 11.681484], + [32.073892, 11.97333], + [32.67475, 12.024832], + [32.743419, 12.248008], + [33.206938, 12.179338], + [33.086766, 11.441141], + [33.206938, 10.720112], + [33.721959, 10.325262], + [33.842131, 9.981915], + [33.824963, 9.484061], + [33.963393, 9.464285] + ] + ] + }, + "id": "SSD" + }, + { + "type": "Feature", + "properties": { "name": "Senegal" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.713729, 13.594959], + [-17.126107, 14.373516], + [-17.625043, 14.729541], + [-17.185173, 14.919477], + [-16.700706, 15.621527], + [-16.463098, 16.135036], + [-16.12069, 16.455663], + [-15.623666, 16.369337], + [-15.135737, 16.587282], + [-14.577348, 16.598264], + [-14.099521, 16.304302], + [-13.435738, 16.039383], + [-12.830658, 15.303692], + [-12.17075, 14.616834], + [-12.124887, 13.994727], + [-11.927716, 13.422075], + [-11.553398, 13.141214], + [-11.467899, 12.754519], + [-11.513943, 12.442988], + [-11.658301, 12.386583], + [-12.203565, 12.465648], + [-12.278599, 12.35444], + [-12.499051, 12.33209], + [-13.217818, 12.575874], + [-13.700476, 12.586183], + [-15.548477, 12.62817], + [-15.816574, 12.515567], + [-16.147717, 12.547762], + [-16.677452, 12.384852], + [-16.841525, 13.151394], + [-15.931296, 13.130284], + [-15.691001, 13.270353], + [-15.511813, 13.27857], + [-15.141163, 13.509512], + [-14.712197, 13.298207], + [-14.277702, 13.280585], + [-13.844963, 13.505042], + [-14.046992, 13.794068], + [-14.376714, 13.62568], + [-14.687031, 13.630357], + [-15.081735, 13.876492], + [-15.39877, 13.860369], + [-15.624596, 13.623587], + [-16.713729, 13.594959] + ] + ] + }, + "id": "SEN" + }, + { + "type": "Feature", + "properties": { "name": "Solomon Islands" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [162.119025, -10.482719], + [162.398646, -10.826367], + [161.700032, -10.820011], + [161.319797, -10.204751], + [161.917383, -10.446701], + [162.119025, -10.482719] + ] + ], + [ + [ + [160.852229, -9.872937], + [160.462588, -9.89521], + [159.849447, -9.794027], + [159.640003, -9.63998], + [159.702945, -9.24295], + [160.362956, -9.400304], + [160.688518, -9.610162], + [160.852229, -9.872937] + ] + ], + [ + [ + [161.679982, -9.599982], + [161.529397, -9.784312], + [160.788253, -8.917543], + [160.579997, -8.320009], + [160.920028, -8.320009], + [161.280006, -9.120011], + [161.679982, -9.599982] + ] + ], + [ + [ + [159.875027, -8.33732], + [159.917402, -8.53829], + [159.133677, -8.114181], + [158.586114, -7.754824], + [158.21115, -7.421872], + [158.359978, -7.320018], + [158.820001, -7.560003], + [159.640003, -8.020027], + [159.875027, -8.33732] + ] + ], + [ + [ + [157.538426, -7.34782], + [157.33942, -7.404767], + [156.90203, -7.176874], + [156.491358, -6.765943], + [156.542828, -6.599338], + [157.14, -7.021638], + [157.538426, -7.34782] + ] + ] + ] + }, + "id": "SLB" + }, + { + "type": "Feature", + "properties": { "name": "Sierra Leone" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-11.438779, 6.785917], + [-11.708195, 6.860098], + [-12.428099, 7.262942], + [-12.949049, 7.798646], + [-13.124025, 8.163946], + [-13.24655, 8.903049], + [-12.711958, 9.342712], + [-12.596719, 9.620188], + [-12.425929, 9.835834], + [-12.150338, 9.858572], + [-11.917277, 10.046984], + [-11.117481, 10.045873], + [-10.839152, 9.688246], + [-10.622395, 9.26791], + [-10.65477, 8.977178], + [-10.494315, 8.715541], + [-10.505477, 8.348896], + [-10.230094, 8.406206], + [-10.695595, 7.939464], + [-11.146704, 7.396706], + [-11.199802, 7.105846], + [-11.438779, 6.785917] + ] + ] + }, + "id": "SLE" + }, + { + "type": "Feature", + "properties": { "name": "El Salvador" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-87.793111, 13.38448], + [-87.904112, 13.149017], + [-88.483302, 13.163951], + [-88.843228, 13.259734], + [-89.256743, 13.458533], + [-89.812394, 13.520622], + [-90.095555, 13.735338], + [-90.064678, 13.88197], + [-89.721934, 14.134228], + [-89.534219, 14.244816], + [-89.587343, 14.362586], + [-89.353326, 14.424133], + [-89.058512, 14.340029], + [-88.843073, 14.140507], + [-88.541231, 13.980155], + [-88.503998, 13.845486], + [-88.065343, 13.964626], + [-87.859515, 13.893312], + [-87.723503, 13.78505], + [-87.793111, 13.38448] + ] + ] + }, + "id": "SLV" + }, + { + "type": "Feature", + "properties": { "name": "Somaliland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [48.93813, 9.451749], + [48.486736, 8.837626], + [47.78942, 8.003], + [46.948328, 7.996877], + [43.67875, 9.18358], + [43.296975, 9.540477], + [42.92812, 10.02194], + [42.55876, 10.57258], + [42.776852, 10.926879], + [43.145305, 11.46204], + [43.47066, 11.27771], + [43.666668, 10.864169], + [44.117804, 10.445538], + [44.614259, 10.442205], + [45.556941, 10.698029], + [46.645401, 10.816549], + [47.525658, 11.127228], + [48.021596, 11.193064], + [48.378784, 11.375482], + [48.948206, 11.410622], + [48.942005, 11.394266], + [48.938491, 10.982327], + [48.938233, 9.9735], + [48.93813, 9.451749] + ] + ] + }, + "id": "-99" + }, + { + "type": "Feature", + "properties": { "name": "Somalia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [49.72862, 11.5789], + [50.25878, 11.67957], + [50.73202, 12.0219], + [51.1112, 12.02464], + [51.13387, 11.74815], + [51.04153, 11.16651], + [51.04531, 10.6409], + [50.83418, 10.27972], + [50.55239, 9.19874], + [50.07092, 8.08173], + [49.4527, 6.80466], + [48.59455, 5.33911], + [47.74079, 4.2194], + [46.56476, 2.85529], + [45.56399, 2.04576], + [44.06815, 1.05283], + [43.13597, 0.2922], + [42.04157, -0.91916], + [41.81095, -1.44647], + [41.58513, -1.68325], + [40.993, -0.85829], + [40.98105, 2.78452], + [41.855083, 3.918912], + [42.12861, 4.23413], + [42.76967, 4.25259], + [43.66087, 4.95755], + [44.9636, 5.00162], + [47.78942, 8.003], + [48.486736, 8.837626], + [48.93813, 9.451749], + [48.938233, 9.9735], + [48.938491, 10.982327], + [48.942005, 11.394266], + [48.948205, 11.410617], + [49.26776, 11.43033], + [49.72862, 11.5789] + ] + ] + }, + "id": "SOM" + }, + { + "type": "Feature", + "properties": { "name": "Republic of Serbia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.874313, 45.416375], + [21.483526, 45.18117], + [21.562023, 44.768947], + [22.145088, 44.478422], + [22.459022, 44.702517], + [22.705726, 44.578003], + [22.474008, 44.409228], + [22.65715, 44.234923], + [22.410446, 44.008063], + [22.500157, 43.642814], + [22.986019, 43.211161], + [22.604801, 42.898519], + [22.436595, 42.580321], + [22.545012, 42.461362], + [22.380526, 42.32026], + [21.91708, 42.30364], + [21.576636, 42.245224], + [21.54332, 42.32025], + [21.66292, 42.43922], + [21.77505, 42.6827], + [21.63302, 42.67717], + [21.43866, 42.86255], + [21.27421, 42.90959], + [21.143395, 43.068685], + [20.95651, 43.13094], + [20.81448, 43.27205], + [20.63508, 43.21671], + [20.49679, 42.88469], + [20.25758, 42.81275], + [20.3398, 42.89852], + [19.95857, 43.10604], + [19.63, 43.21378], + [19.48389, 43.35229], + [19.21852, 43.52384], + [19.454, 43.5681], + [19.59976, 44.03847], + [19.11761, 44.42307], + [19.36803, 44.863], + [19.00548, 44.86023], + [19.390476, 45.236516], + [19.072769, 45.521511], + [18.82982, 45.90888], + [19.596045, 46.17173], + [20.220192, 46.127469], + [20.762175, 45.734573], + [20.874313, 45.416375] + ] + ] + }, + "id": "SRB" + }, + { + "type": "Feature", + "properties": { "name": "Suriname" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-57.147436, 5.97315], + [-55.949318, 5.772878], + [-55.84178, 5.953125], + [-55.03325, 6.025291], + [-53.958045, 5.756548], + [-54.478633, 4.896756], + [-54.399542, 4.212611], + [-54.006931, 3.620038], + [-54.181726, 3.18978], + [-54.269705, 2.732392], + [-54.524754, 2.311849], + [-55.097587, 2.523748], + [-55.569755, 2.421506], + [-55.973322, 2.510364], + [-56.073342, 2.220795], + [-55.9056, 2.021996], + [-55.995698, 1.817667], + [-56.539386, 1.899523], + [-57.150098, 2.768927], + [-57.281433, 3.333492], + [-57.601569, 3.334655], + [-58.044694, 4.060864], + [-57.86021, 4.576801], + [-57.914289, 4.812626], + [-57.307246, 5.073567], + [-57.147436, 5.97315] + ] + ] + }, + "id": "SUR" + }, + { + "type": "Feature", + "properties": { "name": "Slovakia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [18.853144, 49.49623], + [18.909575, 49.435846], + [19.320713, 49.571574], + [19.825023, 49.217125], + [20.415839, 49.431453], + [20.887955, 49.328772], + [21.607808, 49.470107], + [22.558138, 49.085738], + [22.280842, 48.825392], + [22.085608, 48.422264], + [21.872236, 48.319971], + [20.801294, 48.623854], + [20.473562, 48.56285], + [20.239054, 48.327567], + [19.769471, 48.202691], + [19.661364, 48.266615], + [19.174365, 48.111379], + [18.777025, 48.081768], + [18.696513, 47.880954], + [17.857133, 47.758429], + [17.488473, 47.867466], + [16.979667, 48.123497], + [16.879983, 48.470013], + [16.960288, 48.596982], + [17.101985, 48.816969], + [17.545007, 48.800019], + [17.886485, 48.903475], + [17.913512, 48.996493], + [18.104973, 49.043983], + [18.170498, 49.271515], + [18.399994, 49.315001], + [18.554971, 49.495015], + [18.853144, 49.49623] + ] + ] + }, + "id": "SVK" + }, + { + "type": "Feature", + "properties": { "name": "Slovenia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [13.806475, 46.509306], + [14.632472, 46.431817], + [15.137092, 46.658703], + [16.011664, 46.683611], + [16.202298, 46.852386], + [16.370505, 46.841327], + [16.564808, 46.503751], + [15.768733, 46.238108], + [15.67153, 45.834154], + [15.323954, 45.731783], + [15.327675, 45.452316], + [14.935244, 45.471695], + [14.595109, 45.634941], + [14.411968, 45.466166], + [13.71506, 45.500324], + [13.93763, 45.591016], + [13.69811, 46.016778], + [13.806475, 46.509306] + ] + ] + }, + "id": "SVN" + }, + { + "type": "Feature", + "properties": { "name": "Sweden" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.183173, 65.723741], + [21.213517, 65.026005], + [21.369631, 64.413588], + [19.778876, 63.609554], + [17.847779, 62.7494], + [17.119555, 61.341166], + [17.831346, 60.636583], + [18.787722, 60.081914], + [17.869225, 58.953766], + [16.829185, 58.719827], + [16.44771, 57.041118], + [15.879786, 56.104302], + [14.666681, 56.200885], + [14.100721, 55.407781], + [12.942911, 55.361737], + [12.625101, 56.30708], + [11.787942, 57.441817], + [11.027369, 58.856149], + [11.468272, 59.432393], + [12.300366, 60.117933], + [12.631147, 61.293572], + [11.992064, 61.800362], + [11.930569, 63.128318], + [12.579935, 64.066219], + [13.571916, 64.049114], + [13.919905, 64.445421], + [13.55569, 64.787028], + [15.108411, 66.193867], + [16.108712, 67.302456], + [16.768879, 68.013937], + [17.729182, 68.010552], + [17.993868, 68.567391], + [19.87856, 68.407194], + [20.025269, 69.065139], + [20.645593, 69.106247], + [21.978535, 68.616846], + [23.539473, 67.936009], + [23.56588, 66.396051], + [23.903379, 66.006927], + [22.183173, 65.723741] + ] + ] + }, + "id": "SWE" + }, + { + "type": "Feature", + "properties": { "name": "Swaziland" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [32.071665, -26.73382], + [31.86806, -27.177927], + [31.282773, -27.285879], + [30.685962, -26.743845], + [30.676609, -26.398078], + [30.949667, -26.022649], + [31.04408, -25.731452], + [31.333158, -25.660191], + [31.837778, -25.843332], + [31.985779, -26.29178], + [32.071665, -26.73382] + ] + ] + }, + "id": "SWZ" + }, + { + "type": "Feature", + "properties": { "name": "Syria" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [38.792341, 33.378686], + [36.834062, 32.312938], + [35.719918, 32.709192], + [35.700798, 32.716014], + [35.836397, 32.868123], + [35.821101, 33.277426], + [36.06646, 33.824912], + [36.61175, 34.201789], + [36.448194, 34.593935], + [35.998403, 34.644914], + [35.905023, 35.410009], + [36.149763, 35.821535], + [36.41755, 36.040617], + [36.685389, 36.259699], + [36.739494, 36.81752], + [37.066761, 36.623036], + [38.167727, 36.90121], + [38.699891, 36.712927], + [39.52258, 36.716054], + [40.673259, 37.091276], + [41.212089, 37.074352], + [42.349591, 37.229873], + [41.837064, 36.605854], + [41.289707, 36.358815], + [41.383965, 35.628317], + [41.006159, 34.419372], + [38.792341, 33.378686] + ] + ] + }, + "id": "SYR" + }, + { + "type": "Feature", + "properties": { "name": "Chad" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [14.495787, 12.859396], + [14.595781, 13.330427], + [13.954477, 13.353449], + [13.956699, 13.996691], + [13.540394, 14.367134], + [13.97217, 15.68437], + [15.247731, 16.627306], + [15.300441, 17.92795], + [15.685741, 19.95718], + [15.903247, 20.387619], + [15.487148, 20.730415], + [15.47106, 21.04845], + [15.096888, 21.308519], + [14.8513, 22.86295], + [15.86085, 23.40972], + [19.84926, 21.49509], + [23.83766, 19.58047], + [23.88689, 15.61084], + [23.02459, 15.68072], + [22.56795, 14.94429], + [22.30351, 14.32682], + [22.51202, 14.09318], + [22.18329, 13.78648], + [22.29658, 13.37232], + [22.03759, 12.95546], + [21.93681, 12.58818], + [22.28801, 12.64605], + [22.49762, 12.26024], + [22.50869, 11.67936], + [22.87622, 11.38461], + [22.864165, 11.142395], + [22.231129, 10.971889], + [21.723822, 10.567056], + [21.000868, 9.475985], + [20.059685, 9.012706], + [19.094008, 9.074847], + [18.81201, 8.982915], + [18.911022, 8.630895], + [18.389555, 8.281304], + [17.96493, 7.890914], + [16.705988, 7.508328], + [16.456185, 7.734774], + [16.290562, 7.754307], + [16.106232, 7.497088], + [15.27946, 7.421925], + [15.436092, 7.692812], + [15.120866, 8.38215], + [14.979996, 8.796104], + [14.544467, 8.965861], + [13.954218, 9.549495], + [14.171466, 10.021378], + [14.627201, 9.920919], + [14.909354, 9.992129], + [15.467873, 9.982337], + [14.923565, 10.891325], + [14.960152, 11.555574], + [14.89336, 12.21905], + [14.495787, 12.859396] + ] + ] + }, + "id": "TCD" + }, + { + "type": "Feature", + "properties": { "name": "Togo" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [1.865241, 6.142158], + [1.060122, 5.928837], + [0.836931, 6.279979], + [0.570384, 6.914359], + [0.490957, 7.411744], + [0.712029, 8.312465], + [0.461192, 8.677223], + [0.365901, 9.465004], + [0.36758, 10.191213], + [-0.049785, 10.706918], + [0.023803, 11.018682], + [0.899563, 10.997339], + [0.772336, 10.470808], + [1.077795, 10.175607], + [1.425061, 9.825395], + [1.463043, 9.334624], + [1.664478, 9.12859], + [1.618951, 6.832038], + [1.865241, 6.142158] + ] + ] + }, + "id": "TGO" + }, + { + "type": "Feature", + "properties": { "name": "Thailand" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [102.584932, 12.186595], + [101.687158, 12.64574], + [100.83181, 12.627085], + [100.978467, 13.412722], + [100.097797, 13.406856], + [100.018733, 12.307001], + [99.478921, 10.846367], + [99.153772, 9.963061], + [99.222399, 9.239255], + [99.873832, 9.207862], + [100.279647, 8.295153], + [100.459274, 7.429573], + [101.017328, 6.856869], + [101.623079, 6.740622], + [102.141187, 6.221636], + [101.814282, 5.810808], + [101.154219, 5.691384], + [101.075516, 6.204867], + [100.259596, 6.642825], + [100.085757, 6.464489], + [99.690691, 6.848213], + [99.519642, 7.343454], + [98.988253, 7.907993], + [98.503786, 8.382305], + [98.339662, 7.794512], + [98.150009, 8.350007], + [98.25915, 8.973923], + [98.553551, 9.93296], + [99.038121, 10.960546], + [99.587286, 11.892763], + [99.196354, 12.804748], + [99.212012, 13.269294], + [99.097755, 13.827503], + [98.430819, 14.622028], + [98.192074, 15.123703], + [98.537376, 15.308497], + [98.903348, 16.177824], + [98.493761, 16.837836], + [97.859123, 17.567946], + [97.375896, 18.445438], + [97.797783, 18.62708], + [98.253724, 19.708203], + [98.959676, 19.752981], + [99.543309, 20.186598], + [100.115988, 20.41785], + [100.548881, 20.109238], + [100.606294, 19.508344], + [101.282015, 19.462585], + [101.035931, 18.408928], + [101.059548, 17.512497], + [102.113592, 18.109102], + [102.413005, 17.932782], + [102.998706, 17.961695], + [103.200192, 18.309632], + [103.956477, 18.240954], + [104.716947, 17.428859], + [104.779321, 16.441865], + [105.589039, 15.570316], + [105.544338, 14.723934], + [105.218777, 14.273212], + [104.281418, 14.416743], + [102.988422, 14.225721], + [102.348099, 13.394247], + [102.584932, 12.186595] + ] + ] + }, + "id": "THA" + }, + { + "type": "Feature", + "properties": { "name": "Tajikistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [71.014198, 40.244366], + [70.648019, 39.935754], + [69.55961, 40.103211], + [69.464887, 39.526683], + [70.549162, 39.604198], + [71.784694, 39.279463], + [73.675379, 39.431237], + [73.928852, 38.505815], + [74.257514, 38.606507], + [74.864816, 38.378846], + [74.829986, 37.990007], + [74.980002, 37.41999], + [73.948696, 37.421566], + [73.260056, 37.495257], + [72.63689, 37.047558], + [72.193041, 36.948288], + [71.844638, 36.738171], + [71.448693, 37.065645], + [71.541918, 37.905774], + [71.239404, 37.953265], + [71.348131, 38.258905], + [70.806821, 38.486282], + [70.376304, 38.138396], + [70.270574, 37.735165], + [70.116578, 37.588223], + [69.518785, 37.608997], + [69.196273, 37.151144], + [68.859446, 37.344336], + [68.135562, 37.023115], + [67.83, 37.144994], + [68.392033, 38.157025], + [68.176025, 38.901553], + [67.44222, 39.140144], + [67.701429, 39.580478], + [68.536416, 39.533453], + [69.011633, 40.086158], + [69.329495, 40.727824], + [70.666622, 40.960213], + [70.45816, 40.496495], + [70.601407, 40.218527], + [71.014198, 40.244366] + ] + ] + }, + "id": "TJK" + }, + { + "type": "Feature", + "properties": { "name": "Turkmenistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [61.210817, 35.650072], + [61.123071, 36.491597], + [60.377638, 36.527383], + [59.234762, 37.412988], + [58.436154, 37.522309], + [57.330434, 38.029229], + [56.619366, 38.121394], + [56.180375, 37.935127], + [55.511578, 37.964117], + [54.800304, 37.392421], + [53.921598, 37.198918], + [53.735511, 37.906136], + [53.880929, 38.952093], + [53.101028, 39.290574], + [53.357808, 39.975286], + [52.693973, 40.033629], + [52.915251, 40.876523], + [53.858139, 40.631034], + [54.736845, 40.951015], + [54.008311, 41.551211], + [53.721713, 42.123191], + [52.91675, 41.868117], + [52.814689, 41.135371], + [52.50246, 41.783316], + [52.944293, 42.116034], + [54.079418, 42.324109], + [54.755345, 42.043971], + [55.455251, 41.259859], + [55.968191, 41.308642], + [57.096391, 41.32231], + [56.932215, 41.826026], + [57.78653, 42.170553], + [58.629011, 42.751551], + [59.976422, 42.223082], + [60.083341, 41.425146], + [60.465953, 41.220327], + [61.547179, 41.26637], + [61.882714, 41.084857], + [62.37426, 40.053886], + [63.518015, 39.363257], + [64.170223, 38.892407], + [65.215999, 38.402695], + [66.54615, 37.974685], + [66.518607, 37.362784], + [66.217385, 37.39379], + [65.745631, 37.661164], + [65.588948, 37.305217], + [64.746105, 37.111818], + [64.546479, 36.312073], + [63.982896, 36.007957], + [63.193538, 35.857166], + [62.984662, 35.404041], + [62.230651, 35.270664], + [61.210817, 35.650072] + ] + ] + }, + "id": "TKM" + }, + { + "type": "Feature", + "properties": { "name": "East Timor" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [124.968682, -8.89279], + [125.086246, -8.656887], + [125.947072, -8.432095], + [126.644704, -8.398247], + [126.957243, -8.273345], + [127.335928, -8.397317], + [126.967992, -8.668256], + [125.925885, -9.106007], + [125.08852, -9.393173], + [125.07002, -9.089987], + [124.968682, -8.89279] + ] + ] + }, + "id": "TLS" + }, + { + "type": "Feature", + "properties": { "name": "Trinidad and Tobago" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.68, 10.76], + [-61.105, 10.89], + [-60.895, 10.855], + [-60.935, 10.11], + [-61.77, 10], + [-61.95, 10.09], + [-61.66, 10.365], + [-61.68, 10.76] + ] + ] + }, + "id": "TTO" + }, + { + "type": "Feature", + "properties": { "name": "Tunisia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.48214, 30.307556], + [9.055603, 32.102692], + [8.439103, 32.506285], + [8.430473, 32.748337], + [7.612642, 33.344115], + [7.524482, 34.097376], + [8.140981, 34.655146], + [8.376368, 35.479876], + [8.217824, 36.433177], + [8.420964, 36.946427], + [9.509994, 37.349994], + [10.210002, 37.230002], + [10.18065, 36.724038], + [11.028867, 37.092103], + [11.100026, 36.899996], + [10.600005, 36.41], + [10.593287, 35.947444], + [10.939519, 35.698984], + [10.807847, 34.833507], + [10.149593, 34.330773], + [10.339659, 33.785742], + [10.856836, 33.76874], + [11.108501, 33.293343], + [11.488787, 33.136996], + [11.432253, 32.368903], + [10.94479, 32.081815], + [10.636901, 31.761421], + [9.950225, 31.37607], + [10.056575, 30.961831], + [9.970017, 30.539325], + [9.48214, 30.307556] + ] + ] + }, + "id": "TUN" + }, + { + "type": "Feature", + "properties": { "name": "Turkey" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [36.913127, 41.335358], + [38.347665, 40.948586], + [39.512607, 41.102763], + [40.373433, 41.013673], + [41.554084, 41.535656], + [42.619549, 41.583173], + [43.582746, 41.092143], + [43.752658, 40.740201], + [43.656436, 40.253564], + [44.400009, 40.005], + [44.79399, 39.713003], + [44.109225, 39.428136], + [44.421403, 38.281281], + [44.225756, 37.971584], + [44.772699, 37.170445], + [44.293452, 37.001514], + [43.942259, 37.256228], + [42.779126, 37.385264], + [42.349591, 37.229873], + [41.212089, 37.074352], + [40.673259, 37.091276], + [39.52258, 36.716054], + [38.699891, 36.712927], + [38.167727, 36.90121], + [37.066761, 36.623036], + [36.739494, 36.81752], + [36.685389, 36.259699], + [36.41755, 36.040617], + [36.149763, 35.821535], + [35.782085, 36.274995], + [36.160822, 36.650606], + [35.550936, 36.565443], + [34.714553, 36.795532], + [34.026895, 36.21996], + [32.509158, 36.107564], + [31.699595, 36.644275], + [30.621625, 36.677865], + [30.391096, 36.262981], + [29.699976, 36.144357], + [28.732903, 36.676831], + [27.641187, 36.658822], + [27.048768, 37.653361], + [26.318218, 38.208133], + [26.8047, 38.98576], + [26.170785, 39.463612], + [27.28002, 40.420014], + [28.819978, 40.460011], + [29.240004, 41.219991], + [31.145934, 41.087622], + [32.347979, 41.736264], + [33.513283, 42.01896], + [35.167704, 42.040225], + [36.913127, 41.335358] + ] + ], + [ + [ + [27.192377, 40.690566], + [26.358009, 40.151994], + [26.043351, 40.617754], + [26.056942, 40.824123], + [26.294602, 40.936261], + [26.604196, 41.562115], + [26.117042, 41.826905], + [27.135739, 42.141485], + [27.99672, 42.007359], + [28.115525, 41.622886], + [28.988443, 41.299934], + [28.806438, 41.054962], + [27.619017, 40.999823], + [27.192377, 40.690566] + ] + ] + ] + }, + "id": "TUR" + }, + { + "type": "Feature", + "properties": { "name": "Taiwan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [121.777818, 24.394274], + [121.175632, 22.790857], + [120.74708, 21.970571], + [120.220083, 22.814861], + [120.106189, 23.556263], + [120.69468, 24.538451], + [121.495044, 25.295459], + [121.951244, 24.997596], + [121.777818, 24.394274] + ] + ] + }, + "id": "TWN" + }, + { + "type": "Feature", + "properties": { "name": "United Republic of Tanzania" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.903711, -0.95], + [34.07262, -1.05982], + [37.69869, -3.09699], + [37.7669, -3.67712], + [39.20222, -4.67677], + [38.74054, -5.90895], + [38.79977, -6.47566], + [39.44, -6.84], + [39.47, -7.1], + [39.19469, -7.7039], + [39.25203, -8.00781], + [39.18652, -8.48551], + [39.53574, -9.11237], + [39.9496, -10.0984], + [40.31659, -10.3171], + [39.521, -10.89688], + [38.427557, -11.285202], + [37.82764, -11.26879], + [37.47129, -11.56876], + [36.775151, -11.594537], + [36.514082, -11.720938], + [35.312398, -11.439146], + [34.559989, -11.52002], + [34.28, -10.16], + [33.940838, -9.693674], + [33.73972, -9.41715], + [32.759375, -9.230599], + [32.191865, -8.930359], + [31.556348, -8.762049], + [31.157751, -8.594579], + [30.74, -8.34], + [30.2, -7.08], + [29.62, -6.52], + [29.419993, -5.939999], + [29.519987, -5.419979], + [29.339998, -4.499983], + [29.753512, -4.452389], + [30.11632, -4.09012], + [30.50554, -3.56858], + [30.75224, -3.35931], + [30.74301, -3.03431], + [30.52766, -2.80762], + [30.46967, -2.41383], + [30.758309, -2.28725], + [30.816135, -1.698914], + [30.419105, -1.134659], + [30.76986, -1.01455], + [31.86617, -1.02736], + [33.903711, -0.95] + ] + ] + }, + "id": "TZA" + }, + { + "type": "Feature", + "properties": { "name": "Uganda" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.86617, -1.02736], + [30.76986, -1.01455], + [30.419105, -1.134659], + [29.821519, -1.443322], + [29.579466, -1.341313], + [29.587838, -0.587406], + [29.8195, -0.2053], + [29.875779, 0.59738], + [30.086154, 1.062313], + [30.468508, 1.583805], + [30.85267, 1.849396], + [31.174149, 2.204465], + [30.77332, 2.33989], + [30.83385, 3.50917], + [31.24556, 3.7819], + [31.88145, 3.55827], + [32.68642, 3.79232], + [33.39, 3.79], + [34.005, 4.249885], + [34.47913, 3.5556], + [34.59607, 3.05374], + [35.03599, 1.90584], + [34.6721, 1.17694], + [34.18, 0.515], + [33.893569, 0.109814], + [33.903711, -0.95], + [31.86617, -1.02736] + ] + ] + }, + "id": "UGA" + }, + { + "type": "Feature", + "properties": { "name": "Ukraine" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.785998, 52.101678], + [32.159412, 52.061267], + [32.412058, 52.288695], + [32.715761, 52.238465], + [33.7527, 52.335075], + [34.391731, 51.768882], + [34.141978, 51.566413], + [34.224816, 51.255993], + [35.022183, 51.207572], + [35.377924, 50.773955], + [35.356116, 50.577197], + [36.626168, 50.225591], + [37.39346, 50.383953], + [38.010631, 49.915662], + [38.594988, 49.926462], + [40.069058, 49.601055], + [40.080789, 49.30743], + [39.674664, 48.783818], + [39.895632, 48.232405], + [39.738278, 47.898937], + [38.770585, 47.825608], + [38.255112, 47.5464], + [38.223538, 47.10219], + [37.425137, 47.022221], + [36.759855, 46.6987], + [35.823685, 46.645964], + [34.962342, 46.273197], + [35.020788, 45.651219], + [35.510009, 45.409993], + [36.529998, 45.46999], + [36.334713, 45.113216], + [35.239999, 44.939996], + [33.882511, 44.361479], + [33.326421, 44.564877], + [33.546924, 45.034771], + [32.454174, 45.327466], + [32.630804, 45.519186], + [33.588162, 45.851569], + [33.298567, 46.080598], + [31.74414, 46.333348], + [31.675307, 46.706245], + [30.748749, 46.5831], + [30.377609, 46.03241], + [29.603289, 45.293308], + [29.149725, 45.464925], + [28.679779, 45.304031], + [28.233554, 45.488283], + [28.485269, 45.596907], + [28.659987, 45.939987], + [28.933717, 46.25883], + [28.862972, 46.437889], + [29.072107, 46.517678], + [29.170654, 46.379262], + [29.759972, 46.349988], + [30.024659, 46.423937], + [29.83821, 46.525326], + [29.908852, 46.674361], + [29.559674, 46.928583], + [29.415135, 47.346645], + [29.050868, 47.510227], + [29.122698, 47.849095], + [28.670891, 48.118149], + [28.259547, 48.155562], + [27.522537, 48.467119], + [26.857824, 48.368211], + [26.619337, 48.220726], + [26.19745, 48.220881], + [25.945941, 47.987149], + [25.207743, 47.891056], + [24.866317, 47.737526], + [24.402056, 47.981878], + [23.760958, 47.985598], + [23.142236, 48.096341], + [22.710531, 47.882194], + [22.64082, 48.15024], + [22.085608, 48.422264], + [22.280842, 48.825392], + [22.558138, 49.085738], + [22.776419, 49.027395], + [22.51845, 49.476774], + [23.426508, 50.308506], + [23.922757, 50.424881], + [24.029986, 50.705407], + [23.527071, 51.578454], + [24.005078, 51.617444], + [24.553106, 51.888461], + [25.327788, 51.910656], + [26.337959, 51.832289], + [27.454066, 51.592303], + [28.241615, 51.572227], + [28.617613, 51.427714], + [28.992835, 51.602044], + [29.254938, 51.368234], + [30.157364, 51.416138], + [30.555117, 51.319503], + [30.619454, 51.822806], + [30.927549, 52.042353], + [31.785998, 52.101678] + ] + ] + }, + "id": "UKR" + }, + { + "type": "Feature", + "properties": { "name": "Uruguay" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-57.625133, -30.216295], + [-56.976026, -30.109686], + [-55.973245, -30.883076], + [-55.60151, -30.853879], + [-54.572452, -31.494511], + [-53.787952, -32.047243], + [-53.209589, -32.727666], + [-53.650544, -33.202004], + [-53.373662, -33.768378], + [-53.806426, -34.396815], + [-54.935866, -34.952647], + [-55.67409, -34.752659], + [-56.215297, -34.859836], + [-57.139685, -34.430456], + [-57.817861, -34.462547], + [-58.427074, -33.909454], + [-58.349611, -33.263189], + [-58.132648, -33.040567], + [-58.14244, -32.044504], + [-57.874937, -31.016556], + [-57.625133, -30.216295] + ] + ] + }, + "id": "URY" + }, + { + "type": "Feature", + "properties": { "name": "United States of America" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-155.54211, 19.08348], + [-155.68817, 18.91619], + [-155.93665, 19.05939], + [-155.90806, 19.33888], + [-156.07347, 19.70294], + [-156.02368, 19.81422], + [-155.85008, 19.97729], + [-155.91907, 20.17395], + [-155.86108, 20.26721], + [-155.78505, 20.2487], + [-155.40214, 20.07975], + [-155.22452, 19.99302], + [-155.06226, 19.8591], + [-154.80741, 19.50871], + [-154.83147, 19.45328], + [-155.22217, 19.23972], + [-155.54211, 19.08348] + ] + ], + [ + [ + [-156.07926, 20.64397], + [-156.41445, 20.57241], + [-156.58673, 20.783], + [-156.70167, 20.8643], + [-156.71055, 20.92676], + [-156.61258, 21.01249], + [-156.25711, 20.91745], + [-155.99566, 20.76404], + [-156.07926, 20.64397] + ] + ], + [ + [ + [-156.75824, 21.17684], + [-156.78933, 21.06873], + [-157.32521, 21.09777], + [-157.25027, 21.21958], + [-156.75824, 21.17684] + ] + ], + [ + [ + [-157.65283, 21.32217], + [-157.70703, 21.26442], + [-157.7786, 21.27729], + [-158.12667, 21.31244], + [-158.2538, 21.53919], + [-158.29265, 21.57912], + [-158.0252, 21.71696], + [-157.94161, 21.65272], + [-157.65283, 21.32217] + ] + ], + [ + [ + [-159.34512, 21.982], + [-159.46372, 21.88299], + [-159.80051, 22.06533], + [-159.74877, 22.1382], + [-159.5962, 22.23618], + [-159.36569, 22.21494], + [-159.34512, 21.982] + ] + ], + [ + [ + [-94.81758, 49.38905], + [-94.64, 48.84], + [-94.32914, 48.67074], + [-93.63087, 48.60926], + [-92.61, 48.45], + [-91.64, 48.14], + [-90.83, 48.27], + [-89.6, 48.01], + [-89.272917, 48.019808], + [-88.378114, 48.302918], + [-87.439793, 47.94], + [-86.461991, 47.553338], + [-85.652363, 47.220219], + [-84.87608, 46.900083], + [-84.779238, 46.637102], + [-84.543749, 46.538684], + [-84.6049, 46.4396], + [-84.3367, 46.40877], + [-84.14212, 46.512226], + [-84.091851, 46.275419], + [-83.890765, 46.116927], + [-83.616131, 46.116927], + [-83.469551, 45.994686], + [-83.592851, 45.816894], + [-82.550925, 45.347517], + [-82.337763, 44.44], + [-82.137642, 43.571088], + [-82.43, 42.98], + [-82.9, 42.43], + [-83.12, 42.08], + [-83.142, 41.975681], + [-83.02981, 41.832796], + [-82.690089, 41.675105], + [-82.439278, 41.675105], + [-81.277747, 42.209026], + [-80.247448, 42.3662], + [-78.939362, 42.863611], + [-78.92, 42.965], + [-79.01, 43.27], + [-79.171674, 43.466339], + [-78.72028, 43.625089], + [-77.737885, 43.629056], + [-76.820034, 43.628784], + [-76.5, 44.018459], + [-76.375, 44.09631], + [-75.31821, 44.81645], + [-74.867, 45.00048], + [-73.34783, 45.00738], + [-71.50506, 45.0082], + [-71.405, 45.255], + [-71.08482, 45.30524], + [-70.66, 45.46], + [-70.305, 45.915], + [-69.99997, 46.69307], + [-69.237216, 47.447781], + [-68.905, 47.185], + [-68.23444, 47.35486], + [-67.79046, 47.06636], + [-67.79134, 45.70281], + [-67.13741, 45.13753], + [-66.96466, 44.8097], + [-68.03252, 44.3252], + [-69.06, 43.98], + [-70.11617, 43.68405], + [-70.645476, 43.090238], + [-70.81489, 42.8653], + [-70.825, 42.335], + [-70.495, 41.805], + [-70.08, 41.78], + [-70.185, 42.145], + [-69.88497, 41.92283], + [-69.96503, 41.63717], + [-70.64, 41.475], + [-71.12039, 41.49445], + [-71.86, 41.32], + [-72.295, 41.27], + [-72.87643, 41.22065], + [-73.71, 40.931102], + [-72.24126, 41.11948], + [-71.945, 40.93], + [-73.345, 40.63], + [-73.982, 40.628], + [-73.952325, 40.75075], + [-74.25671, 40.47351], + [-73.96244, 40.42763], + [-74.17838, 39.70926], + [-74.90604, 38.93954], + [-74.98041, 39.1964], + [-75.20002, 39.24845], + [-75.52805, 39.4985], + [-75.32, 38.96], + [-75.071835, 38.782032], + [-75.05673, 38.40412], + [-75.37747, 38.01551], + [-75.94023, 37.21689], + [-76.03127, 37.2566], + [-75.72205, 37.93705], + [-76.23287, 38.319215], + [-76.35, 39.15], + [-76.542725, 38.717615], + [-76.32933, 38.08326], + [-76.989998, 38.239992], + [-76.30162, 37.917945], + [-76.25874, 36.9664], + [-75.9718, 36.89726], + [-75.86804, 36.55125], + [-75.72749, 35.55074], + [-76.36318, 34.80854], + [-77.397635, 34.51201], + [-78.05496, 33.92547], + [-78.55435, 33.86133], + [-79.06067, 33.49395], + [-79.20357, 33.15839], + [-80.301325, 32.509355], + [-80.86498, 32.0333], + [-81.33629, 31.44049], + [-81.49042, 30.72999], + [-81.31371, 30.03552], + [-80.98, 29.18], + [-80.535585, 28.47213], + [-80.53, 28.04], + [-80.056539, 26.88], + [-80.088015, 26.205765], + [-80.13156, 25.816775], + [-80.38103, 25.20616], + [-80.68, 25.08], + [-81.17213, 25.20126], + [-81.33, 25.64], + [-81.71, 25.87], + [-82.24, 26.73], + [-82.70515, 27.49504], + [-82.85526, 27.88624], + [-82.65, 28.55], + [-82.93, 29.1], + [-83.70959, 29.93656], + [-84.1, 30.09], + [-85.10882, 29.63615], + [-85.28784, 29.68612], + [-85.7731, 30.15261], + [-86.4, 30.4], + [-87.53036, 30.27433], + [-88.41782, 30.3849], + [-89.18049, 30.31598], + [-89.593831, 30.159994], + [-89.413735, 29.89419], + [-89.43, 29.48864], + [-89.21767, 29.29108], + [-89.40823, 29.15961], + [-89.77928, 29.30714], + [-90.15463, 29.11743], + [-90.880225, 29.148535], + [-91.626785, 29.677], + [-92.49906, 29.5523], + [-93.22637, 29.78375], + [-93.84842, 29.71363], + [-94.69, 29.48], + [-95.60026, 28.73863], + [-96.59404, 28.30748], + [-97.14, 27.83], + [-97.37, 27.38], + [-97.38, 26.69], + [-97.33, 26.21], + [-97.14, 25.87], + [-97.53, 25.84], + [-98.24, 26.06], + [-99.02, 26.37], + [-99.3, 26.84], + [-99.52, 27.54], + [-100.11, 28.11], + [-100.45584, 28.69612], + [-100.9576, 29.38071], + [-101.6624, 29.7793], + [-102.48, 29.76], + [-103.11, 28.97], + [-103.94, 29.27], + [-104.45697, 29.57196], + [-104.70575, 30.12173], + [-105.03737, 30.64402], + [-105.63159, 31.08383], + [-106.1429, 31.39995], + [-106.50759, 31.75452], + [-108.24, 31.754854], + [-108.24194, 31.34222], + [-109.035, 31.34194], + [-111.02361, 31.33472], + [-113.30498, 32.03914], + [-114.815, 32.52528], + [-114.72139, 32.72083], + [-115.99135, 32.61239], + [-117.12776, 32.53534], + [-117.295938, 33.046225], + [-117.944, 33.621236], + [-118.410602, 33.740909], + [-118.519895, 34.027782], + [-119.081, 34.078], + [-119.438841, 34.348477], + [-120.36778, 34.44711], + [-120.62286, 34.60855], + [-120.74433, 35.15686], + [-121.71457, 36.16153], + [-122.54747, 37.55176], + [-122.51201, 37.78339], + [-122.95319, 38.11371], + [-123.7272, 38.95166], + [-123.86517, 39.76699], + [-124.39807, 40.3132], + [-124.17886, 41.14202], + [-124.2137, 41.99964], + [-124.53284, 42.76599], + [-124.14214, 43.70838], + [-124.020535, 44.615895], + [-123.89893, 45.52341], + [-124.079635, 46.86475], + [-124.39567, 47.72017], + [-124.68721, 48.184433], + [-124.566101, 48.379715], + [-123.12, 48.04], + [-122.58736, 47.096], + [-122.34, 47.36], + [-122.5, 48.18], + [-122.84, 49], + [-120, 49], + [-117.03121, 49], + [-116.04818, 49], + [-113, 49], + [-110.05, 49], + [-107.05, 49], + [-104.04826, 48.99986], + [-100.65, 49], + [-97.22872, 49.0007], + [-95.15907, 49], + [-95.15609, 49.38425], + [-94.81758, 49.38905] + ] + ], + [ + [ + [-153.006314, 57.115842], + [-154.00509, 56.734677], + [-154.516403, 56.992749], + [-154.670993, 57.461196], + [-153.76278, 57.816575], + [-153.228729, 57.968968], + [-152.564791, 57.901427], + [-152.141147, 57.591059], + [-153.006314, 57.115842] + ] + ], + [ + [ + [-165.579164, 59.909987], + [-166.19277, 59.754441], + [-166.848337, 59.941406], + [-167.455277, 60.213069], + [-166.467792, 60.38417], + [-165.67443, 60.293607], + [-165.579164, 59.909987] + ] + ], + [ + [ + [-171.731657, 63.782515], + [-171.114434, 63.592191], + [-170.491112, 63.694975], + [-169.682505, 63.431116], + [-168.689439, 63.297506], + [-168.771941, 63.188598], + [-169.52944, 62.976931], + [-170.290556, 63.194438], + [-170.671386, 63.375822], + [-171.553063, 63.317789], + [-171.791111, 63.405846], + [-171.731657, 63.782515] + ] + ], + [ + [ + [-155.06779, 71.147776], + [-154.344165, 70.696409], + [-153.900006, 70.889989], + [-152.210006, 70.829992], + [-152.270002, 70.600006], + [-150.739992, 70.430017], + [-149.720003, 70.53001], + [-147.613362, 70.214035], + [-145.68999, 70.12001], + [-144.920011, 69.989992], + [-143.589446, 70.152514], + [-142.07251, 69.851938], + [-140.985988, 69.711998], + [-140.985988, 69.711998], + [-140.992499, 66.000029], + [-140.99777, 60.306397], + [-140.012998, 60.276838], + [-139.039, 60.000007], + [-138.34089, 59.56211], + [-137.4525, 58.905], + [-136.47972, 59.46389], + [-135.47583, 59.78778], + [-134.945, 59.27056], + [-134.27111, 58.86111], + [-133.355549, 58.410285], + [-132.73042, 57.69289], + [-131.70781, 56.55212], + [-130.00778, 55.91583], + [-129.979994, 55.284998], + [-130.53611, 54.802753], + [-131.085818, 55.178906], + [-131.967211, 55.497776], + [-132.250011, 56.369996], + [-133.539181, 57.178887], + [-134.078063, 58.123068], + [-135.038211, 58.187715], + [-136.628062, 58.212209], + [-137.800006, 58.499995], + [-139.867787, 59.537762], + [-140.825274, 59.727517], + [-142.574444, 60.084447], + [-143.958881, 59.99918], + [-145.925557, 60.45861], + [-147.114374, 60.884656], + [-148.224306, 60.672989], + [-148.018066, 59.978329], + [-148.570823, 59.914173], + [-149.727858, 59.705658], + [-150.608243, 59.368211], + [-151.716393, 59.155821], + [-151.859433, 59.744984], + [-151.409719, 60.725803], + [-150.346941, 61.033588], + [-150.621111, 61.284425], + [-151.895839, 60.727198], + [-152.57833, 60.061657], + [-154.019172, 59.350279], + [-153.287511, 58.864728], + [-154.232492, 58.146374], + [-155.307491, 57.727795], + [-156.308335, 57.422774], + [-156.556097, 56.979985], + [-158.117217, 56.463608], + [-158.433321, 55.994154], + [-159.603327, 55.566686], + [-160.28972, 55.643581], + [-161.223048, 55.364735], + [-162.237766, 55.024187], + [-163.069447, 54.689737], + [-164.785569, 54.404173], + [-164.942226, 54.572225], + [-163.84834, 55.039431], + [-162.870001, 55.348043], + [-161.804175, 55.894986], + [-160.563605, 56.008055], + [-160.07056, 56.418055], + [-158.684443, 57.016675], + [-158.461097, 57.216921], + [-157.72277, 57.570001], + [-157.550274, 58.328326], + [-157.041675, 58.918885], + [-158.194731, 58.615802], + [-158.517218, 58.787781], + [-159.058606, 58.424186], + [-159.711667, 58.93139], + [-159.981289, 58.572549], + [-160.355271, 59.071123], + [-161.355003, 58.670838], + [-161.968894, 58.671665], + [-162.054987, 59.266925], + [-161.874171, 59.633621], + [-162.518059, 59.989724], + [-163.818341, 59.798056], + [-164.662218, 60.267484], + [-165.346388, 60.507496], + [-165.350832, 61.073895], + [-166.121379, 61.500019], + [-165.734452, 62.074997], + [-164.919179, 62.633076], + [-164.562508, 63.146378], + [-163.753332, 63.219449], + [-163.067224, 63.059459], + [-162.260555, 63.541936], + [-161.53445, 63.455817], + [-160.772507, 63.766108], + [-160.958335, 64.222799], + [-161.518068, 64.402788], + [-160.777778, 64.788604], + [-161.391926, 64.777235], + [-162.45305, 64.559445], + [-162.757786, 64.338605], + [-163.546394, 64.55916], + [-164.96083, 64.446945], + [-166.425288, 64.686672], + [-166.845004, 65.088896], + [-168.11056, 65.669997], + [-166.705271, 66.088318], + [-164.47471, 66.57666], + [-163.652512, 66.57666], + [-163.788602, 66.077207], + [-161.677774, 66.11612], + [-162.489715, 66.735565], + [-163.719717, 67.116395], + [-164.430991, 67.616338], + [-165.390287, 68.042772], + [-166.764441, 68.358877], + [-166.204707, 68.883031], + [-164.430811, 68.915535], + [-163.168614, 69.371115], + [-162.930566, 69.858062], + [-161.908897, 70.33333], + [-160.934797, 70.44769], + [-159.039176, 70.891642], + [-158.119723, 70.824721], + [-156.580825, 71.357764], + [-155.06779, 71.147776] + ] + ] + ] + }, + "id": "USA" + }, + { + "type": "Feature", + "properties": { "name": "Uzbekistan" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [66.518607, 37.362784], + [66.54615, 37.974685], + [65.215999, 38.402695], + [64.170223, 38.892407], + [63.518015, 39.363257], + [62.37426, 40.053886], + [61.882714, 41.084857], + [61.547179, 41.26637], + [60.465953, 41.220327], + [60.083341, 41.425146], + [59.976422, 42.223082], + [58.629011, 42.751551], + [57.78653, 42.170553], + [56.932215, 41.826026], + [57.096391, 41.32231], + [55.968191, 41.308642], + [55.928917, 44.995858], + [58.503127, 45.586804], + [58.689989, 45.500014], + [60.239972, 44.784037], + [61.05832, 44.405817], + [62.0133, 43.504477], + [63.185787, 43.650075], + [64.900824, 43.728081], + [66.098012, 42.99766], + [66.023392, 41.994646], + [66.510649, 41.987644], + [66.714047, 41.168444], + [67.985856, 41.135991], + [68.259896, 40.662325], + [68.632483, 40.668681], + [69.070027, 41.384244], + [70.388965, 42.081308], + [70.962315, 42.266154], + [71.259248, 42.167711], + [70.420022, 41.519998], + [71.157859, 41.143587], + [71.870115, 41.3929], + [73.055417, 40.866033], + [71.774875, 40.145844], + [71.014198, 40.244366], + [70.601407, 40.218527], + [70.45816, 40.496495], + [70.666622, 40.960213], + [69.329495, 40.727824], + [69.011633, 40.086158], + [68.536416, 39.533453], + [67.701429, 39.580478], + [67.44222, 39.140144], + [68.176025, 38.901553], + [68.392033, 38.157025], + [67.83, 37.144994], + [67.075782, 37.356144], + [66.518607, 37.362784] + ] + ] + }, + "id": "UZB" + }, + { + "type": "Feature", + "properties": { "name": "Venezuela" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.331584, 11.776284], + [-71.360006, 11.539994], + [-71.94705, 11.423282], + [-71.620868, 10.96946], + [-71.633064, 10.446494], + [-72.074174, 9.865651], + [-71.695644, 9.072263], + [-71.264559, 9.137195], + [-71.039999, 9.859993], + [-71.350084, 10.211935], + [-71.400623, 10.968969], + [-70.155299, 11.375482], + [-70.293843, 11.846822], + [-69.943245, 12.162307], + [-69.5843, 11.459611], + [-68.882999, 11.443385], + [-68.233271, 10.885744], + [-68.194127, 10.554653], + [-67.296249, 10.545868], + [-66.227864, 10.648627], + [-65.655238, 10.200799], + [-64.890452, 10.077215], + [-64.329479, 10.389599], + [-64.318007, 10.641418], + [-63.079322, 10.701724], + [-61.880946, 10.715625], + [-62.730119, 10.420269], + [-62.388512, 9.948204], + [-61.588767, 9.873067], + [-60.830597, 9.38134], + [-60.671252, 8.580174], + [-60.150096, 8.602757], + [-59.758285, 8.367035], + [-60.550588, 7.779603], + [-60.637973, 7.415], + [-60.295668, 7.043911], + [-60.543999, 6.856584], + [-61.159336, 6.696077], + [-61.139415, 6.234297], + [-61.410303, 5.959068], + [-60.733574, 5.200277], + [-60.601179, 4.918098], + [-60.966893, 4.536468], + [-62.08543, 4.162124], + [-62.804533, 4.006965], + [-63.093198, 3.770571], + [-63.888343, 4.02053], + [-64.628659, 4.148481], + [-64.816064, 4.056445], + [-64.368494, 3.79721], + [-64.408828, 3.126786], + [-64.269999, 2.497006], + [-63.422867, 2.411068], + [-63.368788, 2.2009], + [-64.083085, 1.916369], + [-64.199306, 1.492855], + [-64.611012, 1.328731], + [-65.354713, 1.095282], + [-65.548267, 0.789254], + [-66.325765, 0.724452], + [-66.876326, 1.253361], + [-67.181294, 2.250638], + [-67.447092, 2.600281], + [-67.809938, 2.820655], + [-67.303173, 3.318454], + [-67.337564, 3.542342], + [-67.621836, 3.839482], + [-67.823012, 4.503937], + [-67.744697, 5.221129], + [-67.521532, 5.55687], + [-67.34144, 6.095468], + [-67.695087, 6.267318], + [-68.265052, 6.153268], + [-68.985319, 6.206805], + [-69.38948, 6.099861], + [-70.093313, 6.960376], + [-70.674234, 7.087785], + [-71.960176, 6.991615], + [-72.198352, 7.340431], + [-72.444487, 7.423785], + [-72.479679, 7.632506], + [-72.360901, 8.002638], + [-72.439862, 8.405275], + [-72.660495, 8.625288], + [-72.78873, 9.085027], + [-73.304952, 9.152], + [-73.027604, 9.73677], + [-72.905286, 10.450344], + [-72.614658, 10.821975], + [-72.227575, 11.108702], + [-71.973922, 11.608672], + [-71.331584, 11.776284] + ] + ] + }, + "id": "VEN" + }, + { + "type": "Feature", + "properties": { "name": "Vietnam" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [108.05018, 21.55238], + [106.715068, 20.696851], + [105.881682, 19.75205], + [105.662006, 19.058165], + [106.426817, 18.004121], + [107.361954, 16.697457], + [108.269495, 16.079742], + [108.877107, 15.276691], + [109.33527, 13.426028], + [109.200136, 11.666859], + [108.36613, 11.008321], + [107.220929, 10.364484], + [106.405113, 9.53084], + [105.158264, 8.59976], + [104.795185, 9.241038], + [105.076202, 9.918491], + [104.334335, 10.486544], + [105.199915, 10.88931], + [106.24967, 10.961812], + [105.810524, 11.567615], + [107.491403, 12.337206], + [107.614548, 13.535531], + [107.382727, 14.202441], + [107.564525, 15.202173], + [107.312706, 15.908538], + [106.556008, 16.604284], + [105.925762, 17.485315], + [105.094598, 18.666975], + [103.896532, 19.265181], + [104.183388, 19.624668], + [104.822574, 19.886642], + [104.435, 20.758733], + [103.203861, 20.766562], + [102.754896, 21.675137], + [102.170436, 22.464753], + [102.706992, 22.708795], + [103.504515, 22.703757], + [104.476858, 22.81915], + [105.329209, 23.352063], + [105.811247, 22.976892], + [106.725403, 22.794268], + [106.567273, 22.218205], + [107.04342, 21.811899], + [108.05018, 21.55238] + ] + ] + }, + "id": "VNM" + }, + { + "type": "Feature", + "properties": { "name": "Vanuatu" }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [167.844877, -16.466333], + [167.515181, -16.59785], + [167.180008, -16.159995], + [167.216801, -15.891846], + [167.844877, -16.466333] + ] + ], + [ + [ + [167.107712, -14.93392], + [167.270028, -15.740021], + [167.001207, -15.614602], + [166.793158, -15.668811], + [166.649859, -15.392704], + [166.629137, -14.626497], + [167.107712, -14.93392] + ] + ] + ] + }, + "id": "VUT" + }, + { + "type": "Feature", + "properties": { "name": "West Bank" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.545665, 32.393992], + [35.545252, 31.782505], + [35.397561, 31.489086], + [34.927408, 31.353435], + [34.970507, 31.616778], + [35.225892, 31.754341], + [34.974641, 31.866582], + [35.18393, 32.532511], + [35.545665, 32.393992] + ] + ] + }, + "id": "PSE" + }, + { + "type": "Feature", + "properties": { "name": "Yemen" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [53.108573, 16.651051], + [52.385206, 16.382411], + [52.191729, 15.938433], + [52.168165, 15.59742], + [51.172515, 15.17525], + [49.574576, 14.708767], + [48.679231, 14.003202], + [48.238947, 13.94809], + [47.938914, 14.007233], + [47.354454, 13.59222], + [46.717076, 13.399699], + [45.877593, 13.347764], + [45.62505, 13.290946], + [45.406459, 13.026905], + [45.144356, 12.953938], + [44.989533, 12.699587], + [44.494576, 12.721653], + [44.175113, 12.58595], + [43.482959, 12.6368], + [43.222871, 13.22095], + [43.251448, 13.767584], + [43.087944, 14.06263], + [42.892245, 14.802249], + [42.604873, 15.213335], + [42.805015, 15.261963], + [42.702438, 15.718886], + [42.823671, 15.911742], + [42.779332, 16.347891], + [43.218375, 16.66689], + [43.115798, 17.08844], + [43.380794, 17.579987], + [43.791519, 17.319977], + [44.062613, 17.410359], + [45.216651, 17.433329], + [45.399999, 17.333335], + [46.366659, 17.233315], + [46.749994, 17.283338], + [47.000005, 16.949999], + [47.466695, 17.116682], + [48.183344, 18.166669], + [49.116672, 18.616668], + [52.00001, 19.000003], + [52.782184, 17.349742], + [53.108573, 16.651051] + ] + ] + }, + "id": "YEM" + }, + { + "type": "Feature", + "properties": { "name": "South Africa" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.521001, -29.257387], + [31.325561, -29.401978], + [30.901763, -29.909957], + [30.622813, -30.423776], + [30.055716, -31.140269], + [28.925553, -32.172041], + [28.219756, -32.771953], + [27.464608, -33.226964], + [26.419452, -33.61495], + [25.909664, -33.66704], + [25.780628, -33.944646], + [25.172862, -33.796851], + [24.677853, -33.987176], + [23.594043, -33.794474], + [22.988189, -33.916431], + [22.574157, -33.864083], + [21.542799, -34.258839], + [20.689053, -34.417175], + [20.071261, -34.795137], + [19.616405, -34.819166], + [19.193278, -34.462599], + [18.855315, -34.444306], + [18.424643, -33.997873], + [18.377411, -34.136521], + [18.244499, -33.867752], + [18.25008, -33.281431], + [17.92519, -32.611291], + [18.24791, -32.429131], + [18.221762, -31.661633], + [17.566918, -30.725721], + [17.064416, -29.878641], + [17.062918, -29.875954], + [16.344977, -28.576705], + [16.824017, -28.082162], + [17.218929, -28.355943], + [17.387497, -28.783514], + [17.836152, -28.856378], + [18.464899, -29.045462], + [19.002127, -28.972443], + [19.894734, -28.461105], + [19.895768, -24.76779], + [20.165726, -24.917962], + [20.758609, -25.868136], + [20.66647, -26.477453], + [20.889609, -26.828543], + [21.605896, -26.726534], + [22.105969, -26.280256], + [22.579532, -25.979448], + [22.824271, -25.500459], + [23.312097, -25.26869], + [23.73357, -25.390129], + [24.211267, -25.670216], + [25.025171, -25.71967], + [25.664666, -25.486816], + [25.765849, -25.174845], + [25.941652, -24.696373], + [26.485753, -24.616327], + [26.786407, -24.240691], + [27.11941, -23.574323], + [28.017236, -22.827754], + [29.432188, -22.091313], + [29.839037, -22.102216], + [30.322883, -22.271612], + [30.659865, -22.151567], + [31.191409, -22.25151], + [31.670398, -23.658969], + [31.930589, -24.369417], + [31.752408, -25.484284], + [31.837778, -25.843332], + [31.333158, -25.660191], + [31.04408, -25.731452], + [30.949667, -26.022649], + [30.676609, -26.398078], + [30.685962, -26.743845], + [31.282773, -27.285879], + [31.86806, -27.177927], + [32.071665, -26.73382], + [32.83012, -26.742192], + [32.580265, -27.470158], + [32.462133, -28.301011], + [32.203389, -28.752405], + [31.521001, -29.257387] + ], + [ + [28.978263, -28.955597], + [28.5417, -28.647502], + [28.074338, -28.851469], + [27.532511, -29.242711], + [26.999262, -29.875954], + [27.749397, -30.645106], + [28.107205, -30.545732], + [28.291069, -30.226217], + [28.8484, -30.070051], + [29.018415, -29.743766], + [29.325166, -29.257387], + [28.978263, -28.955597] + ] + ] + }, + "id": "ZAF" + }, + { + "type": "Feature", + "properties": { "name": "Zambia" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [32.759375, -9.230599], + [33.231388, -9.676722], + [33.485688, -10.525559], + [33.31531, -10.79655], + [33.114289, -11.607198], + [33.306422, -12.435778], + [32.991764, -12.783871], + [32.688165, -13.712858], + [33.214025, -13.97186], + [30.179481, -14.796099], + [30.274256, -15.507787], + [29.516834, -15.644678], + [28.947463, -16.043051], + [28.825869, -16.389749], + [28.467906, -16.4684], + [27.598243, -17.290831], + [27.044427, -17.938026], + [26.706773, -17.961229], + [26.381935, -17.846042], + [25.264226, -17.73654], + [25.084443, -17.661816], + [25.07695, -17.578823], + [24.682349, -17.353411], + [24.033862, -17.295843], + [23.215048, -17.523116], + [22.562478, -16.898451], + [21.887843, -16.08031], + [21.933886, -12.898437], + [24.016137, -12.911046], + [23.930922, -12.565848], + [24.079905, -12.191297], + [23.904154, -11.722282], + [24.017894, -11.237298], + [23.912215, -10.926826], + [24.257155, -10.951993], + [24.314516, -11.262826], + [24.78317, -11.238694], + [25.418118, -11.330936], + [25.75231, -11.784965], + [26.553088, -11.92444], + [27.16442, -11.608748], + [27.388799, -12.132747], + [28.155109, -12.272481], + [28.523562, -12.698604], + [28.934286, -13.248958], + [29.699614, -13.257227], + [29.616001, -12.178895], + [29.341548, -12.360744], + [28.642417, -11.971569], + [28.372253, -11.793647], + [28.49607, -10.789884], + [28.673682, -9.605925], + [28.449871, -9.164918], + [28.734867, -8.526559], + [29.002912, -8.407032], + [30.346086, -8.238257], + [30.740015, -8.340007], + [31.157751, -8.594579], + [31.556348, -8.762049], + [32.191865, -8.930359], + [32.759375, -9.230599] + ] + ] + }, + "id": "ZMB" + }, + { + "type": "Feature", + "properties": { "name": "Zimbabwe" }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.191409, -22.25151], + [30.659865, -22.151567], + [30.322883, -22.271612], + [29.839037, -22.102216], + [29.432188, -22.091313], + [28.794656, -21.639454], + [28.02137, -21.485975], + [27.727228, -20.851802], + [27.724747, -20.499059], + [27.296505, -20.39152], + [26.164791, -19.293086], + [25.850391, -18.714413], + [25.649163, -18.536026], + [25.264226, -17.73654], + [26.381935, -17.846042], + [26.706773, -17.961229], + [27.044427, -17.938026], + [27.598243, -17.290831], + [28.467906, -16.4684], + [28.825869, -16.389749], + [28.947463, -16.043051], + [29.516834, -15.644678], + [30.274256, -15.507787], + [30.338955, -15.880839], + [31.173064, -15.860944], + [31.636498, -16.07199], + [31.852041, -16.319417], + [32.328239, -16.392074], + [32.847639, -16.713398], + [32.849861, -17.979057], + [32.654886, -18.67209], + [32.611994, -19.419383], + [32.772708, -19.715592], + [32.659743, -20.30429], + [32.508693, -20.395292], + [32.244988, -21.116489], + [31.191409, -22.25151] + ] + ] + }, + "id": "ZWE" + } + ] +} diff --git a/public/images/browsers/android-webview.png b/public/images/browser/android-webview.png similarity index 100% rename from public/images/browsers/android-webview.png rename to public/images/browser/android-webview.png diff --git a/public/images/browsers/android.png b/public/images/browser/android.png similarity index 100% rename from public/images/browsers/android.png rename to public/images/browser/android.png diff --git a/public/images/browsers/aol.png b/public/images/browser/aol.png similarity index 100% rename from public/images/browsers/aol.png rename to public/images/browser/aol.png diff --git a/public/images/browsers/beaker.png b/public/images/browser/beaker.png similarity index 100% rename from public/images/browsers/beaker.png rename to public/images/browser/beaker.png diff --git a/public/images/browsers/blackberry.png b/public/images/browser/blackberry.png similarity index 100% rename from public/images/browsers/blackberry.png rename to public/images/browser/blackberry.png diff --git a/public/images/browsers/brave.png b/public/images/browser/brave.png similarity index 100% rename from public/images/browsers/brave.png rename to public/images/browser/brave.png diff --git a/public/images/browsers/chrome.png b/public/images/browser/chrome.png similarity index 100% rename from public/images/browsers/chrome.png rename to public/images/browser/chrome.png diff --git a/public/images/browsers/chromium-webview.png b/public/images/browser/chromium-webview.png similarity index 100% rename from public/images/browsers/chromium-webview.png rename to public/images/browser/chromium-webview.png diff --git a/public/images/browsers/crios.png b/public/images/browser/crios.png similarity index 100% rename from public/images/browsers/crios.png rename to public/images/browser/crios.png diff --git a/public/images/browsers/curl.png b/public/images/browser/curl.png similarity index 100% rename from public/images/browsers/curl.png rename to public/images/browser/curl.png diff --git a/public/images/browsers/edge-chromium.png b/public/images/browser/edge-chromium.png similarity index 100% rename from public/images/browsers/edge-chromium.png rename to public/images/browser/edge-chromium.png diff --git a/public/images/browsers/edge-ios.png b/public/images/browser/edge-ios.png similarity index 100% rename from public/images/browsers/edge-ios.png rename to public/images/browser/edge-ios.png diff --git a/public/images/browsers/edge.png b/public/images/browser/edge.png similarity index 100% rename from public/images/browsers/edge.png rename to public/images/browser/edge.png diff --git a/public/images/browsers/facebook.png b/public/images/browser/facebook.png similarity index 100% rename from public/images/browsers/facebook.png rename to public/images/browser/facebook.png diff --git a/public/images/browsers/firefox.png b/public/images/browser/firefox.png similarity index 100% rename from public/images/browsers/firefox.png rename to public/images/browser/firefox.png diff --git a/public/images/browsers/fxios.png b/public/images/browser/fxios.png similarity index 100% rename from public/images/browsers/fxios.png rename to public/images/browser/fxios.png diff --git a/public/images/browsers/ie.png b/public/images/browser/ie.png similarity index 100% rename from public/images/browsers/ie.png rename to public/images/browser/ie.png diff --git a/public/images/browsers/instagram.png b/public/images/browser/instagram.png similarity index 100% rename from public/images/browsers/instagram.png rename to public/images/browser/instagram.png diff --git a/public/images/browsers/ios-webview.png b/public/images/browser/ios-webview.png similarity index 100% rename from public/images/browsers/ios-webview.png rename to public/images/browser/ios-webview.png diff --git a/public/images/browsers/ios.png b/public/images/browser/ios.png similarity index 100% rename from public/images/browsers/ios.png rename to public/images/browser/ios.png diff --git a/public/images/browsers/kakaotalk.png b/public/images/browser/kakaotalk.png similarity index 100% rename from public/images/browsers/kakaotalk.png rename to public/images/browser/kakaotalk.png diff --git a/public/images/browsers/miui.png b/public/images/browser/miui.png similarity index 100% rename from public/images/browsers/miui.png rename to public/images/browser/miui.png diff --git a/public/images/browsers/opera-mini.png b/public/images/browser/opera-mini.png similarity index 100% rename from public/images/browsers/opera-mini.png rename to public/images/browser/opera-mini.png diff --git a/public/images/browsers/opera.png b/public/images/browser/opera.png similarity index 100% rename from public/images/browsers/opera.png rename to public/images/browser/opera.png diff --git a/public/images/browsers/safari.png b/public/images/browser/safari.png similarity index 100% rename from public/images/browsers/safari.png rename to public/images/browser/safari.png diff --git a/public/images/browsers/samsung.png b/public/images/browser/samsung.png similarity index 100% rename from public/images/browsers/samsung.png rename to public/images/browser/samsung.png diff --git a/public/images/browsers/searchbot.png b/public/images/browser/searchbot.png similarity index 100% rename from public/images/browsers/searchbot.png rename to public/images/browser/searchbot.png diff --git a/public/images/browsers/silk.png b/public/images/browser/silk.png similarity index 100% rename from public/images/browsers/silk.png rename to public/images/browser/silk.png diff --git a/public/images/browsers/unknown.png b/public/images/browser/unknown.png similarity index 100% rename from public/images/browsers/unknown.png rename to public/images/browser/unknown.png diff --git a/public/images/browsers/yandexbrowser.png b/public/images/browser/yandexbrowser.png similarity index 100% rename from public/images/browsers/yandexbrowser.png rename to public/images/browser/yandexbrowser.png diff --git a/public/images/flags/ad.png b/public/images/country/ad.png similarity index 100% rename from public/images/flags/ad.png rename to public/images/country/ad.png diff --git a/public/images/flags/ae.png b/public/images/country/ae.png similarity index 100% rename from public/images/flags/ae.png rename to public/images/country/ae.png diff --git a/public/images/flags/af.png b/public/images/country/af.png similarity index 100% rename from public/images/flags/af.png rename to public/images/country/af.png diff --git a/public/images/flags/ag.png b/public/images/country/ag.png similarity index 100% rename from public/images/flags/ag.png rename to public/images/country/ag.png diff --git a/public/images/flags/ai.png b/public/images/country/ai.png similarity index 100% rename from public/images/flags/ai.png rename to public/images/country/ai.png diff --git a/public/images/flags/al.png b/public/images/country/al.png similarity index 100% rename from public/images/flags/al.png rename to public/images/country/al.png diff --git a/public/images/flags/am.png b/public/images/country/am.png similarity index 100% rename from public/images/flags/am.png rename to public/images/country/am.png diff --git a/public/images/flags/ao.png b/public/images/country/ao.png similarity index 100% rename from public/images/flags/ao.png rename to public/images/country/ao.png diff --git a/public/images/flags/aq.png b/public/images/country/aq.png similarity index 100% rename from public/images/flags/aq.png rename to public/images/country/aq.png diff --git a/public/images/flags/ar.png b/public/images/country/ar.png similarity index 100% rename from public/images/flags/ar.png rename to public/images/country/ar.png diff --git a/public/images/flags/as.png b/public/images/country/as.png similarity index 100% rename from public/images/flags/as.png rename to public/images/country/as.png diff --git a/public/images/flags/at.png b/public/images/country/at.png similarity index 100% rename from public/images/flags/at.png rename to public/images/country/at.png diff --git a/public/images/flags/au.png b/public/images/country/au.png similarity index 100% rename from public/images/flags/au.png rename to public/images/country/au.png diff --git a/public/images/flags/aw.png b/public/images/country/aw.png similarity index 100% rename from public/images/flags/aw.png rename to public/images/country/aw.png diff --git a/public/images/flags/ax.png b/public/images/country/ax.png similarity index 100% rename from public/images/flags/ax.png rename to public/images/country/ax.png diff --git a/public/images/flags/az.png b/public/images/country/az.png similarity index 100% rename from public/images/flags/az.png rename to public/images/country/az.png diff --git a/public/images/flags/ba.png b/public/images/country/ba.png similarity index 100% rename from public/images/flags/ba.png rename to public/images/country/ba.png diff --git a/public/images/flags/bb.png b/public/images/country/bb.png similarity index 100% rename from public/images/flags/bb.png rename to public/images/country/bb.png diff --git a/public/images/flags/bd.png b/public/images/country/bd.png similarity index 100% rename from public/images/flags/bd.png rename to public/images/country/bd.png diff --git a/public/images/flags/be.png b/public/images/country/be.png similarity index 100% rename from public/images/flags/be.png rename to public/images/country/be.png diff --git a/public/images/flags/bf.png b/public/images/country/bf.png similarity index 100% rename from public/images/flags/bf.png rename to public/images/country/bf.png diff --git a/public/images/flags/bg.png b/public/images/country/bg.png similarity index 100% rename from public/images/flags/bg.png rename to public/images/country/bg.png diff --git a/public/images/flags/bh.png b/public/images/country/bh.png similarity index 100% rename from public/images/flags/bh.png rename to public/images/country/bh.png diff --git a/public/images/flags/bi.png b/public/images/country/bi.png similarity index 100% rename from public/images/flags/bi.png rename to public/images/country/bi.png diff --git a/public/images/flags/bj.png b/public/images/country/bj.png similarity index 100% rename from public/images/flags/bj.png rename to public/images/country/bj.png diff --git a/public/images/flags/bl.png b/public/images/country/bl.png similarity index 100% rename from public/images/flags/bl.png rename to public/images/country/bl.png diff --git a/public/images/flags/bm.png b/public/images/country/bm.png similarity index 100% rename from public/images/flags/bm.png rename to public/images/country/bm.png diff --git a/public/images/flags/bn.png b/public/images/country/bn.png similarity index 100% rename from public/images/flags/bn.png rename to public/images/country/bn.png diff --git a/public/images/flags/bo.png b/public/images/country/bo.png similarity index 100% rename from public/images/flags/bo.png rename to public/images/country/bo.png diff --git a/public/images/flags/bq.png b/public/images/country/bq.png similarity index 100% rename from public/images/flags/bq.png rename to public/images/country/bq.png diff --git a/public/images/flags/br.png b/public/images/country/br.png similarity index 100% rename from public/images/flags/br.png rename to public/images/country/br.png diff --git a/public/images/flags/bs.png b/public/images/country/bs.png similarity index 100% rename from public/images/flags/bs.png rename to public/images/country/bs.png diff --git a/public/images/flags/bt.png b/public/images/country/bt.png similarity index 100% rename from public/images/flags/bt.png rename to public/images/country/bt.png diff --git a/public/images/flags/bv.png b/public/images/country/bv.png similarity index 100% rename from public/images/flags/bv.png rename to public/images/country/bv.png diff --git a/public/images/flags/bw.png b/public/images/country/bw.png similarity index 100% rename from public/images/flags/bw.png rename to public/images/country/bw.png diff --git a/public/images/flags/by.png b/public/images/country/by.png similarity index 100% rename from public/images/flags/by.png rename to public/images/country/by.png diff --git a/public/images/flags/bz.png b/public/images/country/bz.png similarity index 100% rename from public/images/flags/bz.png rename to public/images/country/bz.png diff --git a/public/images/flags/ca.png b/public/images/country/ca.png similarity index 100% rename from public/images/flags/ca.png rename to public/images/country/ca.png diff --git a/public/images/flags/cc.png b/public/images/country/cc.png similarity index 100% rename from public/images/flags/cc.png rename to public/images/country/cc.png diff --git a/public/images/flags/cd.png b/public/images/country/cd.png similarity index 100% rename from public/images/flags/cd.png rename to public/images/country/cd.png diff --git a/public/images/flags/cf.png b/public/images/country/cf.png similarity index 100% rename from public/images/flags/cf.png rename to public/images/country/cf.png diff --git a/public/images/flags/cg.png b/public/images/country/cg.png similarity index 100% rename from public/images/flags/cg.png rename to public/images/country/cg.png diff --git a/public/images/flags/ch.png b/public/images/country/ch.png similarity index 100% rename from public/images/flags/ch.png rename to public/images/country/ch.png diff --git a/public/images/flags/ci.png b/public/images/country/ci.png similarity index 100% rename from public/images/flags/ci.png rename to public/images/country/ci.png diff --git a/public/images/flags/ck.png b/public/images/country/ck.png similarity index 100% rename from public/images/flags/ck.png rename to public/images/country/ck.png diff --git a/public/images/flags/cl.png b/public/images/country/cl.png similarity index 100% rename from public/images/flags/cl.png rename to public/images/country/cl.png diff --git a/public/images/flags/cm.png b/public/images/country/cm.png similarity index 100% rename from public/images/flags/cm.png rename to public/images/country/cm.png diff --git a/public/images/flags/cn.png b/public/images/country/cn.png similarity index 100% rename from public/images/flags/cn.png rename to public/images/country/cn.png diff --git a/public/images/flags/co.png b/public/images/country/co.png similarity index 100% rename from public/images/flags/co.png rename to public/images/country/co.png diff --git a/public/images/flags/cr.png b/public/images/country/cr.png similarity index 100% rename from public/images/flags/cr.png rename to public/images/country/cr.png diff --git a/public/images/flags/cu.png b/public/images/country/cu.png similarity index 100% rename from public/images/flags/cu.png rename to public/images/country/cu.png diff --git a/public/images/flags/cv.png b/public/images/country/cv.png similarity index 100% rename from public/images/flags/cv.png rename to public/images/country/cv.png diff --git a/public/images/flags/cw.png b/public/images/country/cw.png similarity index 100% rename from public/images/flags/cw.png rename to public/images/country/cw.png diff --git a/public/images/flags/cx.png b/public/images/country/cx.png similarity index 100% rename from public/images/flags/cx.png rename to public/images/country/cx.png diff --git a/public/images/flags/cy.png b/public/images/country/cy.png similarity index 100% rename from public/images/flags/cy.png rename to public/images/country/cy.png diff --git a/public/images/flags/cz.png b/public/images/country/cz.png similarity index 100% rename from public/images/flags/cz.png rename to public/images/country/cz.png diff --git a/public/images/flags/de.png b/public/images/country/de.png similarity index 100% rename from public/images/flags/de.png rename to public/images/country/de.png diff --git a/public/images/flags/dj.png b/public/images/country/dj.png similarity index 100% rename from public/images/flags/dj.png rename to public/images/country/dj.png diff --git a/public/images/flags/dk.png b/public/images/country/dk.png similarity index 100% rename from public/images/flags/dk.png rename to public/images/country/dk.png diff --git a/public/images/flags/dm.png b/public/images/country/dm.png similarity index 100% rename from public/images/flags/dm.png rename to public/images/country/dm.png diff --git a/public/images/flags/do.png b/public/images/country/do.png similarity index 100% rename from public/images/flags/do.png rename to public/images/country/do.png diff --git a/public/images/flags/dz.png b/public/images/country/dz.png similarity index 100% rename from public/images/flags/dz.png rename to public/images/country/dz.png diff --git a/public/images/flags/ec.png b/public/images/country/ec.png similarity index 100% rename from public/images/flags/ec.png rename to public/images/country/ec.png diff --git a/public/images/flags/ee.png b/public/images/country/ee.png similarity index 100% rename from public/images/flags/ee.png rename to public/images/country/ee.png diff --git a/public/images/flags/eg.png b/public/images/country/eg.png similarity index 100% rename from public/images/flags/eg.png rename to public/images/country/eg.png diff --git a/public/images/flags/eh.png b/public/images/country/eh.png similarity index 100% rename from public/images/flags/eh.png rename to public/images/country/eh.png diff --git a/public/images/flags/er.png b/public/images/country/er.png similarity index 100% rename from public/images/flags/er.png rename to public/images/country/er.png diff --git a/public/images/flags/es.png b/public/images/country/es.png similarity index 100% rename from public/images/flags/es.png rename to public/images/country/es.png diff --git a/public/images/flags/et.png b/public/images/country/et.png similarity index 100% rename from public/images/flags/et.png rename to public/images/country/et.png diff --git a/public/images/flags/fi.png b/public/images/country/fi.png similarity index 100% rename from public/images/flags/fi.png rename to public/images/country/fi.png diff --git a/public/images/flags/fj.png b/public/images/country/fj.png similarity index 100% rename from public/images/flags/fj.png rename to public/images/country/fj.png diff --git a/public/images/flags/fk.png b/public/images/country/fk.png similarity index 100% rename from public/images/flags/fk.png rename to public/images/country/fk.png diff --git a/public/images/flags/fm.png b/public/images/country/fm.png similarity index 100% rename from public/images/flags/fm.png rename to public/images/country/fm.png diff --git a/public/images/flags/fo.png b/public/images/country/fo.png similarity index 100% rename from public/images/flags/fo.png rename to public/images/country/fo.png diff --git a/public/images/flags/fr.png b/public/images/country/fr.png similarity index 100% rename from public/images/flags/fr.png rename to public/images/country/fr.png diff --git a/public/images/flags/ga.png b/public/images/country/ga.png similarity index 100% rename from public/images/flags/ga.png rename to public/images/country/ga.png diff --git a/public/images/flags/gb-eng.png b/public/images/country/gb-eng.png similarity index 100% rename from public/images/flags/gb-eng.png rename to public/images/country/gb-eng.png diff --git a/public/images/flags/gb-nir.png b/public/images/country/gb-nir.png similarity index 100% rename from public/images/flags/gb-nir.png rename to public/images/country/gb-nir.png diff --git a/public/images/flags/gb-sct.png b/public/images/country/gb-sct.png similarity index 100% rename from public/images/flags/gb-sct.png rename to public/images/country/gb-sct.png diff --git a/public/images/flags/gb-wls.png b/public/images/country/gb-wls.png similarity index 100% rename from public/images/flags/gb-wls.png rename to public/images/country/gb-wls.png diff --git a/public/images/flags/gb.png b/public/images/country/gb.png similarity index 100% rename from public/images/flags/gb.png rename to public/images/country/gb.png diff --git a/public/images/flags/gd.png b/public/images/country/gd.png similarity index 100% rename from public/images/flags/gd.png rename to public/images/country/gd.png diff --git a/public/images/flags/ge.png b/public/images/country/ge.png similarity index 100% rename from public/images/flags/ge.png rename to public/images/country/ge.png diff --git a/public/images/flags/gf.png b/public/images/country/gf.png similarity index 100% rename from public/images/flags/gf.png rename to public/images/country/gf.png diff --git a/public/images/flags/gg.png b/public/images/country/gg.png similarity index 100% rename from public/images/flags/gg.png rename to public/images/country/gg.png diff --git a/public/images/flags/gh.png b/public/images/country/gh.png similarity index 100% rename from public/images/flags/gh.png rename to public/images/country/gh.png diff --git a/public/images/flags/gi.png b/public/images/country/gi.png similarity index 100% rename from public/images/flags/gi.png rename to public/images/country/gi.png diff --git a/public/images/flags/gl.png b/public/images/country/gl.png similarity index 100% rename from public/images/flags/gl.png rename to public/images/country/gl.png diff --git a/public/images/flags/gm.png b/public/images/country/gm.png similarity index 100% rename from public/images/flags/gm.png rename to public/images/country/gm.png diff --git a/public/images/flags/gn.png b/public/images/country/gn.png similarity index 100% rename from public/images/flags/gn.png rename to public/images/country/gn.png diff --git a/public/images/flags/gp.png b/public/images/country/gp.png similarity index 100% rename from public/images/flags/gp.png rename to public/images/country/gp.png diff --git a/public/images/flags/gq.png b/public/images/country/gq.png similarity index 100% rename from public/images/flags/gq.png rename to public/images/country/gq.png diff --git a/public/images/flags/gr.png b/public/images/country/gr.png similarity index 100% rename from public/images/flags/gr.png rename to public/images/country/gr.png diff --git a/public/images/flags/gs.png b/public/images/country/gs.png similarity index 100% rename from public/images/flags/gs.png rename to public/images/country/gs.png diff --git a/public/images/flags/gt.png b/public/images/country/gt.png similarity index 100% rename from public/images/flags/gt.png rename to public/images/country/gt.png diff --git a/public/images/flags/gu.png b/public/images/country/gu.png similarity index 100% rename from public/images/flags/gu.png rename to public/images/country/gu.png diff --git a/public/images/flags/gw.png b/public/images/country/gw.png similarity index 100% rename from public/images/flags/gw.png rename to public/images/country/gw.png diff --git a/public/images/flags/gy.png b/public/images/country/gy.png similarity index 100% rename from public/images/flags/gy.png rename to public/images/country/gy.png diff --git a/public/images/flags/hk.png b/public/images/country/hk.png similarity index 100% rename from public/images/flags/hk.png rename to public/images/country/hk.png diff --git a/public/images/flags/hm.png b/public/images/country/hm.png similarity index 100% rename from public/images/flags/hm.png rename to public/images/country/hm.png diff --git a/public/images/flags/hn.png b/public/images/country/hn.png similarity index 100% rename from public/images/flags/hn.png rename to public/images/country/hn.png diff --git a/public/images/flags/hr.png b/public/images/country/hr.png similarity index 100% rename from public/images/flags/hr.png rename to public/images/country/hr.png diff --git a/public/images/flags/ht.png b/public/images/country/ht.png similarity index 100% rename from public/images/flags/ht.png rename to public/images/country/ht.png diff --git a/public/images/flags/hu.png b/public/images/country/hu.png similarity index 100% rename from public/images/flags/hu.png rename to public/images/country/hu.png diff --git a/public/images/flags/id.png b/public/images/country/id.png similarity index 100% rename from public/images/flags/id.png rename to public/images/country/id.png diff --git a/public/images/flags/ie.png b/public/images/country/ie.png similarity index 100% rename from public/images/flags/ie.png rename to public/images/country/ie.png diff --git a/public/images/flags/il.png b/public/images/country/il.png similarity index 100% rename from public/images/flags/il.png rename to public/images/country/il.png diff --git a/public/images/flags/im.png b/public/images/country/im.png similarity index 100% rename from public/images/flags/im.png rename to public/images/country/im.png diff --git a/public/images/flags/in.png b/public/images/country/in.png similarity index 100% rename from public/images/flags/in.png rename to public/images/country/in.png diff --git a/public/images/flags/io.png b/public/images/country/io.png similarity index 100% rename from public/images/flags/io.png rename to public/images/country/io.png diff --git a/public/images/flags/iq.png b/public/images/country/iq.png similarity index 100% rename from public/images/flags/iq.png rename to public/images/country/iq.png diff --git a/public/images/flags/ir.png b/public/images/country/ir.png similarity index 100% rename from public/images/flags/ir.png rename to public/images/country/ir.png diff --git a/public/images/flags/is.png b/public/images/country/is.png similarity index 100% rename from public/images/flags/is.png rename to public/images/country/is.png diff --git a/public/images/flags/it.png b/public/images/country/it.png similarity index 100% rename from public/images/flags/it.png rename to public/images/country/it.png diff --git a/public/images/flags/je.png b/public/images/country/je.png similarity index 100% rename from public/images/flags/je.png rename to public/images/country/je.png diff --git a/public/images/flags/jm.png b/public/images/country/jm.png similarity index 100% rename from public/images/flags/jm.png rename to public/images/country/jm.png diff --git a/public/images/flags/jo.png b/public/images/country/jo.png similarity index 100% rename from public/images/flags/jo.png rename to public/images/country/jo.png diff --git a/public/images/flags/jp.png b/public/images/country/jp.png similarity index 100% rename from public/images/flags/jp.png rename to public/images/country/jp.png diff --git a/public/images/flags/ke.png b/public/images/country/ke.png similarity index 100% rename from public/images/flags/ke.png rename to public/images/country/ke.png diff --git a/public/images/flags/kg.png b/public/images/country/kg.png similarity index 100% rename from public/images/flags/kg.png rename to public/images/country/kg.png diff --git a/public/images/flags/kh.png b/public/images/country/kh.png similarity index 100% rename from public/images/flags/kh.png rename to public/images/country/kh.png diff --git a/public/images/flags/ki.png b/public/images/country/ki.png similarity index 100% rename from public/images/flags/ki.png rename to public/images/country/ki.png diff --git a/public/images/flags/km.png b/public/images/country/km.png similarity index 100% rename from public/images/flags/km.png rename to public/images/country/km.png diff --git a/public/images/flags/kn.png b/public/images/country/kn.png similarity index 100% rename from public/images/flags/kn.png rename to public/images/country/kn.png diff --git a/public/images/flags/kp.png b/public/images/country/kp.png similarity index 100% rename from public/images/flags/kp.png rename to public/images/country/kp.png diff --git a/public/images/flags/kr.png b/public/images/country/kr.png similarity index 100% rename from public/images/flags/kr.png rename to public/images/country/kr.png diff --git a/public/images/flags/kw.png b/public/images/country/kw.png similarity index 100% rename from public/images/flags/kw.png rename to public/images/country/kw.png diff --git a/public/images/flags/ky.png b/public/images/country/ky.png similarity index 100% rename from public/images/flags/ky.png rename to public/images/country/ky.png diff --git a/public/images/flags/kz.png b/public/images/country/kz.png similarity index 100% rename from public/images/flags/kz.png rename to public/images/country/kz.png diff --git a/public/images/flags/la.png b/public/images/country/la.png similarity index 100% rename from public/images/flags/la.png rename to public/images/country/la.png diff --git a/public/images/flags/lb.png b/public/images/country/lb.png similarity index 100% rename from public/images/flags/lb.png rename to public/images/country/lb.png diff --git a/public/images/flags/lc.png b/public/images/country/lc.png similarity index 100% rename from public/images/flags/lc.png rename to public/images/country/lc.png diff --git a/public/images/flags/li.png b/public/images/country/li.png similarity index 100% rename from public/images/flags/li.png rename to public/images/country/li.png diff --git a/public/images/flags/lk.png b/public/images/country/lk.png similarity index 100% rename from public/images/flags/lk.png rename to public/images/country/lk.png diff --git a/public/images/flags/lr.png b/public/images/country/lr.png similarity index 100% rename from public/images/flags/lr.png rename to public/images/country/lr.png diff --git a/public/images/flags/ls.png b/public/images/country/ls.png similarity index 100% rename from public/images/flags/ls.png rename to public/images/country/ls.png diff --git a/public/images/flags/lt.png b/public/images/country/lt.png similarity index 100% rename from public/images/flags/lt.png rename to public/images/country/lt.png diff --git a/public/images/flags/lu.png b/public/images/country/lu.png similarity index 100% rename from public/images/flags/lu.png rename to public/images/country/lu.png diff --git a/public/images/flags/lv.png b/public/images/country/lv.png similarity index 100% rename from public/images/flags/lv.png rename to public/images/country/lv.png diff --git a/public/images/flags/ly.png b/public/images/country/ly.png similarity index 100% rename from public/images/flags/ly.png rename to public/images/country/ly.png diff --git a/public/images/flags/ma.png b/public/images/country/ma.png similarity index 100% rename from public/images/flags/ma.png rename to public/images/country/ma.png diff --git a/public/images/flags/mc.png b/public/images/country/mc.png similarity index 100% rename from public/images/flags/mc.png rename to public/images/country/mc.png diff --git a/public/images/flags/md.png b/public/images/country/md.png similarity index 100% rename from public/images/flags/md.png rename to public/images/country/md.png diff --git a/public/images/flags/me.png b/public/images/country/me.png similarity index 100% rename from public/images/flags/me.png rename to public/images/country/me.png diff --git a/public/images/flags/mf.png b/public/images/country/mf.png similarity index 100% rename from public/images/flags/mf.png rename to public/images/country/mf.png diff --git a/public/images/flags/mg.png b/public/images/country/mg.png similarity index 100% rename from public/images/flags/mg.png rename to public/images/country/mg.png diff --git a/public/images/flags/mh.png b/public/images/country/mh.png similarity index 100% rename from public/images/flags/mh.png rename to public/images/country/mh.png diff --git a/public/images/flags/mk.png b/public/images/country/mk.png similarity index 100% rename from public/images/flags/mk.png rename to public/images/country/mk.png diff --git a/public/images/flags/ml.png b/public/images/country/ml.png similarity index 100% rename from public/images/flags/ml.png rename to public/images/country/ml.png diff --git a/public/images/flags/mm.png b/public/images/country/mm.png similarity index 100% rename from public/images/flags/mm.png rename to public/images/country/mm.png diff --git a/public/images/flags/mn.png b/public/images/country/mn.png similarity index 100% rename from public/images/flags/mn.png rename to public/images/country/mn.png diff --git a/public/images/flags/mo.png b/public/images/country/mo.png similarity index 100% rename from public/images/flags/mo.png rename to public/images/country/mo.png diff --git a/public/images/flags/mp.png b/public/images/country/mp.png similarity index 100% rename from public/images/flags/mp.png rename to public/images/country/mp.png diff --git a/public/images/flags/mq.png b/public/images/country/mq.png similarity index 100% rename from public/images/flags/mq.png rename to public/images/country/mq.png diff --git a/public/images/flags/mr.png b/public/images/country/mr.png similarity index 100% rename from public/images/flags/mr.png rename to public/images/country/mr.png diff --git a/public/images/flags/ms.png b/public/images/country/ms.png similarity index 100% rename from public/images/flags/ms.png rename to public/images/country/ms.png diff --git a/public/images/flags/mt.png b/public/images/country/mt.png similarity index 100% rename from public/images/flags/mt.png rename to public/images/country/mt.png diff --git a/public/images/flags/mu.png b/public/images/country/mu.png similarity index 100% rename from public/images/flags/mu.png rename to public/images/country/mu.png diff --git a/public/images/flags/mv.png b/public/images/country/mv.png similarity index 100% rename from public/images/flags/mv.png rename to public/images/country/mv.png diff --git a/public/images/flags/mw.png b/public/images/country/mw.png similarity index 100% rename from public/images/flags/mw.png rename to public/images/country/mw.png diff --git a/public/images/flags/mx.png b/public/images/country/mx.png similarity index 100% rename from public/images/flags/mx.png rename to public/images/country/mx.png diff --git a/public/images/flags/my.png b/public/images/country/my.png similarity index 100% rename from public/images/flags/my.png rename to public/images/country/my.png diff --git a/public/images/flags/mz.png b/public/images/country/mz.png similarity index 100% rename from public/images/flags/mz.png rename to public/images/country/mz.png diff --git a/public/images/flags/na.png b/public/images/country/na.png similarity index 100% rename from public/images/flags/na.png rename to public/images/country/na.png diff --git a/public/images/flags/nc.png b/public/images/country/nc.png similarity index 100% rename from public/images/flags/nc.png rename to public/images/country/nc.png diff --git a/public/images/flags/ne.png b/public/images/country/ne.png similarity index 100% rename from public/images/flags/ne.png rename to public/images/country/ne.png diff --git a/public/images/flags/nf.png b/public/images/country/nf.png similarity index 100% rename from public/images/flags/nf.png rename to public/images/country/nf.png diff --git a/public/images/flags/ng.png b/public/images/country/ng.png similarity index 100% rename from public/images/flags/ng.png rename to public/images/country/ng.png diff --git a/public/images/flags/ni.png b/public/images/country/ni.png similarity index 100% rename from public/images/flags/ni.png rename to public/images/country/ni.png diff --git a/public/images/flags/nl.png b/public/images/country/nl.png similarity index 100% rename from public/images/flags/nl.png rename to public/images/country/nl.png diff --git a/public/images/flags/no.png b/public/images/country/no.png similarity index 100% rename from public/images/flags/no.png rename to public/images/country/no.png diff --git a/public/images/flags/np.png b/public/images/country/np.png similarity index 100% rename from public/images/flags/np.png rename to public/images/country/np.png diff --git a/public/images/flags/nr.png b/public/images/country/nr.png similarity index 100% rename from public/images/flags/nr.png rename to public/images/country/nr.png diff --git a/public/images/flags/nu.png b/public/images/country/nu.png similarity index 100% rename from public/images/flags/nu.png rename to public/images/country/nu.png diff --git a/public/images/flags/nz.png b/public/images/country/nz.png similarity index 100% rename from public/images/flags/nz.png rename to public/images/country/nz.png diff --git a/public/images/flags/om.png b/public/images/country/om.png similarity index 100% rename from public/images/flags/om.png rename to public/images/country/om.png diff --git a/public/images/flags/pa.png b/public/images/country/pa.png similarity index 100% rename from public/images/flags/pa.png rename to public/images/country/pa.png diff --git a/public/images/flags/pe.png b/public/images/country/pe.png similarity index 100% rename from public/images/flags/pe.png rename to public/images/country/pe.png diff --git a/public/images/flags/pf.png b/public/images/country/pf.png similarity index 100% rename from public/images/flags/pf.png rename to public/images/country/pf.png diff --git a/public/images/flags/pg.png b/public/images/country/pg.png similarity index 100% rename from public/images/flags/pg.png rename to public/images/country/pg.png diff --git a/public/images/flags/ph.png b/public/images/country/ph.png similarity index 100% rename from public/images/flags/ph.png rename to public/images/country/ph.png diff --git a/public/images/flags/pk.png b/public/images/country/pk.png similarity index 100% rename from public/images/flags/pk.png rename to public/images/country/pk.png diff --git a/public/images/flags/pl.png b/public/images/country/pl.png similarity index 100% rename from public/images/flags/pl.png rename to public/images/country/pl.png diff --git a/public/images/flags/pm.png b/public/images/country/pm.png similarity index 100% rename from public/images/flags/pm.png rename to public/images/country/pm.png diff --git a/public/images/flags/pn.png b/public/images/country/pn.png similarity index 100% rename from public/images/flags/pn.png rename to public/images/country/pn.png diff --git a/public/images/flags/pr.png b/public/images/country/pr.png similarity index 100% rename from public/images/flags/pr.png rename to public/images/country/pr.png diff --git a/public/images/flags/ps.png b/public/images/country/ps.png similarity index 100% rename from public/images/flags/ps.png rename to public/images/country/ps.png diff --git a/public/images/flags/pt.png b/public/images/country/pt.png similarity index 100% rename from public/images/flags/pt.png rename to public/images/country/pt.png diff --git a/public/images/flags/pw.png b/public/images/country/pw.png similarity index 100% rename from public/images/flags/pw.png rename to public/images/country/pw.png diff --git a/public/images/flags/py.png b/public/images/country/py.png similarity index 100% rename from public/images/flags/py.png rename to public/images/country/py.png diff --git a/public/images/flags/qa.png b/public/images/country/qa.png similarity index 100% rename from public/images/flags/qa.png rename to public/images/country/qa.png diff --git a/public/images/flags/re.png b/public/images/country/re.png similarity index 100% rename from public/images/flags/re.png rename to public/images/country/re.png diff --git a/public/images/flags/ro.png b/public/images/country/ro.png similarity index 100% rename from public/images/flags/ro.png rename to public/images/country/ro.png diff --git a/public/images/flags/rs.png b/public/images/country/rs.png similarity index 100% rename from public/images/flags/rs.png rename to public/images/country/rs.png diff --git a/public/images/flags/ru.png b/public/images/country/ru.png similarity index 100% rename from public/images/flags/ru.png rename to public/images/country/ru.png diff --git a/public/images/flags/rw.png b/public/images/country/rw.png similarity index 100% rename from public/images/flags/rw.png rename to public/images/country/rw.png diff --git a/public/images/flags/sa.png b/public/images/country/sa.png similarity index 100% rename from public/images/flags/sa.png rename to public/images/country/sa.png diff --git a/public/images/flags/sb.png b/public/images/country/sb.png similarity index 100% rename from public/images/flags/sb.png rename to public/images/country/sb.png diff --git a/public/images/flags/sc.png b/public/images/country/sc.png similarity index 100% rename from public/images/flags/sc.png rename to public/images/country/sc.png diff --git a/public/images/flags/sd.png b/public/images/country/sd.png similarity index 100% rename from public/images/flags/sd.png rename to public/images/country/sd.png diff --git a/public/images/flags/se.png b/public/images/country/se.png similarity index 100% rename from public/images/flags/se.png rename to public/images/country/se.png diff --git a/public/images/flags/sg.png b/public/images/country/sg.png similarity index 100% rename from public/images/flags/sg.png rename to public/images/country/sg.png diff --git a/public/images/flags/sh.png b/public/images/country/sh.png similarity index 100% rename from public/images/flags/sh.png rename to public/images/country/sh.png diff --git a/public/images/flags/si.png b/public/images/country/si.png similarity index 100% rename from public/images/flags/si.png rename to public/images/country/si.png diff --git a/public/images/flags/sj.png b/public/images/country/sj.png similarity index 100% rename from public/images/flags/sj.png rename to public/images/country/sj.png diff --git a/public/images/flags/sk.png b/public/images/country/sk.png similarity index 100% rename from public/images/flags/sk.png rename to public/images/country/sk.png diff --git a/public/images/flags/sl.png b/public/images/country/sl.png similarity index 100% rename from public/images/flags/sl.png rename to public/images/country/sl.png diff --git a/public/images/flags/sm.png b/public/images/country/sm.png similarity index 100% rename from public/images/flags/sm.png rename to public/images/country/sm.png diff --git a/public/images/flags/sn.png b/public/images/country/sn.png similarity index 100% rename from public/images/flags/sn.png rename to public/images/country/sn.png diff --git a/public/images/flags/so.png b/public/images/country/so.png similarity index 100% rename from public/images/flags/so.png rename to public/images/country/so.png diff --git a/public/images/flags/sr.png b/public/images/country/sr.png similarity index 100% rename from public/images/flags/sr.png rename to public/images/country/sr.png diff --git a/public/images/flags/ss.png b/public/images/country/ss.png similarity index 100% rename from public/images/flags/ss.png rename to public/images/country/ss.png diff --git a/public/images/flags/st.png b/public/images/country/st.png similarity index 100% rename from public/images/flags/st.png rename to public/images/country/st.png diff --git a/public/images/flags/sv.png b/public/images/country/sv.png similarity index 100% rename from public/images/flags/sv.png rename to public/images/country/sv.png diff --git a/public/images/flags/sx.png b/public/images/country/sx.png similarity index 100% rename from public/images/flags/sx.png rename to public/images/country/sx.png diff --git a/public/images/flags/sy.png b/public/images/country/sy.png similarity index 100% rename from public/images/flags/sy.png rename to public/images/country/sy.png diff --git a/public/images/flags/sz.png b/public/images/country/sz.png similarity index 100% rename from public/images/flags/sz.png rename to public/images/country/sz.png diff --git a/public/images/flags/tc.png b/public/images/country/tc.png similarity index 100% rename from public/images/flags/tc.png rename to public/images/country/tc.png diff --git a/public/images/flags/td.png b/public/images/country/td.png similarity index 100% rename from public/images/flags/td.png rename to public/images/country/td.png diff --git a/public/images/flags/tf.png b/public/images/country/tf.png similarity index 100% rename from public/images/flags/tf.png rename to public/images/country/tf.png diff --git a/public/images/flags/tg.png b/public/images/country/tg.png similarity index 100% rename from public/images/flags/tg.png rename to public/images/country/tg.png diff --git a/public/images/flags/th.png b/public/images/country/th.png similarity index 100% rename from public/images/flags/th.png rename to public/images/country/th.png diff --git a/public/images/flags/tj.png b/public/images/country/tj.png similarity index 100% rename from public/images/flags/tj.png rename to public/images/country/tj.png diff --git a/public/images/flags/tk.png b/public/images/country/tk.png similarity index 100% rename from public/images/flags/tk.png rename to public/images/country/tk.png diff --git a/public/images/flags/tl.png b/public/images/country/tl.png similarity index 100% rename from public/images/flags/tl.png rename to public/images/country/tl.png diff --git a/public/images/flags/tm.png b/public/images/country/tm.png similarity index 100% rename from public/images/flags/tm.png rename to public/images/country/tm.png diff --git a/public/images/flags/tn.png b/public/images/country/tn.png similarity index 100% rename from public/images/flags/tn.png rename to public/images/country/tn.png diff --git a/public/images/flags/to.png b/public/images/country/to.png similarity index 100% rename from public/images/flags/to.png rename to public/images/country/to.png diff --git a/public/images/flags/tr.png b/public/images/country/tr.png similarity index 100% rename from public/images/flags/tr.png rename to public/images/country/tr.png diff --git a/public/images/flags/tt.png b/public/images/country/tt.png similarity index 100% rename from public/images/flags/tt.png rename to public/images/country/tt.png diff --git a/public/images/flags/tv.png b/public/images/country/tv.png similarity index 100% rename from public/images/flags/tv.png rename to public/images/country/tv.png diff --git a/public/images/flags/tw.png b/public/images/country/tw.png similarity index 100% rename from public/images/flags/tw.png rename to public/images/country/tw.png diff --git a/public/images/flags/tz.png b/public/images/country/tz.png similarity index 100% rename from public/images/flags/tz.png rename to public/images/country/tz.png diff --git a/public/images/flags/ua.png b/public/images/country/ua.png similarity index 100% rename from public/images/flags/ua.png rename to public/images/country/ua.png diff --git a/public/images/flags/ug.png b/public/images/country/ug.png similarity index 100% rename from public/images/flags/ug.png rename to public/images/country/ug.png diff --git a/public/images/flags/um.png b/public/images/country/um.png similarity index 100% rename from public/images/flags/um.png rename to public/images/country/um.png diff --git a/public/images/flags/xx.png b/public/images/country/unknown.png similarity index 100% rename from public/images/flags/xx.png rename to public/images/country/unknown.png diff --git a/public/images/flags/us.png b/public/images/country/us.png similarity index 100% rename from public/images/flags/us.png rename to public/images/country/us.png diff --git a/public/images/flags/uy.png b/public/images/country/uy.png similarity index 100% rename from public/images/flags/uy.png rename to public/images/country/uy.png diff --git a/public/images/flags/uz.png b/public/images/country/uz.png similarity index 100% rename from public/images/flags/uz.png rename to public/images/country/uz.png diff --git a/public/images/flags/va.png b/public/images/country/va.png similarity index 100% rename from public/images/flags/va.png rename to public/images/country/va.png diff --git a/public/images/flags/vc.png b/public/images/country/vc.png similarity index 100% rename from public/images/flags/vc.png rename to public/images/country/vc.png diff --git a/public/images/flags/ve.png b/public/images/country/ve.png similarity index 100% rename from public/images/flags/ve.png rename to public/images/country/ve.png diff --git a/public/images/flags/vg.png b/public/images/country/vg.png similarity index 100% rename from public/images/flags/vg.png rename to public/images/country/vg.png diff --git a/public/images/flags/vi.png b/public/images/country/vi.png similarity index 100% rename from public/images/flags/vi.png rename to public/images/country/vi.png diff --git a/public/images/flags/vn.png b/public/images/country/vn.png similarity index 100% rename from public/images/flags/vn.png rename to public/images/country/vn.png diff --git a/public/images/flags/vu.png b/public/images/country/vu.png similarity index 100% rename from public/images/flags/vu.png rename to public/images/country/vu.png diff --git a/public/images/flags/wf.png b/public/images/country/wf.png similarity index 100% rename from public/images/flags/wf.png rename to public/images/country/wf.png diff --git a/public/images/flags/ws.png b/public/images/country/ws.png similarity index 100% rename from public/images/flags/ws.png rename to public/images/country/ws.png diff --git a/public/images/flags/xk.png b/public/images/country/xk.png similarity index 100% rename from public/images/flags/xk.png rename to public/images/country/xk.png diff --git a/public/images/flags/ye.png b/public/images/country/ye.png similarity index 100% rename from public/images/flags/ye.png rename to public/images/country/ye.png diff --git a/public/images/flags/yt.png b/public/images/country/yt.png similarity index 100% rename from public/images/flags/yt.png rename to public/images/country/yt.png diff --git a/public/images/flags/za.png b/public/images/country/za.png similarity index 100% rename from public/images/flags/za.png rename to public/images/country/za.png diff --git a/public/images/flags/zm.png b/public/images/country/zm.png similarity index 100% rename from public/images/flags/zm.png rename to public/images/country/zm.png diff --git a/public/images/flags/zw.png b/public/images/country/zw.png similarity index 100% rename from public/images/flags/zw.png rename to public/images/country/zw.png diff --git a/public/intl/country/bg-BG.json b/public/intl/country/bg-BG.json new file mode 100644 index 000000000..c99edb5da --- /dev/null +++ b/public/intl/country/bg-BG.json @@ -0,0 +1,251 @@ +{ + "AU": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f", + "AT": "\u0410\u0432\u0441\u0442\u0440\u0438\u044f", + "AZ": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d", + "AL": "\u0410\u043b\u0431\u0430\u043d\u0438\u044f", + "DZ": "\u0410\u043b\u0436\u0438\u0440", + "AS": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430 \u0421\u0430\u043c\u043e\u0430", + "VI": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438 \u0412\u0438\u0440\u0434\u0436\u0438\u043d\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "AO": "\u0410\u043d\u0433\u043e\u043b\u0430", + "AI": "\u0410\u043d\u0433\u0443\u0438\u043b\u0430", + "AD": "\u0410\u043d\u0434\u043e\u0440\u0430", + "AQ": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u043a\u0430", + "AG": "\u0410\u043d\u0442\u0438\u0433\u0443\u0430 \u0438 \u0411\u0430\u0440\u0431\u0443\u0434\u0430", + "AR": "\u0410\u0440\u0436\u0435\u043d\u0442\u0438\u043d\u0430", + "AM": "\u0410\u0440\u043c\u0435\u043d\u0438\u044f", + "AW": "\u0410\u0440\u0443\u0431\u0430", + "AF": "\u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d", + "BD": "\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448", + "BB": "\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441", + "BS": "\u0411\u0430\u0445\u0430\u043c\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "BH": "\u0411\u0430\u0445\u0440\u0435\u0439\u043d", + "BY": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441", + "BE": "\u0411\u0435\u043b\u0433\u0438\u044f", + "BZ": "\u0411\u0435\u043b\u0438\u0437", + "BJ": "\u0411\u0435\u043d\u0438\u043d", + "BM": "\u0411\u0435\u0440\u043c\u0443\u0434\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "BO": "\u0411\u043e\u043b\u0438\u0432\u0438\u044f", + "BA": "\u0411\u043e\u0441\u043d\u0430 \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430", + "BW": "\u0411\u043e\u0442\u0441\u0432\u0430\u043d\u0430", + "BR": "\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f", + "IO": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0432 \u0418\u043d\u0434\u0438\u0439\u0441\u043a\u0438\u044f \u043e\u043a\u0435\u0430\u043d", + "VG": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438 \u0412\u0438\u0440\u0434\u0436\u0438\u043d\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "BN": "\u0411\u0440\u0443\u043d\u0435\u0439 \u0414\u0430\u0440\u0443\u0441\u0441\u0430\u043b\u0430\u043c", + "BF": "\u0411\u0443\u0440\u043a\u0438\u043d\u0430 \u0424\u0430\u0441\u043e", + "BI": "\u0411\u0443\u0440\u0443\u043d\u0434\u0438", + "BT": "\u0411\u0443\u0442\u0430\u043d", + "BG": "\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f", + "VU": "\u0412\u0430\u043d\u0443\u0430\u0442\u0443", + "VA": "\u0412\u0430\u0442\u0438\u043a\u0430\u043d", + "VE": "\u0412\u0435\u043d\u0435\u0446\u0443\u0435\u043b\u0430", + "VN": "\u0412\u0438\u0435\u0442\u043d\u0430\u043c", + "GA": "\u0413\u0430\u0431\u043e\u043d", + "GM": "\u0413\u0430\u043c\u0431\u0438\u044f", + "GH": "\u0413\u0430\u043d\u0430", + "GY": "\u0413\u0430\u044f\u043d\u0430", + "GP": "\u0413\u0432\u0430\u0434\u0435\u043b\u0443\u043f\u0430", + "GT": "\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430", + "GN": "\u0413\u0432\u0438\u043d\u0435\u044f", + "GW": "\u0413\u0432\u0438\u043d\u0435\u044f-\u0411\u0438\u0441\u0430\u0443", + "DE": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f", + "GI": "\u0413\u0438\u0431\u0440\u0430\u043b\u0442\u0430\u0440", + "GD": "\u0413\u0440\u0435\u043d\u0430\u0434\u0430", + "GL": "\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0438\u044f", + "GE": "\u0413\u0440\u0443\u0437\u0438\u044f", + "GU": "\u0413\u0443\u0430\u043c", + "GG": "\u0413\u044a\u0440\u043d\u0437\u0438", + "GR": "\u0413\u044a\u0440\u0446\u0438\u044f", + "DK": "\u0414\u0430\u043d\u0438\u044f", + "DJ": "\u0414\u0436\u0438\u0431\u0443\u0442\u0438", + "JE": "\u0414\u0436\u044a\u0440\u0441\u0438", + "DM": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430", + "DO": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d\u0441\u043a\u0430 \u0440\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "EG": "\u0415\u0433\u0438\u043f\u0435\u0442", + "EC": "\u0415\u043a\u0432\u0430\u0434\u043e\u0440", + "GQ": "\u0415\u043a\u0432\u0430\u0442\u043e\u0440\u0438\u0430\u043b\u043d\u0430 \u0413\u0432\u0438\u043d\u0435\u044f", + "ER": "\u0415\u0440\u0438\u0442\u0440\u0435\u044f", + "SZ": "\u0415\u0441\u0432\u0430\u0442\u0438\u043d\u0438", + "EE": "\u0415\u0441\u0442\u043e\u043d\u0438\u044f", + "ET": "\u0415\u0442\u0438\u043e\u043f\u0438\u044f", + "ZM": "\u0417\u0430\u043c\u0431\u0438\u044f", + "EH": "\u0417\u0430\u043f\u0430\u0434\u043d\u0430 \u0421\u0430\u0445\u0430\u0440\u0430", + "ZW": "\u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435", + "IL": "\u0418\u0437\u0440\u0430\u0435\u043b", + "TL": "\u0418\u0437\u0442\u043e\u0447\u0435\u043d \u0422\u0438\u043c\u043e\u0440", + "IN": "\u0418\u043d\u0434\u0438\u044f", + "ID": "\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f", + "IQ": "\u0418\u0440\u0430\u043a", + "IR": "\u0418\u0440\u0430\u043d", + "IE": "\u0418\u0440\u043b\u0430\u043d\u0434\u0438\u044f", + "IS": "\u0418\u0441\u043b\u0430\u043d\u0434\u0438\u044f", + "ES": "\u0418\u0441\u043f\u0430\u043d\u0438\u044f", + "IT": "\u0418\u0442\u0430\u043b\u0438\u044f", + "YE": "\u0419\u0435\u043c\u0435\u043d", + "JO": "\u0419\u043e\u0440\u0434\u0430\u043d\u0438\u044f", + "CV": "\u041a\u0430\u0431\u043e \u0412\u0435\u0440\u0434\u0435", + "KZ": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d", + "KY": "\u041a\u0430\u0439\u043c\u0430\u043d\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "KH": "\u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430", + "CM": "\u041a\u0430\u043c\u0435\u0440\u0443\u043d", + "CA": "\u041a\u0430\u043d\u0430\u0434\u0430", + "BQ": "\u041a\u0430\u0440\u0438\u0431\u0441\u043a\u0430 \u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0438\u044f", + "QA": "\u041a\u0430\u0442\u0430\u0440", + "KE": "\u041a\u0435\u043d\u0438\u044f", + "CY": "\u041a\u0438\u043f\u044a\u0440", + "KG": "\u041a\u0438\u0440\u0433\u0438\u0437\u0441\u0442\u0430\u043d", + "KI": "\u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438", + "CN": "\u041a\u0438\u0442\u0430\u0439", + "CC": "\u041a\u043e\u043a\u043e\u0441\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438 (\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u041a\u0438\u0439\u043b\u0438\u043d\u0433)", + "CO": "\u041a\u043e\u043b\u0443\u043c\u0431\u0438\u044f", + "KM": "\u041a\u043e\u043c\u043e\u0440\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "CG": "\u041a\u043e\u043d\u0433\u043e (\u0411\u0440\u0430\u0437\u0430\u0432\u0438\u043b)", + "CD": "\u041a\u043e\u043d\u0433\u043e (\u041a\u0438\u043d\u0448\u0430\u0441\u0430)", + "CR": "\u041a\u043e\u0441\u0442\u0430 \u0420\u0438\u043a\u0430", + "CI": "\u041a\u043e\u0442 \u0434\u2019\u0418\u0432\u043e\u0430\u0440", + "CU": "\u041a\u0443\u0431\u0430", + "KW": "\u041a\u0443\u0432\u0435\u0439\u0442", + "CW": "\u041a\u044e\u0440\u0430\u0441\u0430\u043e", + "LA": "\u041b\u0430\u043e\u0441", + "LV": "\u041b\u0430\u0442\u0432\u0438\u044f", + "LS": "\u041b\u0435\u0441\u043e\u0442\u043e", + "LR": "\u041b\u0438\u0431\u0435\u0440\u0438\u044f", + "LY": "\u041b\u0438\u0431\u0438\u044f", + "LB": "\u041b\u0438\u0432\u0430\u043d", + "LT": "\u041b\u0438\u0442\u0432\u0430", + "LI": "\u041b\u0438\u0445\u0442\u0435\u043d\u0449\u0430\u0439\u043d", + "LU": "\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433", + "MR": "\u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0438\u044f", + "MU": "\u041c\u0430\u0432\u0440\u0438\u0446\u0438\u0439", + "MG": "\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440", + "YT": "\u041c\u0430\u0439\u043e\u0442", + "MO": "\u041c\u0430\u043a\u0430\u043e, \u0421\u0410\u0420 \u043d\u0430 \u041a\u0438\u0442\u0430\u0439", + "MW": "\u041c\u0430\u043b\u0430\u0432\u0438", + "MY": "\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f", + "MV": "\u041c\u0430\u043b\u0434\u0438\u0432\u0438", + "ML": "\u041c\u0430\u043b\u0438", + "MT": "\u041c\u0430\u043b\u0442\u0430", + "MA": "\u041c\u0430\u0440\u043e\u043a\u043e", + "MQ": "\u041c\u0430\u0440\u0442\u0438\u043d\u0438\u043a\u0430", + "MH": "\u041c\u0430\u0440\u0448\u0430\u043b\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "MX": "\u041c\u0435\u043a\u0441\u0438\u043a\u043e", + "MM": "\u041c\u0438\u0430\u043d\u043c\u0430\u0440 (\u0411\u0438\u0440\u043c\u0430)", + "FM": "\u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438\u044f", + "MZ": "\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a", + "MD": "\u041c\u043e\u043b\u0434\u043e\u0432\u0430", + "MC": "\u041c\u043e\u043d\u0430\u043a\u043e", + "MN": "\u041c\u043e\u043d\u0433\u043e\u043b\u0438\u044f", + "MS": "\u041c\u043e\u043d\u0442\u0441\u0435\u0440\u0430\u0442", + "NA": "\u041d\u0430\u043c\u0438\u0431\u0438\u044f", + "NR": "\u041d\u0430\u0443\u0440\u0443", + "NP": "\u041d\u0435\u043f\u0430\u043b", + "NE": "\u041d\u0438\u0433\u0435\u0440", + "NG": "\u041d\u0438\u0433\u0435\u0440\u0438\u044f", + "NL": "\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0438\u044f", + "NI": "\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0443\u0430", + "NU": "\u041d\u0438\u0443\u0435", + "NZ": "\u041d\u043e\u0432\u0430 \u0417\u0435\u043b\u0430\u043d\u0434\u0438\u044f", + "NC": "\u041d\u043e\u0432\u0430 \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438\u044f", + "NO": "\u041d\u043e\u0440\u0432\u0435\u0433\u0438\u044f", + "AE": "\u041e\u0431\u0435\u0434\u0438\u043d\u0435\u043d\u0438 \u0430\u0440\u0430\u0431\u0441\u043a\u0438 \u0435\u043c\u0438\u0440\u0441\u0442\u0432\u0430", + "GB": "\u041e\u0431\u0435\u0434\u0438\u043d\u0435\u043d\u043e\u0442\u043e \u043a\u0440\u0430\u043b\u0441\u0442\u0432\u043e", + "AX": "\u041e\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "OM": "\u041e\u043c\u0430\u043d", + "BV": "\u043e\u0441\u0442\u0440\u043e\u0432 \u0411\u0443\u0432\u0435", + "IM": "\u043e\u0441\u0442\u0440\u043e\u0432 \u041c\u0430\u043d", + "NF": "\u043e\u0441\u0442\u0440\u043e\u0432 \u041d\u043e\u0440\u0444\u043e\u043b\u043a", + "CX": "\u043e\u0441\u0442\u0440\u043e\u0432 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u043e", + "CK": "\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u041a\u0443\u043a", + "PN": "\u041e\u0441\u0442\u0440\u043e\u0432\u0438 \u041f\u0438\u0442\u043a\u0435\u0440\u043d", + "TC": "\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u0422\u044a\u0440\u043a\u0441 \u0438 \u041a\u0430\u0439\u043a\u043e\u0441", + "HM": "\u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u0425\u044a\u0440\u0434 \u0438 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u0434", + "UM": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438 \u043d\u0430 \u0421\u0410\u0429", + "PK": "\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d", + "PW": "\u041f\u0430\u043b\u0430\u0443", + "PS": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u0441\u043a\u0438 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0438", + "PA": "\u041f\u0430\u043d\u0430\u043c\u0430", + "PG": "\u041f\u0430\u043f\u0443\u0430-\u041d\u043e\u0432\u0430 \u0413\u0432\u0438\u043d\u0435\u044f", + "PY": "\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439", + "PE": "\u041f\u0435\u0440\u0443", + "PL": "\u041f\u043e\u043b\u0448\u0430", + "PT": "\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f", + "PR": "\u041f\u0443\u0435\u0440\u0442\u043e \u0420\u0438\u043a\u043e", + "RE": "\u0420\u0435\u044e\u043d\u0438\u043e\u043d", + "RW": "\u0420\u0443\u0430\u043d\u0434\u0430", + "RO": "\u0420\u0443\u043c\u044a\u043d\u0438\u044f", + "RU": "\u0420\u0443\u0441\u0438\u044f", + "SV": "\u0421\u0430\u043b\u0432\u0430\u0434\u043e\u0440", + "WS": "\u0421\u0430\u043c\u043e\u0430", + "SM": "\u0421\u0430\u043d \u041c\u0430\u0440\u0438\u043d\u043e", + "ST": "\u0421\u0430\u043e \u0422\u043e\u043c\u0435 \u0438 \u041f\u0440\u0438\u043d\u0441\u0438\u043f\u0438", + "SA": "\u0421\u0430\u0443\u0434\u0438\u0442\u0441\u043a\u0430 \u0410\u0440\u0430\u0431\u0438\u044f", + "SJ": "\u0421\u0432\u0430\u043b\u0431\u0430\u0440\u0434 \u0438 \u042f\u043d \u041c\u0430\u0439\u0435\u043d", + "SH": "\u0421\u0432\u0435\u0442\u0430 \u0415\u043b\u0435\u043d\u0430", + "KP": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041a\u043e\u0440\u0435\u044f", + "MK": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u044f", + "MP": "\u0421\u0435\u0432\u0435\u0440\u043d\u0438 \u041c\u0430\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "VC": "\u0421\u0435\u0439\u043d\u0442 \u0412\u0438\u043d\u0441\u044a\u043d\u0442 \u0438 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d\u0438", + "KN": "\u0421\u0435\u0439\u043d\u0442 \u041a\u0438\u0442\u0441 \u0438 \u041d\u0435\u0432\u0438\u0441", + "LC": "\u0421\u0435\u0439\u043d\u0442 \u041b\u0443\u0441\u0438\u044f", + "SC": "\u0421\u0435\u0439\u0448\u0435\u043b\u0438", + "BL": "\u0421\u0435\u043d \u0411\u0430\u0440\u0442\u0435\u043b\u0435\u043c\u0438", + "MF": "\u0421\u0435\u043d \u041c\u0430\u0440\u0442\u0435\u043d", + "PM": "\u0421\u0435\u043d \u041f\u0438\u0435\u0440 \u0438 \u041c\u0438\u043a\u0435\u043b\u043e\u043d", + "SN": "\u0421\u0435\u043d\u0435\u0433\u0430\u043b", + "SL": "\u0421\u0438\u0435\u0440\u0430 \u041b\u0435\u043e\u043d\u0435", + "SG": "\u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440", + "SX": "\u0421\u0438\u043d\u0442 \u041c\u0430\u0440\u0442\u0435\u043d", + "SY": "\u0421\u0438\u0440\u0438\u044f", + "SK": "\u0421\u043b\u043e\u0432\u0430\u043a\u0438\u044f", + "SI": "\u0421\u043b\u043e\u0432\u0435\u043d\u0438\u044f", + "SB": "\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u043e\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "SO": "\u0421\u043e\u043c\u0430\u043b\u0438\u044f", + "SD": "\u0421\u0443\u0434\u0430\u043d", + "SR": "\u0421\u0443\u0440\u0438\u043d\u0430\u043c", + "US": "\u0421\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438 \u0449\u0430\u0442\u0438", + "RS": "\u0421\u044a\u0440\u0431\u0438\u044f", + "TJ": "\u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d", + "TW": "\u0422\u0430\u0439\u0432\u0430\u043d", + "TH": "\u0422\u0430\u0439\u043b\u0430\u043d\u0434", + "TZ": "\u0422\u0430\u043d\u0437\u0430\u043d\u0438\u044f", + "TG": "\u0422\u043e\u0433\u043e", + "TK": "\u0422\u043e\u043a\u0435\u043b\u0430\u0443", + "TO": "\u0422\u043e\u043d\u0433\u0430", + "TT": "\u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0438 \u0422\u043e\u0431\u0430\u0433\u043e", + "TV": "\u0422\u0443\u0432\u0430\u043b\u0443", + "TN": "\u0422\u0443\u043d\u0438\u0441", + "TM": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u0441\u0442\u0430\u043d", + "TR": "\u0422\u0443\u0440\u0446\u0438\u044f", + "UG": "\u0423\u0433\u0430\u043d\u0434\u0430", + "UZ": "\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d", + "UA": "\u0423\u043a\u0440\u0430\u0439\u043d\u0430", + "HU": "\u0423\u043d\u0433\u0430\u0440\u0438\u044f", + "WF": "\u0423\u043e\u043b\u0438\u0441 \u0438 \u0424\u0443\u0442\u0443\u043d\u0430", + "UY": "\u0423\u0440\u0443\u0433\u0432\u0430\u0439", + "FO": "\u0424\u0430\u0440\u044c\u043e\u0440\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "FJ": "\u0424\u0438\u0434\u0436\u0438", + "PH": "\u0424\u0438\u043b\u0438\u043f\u0438\u043d\u0438", + "FI": "\u0424\u0438\u043d\u043b\u0430\u043d\u0434\u0438\u044f", + "FK": "\u0424\u043e\u043b\u043a\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "FR": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f", + "GF": "\u0424\u0440\u0435\u043d\u0441\u043a\u0430 \u0413\u0432\u0438\u0430\u043d\u0430", + "PF": "\u0424\u0440\u0435\u043d\u0441\u043a\u0430 \u041f\u043e\u043b\u0438\u043d\u0435\u0437\u0438\u044f", + "TF": "\u0424\u0440\u0435\u043d\u0441\u043a\u0438 \u044e\u0436\u043d\u0438 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0438", + "HT": "\u0425\u0430\u0438\u0442\u0438", + "HN": "\u0425\u043e\u043d\u0434\u0443\u0440\u0430\u0441", + "HK": "\u0425\u043e\u043d\u043a\u043e\u043d\u0433, \u0421\u0410\u0420 \u043d\u0430 \u041a\u0438\u0442\u0430\u0439", + "HR": "\u0425\u044a\u0440\u0432\u0430\u0442\u0438\u044f", + "CF": "\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u043d\u043e\u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430 \u0440\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "TD": "\u0427\u0430\u0434", + "ME": "\u0427\u0435\u0440\u043d\u0430 \u0433\u043e\u0440\u0430", + "CZ": "\u0427\u0435\u0445\u0438\u044f", + "CL": "\u0427\u0438\u043b\u0438", + "CH": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u044f", + "SE": "\u0428\u0432\u0435\u0446\u0438\u044f", + "LK": "\u0428\u0440\u0438 \u041b\u0430\u043d\u043a\u0430", + "SS": "\u042e\u0436\u0435\u043d \u0421\u0443\u0434\u0430\u043d", + "ZA": "\u042e\u0436\u043d\u0430 \u0410\u0444\u0440\u0438\u043a\u0430", + "GS": "\u042e\u0436\u043d\u0430 \u0414\u0436\u043e\u0440\u0434\u0436\u0438\u044f \u0438 \u042e\u0436\u043d\u0438 \u0421\u0430\u043d\u0434\u0432\u0438\u0447\u0435\u0432\u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0438", + "KR": "\u042e\u0436\u043d\u0430 \u041a\u043e\u0440\u0435\u044f", + "JM": "\u042f\u043c\u0430\u0439\u043a\u0430", + "JP": "\u042f\u043f\u043e\u043d\u0438\u044f" +} diff --git a/public/intl/country/bs-BA.json b/public/intl/country/bs-BA.json new file mode 100644 index 000000000..068f7658d --- /dev/null +++ b/public/intl/country/bs-BA.json @@ -0,0 +1,251 @@ +{ + "AF": "Afganistan", + "AL": "Albanija", + "DZ": "Al\u017eir", + "VI": "Ameri\u010dka Djevi\u010danska ostrva", + "AS": "Ameri\u010dka Samoa", + "UM": "Ameri\u010dka Vanjska Ostrva", + "AD": "Andora", + "AO": "Angola", + "AI": "Angvila", + "AQ": "Antarktika", + "AG": "Antigva i Barbuda", + "AR": "Argentina", + "AM": "Armenija", + "AW": "Aruba", + "AU": "Australija", + "AT": "Austrija", + "AZ": "Azerbejd\u017ean", + "BS": "Bahami", + "BH": "Bahrein", + "BD": "Banglade\u0161", + "BB": "Barbados", + "BE": "Belgija", + "BZ": "Belize", + "BJ": "Benin", + "BM": "Bermuda", + "BY": "Bjelorusija", + "BW": "Bocvana", + "BO": "Bolivija", + "BA": "Bosna i Hercegovina", + "CX": "Bo\u017ei\u0107no ostrvo", + "BR": "Brazil", + "VG": "Britanska Djevi\u010danska ostrva", + "IO": "Britanska Teritorija u Indijskom Okeanu", + "BN": "Brunej", + "BG": "Bugarska", + "BF": "Burkina Faso", + "BI": "Burundi", + "BT": "Butan", + "CF": "Centralnoafri\u010dka Republika", + "ME": "Crna Gora", + "TD": "\u010cad", + "CZ": "\u010ce\u0161ka", + "CL": "\u010cile", + "DK": "Danska", + "CD": "Demokratska Republika Kongo", + "DM": "Dominika", + "DO": "Dominikanska Republika", + "DJ": "D\u017eibuti", + "EG": "Egipat", + "EC": "Ekvador", + "GQ": "Ekvatorijalna Gvineja", + "ER": "Eritreja", + "EE": "Estonija", + "SZ": "Esvatini", + "ET": "Etiopija", + "FO": "Farska ostrva", + "FJ": "Fid\u017ei", + "PH": "Filipini", + "FI": "Finska", + "FK": "Folklandska ostrva", + "FR": "Francuska", + "GF": "Francuska Gvajana", + "PF": "Francuska Polinezija", + "TF": "Francuske Ju\u017ene Teritorije", + "GA": "Gabon", + "GM": "Gambija", + "GH": "Gana", + "GG": "Gernzi", + "GI": "Gibraltar", + "GR": "Gr\u010dka", + "GD": "Grenada", + "GL": "Grenland", + "GE": "Gruzija", + "GU": "Guam", + "GP": "Gvadalupe", + "GY": "Gvajana", + "GT": "Gvatemala", + "GN": "Gvineja", + "GW": "Gvineja-Bisao", + "HT": "Haiti", + "HM": "Herd i arhipelag MekDonald", + "NL": "Holandija", + "HN": "Honduras", + "HK": "Hong Kong (SAR Kina)", + "HR": "Hrvatska", + "IN": "Indija", + "ID": "Indonezija", + "IQ": "Irak", + "IR": "Iran", + "IE": "Irska", + "IS": "Island", + "TL": "Isto\u010dni Timor", + "IT": "Italija", + "IL": "Izrael", + "JM": "Jamajka", + "JP": "Japan", + "YE": "Jemen", + "JE": "Jersey", + "JO": "Jordan", + "GS": "Ju\u017ena D\u017eord\u017eija i Ju\u017ena Sendvi\u010d ostrva", + "KR": "Ju\u017ena Koreja", + "SS": "Ju\u017eni Sudan", + "ZA": "Ju\u017enoafri\u010dka Republika", + "KY": "Kajmanska ostrva", + "KH": "Kambod\u017ea", + "CM": "Kamerun", + "CA": "Kanada", + "CV": "Kape Verde", + "BQ": "Karipska Holandija", + "QA": "Katar", + "KZ": "Kazahstan", + "KE": "Kenija", + "CN": "Kina", + "CY": "Kipar", + "KG": "Kirgistan", + "KI": "Kiribati", + "CC": "Kokosova (Keelingova) ostrva", + "CO": "Kolumbija", + "KM": "Komori", + "CG": "Kongo", + "CR": "Kostarika", + "CU": "Kuba", + "CK": "Kukova ostrva", + "CW": "Kurasao", + "KW": "Kuvajt", + "LA": "Laos", + "LV": "Latvija", + "LS": "Lesoto", + "LB": "Liban", + "LR": "Liberija", + "LY": "Libija", + "LI": "Lihten\u0161tajn", + "LT": "Litvanija", + "LU": "Luksemburg", + "MG": "Madagaskar", + "HU": "Ma\u0111arska", + "YT": "Majote", + "MO": "Makao (SAR Kina)", + "MW": "Malavi", + "MV": "Maldivi", + "MY": "Malezija", + "ML": "Mali", + "MT": "Malta", + "MA": "Maroko", + "MH": "Mar\u0161alova ostrva", + "MQ": "Martinik", + "MU": "Mauricijus", + "MR": "Mauritanija", + "MX": "Meksiko", + "FM": "Mikronezija", + "MM": "Mjanmar", + "MD": "Moldavija", + "MC": "Monako", + "MN": "Mongolija", + "MS": "Monserat", + "MZ": "Mozambik", + "NA": "Namibija", + "NR": "Nauru", + "NP": "Nepal", + "NE": "Niger", + "NG": "Nigerija", + "NI": "Nikaragva", + "NU": "Niue", + "NO": "Norve\u0161ka", + "NC": "Nova Kaledonija", + "NZ": "Novi Zeland", + "DE": "Njema\u010dka", + "CI": "Obala Slonova\u010de", + "AX": "Olandska ostrva", + "OM": "Oman", + "TC": "Ostrva Turks i Kaikos", + "WF": "Ostrva Valis i Futuna", + "BV": "Ostrvo Buve", + "IM": "Ostrvo Man", + "NF": "Ostrvo Norfolk", + "PK": "Pakistan", + "PW": "Palau", + "PS": "Palestinska Teritorija", + "PA": "Panama", + "PG": "Papua Nova Gvineja", + "PY": "Paragvaj", + "PE": "Peru", + "PN": "Pitkernska Ostrva", + "PL": "Poljska", + "PR": "Porto Riko", + "PT": "Portugal", + "RE": "Reunion", + "RW": "Ruanda", + "RO": "Rumunija", + "RU": "Rusija", + "SV": "Salvador", + "WS": "Samoa", + "SM": "San Marino", + "ST": "Sao Tome i Principe", + "SA": "Saudijska Arabija", + "SC": "Sej\u0161eli", + "SN": "Senegal", + "SL": "Sijera Leone", + "SG": "Singapur", + "SX": "Sint Marten", + "SY": "Sirija", + "US": "Sjedinjene Dr\u017eave", + "KP": "Sjeverna Koreja", + "MK": "Sjeverna Makedonija", + "MP": "Sjeverna Marijanska ostrva", + "SK": "Slova\u010dka", + "SI": "Slovenija", + "SB": "Solomonska Ostrva", + "SO": "Somalija", + "RS": "Srbija", + "SD": "Sudan", + "SR": "Surinam", + "SJ": "Svalbard i Jan Majen", + "SH": "Sveta Helena", + "LC": "Sveta Lucija", + "BL": "Sveti Bartolomej", + "KN": "Sveti Kits i Nevis", + "MF": "Sveti Martin", + "PM": "Sveti Petar i Mikelon", + "VC": "Sveti Vinsent i Grenadin", + "ES": "\u0160panija", + "LK": "\u0160ri Lanka", + "SE": "\u0160vedska", + "CH": "\u0160vicarska", + "TJ": "Tad\u017eikistan", + "TH": "Tajland", + "TW": "Tajvan", + "TZ": "Tanzanija", + "TG": "Togo", + "TK": "Tokelau", + "TO": "Tonga", + "TT": "Trinidad i Tobago", + "TN": "Tunis", + "TM": "Turkmenistan", + "TR": "Turska", + "TV": "Tuvalu", + "UG": "Uganda", + "AE": "Ujedinjeni Arapski Emirati", + "GB": "Ujedinjeno Kraljevstvo", + "UA": "Ukrajina", + "UY": "Urugvaj", + "UZ": "Uzbekistan", + "VU": "Vanuatu", + "VA": "Vatikan", + "VE": "Venecuela", + "VN": "Vijetnam", + "ZM": "Zambija", + "EH": "Zapadna Sahara", + "ZW": "Zimbabve" +} diff --git a/public/intl/language/bg-BG.json b/public/intl/language/bg-BG.json new file mode 100644 index 000000000..09ec73320 --- /dev/null +++ b/public/intl/language/bg-BG.json @@ -0,0 +1,611 @@ +{ + "ab": "\u0430\u0431\u0445\u0430\u0437\u043a\u0438", + "awa": "\u0430\u0432\u0430\u0434\u0438", + "av": "\u0430\u0432\u0430\u0440\u0441\u043a\u0438", + "ae": "\u0430\u0432\u0435\u0441\u0442\u0441\u043a\u0438", + "en_AU": "\u0430\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0439\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "de_AT": "\u0430\u0432\u0441\u0442\u0440\u0438\u0439\u0441\u043a\u0438 \u043d\u0435\u043c\u0441\u043a\u0438", + "agq": "\u0430\u0433\u0435\u043c", + "ada": "\u0430\u0434\u0430\u043d\u0433\u043c\u0435", + "ady": "\u0430\u0434\u0438\u0433\u0435", + "az": "\u0430\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u043a\u0438", + "ay": "\u0430\u0439\u043c\u0430\u0440\u0430", + "ain": "\u0430\u0439\u043d\u0443", + "akk": "\u0430\u043a\u0430\u0434\u0441\u043a\u0438", + "ak": "\u0430\u043a\u0430\u043d", + "ach": "\u0430\u043a\u043e\u043b\u0438", + "sq": "\u0430\u043b\u0431\u0430\u043d\u0441\u043a\u0438", + "ale": "\u0430\u043b\u0435\u0443\u0442\u0441\u043a\u0438", + "en_US": "\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "am": "\u0430\u043c\u0445\u0430\u0440\u0441\u043a\u0438", + "anp": "\u0430\u043d\u0433\u0438\u043a\u0430", + "en": "\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "ar": "\u0430\u0440\u0430\u0431\u0441\u043a\u0438", + "arw": "\u0430\u0440\u0430\u0432\u0430\u043a", + "an": "\u0430\u0440\u0430\u0433\u043e\u043d\u0441\u043a\u0438", + "arc": "\u0430\u0440\u0430\u043c\u0435\u0439\u0441\u043a\u0438", + "arp": "\u0430\u0440\u0430\u043f\u0430\u0445\u043e", + "hy": "\u0430\u0440\u043c\u0435\u043d\u0441\u043a\u0438", + "rup": "\u0430\u0440\u0443\u043c\u044a\u043d\u0441\u043a\u0438", + "as": "\u0430\u0441\u0430\u043c\u0441\u043a\u0438", + "ast": "\u0430\u0441\u0442\u0443\u0440\u0441\u043a\u0438", + "asa": "\u0430\u0441\u0443", + "cch": "\u0430\u0442\u0441\u0430\u043c", + "aa": "\u0430\u0444\u0430\u0440", + "af": "\u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441", + "afh": "\u0430\u0444\u0440\u0438\u0445\u0438\u043b\u0438", + "ace": "\u0430\u0447\u0438\u043d\u0441\u043a\u0438", + "ban": "\u0431\u0430\u043b\u0438\u043d\u0435\u0439\u0441\u043a\u0438", + "bal": "\u0431\u0430\u043b\u0443\u0447\u0438", + "bm": "\u0431\u0430\u043c\u0431\u0430\u0440\u0430", + "bas": "\u0431\u0430\u0441\u0430", + "eu": "\u0431\u0430\u0441\u043a\u0438", + "ksf": "\u0431\u0430\u0444\u0438\u044f", + "ba": "\u0431\u0430\u0448\u043a\u0438\u0440\u0441\u043a\u0438", + "zxx": "\u0431\u0435\u0437 \u043b\u0438\u043d\u0433\u0432\u0438\u0441\u0442\u0438\u0447\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435", + "be": "\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0438", + "bem": "\u0431\u0435\u043c\u0431\u0430", + "bez": "\u0431\u0435\u043d\u0430", + "bn": "\u0431\u0435\u043d\u0433\u0430\u043b\u0441\u043a\u0438", + "bej": "\u0431\u0435\u044f", + "bik": "\u0431\u0438\u043a\u043e\u043b\u0441\u043a\u0438", + "byn": "\u0431\u0438\u043b\u0435\u043d\u0441\u043a\u0438", + "bin": "\u0431\u0438\u043d\u0438", + "my": "\u0431\u0438\u0440\u043c\u0430\u043d\u0441\u043a\u0438", + "bi": "\u0431\u0438\u0441\u043b\u0430\u043c\u0430", + "zbl": "\u0431\u043b\u0438\u0441 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", + "brx": "\u0431\u043e\u0434\u043e", + "bho": "\u0431\u043e\u0436\u043f\u0443\u0440\u0438", + "bs": "\u0431\u043e\u0441\u043d\u0435\u043d\u0441\u043a\u0438", + "bra": "\u0431\u0440\u0430\u0434\u0436", + "br": "\u0431\u0440\u0435\u0442\u043e\u043d\u0441\u043a\u0438", + "en_GB": "\u0431\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "bug": "\u0431\u0443\u0433\u0438\u043d\u0441\u043a\u0438", + "bua": "\u0431\u0443\u0440\u044f\u0442\u0441\u043a\u0438", + "bg": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438", + "vai": "\u0432\u0430\u0438", + "wal": "\u0432\u0430\u043b\u0430\u043c\u043e", + "wa": "\u0432\u0430\u043b\u043e\u043d\u0441\u043a\u0438", + "war": "\u0432\u0430\u0440\u0430\u0439", + "ve": "\u0432\u0435\u043d\u0434\u0430", + "vi": "\u0432\u0438\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438", + "vo": "\u0432\u043e\u043b\u0430\u043f\u044e\u043a", + "wo": "\u0432\u043e\u043b\u043e\u0444", + "vot": "\u0432\u043e\u0442\u0438\u043a", + "vun": "\u0432\u0443\u043d\u0434\u0436\u043e", + "gaa": "\u0433\u0430", + "gag": "\u0433\u0430\u0433\u0430\u0443\u0437\u043a\u0438", + "gay": "\u0433\u0430\u0439\u043e", + "gl": "\u0433\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438", + "lg": "\u0433\u0430\u043d\u0434\u0430", + "gba": "\u0433\u0431\u0430\u044f", + "gwi": "\u0433\u0432\u0438\u0447\u0438\u043d", + "gez": "\u0433\u0438\u0438\u0437", + "gil": "\u0433\u0438\u043b\u0431\u0435\u0440\u0442\u0441\u043a\u0438", + "gon": "\u0433\u043e\u043d\u0434\u0438", + "hsb": "\u0433\u043e\u0440\u043d\u043e\u043b\u0443\u0436\u0438\u0448\u043a\u0438", + "gor": "\u0433\u043e\u0440\u043e\u043d\u0442\u0430\u043b\u043e", + "got": "\u0433\u043e\u0442\u0438\u0447\u0435\u0441\u043a\u0438", + "grb": "\u0433\u0440\u0435\u0431\u043e", + "kl": "\u0433\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "ka": "\u0433\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0438", + "el": "\u0433\u0440\u044a\u0446\u043a\u0438", + "gn": "\u0433\u0443\u0430\u0440\u0430\u043d\u0438", + "gu": "\u0433\u0443\u0434\u0436\u0430\u0440\u0430\u0442\u0438", + "guz": "\u0433\u0443\u0441\u0438\u0438", + "dak": "\u0434\u0430\u043a\u043e\u0442\u0441\u043a\u0438", + "dar": "\u0434\u0430\u0440\u0433\u0432\u0430", + "da": "\u0434\u0430\u0442\u0441\u043a\u0438", + "del": "\u0434\u0435\u043b\u0430\u0443\u0435\u0440", + "dje": "\u0434\u0436\u0435\u0440\u043c\u0430", + "dz": "\u0434\u0437\u043e\u043d\u0445\u0430", + "dv": "\u0434\u0438\u0432\u0435\u0445\u0438", + "din": "\u0434\u0438\u043d\u043a\u0430", + "dyo": "\u0434\u0438\u043e\u043b\u0430", + "dyu": "\u0434\u0438\u0443\u043b\u0430", + "doi": "\u0434\u043e\u0433\u0440\u0438", + "dgr": "\u0434\u043e\u0433\u0440\u0438\u0431", + "dsb": "\u0434\u043e\u043b\u043d\u043e\u043b\u0443\u0436\u0438\u0448\u043a\u0438", + "nds": "\u0434\u043e\u043b\u043d\u043e\u0441\u0430\u043a\u0441\u043e\u043d\u0441\u043a\u0438", + "grc": "\u0434\u0440\u0435\u0432\u043d\u043e\u0433\u0440\u044a\u0446\u043a\u0438", + "dua": "\u0434\u0443\u0430\u043b\u0430", + "ee": "\u0435\u0432\u0435", + "ewo": "\u0435\u0432\u043e\u043d\u0434\u043e", + "jrb": "\u0435\u0432\u0440\u0435\u0439\u0441\u043a\u043e-\u0430\u0440\u0430\u0431\u0441\u043a\u0438", + "jpr": "\u0435\u0432\u0440\u0435\u0439\u0441\u043a\u043e-\u043f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438", + "egy": "\u0435\u0433\u0438\u043f\u0435\u0442\u0441\u043a\u0438", + "eka": "\u0435\u043a\u0430\u0436\u0443\u043a", + "elx": "\u0435\u043b\u0430\u043c\u0438\u0442\u0441\u043a\u0438", + "ebu": "\u0435\u043c\u0431\u0443", + "myv": "\u0435\u0440\u0437\u0438\u0430", + "eo": "\u0435\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u043e", + "et": "\u0435\u0441\u0442\u043e\u043d\u0441\u043a\u0438", + "efi": "\u0435\u0444\u0438\u043a", + "chn": "\u0436\u0430\u0440\u0433\u043e\u043d \u0447\u0438\u043d\u0443\u0443\u043a", + "kaj": "\u0436\u0436\u0438", + "zza": "\u0437\u0430\u0437\u0430", + "zap": "\u0437\u0430\u043f\u043e\u0442\u0435\u043a", + "zen": "\u0437\u0435\u043d\u0430\u0433\u0430", + "za": "\u0437\u0443\u0430\u043d\u0433", + "zu": "\u0437\u0443\u043b\u0443\u0441\u043a\u0438", + "zun": "\u0437\u0443\u043d\u0438", + "iba": "\u0438\u0431\u0430\u043d", + "he": "\u0438\u0432\u0440\u0438\u0442", + "ig": "\u0438\u0433\u0431\u043e", + "yi": "\u0438\u0434\u0438\u0448", + "io": "\u0438\u0434\u043e", + "frs": "\u0438\u0437\u0442\u043e\u0447\u0435\u043d \u0444\u0440\u0438\u0437\u0441\u043a\u0438", + "ilo": "\u0438\u043b\u043e\u043a\u043e", + "smn": "\u0438\u043d\u0430\u0440\u0438-\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "inh": "\u0438\u043d\u0433\u0443\u0448\u0435\u0442\u0441\u043a\u0438", + "id": "\u0438\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0439\u0441\u043a\u0438", + "ia": "\u0438\u043d\u0442\u0435\u0440\u043b\u0438\u043d\u0433\u0432\u0430", + "iu": "\u0438\u043d\u0443\u043a\u0442\u0438\u0442\u0443\u0442", + "ik": "\u0438\u043d\u0443\u043f\u0438\u0430\u043a", + "ga": "\u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "is": "\u0438\u0441\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "es": "\u0438\u0441\u043f\u0430\u043d\u0441\u043a\u0438", + "it": "\u0438\u0442\u0430\u043b\u0438\u0430\u043d\u0441\u043a\u0438", + "yo": "\u0439\u043e\u0440\u0443\u0431\u0430", + "kbd": "\u043a\u0430\u0431\u0430\u0440\u0434\u0438\u0430\u043d", + "kab": "\u043a\u0430\u0431\u0438\u043b\u0441\u043a\u0438", + "kea": "\u043a\u0430\u0431\u043e\u0432\u0435\u0440\u0434\u0438\u0430\u043d\u0441\u043a\u0438", + "kaw": "\u043a\u0430\u0432\u0438", + "cad": "\u043a\u0430\u0434\u0434\u043e", + "kk": "\u043a\u0430\u0437\u0430\u0445\u0441\u043a\u0438", + "kln": "\u043a\u0430\u043b\u0435\u043d\u0434\u0436\u0438\u043d", + "xal": "\u043a\u0430\u043b\u043c\u0438\u043a", + "kam": "\u043a\u0430\u043c\u0431\u0430", + "en_CA": "\u043a\u0430\u043d\u0430\u0434\u0441\u043a\u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "fr_CA": "\u043a\u0430\u043d\u0430\u0434\u0441\u043a\u0438 \u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "kn": "\u043a\u0430\u043d\u043d\u0430\u0434\u0430", + "yue": "\u043a\u0430\u043d\u0442\u043e\u043d\u0441\u043a\u0438", + "kr": "\u043a\u0430\u043d\u0443\u0440\u0438", + "kaa": "\u043a\u0430\u0440\u0430\u043a\u0430\u043b\u043f\u0430\u0448\u043a\u0438", + "krc": "\u043a\u0430\u0440\u0430\u0447\u0430\u0439-\u0431\u0430\u043b\u043a\u0430\u0440\u0441\u043a\u0438", + "krl": "\u043a\u0430\u0440\u0435\u043b\u0441\u043a\u0438", + "car": "\u043a\u0430\u0440\u0438\u0431\u0441\u043a\u0438", + "ca": "\u043a\u0430\u0442\u0430\u043b\u043e\u043d\u0441\u043a\u0438", + "kac": "\u043a\u0430\u0447\u0438\u043d\u0441\u043a\u0438", + "ks": "\u043a\u0430\u0448\u043c\u0438\u0440\u0441\u043a\u0438", + "csb": "\u043a\u0430\u0448\u0443\u0431\u0441\u043a\u0438", + "kj": "\u043a\u0432\u0430\u043d\u044f\u043c\u0430", + "nmg": "\u043a\u0432\u0430\u0441\u0438\u043e", + "qu": "\u043a\u0435\u0447\u0443\u0430", + "ki": "\u043a\u0438\u043a\u0443\u044e", + "kmb": "\u043a\u0438\u043c\u0431\u0443\u043d\u0434\u0443", + "rw": "\u043a\u0438\u043d\u044f\u0440\u0443\u0430\u043d\u0434\u0430", + "ky": "\u043a\u0438\u0440\u0433\u0438\u0437\u043a\u0438", + "zh": "\u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438", + "quc": "\u043a\u0438\u0447\u0435", + "nwc": "\u043a\u043b\u0430\u0441\u0438\u0447\u0435\u0441\u043a\u0438 \u043d\u0435\u0432\u0430\u0440\u0438", + "syc": "\u043a\u043b\u0430\u0441\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0438\u0440\u0438\u0439\u0441\u043a\u0438", + "tlh": "\u043a\u043b\u0438\u043d\u0433\u043e\u043d", + "khq": "\u043a\u043e\u0439\u0440\u0430 \u0447\u0438\u0438\u043d\u0438", + "ses": "\u043a\u043e\u0439\u0440\u0430\u0431\u043e\u0440\u043e \u0441\u0435\u043d\u0438", + "kv": "\u041a\u043e\u043c\u0438", + "koi": "\u043a\u043e\u043c\u0438-\u043f\u0435\u0440\u043c\u044f\u0446\u043a\u0438", + "swb": "\u043a\u043e\u043c\u043e\u0440\u0441\u043a\u0438", + "kg": "\u043a\u043e\u043d\u0433\u043e\u0430\u043d\u0441\u043a\u0438", + "swc": "\u043a\u043e\u043d\u0433\u043e\u0430\u043d\u0441\u043a\u0438 \u0441\u0443\u0430\u0445\u0438\u043b\u0438", + "kok": "\u043a\u043e\u043d\u043a\u0430\u043d\u0438", + "cop": "\u043a\u043e\u043f\u0442\u0441\u043a\u0438", + "ko": "\u043a\u043e\u0440\u0435\u0439\u0441\u043a\u0438", + "kw": "\u043a\u043e\u0440\u043d\u0443\u043e\u043b\u0441\u043a\u0438", + "kfo": "\u043a\u043e\u0440\u043e", + "co": "\u043a\u043e\u0440\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438", + "kos": "\u043a\u043e\u0441\u0440\u0430\u0435\u043d", + "kho": "\u043a\u043e\u0442\u0441\u043a\u0438", + "kpe": "\u043a\u043f\u0435\u043b\u0435", + "cr": "\u043a\u0440\u0438\u0438", + "mus": "\u043a\u0440\u0438\u043a", + "crh": "\u043a\u0440\u0438\u043c\u0441\u043a\u043e\u0442\u0430\u0442\u0430\u0440\u0441\u043a\u0438", + "xh": "\u043a\u0441\u043e\u0441\u0430", + "kum": "\u043a\u0443\u043c\u0438\u043a\u0441\u043a\u0438", + "kru": "\u043a\u0443\u0440\u0443\u043a", + "kut": "\u043a\u0443\u0442\u0435\u043d\u0430\u0439", + "kha": "\u043a\u0445\u0430\u0441\u0438", + "km": "\u043a\u0445\u043c\u0435\u0440\u0441\u043a\u0438", + "ku": "\u043a\u044e\u0440\u0434\u0441\u043a\u0438", + "ckb": "\u043a\u044e\u0440\u0434\u0441\u043a\u0438 (\u0441\u043e\u0440\u0430\u043d\u0438)", + "lad": "\u043b\u0430\u0434\u0438\u043d\u043e", + "lkt": "\u043b\u0430\u043a\u043e\u0442\u0430", + "lam": "\u043b\u0430\u043c\u0431\u0430", + "lag": "\u043b\u0430\u043d\u0433\u0438", + "lo": "\u043b\u0430\u043e\u0441\u043a\u0438", + "lv": "\u043b\u0430\u0442\u0432\u0438\u0439\u0441\u043a\u0438", + "la": "\u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438", + "lah": "\u043b\u0430\u0445\u043d\u0434\u0430", + "lez": "\u043b\u0435\u0437\u0433\u0438\u043d\u0441\u043a\u0438", + "li": "\u043b\u0438\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438", + "ln": "\u043b\u0438\u043d\u0433\u0430\u043b\u0430", + "lt": "\u043b\u0438\u0442\u043e\u0432\u0441\u043a\u0438", + "jbo": "\u043b\u043e\u0434\u0436\u0431\u0430\u043d", + "loz": "\u043b\u043e\u0437\u0438", + "lu": "\u043b\u0443\u0431\u0430 \u043a\u0430\u0442\u0430\u043d\u0433\u0430", + "lua": "\u043b\u0443\u0431\u0430-\u043b\u0443\u043b\u0443\u0430", + "lui": "\u043b\u0443\u0438\u0441\u0435\u043d\u044c\u043e", + "smj": "\u043b\u0443\u043b\u0435-\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "lun": "\u043b\u0443\u043d\u0434\u0430", + "luo": "\u043b\u0443\u043e", + "lus": "\u043b\u0443\u0448\u0430\u0438", + "luy": "\u043b\u0443\u044f", + "lb": "\u043b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438", + "mag": "\u043c\u0430\u0433\u0430\u0445\u0438", + "mad": "\u043c\u0430\u0434\u0443\u0440\u0441\u043a\u0438", + "mai": "\u043c\u0430\u0439\u0442\u0445\u0438\u043b\u0438", + "mak": "\u043c\u0430\u043a\u0430\u0441\u0430\u0440", + "mk": "\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438", + "kde": "\u043c\u0430\u043a\u043e\u043d\u0434\u0435", + "mgh": "\u043c\u0430\u043a\u0443\u0430 \u043c\u0435\u0442\u043e", + "ms": "\u043c\u0430\u043b\u0430\u0439\u0441\u043a\u0438", + "ml": "\u043c\u0430\u043b\u0430\u044f\u043b\u0430\u043c", + "mg": "\u043c\u0430\u043b\u0433\u0430\u0448\u043a\u0438", + "mt": "\u043c\u0430\u043b\u0442\u0438\u0439\u0441\u043a\u0438", + "mdr": "\u043c\u0430\u043d\u0434\u0430\u0440", + "man": "\u043c\u0430\u043d\u0434\u0438\u043d\u0433\u043e", + "mni": "\u043c\u0430\u043d\u0438\u043f\u0443\u0440\u0438", + "gv": "\u043c\u0430\u043d\u043a\u0441\u043a\u0438", + "mnc": "\u043c\u0430\u043d\u0447\u0436\u0443\u0440\u0441\u043a\u0438", + "mi": "\u043c\u0430\u043e\u0440\u0441\u043a\u0438", + "arn": "\u043c\u0430\u043f\u0443\u0447\u0435", + "mr": "\u043c\u0430\u0440\u0430\u0442\u0438", + "mwr": "\u043c\u0430\u0440\u0432\u0430\u0440\u0438", + "chm": "\u043c\u0430\u0440\u0438\u0439\u0441\u043a\u0438", + "mh": "\u043c\u0430\u0440\u0448\u0430\u043b\u0435\u0437\u0435", + "mas": "\u043c\u0430\u0441\u0430\u0439\u0441\u043a\u0438", + "jmc": "\u043c\u0430\u0447\u0430\u043c\u0435", + "es_MX": "\u043c\u0435\u043a\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438 \u0438\u0441\u043f\u0430\u043d\u0441\u043a\u0438", + "men": "\u043c\u0435\u043d\u0434\u0435", + "mer": "\u043c\u0435\u0440\u0443", + "mgo": "\u043c\u0435\u0442\u0430", + "mic": "\u043c\u0438\u043a\u043c\u0430\u043a", + "min": "\u043c\u0438\u043d\u0430\u043d\u0433\u0431\u0430\u0443", + "mwl": "\u043c\u0438\u0440\u0430\u043d\u0434\u0438\u0439\u0441\u043a\u0438", + "mul": "\u043c\u043d\u043e\u0433\u043e\u0435\u0437\u0438\u0447\u043d\u0438", + "mdf": "\u043c\u043e\u043a\u0448\u0430", + "ro_MD": "\u043c\u043e\u043b\u0434\u043e\u0432\u0441\u043a\u0438", + "lol": "\u043c\u043e\u043d\u0433\u043e", + "mn": "\u043c\u043e\u043d\u0433\u043e\u043b\u0441\u043a\u0438", + "mfe": "\u043c\u043e\u0440\u0438\u0441\u0438\u0435\u043d", + "mos": "\u043c\u043e\u0441\u0438", + "moh": "\u043c\u043e\u0445\u043e\u0443\u043a", + "mua": "\u043c\u0443\u043d\u0434\u0430\u043d\u0433", + "nv": "\u043d\u0430\u0432\u0430\u0445\u043e", + "naq": "\u043d\u0430\u043c\u0430", + "na": "\u043d\u0430\u0443\u0440\u0443", + "jgo": "\u043d\u0433\u043e\u043c\u0431\u0430", + "ng": "\u043d\u0434\u043e\u043d\u0433\u0430", + "nap": "\u043d\u0435\u0430\u043f\u043e\u043b\u0438\u0442\u0430\u043d\u0441\u043a\u0438", + "new": "\u043d\u0435\u0432\u0430\u0440\u0441\u043a\u0438", + "de": "\u043d\u0435\u043c\u0441\u043a\u0438", + "und": "\u043d\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d", + "ne": "\u043d\u0435\u043f\u0430\u043b\u0441\u043a\u0438", + "nzi": "\u043d\u0437\u0438\u043c\u0430", + "nym": "\u043d\u0438\u0430\u043c\u0432\u0435\u0437\u0438", + "nyn": "\u043d\u0438\u0430\u043d\u043a\u043e\u043b\u0435", + "tog": "\u043d\u0438\u0430\u043d\u0441\u0430 \u0442\u043e\u043d\u0433\u0430", + "nia": "\u043d\u0438\u0430\u0441", + "nl": "\u043d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "niu": "\u043d\u0438\u0443\u0435\u0430\u043d", + "nqo": "\u043d\u043a\u043e", + "nog": "\u043d\u043e\u0433\u0430\u0438", + "no": "\u043d\u043e\u0440\u0432\u0435\u0436\u043a\u0438", + "nb": "\u043d\u043e\u0440\u0432\u0435\u0436\u043a\u0438 \u0431\u0443\u043a\u043c\u043e\u043b", + "nn": "\u043d\u043e\u0440\u0432\u0435\u0436\u043a\u0438 \u043d\u044e\u043d\u043e\u0448\u043a", + "nus": "\u043d\u0443\u0435\u0440", + "nyo": "\u043d\u0443\u043e\u0440\u043e", + "oj": "\u043e\u0434\u0436\u0438\u0431\u0432\u0430", + "ie": "\u043e\u043a\u0441\u0438\u0434\u0435\u043d\u0442\u0430\u043b", + "oc": "\u043e\u043a\u0441\u0438\u0442\u0430\u043d\u0441\u043a\u0438", + "zh_Hans": "\u043e\u043f\u0440\u043e\u0441\u0442\u0435\u043d \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438", + "or": "\u043e\u0440\u0438\u044f", + "om": "\u043e\u0440\u043e\u043c\u043e", + "osa": "\u043e\u0441\u0435\u0434\u0436\u0438", + "os": "\u043e\u0441\u0435\u0442\u0441\u043a\u0438", + "ota": "\u043e\u0442\u043e\u043c\u0430\u043d\u0441\u043a\u0438 \u0442\u0443\u0440\u0441\u043a\u0438", + "pau": "\u043f\u0430\u043b\u0430\u0443\u0430\u043d", + "pi": "\u043f\u0430\u043b\u0438", + "pam": "\u043f\u0430\u043c\u043f\u0430\u043d\u0433\u0430", + "pag": "\u043f\u0430\u043d\u0433\u0430\u0441\u0438\u043d\u0430\u043d", + "pap": "\u043f\u0430\u043f\u0438\u0430\u043c\u0435\u043d\u0442\u0443", + "pa": "\u043f\u0435\u043d\u0434\u0436\u0430\u0431\u0441\u043a\u0438", + "fa": "\u043f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438", + "pal": "\u043f\u0435\u0445\u043b\u0435\u0432\u0438\u0439\u0441\u043a\u0438", + "pl": "\u043f\u043e\u043b\u0441\u043a\u0438", + "pt": "\u043f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0441\u043a\u0438", + "pon": "\u043f\u043e\u0445\u043d\u043f\u0435\u0438\u0430\u043d", + "pro": "\u043f\u0440\u043e\u0432\u0430\u043d\u0441\u0430\u043b\u0441\u043a\u0438", + "ps": "\u043f\u0443\u0449\u0443", + "raj": "\u0440\u0430\u0434\u0436\u0430\u0441\u0442\u0430\u043d\u0441\u043a\u0438", + "rap": "\u0440\u0430\u043f\u0430 \u043d\u0443\u0438", + "rar": "\u0440\u0430\u043f\u043e\u0442\u043e\u043d\u0433\u0430\u043d", + "rwk": "\u0440\u0432\u0430", + "rm": "\u0440\u0435\u0442\u043e\u0440\u043e\u043c\u0430\u043d\u0441\u043a\u0438", + "rof": "\u0440\u043e\u043c\u0431\u043e", + "root": "\u0440\u043e\u043e\u0442", + "ro": "\u0440\u0443\u043c\u044a\u043d\u0441\u043a\u0438", + "rn": "\u0440\u0443\u043d\u0434\u0438", + "ru": "\u0440\u0443\u0441\u043a\u0438", + "sam": "\u0441\u0430\u043c\u0430\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438 \u0430\u0440\u0430\u043c\u0435\u0439\u0441\u043a\u0438", + "saq": "\u0441\u0430\u043c\u0431\u0443\u0440\u0443", + "sm": "\u0441\u0430\u043c\u043e\u0430\u043d\u0441\u043a\u0438", + "sg": "\u0441\u0430\u043d\u0433\u043e", + "sbp": "\u0441\u0430\u043d\u0433\u0443", + "sad": "\u0441\u0430\u043d\u0434\u0432\u0435", + "sa": "\u0441\u0430\u043d\u043a\u0441\u043a\u0440\u0438\u0442\u0441\u043a\u0438", + "sat": "\u0441\u0430\u043d\u0442\u0430\u043b\u0438", + "sc": "\u0441\u0430\u0440\u0434\u0438\u043d\u0441\u043a\u0438", + "sas": "\u0441\u0430\u0441\u0430\u043a", + "ceb": "\u0441\u0435\u0431\u0443\u0430\u043d\u043e", + "nd": "\u0441\u0435\u0432\u0435\u0440\u0435\u043d \u043d\u0434\u0435\u0431\u0435\u043b\u0435", + "nso": "\u0441\u0435\u0432\u0435\u0440\u0435\u043d \u0441\u043e\u0442\u043e", + "frr": "\u0441\u0435\u0432\u0435\u0440\u0435\u043d \u0444\u0440\u0438\u0437\u0441\u043a\u0438", + "se": "\u0441\u0435\u0432\u0435\u0440\u043d\u043e\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "sel": "\u0441\u0435\u043b\u043a\u0443\u043f", + "seh": "\u0441\u0435\u043d\u0430", + "srr": "\u0441\u0435\u0440\u0435\u0440", + "st": "\u0441\u0435\u0441\u0443\u0442\u043e", + "sid": "\u0441\u0438\u0434\u0430\u043c\u043e", + "bla": "\u0441\u0438\u043a\u0441\u0438\u043a\u0430", + "sd": "\u0441\u0438\u043d\u0434\u0445\u0438", + "si": "\u0441\u0438\u043d\u0445\u0430\u043b\u0441\u043a\u0438", + "syr": "\u0441\u0438\u0440\u0438\u0439\u0441\u043a\u0438", + "scn": "\u0441\u0438\u0446\u0438\u043b\u0438\u0430\u043d\u0441\u043a\u0438", + "sms": "\u0441\u043a\u043e\u043b\u0442-\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "den": "\u0441\u043b\u0435\u0439\u0432\u0438", + "sk": "\u0441\u043b\u043e\u0432\u0430\u0448\u043a\u0438", + "sl": "\u0441\u043b\u043e\u0432\u0435\u043d\u0441\u043a\u0438", + "xog": "\u0441\u043e\u0433\u0430", + "sog": "\u0441\u043e\u0433\u0434\u0438\u0439\u0441\u043a\u0438", + "so": "\u0441\u043e\u043c\u0430\u043b\u0438\u0439\u0441\u043a\u0438", + "snk": "\u0441\u043e\u043d\u0438\u043d\u043a\u0435", + "srn": "\u0441\u0440\u0430\u043d\u0430\u043d \u0442\u043e\u043d\u0433\u043e", + "enm": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "mga": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "gmh": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u043d\u0435\u043c\u0441\u043a\u0438", + "frm": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "dum": "\u0441\u0440\u0435\u0434\u043d\u043e\u0432\u0435\u043a\u043e\u0432\u0435\u043d \u0445\u043e\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "sr": "\u0441\u0440\u044a\u0431\u0441\u043a\u0438", + "zgh": "\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u043c\u0430\u0440\u043e\u043a\u0430\u043d\u0441\u043a\u0438 \u0442\u0430\u043c\u0430\u0437\u0438\u0433\u0442", + "ang": "\u0441\u0442\u0430\u0440\u043e\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438", + "goh": "\u0441\u0442\u0430\u0440\u043e\u0432\u0438\u0441\u043e\u043a\u043e\u043d\u0435\u043c\u0441\u043a\u0438", + "sga": "\u0441\u0442\u0430\u0440\u043e\u0438\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "non": "\u0441\u0442\u0430\u0440\u043e\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438", + "peo": "\u0441\u0442\u0430\u0440\u043e\u043f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438", + "fro": "\u0441\u0442\u0430\u0440\u043e\u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "ss": "\u0441\u0443\u0430\u0437\u0438", + "sw": "\u0441\u0443\u0430\u0445\u0438\u043b\u0438", + "suk": "\u0441\u0443\u043a\u0443\u043c\u0430", + "su": "\u0441\u0443\u043d\u0434\u0430\u043d\u0441\u043a\u0438", + "sus": "\u0441\u0443\u0441\u0443", + "ar_001": "\u0441\u044a\u0432\u0440\u0435\u043c\u0435\u043d\u0435\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0435\u043d \u0430\u0440\u0430\u0431\u0441\u043a\u0438", + "sh": "\u0441\u044a\u0440\u0431\u043e\u0445\u044a\u0440\u0432\u0430\u0442\u0441\u043a\u0438", + "ii": "\u0441\u044a\u0447\u0443\u0430\u043d\u0441\u043a\u0438 \u0438", + "tl": "\u0442\u0430\u0433\u0430\u043b\u043e\u0433", + "tg": "\u0442\u0430\u0434\u0436\u0438\u043a\u0441\u043a\u0438", + "dav": "\u0442\u0430\u0438\u0442\u0430", + "ty": "\u0442\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438", + "th": "\u0442\u0430\u0439\u0441\u043a\u0438", + "tmh": "\u0442\u0430\u043c\u0430\u0448\u0435\u043a", + "ta": "\u0442\u0430\u043c\u0438\u043b\u0441\u043a\u0438", + "twq": "\u0442\u0430\u0441\u0430\u0432\u0430\u043a", + "tt": "\u0442\u0430\u0442\u0430\u0440\u0441\u043a\u0438", + "shi": "\u0442\u0430\u0448\u0435\u043b\u0445\u0438\u0442", + "te": "\u0442\u0435\u043b\u0443\u0433\u0443", + "tem": "\u0442\u0435\u043c\u043d\u0435", + "ter": "\u0442\u0435\u0440\u0435\u043d\u043e", + "teo": "\u0442\u0435\u0441\u043e", + "tet": "\u0442\u0435\u0442\u0443\u043c", + "bo": "\u0442\u0438\u0431\u0435\u0442\u0441\u043a\u0438", + "tiv": "\u0442\u0438\u0432", + "tig": "\u0442\u0438\u0433\u0440\u0435", + "ti": "\u0442\u0438\u0433\u0440\u0438\u043d\u044f", + "tli": "\u0442\u043b\u0438\u043d\u0433\u0438\u0442", + "tpi": "\u0442\u043e\u043a \u043f\u0438\u0441\u0438\u043d", + "tkl": "\u0442\u043e\u043a\u0435\u043b\u0430\u0439\u0441\u043a\u0438", + "to": "\u0442\u043e\u043d\u0433\u0430", + "zh_Hant": "\u0442\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u0435\u043d \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438", + "tn": "\u0442\u0441\u0432\u0430\u043d\u0430", + "ts": "\u0442\u0441\u043e\u043d\u0433\u0430", + "kcg": "\u0442\u0443\u0430\u043f", + "tvl": "\u0442\u0443\u0432\u0430\u043b\u0443\u0430\u043d\u0441\u043a\u0438", + "tyv": "\u0442\u0443\u0432\u0438\u043d\u0441\u043a\u0438", + "tw": "\u0442\u0443\u0438", + "tum": "\u0442\u0443\u043c\u0431\u0443\u043a\u0430", + "tk": "\u0442\u0443\u0440\u043a\u043c\u0435\u043d\u0441\u043a\u0438", + "tr": "\u0442\u0443\u0440\u0441\u043a\u0438", + "was": "\u0443\u0430\u0448\u043e", + "uga": "\u0443\u0433\u0430\u0440\u0438\u0442\u0441\u043a\u0438", + "udm": "\u0443\u0434\u043c\u0443\u0440\u0442\u0441\u043a\u0438", + "cy": "\u0443\u0435\u043b\u0441\u043a\u0438", + "uz": "\u0443\u0437\u0431\u0435\u043a\u0441\u043a\u0438", + "ug": "\u0443\u0439\u0433\u0443\u0440\u0441\u043a\u0438", + "uk": "\u0443\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u0438", + "umb": "\u0443\u043c\u0431\u0443\u043d\u0434\u0443", + "hu": "\u0443\u043d\u0433\u0430\u0440\u0441\u043a\u0438", + "ur": "\u0443\u0440\u0434\u0443", + "fan": "\u0444\u0430\u043d\u0433", + "fat": "\u0444\u0430\u043d\u0442\u0438", + "fo": "\u0444\u0430\u0440\u044c\u043e\u0440\u0441\u043a\u0438", + "fj": "\u0444\u0438\u0434\u0436\u0438\u0439\u0441\u043a\u0438", + "fil": "\u0444\u0438\u043b\u0438\u043f\u0438\u043d\u0441\u043a\u0438", + "phn": "\u0444\u0438\u043d\u0438\u043a\u0438\u0439\u0441\u043a\u0438", + "fi": "\u0444\u0438\u043d\u0441\u043a\u0438", + "nl_BE": "\u0444\u043b\u0430\u043c\u0430\u043d\u0434\u0441\u043a\u0438", + "fon": "\u0444\u043e\u043d", + "fr": "\u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "fy": "\u0444\u0440\u0438\u0437\u0438\u0439\u0441\u043a\u0438", + "fur": "\u0444\u0440\u0438\u0443\u043b\u0438\u0430\u043d\u0441\u043a\u0438", + "ff": "\u0444\u0443\u043b\u0430", + "haw": "\u0445\u0430\u0432\u0430\u0439\u0441\u043a\u0438", + "ht": "\u0445\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438", + "hai": "\u0445\u0430\u0439\u0434\u0430", + "ha": "\u0445\u0430\u0443\u0437\u0430", + "hz": "\u0445\u0435\u0440\u0435\u0440\u043e", + "hil": "\u0445\u0438\u043b\u0438\u0433\u0430\u0439\u043d\u043e\u043d", + "hi": "\u0445\u0438\u043d\u0434\u0438", + "ho": "\u0445\u0438\u0440\u0438 \u043c\u043e\u0442\u0443", + "hit": "\u0445\u0438\u0442\u0441\u043a\u0438", + "hmn": "\u0445\u043c\u043e\u043d\u0433", + "hup": "\u0445\u0443\u043f\u0430", + "hr": "\u0445\u044a\u0440\u0432\u0430\u0442\u0441\u043a\u0438", + "tzm": "\u0446\u0435\u043d\u0442\u0440\u0430\u043b\u043d\u043e\u0430\u0442\u043b\u0430\u0441\u043a\u0438 \u0442\u0430\u043c\u0430\u0437\u0438\u0433\u0442", + "rom": "\u0446\u0438\u0433\u0430\u043d\u0441\u043a\u0438 \u0435\u0437\u0438\u043a", + "tsi": "\u0446\u0438\u043c\u0448\u0438\u0430\u043d\u0441\u043a\u0438", + "cu": "\u0446\u044a\u0440\u043a\u043e\u0432\u043d\u043e \u0441\u043b\u0430\u0432\u044f\u043d\u0441\u043a\u0438", + "chg": "\u0447\u0430\u0433\u0430\u0442\u0430\u0439", + "ch": "\u0447\u0430\u043c\u043e\u0440\u043e", + "chy": "\u0447\u0435\u0439\u0435\u043d\u0441\u043a\u0438", + "chr": "\u0447\u0435\u0440\u043e\u043a\u0438", + "ce": "\u0447\u0435\u0447\u0435\u043d\u0441\u043a\u0438", + "cs": "\u0447\u0435\u0448\u043a\u0438", + "chb": "\u0447\u0438\u0431\u0447\u0430", + "cgg": "\u0447\u0438\u0433\u0430", + "chp": "\u0447\u0438\u0438\u043f\u0443\u0432\u0441\u043a\u0438", + "ny": "\u0447\u0438\u043d\u044f\u043d\u0434\u0436\u0430", + "cho": "\u0447\u043e\u043a\u0442\u043e", + "cv": "\u0447\u0443\u0432\u0430\u0448\u043a\u0438", + "chk": "\u0447\u0443\u0443\u043a", + "ksb": "\u0448\u0430\u043c\u0431\u0430\u043b\u0430", + "shn": "\u0448\u0430\u043d", + "sv": "\u0448\u0432\u0435\u0434\u0441\u043a\u0438", + "de_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438 \u0433\u043e\u0440\u043d\u043e\u0433\u0435\u0440\u043c\u0430\u043d\u0441\u043a\u0438", + "gsw": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438 \u043d\u0435\u043c\u0441\u043a\u0438", + "fr_CH": "\u0448\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0438 \u0444\u0440\u0435\u043d\u0441\u043a\u0438", + "sn": "\u0448\u043e\u043d\u0430", + "sco": "\u0448\u043e\u0442\u043b\u0430\u043d\u0434\u0441\u043a\u0438", + "gd": "\u0448\u043e\u0442\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u0433\u0430\u043b\u0441\u043a\u0438", + "sux": "\u0448\u0443\u043c\u0435\u0440\u0441\u043a\u0438", + "nr": "\u044e\u0436\u0435\u043d \u043d\u0434\u0435\u0431\u0435\u043b\u0435", + "alt": "\u044e\u0436\u043d\u043e\u0430\u043b\u0442\u0430\u0439\u0441\u043a\u0438", + "sma": "\u044e\u0436\u043d\u043e\u0441\u0430\u0430\u043c\u0441\u043a\u0438", + "jv": "\u044f\u0432\u0430\u043d\u0441\u043a\u0438", + "sah": "\u044f\u043a\u0443\u0442\u0441\u043a\u0438", + "yao": "\u044f\u043e", + "yap": "\u044f\u043f\u0435\u0437\u0435", + "ja": "\u044f\u043f\u043e\u043d\u0441\u043a\u0438", + "bss": "Akoose", + "akz": "Alabama", + "arq": "Algerian Arabic", + "ase": "American Sign Language", + "njo": "Ao Naga", + "aro": "Araona", + "frp": "Arpitan", + "bfq": "Badaga", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "bax": "Bamun", + "bjn": "Banjar", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bew": "Betawi", + "bpy": "Bishnupriya", + "brh": "Brahui", + "pt_BR": "Brazilian Portuguese", + "bum": "Bulu", + "frc": "Cajun French", + "cps": "Capiznon", + "cay": "Cayuga", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "dzg": "Dazaga", + "arz": "Egyptian Arabic", + "egl": "Emilian", + "pt_PT": "European Portuguese", + "es_ES": "European Spanish", + "ext": "Extremaduran", + "hif": "Fiji Hindi", + "gur": "Frafra", + "gan": "Gan Chinese", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gom": "Goan Konkani", + "hak": "Hakka Chinese", + "ibb": "Ibibio", + "izh": "Ingrian", + "jam": "Jamaican Creole English", + "jut": "Jutish", + "kgp": "Kaingang", + "kkj": "Kako", + "kbl": "Kanembu", + "ken": "Kenyang", + "khw": "Khowar", + "krj": "Kinaray-a", + "kiu": "Kirmanjki", + "bkm": "Kom", + "avk": "Kotava", + "kri": "Krio", + "ltg": "Latgalian", + "es_419": "Latin American Spanish", + "lzz": "Laz", + "lij": "Ligurian", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "liv": "Livonian", + "lmo": "Lombard", + "sli": "Lower Silesian", + "mde": "Maba", + "maf": "Mafa", + "vmf": "Main-Franconian", + "mzn": "Mazanderani", + "byv": "Medumba", + "mwv": "Mentawai", + "nan": "Min Nan Chinese", + "xmf": "Mingrelian", + "ary": "Moroccan Arabic", + "ttt": "Muslim Tat", + "mye": "Myene", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "yrl": "Nheengatu", + "nov": "Novial", + "pfl": "Palatine German", + "pdc": "Pennsylvania German", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pnt": "Pontic", + "prg": "Prussian", + "rif": "Riffian", + "rgn": "Romagnol", + "rtm": "Rotuman", + "rug": "Roviana", + "rue": "Rusyn", + "ssy": "Saho", + "sgs": "Samogitian", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "see": "Seneca", + "sei": "Seri", + "szl": "Silesian", + "azb": "South Azerbaijani", + "tly": "Talysh", + "trv": "Taroko", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tcy": "Tulu", + "aeb": "Tunisian Arabic", + "tru": "Turoyo", + "vec": "Venetian", + "vep": "Veps", + "vro": "V\u00f5ro", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zea": "Zeelandic", + "gbz": "Zoroastrian Dari" +} diff --git a/public/intl/language/bs-BA.json b/public/intl/language/bs-BA.json new file mode 100644 index 000000000..960e47222 --- /dev/null +++ b/public/intl/language/bs-BA.json @@ -0,0 +1,611 @@ +{ + "ab": "abhazijski", + "ace": "a\u010dineski", + "ada": "adangmejski", + "ady": "adigejski", + "aa": "afarski", + "afh": "afrihili", + "af": "afrikanerski", + "agq": "aghem", + "ain": "ainu", + "ay": "ajmara", + "akk": "akadijski", + "ak": "akan", + "ach": "akoli", + "bss": "Akoose", + "akz": "Alabama", + "sq": "albanski", + "arq": "Algerian Arabic", + "ale": "aljut", + "ase": "American Sign Language", + "en_US": "ameri\u010dki engleski", + "am": "amharski", + "anp": "angika", + "njo": "Ao Naga", + "an": "aragone\u017eanski", + "aro": "Araona", + "arp": "arapaho", + "ar": "arapski", + "arn": "araukanski", + "arw": "aravak", + "arc": "armajski", + "rup": "aromanijski", + "frp": "Arpitan", + "as": "asemijski", + "ast": "asturijski", + "asa": "asu", + "cch": "atsam", + "en_AU": "australski engleski", + "de_AT": "austrijski njema\u010dki", + "awa": "avadhi", + "av": "avarski", + "ae": "avestanski", + "az": "azerbejd\u017eanski", + "bfq": "Badaga", + "ksf": "bafia", + "bfd": "Bafut", + "bqi": "Bakhtiari", + "ban": "balinezijski", + "bal": "balu\u010di", + "bm": "bambara", + "bax": "Bamun", + "bjn": "Banjar", + "bas": "basa", + "eu": "baskijski", + "ba": "ba\u0161kirski", + "bbc": "Batak Toba", + "bar": "Bavarian", + "bej": "beja", + "bem": "bemba", + "bez": "bena", + "bn": "bengalski", + "bew": "Betawi", + "zxx": "bez lingvisti\u010dkog sadr\u017eaja", + "bik": "bikol", + "bin": "bini", + "bpy": "Bishnupriya", + "bi": "bislama", + "be": "bjeloruski", + "byn": "blin", + "zbl": "blisimboli", + "brx": "bodo", + "bho": "bojpuri", + "bs": "bosanski", + "brh": "Brahui", + "bra": "braj", + "pt_BR": "Brazilian Portuguese", + "br": "bretonski", + "en_GB": "britanski engleski", + "bg": "bugarski", + "bug": "bugine\u017eanskii", + "bum": "Bulu", + "bua": "buriat", + "my": "burmanski", + "frc": "Cajun French", + "yue": "Cantonese", + "cps": "Capiznon", + "cay": "Cayuga", + "ceb": "cebuano", + "dtp": "Central Dusun", + "esu": "Central Yupik", + "shu": "Chadian Arabic", + "qug": "Chimborazo Highland Quichua", + "ksh": "Colognian", + "swb": "Comorian", + "cy": "cy", + "chg": "\u010dagatai", + "ch": "\u010damoro", + "ce": "\u010de\u010denski", + "chy": "\u010dejenski", + "cs": "\u010de\u0161ki", + "chb": "\u010dib\u010da", + "cgg": "\u010diga", + "chn": "\u010dinukski", + "chp": "\u010dipvijanski", + "chr": "\u010diroki", + "cho": "\u010doktavski", + "chk": "\u010dukeski", + "cv": "\u010duva\u0161ki", + "dak": "dakota", + "da": "danski", + "dar": "dargva", + "dzg": "Dazaga", + "del": "delaver", + "din": "dinka", + "dv": "divehijski", + "doi": "dogri", + "dgr": "dogrib", + "dsb": "donjolu\u017ei\u010dkosrpski", + "dua": "duala", + "gez": "d\u017eiz", + "dz": "d\u017eonga", + "dyu": "\u0111ula", + "efi": "efikski", + "arz": "Egyptian Arabic", + "eka": "ekajuk", + "elx": "elamitski", + "ebu": "embu", + "egl": "Emilian", + "en": "engleski", + "myv": "erzija", + "eo": "esperanto", + "et": "estonski", + "pt_PT": "European Portuguese", + "ee": "eve", + "ewo": "evondo", + "es_ES": "evropski \u0161panski", + "ext": "Extremaduran", + "fan": "fang", + "fat": "fanti", + "fo": "farski", + "phn": "feni\u010danski", + "fj": "fid\u017eijski", + "hif": "Fiji Hindi", + "fil": "filipinski", + "fi": "finski", + "nl_BE": "flamanski", + "fon": "fon", + "gur": "Frafra", + "fr": "francuski", + "fur": "friulijski", + "fy": "frizijski", + "ff": "fulah", + "gaa": "ga", + "gag": "gagau\u0161ki", + "gay": "gajo", + "gl": "galski", + "gan": "Gan Chinese", + "lg": "ganda", + "gba": "gbaja", + "aln": "Gheg Albanian", + "bbj": "Ghomala", + "glk": "Gilaki", + "gil": "gilbert\u0161ki", + "gom": "Goan Konkani", + "gon": "gondi", + "hsb": "gornjolu\u017ei\u010dkosrpski", + "de_CH": "gornjonjema\u010dki (\u0161vicarski)", + "gor": "gorontalo", + "got": "gotski", + "el": "gr\u010dki", + "grb": "grebo", + "ka": "gruzijski", + "gu": "gud\u017earati", + "guz": "gusii", + "gn": "gvarani", + "gwi": "Gwich\u02bcin", + "ht": "hai\u0107anski", + "hai": "haida", + "hak": "Hakka Chinese", + "ha": "hausa", + "haw": "havajski", + "he": "hebrejski", + "hz": "herero", + "hil": "hiligajnon", + "hi": "hindi", + "ho": "hiri motu", + "hit": "hitite", + "hmn": "hmong", + "nl": "holandski", + "hr": "hrvatski", + "hup": "hupa", + "iba": "iban", + "ibb": "Ibibio", + "io": "ido", + "ig": "igbo", + "ilo": "iloko", + "smn": "inari sami", + "id": "indonezijski", + "izh": "Ingrian", + "inh": "ingu\u0161etski", + "ia": "interlingva", + "ie": "interlingve", + "iu": "inuktitut", + "ik": "inupiak", + "ga": "irski", + "is": "islandski", + "frs": "isto\u010dni frizijski", + "it": "italijanski", + "sah": "jakut", + "jam": "Jamaican Creole English", + "yao": "jao", + "ja": "japanski", + "yap": "jape\u0161ki", + "jv": "javanski", + "hy": "jermenski", + "yi": "jidi\u0161", + "dyo": "jola-fonyi", + "yo": "jorubanski", + "jrb": "judeo-arapski", + "jpr": "judeo-persijski", + "jut": "Jutish", + "alt": "ju\u017eni altai", + "nr": "ju\u017eni ndebele", + "sma": "ju\u017eni sami", + "kbd": "kabardijski", + "kab": "kabile", + "kac": "ka\u010din", + "cad": "kado", + "kgp": "Kaingang", + "kkj": "Kako", + "kl": "kalalisutski", + "kln": "kalenjin", + "xal": "kalmik", + "kam": "kamba", + "kn": "kanada", + "en_CA": "kanadski engleski", + "fr_CA": "kanadski francuski", + "kbl": "Kanembu", + "kr": "kanuri", + "kaa": "kara-kalpa\u0161ki", + "krc": "kara\u010daj-balkar", + "krl": "karelijski", + "car": "karipski", + "kha": "kasi", + "ks": "ka\u0161miri", + "csb": "ka\u0161ubijanski", + "ca": "katalonski", + "kaw": "kavi", + "kk": "kaza\u010dki", + "ken": "Kenyang", + "khw": "Khowar", + "quc": "ki\u010de", + "ki": "kikuju", + "kmb": "kimbundu", + "krj": "Kinaray-a", + "zh": "kineski", + "zh_Hans": "kineski (pojednostavljeni)", + "zh_Hant": "kineski (tradicionalni)", + "rw": "kinjarvanda", + "ky": "kirgiski", + "kiu": "Kirmanjki", + "nwc": "klasi\u010dni nevari", + "syc": "klasi\u010dni sirijski", + "tlh": "klingonski", + "km": "kmerski", + "ses": "kojraboro seni", + "bkm": "Kom", + "kv": "komi", + "koi": "komi-permja\u010dki", + "kg": "kongo", + "swc": "kongoanski swahili", + "kok": "konkani", + "cop": "koptski", + "ko": "korejski", + "kw": "korni\u0161ki", + "kfo": "koro", + "co": "korzikanski", + "xh": "kosa", + "kos": "kosreanski", + "kho": "kotanizijski", + "avk": "Kotava", + "khq": "koyra chiini", + "kpe": "kpele", + "cr": "kri", + "crh": "krimeanski turski", + "kri": "Krio", + "mus": "kri\u0161ki", + "kj": "kuanjama", + "kum": "kumik", + "ku": "kurdski", + "kru": "kurukh", + "kut": "kutenai", + "qu": "kven\u010da", + "nmg": "kwasio", + "lad": "ladino", + "lkt": "lakota", + "lam": "lamba", + "lah": "landa", + "lag": "langi", + "lo": "lao\u0161ki", + "ltg": "Latgalian", + "es_419": "latinoameri\u010dki \u0161panski", + "la": "latinski", + "lzz": "Laz", + "lv": "letonski", + "lez": "lezgian", + "lij": "Ligurian", + "li": "limburgi\u0161", + "ln": "lingala", + "lfn": "Lingua Franca Nova", + "lzh": "Literary Chinese", + "lt": "litvanski", + "liv": "Livonian", + "jbo": "lojban", + "lmo": "Lombard", + "sli": "Lower Silesian", + "loz": "lozi", + "lu": "luba-katanga", + "lua": "luba-lulua", + "lui": "luiseno", + "lb": "luksembur\u0161ki", + "smj": "lule sami", + "lun": "lunda", + "luo": "luo", + "lus": "lu\u0161ai", + "luy": "luyia", + "mde": "Maba", + "jmc": "machame", + "mad": "madure\u0161ki", + "hu": "ma\u0111arski", + "maf": "Mafa", + "mag": "magahi", + "moh": "mahavski", + "vmf": "Main-Franconian", + "mai": "maitili", + "mak": "makasar", + "mk": "makedonski", + "mgh": "makhuwa-meetto", + "kde": "makonde", + "mg": "malagazijski", + "ml": "malajalam", + "ms": "malajski", + "mt": "malte\u0161ki", + "mnc": "man\u010du", + "mdr": "mandar", + "man": "mandingo", + "mni": "manipuri", + "gv": "manks", + "mi": "maorski", + "mr": "marati", + "chm": "mari", + "tzm": "marokanski tamazigt", + "mh": "mar\u0161alski", + "mwr": "marvari", + "mas": "masai", + "mfe": "mauricijski kreolski", + "mzn": "Mazanderani", + "byv": "Medumba", + "es_MX": "meksi\u010dki \u0161panski", + "men": "mende", + "mwv": "Mentawai", + "mer": "meru", + "mgo": "meta\u2019", + "mic": "mikmak", + "nan": "Min Nan Chinese", + "min": "minangkabau", + "xmf": "Mingrelian", + "mwl": "mirande\u0161ki", + "ar_001": "moderni standardni arapski", + "mdf": "mok\u0161a", + "ro_MD": "moldavski", + "lol": "mongo", + "mn": "mongolski", + "ary": "Moroccan Arabic", + "mos": "mosi", + "mua": "mundang", + "ttt": "Muslim Tat", + "mye": "Myene", + "naq": "nama", + "na": "nauru", + "nv": "navaho", + "ng": "ndonga", + "nap": "neapolitanski", + "ne": "nepalski", + "und": "nepoznati ili neva\u017ee\u0107i jezik", + "new": "nevari", + "sba": "Ngambay", + "nnh": "Ngiemboon", + "jgo": "ngomba", + "yrl": "Nheengatu", + "nia": "nias", + "nds": "niski nema\u010dki", + "niu": "niuean", + "nqo": "nko", + "nog": "nogai", + "no": "norve\u0161ki", + "nb": "norve\u0161ki bokmal", + "nn": "norve\u0161ki njorsk", + "nov": "Novial", + "nus": "nuer", + "nzi": "nzima", + "nym": "njamvezi", + "nyn": "njankole", + "ny": "njanja", + "tog": "njasa tonga", + "de": "njema\u010dki", + "nyo": "njoro", + "oj": "ojibva", + "or": "orijski", + "om": "oromo", + "osa": "osage", + "os": "osetski", + "ota": "otomanski turski", + "pal": "pahlavi", + "pfl": "Palatine German", + "pau": "palauanski", + "pi": "pali", + "pam": "pampanga", + "pa": "pand\u017eabski", + "pag": "pangasinski", + "pap": "papiamento", + "ps": "pa\u0161tunski", + "pdc": "Pennsylvania German", + "fa": "perzijski", + "pcd": "Picard", + "pms": "Piedmontese", + "pdt": "Plautdietsch", + "pl": "poljski", + "pon": "ponpejski", + "pnt": "Pontic", + "pt": "portugalski", + "oc": "provansalski", + "prg": "Prussian", + "raj": "ra\u0111astani", + "rap": "rapanui", + "rar": "rarotongan", + "rm": "reto-romanski", + "rif": "Riffian", + "rgn": "Romagnol", + "rom": "romani", + "rof": "rombo", + "rtm": "Rotuman", + "rug": "Roviana", + "rwk": "rua", + "ro": "rumunski", + "root": "run", + "rn": "rundi", + "ru": "ruski", + "rue": "Rusyn", + "ssy": "Saho", + "sam": "samaritanski aramejski", + "saq": "samburu", + "sm": "samoanski", + "sgs": "Samogitian", + "sad": "sandave", + "sg": "sango", + "sbp": "sangu", + "sa": "sanskrit", + "sat": "santali", + "sc": "sardinijski", + "sas": "sasak", + "sdc": "Sassarese Sardinian", + "stq": "Saterland Frisian", + "saz": "Saurashtra", + "sly": "Selayar", + "sel": "selkap", + "seh": "sena", + "see": "Seneca", + "srr": "serer", + "sei": "Seri", + "st": "sesoto", + "nso": "severni soto", + "frr": "severno-frizijski", + "ksb": "shambala", + "scn": "sicilijanski", + "ii": "si\u010duan ji", + "sid": "sidamo", + "bla": "siksika", + "szl": "Silesian", + "sd": "sindi", + "si": "singaleski", + "syr": "sirijski", + "nd": "sjeverni ndebele", + "se": "sjeverni sami", + "sms": "skoltski jezik", + "den": "slavski", + "sk": "slova\u010dki", + "sl": "slovena\u010dki", + "sog": "sod\u017eijenski", + "xog": "soga", + "so": "somalski", + "snk": "soninke", + "ckb": "soranski kurdski", + "azb": "South Azerbaijani", + "srn": "srananski tongo", + "enm": "srednji engleski", + "frm": "srednji francuski", + "dum": "srednji holandski", + "mga": "srednji irski", + "gmh": "srednji visoki nema\u010dki", + "sr": "srpski", + "sh": "srpskohrvatski", + "zgh": "standardni marokanski tamazigt", + "non": "stari norski", + "egy": "staroegipatski", + "ang": "staroengleski", + "fro": "starofrancuski", + "grc": "starogr\u010dki", + "sga": "staroirski", + "goh": "staronema\u010dki", + "peo": "staropersijski", + "pro": "staroprovansalski", + "cu": "staroslovenski", + "su": "sudanski", + "suk": "sukuma", + "sux": "sumerski", + "sus": "susu", + "sw": "svahili", + "ss": "svati", + "shn": "\u0161an", + "sco": "\u0161kotski", + "gd": "\u0161kotski galski", + "sn": "\u0161ona", + "es": "\u0161panski", + "fr_CH": "\u0161vajcarski francuski", + "gsw": "\u0161vajcarski njema\u010dki", + "sv": "\u0161vedski", + "tg": "tad\u017ei\u010dki", + "tl": "tagalski", + "shi": "tahelhit", + "ty": "tahi\u0107anski", + "dav": "taita", + "th": "tajlandski", + "tly": "Talysh", + "tmh": "tama\u0161ek", + "ta": "tamilski", + "trv": "Taroko", + "twq": "tasavak", + "tt": "tatarski", + "te": "telugu", + "ter": "tereno", + "teo": "teso", + "tet": "tetum", + "bo": "tibetanski", + "tig": "tigre", + "ti": "tigrinja", + "tem": "timne", + "tiv": "tiv", + "kcg": "tjap", + "tli": "tlingit", + "tpi": "tok pisin", + "tkl": "tokelau", + "to": "tonga", + "fit": "Tornedalen Finnish", + "tkr": "Tsakhur", + "tsd": "Tsakonian", + "tsi": "tsim\u0161ian", + "ts": "tsonga", + "tn": "tsvana", + "tcy": "Tulu", + "tum": "tumbuka", + "aeb": "Tunisian Arabic", + "tk": "turkmenski", + "tru": "Turoyo", + "tr": "turski", + "tvl": "tuvalu", + "tyv": "tuvinijski", + "tw": "tvi", + "udm": "udmurt", + "uga": "ugaritski", + "ug": "ujgurski", + "uk": "ukrajinski", + "umb": "umbundu", + "ur": "urdu", + "uz": "uzbe\u010dki", + "vai": "vai", + "wal": "valamo", + "wa": "valun", + "war": "varej", + "was": "va\u0161o", + "ve": "venda", + "vec": "Venetian", + "vep": "Veps", + "vi": "vijetnamski", + "mul": "vi\u0161e jezika", + "vo": "volap\u00fck", + "wo": "volof", + "vro": "V\u00f5ro", + "vot": "votski", + "vun": "vunjo", + "wae": "Walser", + "wbp": "Warlpiri", + "guc": "Wayuu", + "vls": "West Flemish", + "mrj": "Western Mari", + "wuu": "Wu Chinese", + "hsn": "Xiang Chinese", + "yav": "Yangben", + "ybb": "Yemba", + "zap": "zapote\u010dki", + "dje": "zarma", + "zza": "zaza", + "zea": "Zeelandic", + "kea": "zelenortski", + "zen": "zenaga", + "gbz": "Zoroastrian Dari", + "za": "zuang", + "zu": "zulu", + "zun": "zuni", + "kaj": "\u017eju" +} diff --git a/public/intl/messages/am-ET.json b/public/intl/messages/am-ET.json index cb9ff4f99..6ab57eb20 100644 --- a/public/intl/messages/am-ET.json +++ b/public/intl/messages/am-ET.json @@ -11,7 +11,7 @@ "value": "Actions" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Average visit time" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Delete" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Enable share URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Events" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " hours" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Logout" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "More" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Password" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profile" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Single day" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Tracking code" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unique visitors" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Views" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], "label.visitors": [ { "type": 0, "value": "Visitors" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1431,12 +1803,42 @@ "value": " section of your HTML." } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1470,5 +1872,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/ar-SA.json b/public/intl/messages/ar-SA.json index 17a859167..b466054af 100644 --- a/public/intl/messages/ar-SA.json +++ b/public/intl/messages/ar-SA.json @@ -11,7 +11,7 @@ "value": "الإجراءات" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "سجل الأحداث" @@ -20,13 +20,25 @@ "label.add": [ { "type": 0, - "value": "Add" + "value": "أضِف" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "أضِف وصف" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "أضِف عضو" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "يعد" } ], "label.all": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "متوسط وقت الزيارة" + "value": "المتوسط" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "قبل" } ], "label.bounce-rate": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "التصنيف" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "المتصفح" } ], "label.browsers": [ @@ -116,7 +122,7 @@ "label.cancel": [ { "type": 0, - "value": "إلغاء" + "value": "ألغِ" } ], "label.change-password": [ @@ -134,7 +140,7 @@ "label.city": [ { "type": 0, - "value": "City" + "value": "المدينة" } ], "label.clear-all": [ @@ -143,6 +149,12 @@ "value": "مسح الكل" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "يحتوي" } ], "label.continue": [ { "type": 0, - "value": "متابعة" + "value": "تابع" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "الدولة" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "أنشِئ" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "أنشِئ تقرير" } ], "label.create-team": [ { "type": 0, - "value": "انشاء مجموعة" + "value": "أنشِئ فريق" } ], "label.create-user": [ { "type": 0, - "value": "انشاء مستخدم" + "value": "أنشِئ مستخدم" } ], "label.created": [ { "type": 0, - "value": "تم الانشاء" + "value": "أُنشئت" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "أُنشئ من قبل" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" } ], "label.current-password": [ @@ -218,7 +248,7 @@ "label.custom-range": [ { "type": 0, - "value": "فترة مخصصة" + "value": "فترة مخصّصة" } ], "label.dashboard": [ @@ -236,25 +266,25 @@ "label.date": [ { "type": 0, - "value": "Date" + "value": "التاريخ" } ], "label.date-range": [ { "type": 0, - "value": "فترة مخصصة" + "value": "فترة مخصّصة" } ], "label.day": [ { "type": 0, - "value": "Day" + "value": "يوم" } ], "label.default-date-range": [ { "type": 0, - "value": "الفترة المخصصة الافتراضية" + "value": "الفترة المخصّصة الافتراضية" } ], "label.delete": [ @@ -263,10 +293,16 @@ "value": "حذف" } ], + "label.delete-report": [ + { + "type": 0, + "value": "احذف التقرير" + } + ], "label.delete-team": [ { "type": 0, - "value": "حذف مجموعة" + "value": "حذف الفريق" } ], "label.delete-user": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "الوصف" } ], "label.desktop": [ @@ -302,7 +338,7 @@ "label.device": [ { "type": 0, - "value": "Device" + "value": "الجهاز" } ], "label.devices": [ @@ -314,13 +350,13 @@ "label.dismiss": [ { "type": 0, - "value": "اخفاء" + "value": "تجاهل" } ], "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "لا يحتوي" } ], "label.domain": [ @@ -332,37 +368,55 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "إنزال" } ], "label.edit": [ { "type": 0, - "value": "تعديل" + "value": "عدّل" } ], "label.edit-dashboard": [ { "type": 0, - "value": "تعديل لوحة التحكم" + "value": "عدّل لوحة التحكم" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "عدّل العضو" } ], "label.enable-share-url": [ { "type": 0, - "value": "تفعيل مشاركة الرابط" + "value": "فعّل مشاركة الرابط" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" } ], "label.event": [ { "type": 0, - "value": "Event" + "value": "الحدث" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "تاريخ الحدث" } ], "label.events": [ @@ -371,118 +425,172 @@ "value": "الأحداث" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "خطأ" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "الحقل" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "الحقول" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "تصفيَة" } ], "label.filter-combined": [ { "type": 0, - "value": "مجمعة" + "value": "مُجمّعة" } ], "label.filter-raw": [ { "type": 0, - "value": "مفصلة" + "value": "خام" } ], "label.filters": [ { "type": 0, - "value": "Filters" + "value": "التصفيات" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "قمع" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "فهم معدل التحويل والانقطاع عن المستخدمين." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "أكبَر مِن" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "أكبَر مِن أو يساوي" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "نتائج التحليلات" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "تعمق في بياناتك باستخدام الشرائح والتصفيات." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "هو" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "لم" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "لم ضُبط" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "ضُبط" } ], "label.join": [ { "type": 0, - "value": "انضمام" + "value": "انضم" } ], "label.join-team": [ { "type": 0, - "value": "الانضمام للمجموعة" + "value": "انضم للفريق" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." } ], "label.language": [ @@ -506,7 +614,7 @@ "label.last-days": [ { "type": 0, - "value": "اخر " + "value": "آخر " }, { "type": 1, @@ -520,7 +628,7 @@ "label.last-hours": [ { "type": 0, - "value": "اخر " + "value": "آخر " }, { "type": 1, @@ -528,13 +636,33 @@ }, { "type": 0, - "value": " ساعة/ساعات" + "value": " ساعة" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" } ], "label.leave": [ { "type": 0, - "value": "مغادرة" + "value": "غادر" } ], "label.leave-team": [ @@ -546,13 +674,13 @@ "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "أقل مِن" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "أقل مِن أو يساوي" } ], "label.login": [ @@ -567,10 +695,28 @@ "value": "تسجيل الخروج" } ], + "label.manage": [ + { + "type": 0, + "value": "التحكم" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "الحد الأقصى" + } + ], + "label.member": [ + { + "type": 0, + "value": "عضو" } ], "label.members": [ @@ -582,7 +728,7 @@ "label.min": [ { "type": 0, - "value": "Min" + "value": "الحد الأدنى" } ], "label.mobile": [ @@ -597,16 +743,22 @@ "value": "المزيد" } ], + "label.my-account": [ + { + "type": 0, + "value": "حسابي" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "مواقعي" } ], "label.name": [ { "type": 0, - "value": "الإسم" + "value": "الاسم" } ], "label.new-password": [ @@ -618,19 +770,59 @@ "label.none": [ { "type": 0, - "value": "غير معرف" + "value": "غير معرّف" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "نعم" } ], "label.os": [ { "type": 0, - "value": "OS" + "value": "نظام التشغيل" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "نظرة عامة" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "صفحة " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " من " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "عنوان الصفحة" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "كلمة المرور" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "الملف الشخصي" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -706,7 +940,7 @@ "label.query": [ { "type": 0, - "value": "Query" + "value": "استعلام" } ], "label.query-parameters": [ @@ -724,7 +958,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "المرجع" } ], "label.referrers": [ @@ -742,13 +976,13 @@ "label.regenerate": [ { "type": 0, - "value": "اعادة انشاء" + "value": "إعادة توليد" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "المنطقة" } ], "label.regions": [ @@ -760,13 +994,19 @@ "label.remove": [ { "type": 0, - "value": "إزالة" + "value": "أزِل" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "احذف عضو" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "التقارير" } ], "label.required": [ @@ -790,13 +1030,31 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "الاحتفاظ" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "قس مدى ثبات موقعك على الويب من خلال تتبع عدد مرات عودة المستخدمين." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ @@ -808,7 +1066,7 @@ "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "شغّل الاستعلام" } ], "label.save": [ @@ -826,19 +1084,37 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "بحث" + } + ], + "label.select": [ + { + "type": 0, + "value": "اختر" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "حدد التاريخ" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "حدد الدور" } ], "label.select-website": [ { "type": 0, - "value": "اختيار موقع" + "value": "حدد موقع" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" } ], "label.sessions": [ @@ -850,7 +1126,7 @@ "label.settings": [ { "type": 0, - "value": "اعدادات" + "value": "الإعدادات" } ], "label.share-url": [ @@ -865,10 +1141,22 @@ "value": "يوم واحد" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "المجموع" } ], "label.tablet": [ @@ -880,55 +1168,61 @@ "label.team": [ { "type": 0, - "value": "مجموعة" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "زائر للمجموعة" + "value": "الفريق" } ], "label.team-id": [ { "type": 0, - "value": "معرف المجموعة" + "value": "معرّف الفريق" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" } ], "label.team-member": [ { "type": 0, - "value": "عضو المجموعة" + "value": "عضو الفريق" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "اسم الفريق" } ], "label.team-owner": [ { "type": 0, - "value": "مدير المجموعة" + "value": "مدير الفريق" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "مواقع الفريق" } ], "label.teams": [ { "type": 0, - "value": "المجموعات" + "value": "الفرق" } ], "label.theme": [ { "type": 0, - "value": "المظهر" + "value": "السمة" } ], "label.this-month": [ @@ -976,13 +1270,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "الإجمالي" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "إجمالي السجلات" } ], "label.tracking-code": [ @@ -991,22 +1285,40 @@ "value": "كود التتبع" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "انقل الموقع" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "حقيقي" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "النوع" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "فريد" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "زائرون فريدون" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "بدون عنوان" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" } ], "label.url": [ @@ -1042,7 +1366,13 @@ "label.user": [ { "type": 0, - "value": "مستخدم" + "value": "المستخدم" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" } ], "label.username": [ @@ -1057,10 +1387,22 @@ "value": "المستخدمين" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, - "value": "Value" + "value": "القيمة" } ], "label.view": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "عرض فقط" } ], "label.views": [ @@ -1087,22 +1429,40 @@ "value": "المشاهدات" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "متوسط وقت الزيارة" + } + ], "label.visitors": [ { "type": 0, "value": "الزوار" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "الموقع" } ], "label.website-id": [ { "type": 0, - "value": "معرف الموقع" + "value": "معرّف الموقع" } ], "label.websites": [ @@ -1114,7 +1474,7 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "النافذة" } ], "label.yesterday": [ @@ -1123,6 +1483,20 @@ "value": "الأمس" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "اكتب " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " في المربع أدناه للتأكيد." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "هل انت متأكد من حذف " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,38 +1593,16 @@ "value": "؟" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "سيؤدي حذف الفريق أيضًا إلى حذف كافة مواقع الفريق" } ], "message.delete-website-warning": [ { "type": 0, - "value": "كافة البيانات المرتبطة سيم حذفها ايضا." + "value": "سيتم حذف كافة بيانات الموقع." } ], "message.error": [ @@ -1288,7 +1660,7 @@ "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "إصدار جديد من Umami " }, { "type": 1, @@ -1296,7 +1668,7 @@ }, { "type": 0, - "value": " is available!" + "value": " متاح!" } ], "message.no-data-available": [ @@ -1308,7 +1680,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "لا توجد بيانات الحدث متاحة." } ], "message.no-match-password": [ @@ -1320,19 +1692,19 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "لا توجد نتائج." } ], "message.no-team-websites": [ { "type": 0, - "value": "هذه المجموعة ليس لديه اي موقع." + "value": "هذا الفريق ليس لديه أي مواقع." } ], "message.no-teams": [ { "type": 0, - "value": "لم تقم بإنشاء اي مجموعة." + "value": "لم تنشِئ اي فرق." } ], "message.no-users": [ @@ -1356,7 +1728,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "لإعادة ضبط موقع الويب هذا، اكتب " }, { "type": 1, @@ -1364,7 +1736,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " في المربع أدناه للتأكيد." } ], "message.reset-website-warning": [ @@ -1396,19 +1768,19 @@ "message.team-already-member": [ { "type": 0, - "value": "أنت عضو في المجموعة" + "value": "أنت عضو في الفريق" } ], "message.team-not-found": [ { "type": 0, - "value": "لم يتم العثور على المجموعة" + "value": "لم يتم العثور على الفريق" } ], "message.team-websites-info": [ { "type": 0, - "value": "يمكن مشاهدة الموقع من اي عضو في المجموعة." + "value": "يمكن مشاهدة الموقع من اي عضو في الفريق." } ], "message.tracking-code": [ @@ -1417,12 +1789,42 @@ "value": "كود التتبع" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "نقل هذا الموقع إلى حسابك؟" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "اختر الفريق الذي تريد نقل الموقع إليه." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "نقل ملكية الموقع لحسابك أو فريق أخر." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "أُطلق الحدث" + } + ], "message.user-deleted": [ { "type": 0, "value": "تم حذف المستخدم." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "شوهدت الصفحة" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "أنخفض عدد الزوار" + } ] } diff --git a/public/intl/messages/be-BY.json b/public/intl/messages/be-BY.json index c8081e373..d5ca0a1e7 100644 --- a/public/intl/messages/be-BY.json +++ b/public/intl/messages/be-BY.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Код доступу" } ], "label.actions": [ @@ -11,22 +11,34 @@ "value": "Дзеянні" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Журнал актыўнасці" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Дадаць" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Дадаць апісанне" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Дадаць удзельніка" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Дадаць крок" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "Пасля" } ], "label.all": [ @@ -62,19 +74,13 @@ "label.analytics": [ { "type": 0, - "value": "Analytics" + "value": "Аналітыка" } ], "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Сярэдняя даўжыня наведвання" + "value": "Сярэдняе" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Да" } ], "label.bounce-rate": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Разбіўка" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Браўзер" } ], "label.browsers": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Гарады" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "Горад" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Ачысціць усё" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Параўнаць" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "Падцвердзіць" } ], "label.confirm-password": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Уключае" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "Працягнуць" + } + ], + "label.count": [ + { + "type": 0, + "value": "Колькасць" } ], "label.countries": [ @@ -176,49 +194,61 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Краіна" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Стварыць" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Стварыць справаздачу" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Стварыць каманду" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Стварыць карыстальніка" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "Створана" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Створана" + } + ], + "label.current": [ + { + "type": 0, + "value": "Цяперашні" } ], "label.current-password": [ { "type": 0, - "value": "Бягучы пароль" + "value": "Цяперашні пароль" } ], "label.custom-range": [ { "type": 0, - "value": "Карыстацкі дыяпазон" + "value": "Іншы дыяпазон" } ], "label.dashboard": [ @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Дадзеныя" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Дата" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Дзень" } ], "label.default-date-range": [ @@ -263,16 +293,22 @@ "value": "Выдаліць" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Выдаліць справаздачу" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "Выдаліць каманду" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "Выдаліць карыстальніка" } ], "label.delete-website": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Апісанне" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Дэталі" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Прылада" } ], "label.devices": [ @@ -314,13 +350,13 @@ "label.dismiss": [ { "type": 0, - "value": "Адмена" + "value": "Адхіліць" } ], "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Не ўключае" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Адмовы" } ], "label.edit": [ @@ -347,22 +383,40 @@ "value": "Змяніць інфармацыйную панэль" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Рэдагаваць удзельніка" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Дазволіць дзяліцца спасылкай" } ], + "label.end-step": [ + { + "type": 0, + "value": "Канчатковы крок" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL уваходу" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Падзея" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Дадзеныя падзеі" } ], "label.events": [ @@ -371,34 +425,40 @@ "value": "Падзеі" } ], + "label.exit": [ + { + "type": 0, + "value": "URL выхаду" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Ложна" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Поле" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Палі" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Фільтр" } ], "label.filter-combined": [ { "type": 0, - "value": "Камбініаваны" + "value": "Камбініраваны" } ], "label.filter-raw": [ @@ -410,79 +470,127 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Фільтры" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Варонка" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Разумець паказчыкі канверсіі і адмоваў." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Мэта" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Мэты" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Сачыць за мэтамі па праглядах старонак і падзеях." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Больш чым" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Больш чым або роўна" + } + ], + "label.host": [ + { + "type": 0, + "value": "Хост" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Хасты" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Інсайты" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Даследваць дадзеныя з дапамогай сегментаў і фільтраў." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "З'яўляецца" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Не з'яўляецца" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Не ўстаноўлена" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Устаноўлена" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "Далучыцца" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "Далучыцца да каманды" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Маршрут карыстальніка" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Разумець як карыстальнікі навігуюць па сайце." } ], "label.language": [ @@ -514,7 +622,7 @@ }, { "type": 0, - "value": " дні" + "value": " дзён" } ], "label.last-hours": [ @@ -531,34 +639,54 @@ "value": " гадзіны" } ], + "label.last-months": [ + { + "type": 0, + "value": "Апошнія " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " месяцаў" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Пакінуць" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Пакінуць каманду" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Менш чым" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Менш чым або роўна" } ], "label.login": [ { "type": 0, - "value": "Login" + "value": "Увайсці" } ], "label.logout": [ @@ -567,22 +695,40 @@ "value": "Выйсці" } ], + "label.manage": [ + { + "type": 0, + "value": "Кіраваць" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Кіраўнік" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "Максімум" + } + ], + "label.member": [ + { + "type": 0, + "value": "Удзельнік" } ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Удзельнікі" } ], "label.min": [ { "type": 0, - "value": "Min" + "value": "Мінімум" } ], "label.mobile": [ @@ -597,10 +743,16 @@ "value": "Болей" } ], + "label.my-account": [ + { + "type": 0, + "value": "Мой уліковы запіс" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Мае сайты" } ], "label.name": [ @@ -621,16 +773,56 @@ "value": "Няма" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "запіс" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "запісаў" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "ОК" + } + ], "label.os": [ { "type": 0, - "value": "OS" + "value": "Аперацыйная сістэма" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Агляд" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Старонка " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " з " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Загаловак старонкі" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Пароль" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,28 +895,58 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Папярэдні" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Папярэдні перыяд" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Папярэдні год" + } + ], "label.profile": [ { "type": 0, "value": "Профіль" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Уласцівасць" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "Запыты" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Запыт" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "Параметры запыту" } ], "label.realtime": [ @@ -724,13 +958,13 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Рэферэр" } ], "label.referrers": [ { "type": 0, - "value": "Referrers" + "value": "Рэферэры" } ], "label.refresh": [ @@ -742,31 +976,37 @@ "label.regenerate": [ { "type": 0, - "value": "Regenerate" + "value": "Рэгенераваць" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "Рэгіён" } ], "label.regions": [ { "type": 0, - "value": "Regions" + "value": "Рэгіёны" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "Выдаліць" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Выдаліць удзельніка" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Справаздачы" } ], "label.required": [ @@ -790,25 +1030,43 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Утрыманне" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Ацаніць прыцягальнасць сайта, адсочваючы павяртанні карыстальнікаў." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Роля" } ], "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Запусціць запыт" } ], "label.save": [ @@ -826,25 +1084,43 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Пошук" + } + ], + "label.select": [ + { + "type": 0, + "value": "Выбраць" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Выбраць дату" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Выбраць ролю" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "Выбраць сайт" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" } ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "Сесіі" } ], "label.settings": [ @@ -865,10 +1141,22 @@ "value": "Адзін дзень" } ], + "label.start-step": [ + { + "type": 0, + "value": "Першы кроку" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Крокі" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Сума" } ], "label.tablet": [ @@ -880,49 +1168,55 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "Каманда" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "Ідэнтыфікатар каманды" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Кіраўнік каманды" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "Удзельнік каманды" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Назва каманды" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "Уласнік каманды" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Толькі для каманднага прагляду" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Сайты каманды" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "Каманды" } ], "label.theme": [ @@ -952,13 +1246,13 @@ "label.timezone": [ { "type": 0, - "value": "Таймзона" + "value": "Часавы пояс" } ], "label.title": [ { "type": 0, - "value": "Title" + "value": "Загаловак" } ], "label.today": [ @@ -976,13 +1270,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "Агульная колькасць" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Агульная колькасць запісаў" } ], "label.tracking-code": [ @@ -991,22 +1285,40 @@ "value": "Код адсочвання" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Перадаць" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Перадаць сайт" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Ісціна" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "Тып" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Унікальны" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Унікальныя наведвальнікі" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Без назвы" + } + ], + "label.update": [ + { + "type": 0, + "value": "Абнавіць" } ], "label.url": [ @@ -1042,7 +1366,13 @@ "label.user": [ { "type": 0, - "value": "User" + "value": "Карыстальнік" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" } ], "label.username": [ @@ -1054,31 +1384,43 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Карыстальнікі" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Сачыць за кампаніямі з дапамогай UTM-метак." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Значэнне" } ], "label.view": [ { "type": 0, - "value": "View" + "value": "Паглядзець" } ], "label.view-details": [ { "type": 0, - "value": "Пабачыць дэталі" + "value": "Паглядзець дэталі" } ], "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Толькі прагляд" } ], "label.views": [ @@ -1087,22 +1429,40 @@ "value": "Прагляды" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Прагляды за наведванне" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Сярэдняя даўжыня наведвання" + } + ], "label.visitors": [ { "type": 0, "value": "Наведвальнікі" } ], + "label.visits": [ + { + "type": 0, + "value": "Наведванні" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Сайт" } ], "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "Ідэнтыфікатар сайта" } ], "label.websites": [ @@ -1114,7 +1474,7 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Вакно" } ], "label.yesterday": [ @@ -1123,6 +1483,20 @@ "value": "Учора" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Увядзіце " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " у поле ніжэй, каб пацвердзіць." + } + ], "message.active-users": [ { "type": 1, @@ -1130,7 +1504,7 @@ }, { "type": 0, - "value": " тякучых " + "value": " цякучых " }, { "offset": 0, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Сабраныя дадзеныя" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1174,7 +1554,21 @@ "message.confirm-leave": [ { "type": 0, - "value": "Are you sure you want to leave " + "value": "Вы дакладна хочаце пакінуць " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Вы дакладна хочаце выдаліць " }, { "type": 1, @@ -1199,32 +1593,10 @@ "value": " статыстыку?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Выдаленне каманды таксама выдаліць усе сайты каманды." } ], "message.delete-website-warning": [ @@ -1246,7 +1618,7 @@ }, { "type": 0, - "value": " on " + "value": " на " }, { "type": 1, @@ -1262,7 +1634,7 @@ "message.incorrect-username-password": [ { "type": 0, - "value": "Некарэктны username/password." + "value": "Некарэктнае імя карыстальніка/пароль." } ], "message.invalid-domain": [ @@ -1274,7 +1646,7 @@ "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "Мінімальная даўжыня " }, { "type": 1, @@ -1282,13 +1654,13 @@ }, { "type": 0, - "value": " characters" + "value": " знакаў" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Даступная новая версія Umami " }, { "type": 1, @@ -1296,7 +1668,7 @@ }, { "type": 0, - "value": " is available!" + "value": "!" } ], "message.no-data-available": [ @@ -1308,7 +1680,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Дадзеныя падзеі недаступныя." } ], "message.no-match-password": [ @@ -1320,31 +1692,31 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Вынікаў не знойдзена." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "Гэтая каманда не мае ніводнага сайта." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "Вы не стварылі ніводнай каманды." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "Няма карыстальнікаў." } ], "message.no-websites-configured": [ { "type": 0, - "value": "Вы не наладзілі ніводнага сайту." + "value": "Вы не наладзілі ніводнага сайта." } ], "message.page-not-found": [ @@ -1356,7 +1728,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Каб скінуць гэты сайт, увядзіце " }, { "type": 1, @@ -1364,13 +1736,13 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " у поле ніжэй для пацверджання." } ], "message.reset-website-warning": [ { "type": 0, - "value": "Уся статыстыка для гэтага сайту будзе выдалена, але код адсочвання будзе працягваць працаваць." + "value": "Уся статыстыка для гэтага сайта будзе выдалена, але код адсочвання будзе працягваць працаваць." } ], "message.saved": [ @@ -1396,19 +1768,19 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "Вы ўжо ўдзельнік каманды." } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "Каманда не знойдзена." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "Сайты могуць быць праглядацца любым удзельнікам каманды." } ], "message.tracking-code": [ @@ -1417,10 +1789,40 @@ "value": "Код адсочвання" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Перадаць гэты сайт на ваш уліковы запіс?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Выберыце каманду для перадачы гэтага сайта." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Перадача сайта на ваш уліковы запіс або іншай камандзе." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Падзея якая спрацавала" + } + ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "Карыстальнік выдалены." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Праглядзеў старонку" } ], "message.visitor-log": [ @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Наведвальнікі сышлі" + } ] } diff --git a/public/intl/messages/bg-BG.json b/public/intl/messages/bg-BG.json new file mode 100644 index 000000000..d81c4c69f --- /dev/null +++ b/public/intl/messages/bg-BG.json @@ -0,0 +1,1874 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Код за достъп" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Действия" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Активностти" + } + ], + "label.add": [ + { + "type": 0, + "value": "Добави" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Добави описание" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Добави член" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Добави стъпка" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Добави уебсайт" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Администратор" + } + ], + "label.after": [ + { + "type": 0, + "value": "След" + } + ], + "label.all": [ + { + "type": 0, + "value": "Всички" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "За всички времена" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Анализи" + } + ], + "label.average": [ + { + "type": 0, + "value": "Средно" + } + ], + "label.back": [ + { + "type": 0, + "value": "Назад" + } + ], + "label.before": [ + { + "type": 0, + "value": "Преди" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Kоефициент на отказ" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Разбивка" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Браузър" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Браузъри" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Отмени" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Смени парола" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Градове" + } + ], + "label.city": [ + { + "type": 0, + "value": "Град" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Изчисти всички" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Потвърди" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Потвърди парола" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Съдържа" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Продължи" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Държави" + } + ], + "label.country": [ + { + "type": 0, + "value": "Държава" + } + ], + "label.create": [ + { + "type": 0, + "value": "Създай" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Създай отчет" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Създай екип" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Създай потребител" + } + ], + "label.created": [ + { + "type": 0, + "value": "Създадено" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Създадено от" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Текуща парола" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Обхват" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Табло" + } + ], + "label.data": [ + { + "type": 0, + "value": "Данни" + } + ], + "label.date": [ + { + "type": 0, + "value": "Дата" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Диапазон от дати" + } + ], + "label.day": [ + { + "type": 0, + "value": "Ден" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Диапазон от дати по подразбиране" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Изтрий" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Изтрий отчет" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Изтрий екип" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Изтрий потребител" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Изтрий уебсайт" + } + ], + "label.description": [ + { + "type": 0, + "value": "Описание" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Десктоп" + } + ], + "label.details": [ + { + "type": 0, + "value": "Детайли" + } + ], + "label.device": [ + { + "type": 0, + "value": "Устройство" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Устройства" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Отхвърли" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Не съдържа" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Домейн" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Отпадане" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Редактирай" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Редактирай табло" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Редактирай член" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Активирай Линк за споделяне" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Събитие" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Данни за събитие" + } + ], + "label.events": [ + { + "type": 0, + "value": "Събития" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Грешно" + } + ], + "label.field": [ + { + "type": 0, + "value": "Поле" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Полета" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Филтър" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Комбиниран" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Суров" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Филтри" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Фуния" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Разберете процента на конверсия и отпадане на потребителите." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "По-голямо от" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "По-голямо или равно на" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Изводи" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Навлезте по-дълбоко в данните си, като използвате сегменти и филтри." + } + ], + "label.is": [ + { + "type": 0, + "value": "Е" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Не е" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Не е зададено" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Зададено е" + } + ], + "label.join": [ + { + "type": 0, + "value": "Присъедини се" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Присъедини се към екип" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.language": [ + { + "type": 0, + "value": "Език" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Езици" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Лаптоп" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Последните " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " дни" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Последните " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " часа" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Последните " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " месеца" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Напусни" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Напусни екип" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "По-малко от" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "По-малко или равно на" + } + ], + "label.login": [ + { + "type": 0, + "value": "Вход" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Изход" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Управлявай" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Максимум" + } + ], + "label.member": [ + { + "type": 0, + "value": "Член" + } + ], + "label.members": [ + { + "type": 0, + "value": "Членове" + } + ], + "label.min": [ + { + "type": 0, + "value": "Минимум" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Мобилен" + } + ], + "label.more": [ + { + "type": 0, + "value": "Още" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Моят акаунт" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Моите уебсайтове" + } + ], + "label.name": [ + { + "type": 0, + "value": "Име" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Нова парола" + } + ], + "label.none": [ + { + "type": 0, + "value": "Няма" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "един" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "други" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "Добре" + } + ], + "label.os": [ + { + "type": 0, + "value": "ОС" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Общ преглед" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Собственик" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Страница " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " от " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Прегледи на страницата" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Заглавие на страница" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Страници" + } + ], + "label.password": [ + { + "type": 0, + "value": "Парола" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Поддържано от " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Профил" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Запитвания" + } + ], + "label.query": [ + { + "type": 0, + "value": "Запитване" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Параметри на търсене" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "В реално време" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Референт" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Референти" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Обнови" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Регенерирай" + } + ], + "label.region": [ + { + "type": 0, + "value": "Регион" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Региони" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Премахни" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Премахни член" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Отчети" + } + ], + "label.required": [ + { + "type": 0, + "value": "Задължително" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Нулирай" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Нулирай уебсайт" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Привързване" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Измерете привързаността към вашия уебсайт, като проследявате колко често потребителите се връщат." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], + "label.role": [ + { + "type": 0, + "value": "Роля" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Изпълни запитване" + } + ], + "label.save": [ + { + "type": 0, + "value": "Запази" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Екрани" + } + ], + "label.search": [ + { + "type": 0, + "value": "Търсене" + } + ], + "label.select": [ + { + "type": 0, + "value": "Избери" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Избери дата" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Избери роля" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Избери уебсайт" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Сесии" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Настройки" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Сподели Линк" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Един ден" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Стъпки" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Сума" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Таблет" + } + ], + "label.team": [ + { + "type": 0, + "value": "Екип" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "ID на екип" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Член на екипа" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Име на екипа" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Собственик на екипа" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Видимо само за членове на екипа" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Уебсайтове на екипа" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Екипи" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Тема" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Този месец" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Тази седмица" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Тази година" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Часова зона" + } + ], + "label.title": [ + { + "type": 0, + "value": "Заглавие" + } + ], + "label.today": [ + { + "type": 0, + "value": "Днес" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Виж диаграми" + } + ], + "label.total": [ + { + "type": 0, + "value": "Общо" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Общо записи" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Код за проследяване" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Прехвърли" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Прехвърляне на уебсайт" + } + ], + "label.true": [ + { + "type": 0, + "value": "Вярно" + } + ], + "label.type": [ + { + "type": 0, + "value": "Вид" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Уникален" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Уникални посетители" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Неизвестен" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Без заглавие" + } + ], + "label.update": [ + { + "type": 0, + "value": "Актуализирай" + } + ], + "label.url": [ + { + "type": 0, + "value": "URL адрес" + } + ], + "label.urls": [ + { + "type": 0, + "value": "URL адреси" + } + ], + "label.user": [ + { + "type": 0, + "value": "Потребител" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], + "label.username": [ + { + "type": 0, + "value": "Потребителско име" + } + ], + "label.users": [ + { + "type": 0, + "value": "Потребители" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Следете кампаниите си чрез UTM параметри." + } + ], + "label.value": [ + { + "type": 0, + "value": "Стойност" + } + ], + "label.view": [ + { + "type": 0, + "value": "Преглед" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Преглед на детайлите" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Само за преглед" + } + ], + "label.views": [ + { + "type": 0, + "value": "Прегледи" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Прегледи на посещение" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Посетители" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Посещения" + } + ], + "label.website": [ + { + "type": 0, + "value": "Уебсайт" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "Идентификатор на уебсайт" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Уебсайтове" + } + ], + "label.window": [ + { + "type": 0, + "value": "Прозорец" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Вчера" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Въведете " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " в полето по-долу, за да потвърдите." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "активен един" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "активни други" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да изтриете " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да напуснете " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да премахнете " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Сигурни ли сте, че искате да нулирате " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Изтриването на екип ще изтрие и всички уебсайтове създадени от екипа." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Всички данни за уебсайта ще бъдат изтрити." + } + ], + "message.error": [ + { + "type": 0, + "value": "Възникна грешка." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "url" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Отидете в настройките" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Неправилно потребителско име и/или парола." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Невалиден домейн. Не включвайте http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Минимална дължина от " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " символа" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Има нова версия на Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": "!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Няма налични данни." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Няма налични данни за събитие." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Паролите не съвпадат." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Няма намерени резултати." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Този екип няма никакви уебсайтове." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Няма създадени екипи." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Няма потребители." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Нямате конфигурирани уебсайтове." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Страницата не е намерена" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "За да нулирате този уебсайт, въведете " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " в полето по-долу, за да потвърдите." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Всички статистически данни за този уебсайт ще бъдат изтрити, но вашите настройки ще останат непроменени." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Запазено." + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Статистиката за вашия уебсайт е публично достъпна на следния URL адрес:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Вече сте член на екипа." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Екипът не е намерен." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Уебсайтовете могат да бъдат преглеждани от всеки член на екипа." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "За активирате проследяването на статистиката във вашият уебсайт, поставете следния код в секцията " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " намираща се в вашия HTML." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Искате да прехвърлите този уебсайт към вашия акаунт?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Изберете екипът на който да бъде прехвърлен уебсайта." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Прехвърли собствеността на уебсайта към вашия акаунт или към друг екип." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Активирано събитие" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Потребителят е изтрит." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Страницата е видяна" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Посетител от " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": ", използващ " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " на " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Спад на посетителите" + } + ] +} diff --git a/public/intl/messages/bn-BD.json b/public/intl/messages/bn-BD.json index 6b8875adf..a50db6226 100644 --- a/public/intl/messages/bn-BD.json +++ b/public/intl/messages/bn-BD.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "এক্সেস কোড" } ], "label.actions": [ @@ -11,22 +11,34 @@ "value": "অ্যাকশনস" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "একটিভিটি দেখুন" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "যুক্ত করুন" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "বর্ননা যোগ করুন" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "সদস্য যোগ করুন" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "পদ যোগ করুন" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "পরে" } ], "label.all": [ @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "গড় পরিদর্শনের সময়" - } - ], "label.back": [ { "type": 0, @@ -86,31 +92,31 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "পূর্বে" } ], "label.bounce-rate": [ { "type": 0, - "value": "বহিষ্কারের হার" + "value": "উপরে উঠার হার" } ], "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "ভাঙ্গন" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "ব্রাউজার" } ], "label.browsers": [ { "type": 0, - "value": "ব্রাউজার" + "value": "ব্রাউজার সমূহ" } ], "label.cancel": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "শহরসমূহ" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "শহর" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "সব মুছে ফেলুন" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "নিশ্চিত করুন" } ], "label.confirm-password": [ @@ -158,55 +170,73 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "রয়েছে" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "পরবর্তিতে" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" } ], "label.countries": [ { "type": 0, - "value": "দেশ" + "value": "দেশসমূহ" } ], "label.country": [ { "type": 0, - "value": "Country" + "value": "দেশ" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "তৈরি করুন" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "রিপোর্ট তৈরি করুন" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "দল তৈরি করুন" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "ব্যবহারকারী তৈরি করুন" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "তৈরি করা হয়েছে" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" } ], "label.current-password": [ @@ -263,6 +293,12 @@ "value": "মুছে ফেলুন" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "শেয়ার ইউআরএল শেয়ার করুন" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "ঘটনা" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " ঘন্টা" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "লগ আউট" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "আরও" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "কিছুই না" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "পাসওয়ার্ড" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 1, @@ -691,12 +895,42 @@ "value": " দ্বারা চালিত" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "প্রোফাইল" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "একদিন" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "ট্র্যাকিং কোড" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "অনন্য ভিজিটর" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "ভিউস" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "গড় পরিদর্শনের সময়" + } + ], "label.visitors": [ { "type": 0, "value": "পরিদর্শনার্থী" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": " এর পরিসংখ্যান পুনরায় সেট করতে চান?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "ট্র্যাকিং কোড" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 1, @@ -1456,5 +1858,11 @@ "type": 0, "value": " এর মধ্যে।" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/bs-BA.json b/public/intl/messages/bs-BA.json new file mode 100644 index 000000000..71d870e25 --- /dev/null +++ b/public/intl/messages/bs-BA.json @@ -0,0 +1,1874 @@ +{ + "label.access-code": [ + { + "type": 0, + "value": "Pristupni kod" + } + ], + "label.actions": [ + { + "type": 0, + "value": "Akcije" + } + ], + "label.activity": [ + { + "type": 0, + "value": "Log aktivnosti" + } + ], + "label.add": [ + { + "type": 0, + "value": "Dodaj" + } + ], + "label.add-description": [ + { + "type": 0, + "value": "Dodaj opis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Dodaj člana" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Dodaj korak" + } + ], + "label.add-website": [ + { + "type": 0, + "value": "Dodaj web stranicu" + } + ], + "label.admin": [ + { + "type": 0, + "value": "Administrator" + } + ], + "label.after": [ + { + "type": 0, + "value": "Nakon" + } + ], + "label.all": [ + { + "type": 0, + "value": "Sve" + } + ], + "label.all-time": [ + { + "type": 0, + "value": "Cijelo vrijeme" + } + ], + "label.analytics": [ + { + "type": 0, + "value": "Analitike" + } + ], + "label.average": [ + { + "type": 0, + "value": "Prosjek" + } + ], + "label.back": [ + { + "type": 0, + "value": "Nazad" + } + ], + "label.before": [ + { + "type": 0, + "value": "Prije" + } + ], + "label.bounce-rate": [ + { + "type": 0, + "value": "Bounce rate" + } + ], + "label.breakdown": [ + { + "type": 0, + "value": "Pregled po kategorijama" + } + ], + "label.browser": [ + { + "type": 0, + "value": "Browser" + } + ], + "label.browsers": [ + { + "type": 0, + "value": "Browseri" + } + ], + "label.cancel": [ + { + "type": 0, + "value": "Otkaži" + } + ], + "label.change-password": [ + { + "type": 0, + "value": "Promijeni šifru" + } + ], + "label.cities": [ + { + "type": 0, + "value": "Gradovi" + } + ], + "label.city": [ + { + "type": 0, + "value": "Grad" + } + ], + "label.clear-all": [ + { + "type": 0, + "value": "Očisti sve" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], + "label.confirm": [ + { + "type": 0, + "value": "Potvrdi" + } + ], + "label.confirm-password": [ + { + "type": 0, + "value": "Potvrdi šifru" + } + ], + "label.contains": [ + { + "type": 0, + "value": "Sadrži" + } + ], + "label.continue": [ + { + "type": 0, + "value": "Nastavi" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], + "label.countries": [ + { + "type": 0, + "value": "Zemlje" + } + ], + "label.country": [ + { + "type": 0, + "value": "Zemlja" + } + ], + "label.create": [ + { + "type": 0, + "value": "Kreiraj" + } + ], + "label.create-report": [ + { + "type": 0, + "value": "Kreiraj izvještaj" + } + ], + "label.create-team": [ + { + "type": 0, + "value": "Kreiraj tim" + } + ], + "label.create-user": [ + { + "type": 0, + "value": "Kreiraj korisnika" + } + ], + "label.created": [ + { + "type": 0, + "value": "Kreiraj" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Kreirao" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], + "label.current-password": [ + { + "type": 0, + "value": "Trenutna šifra" + } + ], + "label.custom-range": [ + { + "type": 0, + "value": "Proizvoljni raspon" + } + ], + "label.dashboard": [ + { + "type": 0, + "value": "Dashboard" + } + ], + "label.data": [ + { + "type": 0, + "value": "Podaci" + } + ], + "label.date": [ + { + "type": 0, + "value": "Datum" + } + ], + "label.date-range": [ + { + "type": 0, + "value": "Datumski raspon" + } + ], + "label.day": [ + { + "type": 0, + "value": "Dan" + } + ], + "label.default-date-range": [ + { + "type": 0, + "value": "Defaultni datumski raspon" + } + ], + "label.delete": [ + { + "type": 0, + "value": "Izbriši" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Izbriši report" + } + ], + "label.delete-team": [ + { + "type": 0, + "value": "Izbriši tim" + } + ], + "label.delete-user": [ + { + "type": 0, + "value": "Izbriši korisnika" + } + ], + "label.delete-website": [ + { + "type": 0, + "value": "Izbriši web stranicu" + } + ], + "label.description": [ + { + "type": 0, + "value": "Opis" + } + ], + "label.desktop": [ + { + "type": 0, + "value": "Desktop" + } + ], + "label.details": [ + { + "type": 0, + "value": "Detalji" + } + ], + "label.device": [ + { + "type": 0, + "value": "Uređaj" + } + ], + "label.devices": [ + { + "type": 0, + "value": "Uređaji" + } + ], + "label.dismiss": [ + { + "type": 0, + "value": "Odbaci" + } + ], + "label.does-not-contain": [ + { + "type": 0, + "value": "Ne sadrži" + } + ], + "label.domain": [ + { + "type": 0, + "value": "Domena" + } + ], + "label.dropoff": [ + { + "type": 0, + "value": "Dropoff" + } + ], + "label.edit": [ + { + "type": 0, + "value": "Uredi" + } + ], + "label.edit-dashboard": [ + { + "type": 0, + "value": "Uredi dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Uredi člana" + } + ], + "label.enable-share-url": [ + { + "type": 0, + "value": "Omogući URL za dijeljenje" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], + "label.event": [ + { + "type": 0, + "value": "Događaj" + } + ], + "label.event-data": [ + { + "type": 0, + "value": "Podaci o događaju" + } + ], + "label.events": [ + { + "type": 0, + "value": "Događaji" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], + "label.false": [ + { + "type": 0, + "value": "Ne" + } + ], + "label.field": [ + { + "type": 0, + "value": "Polje" + } + ], + "label.fields": [ + { + "type": 0, + "value": "Polja" + } + ], + "label.filter": [ + { + "type": 0, + "value": "Filter" + } + ], + "label.filter-combined": [ + { + "type": 0, + "value": "Kombinovano" + } + ], + "label.filter-raw": [ + { + "type": 0, + "value": "Sirovo" + } + ], + "label.filters": [ + { + "type": 0, + "value": "Filtri" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], + "label.funnel": [ + { + "type": 0, + "value": "Lijevak" + } + ], + "label.funnel-description": [ + { + "type": 0, + "value": "Razumite koverziju i drop-off učestalost korisnika." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], + "label.greater-than": [ + { + "type": 0, + "value": "Veće od" + } + ], + "label.greater-than-equals": [ + { + "type": 0, + "value": "Veće od ili jednako" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], + "label.insights": [ + { + "type": 0, + "value": "Uvidi" + } + ], + "label.insights-description": [ + { + "type": 0, + "value": "Zaronite dublje u vaše podatke korištenjem segmenata i filtera" + } + ], + "label.is": [ + { + "type": 0, + "value": "Jeste" + } + ], + "label.is-not": [ + { + "type": 0, + "value": "Nije" + } + ], + "label.is-not-set": [ + { + "type": 0, + "value": "Nije setano" + } + ], + "label.is-set": [ + { + "type": 0, + "value": "Jeste setano" + } + ], + "label.join": [ + { + "type": 0, + "value": "Učlani se" + } + ], + "label.join-team": [ + { + "type": 0, + "value": "Učlani se u tim" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], + "label.language": [ + { + "type": 0, + "value": "Jezik" + } + ], + "label.languages": [ + { + "type": 0, + "value": "Jezici" + } + ], + "label.laptop": [ + { + "type": 0, + "value": "Laptop" + } + ], + "label.last-days": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " dana" + } + ], + "label.last-hours": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " sati" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "Zadnjih " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mjeseci" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], + "label.leave": [ + { + "type": 0, + "value": "Napusti" + } + ], + "label.leave-team": [ + { + "type": 0, + "value": "Napusti tim" + } + ], + "label.less-than": [ + { + "type": 0, + "value": "Manje od" + } + ], + "label.less-than-equals": [ + { + "type": 0, + "value": "Manje od ili jednako" + } + ], + "label.login": [ + { + "type": 0, + "value": "Login" + } + ], + "label.logout": [ + { + "type": 0, + "value": "Logout" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], + "label.max": [ + { + "type": 0, + "value": "Max" + } + ], + "label.member": [ + { + "type": 0, + "value": "Član" + } + ], + "label.members": [ + { + "type": 0, + "value": "Članovi" + } + ], + "label.min": [ + { + "type": 0, + "value": "Min" + } + ], + "label.mobile": [ + { + "type": 0, + "value": "Mobile" + } + ], + "label.more": [ + { + "type": 0, + "value": "Više" + } + ], + "label.my-account": [ + { + "type": 0, + "value": "Moj račun" + } + ], + "label.my-websites": [ + { + "type": 0, + "value": "Moje web stranice" + } + ], + "label.name": [ + { + "type": 0, + "value": "Ime" + } + ], + "label.new-password": [ + { + "type": 0, + "value": "Nova šifra" + } + ], + "label.none": [ + { + "type": 0, + "value": "None" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], + "label.os": [ + { + "type": 0, + "value": "OS" + } + ], + "label.overview": [ + { + "type": 0, + "value": "Pregled" + } + ], + "label.owner": [ + { + "type": 0, + "value": "Vlasnik" + } + ], + "label.page-of": [ + { + "type": 0, + "value": "Strana " + }, + { + "type": 1, + "value": "current" + }, + { + "type": 0, + "value": " od " + }, + { + "type": 1, + "value": "total" + } + ], + "label.page-views": [ + { + "type": 0, + "value": "Pregleda stranica" + } + ], + "label.pageTitle": [ + { + "type": 0, + "value": "Naslov stranice" + } + ], + "label.pages": [ + { + "type": 0, + "value": "Stranice" + } + ], + "label.password": [ + { + "type": 0, + "value": "Šifra" + } + ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], + "label.powered-by": [ + { + "type": 0, + "value": "Omogućeno s " + }, + { + "type": 1, + "value": "name" + } + ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], + "label.profile": [ + { + "type": 0, + "value": "Profil" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], + "label.queries": [ + { + "type": 0, + "value": "Queryji" + } + ], + "label.query": [ + { + "type": 0, + "value": "Query" + } + ], + "label.query-parameters": [ + { + "type": 0, + "value": "Query parametri" + } + ], + "label.realtime": [ + { + "type": 0, + "value": "Realno vrijeme" + } + ], + "label.referrer": [ + { + "type": 0, + "value": "Referrer" + } + ], + "label.referrers": [ + { + "type": 0, + "value": "Referrers" + } + ], + "label.refresh": [ + { + "type": 0, + "value": "Refresh" + } + ], + "label.regenerate": [ + { + "type": 0, + "value": "Regeneriši" + } + ], + "label.region": [ + { + "type": 0, + "value": "Region" + } + ], + "label.regions": [ + { + "type": 0, + "value": "Regioni" + } + ], + "label.remove": [ + { + "type": 0, + "value": "Ukloni" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Ukloni člana" + } + ], + "label.reports": [ + { + "type": 0, + "value": "Izvještaji" + } + ], + "label.required": [ + { + "type": 0, + "value": "Required" + } + ], + "label.reset": [ + { + "type": 0, + "value": "Resetuj" + } + ], + "label.reset-website": [ + { + "type": 0, + "value": "Resetuj web stranicu" + } + ], + "label.retention": [ + { + "type": 0, + "value": "Retention" + } + ], + "label.retention-description": [ + { + "type": 0, + "value": "Izmjeri 'ljepljivost' svoje web stranice praćenjem koliko često set korisnici vraćaju." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], + "label.role": [ + { + "type": 0, + "value": "Rola" + } + ], + "label.run-query": [ + { + "type": 0, + "value": "Pokreni query" + } + ], + "label.save": [ + { + "type": 0, + "value": "Sačuvaj" + } + ], + "label.screens": [ + { + "type": 0, + "value": "Ekrani" + } + ], + "label.search": [ + { + "type": 0, + "value": "Traži" + } + ], + "label.select": [ + { + "type": 0, + "value": "Odaberi" + } + ], + "label.select-date": [ + { + "type": 0, + "value": "Odaberi datum" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Odaberi rolu" + } + ], + "label.select-website": [ + { + "type": 0, + "value": "Odaberi web stranicu" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], + "label.sessions": [ + { + "type": 0, + "value": "Sesije" + } + ], + "label.settings": [ + { + "type": 0, + "value": "Postavke" + } + ], + "label.share-url": [ + { + "type": 0, + "value": "Share URL" + } + ], + "label.single-day": [ + { + "type": 0, + "value": "Jedan dan" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Koraci" + } + ], + "label.sum": [ + { + "type": 0, + "value": "Suma" + } + ], + "label.tablet": [ + { + "type": 0, + "value": "Tablet" + } + ], + "label.team": [ + { + "type": 0, + "value": "Tim" + } + ], + "label.team-id": [ + { + "type": 0, + "value": "Tim ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], + "label.team-member": [ + { + "type": 0, + "value": "Član tima" + } + ], + "label.team-name": [ + { + "type": 0, + "value": "Naziv tima" + } + ], + "label.team-owner": [ + { + "type": 0, + "value": "Vlasnik tima" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Samo tim može vidjeti" + } + ], + "label.team-websites": [ + { + "type": 0, + "value": "Timske web stranice" + } + ], + "label.teams": [ + { + "type": 0, + "value": "Timovi" + } + ], + "label.theme": [ + { + "type": 0, + "value": "Teme" + } + ], + "label.this-month": [ + { + "type": 0, + "value": "Ovaj mjesec" + } + ], + "label.this-week": [ + { + "type": 0, + "value": "Ova sedmica" + } + ], + "label.this-year": [ + { + "type": 0, + "value": "Ova godina" + } + ], + "label.timezone": [ + { + "type": 0, + "value": "Vremenska zona" + } + ], + "label.title": [ + { + "type": 0, + "value": "Naslov" + } + ], + "label.today": [ + { + "type": 0, + "value": "Danas" + } + ], + "label.toggle-charts": [ + { + "type": 0, + "value": "Uklj/isklj grafikone" + } + ], + "label.total": [ + { + "type": 0, + "value": "Ukupno" + } + ], + "label.total-records": [ + { + "type": 0, + "value": "Ukupno redova" + } + ], + "label.tracking-code": [ + { + "type": 0, + "value": "Kod za praćenje" + } + ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer web stranice" + } + ], + "label.true": [ + { + "type": 0, + "value": "Da" + } + ], + "label.type": [ + { + "type": 0, + "value": "Tip" + } + ], + "label.unique": [ + { + "type": 0, + "value": "Jedinstveno" + } + ], + "label.unique-visitors": [ + { + "type": 0, + "value": "Jedinstvenih posjetitelja" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], + "label.unknown": [ + { + "type": 0, + "value": "Nepoznato" + } + ], + "label.untitled": [ + { + "type": 0, + "value": "Bezimeno" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], + "label.url": [ + { + "type": 0, + "value": "URL" + } + ], + "label.urls": [ + { + "type": 0, + "value": "URLs" + } + ], + "label.user": [ + { + "type": 0, + "value": "Korisnik" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], + "label.username": [ + { + "type": 0, + "value": "Korisničko ime" + } + ], + "label.users": [ + { + "type": 0, + "value": "Korisnici" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Pratite vaše kampanje kroz UTM parametre." + } + ], + "label.value": [ + { + "type": 0, + "value": "Vrijednost" + } + ], + "label.view": [ + { + "type": 0, + "value": "Pregled" + } + ], + "label.view-details": [ + { + "type": 0, + "value": "Pogledaj detalje" + } + ], + "label.view-only": [ + { + "type": 0, + "value": "Samo gledanje" + } + ], + "label.views": [ + { + "type": 0, + "value": "Pregledi" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Pregledi po posjeti" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Prosječno vrijeme posjete" + } + ], + "label.visitors": [ + { + "type": 0, + "value": "Posjetitelji" + } + ], + "label.visits": [ + { + "type": 0, + "value": "Posjete" + } + ], + "label.website": [ + { + "type": 0, + "value": "Web stranica" + } + ], + "label.website-id": [ + { + "type": 0, + "value": "ID web stranice" + } + ], + "label.websites": [ + { + "type": 0, + "value": "Web stranice" + } + ], + "label.window": [ + { + "type": 0, + "value": "Prozor" + } + ], + "label.yesterday": [ + { + "type": 0, + "value": "Jučer" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Unesite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " ispod da potvrdite." + } + ], + "message.active-users": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " trenutno " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "posjetitelj" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "posjetitelja" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], + "message.confirm-delete": [ + { + "type": 0, + "value": "Jeste li sigurni da želite obrisati " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-leave": [ + { + "type": 0, + "value": "Jeste li sigurni da želite napustiti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Jeste li sigurni da želite ukloniti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-reset": [ + { + "type": 0, + "value": "Jeste li sigurni da želite resetovati " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.delete-team-warning": [ + { + "type": 0, + "value": "Brisanje tima će također obrisati sve web stranice tima." + } + ], + "message.delete-website-warning": [ + { + "type": 0, + "value": "Svi podaci web stranice biće obrisani." + } + ], + "message.error": [ + { + "type": 0, + "value": "Nešto je pošlo po zlu." + } + ], + "message.event-log": [ + { + "type": 1, + "value": "event" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "url" + } + ], + "message.go-to-settings": [ + { + "type": 0, + "value": "Idi na postavke" + } + ], + "message.incorrect-username-password": [ + { + "type": 0, + "value": "Pogrešno korisničko ime i/ili šifra." + } + ], + "message.invalid-domain": [ + { + "type": 0, + "value": "Nevalidna domena. Ne uključujte http/https." + } + ], + "message.min-password-length": [ + { + "type": 0, + "value": "Minimalna dužina od " + }, + { + "type": 1, + "value": "n" + }, + { + "type": 0, + "value": " karaktera" + } + ], + "message.new-version-available": [ + { + "type": 0, + "value": "Nova verzija Umami " + }, + { + "type": 1, + "value": "version" + }, + { + "type": 0, + "value": " je dostupna!" + } + ], + "message.no-data-available": [ + { + "type": 0, + "value": "Nema dostupnih podataka." + } + ], + "message.no-event-data": [ + { + "type": 0, + "value": "Nema dostupnih podataka o događajima." + } + ], + "message.no-match-password": [ + { + "type": 0, + "value": "Šifre se ne poklapaju." + } + ], + "message.no-results-found": [ + { + "type": 0, + "value": "Nema rezultata." + } + ], + "message.no-team-websites": [ + { + "type": 0, + "value": "Ovaj tim nema nikakvih web stranica." + } + ], + "message.no-teams": [ + { + "type": 0, + "value": "Niste kreirali nijedan tim." + } + ], + "message.no-users": [ + { + "type": 0, + "value": "Nema nikakvih korisnika." + } + ], + "message.no-websites-configured": [ + { + "type": 0, + "value": "Nemate iskonfigurisanu nijednu web stranicu." + } + ], + "message.page-not-found": [ + { + "type": 0, + "value": "Stranica nije pronađena" + } + ], + "message.reset-website": [ + { + "type": 0, + "value": "Da resetujete ovu web stranicu, upišite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " dole da potvrdite." + } + ], + "message.reset-website-warning": [ + { + "type": 0, + "value": "Sve statistike o ovoj web stranici će biti obrisane, ali vaše postavke neće biti dirane." + } + ], + "message.saved": [ + { + "type": 0, + "value": "Sačuvano." + } + ], + "message.share-url": [ + { + "type": 0, + "value": "Statistike vaše web stranice su javno dostupne na sljedećem URLu:" + } + ], + "message.team-already-member": [ + { + "type": 0, + "value": "Već ste član tima." + } + ], + "message.team-not-found": [ + { + "type": 0, + "value": "Tim nije pronađen." + } + ], + "message.team-websites-info": [ + { + "type": 0, + "value": "Web stranice može vidjeti bilo ko iz tima." + } + ], + "message.tracking-code": [ + { + "type": 0, + "value": "Da pratite statistike ove web stranice, stavite sljedeći kod u " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " sekciju vašeg HTMLa." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Prebacite ovu web stranicu na vaš račun?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Odaberite tim u koji želite prebaciti ovu web stranicu." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Prebacite vlasništvo web stranice na vaš račun ili drugi tim." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Trigerovani događaj" + } + ], + "message.user-deleted": [ + { + "type": 0, + "value": "Korisnik obrisan." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Pogledana stranica" + } + ], + "message.visitor-log": [ + { + "type": 0, + "value": "Posjetitelj iz " + }, + { + "type": 1, + "value": "country" + }, + { + "type": 0, + "value": " koristi " + }, + { + "type": 1, + "value": "browser" + }, + { + "type": 0, + "value": " na " + }, + { + "type": 1, + "value": "os" + }, + { + "type": 0, + "value": " " + }, + { + "type": 1, + "value": "device" + } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Posjetitelji koji su napustili stranicu" + } + ] +} diff --git a/public/intl/messages/ca-ES.json b/public/intl/messages/ca-ES.json index f21a739cc..69b69e435 100644 --- a/public/intl/messages/ca-ES.json +++ b/public/intl/messages/ca-ES.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Codi d'accés" } ], "label.actions": [ @@ -11,28 +11,40 @@ "value": "Accions" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Registre d'activitat" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Afegir" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Afegir descripció" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Afegir membre" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Afegir pas" } ], "label.add-website": [ { "type": 0, - "value": "Afegeix lloc web" + "value": "Afegir lloc web" } ], "label.admin": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "Després" } ], "label.all": [ @@ -62,19 +74,13 @@ "label.analytics": [ { "type": 0, - "value": "Analytics" + "value": "Analítiques" } ], "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Temps mitjà de visita" + "value": "Mitjana" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Abans" } ], "label.bounce-rate": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Desglossament" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Navegador" } ], "label.browsers": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Ciutats" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "Ciutat" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Netejar tot" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Comparar" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "Confirmar" } ], "label.confirm-password": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Conté" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "Continuar" + } + ], + "label.count": [ + { + "type": 0, + "value": "Recompte" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "País" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Crear" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Crear informe" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Crear equip" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Crear usuari" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "Creat" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Creat Per" + } + ], + "label.current": [ + { + "type": 0, + "value": "Actual" } ], "label.current-password": [ @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Dades" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Data" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Dia" } ], "label.default-date-range": [ @@ -263,16 +293,22 @@ "value": "Esborra" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Eliminar informe" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "Eliminar equip" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "Eliminar usuari" } ], "label.delete-website": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Descripció" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Detalls" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Dispositiu" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "No conté" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Abandonament" } ], "label.edit": [ @@ -344,7 +380,13 @@ "label.edit-dashboard": [ { "type": 0, - "value": "Edit dashboard" + "value": "Edita panell" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Edita membre" } ], "label.enable-share-url": [ @@ -353,16 +395,28 @@ "value": "Activa l'enllaç per compartir" } ], + "label.end-step": [ + { + "type": 0, + "value": "Pas Final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL d'entrada" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Esdeveniment" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Dades de l'esdeveniment" } ], "label.events": [ @@ -371,28 +425,34 @@ "value": "Esdeveniments" } ], + "label.exit": [ + { + "type": 0, + "value": "URL de sortida" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Fals" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Camp" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Camps" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Filtre" } ], "label.filter-combined": [ @@ -410,31 +470,67 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filtres" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Vist per primer cop" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Embut" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Entengui la taxa de conversió i abandonament dels usuaris." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Meta" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Metes" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Feu un seguiment de les seves metes per a pàgines vistes i esdeveniments." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Més gran que" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Més gran que o igual a" + } + ], + "label.host": [ + { + "type": 0, + "value": "Amfitrió" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Amfitrions" } ], "label.insights": [ @@ -446,55 +542,67 @@ "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Aprofundeixi en les seves dades mitjançant l'ús de segments i filtres." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "És igual a" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "No és igual a" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "No està establert" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Està establert" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "Unir" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "Unir-se al equip" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Trajecte" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Entengui com naveguen els usuaris pel seu lloc web." } ], "label.language": [ { "type": 0, - "value": "Language" + "value": "Idioma" } ], "label.languages": [ { "type": 0, - "value": "Llengües" + "value": "Idiomes" } ], "label.laptop": [ @@ -531,28 +639,48 @@ "value": " hores" } ], + "label.last-months": [ + { + "type": 0, + "value": "Últims " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " mesos" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Vist per últim cop" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Abandonar" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Abandonar equip" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Menor que" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Menor que o igual a" } ], "label.login": [ @@ -567,22 +695,40 @@ "value": "Desconnecta't" } ], + "label.manage": [ + { + "type": 0, + "value": "Administrar" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "Màx" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membre" } ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Membres" } ], "label.min": [ { "type": 0, - "value": "Min" + "value": "Mín" } ], "label.mobile": [ @@ -597,10 +743,16 @@ "value": "Més" } ], + "label.my-account": [ + { + "type": 0, + "value": "El meu compte" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Els meus llocs web" } ], "label.name": [ @@ -618,19 +770,59 @@ "label.none": [ { "type": 0, - "value": "None" + "value": "Cap" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "registre" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "registres" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" } ], "label.os": [ { "type": 0, - "value": "OS" + "value": "SO" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Resum" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Pàgina " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " de " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Títol de la pàgina" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Contrasenya" } ], + "label.path": [ + { + "type": 0, + "value": "Camí" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Camins" + } + ], "label.powered-by": [ { "type": 0, @@ -691,28 +895,58 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Període anterior" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Any anterior" + } + ], "label.profile": [ { "type": 0, "value": "Perfil" } ], + "label.properties": [ + { + "type": 0, + "value": "Propietats" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propietat" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "Consultes" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Consulta" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "Paràmetres de consulta" } ], "label.realtime": [ @@ -724,7 +958,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Referent" } ], "label.referrers": [ @@ -742,13 +976,13 @@ "label.regenerate": [ { "type": 0, - "value": "Regenerate" + "value": "Regenerar" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "Regió" } ], "label.regions": [ @@ -760,13 +994,19 @@ "label.remove": [ { "type": 0, - "value": "Remove" + "value": "Treure" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Eliminar membre" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Informes" } ], "label.required": [ @@ -790,25 +1030,43 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Retenció" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Mesuri la retenció del seu lloc web fent un seguiment de la freqüència amb què tornen els usuaris." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Ingressos" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Observi els seus ingressos al llarg del temps." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Propietat d'Ingressos" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Rol" } ], "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Executar consulta" } ], "label.save": [ @@ -820,25 +1078,43 @@ "label.screens": [ { "type": 0, - "value": "Screens" + "value": "Pantalles" } ], "label.search": [ { "type": 0, - "value": "Search" + "value": "Buscar" + } + ], + "label.select": [ + { + "type": 0, + "value": "Seleccionar" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Seleccionar data" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Seleccionar rol" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "Seleccionar lloc web" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sessió" } ], "label.sessions": [ @@ -865,10 +1141,22 @@ "value": "Un sol dia" } ], + "label.start-step": [ + { + "type": 0, + "value": "Pas inicial" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Pasos" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Suma" } ], "label.tablet": [ @@ -880,55 +1168,61 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "Equip" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "ID del equip" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Responsable d'equip" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "Membre de l'equip" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Nom de l'equip" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "Propietari de l'equip" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Vista només de l'equip" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Llocs web de l'equip" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "Equips" } ], "label.theme": [ { "type": 0, - "value": "Theme" + "value": "Tema" } ], "label.this-month": [ @@ -958,7 +1252,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "Títol" } ], "label.today": [ @@ -982,7 +1276,7 @@ "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Total de registres" } ], "label.tracking-code": [ @@ -991,22 +1285,40 @@ "value": "Codi de seguiment" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transaccions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferir" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transferir lloc web" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Cert" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "Tipus" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Únic" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Visitants únics" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clients Únics" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Sense títol" + } + ], + "label.update": [ + { + "type": 0, + "value": "Actualitzar" } ], "label.url": [ @@ -1042,7 +1366,13 @@ "label.user": [ { "type": 0, - "value": "User" + "value": "Usuari" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "Propietat d'Usuari" } ], "label.username": [ @@ -1054,19 +1384,31 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Usuaris" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Rastreji les seves campanyes a través de paràmetres UTM." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Valor" } ], "label.view": [ { "type": 0, - "value": "View" + "value": "Visualitzar" } ], "label.view-details": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Només veure" } ], "label.views": [ @@ -1087,22 +1429,40 @@ "value": "Vistes" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vistes per visita" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Temps mitjà de visita" + } + ], "label.visitors": [ { "type": 0, "value": "Visitants" } ], + "label.visits": [ + { + "type": 0, + "value": "Visites" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Lloc web" } ], "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "ID del lloc web" } ], "label.websites": [ @@ -1114,7 +1474,7 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Finestra" } ], "label.yesterday": [ @@ -1123,6 +1483,20 @@ "value": "Ahir" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Escrigui " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " al cuadre inferior per confirmar." + } + ], "message.active-users": [ { "type": 1, @@ -1157,10 +1531,16 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Dades recol·lectades" + } + ], "message.confirm-delete": [ { "type": 0, - "value": "Segur que vols esborrar " + "value": "Segur que vol esborrar " }, { "type": 1, @@ -1174,7 +1554,21 @@ "message.confirm-leave": [ { "type": 0, - "value": "Are you sure you want to leave " + "value": "Segur que vol abandonar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Segur que vol eliminar " }, { "type": 1, @@ -1188,7 +1582,7 @@ "message.confirm-reset": [ { "type": 0, - "value": "Segur que vols restablir les estadístiques de " + "value": "Segur que vol restablir les estadístiques de " }, { "type": 1, @@ -1199,32 +1593,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Al eliminar un equip també s'eliminaran tots els llocs web de l'equip." } ], "message.delete-website-warning": [ @@ -1246,7 +1618,7 @@ }, { "type": 0, - "value": " on " + "value": " a " }, { "type": 1, @@ -1274,7 +1646,7 @@ "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "Longitud mínima de " }, { "type": 1, @@ -1282,13 +1654,13 @@ }, { "type": 0, - "value": " characters" + "value": " caràcters" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Una nova versió d'Umami " }, { "type": 1, @@ -1296,7 +1668,7 @@ }, { "type": 0, - "value": " is available!" + "value": " està disponible!" } ], "message.no-data-available": [ @@ -1308,7 +1680,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "No hi ha dades d'esdeveniments disponibles." } ], "message.no-match-password": [ @@ -1320,25 +1692,25 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "No s'han trobat resultats." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "Aquest equip no té cap lloc web." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "No ha creat cap equip." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "No hi ha cap usuari." } ], "message.no-websites-configured": [ @@ -1356,7 +1728,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Per restablir aquest lloc web, escrigui " }, { "type": 1, @@ -1364,7 +1736,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " al cuadre inferior per confirmar." } ], "message.reset-website-warning": [ @@ -1396,19 +1768,19 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "Ja és membre d'aquest equip." } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "Equip no trobat." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "Els llocs web poden ser visualitzats per qualsevol membre de l'equip." } ], "message.tracking-code": [ @@ -1417,10 +1789,40 @@ "value": "Codi de seguiment" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transferir aquest lloc web al seu compte?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Seleccioni l'equip al qui transferir aquest lloc web." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transferir la propietat del lloc web al seu compte o a un altre equip." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Esdeveniment desencadenat" + } + ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "Usuari eliminat." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Pàgina vista" } ], "message.visitor-log": [ @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitants han sortit" + } ] } diff --git a/public/intl/messages/cs-CZ.json b/public/intl/messages/cs-CZ.json index e316e9731..aa08174e1 100644 --- a/public/intl/messages/cs-CZ.json +++ b/public/intl/messages/cs-CZ.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Přístupový kód" } ], "label.actions": [ @@ -11,22 +11,34 @@ "value": "Akce" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Log aktivity" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Přidat" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Přidat popis" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Přidat člena" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Přidat krok" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "Po" } ], "label.all": [ @@ -56,7 +68,7 @@ "label.all-time": [ { "type": 0, - "value": "All time" + "value": "Celá doba" } ], "label.analytics": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Průměrný čas návštěvy" + "value": "Průměr" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Před" } ], "label.bounce-rate": [ @@ -104,13 +110,13 @@ "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Prohlížeč" } ], "label.browsers": [ { "type": 0, - "value": "Prohlížeč" + "value": "Prohlížeče" } ], "label.cancel": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Města" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "Město" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Vyčistit vše" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Porovnat" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "Potvrdit" } ], "label.confirm-password": [ @@ -158,55 +170,73 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Obsahuje" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "Pokračovat" + } + ], + "label.count": [ + { + "type": 0, + "value": "Počet" } ], "label.countries": [ { "type": 0, - "value": "Země" + "value": "Státy" } ], "label.country": [ { "type": 0, - "value": "Country" + "value": "Stát" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Vytvořit" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Vytvořit hlášení" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Vytvořit tým" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Vytvořit uživatele" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "Vytvořeno" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktuální" } ], "label.current-password": [ @@ -236,7 +266,7 @@ "label.date": [ { "type": 0, - "value": "Date" + "value": "Datum" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Den" } ], "label.default-date-range": [ @@ -263,16 +293,22 @@ "value": "Smazat" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Smazat hlášení" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "Smazat tým" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "Smazat uživatele" } ], "label.delete-website": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Popis" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Detaily" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Zařízení" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Neobsahuje" } ], "label.domain": [ @@ -344,7 +380,13 @@ "label.edit-dashboard": [ { "type": 0, - "value": "Edit dashboard" + "value": "Upravit dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Upravit člena" } ], "label.enable-share-url": [ @@ -353,10 +395,22 @@ "value": "Povolit sdílení URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Vstupní URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Událost" } ], "label.event-data": [ @@ -371,6 +425,12 @@ "value": "Události" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -380,7 +440,7 @@ "label.field": [ { "type": 0, - "value": "Field" + "value": "Pole" } ], "label.fields": [ @@ -392,7 +452,7 @@ "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Filtr" } ], "label.filter-combined": [ @@ -410,7 +470,13 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filtry" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Cíl" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Cíle" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,16 +581,28 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, - "value": "Language" + "value": "Jazyk" } ], "label.languages": [ { "type": 0, - "value": "Languages" + "value": "Jazyky" } ], "label.laptop": [ @@ -531,16 +639,36 @@ "value": " hodin" } ], + "label.last-months": [ + { + "type": 0, + "value": "Posledních " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " měsíců" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Opustit" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Opustit tým" } ], "label.less-than": [ @@ -567,16 +695,34 @@ "value": "Odhlásit" } ], + "label.manage": [ + { + "type": 0, + "value": "Spravovat" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Správce" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Člen" + } + ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Členové" } ], "label.min": [ @@ -597,10 +743,16 @@ "value": "Více" } ], + "label.my-account": [ + { + "type": 0, + "value": "Můj účet" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Mé weby" } ], "label.name": [ @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -630,13 +822,13 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Přehled" } ], "label.owner": [ { "type": 0, - "value": "Owner" + "value": "Vlastník" } ], "label.page-of": [ @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Název stránky" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Heslo" } ], + "label.path": [ + { + "type": 0, + "value": "Cesta" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Cesty" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Jeden den" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Sledovací kód" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Jedinečné návštěvy" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,7 +1429,25 @@ "value": "Zobrazení" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Průměrný čas návštěvy" + } + ], "label.visitors": [ + { + "type": 0, + "value": "Návštěvníci" + } + ], + "label.visits": [ { "type": 0, "value": "Návštěvy" @@ -1114,13 +1474,27 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Okno" } ], "label.yesterday": [ { "type": 0, - "value": "Yesterday" + "value": "Včera" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." } ], "message.active-users": [ @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Sledovací kód" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/da-DK.json b/public/intl/messages/da-DK.json index 05b0c572a..87e5f8a95 100644 --- a/public/intl/messages/da-DK.json +++ b/public/intl/messages/da-DK.json @@ -11,7 +11,7 @@ "value": "Handlinger" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Gennemsnitlig besøgstid" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Slet" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Aktivér delings-URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Hændelser" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " timer" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Log ud" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Mere" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Adgangskode" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Enkelt dag" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Sporingskode" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unikke besøgende" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Visninger" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Gennemsnitlig besøgstid" + } + ], "label.visitors": [ { "type": 0, "value": "Besøgende" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistikker?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Sporingskode" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/de-CH.json b/public/intl/messages/de-CH.json index ecc153361..37f1b9de6 100644 --- a/public/intl/messages/de-CH.json +++ b/public/intl/messages/de-CH.json @@ -11,7 +11,7 @@ "value": "Aktione" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Aktivitätsverlauf" @@ -20,13 +20,25 @@ "label.add": [ { "type": 0, - "value": "Add" + "value": "hinzuefüege" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Beschriibig hinzuefüege" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Mitglied hinzuefüege" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Schritt hinzuefüege" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "Nach" } ], "label.all": [ @@ -56,7 +68,7 @@ "label.all-time": [ { "type": 0, - "value": "Gesamte Zitruum" + "value": "Gsamte Zitruum" } ], "label.analytics": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Durchschn. Bsuechsziit" + "value": "Durchschnitt" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Vor" } ], "label.bounce-rate": [ @@ -98,7 +104,7 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Uufschlüsselig" } ], "label.browser": [ @@ -134,7 +140,7 @@ "label.city": [ { "type": 0, - "value": "City" + "value": "Stadt" } ], "label.clear-all": [ @@ -143,6 +149,12 @@ "value": "Alles lösche" } ], + "label.compare": [ + { + "type": 0, + "value": "Vergliiche" + } + ], "label.confirm": [ { "type": 0, @@ -158,7 +170,7 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Enthaltet" } ], "label.continue": [ @@ -167,6 +179,12 @@ "value": "Wiiter" } ], + "label.count": [ + { + "type": 0, + "value": "Azahl" + } + ], "label.countries": [ { "type": 0, @@ -176,19 +194,19 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Land" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Erstelle" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Bricht erstelle" } ], "label.create-team": [ @@ -209,10 +227,22 @@ "value": "Erstellt" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktuell" + } + ], "label.current-password": [ { "type": 0, - "value": "Jetzigs Passwort" + "value": "Aktuells Passwort" } ], "label.custom-range": [ @@ -236,7 +266,7 @@ "label.date": [ { "type": 0, - "value": "Date" + "value": "Datum" } ], "label.date-range": [ @@ -248,13 +278,13 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Tag" } ], "label.default-date-range": [ { "type": 0, - "value": "Vorigstellte Datumsbereich" + "value": "Voriigstellte Datumsbereich" } ], "label.delete": [ @@ -263,6 +293,12 @@ "value": "Lösche" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Bricht lösche" + } + ], "label.delete-team": [ { "type": 0, @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Beschriibig" } ], "label.desktop": [ @@ -302,7 +338,7 @@ "label.device": [ { "type": 0, - "value": "Device" + "value": "Grät" } ], "label.devices": [ @@ -314,13 +350,13 @@ "label.dismiss": [ { "type": 0, - "value": "Verwerfe" + "value": "Verwärfe" } ], "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Enthaltet nid" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Absprung" } ], "label.edit": [ @@ -347,22 +383,40 @@ "value": "Dashboard bearbeite" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Mitglied bearbeite" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Freigab-URL aktiviere" } ], + "label.end-step": [ + { + "type": 0, + "value": "Schlussschritt" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Iigangs URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Ereigniss" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Ereigniss Date" } ], "label.events": [ @@ -371,22 +425,28 @@ "value": "Ereigniss" } ], + "label.exit": [ + { + "type": 0, + "value": "Uusgangs URL" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Falsch" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Fäld" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Fälder" } ], "label.filter": [ @@ -413,64 +473,100 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "Erstmal gse" + } + ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Tunnel" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Verstönd Sie d Konversions- und Abspruungsrate vo Nutzer." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Ziel" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Ziele" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "verfolged Sie Ihri Ziel für Siitenufrüef und Ereigniss." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Grösser als" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Grösser oder gliich" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Iiblick" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Vertüfed Sie sich i Ihri Date, mit Hilf vo Segment und Filter." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "Isch" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Isch nid" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Isch ned gsetzt" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Isch gsetzt" } ], "label.join": [ @@ -485,6 +581,18 @@ "value": "Team biträte" } ], + "label.journey": [ + { + "type": 0, + "value": "Reis" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Verstönd Sie, wie Nutzer dur Ihri Website navigiered." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " Stunde" } ], + "label.last-months": [ + { + "type": 0, + "value": "Letzti " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Mönet" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Zletzt gse" + } + ], "label.leave": [ { "type": 0, @@ -546,25 +674,37 @@ "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Kliiner als" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Kliiner oder gliich" } ], "label.login": [ { "type": 0, - "value": "Aamelde" + "value": "Aamälde" } ], "label.logout": [ { "type": 0, - "value": "Abmelde" + "value": "Abmälde" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Verwalte" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" } ], "label.max": [ @@ -573,6 +713,12 @@ "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Mitglied" + } + ], "label.members": [ { "type": 0, @@ -588,7 +734,7 @@ "label.mobile": [ { "type": 0, - "value": "Handy" + "value": "Händy" } ], "label.more": [ @@ -597,10 +743,16 @@ "value": "Meh" } ], + "label.my-account": [ + { + "type": 0, + "value": "Min Account" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Mini Websiite" } ], "label.name": [ @@ -621,6 +773,46 @@ "value": "Keis" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -630,7 +822,7 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Übersicht" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Siite " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " vo " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Siitetitel" } ], "label.pages": [ @@ -681,22 +873,64 @@ "value": "Passwort" } ], + "label.path": [ + { + "type": 0, + "value": "Pfad" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Pfade" + } + ], "label.powered-by": [ { "type": 0, - "value": "Betribe dur " + "value": "Betriibe dur " }, { "type": 1, "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Vorherig" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Vorherigi Periode" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Vorherigs Jahr" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -706,7 +940,7 @@ "label.query": [ { "type": 0, - "value": "Query" + "value": "Abfrag" } ], "label.query-parameters": [ @@ -724,13 +958,13 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Verwiiser" } ], "label.referrers": [ { "type": 0, - "value": "Referrer" + "value": "Verwiisendi" } ], "label.refresh": [ @@ -763,10 +997,16 @@ "value": "Entferne" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Mitglied entferne" + } + ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Brichte" } ], "label.required": [ @@ -796,7 +1036,25 @@ "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Mässed Sie d Verwiilduur vo Ihrere Website, indem Sie verfolged wie oft ihri Nutzer zruggkehred." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Umsatz" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Lueged Sie sich Ihre Umsatz im Lauf vor Ziit a." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Umsatzeigenschafte" } ], "label.role": [ @@ -808,7 +1066,7 @@ "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Abfrag starte" } ], "label.save": [ @@ -826,13 +1084,25 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Sueche" + } + ], + "label.select": [ + { + "type": 0, + "value": "Auswähle" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Datä uuswähle" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rollä uuswähle" } ], "label.select-website": [ @@ -841,10 +1111,16 @@ "value": "Websiite uuswähle" } ], + "label.session": [ + { + "type": 0, + "value": "Sitzig" + } + ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "Sitzige" } ], "label.settings": [ @@ -865,10 +1141,22 @@ "value": "Ein Tag" } ], + "label.start-step": [ + { + "type": 0, + "value": "Startschritt" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Schritt" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Summe" } ], "label.tablet": [ @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team Gast" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team Manager" + } + ], "label.team-member": [ { "type": 0, @@ -904,7 +1192,7 @@ "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Team Name" } ], "label.team-owner": [ @@ -913,10 +1201,16 @@ "value": "Team Bsitzer" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Nur für Teammitglieder sichtbar" + } + ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Team Websiite" } ], "label.teams": [ @@ -934,19 +1228,19 @@ "label.this-month": [ { "type": 0, - "value": "De Monet" + "value": "Dä Monet" } ], "label.this-week": [ { "type": 0, - "value": "Die Wuche" + "value": "Diä Wuuche" } ], "label.this-year": [ { "type": 0, - "value": "Das Jahr" + "value": "Das Johr" } ], "label.timezone": [ @@ -970,7 +1264,7 @@ "label.toggle-charts": [ { "type": 0, - "value": "Schaubilder umschalte" + "value": "Charts umschalte" } ], "label.total": [ @@ -982,7 +1276,7 @@ "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Gsamti Datesätz" } ], "label.tracking-code": [ @@ -991,28 +1285,52 @@ "value": "Tracking Code" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transaktione" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferiere" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Websiite transferiere" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Wahr" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "Typ" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Einzigartigi" } ], "label.unique-visitors": [ { "type": 0, - "value": "Eidütigi Bsuecher" + "value": "Einzigartigi Bsuecher" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Einzigartigi Kunde" } ], "label.unknown": [ @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Unbennant" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" } ], "label.url": [ @@ -1045,6 +1369,12 @@ "value": "Benutzer" } ], + "label.user-property": [ + { + "type": 0, + "value": "Benutzereigeschafte" + } + ], "label.username": [ { "type": 0, @@ -1057,10 +1387,22 @@ "value": "Benutzer" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Tracked Sie Ihri Kampagnen mit UTM Parameters." + } + ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Wärt" } ], "label.view": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Nume aluege" } ], "label.views": [ @@ -1087,12 +1429,30 @@ "value": "Ufrüef" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Ufrüef pro Bsuech" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Durchschn. Bsuechsziit" + } + ], "label.visitors": [ { "type": 0, "value": "Bsuecher" } ], + "label.visits": [ + { + "type": 0, + "value": "Bsüech" + } + ], "label.website": [ { "type": 0, @@ -1114,7 +1474,7 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Fenster" } ], "label.yesterday": [ @@ -1123,6 +1483,20 @@ "value": "Gester" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Typed Sie " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " is Feld underhalb um z bestätige." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Gsammleti Date" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,10 +1565,10 @@ "value": " zverlah?" } ], - "message.confirm-reset": [ + "message.confirm-remove": [ { "type": 0, - "value": "Sind Sie sicher, dass Sie dStatistike vo " + "value": "Sind Sie sich sicher, dass Sie " }, { "type": 1, @@ -1196,47 +1576,39 @@ }, { "type": 0, - "value": " zruggsetze wend?" + "value": " wänd entferne?" } ], - "message.delete-account": [ + "message.confirm-reset": [ { "type": 0, - "value": "To delete this account, type " + "value": "Sind Sie sicher, dass Sie d Statistike vo " }, { "type": 1, - "value": "confirmation" + "value": "target" }, { "type": 0, - "value": " in the box below to confirm." + "value": " zruggsetze wänd?" } ], - "message.delete-website": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Es Team lösche dued ebefalls alli team Websiite lösche." } ], "message.delete-website-warning": [ { "type": 0, - "value": "Alli dezueghörige Date werdet ebefalls glöscht." + "value": "Alli dezueghörige Date werded ebefalls glöscht." } ], "message.error": [ { "type": 0, - "value": "Es isch en Fehler uftrete." + "value": "Es isch en Fehler ufträte." } ], "message.event-log": [ @@ -1262,7 +1634,7 @@ "message.incorrect-username-password": [ { "type": 0, - "value": "Falschs Passwort oder Benutzername." + "value": "Falsches Passwort oder Benutzername." } ], "message.invalid-domain": [ @@ -1288,7 +1660,7 @@ "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Es isch en neue Version vo Umami " }, { "type": 1, @@ -1296,7 +1668,7 @@ }, { "type": 0, - "value": " is available!" + "value": " verfügbar!" } ], "message.no-data-available": [ @@ -1308,7 +1680,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Es sind kei Event Date verfügbar." } ], "message.no-match-password": [ @@ -1320,7 +1692,7 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Kei Ergäbnis gfunde." } ], "message.no-team-websites": [ @@ -1356,7 +1728,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Um die Websiite zruggzsetze, typed Sie " }, { "type": 1, @@ -1364,7 +1736,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " is Feld unde dran." } ], "message.reset-website-warning": [ @@ -1388,7 +1760,7 @@ "message.team-already-member": [ { "type": 0, - "value": "Sie sind bereits es Mitglied vo dem Team." + "value": "Sie sind bereits es Mitglied vo däm Team." } ], "message.team-not-found": [ @@ -1400,7 +1772,7 @@ "message.team-websites-info": [ { "type": 0, - "value": "Websiite chönd vo jedem im Team agluegt werde" + "value": "Websiite chöi vo jedem im Team agluegt werde" } ], "message.tracking-code": [ @@ -1409,10 +1781,40 @@ "value": "Tracking Code" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Websiite uf zu Ihrem Account transferiere?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Wähled Sie s Team zum däm Websiite transferiert werde söll." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Übertraged Sie d Websiite Eigetümerrecht uf Ihre Account oder uf es anders Team" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Usglösts Ereigniss" + } + ], "message.user-deleted": [ { "type": 0, - "value": "Benutzer glöscht." + "value": "Bnutzer glöscht." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Siite agluegt" } ], "message.visitor-log": [ @@ -1426,7 +1828,7 @@ }, { "type": 0, - "value": " benutzt " + "value": " nutzt " }, { "type": 1, @@ -1448,5 +1850,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Bsuercher verlore" + } ] } diff --git a/public/intl/messages/de-DE.json b/public/intl/messages/de-DE.json index 5e74647c1..b5ec87931 100644 --- a/public/intl/messages/de-DE.json +++ b/public/intl/messages/de-DE.json @@ -11,7 +11,7 @@ "value": "Aktionen" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Aktivitätsverlauf" @@ -29,6 +29,18 @@ "value": "Beschreibung hinzufügen" } ], + "label.add-member": [ + { + "type": 0, + "value": "Mitglied hinzufügen" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Schritt hinzufügen" + } + ], "label.add-website": [ { "type": 0, @@ -62,7 +74,7 @@ "label.analytics": [ { "type": 0, - "value": "Analytics" + "value": "Analysen" } ], "label.average": [ @@ -71,12 +83,6 @@ "value": "Durchschnitt" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Durchschn. Besuchszeit" - } - ], "label.back": [ { "type": 0, @@ -98,7 +104,7 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Aufschlüsselung" } ], "label.browser": [ @@ -143,6 +149,12 @@ "value": "Alles löschen" } ], + "label.compare": [ + { + "type": 0, + "value": "Vergleichen" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Weiter" } ], + "label.count": [ + { + "type": 0, + "value": "Anzahl" + } + ], "label.countries": [ { "type": 0, @@ -182,7 +200,7 @@ "label.create": [ { "type": 0, - "value": "Create" + "value": "Erstellen" } ], "label.create-report": [ @@ -209,6 +227,18 @@ "value": "Erstellt" } ], + "label.created-by": [ + { + "type": 0, + "value": "Erstellt von" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktuell" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Löschen" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Bericht löschen" + } + ], "label.delete-team": [ { "type": 0, @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Absprung" } ], "label.edit": [ @@ -347,22 +383,40 @@ "value": "Dashboard bearbeiten" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Mitglied bearbeiten" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Freigabe-URL aktivieren" } ], + "label.end-step": [ + { + "type": 0, + "value": "Schlussschritt" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Eingangs-URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Ereignis" } ], "label.event-data": [ { "type": 0, - "value": "Eventdaten" + "value": "Ereignisdaten" } ], "label.events": [ @@ -371,6 +425,12 @@ "value": "Ereignisse" } ], + "label.exit": [ + { + "type": 0, + "value": "Ausgangs-URL" + } + ], "label.false": [ { "type": 0, @@ -413,16 +473,40 @@ "value": "Filter" } ], + "label.first-seen": [ + { + "type": 0, + "value": "Erstmalig gesehen" + } + ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Trichter" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Verstehen Sie die Konversions- und Absprungrate Ihrer Nutzer." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Ziel" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Ziele" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Verfolgen Sie Ihre Ziele für Seitenaufrufe und Ereignisse." } ], "label.greater-than": [ @@ -437,16 +521,28 @@ "value": "Größer oder gleich" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Einblicke" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Vertiefen Sie sich mit Hilfe von Segmenten und Filtern in Ihre Daten." } ], "label.is": [ @@ -485,6 +581,18 @@ "value": "Team beitreten" } ], + "label.journey": [ + { + "type": 0, + "value": "Reise" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Verstehen Sie, wie Nutzer auf Ihrer Website navigieren." + } + ], "label.language": [ { "type": 0, @@ -506,7 +614,7 @@ "label.last-days": [ { "type": 0, - "value": "Letzte " + "value": "Letzten " }, { "type": 1, @@ -520,7 +628,7 @@ "label.last-hours": [ { "type": 0, - "value": "Letzte " + "value": "Letzten " }, { "type": 1, @@ -531,6 +639,26 @@ "value": " Stunden" } ], + "label.last-months": [ + { + "type": 0, + "value": "Letzten " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " Monate" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Zuletzt gesehen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Abmelden" } ], + "label.manage": [ + { + "type": 0, + "value": "Verwalten" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Verwaltung" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Mitglied" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Mehr" } ], + "label.my-account": [ + { + "type": 0, + "value": "Mein Account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "Keine" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Passwort" } ], + "label.path": [ + { + "type": 0, + "value": "Pfad" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Pfade" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Vorherig" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Vorherige Periode" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Vorheriges Jahr" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Eigenschaften" + } + ], + "label.property": [ + { + "type": 0, + "value": "Eigentum" + } + ], "label.queries": [ { "type": 0, @@ -724,13 +958,13 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Übermittler" } ], "label.referrers": [ { "type": 0, - "value": "Referrer" + "value": "Übermittler" } ], "label.refresh": [ @@ -763,6 +997,12 @@ "value": "Entfernen" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Mitglied entfernen" + } + ], "label.reports": [ { "type": 0, @@ -790,13 +1030,31 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Erhalt" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Messen Sie die Verweildauer auf Ihrer Website, indem Sie verfolgen, wie oft die Nutzer zurückkehren." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Umsatz" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Haben Sie einen Blick auf Ihre Umsätze im Laufe der Zeit." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Umsatzeigenschaften" } ], "label.role": [ @@ -826,7 +1084,13 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Suche" + } + ], + "label.select": [ + { + "type": 0, + "value": "Auswählen" } ], "label.select-date": [ @@ -835,12 +1099,24 @@ "value": "Datum auswählen" } ], + "label.select-role": [ + { + "type": 0, + "value": "Rolle auswählen" + } + ], "label.select-website": [ { "type": 0, "value": "Website auswählen" } ], + "label.session": [ + { + "type": 0, + "value": "Sitzung" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Ein Tag" } ], + "label.start-step": [ + { + "type": 0, + "value": "Startschritt" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Schritte" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Gast des Teams" - } - ], "label.team-id": [ { "type": 0, "value": "Team-ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team-Manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team-Eigentümer" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Nur für Team-Mitglieder sichtbar" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Tracking Code" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transaktionen" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Übertragung" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Website übertragen" + } + ], "label.true": [ { "type": 0, @@ -1006,13 +1318,19 @@ "label.unique": [ { "type": 0, - "value": "Eindeutig" + "value": "Einzigartig" } ], "label.unique-visitors": [ { "type": 0, - "value": "Eindeutige Besucher" + "value": "Einzigartige Besucher" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Einzigartige Kunden" } ], "label.unknown": [ @@ -1027,6 +1345,12 @@ "value": "Unbenannt" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "Benutzer" } ], + "label.user-property": [ + { + "type": 0, + "value": "Benutzereigenschaften" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Benutzer" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Tracken Sie Ihre Kampagnen mit UTM Parametern." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Aufrufe" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Aufrufe pro Besuch" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Durchschn. Besuchszeit" + } + ], "label.visitors": [ { "type": 0, "value": "Besucher" } ], + "label.visits": [ + { + "type": 0, + "value": "Besuche" + } + ], "label.website": [ { "type": 0, @@ -1102,7 +1462,7 @@ "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "Website-ID" } ], "label.websites": [ @@ -1123,6 +1483,20 @@ "value": "Gestern" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Schreibe " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in die Box zur bestätigung." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Gesammelte Daten" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": " verlassen möchten?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Sind Sie sicher, " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " zu entfernen?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": " zurücksetzen wollen?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "Um dieses Konto zu löschen, geben Sie zur Bestätigung " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in das Feld unten ein." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Um diese Website zu löschen, geben Sie zur Bestätigung " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in das Feld unten ein." + "value": "Ein Team zu löschen, wird auch alle Team-Websites löschen." } ], "message.delete-website-warning": [ @@ -1405,12 +1777,42 @@ "value": "Tracking Code" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Diese Website zu Ihrem Account transferieren?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Wählen Sie ein Team aus, zu dem die Website transferiert werden soll." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Übertragen Sie die Eigentümerrechte zu Ihrem Account oder einem anderen Team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Ereignis ausgelöst" + } + ], "message.user-deleted": [ { "type": 0, "value": "Benutzer gelöscht." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Seite besucht" + } + ], "message.visitor-log": [ { "type": 0, @@ -1444,5 +1846,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Besucherverlust" + } ] } diff --git a/public/intl/messages/el-GR.json b/public/intl/messages/el-GR.json index eb6b73ce0..29c3efba6 100644 --- a/public/intl/messages/el-GR.json +++ b/public/intl/messages/el-GR.json @@ -11,7 +11,7 @@ "value": "Ενέργειες" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Μέσος χρόνος επίσκεψης" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Διαγραφή" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Ενεργοποίηση κοινής χρήσης URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Γεγονότα" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " ώρες" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Αποσύνδεση" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Περισσότερα" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Κωδικός" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Προφίλ" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Ημερήσια" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Κωδικός παρακολούθησης" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Μοναδικοί επισκέπτες" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Προβολές" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Μέσος χρόνος επίσκεψης" + } + ], "label.visitors": [ { "type": 0, "value": "Επισκέπτες" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Κωδικός παρακολούθησης" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/en-GB.json b/public/intl/messages/en-GB.json index 68f242481..c8c38be14 100644 --- a/public/intl/messages/en-GB.json +++ b/public/intl/messages/en-GB.json @@ -11,7 +11,7 @@ "value": "Actions" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Average visit time" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Delete" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Enable share URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Events" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " hours" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Logout" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "More" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Password" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profile" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Single day" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Tracking code" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unique visitors" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Views" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], "label.visitors": [ { "type": 0, "value": "Visitors" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Tracking code" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/en-US.json b/public/intl/messages/en-US.json index 0ee5b1e64..76a68dba1 100644 --- a/public/intl/messages/en-US.json +++ b/public/intl/messages/en-US.json @@ -11,10 +11,10 @@ "value": "Actions" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Activity" } ], "label.add": [ @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Average visit time" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Delete" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Enable share URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry path" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Events" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit path" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " hours" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Logout" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "More" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Password" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profile" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Single day" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Tracking code" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unique visitors" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Views" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], "label.visitors": [ { "type": 0, "value": "Visitors" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1382,7 +1754,7 @@ "message.share-url": [ { "type": 0, - "value": "Your website stats are publically available at the following URL:" + "value": "Your website stats are publicly available at the following URL:" } ], "message.team-already-member": [ @@ -1423,12 +1795,42 @@ "value": " section of your HTML." } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1462,5 +1864,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/es-ES.json b/public/intl/messages/es-ES.json index 5fd90efd8..540c9bbd0 100644 --- a/public/intl/messages/es-ES.json +++ b/public/intl/messages/es-ES.json @@ -11,7 +11,7 @@ "value": "Acciones" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Registro de actividad" @@ -29,6 +29,18 @@ "value": "Añadir descripción" } ], + "label.add-member": [ + { + "type": 0, + "value": "Añadir miembro" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Añadir paso" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Media" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Tiempo promedio de visita" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Limpiar todo" } ], + "label.compare": [ + { + "type": 0, + "value": "Comparar" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continuar" } ], + "label.count": [ + { + "type": 0, + "value": "Contar" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Creado" } ], + "label.created-by": [ + { + "type": 0, + "value": "Creado por" + } + ], + "label.current": [ + { + "type": 0, + "value": "Actual" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Eliminar" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Eliminar reporte" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Editar panel" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Editar miembro" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Habilitar compartir URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "Paso final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL de entrada" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Eventos" } ], + "label.exit": [ + { + "type": 0, + "value": "URL de salida" + } + ], "label.false": [ { "type": 0, @@ -413,10 +473,16 @@ "value": "Filtros" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Embudo" } ], "label.funnel-description": [ @@ -425,6 +491,24 @@ "value": "Comprender conversión y abandono de usuarios." } ], + "label.goal": [ + { + "type": 0, + "value": "Objetivo" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Objetivos" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Realice un seguimiento de sus objetivos de páginas vistas y eventos." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Mayor que o igual a" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -446,7 +542,7 @@ "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Profundice en sus datos mediante el uso de segmentos y filtros." } ], "label.is": [ @@ -464,7 +560,7 @@ "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "No está establecido" } ], "label.is-set": [ @@ -485,6 +581,18 @@ "value": "Unirse al equipo" } ], + "label.journey": [ + { + "type": 0, + "value": "Viaje" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Comprenda cómo los usuarios navegan por su sitio web." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " horas" } ], + "label.last-months": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " meses" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,10 +695,28 @@ "value": "Cerrar sesión" } ], + "label.manage": [ + { + "type": 0, + "value": "Administrar" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, - "value": "Máx" + "value": "Max" + } + ], + "label.member": [ + { + "type": 0, + "value": "Miembro" } ], "label.members": [ @@ -582,7 +728,7 @@ "label.min": [ { "type": 0, - "value": "Mín" + "value": "Min" } ], "label.mobile": [ @@ -597,6 +743,12 @@ "value": "Más" } ], + "label.my-account": [ + { + "type": 0, + "value": "Mi cuenta" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "Ninguno" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Contraseña" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Periodo anterior" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Año anterior" + } + ], "label.profile": [ { "type": 0, "value": "Perfil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propiedad" + } + ], "label.queries": [ { "type": 0, @@ -748,7 +982,7 @@ "label.region": [ { "type": 0, - "value": "Region" + "value": "Región" } ], "label.regions": [ @@ -763,6 +997,12 @@ "value": "Quitar" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Eliminar miembro" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Medir la frecuencia con la que los usuarios vuelven a tu sitio web." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Buscar" } ], + "label.select": [ + { + "type": 0, + "value": "Seleccionar" + } + ], "label.select-date": [ { "type": 0, "value": "Seleccionar fecha" } ], + "label.select-role": [ + { + "type": 0, + "value": "Seleccionar rol" + } + ], "label.select-website": [ { "type": 0, "value": "Seleccionar sitio web" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Un solo día" } ], + "label.start-step": [ + { + "type": 0, + "value": "Paso inical" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Pasos" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Equipo" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Invitado al equipo" - } - ], "label.team-id": [ { "type": 0, "value": "ID del equipo" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Jefe de equipo" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Admin. del equipo" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Vista solo del equipo" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Código de rastreo" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferir" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transferir sitio web" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Visitantes únicos" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Sin título" } ], + "label.update": [ + { + "type": 0, + "value": "Actualizar" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "Usuario" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Usuarios" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Realice un seguimiento de sus campañas a través de parámetros UTM." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Vistas" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vistas por visita" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tiempo promedio de visita" + } + ], "label.visitors": [ { "type": 0, "value": "Visitantes" } ], + "label.visits": [ + { + "type": 0, + "value": "Visitas" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Ayer" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Escriba " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " en el cuadro a continuación para confirmar." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Datos obtenidos" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "¿Estás seguro de que desea eliminar " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "Para borrar esta cuenta, escribe " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " a continuación para confirmar." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Para borrar este sitio web, escribe " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " a continuación para confirmar." + "value": "Al eliminar un equipo, también se eliminarán todos los sitios web del equipo." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Código de rastreo" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "¿Transferir este sitio web a su cuenta?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Seleccione el equipo al que transferir este sitio web." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Seleccione el equipo al que transferir este sitio web." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Evento lanzado" + } + ], "message.user-deleted": [ { "type": 0, "value": "Usuario eliminado." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Página vista" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Los visitantes salieron" + } ] } diff --git a/public/intl/messages/es-MX.json b/public/intl/messages/es-MX.json index c3ef099df..9dc4b4c96 100644 --- a/public/intl/messages/es-MX.json +++ b/public/intl/messages/es-MX.json @@ -11,7 +11,7 @@ "value": "Acciones" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Registro de actividad" @@ -71,7 +71,7 @@ "value": "Average" } ], - "label.average-visit-time": [ + "label.visit-duration": [ { "type": 0, "value": "Tiempo promedio de visita" diff --git a/public/intl/messages/fa-IR.json b/public/intl/messages/fa-IR.json index e09b155b6..34b9a3633 100644 --- a/public/intl/messages/fa-IR.json +++ b/public/intl/messages/fa-IR.json @@ -11,7 +11,7 @@ "value": "اقدامات" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "میانگین زمان بازدید" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "حذف" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "فعال کردن اشتراک گذاری URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "رویدادها" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " ساعت گذشته" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "خروج" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "بیشتر" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "رمز" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "پروفایل" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "یک روز" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "کد رهگیری" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "بازدیدکننده‌های یکتا" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "بازدید" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "میانگین زمان بازدید" + } + ], "label.visitors": [ { "type": 0, "value": "بازدیدکننده" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": " مطمئن هستید?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "کد رهگیری" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/fi-FI.json b/public/intl/messages/fi-FI.json index 2130f82cd..9a1f066f2 100644 --- a/public/intl/messages/fi-FI.json +++ b/public/intl/messages/fi-FI.json @@ -11,7 +11,7 @@ "value": "Toiminnat" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Keskimääräinen vierailuaika" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Poista" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Ota jakamisen URL-osoite käyttöön" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Tapahtumat" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " tuntia" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Kirjaudu ulos" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Lisää" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Salasana" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profiili" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Yksi päivä" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Seurantakoodi" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Yksittäiset kävijät" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Näyttökerrat" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Keskimääräinen vierailuaika" + } + ], "label.visitors": [ { "type": 0, "value": "Vierailijat" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": " tilastot?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Seurantakoodi" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/fo-FO.json b/public/intl/messages/fo-FO.json index bc11c56e1..f6bdf4ca6 100644 --- a/public/intl/messages/fo-FO.json +++ b/public/intl/messages/fo-FO.json @@ -11,7 +11,7 @@ "value": "Gerðir" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Miðal vitjurnartíð " - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Sletta" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Virkja deili leinki" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Hendingar/tiltøk" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " tímarnar" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Rita út" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Meira" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Loyniorð" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Vangi" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Einkultur dagur" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Spori kota" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Einsýna vitjanir" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Sýningar" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Miðal vitjurnartíð " + } + ], "label.visitors": [ { "type": 0, "value": "Vitjandi" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Spori kota" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/fr-FR.json b/public/intl/messages/fr-FR.json index 99937de70..ba620b605 100644 --- a/public/intl/messages/fr-FR.json +++ b/public/intl/messages/fr-FR.json @@ -11,7 +11,7 @@ "value": "Actions" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Journal d'activité" @@ -29,6 +29,18 @@ "value": "Ajouter une description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Ajouter un membre" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Ajouter une étape" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Moyenne" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Temps de visite moyen" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Réinitialiser" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continuer" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Créé" } ], + "label.created-by": [ + { + "type": 0, + "value": "Crée par" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Supprimer" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Supprimer le rapport" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Modifier le tableau de bord" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Modifier le membre" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Activer l'URL de partage" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL d'entrée" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Évènements" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filtres" } ], + "label.first-seen": [ + { + "type": 0, + "value": "Vu pour la première fois" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Suivi des conversions et des taux d'abandons." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Suivez vos objectifs en matière de pages vues et d'événements." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Supérieur ou égal à" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Rejoindre une équipe" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Comprendre comment les utilisateurs naviguent sur votre site web." + } + ], "label.language": [ { "type": 0, @@ -523,6 +631,22 @@ "value": " dernières heures" } ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " derniers mois" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -559,12 +683,30 @@ "value": "Déconnexion" } ], + "label.manage": [ + { + "type": 0, + "value": "Gérer" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Membre" + } + ], "label.members": [ { "type": 0, @@ -589,6 +731,12 @@ "value": "Plus" } ], + "label.my-account": [ + { + "type": 0, + "value": "Mon compte" + } + ], "label.my-websites": [ { "type": 0, @@ -610,7 +758,47 @@ "label.none": [ { "type": 0, - "value": "Aucun·e" + "value": "Aucun" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "enregistrement" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "enregistrements" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" } ], "label.os": [ @@ -673,6 +861,18 @@ "value": "Mot de passe" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -683,12 +883,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Précédent" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Période précédente" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Année précédente" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Propriétés" + } + ], + "label.property": [ + { + "type": 0, + "value": "Propriété" + } + ], "label.queries": [ { "type": 0, @@ -755,6 +985,12 @@ "value": "Retirer" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Retirer le membre" + } + ], "label.reports": [ { "type": 0, @@ -788,7 +1024,25 @@ "label.retention-description": [ { "type": 0, - "value": "Mesure de l'atractivité du site en visualisant les taux d'utilisateurs qui reviennent." + "value": "Mesure de l'attractivité du site en visualisant les taux de visiteurs qui reviennent." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Examinez vos revenus au fil du temps." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Propriétés des revenues" } ], "label.role": [ @@ -821,18 +1075,36 @@ "value": "Rechercher" } ], + "label.select": [ + { + "type": 0, + "value": "Selectionner" + } + ], "label.select-date": [ { "type": 0, "value": "Choisir une période" } ], + "label.select-role": [ + { + "type": 0, + "value": "Choisir un rôle" + } + ], "label.select-website": [ { "type": 0, "value": "Choisir un site" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -857,6 +1129,18 @@ "value": "Journée" } ], + "label.start-step": [ + { + "type": 0, + "value": "Etape de démarrage" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Étapes" + } + ], "label.sum": [ { "type": 0, @@ -875,18 +1159,18 @@ "value": "Équipe" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Invité dans l'équipe" - } - ], "label.team-id": [ { "type": 0, "value": "ID d'équipe" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Manager de l'équipe" + } + ], "label.team-member": [ { "type": 0, @@ -905,6 +1189,12 @@ "value": "Propriétaire de l'équipe" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Vue d'équipe uniquement" + } + ], "label.team-websites": [ { "type": 0, @@ -983,6 +1273,24 @@ "value": "Code de suivi" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transférer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transférer le site" + } + ], "label.true": [ { "type": 0, @@ -1007,6 +1315,12 @@ "value": "Visiteurs uniques" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clients uniques" + } + ], "label.unknown": [ { "type": 0, @@ -1019,6 +1333,12 @@ "value": "Sans titre" } ], + "label.update": [ + { + "type": 0, + "value": "Modifier" + } + ], "label.url": [ { "type": 0, @@ -1037,6 +1357,12 @@ "value": "Utilisateur" } ], + "label.user-property": [ + { + "type": 0, + "value": "Propriétés d'utilisateurs" + } + ], "label.username": [ { "type": 0, @@ -1049,6 +1375,18 @@ "value": "Utilisateurs" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Suivi de campagnes via les paramètres UTM." + } + ], "label.value": [ { "type": 0, @@ -1079,12 +1417,30 @@ "value": "Vues" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vues par visite" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Temps de visite moyen" + } + ], "label.visitors": [ { "type": 0, "value": "Visiteurs" } ], + "label.visits": [ + { + "type": 0, + "value": "Visites" + } + ], "label.website": [ { "type": 0, @@ -1115,6 +1471,20 @@ "value": "Hier" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Taper " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " ci-dessous pour confirmer." + } + ], "message.active-users": [ { "type": 1, @@ -1153,6 +1523,12 @@ "value": " actuellement" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1181,6 +1557,20 @@ "value": " ?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Êtes-vous sûr de vouloir retirer " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1195,32 +1585,10 @@ "value": " ?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "Pour supprimer ce compte, taper " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " ci-dessous pour confirmer." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Pour supprimer ce site, taper " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " ci-dessous pour confirmer." + "value": "Supprimer une équipe supprimera aussi tous les sites de cette équipe." } ], "message.delete-website-warning": [ @@ -1405,12 +1773,42 @@ "value": "Code de suivi" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transférer ce site sur votre compte ?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Choisir l'équipe à laquelle transférer ce site." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transférer la propriété du site sur votre compte ou à une autre équipe." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Évènement déclenché" + } + ], "message.user-deleted": [ { "type": 0, "value": "Utilisateur supprimé." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Page vue" + } + ], "message.visitor-log": [ { "type": 0, @@ -1444,5 +1842,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visiteurs ont abandonné" + } ] } diff --git a/public/intl/messages/ga-ES.json b/public/intl/messages/ga-ES.json index b5fabeffe..6ce820e69 100644 --- a/public/intl/messages/ga-ES.json +++ b/public/intl/messages/ga-ES.json @@ -11,7 +11,7 @@ "value": "Accións" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Tempo medio de visita" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Eliminar" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Activar URL de compartición" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Eventos" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " horas" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Pechar sesión" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Máis" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Contrasinal" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Perfil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -807,6 +1047,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -837,18 +1095,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -873,6 +1149,18 @@ "value": "Un só día" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -891,18 +1179,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -921,6 +1209,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -999,6 +1293,24 @@ "value": "Código de seguimento" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1023,6 +1335,12 @@ "value": "Visitas únicas" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1035,6 +1353,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1053,6 +1377,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1065,6 +1395,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1095,12 +1437,30 @@ "value": "Visualizacións" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo medio de visita" + } + ], "label.visitors": [ { "type": 0, "value": "Visitantes" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1131,6 +1491,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1165,6 +1539,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1193,6 +1573,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1207,32 +1601,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1425,12 +1797,42 @@ "value": "Código de seguimento" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1464,5 +1866,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/he-IL.json b/public/intl/messages/he-IL.json index 16f625257..d3ada47cc 100644 --- a/public/intl/messages/he-IL.json +++ b/public/intl/messages/he-IL.json @@ -11,7 +11,7 @@ "value": "פעולות" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "זמן ביקור ממוצע" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "הסרה" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "הפעלת URL שיתוף" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "אירועים" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -523,6 +631,26 @@ "value": " שעות אחרונות" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -559,12 +687,30 @@ "value": "התנתקות" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -589,6 +735,12 @@ "value": "עוד" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -613,6 +765,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -673,6 +865,18 @@ "value": "סיסמה" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -683,12 +887,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "פרופיל" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -755,6 +989,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -791,6 +1031,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -821,18 +1079,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -857,6 +1133,18 @@ "value": "יום בודד" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -875,18 +1163,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -905,6 +1193,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -983,6 +1277,24 @@ "value": "קוד מעקב" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1007,6 +1319,12 @@ "value": "מבקרים ייחודיים" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1019,6 +1337,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1037,6 +1361,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1049,6 +1379,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1079,12 +1421,30 @@ "value": "צפיות" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "זמן ביקור ממוצע" + } + ], "label.visitors": [ { "type": 0, "value": "מבקרים" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1115,6 +1475,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1149,6 +1523,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1177,6 +1557,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1191,32 +1585,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1405,12 +1777,42 @@ "value": "קוד מעקב" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1444,5 +1846,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/hi-IN.json b/public/intl/messages/hi-IN.json index df3bcb401..fc133a934 100644 --- a/public/intl/messages/hi-IN.json +++ b/public/intl/messages/hi-IN.json @@ -11,7 +11,7 @@ "value": "कार्य" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "औसत दृश्य समय" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "खाता हटाएं" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "शेयर URL सक्षम करें" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "स्पर्धाएँ" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " घंटे" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "लॉग आउट" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "और" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "पासवर्ड" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 1, @@ -691,12 +895,42 @@ "value": " द्वारा संचालित" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "प्रोफ़ाइल" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "एक दिन" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "ट्रैकिंग कोड" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "अद्वितीय आगंतुकों" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "दृश्य" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "औसत दृश्य समय" + } + ], "label.visitors": [ { "type": 0, "value": "आगंतुकों" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "ट्रैकिंग कोड" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 1, @@ -1448,5 +1850,11 @@ "type": 0, "value": " यन्त्र पर" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/hr-HR.json b/public/intl/messages/hr-HR.json index 8388dd486..4718f0c2f 100644 --- a/public/intl/messages/hr-HR.json +++ b/public/intl/messages/hr-HR.json @@ -11,7 +11,7 @@ "value": "Actions" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Average visit time" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Obriši" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Omogući dijeljenje poveznice" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Events" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " sati" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Odjava" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Više" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "Ništa" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Lozinka" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Jedan dan" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Kod za praćenje" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unique visitors" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Views" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], "label.visitors": [ { "type": 0, "value": "Visitors" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Jučer" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistiku?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1431,12 +1803,42 @@ "value": " section of your HTML." } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1470,5 +1872,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/hu-HU.json b/public/intl/messages/hu-HU.json index c3da1af06..6c51c3dc3 100644 --- a/public/intl/messages/hu-HU.json +++ b/public/intl/messages/hu-HU.json @@ -11,7 +11,7 @@ "value": "Műveletek" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Átlagos látogatási idő" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Eltávolítás" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "URL-megosztás engedélyezése" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Események" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " óra" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Kijelentkezés" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Bővebben" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Jelszó" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Egy nap" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Követési kód" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Egyedi látogatók" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Megtekintések" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Átlagos látogatási idő" + } + ], "label.visitors": [ { "type": 0, "value": "Látogatók" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1161,6 +1535,12 @@ "value": " jelenleg" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1189,6 +1569,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1203,32 +1597,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Követési kód" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1460,5 +1862,11 @@ "type": 0, "value": " böngészőből." } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/id-ID.json b/public/intl/messages/id-ID.json index eda5c0b3e..c6bb04a28 100644 --- a/public/intl/messages/id-ID.json +++ b/public/intl/messages/id-ID.json @@ -11,7 +11,7 @@ "value": "Aksi" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Waktu kunjungan rata-rata" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Hapus" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Aktifkan URL berbagi" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Perihal" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -523,6 +631,26 @@ "value": " jam terakhir" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -559,12 +687,30 @@ "value": "Keluar" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -589,6 +735,12 @@ "value": "Lebih banyak" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -613,6 +765,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -673,6 +865,18 @@ "value": "Kata sandi" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -683,12 +887,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -755,6 +989,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -791,6 +1031,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -821,18 +1079,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -857,6 +1133,18 @@ "value": "Sehari" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -875,18 +1163,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -905,6 +1193,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -983,6 +1277,24 @@ "value": "Kode lacak" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1007,6 +1319,12 @@ "value": "Pengunjung unik" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1019,6 +1337,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1037,6 +1361,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1049,6 +1379,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1079,12 +1421,30 @@ "value": "Tampilan" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Waktu kunjungan rata-rata" + } + ], "label.visitors": [ { "type": 0, "value": "Pengunjung" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1115,6 +1475,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1125,6 +1499,12 @@ "value": " pengunjung saat ini" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1153,6 +1533,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1167,32 +1561,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1385,12 +1757,42 @@ "value": "Kode lacak" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1424,5 +1826,11 @@ "type": 1, "value": "os" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/it-IT.json b/public/intl/messages/it-IT.json index bdc015f5a..38e611363 100644 --- a/public/intl/messages/it-IT.json +++ b/public/intl/messages/it-IT.json @@ -11,7 +11,7 @@ "value": "Azioni" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Tempo medio di visita" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Elimina" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Abilita URL di condivisione" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Eventi" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " ore" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Esci" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Dettagli" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Password" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profilo" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Singolo giorno" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Codice di tracking" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Visitatori unici" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Visualizzazioni" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo medio di visita" + } + ], "label.visitors": [ { "type": 0, "value": "Visitatori" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Ieri" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1161,6 +1535,12 @@ "value": " online" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1189,6 +1569,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1203,32 +1597,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1421,12 +1793,42 @@ "value": "Codice di tracking" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1460,5 +1862,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/ja-JP.json b/public/intl/messages/ja-JP.json index 4e2a8fc47..abb2c27c3 100644 --- a/public/intl/messages/ja-JP.json +++ b/public/intl/messages/ja-JP.json @@ -11,7 +11,7 @@ "value": "アクション" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "アクティビティログ" @@ -29,6 +29,18 @@ "value": "説明を追加" } ], + "label.add-member": [ + { + "type": 0, + "value": "メンバーの追加" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "ステップを追加" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "平均" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "平均滞在時間" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "すべてクリア" } ], + "label.compare": [ + { + "type": 0, + "value": "比較" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "続ける" } ], + "label.count": [ + { + "type": 0, + "value": "回数" + } + ], "label.countries": [ { "type": 0, @@ -182,7 +200,7 @@ "label.create": [ { "type": 0, - "value": "Create" + "value": "作成" } ], "label.create-report": [ @@ -209,6 +227,18 @@ "value": "作成されました" } ], + "label.created-by": [ + { + "type": 0, + "value": "作成者" + } + ], + "label.current": [ + { + "type": 0, + "value": "現在" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "削除" } ], + "label.delete-report": [ + { + "type": 0, + "value": "レポートの削除" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "ダッシュボードの編集" } ], + "label.edit-member": [ + { + "type": 0, + "value": "メンバーの編集" + } + ], "label.enable-share-url": [ { "type": 0, "value": "共有URLを有効にする" } ], + "label.end-step": [ + { + "type": 0, + "value": "最終ステップ" + } + ], + "label.entry": [ + { + "type": 0, + "value": "訪問時のURL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "イベント" } ], + "label.exit": [ + { + "type": 0, + "value": "退出時のURL" + } + ], "label.false": [ { "type": 0, @@ -392,13 +452,13 @@ "label.filter": [ { "type": 0, - "value": "Filter" + "value": "フィルター" } ], "label.filter-combined": [ { "type": 0, - "value": "統合" + "value": "結合" } ], "label.filter-raw": [ @@ -413,16 +473,40 @@ "value": "フィルター" } ], + "label.first-seen": [ + { + "type": 0, + "value": "初回ログイン" + } + ], "label.funnel": [ { "type": 0, - "value": "分析" + "value": "ファネル" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "ユーザーのコンバージョン率と離脱率を分析します。" + } + ], + "label.goal": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "ページビューとイベントの目標を追跡します。" } ], "label.greater-than": [ @@ -437,16 +521,28 @@ "value": "以上" } ], + "label.host": [ + { + "type": 0, + "value": "ホスト" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "ホスト" + } + ], "label.insights": [ { "type": 0, - "value": "見通し" + "value": "インサイト" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "セグメントとフィルタを使用して、データをさらに詳しく分析します。" } ], "label.is": [ @@ -485,6 +581,18 @@ "value": "チームに参加" } ], + "label.journey": [ + { + "type": 0, + "value": "ジャーニー" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "ユーザーがWebサイト内をどのように移動するかを把握します。" + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": "時間" } ], + "label.last-months": [ + { + "type": 0, + "value": "過去" + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "月間" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "最終ログイン" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "ログアウト" } ], + "label.manage": [ + { + "type": 0, + "value": "管理" + } + ], + "label.manager": [ + { + "type": 0, + "value": "管理者" + } + ], "label.max": [ { "type": 0, "value": "最大" } ], + "label.member": [ + { + "type": 0, + "value": "メンバー" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "もっと見る" } ], + "label.my-account": [ + { + "type": 0, + "value": "マイアカウント" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "なし" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "パスワード" } ], + "label.path": [ + { + "type": 0, + "value": "パス" + } + ], + "label.paths": [ + { + "type": 0, + "value": "パス" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "以前" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "前期" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "前年" + } + ], "label.profile": [ { "type": 0, "value": "プロフィール" } ], + "label.properties": [ + { + "type": 0, + "value": "プロパティ" + } + ], + "label.property": [ + { + "type": 0, + "value": "プロパティ" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "削除" } ], + "label.remove-member": [ + { + "type": 0, + "value": "メンバーの削除" + } + ], "label.reports": [ { "type": 0, @@ -790,13 +1030,31 @@ "label.retention": [ { "type": 0, - "value": "保持" + "value": "リテンション" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "ユーザーの再訪問回数を記録して、Webサイトのリテンション率を計測します。" + } + ], + "label.revenue": [ + { + "type": 0, + "value": "レベニュー" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "時間あたりの売上高を確認します。" + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "レベニュープロパティ" } ], "label.role": [ @@ -826,7 +1084,13 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "検索" + } + ], + "label.select": [ + { + "type": 0, + "value": "選択" } ], "label.select-date": [ @@ -835,12 +1099,24 @@ "value": "日付を選択" } ], + "label.select-role": [ + { + "type": 0, + "value": "ロールを選択" + } + ], "label.select-website": [ { "type": 0, "value": "Webサイトを選択" } ], + "label.session": [ + { + "type": 0, + "value": "セッション" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "一日" } ], + "label.start-step": [ + { + "type": 0, + "value": "最初のステップ" + } + ], + "label.steps": [ + { + "type": 0, + "value": "ステップ" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "チーム" } ], - "label.team-guest": [ - { - "type": 0, - "value": "チームゲスト" - } - ], "label.team-id": [ { "type": 0, "value": "チームID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "チーム管理者" + } + ], "label.team-member": [ { "type": 0, @@ -910,7 +1198,13 @@ "label.team-owner": [ { "type": 0, - "value": "チーム所有者" + "value": "チームオーナー" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "チーム表示のみ" } ], "label.team-websites": [ @@ -991,6 +1285,24 @@ "value": "トラッキングコード" } ], + "label.transactions": [ + { + "type": 0, + "value": "トランザクション" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "移管" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Webサイトの移管" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "ユニーク訪問者数" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "ユニーク顧客数" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "無題" } ], + "label.update": [ + { + "type": 0, + "value": "更新" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "ユーザー" } ], + "label.user-property": [ + { + "type": 0, + "value": "ユーザープロパティ" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "ユーザー" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "UTMパラメーターを使用してキャンペーンを追跡します。" + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "表示" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "訪問あたりの閲覧数" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "平均滞在時間" + } + ], "label.visitors": [ { "type": 0, "value": "訪問者" } ], + "label.visits": [ + { + "type": 0, + "value": "訪問数" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "昨日" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "承認する場合は、下のフォームに「" + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "」と入力してください。" + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "収集されたデータ" + } + ], "message.confirm-delete": [ { "type": 1, @@ -1177,6 +1557,16 @@ "value": "から離脱してもよろしいですか?" } ], + "message.confirm-remove": [ + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "を削除してもよろしいですか?" + } + ], "message.confirm-reset": [ { "type": 1, @@ -1187,32 +1577,10 @@ "value": "をリセットしてもよろしいですか?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "このアカウントを削除するには、下のフォームに「" - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": "」と入力してください。" - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "このWebサイトを削除するには、下のフォームに「" - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": "」と入力してください。" + "value": "チームを削除すると、そのチームが管理しているWebサイトもすべて削除されます。" } ], "message.delete-website-warning": [ @@ -1411,12 +1779,42 @@ "value": "セクションに以下のコードを記述します。" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "このWebサイトをあなたのアカウントに移管しますか?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "このWebサイトを移管するチームを選択してください。" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Webサイトの所有権を自分のアカウントまたは別のチームへ移管します。" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "トリガーされたイベント" + } + ], "message.user-deleted": [ { "type": 0, "value": "ユーザーが削除されました。" } ], + "message.viewed-page": [ + { + "type": 0, + "value": "閲覧されたページ" + } + ], "message.visitor-log": [ { "type": 1, @@ -1450,5 +1848,11 @@ "type": 0, "value": "からの訪問者" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "訪問者の離脱率" + } ] } diff --git a/public/intl/messages/km-KH.json b/public/intl/messages/km-KH.json index 68c71ebbd..ca8a40a93 100644 --- a/public/intl/messages/km-KH.json +++ b/public/intl/messages/km-KH.json @@ -11,22 +11,34 @@ "value": "សកម្មភាព" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "កំណត់ហេតុ​សកម្មភាព" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "បង្កើតបន្ថែម" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "បន្ថែមពិពណ៌នា" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "បន្ថែមសមាជិក" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "បន្ថែមជំហាន" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "បន្ទាប់" } ], "label.all": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "មើលជាមធ្យម" + "value": "ជាមធ្យម" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "មុន" } ], "label.bounce-rate": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "ទីក្រុង" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "ទីក្រុង" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "លុបទាំងអស់" + } + ], + "label.compare": [ + { + "type": 0, + "value": "ប្រៀបធៀប" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "បញ្ជាក់" } ], "label.confirm-password": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "មាន" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "បន្ត" + } + ], + "label.count": [ + { + "type": 0, + "value": "ចំនួន" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "ប្រទេស" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "បង្កើត" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "បង្កើតរបាយការណ៍" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "បង្កើតក្រុម" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "បង្កើតអ្នកប្រើប្រាស់" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "បង្កើតនៅ" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "បង្កើតដោយ" + } + ], + "label.current": [ + { + "type": 0, + "value": "បច្ចុប្បន្ន" } ], "label.current-password": [ @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "ទិន្នន័យ" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "កាលបរិច្ឆេទ" } ], "label.date-range": [ @@ -248,13 +278,13 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "ថ្ងៃ" } ], "label.default-date-range": [ { "type": 0, - "value": "ចន្លោះកាលបរិច្ឆេទស្រាប់" + "value": "ចន្លោះកាលបរិច្ឆេទដើម" } ], "label.delete": [ @@ -263,16 +293,22 @@ "value": "លុប" } ], + "label.delete-report": [ + { + "type": 0, + "value": "លុបរបាយការណ៍" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "លុបក្រុម" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "លុបអ្នកប្រើប្រាស់" } ], "label.delete-website": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "ការពិពណ៌នា" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "ព័ត៌មានលម្អិត" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "ឧបករណ៍" } ], "label.devices": [ @@ -314,19 +350,19 @@ "label.dismiss": [ { "type": 0, - "value": "បដិសេធ" + "value": "រំសាយ" } ], "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "មិនមាន" } ], "label.domain": [ { "type": 0, - "value": "ឈ្មោះគេហទំព័រ" + "value": "Domain" } ], "label.dropoff": [ @@ -347,22 +383,40 @@ "value": "កែផ្ទាំងគ្រប់គ្រង" } ], + "label.edit-member": [ + { + "type": 0, + "value": "កែព័ត៌មានសមាជិក" + } + ], "label.enable-share-url": [ { "type": 0, "value": "បើកការចែករំលែក URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "បញ្ចប់ជំហាន" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL ចូល" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "ព្រឹត្តិការណ៍" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "ទិន្នន័យព្រឹត្តិការណ៍" } ], "label.events": [ @@ -371,10 +425,16 @@ "value": "ព្រឹត្តិការណ៍" } ], + "label.exit": [ + { + "type": 0, + "value": "URL ចេញ" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "មិនពិត" } ], "label.field": [ @@ -392,7 +452,7 @@ "label.filter": [ { "type": 0, - "value": "Filter" + "value": "ចម្រោះ" } ], "label.filter-combined": [ @@ -410,7 +470,13 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "ចម្រោះ" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ @@ -425,16 +491,46 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "គោលដៅ" + } + ], + "label.goals": [ + { + "type": 0, + "value": "គោលដៅ" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "តាមដានគោលដៅរបស់អ្នកសម្រាប់ pageviews និង events។" + } + ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "ធំជាង" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "ធំជាងឬស្មើ" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ @@ -452,37 +548,49 @@ "label.is": [ { "type": 0, - "value": "Is" + "value": "គឺ" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "មិនមែន" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "មិនបានកំណត់" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "បានកំណត់" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "ចូលរួម" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "ចូលក្រុម" + } + ], + "label.journey": [ + { + "type": 0, + "value": "​ដំណើរ" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "ស្វែងយល់ពីការប្រើប្រាស់គេហទំព័ររបស់អតិថិជនអ្នក។" } ], "label.language": [ @@ -510,7 +618,7 @@ }, { "type": 0, - "value": " ថ្ងៃមុន" + "value": " ថ្ងៃចុងក្រោយ" } ], "label.last-hours": [ @@ -520,31 +628,47 @@ }, { "type": 0, - "value": " ម៉ោងមុន" + "value": " ម៉ោងចុងក្រោយ" + } + ], + "label.last-months": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ខែចុងក្រោយ" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" } ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "ចាកចេញ" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "ចេញពីក្រុម" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "តិច​ជាង" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "តិចជាង ឬស្មើ" } ], "label.login": [ @@ -556,7 +680,19 @@ "label.logout": [ { "type": 0, - "value": "ចេញ" + "value": "Logout" + } + ], + "label.manage": [ + { + "type": 0, + "value": "គ្រប់គ្រង" + } + ], + "label.manager": [ + { + "type": 0, + "value": "អ្នកគ្រប់គ្រង" } ], "label.max": [ @@ -565,10 +701,16 @@ "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "សមាជិក" + } + ], "label.members": [ { "type": 0, - "value": "Members" + "value": "សមាជិក" } ], "label.min": [ @@ -589,10 +731,16 @@ "value": "បន្ថែម" } ], + "label.my-account": [ + { + "type": 0, + "value": "គណនី​របស់ខ្ញុំ" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "គេហទំព័ររបស់ខ្ញុំ" } ], "label.name": [ @@ -613,6 +761,46 @@ "value": "មិនមាន" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -622,7 +810,7 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "ទិដ្ឋភាពរួម" } ], "label.owner": [ @@ -634,7 +822,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "ទំព័រទី " }, { "type": 1, @@ -642,7 +830,7 @@ }, { "type": 0, - "value": " of " + "value": " នៃ " }, { "type": 1, @@ -658,7 +846,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "ចំណងជើងទំព័រ" } ], "label.pages": [ @@ -673,6 +861,18 @@ "value": "ពាក្យសម្ងាត់​" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -683,10 +883,40 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "មុន" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "មួយរយៈពេលមុន" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "ឆ្នាំ​មុន" + } + ], "label.profile": [ { "type": 0, - "value": "ប្រវត្តិរូប" + "value": "គណនី" + } + ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" } ], "label.queries": [ @@ -716,7 +946,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "អ្នកណែនាំ" } ], "label.referrers": [ @@ -740,25 +970,31 @@ "label.region": [ { "type": 0, - "value": "Region" + "value": "តំបន់" } ], "label.regions": [ { "type": 0, - "value": "Regions" + "value": "តំបន់" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "លុប" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "លុបសមាជិកក្រុម" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "របាយការណ៍" } ], "label.required": [ @@ -770,7 +1006,7 @@ "label.reset": [ { "type": 0, - "value": "កំណត់ឡើងវិញ" + "value": "កែសម្រួល" } ], "label.reset-website": [ @@ -782,7 +1018,7 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "ការរក្សាទុក" } ], "label.retention-description": [ @@ -791,10 +1027,28 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, - "value": "Role" + "value": "មុខងារ" } ], "label.run-query": [ @@ -818,19 +1072,37 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "ស្វែងរក" + } + ], + "label.select": [ + { + "type": 0, + "value": "ជ្រើសរើស" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "ជ្រើសរើសកាលបរិច្ឆេទ" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "ជ្រើសរើសមុខងារ" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "ជ្រើសរើសគេហទំព័រ" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" } ], "label.sessions": [ @@ -857,6 +1129,18 @@ "value": "ថ្ងៃតែមួយ" } ], + "label.start-step": [ + { + "type": 0, + "value": "ជំហានចាប់ផ្តើម" + } + ], + "label.steps": [ + { + "type": 0, + "value": "ជំហាន" + } + ], "label.sum": [ { "type": 0, @@ -872,49 +1156,55 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "ក្រុម" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "ID ក្រុម" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "អ្នកគ្រប់គ្រងក្រុម" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "សមាជិកក្រុម" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "ឈ្មោះក្រុម" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "ម្ចាស់ក្រុម" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "គេហទំព័ររបស់ក្រុម" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "ក្រុម" } ], "label.theme": [ @@ -950,7 +1240,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "ចំណងជើង" } ], "label.today": [ @@ -968,13 +1258,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "សរុប" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "កំណត់ត្រាសរុប" } ], "label.tracking-code": [ @@ -983,10 +1273,28 @@ "value": "លេខកូដតាមដាន" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "ការផ្ទេរ" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "ការផ្ទេរគេហទំព័រ" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "ពិត" } ], "label.type": [ @@ -1007,6 +1315,12 @@ "value": "អ្នកចូលមើលម្នាក់ៗ" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1016,7 +1330,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "គ្មានចំណងជើង" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" } ], "label.url": [ @@ -1034,7 +1354,13 @@ "label.user": [ { "type": 0, - "value": "User" + "value": "អ្នកប្រើប្រាស់" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" } ], "label.username": [ @@ -1046,7 +1372,19 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "អ្នកប្រើប្រាស់" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "តាមដានយុទ្ធនាការរបស់អ្នកតាមរយៈប៉ារ៉ាម៉ែត្រ UTM។" } ], "label.value": [ @@ -1070,7 +1408,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "បានតែមើលប៉ុណ្ណោះ" } ], "label.views": [ @@ -1079,22 +1417,40 @@ "value": "អ្នកចូលមើល" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "រយៈពេលទស្សនា" + } + ], "label.visitors": [ { "type": 0, "value": "អ្នកទស្សនា" } ], + "label.visits": [ + { + "type": 0, + "value": "ទស្សនា" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "គេហទំព័រ" } ], "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "ID គេហទំព័រ" } ], "label.websites": [ @@ -1115,6 +1471,20 @@ "value": "ម្សិលមិញ" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "សសេរ " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " នៅក្នុងប្រអប់ខាងក្រោមដើម្បីបញ្ជាក់។" + } + ], "message.active-users": [ { "type": 0, @@ -1129,6 +1499,12 @@ "value": " នាក់ ឥលូវនេះ" } ], + "message.collected-data": [ + { + "type": 0, + "value": "ទិន្នន័យដែលបានប្រមូលទុក" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1146,7 +1522,7 @@ "message.confirm-leave": [ { "type": 0, - "value": "Are you sure you want to leave " + "value": "តើអ្នកប្រាកដថាចង់ចាកចេញ " }, { "type": 1, @@ -1154,7 +1530,21 @@ }, { "type": 0, - "value": "?" + "value": " ទេ?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "តើអ្នកប្រាកដថាចង់លុប " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ទេ?" } ], "message.confirm-reset": [ @@ -1171,38 +1561,16 @@ "value": " ឡើងវិញទេ?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "ពេលលុបក្រុម គេហទំព័ររបស់ក្រុមក៏នឹងត្រូវលប់ចោលទាំងអស់ផងដែរ។" } ], "message.delete-website-warning": [ { "type": 0, - "value": "ទិន្នន័យដែលពាក់ព័ន្ធទាំងអស់នឹងត្រូវបានលុបផងដែរ។" + "value": "ទិន្នន័យរបស់គេហទំព័រទាំងអស់នឹងត្រូវលុបចោល។" } ], "message.error": [ @@ -1234,19 +1602,19 @@ "message.incorrect-username-password": [ { "type": 0, - "value": "ឈ្មោះអ្នកប្រើ/ពាក្យសម្ងាត់មិនត្រឹមត្រូវ។" + "value": "ឈ្មោះអ្នកប្រើឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ។" } ], "message.invalid-domain": [ { "type": 0, - "value": "ឈ្មោះគេហទំព័រមិន​ត្រឹមត្រូវ" + "value": "Domain មិន​ត្រឹមត្រូវ" } ], "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "តិចបំផុតដែលមានអក្សរ " }, { "type": 1, @@ -1254,13 +1622,13 @@ }, { "type": 0, - "value": " characters" + "value": " តួអក្សរ" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Version ថ្មីនៃ Umami " }, { "type": 1, @@ -1268,49 +1636,49 @@ }, { "type": 0, - "value": " is available!" + "value": " អាចប្រើប្រាស់បានហើយ!" } ], "message.no-data-available": [ { "type": 0, - "value": "មិនមានទិន្នន័យទេ។" + "value": "មិនមានទិន្នន័យ។" } ], "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "មិនមានទិន្នន័យព្រឹត្តិការណ៍ទេ។" } ], "message.no-match-password": [ { "type": 0, - "value": "ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ" + "value": "ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ។" } ], "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "មិនមានលទ្ធផល។" } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "ក្រុមនេះមិនមានគេហទំព័រទេ។" } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "អ្នកមិនទាន់បានបង្កើតក្រុមណាមួយទេ។" } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "មិនមានអ្នកប្រើប្រាស់ទេ។" } ], "message.no-websites-configured": [ @@ -1328,7 +1696,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "ដើម្បីកែគេហទំព័រនេះឡើងវិញ សូមសរសេរ " }, { "type": 1, @@ -1336,7 +1704,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " នៅក្នុងប្រអប់ខាងក្រោមដើម្បីបញ្ជាក់។" } ], "message.reset-website-warning": [ @@ -1354,7 +1722,7 @@ "message.share-url": [ { "type": 0, - "value": "នេះគឺជា URL ដែលបានចែករំលែកជាសាធារណៈសម្រាប់ " + "value": "នេះគឺជា URL ដែលអាចចែករំលែកជាសាធារណៈបានសម្រាប់ " }, { "type": 1, @@ -1368,31 +1736,75 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "អ្នកគឺជាសមាជិកនៃក្រុមរួចហើយ។" } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "រកក្រុមមិនឃើញទេ។" } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "គេហទំព័រនេះអាចមើលបានតែសមាជិកក្រុមតែប៉ុណ្ណោះ" } ], "message.tracking-code": [ { "type": 0, - "value": "លេខកូដតាមដាន" + "value": "ដើម្បីតាមដានស្ថិតិសម្រាប់គេហទំព័រអ្នក សូមដាក់កូដខាងក្រោមទៅក្នុងផ្នែក " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " នៃ HTML របស់អ្នក។" + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "ផ្ទេរគេហទំព័រនេះទៅគណនីរបស់អ្នក។?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "ជ្រើសក្រុមដែរត្រូវផ្ទេរគេហទំព័រនេះទៅ។" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "ផ្ទេរកម្មសិទ្ធិគេហទំព័រទៅគណនីរបស់អ្នក ឬក្រុមផ្សេងទៀត។" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" } ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "អ្នកប្រើប្រាស់ត្រូវបានលុបចោល។" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "ទំព័រដែលបានមើល" } ], "message.visitor-log": [ @@ -1428,5 +1840,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "ចំនួនអ្នកទស្សនាធ្លាក់ចុះ" + } ] } diff --git a/public/intl/messages/ko-KR.json b/public/intl/messages/ko-KR.json index 5a3c90348..6fa360c15 100644 --- a/public/intl/messages/ko-KR.json +++ b/public/intl/messages/ko-KR.json @@ -2,31 +2,43 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "액세스 코드" } ], "label.actions": [ { "type": 0, - "value": "액션" + "value": "동작" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "활동" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "추가" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "설명 추가" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "멤버 추가" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "단계 추가" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "이후" } ], "label.all": [ @@ -56,25 +68,19 @@ "label.all-time": [ { "type": 0, - "value": "All time" + "value": "전체 시간" } ], "label.analytics": [ { "type": 0, - "value": "Analytics" + "value": "분석" } ], "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "평균 방문 시간" + "value": "평균" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "이전" } ], "label.bounce-rate": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "세부 사항" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "브라우저" } ], "label.browsers": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "도시" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "도시" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "모두 지우기" + } + ], + "label.compare": [ + { + "type": 0, + "value": "비교" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "확인" } ], "label.confirm-password": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "포함" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "계속" + } + ], + "label.count": [ + { + "type": 0, + "value": "수" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "국가" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "만들기" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "보고서 만들기" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "팀 만들기" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "사용자 만들기" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "생성됨" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "작성자" + } + ], + "label.current": [ + { + "type": 0, + "value": "현재" } ], "label.current-password": [ @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "데이터" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "날짜" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "일" } ], "label.default-date-range": [ @@ -263,16 +293,22 @@ "value": "삭제" } ], + "label.delete-report": [ + { + "type": 0, + "value": "보고서 삭제" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "팀 삭제" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "사용자 삭제" } ], "label.delete-website": [ @@ -284,25 +320,25 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "설명" } ], "label.desktop": [ { "type": 0, - "value": "데스크탑" + "value": "데스크톱" } ], "label.details": [ { "type": 0, - "value": "Details" + "value": "세부 정보" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "기기" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "포함하지 않음" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "이탈" } ], "label.edit": [ @@ -344,7 +380,13 @@ "label.edit-dashboard": [ { "type": 0, - "value": "Edit dashboard" + "value": "대시보드 편집" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "멤버 편집" } ], "label.enable-share-url": [ @@ -353,16 +395,28 @@ "value": "URL 공유 활성화" } ], + "label.end-step": [ + { + "type": 0, + "value": "마지막 단계" + } + ], + "label.entry": [ + { + "type": 0, + "value": "입장 URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "이벤트" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "이벤트 데이터" } ], "label.events": [ @@ -371,34 +425,40 @@ "value": "이벤트" } ], + "label.exit": [ + { + "type": 0, + "value": "퇴장 URL" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "거짓" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "필드" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "필드" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "필터" } ], "label.filter-combined": [ { "type": 0, - "value": "합쳐서 보기" + "value": "합쳐 보기" } ], "label.filter-raw": [ @@ -410,91 +470,139 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "필터" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "첫 접속" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "퍼널" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "사용자 전환율 및 이탈률을 살펴보세요." + } + ], + "label.goal": [ + { + "type": 0, + "value": "목표" + } + ], + "label.goals": [ + { + "type": 0, + "value": "목표" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "페이지 조회 및 이벤트 목표를 추적합니다." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "이상" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "이상" + } + ], + "label.host": [ + { + "type": 0, + "value": "호스트" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "호스트" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "인사이트" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "세그먼트 및 필터를 사용하여 데이터를 더 자세히 살펴보세요." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "해당" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "해당하지 않음" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "설정되지 않음" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "설정됨" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "가입하기" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "팀 가입하기" + } + ], + "label.journey": [ + { + "type": 0, + "value": "여정" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "사용자가 웹사이트를 탐색하는 경로를 살펴보세요." } ], "label.language": [ { "type": 0, - "value": "Language" + "value": "언어" } ], "label.languages": [ { "type": 0, - "value": "Languages" + "value": "언어" } ], "label.laptop": [ @@ -506,7 +614,7 @@ "label.last-days": [ { "type": 0, - "value": "최근 " + "value": "지난 " }, { "type": 1, @@ -514,13 +622,13 @@ }, { "type": 0, - "value": " 일간" + "value": "일" } ], "label.last-hours": [ { "type": 0, - "value": "최근 " + "value": "지난 " }, { "type": 1, @@ -528,31 +636,51 @@ }, { "type": 0, - "value": " 시간" + "value": "시간" + } + ], + "label.last-months": [ + { + "type": 0, + "value": "지난 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "개월" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "마지막 접속" } ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "떠나기" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "팀 떠나기" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "미만" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "이하" } ], "label.login": [ @@ -567,22 +695,40 @@ "value": "로그아웃" } ], + "label.manage": [ + { + "type": 0, + "value": "관리" + } + ], + "label.manager": [ + { + "type": 0, + "value": "관리자" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "최대" + } + ], + "label.member": [ + { + "type": 0, + "value": "멤버" } ], "label.members": [ { "type": 0, - "value": "Members" + "value": "멤버" } ], "label.min": [ { "type": 0, - "value": "Min" + "value": "최소" } ], "label.mobile": [ @@ -597,10 +743,16 @@ "value": "더 보기" } ], + "label.my-account": [ + { + "type": 0, + "value": "내 계정" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "내 웹사이트" } ], "label.name": [ @@ -618,31 +770,47 @@ "label.none": [ { "type": 0, - "value": "None" + "value": "없음" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": "개 레코드" + } + ], + "label.ok": [ + { + "type": 0, + "value": "확인" } ], "label.os": [ { "type": 0, - "value": "OS" + "value": "운영 체제" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "개요" } ], "label.owner": [ { "type": 0, - "value": "Owner" + "value": "소유자" } ], "label.page-of": [ { "type": 0, - "value": "Page " + "value": "페이지 " }, { "type": 1, @@ -650,7 +818,7 @@ }, { "type": 0, - "value": " of " + "value": "/" }, { "type": 1, @@ -660,13 +828,13 @@ "label.page-views": [ { "type": 0, - "value": "페이지 뷰(PV)" + "value": "페이지 조회" } ], "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "페이지 제목" } ], "label.pages": [ @@ -681,18 +849,44 @@ "value": "비밀번호" } ], + "label.path": [ + { + "type": 0, + "value": "패스" + } + ], + "label.paths": [ + { + "type": 0, + "value": "패스" + } + ], "label.powered-by": [ { "type": 0, - "value": "이 시스템은 " + "value": "Powered by " }, { "type": 1, "value": "name" - }, + } + ], + "label.previous": [ { "type": 0, - "value": "에서 구동되고 있습니다." + "value": "이전" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "이전 기간" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "이전 연도" } ], "label.profile": [ @@ -701,22 +895,34 @@ "value": "프로필" } ], + "label.properties": [ + { + "type": 0, + "value": "속성" + } + ], + "label.property": [ + { + "type": 0, + "value": "속성" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "쿼리" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "쿼리" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "쿼리 매개 변수" } ], "label.realtime": [ @@ -728,7 +934,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "리퍼러" } ], "label.referrers": [ @@ -740,37 +946,43 @@ "label.refresh": [ { "type": 0, - "value": "새로고침" + "value": "새로 고침" } ], "label.regenerate": [ { "type": 0, - "value": "Regenerate" + "value": "다시 생성" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "지역" } ], "label.regions": [ { "type": 0, - "value": "Regions" + "value": "지역" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "제거" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "멤버 제거" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "보고서" } ], "label.required": [ @@ -782,37 +994,55 @@ "label.reset": [ { "type": 0, - "value": "리셋" + "value": "초기화" } ], "label.reset-website": [ { "type": 0, - "value": "Reset statistics" + "value": "웹사이트 초기화" } ], "label.retention": [ { "type": 0, - "value": "Retention" + "value": "리텐션" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "사용자가 얼마나 자주 돌아오는지를 추적하여 웹사이트의 리텐션을 측정하세요." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "수익" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "시간대별 수익을 살펴보세요." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "수익 속성" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "역할" } ], "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "쿼리 실행" } ], "label.save": [ @@ -824,31 +1054,49 @@ "label.screens": [ { "type": 0, - "value": "Screens" + "value": "화면" } ], "label.search": [ { "type": 0, - "value": "Search" + "value": "검색" + } + ], + "label.select": [ + { + "type": 0, + "value": "선택" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "날짜 선택" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "역할 선택" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "웹사이트 선택" + } + ], + "label.session": [ + { + "type": 0, + "value": "세션" } ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "세션" } ], "label.settings": [ @@ -869,10 +1117,22 @@ "value": "하루" } ], + "label.start-step": [ + { + "type": 0, + "value": "시작 단계" + } + ], + "label.steps": [ + { + "type": 0, + "value": "단계" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "합계" } ], "label.tablet": [ @@ -884,55 +1144,61 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "팀" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "팀 ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "팀 관리자" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "팀 멤버" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "팀 이름" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "팀 소유자" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "팀 보기 전용" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "팀 웹사이트" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "팀" } ], "label.theme": [ { "type": 0, - "value": "Theme" + "value": "테마" } ], "label.this-month": [ @@ -962,7 +1228,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "제목" } ], "label.today": [ @@ -974,19 +1240,19 @@ "label.toggle-charts": [ { "type": 0, - "value": "Toggle charts" + "value": "차트 전환" } ], "label.total": [ { "type": 0, - "value": "Total" + "value": "합계" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "전체 레코드" } ], "label.tracking-code": [ @@ -995,28 +1261,52 @@ "value": "추적 코드" } ], + "label.transactions": [ + { + "type": 0, + "value": "거래" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "전송" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "웹사이트 전송" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "참" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "유형" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "고유" } ], "label.unique-visitors": [ { "type": 0, - "value": "순방문자(UV)" + "value": "고유 방문자" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "고유 고객" } ], "label.unknown": [ @@ -1028,7 +1318,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "제목 없음" + } + ], + "label.update": [ + { + "type": 0, + "value": "업데이트" } ], "label.url": [ @@ -1040,73 +1336,109 @@ "label.urls": [ { "type": 0, - "value": "URLs" + "value": "URL" } ], "label.user": [ { "type": 0, - "value": "User" + "value": "사용자" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "사용자 속성" } ], "label.username": [ { "type": 0, - "value": "사용자명" + "value": "사용자 이름" } ], "label.users": [ { "type": 0, - "value": "Users" + "value": "사용자" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "UTM 매개변수를 통해 캠페인을 추적하세요." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "값" } ], "label.view": [ { "type": 0, - "value": "View" + "value": "보기" } ], "label.view-details": [ { "type": 0, - "value": "상세보기" + "value": "자세히 보기" } ], "label.view-only": [ { "type": 0, - "value": "View only" + "value": "보기 전용" } ], "label.views": [ { "type": 0, - "value": "조회수" + "value": "조회" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "방문당 조회" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "방문 시간" } ], "label.visitors": [ { "type": 0, - "value": "방문객" + "value": "방문자" + } + ], + "label.visits": [ + { + "type": 0, + "value": "방문" } ], "label.website": [ { "type": 0, - "value": "Website" + "value": "웹사이트" } ], "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "웹사이트 ID" } ], "label.websites": [ @@ -1118,23 +1450,47 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "창" } ], "label.yesterday": [ { "type": 0, - "value": "Yesterday" + "value": "어제" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "확인을 위해 아래 상자에 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": "을(를) 입력하세요." } ], "message.active-users": [ + { + "type": 0, + "value": "현재 방문자 " + }, { "type": 1, "value": "x" }, { "type": 0, - "value": "명의 사용자가 보는 중입니다." + "value": "명" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "수집된 데이터" } ], "message.confirm-delete": [ @@ -1149,70 +1505,50 @@ ], "message.confirm-leave": [ { - "type": 0, - "value": "Are you sure you want to leave " + "type": 1, + "value": "target" }, + { + "type": 0, + "value": "을(를) 떠나시겠습니까?" + } + ], + "message.confirm-remove": [ { "type": 1, "value": "target" }, { "type": 0, - "value": "?" + "value": "을(를) 제거하시겠습니까?" } ], "message.confirm-reset": [ - { - "type": 0, - "value": "Are your sure you want to reset " - }, { "type": 1, "value": "target" }, { "type": 0, - "value": "'s statistics?" + "value": "을(를) 초기화하시겠습니까?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "팀을 삭제하면 팀에 등록된 모든 웹사이트도 삭제됩니다." } ], "message.delete-website-warning": [ { "type": 0, - "value": "관련된 모든 데이터도 삭제됩니다." + "value": "관련된 모든 데이터가 삭제됩니다." } ], "message.error": [ { "type": 0, - "value": "오류가 발생하였습니다." + "value": "문제가 발생했습니다." } ], "message.event-log": [ @@ -1222,7 +1558,7 @@ }, { "type": 0, - "value": " on " + "value": " - " }, { "type": 1, @@ -1238,19 +1574,19 @@ "message.incorrect-username-password": [ { "type": 0, - "value": "사용자 이름/비밀번호가 잘못되었습니다.." + "value": "사용자 이름 또는 비밀번호를 잘못 입력했습니다." } ], "message.invalid-domain": [ { "type": 0, - "value": "잘못된 도메인" + "value": "잘못된 도메인입니다. http/https를 포함하지 마세요." } ], "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "최소 " }, { "type": 1, @@ -1258,13 +1594,13 @@ }, { "type": 0, - "value": " characters" + "value": "자여야 합니다" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Umami의 새 버전 " }, { "type": 1, @@ -1272,67 +1608,67 @@ }, { "type": 0, - "value": " is available!" + "value": "을(를) 사용할 수 있습니다!" } ], "message.no-data-available": [ { "type": 0, - "value": "사용 가능한 데이터가 없습니다." + "value": "사용할 수 있는 데이터가 없습니다." } ], "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "사용할 수 있는 이벤트 데이터가 없습니다." } ], "message.no-match-password": [ { "type": 0, - "value": "비밀번호가 일치하지 않음" + "value": "비밀번호가 일치하지 않습니다." } ], "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "결과를 찾을 수 없습니다." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "팀에 웹사이트가 없습니다." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "만든 팀이 없습니다." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "사용자가 없습니다." } ], "message.no-websites-configured": [ { "type": 0, - "value": "구성된 웹 사이트가 없습니다." + "value": "설정된 웹사이트가 없습니다." } ], "message.page-not-found": [ { "type": 0, - "value": "페이지를 찾을 수 없습니다." + "value": "페이지를 찾을 수 없음" } ], "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "이 웹사이트를 초기화하려면 아래 상자에 " }, { "type": 1, @@ -1340,63 +1676,99 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": "을(를) 입력하세요." } ], "message.reset-website-warning": [ { "type": 0, - "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + "value": "이 웹사이트의 모든 통계가 삭제되지만 설정은 그대로 유지됩니다." } ], "message.saved": [ { "type": 0, - "value": "성공적으로 저장되었습니다." + "value": "저장했습니다." } ], "message.share-url": [ { "type": 0, - "value": "이것은 " - }, - { - "type": 1, - "value": "target" - }, - { - "type": 0, - "value": "의 공개적으로 공유된 URL입니다." + "value": "아래 링크를 통해 웹사이트의 통계를 누구나 볼 수 있습니다." } ], "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "이미 팀 멤버입니다." } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "팀을 찾을 수 없습니다." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "웹사이트는 팀 멤버 누구나 볼 수 있습니다." } ], "message.tracking-code": [ { "type": 0, - "value": "추적 코드" + "value": "이 웹사이트의 통계를 추적하려면 다음 코드를 HTML의 " + }, + { + "children": [ + { + "type": 0, + "value": "..." + } + ], + "type": 8, + "value": "head" + }, + { + "type": 0, + "value": " 부분에 추가하세요." + } + ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "이 웹사이트를 당신의 계정으로 전송하시겠습니까?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "이 웹사이트를 전송받을 팀을 선택하세요." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "웹사이트 소유권을 계정이나 다른 팀으로 전송합니다." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "트리거된 이벤트" } ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "사용자를 삭제했습니다." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "조회한 페이지" } ], "message.visitor-log": [ @@ -1432,5 +1804,11 @@ "type": 0, "value": "의 방문자" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "방문자 이탈함" + } ] } diff --git a/public/intl/messages/lt-LT.json b/public/intl/messages/lt-LT.json index 6369cd3c1..d5eec3c81 100644 --- a/public/intl/messages/lt-LT.json +++ b/public/intl/messages/lt-LT.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Prieigos kodas" } ], "label.actions": [ @@ -11,22 +11,34 @@ "value": "Veiksmai" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Veiklos žurnalas" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Pridėti" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Pridėti aprašymą" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Pridėti narį" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" } ], "label.add-website": [ @@ -38,13 +50,13 @@ "label.admin": [ { "type": 0, - "value": "Administratorius" + "value": "Administrator" } ], "label.after": [ { "type": 0, - "value": "After" + "value": "Po" } ], "label.all": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Vidutinė vizito trukmė" + "value": "Vidurkis" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Prieš" } ], "label.bounce-rate": [ @@ -104,7 +110,7 @@ "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Naršyklė" } ], "label.browsers": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Miestai" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "Miestas" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Išvalyti visus" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "Patvirtinti" } ], "label.confirm-password": [ @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -176,31 +194,31 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Šalis" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Sukurti" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Kurti ataskaitą" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Sukurti komandą" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Sukurti vartotoją" } ], "label.created": [ @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Duomenys" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Data" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Diena" } ], "label.default-date-range": [ @@ -263,16 +293,22 @@ "value": "Ištrinti" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Ištrinti ataskaitą" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "Ištrinti komandą" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "Ištrinti vartotoją" } ], "label.delete-website": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Aprašymas" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Detalės" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Įrenginys" } ], "label.devices": [ @@ -344,7 +380,13 @@ "label.edit-dashboard": [ { "type": 0, - "value": "Edit dashboard" + "value": "Redaguoti švieslentę" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Redaguoti narį" } ], "label.enable-share-url": [ @@ -353,16 +395,28 @@ "value": "Įjungti bendrinimą su nuoroda" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Įvykis" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Įvykių duomenys" } ], "label.events": [ @@ -371,6 +425,12 @@ "value": "Įvykiai" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -380,19 +440,19 @@ "label.field": [ { "type": 0, - "value": "Field" + "value": "Laukelis" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Laukeliai" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Filtruoti" } ], "label.filter-combined": [ @@ -410,7 +470,13 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filtrai" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,16 +521,28 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Įžvalgos" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Pasinerkite giliau į savo duomenis naudodami segmentus ir filtrus." } ], "label.is": [ @@ -476,19 +572,31 @@ "label.join": [ { "type": 0, - "value": "Join" + "value": "Prisijungti" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "Prisijungti į komandą" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." } ], "label.language": [ { "type": 0, - "value": "Language" + "value": "Kalba" } ], "label.languages": [ @@ -636,16 +744,36 @@ "value": "x" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Išeiti" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Išeiti iš komandos" } ], "label.less-than": [ @@ -672,16 +800,34 @@ "value": "Atsijungti" } ], + "label.manage": [ + { + "type": 0, + "value": "Tvarkyti" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Narys" + } + ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Nariai" } ], "label.min": [ @@ -702,10 +848,16 @@ "value": "Daugiau" } ], + "label.my-account": [ + { + "type": 0, + "value": "Mano paskyra" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Mano svetainės" } ], "label.name": [ @@ -726,16 +878,56 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, - "value": "OS" + "value": "Operacinės sistemos" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Apžvalga" } ], "label.owner": [ @@ -747,7 +939,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Puslapis " }, { "type": 1, @@ -755,7 +947,7 @@ }, { "type": 0, - "value": " of " + "value": " iš " }, { "type": 1, @@ -771,7 +963,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Puslapio pavadinimas" } ], "label.pages": [ @@ -786,6 +978,18 @@ "value": "Slaptažodis" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -796,28 +1000,58 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profilis" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "Užklausos" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Užklausa" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "Užklausų parametrai" } ], "label.realtime": [ @@ -829,13 +1063,13 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Persiuntėjas" } ], "label.referrers": [ { "type": 0, - "value": "Referrers" + "value": "Persiuntėjai" } ], "label.refresh": [ @@ -853,25 +1087,31 @@ "label.region": [ { "type": 0, - "value": "Region" + "value": "Regionas" } ], "label.regions": [ { "type": 0, - "value": "Regions" + "value": "Regionai" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "Pašalinti" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Pašalinti narį" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Ataskaitos" } ], "label.required": [ @@ -904,10 +1144,28 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Rolė" } ], "label.run-query": [ @@ -925,31 +1183,49 @@ "label.screens": [ { "type": 0, - "value": "Screens" + "value": "Ekranai" } ], "label.search": [ { "type": 0, - "value": "Search" + "value": "Ieškoti" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Pasirinkti laikotarpį" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Pasirinkti rolę" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "Pasirinkti svetainę" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" } ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "Sesijos" } ], "label.settings": [ @@ -970,10 +1246,22 @@ "value": "Viena diena" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Suma" } ], "label.tablet": [ @@ -985,37 +1273,43 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "Komanda" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "Komandos ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "Komandos narys" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Komandos pavadinimas" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "Komandos savininkas" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" } ], "label.team-websites": [ @@ -1027,13 +1321,13 @@ "label.teams": [ { "type": 0, - "value": "Teams" + "value": "Komandos" } ], "label.theme": [ { "type": 0, - "value": "Theme" + "value": "Spalvų tema" } ], "label.this-month": [ @@ -1063,7 +1357,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "Pavadinimas" } ], "label.today": [ @@ -1096,6 +1390,24 @@ "value": "Sekimo kodas" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Perleisti" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Perleisti svetainę" + } + ], "label.true": [ { "type": 0, @@ -1120,6 +1432,12 @@ "value": "Unikalūs lankytojai" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1129,7 +1447,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Be pavadinimo" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" } ], "label.url": [ @@ -1147,7 +1471,13 @@ "label.user": [ { "type": 0, - "value": "User" + "value": "Vartotojas" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" } ], "label.username": [ @@ -1159,7 +1489,19 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Vartotojai" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." } ], "label.value": [ @@ -1171,7 +1513,7 @@ "label.view": [ { "type": 0, - "value": "View" + "value": "Atidaryti" } ], "label.view-details": [ @@ -1183,7 +1525,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Tik peržiūrėti" } ], "label.views": [ @@ -1192,22 +1534,40 @@ "value": "Peržiūros" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Vidutinė vizito trukmė" + } + ], "label.visitors": [ { "type": 0, "value": "Lankytojai" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Svetainė" } ], "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "Svetainės ID" } ], "label.websites": [ @@ -1225,7 +1585,21 @@ "label.yesterday": [ { "type": 0, - "value": "Yesterday" + "value": "Vakar" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Įrašykite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " žemiau, kad patvirtintumėte." } ], "message.active-users": [ @@ -1282,6 +1656,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1299,7 +1679,21 @@ "message.confirm-leave": [ { "type": 0, - "value": "Are you sure you want to leave " + "value": "Ar esate tikri, jog norite palikti " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Ar esate tikri, jog norite ištrinti " }, { "type": 1, @@ -1324,32 +1718,10 @@ "value": " statistikos duomenis?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Ištrinant komandą bus ištrintos ir visos komandos svetainės." } ], "message.delete-website-warning": [ @@ -1399,7 +1771,7 @@ "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "Reikia bent " }, { "type": 1, @@ -1407,13 +1779,13 @@ }, { "type": 0, - "value": " characters" + "value": " simbolių" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Išleista nauja 'Umami' " }, { "type": 1, @@ -1421,7 +1793,7 @@ }, { "type": 0, - "value": " is available!" + "value": " versija!" } ], "message.no-data-available": [ @@ -1433,7 +1805,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Jokių duomenų apie įvykius nėra." } ], "message.no-match-password": [ @@ -1445,25 +1817,25 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Jokių rezultatų nerasta." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "Ši komanda neturi jokių svetainių." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "Jūs nesate sukūrę jokių komandų." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "Nėra jokių vartotojų." } ], "message.no-websites-configured": [ @@ -1481,7 +1853,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Kad atstatyti šią svetainę, įrašykite " }, { "type": 1, @@ -1489,7 +1861,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " žemiau, kad patvirtintumėte." } ], "message.reset-website-warning": [ @@ -1521,19 +1893,19 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "Jūs jau esate šios komandos narys." } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "Komanda nerasta." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "Svetaines gali peržiūrėti bet kas iš šios komandos." } ], "message.tracking-code": [ @@ -1542,10 +1914,40 @@ "value": "Sekimo kodas" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Perduoti šią svetainę į jūsų paskyrą?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Pasirinkite komandą, kuriai norite perduoti šią svetainę." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Perduoti svetainės nuosavybę į savo paskyrą arba kitą komandą." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "Vartotojas ištrintas." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" } ], "message.visitor-log": [ @@ -1581,5 +1983,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/mn-MN.json b/public/intl/messages/mn-MN.json index 1a2210453..f1a76b9b8 100644 --- a/public/intl/messages/mn-MN.json +++ b/public/intl/messages/mn-MN.json @@ -11,7 +11,7 @@ "value": "Үйлдлүүд" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Үйл ажиллагааны бүртгэл" @@ -29,6 +29,18 @@ "value": "Тайлбар нэмэх" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Дундаж" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Зочилсон дундаж хугацаа" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Бүгдийг арилгах" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Үргэлжлүүлэх" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Үүсгэсэн" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Устгах" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -314,7 +350,7 @@ "label.dismiss": [ { "type": 0, - "value": "Үл хэргэсэх" + "value": "Үл хэрэгсэх" } ], "label.does-not-contain": [ @@ -347,12 +383,30 @@ "value": "Хянах самбар засах" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Хуваалцах холбоос идэвхжүүлэх" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Үйлдэл" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Шүүлтүүр" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -422,7 +488,25 @@ "label.funnel-description": [ { "type": 0, - "value": "Хэрэглэгчдийн шилжилт, уналтын хэмжээг шижнлэх." + "value": "Хэрэглэгчдийн шилжилт, уналтын хэмжээг шинжлэх." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ @@ -437,6 +521,18 @@ "value": "Их буюу тэнцүү" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -446,7 +542,7 @@ "label.insights-description": [ { "type": 0, - "value": "Өгөгдлөө хэсэгчлэн хуваах, шүүх байдлаар задлах шинжлэх." + "value": "Өгөгдлөө хэсэгчлэн хуваах, шүүх байдлаар задлан шинжлэх." } ], "label.is": [ @@ -485,6 +581,18 @@ "value": "Багт нэгдэх" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " цаг" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Гарах" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Цааш" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "Байхгүй" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Нууц үг" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 1, @@ -691,12 +895,42 @@ "value": " дээр суурилсан" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Бүртгэл" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Устгах" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -796,7 +1036,25 @@ "label.retention-description": [ { "type": 0, - "value": "Хэрэглэгчид таны веб рүү дахин хандах буюу хэрэглэгчидээ хэр тогтоож буйг хэмжих." + "value": "Хэрэглэгчид таны веб рүү дахин хандах буюу хэрэглэгчдээ хэр тогтоож буйг хэмжих." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ @@ -829,18 +1087,36 @@ "value": "Хайх" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Огноо сонгох" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Веб сонгох" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Нэг өдөр" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Баг" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Багийн зочин" - } - ], "label.team-id": [ { "type": 0, "value": "Багийн ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Багийн эзэмшигч" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -982,7 +1276,7 @@ "label.total-records": [ { "type": 0, - "value": "Нийт мөриийн тоо" + "value": "Нийт мөрийн тоо" } ], "label.tracking-code": [ @@ -991,6 +1285,24 @@ "value": "Мөрдөх код" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1006,7 +1318,7 @@ "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Давхардаагүй" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Зочин" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Гарчиггүй" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "Хэрэглэгч" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Хэрэглэгчид" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Үзсэн" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Зочилсон дундаж хугацаа" + } + ], "label.visitors": [ { "type": 0, "value": "Зочин" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Өчигдөр" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 0, @@ -1165,6 +1539,12 @@ "value": " байна" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1193,6 +1573,20 @@ "value": "-с гарахдаа итгэлтэй байна уу?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1207,32 +1601,10 @@ "value": "-н тоон үзүүлэлтүүдийг устгахдаа итгэлтэй байна уу?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "Энэ бүртгэлийг устгахын тулд доорх хэсэгт " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " гэж бичиж баталгаажуулна уу." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Энэ вебийг устгахын тулд доорх хэсэгт " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " гэж бичиж баталгаажуулна уу." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1364,7 +1736,7 @@ "message.reset-website": [ { "type": 0, - "value": "Тоон үзүүлэлийг дахин эхлүүлэхийн тулд доорх хэсэгт " + "value": "Тоон үзүүлэлтийг дахин эхлүүлэхийн тулд доорх хэсэгт " }, { "type": 1, @@ -1378,7 +1750,7 @@ "message.reset-website-warning": [ { "type": 0, - "value": "Энэ вебийн бүх тоон үзүүлэлтүүдийг устгах болно. Гэхдээ мөрдөх код хэвэндээ үлдэнэ." + "value": "Энэ вебийн бүх тоон үзүүлэлтүүдийг устгах болно. Гэхдээ мөрдөх код хэвээрээ үлдэнэ." } ], "message.saved": [ @@ -1431,12 +1803,42 @@ "value": " хэсэгт байрлуулна уу." } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "Хэрэглэгч устсан." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 1, @@ -1470,5 +1872,11 @@ "type": 0, "value": " хөтөч ашиглан орсон" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/ms-MY.json b/public/intl/messages/ms-MY.json index 874f3a3dd..6886b74c6 100644 --- a/public/intl/messages/ms-MY.json +++ b/public/intl/messages/ms-MY.json @@ -11,7 +11,7 @@ "value": "Aksi" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Purata tempoh masa lawatan" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Padam" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Aktifkan url berkongsi" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Peristiwa" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -523,6 +631,26 @@ "value": " jam lepas" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -559,12 +687,30 @@ "value": "Log keluar" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -589,6 +735,12 @@ "value": "Lebih banyak lagi" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -613,6 +765,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -673,6 +865,18 @@ "value": "Kata laluan" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -683,12 +887,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -755,6 +989,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -791,6 +1031,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -821,18 +1079,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -857,6 +1133,18 @@ "value": "Satu hari" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -875,18 +1163,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -905,6 +1193,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -983,6 +1277,24 @@ "value": "Kod penjejakan" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1007,6 +1319,12 @@ "value": "Pelawat unik" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1019,6 +1337,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1037,6 +1361,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1049,6 +1379,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1079,12 +1421,30 @@ "value": "Lawatan" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Purata tempoh masa lawatan" + } + ], "label.visitors": [ { "type": 0, "value": "Pelawat" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1115,6 +1475,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1149,6 +1523,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1177,6 +1557,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1191,32 +1585,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1409,12 +1781,42 @@ "value": "Kod penjejakan" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1448,5 +1850,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/my-MM.json b/public/intl/messages/my-MM.json index 33b449793..7fc610e4d 100644 --- a/public/intl/messages/my-MM.json +++ b/public/intl/messages/my-MM.json @@ -11,7 +11,7 @@ "value": "လုပ်ဆောင်ချက်များ" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "လုပ်ဆောင်ချက်စာရင်း" @@ -29,6 +29,18 @@ "value": "အကြောင်းအရာဖော်ပြချက် ထည့်မည်" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "ပျမ်းမျှ" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "ဝဘက်ဘ်ဆိုဒ်တွင် ပျမ်းမျှကုန်ဆုံးချိန်" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "အားလုံးကိုဖျက်မည်" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "ဆက်သွားမည်" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "ပြုလုပ်ပြီးသော" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "ဖျက်မည်" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "ဒက်ရှ်ဘုတ်ကို ပြုပြင်မည်" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "ဝေငှခြင်းကိုလင့်ကို ဖွင့်မည်" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "အဖြစ်အပျက်များ" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filter များ" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "ထက်ပို၍ကြီးသည်သို့မဟုတ်တူသည်" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "အသင်းဝင်မည်" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " နာရီက" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "လော့ဂ်အောက်လုပ်မည်" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "အများဆုံး" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "နောက်ထပ်" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "မရှိပါ" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "စကားဝှက်" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 1, @@ -691,12 +895,42 @@ "value": " ထောက်ပံ့သည်" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "ပရိုဖိုင်း" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "ဖျက်မည်" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "ရက်ရွေးပါ" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "ဝဘက်ဘ်ဆိုဒ်ရွေးပါ" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "တစ်ရက်အတွင်း" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "အသင်း" } ], - "label.team-guest": [ - { - "type": 0, - "value": "အသင်း ဧည့်သည်" - } - ], "label.team-id": [ { "type": 0, "value": "အသင်း အိုင်ဒီ" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "အသင်းကိုပိုင်ဆိုင်သူ" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "ထရက်လုပ်သည့် ကုဒ်" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "ဝင်ရောက်သူ (ထပ်ခြင်းမရှိ)" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "ခေါင်းစဉ်မရှိ" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "အသုံးပြုသူ" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "အသုံးပြုသူများ" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "ဝင်ရောက်ကြည့်ရှုမှုများ" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "ဝဘက်ဘ်ဆိုဒ်တွင် ပျမ်းမျှကုန်ဆုံးချိန်" + } + ], "label.visitors": [ { "type": 0, "value": "ဝင်ရောက်ကြည့်ရှုသူများ" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "မနေ့က" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 1, @@ -1177,6 +1557,20 @@ "value": " ကို ထွက်ရန် သေချာပါသလား?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 1, @@ -1187,32 +1581,10 @@ "value": " ကို ဖျက်၍ပြန်စလုပ်ရန် သေချာပါသလား?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "ဤအကောင့်ကိုဖျက်ရန် " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " ကို ရိုက်ထည့်ပေးပါ." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "ဤ ဝက်ဘ်ဆိုဒ်ကိုဖျက်ရန် " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " ကို ရိုက်ထည့်ပေးပါ" + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1397,12 +1769,42 @@ "value": "ဤဝက်ဘ်ဆိုဒ်၏ ဒေတာကိုကောက်ခံရန် အောက်ပါ code ကို သင်၏ HTML တွင်ထည့်ပါ" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "အသုံးပြုသူ ဖျက်ပြီးပါပြီ" } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 1, @@ -1436,5 +1838,11 @@ "type": 0, "value": " တွင် ဝင်ရောက်ကြည့်ရှုသူ" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/nb-NO.json b/public/intl/messages/nb-NO.json index 010bd2ad4..bb2dec35a 100644 --- a/public/intl/messages/nb-NO.json +++ b/public/intl/messages/nb-NO.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Tilgangskode" } ], "label.actions": [ @@ -11,22 +11,34 @@ "value": "Handlinger" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Aktivitetslogg" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Legg til" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Legg til beskrivelse" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Legg til bruker" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Legg til steg" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "Etter" } ], "label.all": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Gjennomsnittlig besøkstid" + "value": "Gjennomsnnitt" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Før" } ], "label.bounce-rate": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Nedbrytning" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Nettleser" } ], "label.browsers": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Byer" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "By" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Tøm alle" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Sammenlign" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "Bekreft" } ], "label.confirm-password": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Inneholder" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "Fortsett" + } + ], + "label.count": [ + { + "type": 0, + "value": "Antall" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Land" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Opprett" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Opprett rapport" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Opprett team" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Opprett bruker" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "Opprettet" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Opprettet av" + } + ], + "label.current": [ + { + "type": 0, + "value": "Nåværende" } ], "label.current-password": [ @@ -236,7 +266,7 @@ "label.date": [ { "type": 0, - "value": "Date" + "value": "Dato" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Dag" } ], "label.default-date-range": [ @@ -263,6 +293,12 @@ "value": "Slett" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Detaljer" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Enhet" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Innholder ikke" } ], "label.domain": [ @@ -344,7 +380,13 @@ "label.edit-dashboard": [ { "type": 0, - "value": "Edit dashboard" + "value": "Rediger dashboard" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Rediger bruker" } ], "label.enable-share-url": [ @@ -353,40 +395,58 @@ "value": "Aktiver delings-URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "Avslutt steg" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Inngangs-URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Hendelse" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Hendelsesdata" } ], "label.events": [ { "type": 0, - "value": "Arrangementer" + "value": "Hendelser" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Utgangs-URL" } ], "label.false": [ { "type": 0, - "value": "False" + "value": "Usant" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Felt" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Felt" } ], "label.filter": [ @@ -410,79 +470,127 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filter" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Først sett" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Trakt" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Forstå konverteringen og drop-off frafallsfrekvens av brukere." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Mål" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Spor dine mål for sidevisninger og hendelser." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Mer enn" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Mer enn eller lik" + } + ], + "label.host": [ + { + "type": 0, + "value": "Vert" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Verter" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Innsikt" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Dykk dypere i din data ved bruk av segmentering og filtre." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "Er" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Er ikke" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Er ikke satt" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Er satt" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "Bli med" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "Bli med i teamet" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Reise" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Forstå hvordan brukerene navigerer gjennom din side." } ], "label.language": [ @@ -531,28 +639,48 @@ "value": " timer" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Sist sett" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Forlat" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Forlat team" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Mindre enn" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Mindre enn eller lik" } ], "label.login": [ @@ -567,16 +695,34 @@ "value": "Logg ut" } ], + "label.manage": [ + { + "type": 0, + "value": "Administrer" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Administrator" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "Maks" + } + ], + "label.member": [ + { + "type": 0, + "value": "Bruker" } ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Brukere" } ], "label.min": [ @@ -597,10 +743,16 @@ "value": "Mer" } ], + "label.my-account": [ + { + "type": 0, + "value": "Min konto" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Mine nettsider" } ], "label.name": [ @@ -618,7 +770,47 @@ "label.none": [ { "type": 0, - "value": "None" + "value": "Ingen" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" } ], "label.os": [ @@ -630,7 +822,7 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Oversikt" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Side " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " av " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Sidetittel" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Passord" } ], + "label.path": [ + { + "type": 0, + "value": "Sti" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Stier" + } + ], "label.powered-by": [ { "type": 0, @@ -691,28 +895,58 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Forrige" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Forrige periode" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Forrige år" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Egenskaper" + } + ], + "label.property": [ + { + "type": 0, + "value": "Egenskap" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "Forspørsler" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Forespørsel" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "Forespørsel parametere" } ], "label.realtime": [ @@ -724,13 +958,13 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Henviser" } ], "label.referrers": [ { "type": 0, - "value": "Referanser" + "value": "Henvisere" } ], "label.refresh": [ @@ -742,7 +976,7 @@ "label.regenerate": [ { "type": 0, - "value": "Regenerate" + "value": "Regenerer" } ], "label.region": [ @@ -754,19 +988,25 @@ "label.regions": [ { "type": 0, - "value": "Regions" + "value": "Regioner" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "Fjern" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Fjern bruker" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Rapporter" } ], "label.required": [ @@ -790,25 +1030,43 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Retensjon" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Mål nettstedets klebrighet ved å spore hvor ofte brukere kommer tilbake." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Inntenker" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Se på inntektene dine over tid." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Inntektegenskaper" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Rolle" } ], "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Kjør spørring" } ], "label.save": [ @@ -820,31 +1078,49 @@ "label.screens": [ { "type": 0, - "value": "Screens" + "value": "Skjermer" } ], "label.search": [ { "type": 0, - "value": "Search" + "value": "Søk" + } + ], + "label.select": [ + { + "type": 0, + "value": "Velg" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Velg dato" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Velg rolle" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "Velg nettsted" + } + ], + "label.session": [ + { + "type": 0, + "value": "Økt" } ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "Økter" } ], "label.settings": [ @@ -862,7 +1138,19 @@ "label.single-day": [ { "type": 0, - "value": "Enkelt dag" + "value": "Enkeltdag" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Starttrinn" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Trinn" } ], "label.sum": [ @@ -883,52 +1171,58 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "Team-ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Teamadministrator" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "Teammedlem" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Teamnavn" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "Teameier" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team (kun visning)" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Team-nettsteder" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "Team" } ], "label.theme": [ { "type": 0, - "value": "Theme" + "value": "Tema" } ], "label.this-month": [ @@ -958,7 +1252,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "Tittel" } ], "label.today": [ @@ -976,13 +1270,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "Totalt" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Totalt antall oppføringer" } ], "label.tracking-code": [ @@ -991,10 +1285,28 @@ "value": "Sporingskode" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transaksjoner" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Overfør" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Overfør nettsted" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Sant" } ], "label.type": [ @@ -1006,7 +1318,7 @@ "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Unike" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Unike besøkende" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unike kunder" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Uten tittel" + } + ], + "label.update": [ + { + "type": 0, + "value": "Oppdater" } ], "label.url": [ @@ -1036,13 +1360,19 @@ "label.urls": [ { "type": 0, - "value": "URLs" + "value": "URL-er" } ], "label.user": [ { "type": 0, - "value": "User" + "value": "Bruker" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "Brukeregenskap" } ], "label.username": [ @@ -1054,19 +1384,31 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Brukere" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Spor kampanjene dine via UTM-parametre." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Verdi" } ], "label.view": [ { "type": 0, - "value": "View" + "value": "Vis" } ], "label.view-details": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Kun visning" } ], "label.views": [ @@ -1087,22 +1429,40 @@ "value": "Visninger" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Visninger per besøk" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Gjennomsnittlig besøkstid" + } + ], "label.visitors": [ { "type": 0, "value": "Besøkende" } ], + "label.visits": [ + { + "type": 0, + "value": "Besøk" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Nettsted" } ], "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "Nettsted-ID" } ], "label.websites": [ @@ -1114,13 +1474,27 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Vindu" } ], "label.yesterday": [ { "type": 0, - "value": "Yesterday" + "value": "I går" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Skriv " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " i feltet nedenfor for å bekrefte." } ], "message.active-users": [ @@ -1161,6 +1535,12 @@ "value": " nå" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Innsamlede data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1178,7 +1558,21 @@ "message.confirm-leave": [ { "type": 0, - "value": "Are you sure you want to leave " + "value": "Er du sikker på at du vil forlate " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Er du sikker på at du vil fjerne " }, { "type": 1, @@ -1192,7 +1586,7 @@ "message.confirm-reset": [ { "type": 0, - "value": "Er du sikker på at du vil nullstille " + "value": "Er du sikker på at du vil nullstille statistikken til " }, { "type": 1, @@ -1200,41 +1594,19 @@ }, { "type": 0, - "value": "'s statistikk?" + "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Å slette et team vil også slette alle teamets nettsteder." } ], "message.delete-website-warning": [ { "type": 0, - "value": "Alle tilknyttede data slettes også." + "value": "Alle tilknyttede data vil også bli slettet." } ], "message.error": [ @@ -1250,7 +1622,7 @@ }, { "type": 0, - "value": " on " + "value": " på " }, { "type": 1, @@ -1278,7 +1650,7 @@ "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "Minimumslengde på " }, { "type": 1, @@ -1286,13 +1658,13 @@ }, { "type": 0, - "value": " characters" + "value": " tegn" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "En ny versjon av Umami " }, { "type": 1, @@ -1300,7 +1672,7 @@ }, { "type": 0, - "value": " is available!" + "value": " er tilgjengelig!" } ], "message.no-data-available": [ @@ -1312,7 +1684,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Ingen hendelsesdata er tilgjengelig." } ], "message.no-match-password": [ @@ -1324,25 +1696,25 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Ingen resultater funnet." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "Dette teamet har ingen nettsteder." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "Du har ikke opprettet noen team." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "Ingen brukere." } ], "message.no-websites-configured": [ @@ -1354,13 +1726,13 @@ "message.page-not-found": [ { "type": 0, - "value": "Side ikke funnet." + "value": "Siden ble ikke funnet." } ], "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "For å nullstille dette nettstedet, skriv " }, { "type": 1, @@ -1368,13 +1740,13 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " i feltet nedenfor for å bekrefte." } ], "message.reset-website-warning": [ { "type": 0, - "value": "All statistikk for denne nettsiden vil bli slettet, men sporingskoden din vil forbli uberørt." + "value": "All statistikk for dette nettstedet vil bli slettet, men sporingskoden forblir uberørt." } ], "message.saved": [ @@ -1400,19 +1772,19 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "Du er allerede medlem av teamet." } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "Teamet ble ikke funnet." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "Nettsteder kan vises av alle på teamet." } ], "message.tracking-code": [ @@ -1421,10 +1793,40 @@ "value": "Sporingskode" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Overfør dette nettstedet til kontoen din?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Velg teamet du vil overføre dette nettstedet til." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Overfør eierskapet til nettstedet til din konto eller et annet team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Utløst hendelse" + } + ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "Bruker slettet." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Vist side" } ], "message.visitor-log": [ @@ -1460,5 +1862,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Besøkende falt fra" + } ] } diff --git a/public/intl/messages/nl-NL.json b/public/intl/messages/nl-NL.json index 66c5f4faf..d7ea5c9f2 100644 --- a/public/intl/messages/nl-NL.json +++ b/public/intl/messages/nl-NL.json @@ -11,7 +11,7 @@ "value": "Acties" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activiteiten logboek" @@ -20,13 +20,25 @@ "label.add": [ { "type": 0, - "value": "Add" + "value": "Toevoegen" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Omschrijving toevoegen" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" } ], "label.add-website": [ @@ -38,13 +50,13 @@ "label.admin": [ { "type": 0, - "value": "Beheerder" + "value": "Administrator" } ], "label.after": [ { "type": 0, - "value": "After" + "value": "Na" } ], "label.all": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Gemiddelde bezoektijd" + "value": "Gemiddelde" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Voor" } ], "label.bounce-rate": [ @@ -98,7 +104,7 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Opsplitsen" } ], "label.browser": [ @@ -134,7 +140,7 @@ "label.city": [ { "type": 0, - "value": "City" + "value": "Stad" } ], "label.clear-all": [ @@ -143,6 +149,12 @@ "value": "Filters wissen" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -158,7 +170,7 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Bevat" } ], "label.continue": [ @@ -167,6 +179,12 @@ "value": "Doorgaan" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -176,19 +194,19 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Land" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Aanmaken" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Rapport aanmaken" } ], "label.create-team": [ @@ -209,6 +227,18 @@ "value": "Gemaakt" } ], + "label.created-by": [ + { + "type": 0, + "value": "Gemaakt Door" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -236,7 +266,7 @@ "label.date": [ { "type": 0, - "value": "Date" + "value": "Datum" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Dag" } ], "label.default-date-range": [ @@ -263,6 +293,12 @@ "value": "Verwijderen" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Rapport verwijderen" + } + ], "label.delete-team": [ { "type": 0, @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Omschrijving" } ], "label.desktop": [ @@ -302,7 +338,7 @@ "label.device": [ { "type": 0, - "value": "Device" + "value": "Apparaat" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Bevat geen" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Uitval" } ], "label.edit": [ @@ -347,22 +383,40 @@ "value": "Dashboard aanpassen" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Gebruiker aanpassen" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Sta delen via openbare URL toe" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Gebeurtenis" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Datum gebeurtenis" } ], "label.events": [ @@ -371,22 +425,28 @@ "value": "Gebeurtenissen" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Onwaar" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Veld" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Velden" } ], "label.filter": [ @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -422,31 +488,61 @@ "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Ontdek de conversie- en uitvalpercentages van gebruikers." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Groter dan" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Groter of gelijk aan" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Inzichten" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Verken je gegevens verder door segmenten en filters te gebruiken." } ], "label.is": [ @@ -458,19 +554,19 @@ "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Is niet" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Is niet ingesteld" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Is ingesteld" } ], "label.join": [ @@ -485,6 +581,18 @@ "value": "Word lid van een team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " uur" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -546,13 +674,13 @@ "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Minder dan" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Minder of gelijk aan" } ], "label.login": [ @@ -567,12 +695,30 @@ "value": "Uitloggen" } ], + "label.manage": [ + { + "type": 0, + "value": "Beheren" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Gebruiker" + } + ], "label.members": [ { "type": 0, @@ -597,10 +743,16 @@ "value": "Toon meer" } ], + "label.my-account": [ + { + "type": 0, + "value": "Mijn profiel" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Mijn websites" } ], "label.name": [ @@ -621,6 +773,46 @@ "value": "Geen" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -630,7 +822,7 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Overzicht" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Pagina " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " van " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Pagina titel" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Wachtwoord" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profiel" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -748,7 +982,7 @@ "label.region": [ { "type": 0, - "value": "Region" + "value": "Regio" } ], "label.regions": [ @@ -763,10 +997,16 @@ "value": "Verwijderen" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Gebruiker verwijderen" + } + ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Rapporten" } ], "label.required": [ @@ -790,13 +1030,31 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Retentie" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Meet de retentie van je website door door bij te houden hoe vaak gebruikers terugkeren." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ @@ -808,7 +1066,7 @@ "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Query uitvoeren" } ], "label.save": [ @@ -826,13 +1084,25 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Zoeken" + } + ], + "label.select": [ + { + "type": 0, + "value": "Selecteer" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Datum selecteren" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rol selecteren" } ], "label.select-website": [ @@ -841,6 +1111,12 @@ "value": "Website selecteren" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,10 +1141,22 @@ "value": "Enkele dag" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Som" } ], "label.tablet": [ @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team gast" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -904,7 +1192,7 @@ "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Teamnaam" } ], "label.team-owner": [ @@ -913,6 +1201,12 @@ "value": "Teameigenaar" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team alleen lezen" + } + ], "label.team-websites": [ { "type": 0, @@ -976,13 +1270,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "Totaal" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Totaal records" } ], "label.tracking-code": [ @@ -991,10 +1285,28 @@ "value": "Volgcode" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Waar" } ], "label.type": [ @@ -1015,6 +1327,12 @@ "value": "Unieke bezoekers" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Ongetiteld" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" } ], "label.url": [ @@ -1036,7 +1360,7 @@ "label.urls": [ { "type": 0, - "value": "URLs" + "value": "URL's" } ], "label.user": [ @@ -1045,6 +1369,12 @@ "value": "Gebruiker" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,10 +1387,22 @@ "value": "Gebruikers" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Waarde" } ], "label.view": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Alleen inzien" } ], "label.views": [ @@ -1087,12 +1429,30 @@ "value": "Weergaven" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Gemiddelde bezoektijd" + } + ], "label.visitors": [ { "type": 0, "value": "Bezoekers" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Gisteren" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Typ " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in het veld hieronder om te bevestigen." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": " wilt verlaten?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Weet je zeker dat je " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " wilt verwijderen?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,38 +1593,16 @@ "value": " opnieuw wilt instellen?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Als een team wordt verwijderd, worden ook alle websites van dat team verwijderd." } ], "message.delete-website-warning": [ { "type": 0, - "value": "Alle verwante gegezens zullen ook verwijderd worden." + "value": "Alle verwante gegevens zullen ook verwijderd worden." } ], "message.error": [ @@ -1288,7 +1660,7 @@ "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Een nieuwe versie van Umami " }, { "type": 1, @@ -1296,7 +1668,7 @@ }, { "type": 0, - "value": " is available!" + "value": " is beschikbaar!" } ], "message.no-data-available": [ @@ -1308,7 +1680,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Geen gegevens over de gebeurtenis beschikbaar." } ], "message.no-match-password": [ @@ -1320,7 +1692,7 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Geen resultaten gevonden." } ], "message.no-team-websites": [ @@ -1356,7 +1728,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Typ " }, { "type": 1, @@ -1364,7 +1736,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " in het veld hieronder om te bevestigen dat je de website wilt resetten." } ], "message.reset-website-warning": [ @@ -1417,10 +1789,40 @@ "value": "Volgcode" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Deze website toevoegen aan je account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Selecteer het team om deze website aan toe te voegen." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Draag het eigenaarschap van de website over naar jouw account, of een ander team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Getriggerde gebeurtenis" + } + ], "message.user-deleted": [ { "type": 0, - "value": "Gebruiker verwijderd." + "value": "Gebruiker verwijderd" + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Bekeken pagina" } ], "message.visitor-log": [ @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Afgehaakte bezoekers" + } ] } diff --git a/public/intl/messages/pl-PL.json b/public/intl/messages/pl-PL.json index 4621a918d..97782a412 100644 --- a/public/intl/messages/pl-PL.json +++ b/public/intl/messages/pl-PL.json @@ -11,7 +11,7 @@ "value": "Działania" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Dziennik aktywności" @@ -29,6 +29,18 @@ "value": "Dodaj opis" } ], + "label.add-member": [ + { + "type": 0, + "value": "Dodaj członka" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Dodaj krok" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Średnia" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Średni czas wizyty" - } - ], "label.back": [ { "type": 0, @@ -104,7 +110,7 @@ "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Przeglądarka" } ], "label.browsers": [ @@ -134,7 +140,7 @@ "label.city": [ { "type": 0, - "value": "City" + "value": "Miasto" } ], "label.clear-all": [ @@ -143,6 +149,12 @@ "value": "Wyczyść wszystko" } ], + "label.compare": [ + { + "type": 0, + "value": "Porównaj" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Kontynuuj" } ], + "label.count": [ + { + "type": 0, + "value": "Liczba" + } + ], "label.countries": [ { "type": 0, @@ -176,19 +194,19 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Państwo" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Utwórz" } ], "label.create-report": [ { "type": 0, - "value": "Stwórz raport" + "value": "Utwórz raport" } ], "label.create-team": [ @@ -209,6 +227,18 @@ "value": "Utworzony" } ], + "label.created-by": [ + { + "type": 0, + "value": "Utworzony przez" + } + ], + "label.current": [ + { + "type": 0, + "value": "Aktualny" + } + ], "label.current-password": [ { "type": 0, @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Dane" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Data" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Dzień" } ], "label.default-date-range": [ @@ -263,6 +293,12 @@ "value": "Usuń" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Usuń raport" + } + ], "label.delete-team": [ { "type": 0, @@ -302,7 +338,7 @@ "label.device": [ { "type": 0, - "value": "Device" + "value": "Urządzenie" } ], "label.devices": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Odpływ" } ], "label.edit": [ @@ -347,16 +383,34 @@ "value": "Edytuj panel" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edytuj członka" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Włącz udostępnianie adresu URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "Krok końcowy" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Zdarzenie" } ], "label.event-data": [ @@ -371,6 +425,12 @@ "value": "Zdarzenia" } ], + "label.exit": [ + { + "type": 0, + "value": "URL wyjściowy" + } + ], "label.false": [ { "type": 0, @@ -392,7 +452,7 @@ "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Filtruj" } ], "label.filter-combined": [ @@ -413,6 +473,12 @@ "value": "Filtry" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -422,7 +488,25 @@ "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Zrozum wskaźniki konwersji i odpływu użytkowników." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Cel" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Cele" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ @@ -437,16 +521,28 @@ "value": "Większe niż lub równe" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosty" + } + ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Analiza" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Poznaj lepiej swoje dane, korzystając z segmentów i filtrów." } ], "label.is": [ @@ -464,13 +560,13 @@ "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Nieustawione" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Ustawione" } ], "label.join": [ @@ -485,6 +581,18 @@ "value": "Dołącz do zespołu" } ], + "label.journey": [ + { + "type": 0, + "value": "Droga" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Zrozum, w jaki sposób użytkownicy poruszają się po Twojej witrynie." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " godzin" } ], + "label.last-months": [ + { + "type": 0, + "value": "Osatnie " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " miesięcy" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Wyloguj" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Maks" } ], + "label.member": [ + { + "type": 0, + "value": "Członek" + } + ], "label.members": [ { "type": 0, @@ -597,10 +743,16 @@ "value": "Więcej" } ], + "label.my-account": [ + { + "type": 0, + "value": "Moje konto" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Moje witryny" } ], "label.name": [ @@ -621,6 +773,46 @@ "value": "Brak" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "rekord" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "rekordy" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Strona " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " z " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Tytuł strony" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Hasło" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Poprzedni" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Poprzedni okres" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Poprzedni rok" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -724,7 +958,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Źródło odsyłające" } ], "label.referrers": [ @@ -763,6 +997,12 @@ "value": "Usuń" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Usuń członka" + } + ], "label.reports": [ { "type": 0, @@ -790,19 +1030,37 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Retencja" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Mierz przyciągającą siłę swojej strony internetowej, śledząc, jak często użytkownicy powracają." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Rola" } ], "label.run-query": [ @@ -826,7 +1084,13 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Szukaj" + } + ], + "label.select": [ + { + "type": 0, + "value": "Wybierz" } ], "label.select-date": [ @@ -835,12 +1099,24 @@ "value": "Wybierz datę" } ], + "label.select-role": [ + { + "type": 0, + "value": "Wybierz rolę" + } + ], "label.select-website": [ { "type": 0, "value": "Wybierz witrynę" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "W tym dniu" } ], + "label.start-step": [ + { + "type": 0, + "value": "Krok startowy" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Kroki" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Zespół" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Gość zespołu" - } - ], "label.team-id": [ { "type": 0, "value": "ID zespołu" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -904,7 +1192,7 @@ "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Nazwa zespołu" } ], "label.team-owner": [ @@ -913,10 +1201,16 @@ "value": "Właściciel zespołu" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Tylko do odczytu dla zespołu" + } + ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Witryny zespołu" } ], "label.teams": [ @@ -991,6 +1285,24 @@ "value": "Kod śledzenia" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unikalni odwiedzający" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Bez tytułu" } ], + "label.update": [ + { + "type": 0, + "value": "Aktualizuj" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "Użytkownik" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Użytkownicy" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Śledź swoje kampanie za pomocą parametrów UTM." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Wyświetlenia" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Widoków na wizytę" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Średni czas wizyty" + } + ], "label.visitors": [ { "type": 0, "value": "Odwiedzający" } ], + "label.visits": [ + { + "type": 0, + "value": "Wizyty" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Wczoraj" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Wpisz " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": ", aby potwierdzić." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Zebrane dane" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Czy na pewno chcesz usunąć " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "Aby usunąć to konto, wpisz " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " w polu poniżej, aby potwierdzić." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Aby usunąć tę stronę, wpisz " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " w polu poniżej, aby potwierdzić." + "value": "Usunięcie zespołu usunie wszystkie jego witryny." } ], "message.delete-website-warning": [ @@ -1262,7 +1634,7 @@ "message.incorrect-username-password": [ { "type": 0, - "value": "Nieprawidłowa nazwa użytkownika/hasło." + "value": "Nieprawidłowa nazwa użytkownika lub hasło." } ], "message.invalid-domain": [ @@ -1288,7 +1660,7 @@ "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Nowa wersja Umami " }, { "type": 1, @@ -1296,7 +1668,7 @@ }, { "type": 0, - "value": " is available!" + "value": " jest dostępna!" } ], "message.no-data-available": [ @@ -1417,12 +1789,42 @@ "value": "Kod śledzenia" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Czy przenieść tę witrynę do Twoje konta?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Wybierz zespół, do którego chcesz przenieść tę witrynę." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Przenieś własność witryny na swoje konto lub do innego zespołu." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Zdarzenie wyzwalające" + } + ], "message.user-deleted": [ { "type": 0, "value": "Użytkownik usunięty." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Obejrzana strona" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Odpływ użytkowników" + } ] } diff --git a/public/intl/messages/pt-BR.json b/public/intl/messages/pt-BR.json index 790e13161..26985407a 100644 --- a/public/intl/messages/pt-BR.json +++ b/public/intl/messages/pt-BR.json @@ -8,25 +8,37 @@ "label.actions": [ { "type": 0, - "value": "Ações" + "value": "Ações do usuário" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Log de atividade" + "value": "Registro de atividades" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Adicionar" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Adicionar descrição" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Adicionar membro" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Adicionar etapa" } ], "label.add-website": [ @@ -56,25 +68,19 @@ "label.all-time": [ { "type": 0, - "value": "Todo o período" + "value": "Todos os períodos" } ], "label.analytics": [ { "type": 0, - "value": "Estatísticas" + "value": "Análise" } ], "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Tempo médio da visita" + "value": "Média" } ], "label.back": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Detalhamento" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Navegador" } ], "label.browsers": [ @@ -122,7 +128,7 @@ "label.change-password": [ { "type": 0, - "value": "Alterar a senha" + "value": "Alterar senha" } ], "label.cities": [ @@ -134,7 +140,7 @@ "label.city": [ { "type": 0, - "value": "City" + "value": "Cidade" } ], "label.clear-all": [ @@ -143,6 +149,12 @@ "value": "Limpar tudo" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -152,13 +164,13 @@ "label.confirm-password": [ { "type": 0, - "value": "Confirme a nova senha" + "value": "Confirmar senha" } ], "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Contém" } ], "label.continue": [ @@ -167,6 +179,12 @@ "value": "Continuar" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -176,13 +194,13 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "País" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Criar" } ], "label.create-report": [ @@ -194,7 +212,7 @@ "label.create-team": [ { "type": 0, - "value": "Criar time" + "value": "Criar equipe" } ], "label.create-user": [ @@ -209,6 +227,18 @@ "value": "Criado" } ], + "label.created-by": [ + { + "type": 0, + "value": "Criado por" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -218,7 +248,7 @@ "label.custom-range": [ { "type": 0, - "value": "Intervalo personalizado" + "value": "Período personalizado" } ], "label.dashboard": [ @@ -230,55 +260,61 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Dados" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Data" } ], "label.date-range": [ { "type": 0, - "value": "Intervalo de datas" + "value": "Período" } ], "label.day": [ { "type": 0, - "value": "Day" + "value": "Dia" } ], "label.default-date-range": [ { "type": 0, - "value": "Intervalo de datas predefinido" + "value": "Período padrão" } ], "label.delete": [ { "type": 0, - "value": "Remover" + "value": "Excluir" + } + ], + "label.delete-report": [ + { + "type": 0, + "value": "Excluir relatório" } ], "label.delete-team": [ { "type": 0, - "value": "Remover time" + "value": "Excluir equipe" } ], "label.delete-user": [ { "type": 0, - "value": "Remover usuário" + "value": "Excluir usuário" } ], "label.delete-website": [ { "type": 0, - "value": "Remover site" + "value": "Excluir site" } ], "label.description": [ @@ -290,7 +326,7 @@ "label.desktop": [ { "type": 0, - "value": "Computador" + "value": "Desktop" } ], "label.details": [ @@ -302,7 +338,7 @@ "label.device": [ { "type": 0, - "value": "Device" + "value": "Dispositivo" } ], "label.devices": [ @@ -314,13 +350,13 @@ "label.dismiss": [ { "type": 0, - "value": "Dispensar" + "value": "Fechar" } ], "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Não contém" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Abandono" } ], "label.edit": [ @@ -347,10 +383,28 @@ "value": "Editar painel" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Editar membro" + } + ], "label.enable-share-url": [ { "type": 0, - "value": "Ativar link de compartilhamento" + "value": "Ativar link para compartilhar" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" } ], "label.event": [ @@ -362,19 +416,25 @@ "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Dados do evento" } ], "label.events": [ { "type": 0, - "value": "Eventos" + "value": "Tipos de eventos" + } + ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" } ], "label.false": [ { "type": 0, - "value": "False" + "value": "Não" } ], "label.field": [ @@ -392,7 +452,7 @@ "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Filtro" } ], "label.filter-combined": [ @@ -404,13 +464,19 @@ "label.filter-raw": [ { "type": 0, - "value": "Dados brutos" + "value": "Bruto" } ], "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filtros" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ @@ -422,7 +488,25 @@ "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Entenda a taxa de conversão e abandono dos seus usuários." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ @@ -434,7 +518,19 @@ "label.greater-than-equals": [ { "type": 0, - "value": "Maior que ou igual" + "value": "Maior ou igual a" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ @@ -446,43 +542,55 @@ "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Explore seus dados em mais detalhes usando filtros" } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "É igual a" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Não é igual a" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Não definido" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Definido" } ], "label.join": [ { "type": 0, - "value": "Entrar" + "value": "Participar" } ], "label.join-team": [ { "type": 0, - "value": "Entrar no time" + "value": "Participar da equipe" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." } ], "label.language": [ @@ -531,6 +639,26 @@ "value": " horas" } ], + "label.last-months": [ + { + "type": 0, + "value": "Últimos " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " meses" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -540,7 +668,7 @@ "label.leave-team": [ { "type": 0, - "value": "Sair do time" + "value": "Sair da equipe" } ], "label.less-than": [ @@ -552,13 +680,13 @@ "label.less-than-equals": [ { "type": 0, - "value": "Menor que ou igual" + "value": "Menor ou igual a" } ], "label.login": [ { "type": 0, - "value": "Iniciar sessão" + "value": "Entrar" } ], "label.logout": [ @@ -567,10 +695,28 @@ "value": "Sair" } ], + "label.manage": [ + { + "type": 0, + "value": "Gerenciar" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "Máximo" + } + ], + "label.member": [ + { + "type": 0, + "value": "Membro" } ], "label.members": [ @@ -582,7 +728,7 @@ "label.min": [ { "type": 0, - "value": "Min" + "value": "Mínimo" } ], "label.mobile": [ @@ -597,10 +743,16 @@ "value": "Mais" } ], + "label.my-account": [ + { + "type": 0, + "value": "Minha conta" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Meus sites" } ], "label.name": [ @@ -621,16 +773,56 @@ "value": "Nenhum" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "registro" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "registros" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, - "value": "OS" + "value": "Sistema operacional" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Visão geral" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Página " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " de " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Título" } ], "label.pages": [ @@ -681,38 +873,80 @@ "value": "Senha" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, - "value": "Distribuído por " + "value": "Desenvolvido por " }, { "type": 1, "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Perfil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, - "value": "Parâmetros" + "value": "Consultas" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Consulta" } ], "label.query-parameters": [ { "type": 0, - "value": "Parâmetros de Consulta" + "value": "Parâmetros da consulta" } ], "label.realtime": [ @@ -724,7 +958,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Referência" } ], "label.referrers": [ @@ -742,19 +976,19 @@ "label.regenerate": [ { "type": 0, - "value": "Regerar" + "value": "Gerar novamente" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "Estado" } ], "label.regions": [ { "type": 0, - "value": "Regiões" + "value": "Estados" } ], "label.remove": [ @@ -763,10 +997,16 @@ "value": "Remover" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remover membro" + } + ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Relatórios" } ], "label.required": [ @@ -784,31 +1024,49 @@ "label.reset-website": [ { "type": 0, - "value": "Redefinir estatísticas" + "value": "Redefinir dados" } ], "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Retenção" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Avalie a fidelidade dos seus usuários medindo a frequência com que eles retornam." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ { "type": 0, - "value": "Papel" + "value": "Função" } ], "label.run-query": [ { "type": 0, - "value": "Executar query" + "value": "Executar consulta" } ], "label.save": [ @@ -820,13 +1078,19 @@ "label.screens": [ { "type": 0, - "value": "Telas" + "value": "Tamanhos de tela" } ], "label.search": [ { "type": 0, - "value": "Search" + "value": "Pesquisar" + } + ], + "label.select": [ + { + "type": 0, + "value": "Selecionar" } ], "label.select-date": [ @@ -835,12 +1099,24 @@ "value": "Selecionar data" } ], + "label.select-role": [ + { + "type": 0, + "value": "Selecionar função" + } + ], "label.select-website": [ { "type": 0, "value": "Selecionar site" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -856,19 +1132,31 @@ "label.share-url": [ { "type": 0, - "value": "Link de compartilhamento" + "value": "Link para compartilhar" } ], "label.single-day": [ { "type": 0, - "value": "Dia específico" + "value": "Apenas um dia" + } + ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Etapas" } ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Soma" } ], "label.tablet": [ @@ -880,49 +1168,55 @@ "label.team": [ { "type": 0, - "value": "Time" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Convidado" + "value": "Equipe" } ], "label.team-id": [ { "type": 0, - "value": "ID do Time" + "value": "ID da equipe" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" } ], "label.team-member": [ { "type": 0, - "value": "Membro" + "value": "Membro da equipe" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Nome da equipe" } ], "label.team-owner": [ { "type": 0, - "value": "Proprietário" + "value": "Proprietário da equipe" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Apenas visualização da equipe" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Sites da equipe" } ], "label.teams": [ { "type": 0, - "value": "Times" + "value": "Equipes" } ], "label.theme": [ @@ -970,7 +1264,7 @@ "label.toggle-charts": [ { "type": 0, - "value": "Mostrar/Esconder gráficos" + "value": "Alternar gráficos" } ], "label.total": [ @@ -982,7 +1276,7 @@ "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Total de registros" } ], "label.tracking-code": [ @@ -991,10 +1285,28 @@ "value": "Código de rastreamento" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transferir" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transferir site" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Sim" } ], "label.type": [ @@ -1006,7 +1318,7 @@ "label.unique": [ { "type": 0, - "value": "Único" + "value": "Únicos" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Visitantes únicos" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Sem título" } ], + "label.update": [ + { + "type": 0, + "value": "Atualizar" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "Usuário" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Usuários" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Acompanhe suas campanhas de publicidade através de parâmetros UTM." + } + ], "label.value": [ { "type": 0, @@ -1066,13 +1408,13 @@ "label.view": [ { "type": 0, - "value": "Ver" + "value": "Visualizar" } ], "label.view-details": [ { "type": 0, - "value": "Ver detalhes" + "value": "Ver mais" } ], "label.view-only": [ @@ -1087,22 +1429,40 @@ "value": "Visualizações" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Visualizações por visita" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo médio de visita" + } + ], "label.visitors": [ { "type": 0, "value": "Visitantes" } ], + "label.visits": [ + { + "type": 0, + "value": "Visitas" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Site" } ], "label.website-id": [ { "type": 0, - "value": "ID do Site" + "value": "ID do site" } ], "label.websites": [ @@ -1123,48 +1483,44 @@ "value": "Ontem" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Digite " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " na caixa abaixo para confirmar." + } + ], "message.active-users": [ + { + "type": 0, + "value": " Atualmente " + }, { "type": 1, "value": "x" }, { "type": 0, - "value": " " - }, - { - "offset": 0, - "options": { - "one": { - "value": [ - { - "type": 0, - "value": "visitante" - } - ] - }, - "other": { - "value": [ - { - "type": 0, - "value": "visitantes" - } - ] - } - }, - "pluralType": "cardinal", - "type": 6, - "value": "x" - }, + "value": " usuários ativos" + } + ], + "message.collected-data": [ { "type": 0, - "value": " neste momento" + "value": "Collected data" } ], "message.confirm-delete": [ { "type": 0, - "value": "Deseja realmente remover " + "value": "Tem certeza de que deseja excluir " }, { "type": 1, @@ -1178,7 +1534,21 @@ "message.confirm-leave": [ { "type": 0, - "value": "Você tem certeza que deseja sair de " + "value": "Tem certeza de que deseja sair de " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Tem certeza que deseja remover " }, { "type": 1, @@ -1192,7 +1562,7 @@ "message.confirm-reset": [ { "type": 0, - "value": "Você tem certeza que deseja redefinir as estatísticas de " + "value": "Tem certeza que deseja redefinir os dados de " }, { "type": 1, @@ -1203,38 +1573,16 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "Para excluir esta conta, digite " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " na caixa abaixo para confirmar." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Para excluir este website, digite " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " na caixa abaixo para confirmar." + "value": "Excluir a equipe também excluirá todos os sites da equipe." } ], "message.delete-website-warning": [ { "type": 0, - "value": "Todos os dados associados também serão eliminados." + "value": "Todos os dados relacionados serão excluídos." } ], "message.error": [ @@ -1266,7 +1614,7 @@ "message.incorrect-username-password": [ { "type": 0, - "value": "O nome de usuário e/ou senha está incorreto." + "value": "Nome de usuário ou senha incorretos." } ], "message.invalid-domain": [ @@ -1278,7 +1626,7 @@ "message.min-password-length": [ { "type": 0, - "value": "Quantidade mínima de " + "value": "A senha deve ter no mínimo " }, { "type": 1, @@ -1292,7 +1640,7 @@ "message.new-version-available": [ { "type": 0, - "value": "Uma nova versão do Umami " + "value": "Uma nova versão " }, { "type": 1, @@ -1300,55 +1648,55 @@ }, { "type": 0, - "value": " está disponível!" + "value": " do Umami está disponível!" } ], "message.no-data-available": [ { "type": 0, - "value": "Sem dados disponíveis." + "value": "Não há dados disponíveis." } ], "message.no-event-data": [ { "type": 0, - "value": "Nenhum dado de evento está disponível." + "value": "Não há eventos disponíveis." } ], "message.no-match-password": [ { "type": 0, - "value": "As senhas não correspondem" + "value": "As senhas não coincidem." } ], "message.no-results-found": [ { "type": 0, - "value": "Nenhum resultado foi encontrado." + "value": "Nenhum resultado encontrado." } ], "message.no-team-websites": [ { "type": 0, - "value": "Este time não possui nenhum site." + "value": "Esta equipe não possui sites." } ], "message.no-teams": [ { "type": 0, - "value": "Você não criou nenhum time." + "value": "Você ainda não criou nenhuma equipe." } ], "message.no-users": [ { "type": 0, - "value": "Não há nenhum usuário." + "value": "Não há usuários." } ], "message.no-websites-configured": [ { "type": 0, - "value": "Nenhum site foi configurado ainda." + "value": "Você ainda não configurou nenhum site." } ], "message.page-not-found": [ @@ -1360,7 +1708,7 @@ "message.reset-website": [ { "type": 0, - "value": "Para redefinir este site, digite " + "value": "Se você tiver certeza de que deseja redefinir este site, digite " }, { "type": 1, @@ -1368,13 +1716,13 @@ }, { "type": 0, - "value": " na caixa abaixo para confirmar." + "value": " na caixa de entrada abaixo para confirmar." } ], "message.reset-website-warning": [ { "type": 0, - "value": "Todas as estatísticas deste site serão removidas, mas seu código de rastreamento permanecerá intacto." + "value": "Todos os dados estatísticos deste site serão excluídos, mas seu código de rastreamento permanecerá o mesmo." } ], "message.saved": [ @@ -1386,7 +1734,7 @@ "message.share-url": [ { "type": 0, - "value": "Este é o link público de compartilhamento para " + "value": "Este é o link para compartilhar " }, { "type": 1, @@ -1400,19 +1748,19 @@ "message.team-already-member": [ { "type": 0, - "value": "Você já um membro do time." + "value": "Você já é membro desta equipe." } ], "message.team-not-found": [ { "type": 0, - "value": "Time não encontrado." + "value": "Equipe não encontrada." } ], "message.team-websites-info": [ { "type": 0, - "value": "Os sites podem ser visualizados por qualquer membro da equipe." + "value": "Qualquer membro da equipe pode visualizar os sites." } ], "message.tracking-code": [ @@ -1421,10 +1769,40 @@ "value": "Código de rastreamento" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transferir este site para sua conta?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Selecione para qual equipe deseja transferir este site." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfira a propriedade do site para sua conta ou para outra equipe." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Evento disparado" + } + ], "message.user-deleted": [ { "type": 0, - "value": "Usuário removido." + "value": "Usuário excluído." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Página visualizada" } ], "message.visitor-log": [ @@ -1438,7 +1816,7 @@ }, { "type": 0, - "value": " usando " + "value": " usando o navegador " }, { "type": 1, @@ -1446,7 +1824,7 @@ }, { "type": 0, - "value": " no " + "value": " em um " }, { "type": 1, @@ -1454,11 +1832,21 @@ }, { "type": 0, - "value": " " + "value": " com sistema operacional " }, { "type": 1, "value": "os" + }, + { + "type": 0, + "value": "." + } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitantes abandonados" } ] } diff --git a/public/intl/messages/pt-PT.json b/public/intl/messages/pt-PT.json index 511d74fc6..6efd9834b 100644 --- a/public/intl/messages/pt-PT.json +++ b/public/intl/messages/pt-PT.json @@ -11,7 +11,7 @@ "value": "Ações" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Tempo médio de visita" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Eliminar" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Ativar link de partilha" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Eventos" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " horas" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Sair" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Mais" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Senha" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Perfil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Dia único" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Código de rastreamento" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Visitantes únicos" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Visualizações" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Tempo médio de visita" + } + ], "label.visitors": [ { "type": 0, "value": "Visitantes" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1161,6 +1535,12 @@ "value": " neste momento" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1189,6 +1569,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1203,32 +1597,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1421,12 +1793,42 @@ "value": "Código de rastreamento" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1460,5 +1862,11 @@ "type": 1, "value": "os" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/ro-RO.json b/public/intl/messages/ro-RO.json index 9181c1035..19541aca1 100644 --- a/public/intl/messages/ro-RO.json +++ b/public/intl/messages/ro-RO.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Cod de access" } ], "label.actions": [ @@ -11,28 +11,40 @@ "value": "Acțiuni" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Jurnal de activități" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Adaugă" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Adaugă descriere" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Adaugă membru" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Adaugă pas" } ], "label.add-website": [ { "type": 0, - "value": "Adăugare site web" + "value": "Adaugă site web" } ], "label.admin": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "După" } ], "label.all": [ @@ -56,7 +68,7 @@ "label.all-time": [ { "type": 0, - "value": "All time" + "value": "Pentru tot timpul" } ], "label.analytics": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Timp mediu de vizitare" + "value": "Mediu" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Înainte" } ], "label.bounce-rate": [ @@ -98,7 +104,7 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Detaliat" } ], "label.browser": [ @@ -128,19 +134,25 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Orașe" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "Oraș" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Șterge tot" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compară" } ], "label.confirm": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Conține" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "Continuă" + } + ], + "label.count": [ + { + "type": 0, + "value": "Număr" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Țară" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Crează" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Crează report" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Crează echipă" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Crează utilizator" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "Creat" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Creat de" + } + ], + "label.current": [ + { + "type": 0, + "value": "Curent" } ], "label.current-password": [ @@ -230,31 +260,31 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Date" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Dată" } ], "label.date-range": [ { "type": 0, - "value": "Interval de date" + "value": "Interval" } ], "label.day": [ { "type": 0, - "value": "Day" + "value": "Zi" } ], "label.default-date-range": [ { "type": 0, - "value": "Interval de date implicit" + "value": "Interval implicit" } ], "label.delete": [ @@ -263,28 +293,34 @@ "value": "Șterge" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Șterge raport" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "Șterge echipă" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "Șterge utilizator" } ], "label.delete-website": [ { "type": 0, - "value": "Ștergere site web" + "value": "Șterge site web" } ], "label.description": [ { "type": 0, - "value": "Description" + "value": "Descriere" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Detalii" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Dispozitiv" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Nu conține" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Rată de abandon" } ], "label.edit": [ @@ -344,7 +380,13 @@ "label.edit-dashboard": [ { "type": 0, - "value": "Edit dashboard" + "value": "Editare tablou de bord" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Editare membru" } ], "label.enable-share-url": [ @@ -353,16 +395,28 @@ "value": "Activare adresă URL de distribuire" } ], + "label.end-step": [ + { + "type": 0, + "value": "Pas final" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL de intrare" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Eveniment" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Date despre eveniment" } ], "label.events": [ @@ -371,28 +425,34 @@ "value": "Evenimente" } ], + "label.exit": [ + { + "type": 0, + "value": "URL de ieșire" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Fals" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Câmp" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Câmpuri" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Filtru" } ], "label.filter-combined": [ @@ -410,91 +470,139 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filtre" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Văzut pentru prima dată" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Parcursul utilizatorului" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Înțelege rata de conversie și rata de abandon a utilizatorilor." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Obiectiv" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Obiective" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Urmărește obiectivele de vizualizări și evenimente." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Mai mare decât" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Mai mare sau egal cu" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Perspective" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Aprofundează datele utilizând segmente și filtre." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "Este" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Nu este" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Nu este setat" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Este setat" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "Alătură-te" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "Alătură-te echipei" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Traseu" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Înțelege cum navighează vizitatorii prin website." } ], "label.language": [ { "type": 0, - "value": "Language" + "value": "Limbă" } ], "label.languages": [ { "type": 0, - "value": "Languages" + "value": "Limbi" } ], "label.laptop": [ @@ -531,28 +639,48 @@ "value": " ore" } ], + "label.last-months": [ + { + "type": 0, + "value": "Ultimele " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " luni" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Văzut ultima dată" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Părăsește" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Părăsește echipa" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Mai puțin decât" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Mai puțin sau egal cu" } ], "label.login": [ @@ -564,7 +692,19 @@ "label.logout": [ { "type": 0, - "value": "Iesire din cont" + "value": "Ieșire din cont" + } + ], + "label.manage": [ + { + "type": 0, + "value": "Administrează" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" } ], "label.max": [ @@ -573,10 +713,16 @@ "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Membru" + } + ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Membri" } ], "label.min": [ @@ -597,10 +743,16 @@ "value": "Mai mult" } ], + "label.my-account": [ + { + "type": 0, + "value": "Contul meu" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Website-ul meu" } ], "label.name": [ @@ -612,13 +764,53 @@ "label.new-password": [ { "type": 0, - "value": "Parola nouă" + "value": "Parolă nouă" } ], "label.none": [ { "type": 0, - "value": "None" + "value": "Niciunul" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "înregistrare" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "înregistrări" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" } ], "label.os": [ @@ -630,19 +822,19 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Vedere de ansamblu" } ], "label.owner": [ { "type": 0, - "value": "Owner" + "value": "Titular" } ], "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Pagina " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " din " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Titlul paginii" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Parolă" } ], + "label.path": [ + { + "type": 0, + "value": "Rută" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Rute" + } + ], "label.powered-by": [ { "type": 0, @@ -691,40 +895,70 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Anterior" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Perioda anterioară" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Anul anterior" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Proprietăți" + } + ], + "label.property": [ + { + "type": 0, + "value": "Proprietate" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "Interogări" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Interogare" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "Parametri de interogare" } ], "label.realtime": [ { "type": 0, - "value": "Realtime" + "value": "Timp real" } ], "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Proveniență" } ], "label.referrers": [ @@ -742,31 +976,37 @@ "label.regenerate": [ { "type": 0, - "value": "Regenerate" + "value": "Regenerează" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "Regiune" } ], "label.regions": [ { "type": 0, - "value": "Regions" + "value": "Regiuni" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "Îndepărtează" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Îndepărtează membru" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Rapoarte" } ], "label.required": [ @@ -790,25 +1030,43 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Retenție" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Măsoară atractivitatea site-ului tău prin urmărirea frecvenței cu care utilizatorii se întorc." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Venit" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Urmărește venitul în timp." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Rol" } ], "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Execută interogarea" } ], "label.save": [ @@ -820,31 +1078,49 @@ "label.screens": [ { "type": 0, - "value": "Screens" + "value": "Ecrane" } ], "label.search": [ { "type": 0, - "value": "Search" + "value": "Căutare" + } + ], + "label.select": [ + { + "type": 0, + "value": "Selectează" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Selectează data" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Selectează rolul" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "Selectează website" + } + ], + "label.session": [ + { + "type": 0, + "value": "Sesiune" } ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "Sesiuni" } ], "label.settings": [ @@ -865,10 +1141,22 @@ "value": "O singură zi" } ], + "label.start-step": [ + { + "type": 0, + "value": "Pas de început" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Pași" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Sumă" } ], "label.tablet": [ @@ -880,55 +1168,61 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "Echipă" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "ID Echipă" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Manager echipă" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "Membru echipă" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Nume echipă" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "Titular echipă" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Doar vizualizare echipă" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Website-uri echipă" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "Echipă" } ], "label.theme": [ { "type": 0, - "value": "Theme" + "value": "Temă" } ], "label.this-month": [ @@ -958,7 +1252,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "Titlu" } ], "label.today": [ @@ -982,7 +1276,7 @@ "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Total înregistrări" } ], "label.tracking-code": [ @@ -991,22 +1285,40 @@ "value": "Cod de urmărire" } ], + "label.transactions": [ + { + "type": 0, + "value": "Tranzacții" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Adevărat" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "Tip" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Unici" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Vizitatori unici" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Clienți unici" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Fără titlu" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" } ], "label.url": [ @@ -1042,7 +1366,13 @@ "label.user": [ { "type": 0, - "value": "User" + "value": "Utilizator" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "Proprietatea utilizatorului" } ], "label.username": [ @@ -1054,19 +1384,31 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Utilizatori" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Urmărește campaniile tale cu parametri UTM." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Valoare" } ], "label.view": [ { "type": 0, - "value": "View" + "value": "Vizualizare" } ], "label.view-details": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Doar vizualizare" } ], "label.views": [ @@ -1087,12 +1429,30 @@ "value": "Vizualizări" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Vizualizări per vizită" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Timp mediu de vizitare" + } + ], "label.visitors": [ { "type": 0, "value": "Vizitatori" } ], + "label.visits": [ + { + "type": 0, + "value": "Vizite" + } + ], "label.website": [ { "type": 0, @@ -1102,7 +1462,7 @@ "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "ID Website" } ], "label.websites": [ @@ -1114,13 +1474,27 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Fereastră" } ], "label.yesterday": [ { "type": 0, - "value": "Yesterday" + "value": "Ieri" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Scrie " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " în câmpul de mai jos pentru a confirma." } ], "message.active-users": [ @@ -1157,10 +1531,16 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Date colectate" + } + ], "message.confirm-delete": [ { "type": 0, - "value": "Sunteți sigur că doriți să ștergeți " + "value": "Ești sigur că vrei să ștergi " }, { "type": 1, @@ -1174,7 +1554,21 @@ "message.confirm-leave": [ { "type": 0, - "value": "Are you sure you want to leave " + "value": "Ești sigur că vrei să părăsești " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Ești sigur că vrei să ștergi " }, { "type": 1, @@ -1188,7 +1582,7 @@ "message.confirm-reset": [ { "type": 0, - "value": "Sunteți sigur că doriți să resetați statisticile pentru " + "value": "Ești sigur că vrei să resetezi statisticile pentru " }, { "type": 1, @@ -1199,32 +1593,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Ștergerea unei echipe va șterge și toate website-urile echipei." } ], "message.delete-website-warning": [ @@ -1246,7 +1618,7 @@ }, { "type": 0, - "value": " on " + "value": " la " }, { "type": 1, @@ -1268,13 +1640,13 @@ "message.invalid-domain": [ { "type": 0, - "value": "Domeniu nu este valid" + "value": "Domeniul nu este valid" } ], "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "Lungimea minimă este de " }, { "type": 1, @@ -1282,13 +1654,13 @@ }, { "type": 0, - "value": " characters" + "value": " caractere" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "O nouă versiune de Umami " }, { "type": 1, @@ -1296,19 +1668,19 @@ }, { "type": 0, - "value": " is available!" + "value": " este disponibilă!" } ], "message.no-data-available": [ { "type": 0, - "value": "Nici o informație disponibilă." + "value": "Nicio informație disponibilă." } ], "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Nu sunt disponibile date legate de eveniment." } ], "message.no-match-password": [ @@ -1320,31 +1692,31 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Nu a fost găsit niciun rezultat." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "Echipa aceasta nu are niciun website." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "Nu ai creat nicio echipă." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "Nu există utilizatori." } ], "message.no-websites-configured": [ { "type": 0, - "value": "Nu aveți niciun site web configurat." + "value": "Nu ai niciun site web configurat." } ], "message.page-not-found": [ @@ -1356,7 +1728,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Pentru a reseta acest website, scrie " }, { "type": 1, @@ -1364,7 +1736,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " În câmpul de mai jos pentru a confirma." } ], "message.reset-website-warning": [ @@ -1396,19 +1768,19 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "Deja ești membru al acestei echipe." } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "Echipa nu a fost găsită." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "Site-urile web pot fi vizualizate de către oricare membru al echipei." } ], "message.tracking-code": [ @@ -1417,10 +1789,40 @@ "value": "Cod de urmărire" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Vrei să transferi acest website pe contul tău?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Selectează echipa căreia vrei să îi transferi site-ul." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transferă titulatura site-ului către tine sau către o altă echipă." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Eveniment declanșat" + } + ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "Utilizator șters." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Pagină vizualizată" } ], "message.visitor-log": [ @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Vizitatori care au abandonat" + } ] } diff --git a/public/intl/messages/ru-RU.json b/public/intl/messages/ru-RU.json index 93b89291d..b7c0165ca 100644 --- a/public/intl/messages/ru-RU.json +++ b/public/intl/messages/ru-RU.json @@ -11,7 +11,7 @@ "value": "Действия" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Журнал активности" @@ -20,13 +20,25 @@ "label.add": [ { "type": 0, - "value": "Add" + "value": "Добавить" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Добавить описание" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Добавить участника" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Добавить шаг" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "После" } ], "label.all": [ @@ -68,13 +80,7 @@ "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Среднее время посещения" + "value": "Средний" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "До" } ], "label.bounce-rate": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Авария" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Браузер" } ], "label.browsers": [ @@ -134,7 +140,7 @@ "label.city": [ { "type": 0, - "value": "City" + "value": "Город" } ], "label.clear-all": [ @@ -143,6 +149,12 @@ "value": "Очистить все" } ], + "label.compare": [ + { + "type": 0, + "value": "Сравнить" + } + ], "label.confirm": [ { "type": 0, @@ -158,7 +170,7 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Содержит" } ], "label.continue": [ @@ -167,6 +179,12 @@ "value": "Продолжить" } ], + "label.count": [ + { + "type": 0, + "value": "Считать" + } + ], "label.countries": [ { "type": 0, @@ -176,19 +194,19 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Страна" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Создать" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Создать отчет" } ], "label.create-team": [ @@ -209,6 +227,18 @@ "value": "Создано" } ], + "label.created-by": [ + { + "type": 0, + "value": "Создано" + } + ], + "label.current": [ + { + "type": 0, + "value": "Текущий" + } + ], "label.current-password": [ { "type": 0, @@ -236,7 +266,7 @@ "label.date": [ { "type": 0, - "value": "Date" + "value": "Дата" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "День" } ], "label.default-date-range": [ @@ -263,6 +293,12 @@ "value": "Удалить" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Удалить отчет" + } + ], "label.delete-team": [ { "type": 0, @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Описание" } ], "label.desktop": [ @@ -302,7 +338,7 @@ "label.device": [ { "type": 0, - "value": "Device" + "value": "Устройство" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Не содержит" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Высадка" } ], "label.edit": [ @@ -347,22 +383,40 @@ "value": "Редактировать дашборд" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Редактировать участника" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Разрешить делиться ссылкой" } ], + "label.end-step": [ + { + "type": 0, + "value": "Конечный шаг" + } + ], + "label.entry": [ + { + "type": 0, + "value": "URL-адрес входа" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Событие" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Данные о событии" } ], "label.events": [ @@ -371,28 +425,34 @@ "value": "События" } ], + "label.exit": [ + { + "type": 0, + "value": "URL-адрес выхода" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Ложь" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Поле" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Поля" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Фильтр" } ], "label.filter-combined": [ @@ -410,67 +470,103 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Фильтры" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "Первый вход" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Воронка" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Изучите коэффициент конверсии и ухода пользователей." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Цель" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Цели" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Отслеживайте свои цели по просмотрам страниц и событиям." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Больше, чем" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Больше или равно" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Информация" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Погрузитесь глубже в свои данные с помощью сегментов и фильтров." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "Является" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Не установлен" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Не установлено" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Установлен" } ], "label.join": [ @@ -485,6 +581,18 @@ "value": "Присоединиться к команде" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Поймите, как пользователи перемещаются по вашему сайту." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " часа" } ], + "label.last-months": [ + { + "type": 0, + "value": "Последние " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " месяцев" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Последний вход" + } + ], "label.leave": [ { "type": 0, @@ -546,13 +674,13 @@ "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Меньше, чем" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Меньше или равно" } ], "label.login": [ @@ -567,10 +695,28 @@ "value": "Выйти" } ], + "label.manage": [ + { + "type": 0, + "value": "Управление" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Менеджер" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "Максимум" + } + ], + "label.member": [ + { + "type": 0, + "value": "Участник" } ], "label.members": [ @@ -582,7 +728,7 @@ "label.min": [ { "type": 0, - "value": "Min" + "value": "Минимум" } ], "label.mobile": [ @@ -597,10 +743,16 @@ "value": "Больше" } ], + "label.my-account": [ + { + "type": 0, + "value": "Мой профиль" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Мои сайты" } ], "label.name": [ @@ -621,6 +773,46 @@ "value": "Не указано" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "запись" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "записи" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -630,7 +822,7 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Обзор" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Страница " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " из " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Название страницы" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Пароль" } ], + "label.path": [ + { + "type": 0, + "value": "Путь" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Пути" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Предыдущий" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Предыдущий период" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Предыдущий год" + } + ], "label.profile": [ { "type": 0, "value": "Профиль" } ], + "label.properties": [ + { + "type": 0, + "value": "Свойства" + } + ], + "label.property": [ + { + "type": 0, + "value": "Свойство" + } + ], "label.queries": [ { "type": 0, @@ -706,7 +940,7 @@ "label.query": [ { "type": 0, - "value": "Query" + "value": "Запрос" } ], "label.query-parameters": [ @@ -724,7 +958,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Реферер" } ], "label.referrers": [ @@ -748,7 +982,7 @@ "label.region": [ { "type": 0, - "value": "Region" + "value": "Регион" } ], "label.regions": [ @@ -763,10 +997,16 @@ "value": "Удалить" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Удалить участника" + } + ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Отчеты" } ], "label.required": [ @@ -790,13 +1030,31 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Удержание" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Измерьте «прилипаемость» вашего сайта, отслеживая, как часто пользователи возвращаются на него." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Выручка" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Изучите свои доходы за определенное время." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Доходная недвижимость" } ], "label.role": [ @@ -808,7 +1066,7 @@ "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Выполнить запрос" } ], "label.save": [ @@ -826,13 +1084,25 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Поиск" + } + ], + "label.select": [ + { + "type": 0, + "value": "Выберите" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Выберите дату" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Выберите роль" } ], "label.select-website": [ @@ -841,6 +1111,12 @@ "value": "Выбрать сайт" } ], + "label.session": [ + { + "type": 0, + "value": "Сессия" + } + ], "label.sessions": [ { "type": 0, @@ -865,10 +1141,22 @@ "value": "Один день" } ], + "label.start-step": [ + { + "type": 0, + "value": "Начальный этап" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Шаги" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Сумма" } ], "label.tablet": [ @@ -883,18 +1171,18 @@ "value": "Команда" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Гость команды" - } - ], "label.team-id": [ { "type": 0, "value": "ID команды" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Менеджер команды" + } + ], "label.team-member": [ { "type": 0, @@ -904,7 +1192,7 @@ "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Название команды" } ], "label.team-owner": [ @@ -913,10 +1201,16 @@ "value": "Владелец команды" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Только командный просмотр" + } + ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Веб-сайты команды" } ], "label.teams": [ @@ -976,13 +1270,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "Всего" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Всего записей" } ], "label.tracking-code": [ @@ -991,22 +1285,40 @@ "value": "Код отслеживания" } ], + "label.transactions": [ + { + "type": 0, + "value": "Транзакции" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Передача" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Передать сайт" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Правда" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "Тип" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Уникальный" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Уникальные посетители" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Уникальные клиенты" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Без названия" + } + ], + "label.update": [ + { + "type": 0, + "value": "Обновление" } ], "label.url": [ @@ -1045,6 +1369,12 @@ "value": "Пользователь" } ], + "label.user-property": [ + { + "type": 0, + "value": "Собственность пользователя" + } + ], "label.username": [ { "type": 0, @@ -1057,10 +1387,22 @@ "value": "Пользователи" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Отслеживайте свои кампании с помощью UTM-параметров." + } + ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Значение" } ], "label.view": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Только просмотр" } ], "label.views": [ @@ -1087,16 +1429,34 @@ "value": "Просмотры" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Просмотров за посещение" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Среднее время посещения" + } + ], "label.visitors": [ { "type": 0, "value": "Посетители" } ], + "label.visits": [ + { + "type": 0, + "value": "Посещения" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Сайт" } ], "label.website-id": [ @@ -1114,7 +1474,7 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Окно" } ], "label.yesterday": [ @@ -1123,6 +1483,20 @@ "value": "Вчера" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Введите " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " в поле ниже, чтобы подтвердить." + } + ], "message.active-users": [ { "type": 1, @@ -1133,6 +1507,12 @@ "value": " текущих посетителей" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Собранные данные" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1161,6 +1541,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Вы уверены, что хотите удалить " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1175,24 +1569,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Для удаления введите DELETE" + "value": "При удалении команды будут удалены и все ее веб-сайты." } ], "message.delete-website-warning": [ @@ -1214,7 +1594,7 @@ }, { "type": 0, - "value": " on " + "value": " на " }, { "type": 1, @@ -1256,7 +1636,7 @@ "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Вышла новая версия Umami " }, { "type": 1, @@ -1264,7 +1644,7 @@ }, { "type": 0, - "value": " is available!" + "value": "!" } ], "message.no-data-available": [ @@ -1276,7 +1656,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Данные о событиях отсутствуют." } ], "message.no-match-password": [ @@ -1288,7 +1668,7 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Результаты не найдены." } ], "message.no-team-websites": [ @@ -1377,12 +1757,42 @@ "value": "Код отслеживания" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Перенести этот сайт в свой прфоиль?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Выберите команду, которой нужно передать этот сайт." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Передайте право владения сайтом своей учетной записи или другой команде." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Запущенное событие" + } + ], "message.user-deleted": [ { "type": 0, "value": "Пользователь удален." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Просмотренная страница" + } + ], "message.visitor-log": [ { "type": 0, @@ -1416,5 +1826,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Высадка посетителей" + } ] } diff --git a/public/intl/messages/si-LK.json b/public/intl/messages/si-LK.json index 578a8abed..e18561c9d 100644 --- a/public/intl/messages/si-LK.json +++ b/public/intl/messages/si-LK.json @@ -11,7 +11,7 @@ "value": "Actions" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Average visit time" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "මකන්න" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "බෙදාගැනීමේ URL සබල කරන්න" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Events" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " පැය" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "පිටවීම" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "තවත්" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "කිසිවක් නැත" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "මුරපදය" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "පැතිකඩ" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "තනි දවස" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "ලුහුබැඳීමේ කේතය" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unique visitors" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Views" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], "label.visitors": [ { "type": 0, "value": "Visitors" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "ඊයේ" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 1, @@ -1181,6 +1561,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 1, @@ -1191,32 +1585,10 @@ "value": " ට අදාල සංඛ්‍යාලේඛන නැවත පිහිටුවීමට අවශ්‍යද?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1423,12 +1795,42 @@ "value": " section of your HTML." } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1462,5 +1864,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/sk-SK.json b/public/intl/messages/sk-SK.json index 6b375afed..0908ec4f6 100644 --- a/public/intl/messages/sk-SK.json +++ b/public/intl/messages/sk-SK.json @@ -11,7 +11,7 @@ "value": "Akcie" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Priemerný čas návštevy" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Zmazať" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Povoliť zdielanie URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Udalosti" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " hodín" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Odhlásiť" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Viac" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Heslo" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "Jeden deň" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Sledovací kód" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Jedinečné návštevy" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Zobrazení" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Priemerný čas návštevy" + } + ], "label.visitors": [ { "type": 0, "value": "Návštevy" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Sledovací kód" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/sl-SI.json b/public/intl/messages/sl-SI.json index 6d435020c..ae11c067d 100644 --- a/public/intl/messages/sl-SI.json +++ b/public/intl/messages/sl-SI.json @@ -11,7 +11,7 @@ "value": "Dejanja" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Dnevnik dejavnosti" @@ -29,6 +29,18 @@ "value": "Dodaj opis" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Povprečno" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Povprečni čas obiska" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Počisti vse" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Nadaljuj" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Ustvarjeno" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Izbriši" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Uredi nadzorno ploščo" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Uredi povezavo za deljenje" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Dogodki" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filtri" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Večje ali enako kot" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Pridruži se ekipi" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " ur" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "Odjava" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Največ" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "Več" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "Brez" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "Geslo" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Odstrani" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Izberi datum" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Izberi spletno mesto" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "En dan" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Ekipa" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Gost ekipe" - } - ], "label.team-id": [ { "type": 0, "value": "ID ekipe" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Lastnik ekipe" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "Koda za sledenje" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "Unikatni obiskovalci" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Brez naslova" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "Uporabnik" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Uporabniki" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "Obiski" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Povprečni čas obiska" + } + ], "label.visitors": [ { "type": 0, "value": "Obiskovalci" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Včeraj" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "Za potrditev izbrisa tega računa vnesite " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " v spodnje polje." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "Za potrditev izbrisa tega spletnega mesta vnesite " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " v spodnje polje." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "Koda za sledenje" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "Uporabnik je izbrisan." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1456,5 +1858,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/sv-SE.json b/public/intl/messages/sv-SE.json index 9824be155..830a7bd32 100644 --- a/public/intl/messages/sv-SE.json +++ b/public/intl/messages/sv-SE.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Åtkomstkod" } ], "label.actions": [ @@ -11,7 +11,7 @@ "value": "Händelser" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Aktivitetslogg" @@ -20,19 +20,31 @@ "label.add": [ { "type": 0, - "value": "Add" + "value": "Lägg till" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Lägg till beskrivning" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" } ], "label.add-website": [ { "type": 0, - "value": "Lägg till webbsajt" + "value": "Lägg till webbplats" } ], "label.admin": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "Efter" } ], "label.all": [ @@ -62,19 +74,13 @@ "label.analytics": [ { "type": 0, - "value": "Analys" + "value": "Webbplats Analys" } ], "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Medelbesökstid" + "value": "Genomsnitt" } ], "label.back": [ @@ -86,25 +92,25 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Före" } ], "label.bounce-rate": [ { "type": 0, - "value": "Avvisningfrekvens" + "value": "Avvisningsfrekvens" } ], "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Analys" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Webbläsare" } ], "label.browsers": [ @@ -134,7 +140,7 @@ "label.city": [ { "type": 0, - "value": "City" + "value": "Stad" } ], "label.clear-all": [ @@ -143,6 +149,12 @@ "value": "Rensa alla" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -158,7 +170,7 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Innehåller" } ], "label.continue": [ @@ -167,6 +179,12 @@ "value": "Fortsätt" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -176,19 +194,19 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Land" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Skapa" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Skapa rapport" } ], "label.create-team": [ @@ -209,6 +227,18 @@ "value": "Skapad" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -236,19 +266,19 @@ "label.date": [ { "type": 0, - "value": "Date" + "value": "Datum" } ], "label.date-range": [ { "type": 0, - "value": "Datumomfång" + "value": "Tidsperiod" } ], "label.day": [ { "type": 0, - "value": "Day" + "value": "Dag" } ], "label.default-date-range": [ @@ -263,6 +293,12 @@ "value": "Radera" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -278,13 +314,13 @@ "label.delete-website": [ { "type": 0, - "value": "Radera webbsajt" + "value": "Radera webbplats" } ], "label.description": [ { "type": 0, - "value": "Description" + "value": "Beskrivning" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Detailjer" + "value": "Detaljer" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Enhet" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Innehåller inte" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Bortfall" } ], "label.edit": [ @@ -347,22 +383,40 @@ "value": "Redigera översikt" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, - "value": "Aktivera delnings-URL" + "value": "Aktivera delningslänk" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" } ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Händelse" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Händelsedata" } ], "label.events": [ @@ -371,22 +425,28 @@ "value": "Händelser" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Falskt" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Fält" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Fältar" } ], "label.filter": [ @@ -410,7 +470,13 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filter" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ @@ -422,55 +488,85 @@ "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Förstå omvandlingen och bortfallsfrekvensen för användare." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Större än" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Större än eller lika med" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Insikter" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Dyk djupare in i din data genom att använda olika segment och filter." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "Är" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Är inte" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Är inte inställd" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Är inställd" } ], "label.join": [ @@ -482,7 +578,19 @@ "label.join-team": [ { "type": 0, - "value": "gå med i team" + "value": "Gå med i team" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." } ], "label.language": [ @@ -531,6 +639,26 @@ "value": " timmarna" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -546,13 +674,13 @@ "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Mindre än" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Mindre än eller lika med" } ], "label.login": [ @@ -567,12 +695,30 @@ "value": "Logga ut" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,10 +743,16 @@ "value": "Mer" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Mina webbplatser" } ], "label.name": [ @@ -621,16 +773,56 @@ "value": "Inga" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, - "value": "OS" + "value": "Operativsystem" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Översikt" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Sida " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " av " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Sidtitel" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Lösenord" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -706,13 +940,13 @@ "label.query": [ { "type": 0, - "value": "Frågor" + "value": "Fråga" } ], "label.query-parameters": [ { "type": 0, - "value": "Fråge-parametrar" + "value": "Frågeparametrar" } ], "label.realtime": [ @@ -724,7 +958,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Hänvisare" } ], "label.referrers": [ @@ -742,7 +976,7 @@ "label.regenerate": [ { "type": 0, - "value": "Regenerera" + "value": "Förnya" } ], "label.region": [ @@ -763,10 +997,16 @@ "value": "Ta bort" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Rapporter" } ], "label.required": [ @@ -784,7 +1024,7 @@ "label.reset-website": [ { "type": 0, - "value": "Återställ statistik" + "value": "Återställ webbplats" } ], "label.retention": [ @@ -796,7 +1036,25 @@ "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Mät din webbplats engagemang genom att följa hur ofta användare återvänder." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ @@ -808,7 +1066,7 @@ "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Kör sökning" } ], "label.save": [ @@ -826,25 +1084,43 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Sök" + } + ], + "label.select": [ + { + "type": 0, + "value": "Select" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Välj datum" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" } ], "label.select-website": [ { "type": 0, - "value": "Välj webbsajt" + "value": "Välj webbplats" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" } ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "Sessioner" } ], "label.settings": [ @@ -856,7 +1132,7 @@ "label.share-url": [ { "type": 0, - "value": "Delnings-URL" + "value": "Delningslänk" } ], "label.single-day": [ @@ -865,16 +1141,28 @@ "value": "En dag" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Summa" } ], "label.tablet": [ { "type": 0, - "value": "Platta" + "value": "Surfplatta" } ], "label.team": [ @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team-gäst" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -904,7 +1192,7 @@ "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Team namn" } ], "label.team-owner": [ @@ -913,10 +1201,16 @@ "value": "Team-ägare" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Team webbplatser" } ], "label.teams": [ @@ -976,13 +1270,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "Totalt" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Totala poster" } ], "label.tracking-code": [ @@ -991,22 +1285,40 @@ "value": "Spårningskod" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Sant" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "Typ" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Unikt" } ], "label.unique-visitors": [ @@ -1015,28 +1327,40 @@ "value": "Unika besökare" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, - "value": "Okänd" + "value": "Okänt" } ], "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Namnlös" + } + ], + "label.update": [ + { + "type": 0, + "value": "Update" } ], "label.url": [ { "type": 0, - "value": "URL" + "value": "Länk" } ], "label.urls": [ { "type": 0, - "value": "URLs" + "value": "Länkar" } ], "label.user": [ @@ -1045,6 +1369,12 @@ "value": "Användare" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1054,13 +1384,25 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Användare" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Värde" } ], "label.view": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Endast visning" } ], "label.views": [ @@ -1087,34 +1429,52 @@ "value": "Visningar" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Genomsnittlig besökstid" + } + ], "label.visitors": [ { "type": 0, "value": "Besökare" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Webbplats" } ], "label.website-id": [ { "type": 0, - "value": "Webbsajt-ID" + "value": "Webbplats ID" } ], "label.websites": [ { "type": 0, - "value": "Webbsajt" + "value": "Webbplatser" } ], "label.window": [ { "type": 0, - "value": "Window" + "value": "Fönster" } ], "label.yesterday": [ @@ -1123,6 +1483,20 @@ "value": "Igår" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1161,6 +1535,12 @@ "value": " just nu" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1189,6 +1569,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1203,38 +1597,16 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ { "type": 0, - "value": "All tillhörande data kommer också raderas." + "value": "All tillhörande data kommer också att raderas." } ], "message.error": [ @@ -1292,7 +1664,7 @@ "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "En ny version av Umami " }, { "type": 1, @@ -1300,7 +1672,7 @@ }, { "type": 0, - "value": " is available!" + "value": " är tillgänglig!" } ], "message.no-data-available": [ @@ -1312,25 +1684,25 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Ingen händelsedata är tillgänglig." } ], "message.no-match-password": [ { "type": 0, - "value": "Lösenorden är inte samma" + "value": "Lösenorden matchar inte" } ], "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Inga resultat hittades." } ], "message.no-team-websites": [ { "type": 0, - "value": "Det här teamet har inga webbsajter." + "value": "Det här teamet har inga webbplatser." } ], "message.no-teams": [ @@ -1348,19 +1720,19 @@ "message.no-websites-configured": [ { "type": 0, - "value": "Du har inga webbsajter." + "value": "Du har inte konfigurerat några webbplatser." } ], "message.page-not-found": [ { "type": 0, - "value": "Sidan kan inte hittas." + "value": "Sidan kunde inte hittas." } ], "message.reset-website": [ { "type": 0, - "value": "För att återställa statistiken skriv " + "value": "För att återställa webbplatsen, skriv " }, { "type": 1, @@ -1374,19 +1746,19 @@ "message.reset-website-warning": [ { "type": 0, - "value": "All statistik för webbsajten tas bort men spårningskoden förblir oförändrad." + "value": "All statistik för webbplatsen tas bort, men spårningskoden förblir oförändrad." } ], "message.saved": [ { "type": 0, - "value": "Sparades!" + "value": "Sparat!" } ], "message.share-url": [ { "type": 0, - "value": "Det här är den offentliga delnings-URL:en för " + "value": "Det här är den offentliga delningslänken för " }, { "type": 1, @@ -1406,13 +1778,13 @@ "message.team-not-found": [ { "type": 0, - "value": "Team kan inte hittas." + "value": "Teamet kunde inte hittas." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websajter kan ses av alla i teamet." + "value": "Webbplatserna kan ses av alla i teamet." } ], "message.tracking-code": [ @@ -1421,10 +1793,40 @@ "value": "Spårningskod" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, - "value": "Användare raderad." + "value": "Användaren har raderats." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" } ], "message.visitor-log": [ @@ -1460,5 +1862,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/ta-IN.json b/public/intl/messages/ta-IN.json index 9726b46d5..87a38137c 100644 --- a/public/intl/messages/ta-IN.json +++ b/public/intl/messages/ta-IN.json @@ -11,7 +11,7 @@ "value": "செயல்கள்" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "சராசரி வருகை நேரம்" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "அழி" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "கள முகவரியை பகிரலாம்" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "நிகழ்வுகள்" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " மணி" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "வெளியேறு" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "மேலும்" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "கடவுச்சொல்" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 1, @@ -691,12 +895,42 @@ "value": " ஆல் இயக்கப்படுகிறது" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "சுயவிவரம்" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "ஒரு நாள்" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "கண்காணிப்பு குறியீடு" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "தனிப்பட்ட பார்வையாளர்கள்" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "பார்வைகள்" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "சராசரி வருகை நேரம்" + } + ], "label.visitors": [ { "type": 0, "value": "பார்வையாளர்கள்" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": "'s statistics?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1413,12 +1785,42 @@ "value": "கண்காணிப்பு குறியீடு" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 1, @@ -1452,5 +1854,11 @@ "type": 0, "value": "லில் பயன்படுத்துகிறார்" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/th-TH.json b/public/intl/messages/th-TH.json index 6988c653b..a8e68c99f 100644 --- a/public/intl/messages/th-TH.json +++ b/public/intl/messages/th-TH.json @@ -11,7 +11,7 @@ "value": "การกระทำ" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "ระยะเวลาเข้าชมเฉลี่ย" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "ลบ" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "เปิดใช้งานการแชร์ลิงก์" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "เหตุการณ์" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -523,6 +631,26 @@ "value": " ชั่วโมงที่ผ่านมา" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -559,12 +687,30 @@ "value": "ออกจากระบบ" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -589,6 +735,12 @@ "value": "เพิ่มเติม" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -613,6 +765,46 @@ "value": "ไม่ได้กำหนด" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -673,6 +865,18 @@ "value": "รหัสผ่าน" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -683,12 +887,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "โปรไฟล์" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -755,6 +989,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -791,6 +1031,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -821,18 +1079,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -857,6 +1133,18 @@ "value": "วันที่" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -875,18 +1163,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -905,6 +1193,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -983,6 +1277,24 @@ "value": "โค้ดสำหรับใช้ติดตาม" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1007,6 +1319,12 @@ "value": "ผู้เข้าชม" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1019,6 +1337,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1037,6 +1361,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1049,6 +1379,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1079,12 +1421,30 @@ "value": "การเข้าชม" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "ระยะเวลาเข้าชมเฉลี่ย" + } + ], "label.visitors": [ { "type": 0, "value": "ผู้เข้าชม" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1115,6 +1475,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 0, @@ -1153,6 +1527,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1181,6 +1561,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1195,32 +1589,10 @@ "value": " ?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1413,12 +1785,42 @@ "value": "โค้ดสำหรับใช้ติดตาม" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1452,5 +1854,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/tr-TR.json b/public/intl/messages/tr-TR.json index f15a3b732..9b23b29c3 100644 --- a/public/intl/messages/tr-TR.json +++ b/public/intl/messages/tr-TR.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Erişim Kodu" } ], "label.actions": [ @@ -11,22 +11,34 @@ "value": "Hareketler" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Aktivite Kaydı" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Ekle" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Açıklama ekle" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Üye ekle" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Adım ekle" } ], "label.add-website": [ @@ -38,13 +50,13 @@ "label.admin": [ { "type": 0, - "value": "Yönetici" + "value": "Administrator" } ], "label.after": [ { "type": 0, - "value": "After" + "value": "Sonra" } ], "label.all": [ @@ -56,25 +68,19 @@ "label.all-time": [ { "type": 0, - "value": "All time" + "value": "Tüm zamanlar" } ], "label.analytics": [ { "type": 0, - "value": "Analytics" + "value": "Analitik" } ], "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Ortalama ziyaret süresi" + "value": "Ortalama" } ], "label.back": [ @@ -86,25 +92,25 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "Önce" } ], "label.bounce-rate": [ { "type": 0, - "value": "Çıkma oranı" + "value": "Tek sayfa ziyaret oranı" } ], "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Dağılım" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Tarayıcı" } ], "label.browsers": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Şehirler" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "Şehir" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Hepsini temizle" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "Onayla" } ], "label.confirm-password": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "İçeriği" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "Devam et" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Ülke" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Oluştur" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Rapor oluştur" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Takım oluştur" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Kullanıcı oluştur" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "Oluşturuldu" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Tarafından oluşturldu" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" } ], "label.current-password": [ @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Veri" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Tarih" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "Gün" } ], "label.default-date-range": [ @@ -263,16 +293,22 @@ "value": "Sil" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Rapor sil" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "Takım sil" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "Kullanıcı sil" } ], "label.delete-website": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Açıklama" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Detaylar" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Cihaz" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "İçermez" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Bırakma" } ], "label.edit": [ @@ -344,7 +380,13 @@ "label.edit-dashboard": [ { "type": 0, - "value": "Edit dashboard" + "value": "Kontrol panelini düzenle" + } + ], + "label.edit-member": [ + { + "type": 0, + "value": "Üyeyi düzenle" } ], "label.enable-share-url": [ @@ -353,16 +395,28 @@ "value": "Anonim paylaşım URL'i aktif" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Olay" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Olay verisi" } ], "label.events": [ @@ -371,70 +425,112 @@ "value": "Olaylar" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, - "value": "False" + "value": "Yanlış" } ], "label.field": [ { "type": 0, - "value": "Field" + "value": "Alan" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Alanlar" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Filtre" } ], "label.filter-combined": [ { "type": 0, - "value": "Birleşik" + "value": "Birleşik filtre" } ], "label.filter-raw": [ { "type": 0, - "value": "Ham" + "value": "Ham filtre" } ], "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Filtreler" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Huni" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Kullanıcıların dönüşüm ve ayrılma oranlarını anlayın." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Büyüktür" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Büyük veya eşittir" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ @@ -446,7 +542,7 @@ "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Segmentleri ve filtreleri kullanarak verilerinizi derinlemesine inceleyin." } ], "label.is": [ @@ -458,43 +554,55 @@ "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Değil" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Ayarlanmamış" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Ayarlandı" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "Katıl" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "Takıma katıl" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." } ], "label.language": [ { "type": 0, - "value": "Language" + "value": "Dil" } ], "label.languages": [ { "type": 0, - "value": "Languages" + "value": "Diller" } ], "label.laptop": [ @@ -531,28 +639,48 @@ "value": " saat" } ], + "label.last-months": [ + { + "type": 0, + "value": "Son " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " ay" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Ayrıl" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Takımdan Ayrıl" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Küçüktür" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Küçük veya eşittir" } ], "label.login": [ @@ -567,16 +695,34 @@ "value": "Çıkış Yap" } ], + "label.manage": [ + { + "type": 0, + "value": "Yönet" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Üye" + } + ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Üyeler" } ], "label.min": [ @@ -597,10 +743,16 @@ "value": "Detaylı göster" } ], + "label.my-account": [ + { + "type": 0, + "value": "Hesabım" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Web sitelerim" } ], "label.name": [ @@ -618,7 +770,47 @@ "label.none": [ { "type": 0, - "value": "None" + "value": "Yok" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "TAMAM" } ], "label.os": [ @@ -630,19 +822,23 @@ "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Genel bakış" } ], "label.owner": [ { "type": 0, - "value": "Owner" + "value": "Sahibi" } ], "label.page-of": [ + { + "type": 1, + "value": "total" + }, { "type": 0, - "value": "Page " + "value": " sayfada " }, { "type": 1, @@ -650,11 +846,7 @@ }, { "type": 0, - "value": " of " - }, - { - "type": 1, - "value": "total" + "value": " " } ], "label.page-views": [ @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Sayfa başlığı" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Parola" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,28 +895,58 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Profil" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "Sorgular" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Sorgu" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "Sorgu parametreleri" } ], "label.realtime": [ @@ -742,31 +976,37 @@ "label.regenerate": [ { "type": 0, - "value": "Regenerate" + "value": "Yeniden Oluştur" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "Bölge" } ], "label.regions": [ { "type": 0, - "value": "Regions" + "value": "Bölgeler" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "Kaldır" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Üyeyi kaldır" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Raporlar" } ], "label.required": [ @@ -784,31 +1024,49 @@ "label.reset-website": [ { "type": 0, - "value": "Reset statistics" + "value": "İstatistikleri sıfırla" } ], "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Geri dönüş" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Kullanıcıların ne sıklıkla geri döndüğünü takip ederek web sitenizin kalıcılığını ölçün." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Rol" } ], "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Sorgu çalıştır" } ], "label.save": [ @@ -826,19 +1084,37 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "Ara" + } + ], + "label.select": [ + { + "type": 0, + "value": "Seç" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Tarih seç" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Rol seç" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "Web sitesi seç" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" } ], "label.sessions": [ @@ -865,10 +1141,22 @@ "value": "Tekil gün" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Adımlar" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Toplam" } ], "label.tablet": [ @@ -880,55 +1168,61 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "Takım" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "Takım ID" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "Takım üyesi" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Takım ismi" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "Takım sahibi" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Yalnızca ekip görünümü" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Takım web siteleri" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "Takımlar" } ], "label.theme": [ { "type": 0, - "value": "Theme" + "value": "Tema" } ], "label.this-month": [ @@ -958,7 +1252,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "Başlık" } ], "label.today": [ @@ -970,19 +1264,19 @@ "label.toggle-charts": [ { "type": 0, - "value": "Toggle charts" + "value": "Grafikleri değiştir" } ], "label.total": [ { "type": 0, - "value": "Total" + "value": "Toplam" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Toplam kayıt" } ], "label.tracking-code": [ @@ -991,22 +1285,40 @@ "value": "İzleme kodu" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer web sitesi" + } + ], "label.true": [ { "type": 0, - "value": "True" + "value": "Doğru" } ], "label.type": [ { "type": 0, - "value": "Type" + "value": "Tip" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Benzersiz" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Tekil kullanıcı" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "İsimsiz" + } + ], + "label.update": [ + { + "type": 0, + "value": "Güncelle" } ], "label.url": [ @@ -1042,7 +1366,13 @@ "label.user": [ { "type": 0, - "value": "User" + "value": "Kullanıcı" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" } ], "label.username": [ @@ -1054,19 +1384,31 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Kullanıcılar" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Kampanyalarınızı UTM parametreleri aracılığıyla takip edin." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Değer" } ], "label.view": [ { "type": 0, - "value": "View" + "value": "Görünüm" } ], "label.view-details": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Sadece görünüm" } ], "label.views": [ @@ -1087,16 +1429,34 @@ "value": "Görüntüleme" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Ziyaret başına görüntüleme" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Ortalama ziyaret süresi" + } + ], "label.visitors": [ { "type": 0, "value": "Ziyaretçi" } ], + "label.visits": [ + { + "type": 0, + "value": "Ziyaretler" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Web sitesi" } ], "label.website-id": [ @@ -1114,13 +1474,27 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Pencere" } ], "label.yesterday": [ { "type": 0, - "value": "Yesterday" + "value": "Dün" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Onaylamak için aşağıdaki kutuya " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " yazın." } ], "message.active-users": [ @@ -1133,6 +1507,12 @@ "value": " aktif ziyaretçi" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 1, @@ -1145,64 +1525,44 @@ ], "message.confirm-leave": [ { - "type": 0, - "value": "Are you sure you want to leave " + "type": 1, + "value": "target" }, + { + "type": 0, + "value": " kaydından ayrılmak istediğinizden emin misiniz?" + } + ], + "message.confirm-remove": [ { "type": 1, "value": "target" }, { "type": 0, - "value": "?" + "value": " kaydını kaldırmak istediğinizden emin misiniz?" } ], "message.confirm-reset": [ - { - "type": 0, - "value": "Are your sure you want to reset " - }, { "type": 1, "value": "target" }, { "type": 0, - "value": "'s statistics?" + "value": " istatistiklerini sıfırlamak istediğinizden emin misiniz?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Bir takımı silmek tüm takım web sitelerini de silecektir." } ], "message.delete-website-warning": [ { "type": 0, - "value": "İlişkili tüm veriler de silinecektir." + "value": "İlişkili tüm veriler de silinecektir." } ], "message.error": [ @@ -1246,7 +1606,7 @@ "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "Minimum " }, { "type": 1, @@ -1254,13 +1614,13 @@ }, { "type": 0, - "value": " characters" + "value": " karakter uzunluğu" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Yeni versiyon Umami " }, { "type": 1, @@ -1268,7 +1628,7 @@ }, { "type": 0, - "value": " is available!" + "value": " mevcut!" } ], "message.no-data-available": [ @@ -1280,7 +1640,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Hiçbir olay verisi mevcut değil." } ], "message.no-match-password": [ @@ -1292,25 +1652,25 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Hiçbir sonuç bulunamadı." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "Bu takımın herhangi bir web sitesi yok." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "Herhangi bir takım oluşturmadınız." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "Kullanıcı yok." } ], "message.no-websites-configured": [ @@ -1328,7 +1688,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Bu websitesini sıfılamak için aşağıdaki kutuya " }, { "type": 1, @@ -1336,13 +1696,13 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " yazın." } ], "message.reset-website-warning": [ { "type": 0, - "value": "All statistics for this website will be deleted, but your tracking code will remain intact." + "value": "Bu web sitesi için tüm istatistikler silinecek, ancak izleme kodunuz bozulmadan kalacaktır." } ], "message.saved": [ @@ -1364,19 +1724,19 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "Zaten bu takımın üyesisiniz" } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "Takım bulunamadı" } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "Web siteleri takımdaki herkes tarafından görüntülenebilir." } ], "message.tracking-code": [ @@ -1385,10 +1745,40 @@ "value": "İzleme kodu" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Bu web sitesi hesbınıza aktarılsın mı?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Bu web sitesinin aktarılacağı takımı seçin." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Web sitesi sahipliğini hesabınıza veya başka bir takıma aktarın" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Tetiklenen olay" + } + ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "Kullanıcı silindi." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Görüntülenen sayfa" } ], "message.visitor-log": [ @@ -1424,5 +1814,11 @@ "type": 1, "value": "browser" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Bırakan ziyaretçiler" + } ] } diff --git a/public/intl/messages/uk-UA.json b/public/intl/messages/uk-UA.json index 2c602c947..0f68c8052 100644 --- a/public/intl/messages/uk-UA.json +++ b/public/intl/messages/uk-UA.json @@ -2,7 +2,7 @@ "label.access-code": [ { "type": 0, - "value": "Access code" + "value": "Код доступу" } ], "label.actions": [ @@ -11,22 +11,34 @@ "value": "Дії" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "Activity log" + "value": "Журнал" } ], "label.add": [ { "type": 0, - "value": "Add" + "value": "Додати" } ], "label.add-description": [ { "type": 0, - "value": "Add description" + "value": "Додати опис" + } + ], + "label.add-member": [ + { + "type": 0, + "value": "Додати учасника" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Додати крок" } ], "label.add-website": [ @@ -44,7 +56,7 @@ "label.after": [ { "type": 0, - "value": "After" + "value": "Після" } ], "label.all": [ @@ -62,19 +74,13 @@ "label.analytics": [ { "type": 0, - "value": "Analytics" + "value": "Аналітика" } ], "label.average": [ { "type": 0, - "value": "Average" - } - ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Середній час візиту" + "value": "Середній" } ], "label.back": [ @@ -86,7 +92,7 @@ "label.before": [ { "type": 0, - "value": "Before" + "value": "До" } ], "label.bounce-rate": [ @@ -98,13 +104,13 @@ "label.breakdown": [ { "type": 0, - "value": "Breakdown" + "value": "Розподіл" } ], "label.browser": [ { "type": 0, - "value": "Browser" + "value": "Браузер" } ], "label.browsers": [ @@ -128,25 +134,31 @@ "label.cities": [ { "type": 0, - "value": "Cities" + "value": "Міста" } ], "label.city": [ { "type": 0, - "value": "City" + "value": "Місто" } ], "label.clear-all": [ { "type": 0, - "value": "Clear all" + "value": "Очистити все" + } + ], + "label.compare": [ + { + "type": 0, + "value": "Compare" } ], "label.confirm": [ { "type": 0, - "value": "Confirm" + "value": "Підтвердити" } ], "label.confirm-password": [ @@ -158,13 +170,19 @@ "label.contains": [ { "type": 0, - "value": "Contains" + "value": "Містить" } ], "label.continue": [ { "type": 0, - "value": "Continue" + "value": "Продовжити" + } + ], + "label.count": [ + { + "type": 0, + "value": "Count" } ], "label.countries": [ @@ -176,37 +194,49 @@ "label.country": [ { "type": 0, - "value": "Country" + "value": "Країна" } ], "label.create": [ { "type": 0, - "value": "Create" + "value": "Створити" } ], "label.create-report": [ { "type": 0, - "value": "Create report" + "value": "Створити звіт" } ], "label.create-team": [ { "type": 0, - "value": "Create team" + "value": "Створити команду" } ], "label.create-user": [ { "type": 0, - "value": "Create user" + "value": "Створити користувача" } ], "label.created": [ { "type": 0, - "value": "Created" + "value": "Створено" + } + ], + "label.created-by": [ + { + "type": 0, + "value": "Створено" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" } ], "label.current-password": [ @@ -230,13 +260,13 @@ "label.data": [ { "type": 0, - "value": "Data" + "value": "Дані" } ], "label.date": [ { "type": 0, - "value": "Date" + "value": "Дата" } ], "label.date-range": [ @@ -248,7 +278,7 @@ "label.day": [ { "type": 0, - "value": "Day" + "value": "День" } ], "label.default-date-range": [ @@ -263,16 +293,22 @@ "value": "Видалити" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Видалити звіт" + } + ], "label.delete-team": [ { "type": 0, - "value": "Delete team" + "value": "Видалити команду" } ], "label.delete-user": [ { "type": 0, - "value": "Delete user" + "value": "Видалити користувача" } ], "label.delete-website": [ @@ -284,7 +320,7 @@ "label.description": [ { "type": 0, - "value": "Description" + "value": "Опис" } ], "label.desktop": [ @@ -296,13 +332,13 @@ "label.details": [ { "type": 0, - "value": "Details" + "value": "Деталі" } ], "label.device": [ { "type": 0, - "value": "Device" + "value": "Пристрій" } ], "label.devices": [ @@ -320,7 +356,7 @@ "label.does-not-contain": [ { "type": 0, - "value": "Does not contain" + "value": "Не містить" } ], "label.domain": [ @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "Dropoff" + "value": "Відсів" } ], "label.edit": [ @@ -347,22 +383,40 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, - "value": "Дозволити ділитися посиланням" + "value": "Enable share URL" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" } ], "label.event": [ { "type": 0, - "value": "Event" + "value": "Подія" } ], "label.event-data": [ { "type": 0, - "value": "Event data" + "value": "Дані події" } ], "label.events": [ @@ -371,6 +425,12 @@ "value": "Події" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -380,19 +440,19 @@ "label.field": [ { "type": 0, - "value": "Field" + "value": "Поле" } ], "label.fields": [ { "type": 0, - "value": "Fields" + "value": "Поля" } ], "label.filter": [ { "type": 0, - "value": "Filter" + "value": "Фільтр" } ], "label.filter-combined": [ @@ -410,85 +470,133 @@ "label.filters": [ { "type": 0, - "value": "Filters" + "value": "Фільтри" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" } ], "label.funnel": [ { "type": 0, - "value": "Funnel" + "value": "Воронка" } ], "label.funnel-description": [ { "type": 0, - "value": "Understand the conversion and drop-off rate of users." + "value": "Зрозуміти рівень конверсії та відсіву користувачів." + } + ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." } ], "label.greater-than": [ { "type": 0, - "value": "Greater than" + "value": "Більше ніж" } ], "label.greater-than-equals": [ { "type": 0, - "value": "Greater than or equals" + "value": "Більше або рівно" + } + ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" } ], "label.insights": [ { "type": 0, - "value": "Insights" + "value": "Інсайти" } ], "label.insights-description": [ { "type": 0, - "value": "Dive deeper into your data by using segments and filters." + "value": "Зануртеся глибше у свої дані за допомогою сегментів та фільтрів." } ], "label.is": [ { "type": 0, - "value": "Is" + "value": "Є" } ], "label.is-not": [ { "type": 0, - "value": "Is not" + "value": "Не є" } ], "label.is-not-set": [ { "type": 0, - "value": "Is not set" + "value": "Не встановлено" } ], "label.is-set": [ { "type": 0, - "value": "Is set" + "value": "Встановлено" } ], "label.join": [ { "type": 0, - "value": "Join" + "value": "Приєднатись" } ], "label.join-team": [ { "type": 0, - "value": "Join team" + "value": "Приєднатись до команди" + } + ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." } ], "label.language": [ { "type": 0, - "value": "Language" + "value": "Мова" } ], "label.languages": [ @@ -531,28 +639,48 @@ "value": " годин" } ], + "label.last-months": [ + { + "type": 0, + "value": "Останні " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " місяців" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, - "value": "Leave" + "value": "Покинути" } ], "label.leave-team": [ { "type": 0, - "value": "Leave team" + "value": "Покинути команду" } ], "label.less-than": [ { "type": 0, - "value": "Less than" + "value": "Менше ніж" } ], "label.less-than-equals": [ { "type": 0, - "value": "Less than or equals" + "value": "Менше або дорівнює" } ], "label.login": [ @@ -567,22 +695,40 @@ "value": "Вийти" } ], + "label.manage": [ + { + "type": 0, + "value": "Керувати" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, - "value": "Max" + "value": "Макс." + } + ], + "label.member": [ + { + "type": 0, + "value": "Учасник" } ], "label.members": [ { "type": 0, - "value": "Members" + "value": "Учасники" } ], "label.min": [ { "type": 0, - "value": "Min" + "value": "Мін." } ], "label.mobile": [ @@ -597,10 +743,16 @@ "value": "Більше" } ], + "label.my-account": [ + { + "type": 0, + "value": "Мій обліковий запис" + } + ], "label.my-websites": [ { "type": 0, - "value": "My websites" + "value": "Мої сайти" } ], "label.name": [ @@ -618,19 +770,59 @@ "label.none": [ { "type": 0, - "value": "None" + "value": "Нічого" + } + ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" } ], "label.os": [ { "type": 0, - "value": "OS" + "value": "ОС" } ], "label.overview": [ { "type": 0, - "value": "Overview" + "value": "Огляд" } ], "label.owner": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "Page " + "value": "Сторінка " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": " of " + "value": " з " }, { "type": 1, @@ -666,7 +858,7 @@ "label.pageTitle": [ { "type": 0, - "value": "Page title" + "value": "Заголовок сторінки" } ], "label.pages": [ @@ -681,6 +873,18 @@ "value": "Пароль" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,28 +895,58 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Профіль" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, - "value": "Queries" + "value": "Запити" } ], "label.query": [ { "type": 0, - "value": "Query" + "value": "Запит" } ], "label.query-parameters": [ { "type": 0, - "value": "Query parameters" + "value": "Параметри запиту" } ], "label.realtime": [ @@ -724,7 +958,7 @@ "label.referrer": [ { "type": 0, - "value": "Referrer" + "value": "Джерело" } ], "label.referrers": [ @@ -742,31 +976,37 @@ "label.regenerate": [ { "type": 0, - "value": "Regenerate" + "value": "Згенерувати знову" } ], "label.region": [ { "type": 0, - "value": "Region" + "value": "Регіон" } ], "label.regions": [ { "type": 0, - "value": "Regions" + "value": "Регіони" } ], "label.remove": [ { "type": 0, - "value": "Remove" + "value": "Видалити" + } + ], + "label.remove-member": [ + { + "type": 0, + "value": "Видалити користувача" } ], "label.reports": [ { "type": 0, - "value": "Reports" + "value": "Звіти" } ], "label.required": [ @@ -790,25 +1030,43 @@ "label.retention": [ { "type": 0, - "value": "Retention" + "value": "Липкість" } ], "label.retention-description": [ { "type": 0, - "value": "Measure your website stickiness by tracking how often users return." + "value": "Виміряйте липкість вашого сайту, відстежуючи, як часто користувачі повертаються на нього." + } + ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" } ], "label.role": [ { "type": 0, - "value": "Role" + "value": "Роль" } ], "label.run-query": [ { "type": 0, - "value": "Run query" + "value": "Виконати запит" } ], "label.save": [ @@ -820,31 +1078,49 @@ "label.screens": [ { "type": 0, - "value": "Screens" + "value": "Екрани" } ], "label.search": [ { "type": 0, - "value": "Search" + "value": "Пошук" + } + ], + "label.select": [ + { + "type": 0, + "value": "Вибрати" } ], "label.select-date": [ { "type": 0, - "value": "Select date" + "value": "Вибрати дату" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "Вибрати роль" } ], "label.select-website": [ { "type": 0, - "value": "Select website" + "value": "Вибрати сайт" + } + ], + "label.session": [ + { + "type": 0, + "value": "Session" } ], "label.sessions": [ { "type": 0, - "value": "Sessions" + "value": "Сесії" } ], "label.settings": [ @@ -865,10 +1141,22 @@ "value": "Один день" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Кроки" + } + ], "label.sum": [ { "type": 0, - "value": "Sum" + "value": "Сума" } ], "label.tablet": [ @@ -880,55 +1168,61 @@ "label.team": [ { "type": 0, - "value": "Team" - } - ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" + "value": "Команда" } ], "label.team-id": [ { "type": 0, - "value": "Team ID" + "value": "Ідентифікатор команди" + } + ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" } ], "label.team-member": [ { "type": 0, - "value": "Team member" + "value": "Учасник команди" } ], "label.team-name": [ { "type": 0, - "value": "Team name" + "value": "Назва команди" } ], "label.team-owner": [ { "type": 0, - "value": "Team owner" + "value": "Власник команди" + } + ], + "label.team-view-only": [ + { + "type": 0, + "value": "Тільки для командного перегляду" } ], "label.team-websites": [ { "type": 0, - "value": "Team websites" + "value": "Сайти команди" } ], "label.teams": [ { "type": 0, - "value": "Teams" + "value": "Команди" } ], "label.theme": [ { "type": 0, - "value": "Theme" + "value": "Тема" } ], "label.this-month": [ @@ -958,7 +1252,7 @@ "label.title": [ { "type": 0, - "value": "Title" + "value": "Заголовок" } ], "label.today": [ @@ -976,13 +1270,13 @@ "label.total": [ { "type": 0, - "value": "Total" + "value": "Всього" } ], "label.total-records": [ { "type": 0, - "value": "Total records" + "value": "Всього записів" } ], "label.tracking-code": [ @@ -991,6 +1285,24 @@ "value": "Код для відслідковування" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Передати" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Передати сайт" + } + ], "label.true": [ { "type": 0, @@ -1000,13 +1312,13 @@ "label.type": [ { "type": 0, - "value": "Type" + "value": "Тип" } ], "label.unique": [ { "type": 0, - "value": "Unique" + "value": "Унікальний" } ], "label.unique-visitors": [ @@ -1015,6 +1327,12 @@ "value": "Унікальні відвідувачі" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1024,7 +1342,13 @@ "label.untitled": [ { "type": 0, - "value": "Untitled" + "value": "Без заголовку" + } + ], + "label.update": [ + { + "type": 0, + "value": "Оновлення" } ], "label.url": [ @@ -1042,7 +1366,13 @@ "label.user": [ { "type": 0, - "value": "User" + "value": "Користувач" + } + ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" } ], "label.username": [ @@ -1054,19 +1384,31 @@ "label.users": [ { "type": 0, - "value": "Users" + "value": "Користувачі" + } + ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Відстежуйте свої кампанії за допомогою параметрів UTM." } ], "label.value": [ { "type": 0, - "value": "Value" + "value": "Значення" } ], "label.view": [ { "type": 0, - "value": "View" + "value": "Перегляд" } ], "label.view-details": [ @@ -1078,7 +1420,7 @@ "label.view-only": [ { "type": 0, - "value": "View only" + "value": "Тільки для перегляду" } ], "label.views": [ @@ -1087,22 +1429,40 @@ "value": "Перегляди" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Перегляди за одне відвідування" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Visit duration" + } + ], "label.visitors": [ { "type": 0, "value": "Відвідувачі" } ], + "label.visits": [ + { + "type": 0, + "value": "Відвідування" + } + ], "label.website": [ { "type": 0, - "value": "Website" + "value": "Сайт" } ], "label.website-id": [ { "type": 0, - "value": "Website ID" + "value": "Ідентифікатор сайту" } ], "label.websites": [ @@ -1114,13 +1474,27 @@ "label.window": [ { "type": 0, - "value": "Window" + "value": "Вікно" } ], "label.yesterday": [ { "type": 0, - "value": "Yesterday" + "value": "Вчора" + } + ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Введіть " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " у полі нижче, щоб підтвердити." } ], "message.active-users": [ @@ -1133,6 +1507,12 @@ "value": " поточних відвідувачів" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1150,7 +1530,21 @@ "message.confirm-leave": [ { "type": 0, - "value": "Are you sure you want to leave " + "value": "Ви впевнені, що бажаєте покинути " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Ви впевнені, що бажаєте видалити " }, { "type": 1, @@ -1175,32 +1569,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Видалення команди також призведе до видалення всіх її веб-сайтів." } ], "message.delete-website-warning": [ @@ -1222,7 +1594,7 @@ }, { "type": 0, - "value": " on " + "value": " на " }, { "type": 1, @@ -1250,7 +1622,7 @@ "message.min-password-length": [ { "type": 0, - "value": "Minimum length of " + "value": "Мінімальна довжина " }, { "type": 1, @@ -1258,13 +1630,13 @@ }, { "type": 0, - "value": " characters" + "value": " символів" } ], "message.new-version-available": [ { "type": 0, - "value": "A new version of Umami " + "value": "Вийшла нова версія Umami " }, { "type": 1, @@ -1272,7 +1644,7 @@ }, { "type": 0, - "value": " is available!" + "value": "!" } ], "message.no-data-available": [ @@ -1284,7 +1656,7 @@ "message.no-event-data": [ { "type": 0, - "value": "No event data is available." + "value": "Дані про події відсутні." } ], "message.no-match-password": [ @@ -1296,25 +1668,25 @@ "message.no-results-found": [ { "type": 0, - "value": "No results were found." + "value": "Не знайдено жодного результату." } ], "message.no-team-websites": [ { "type": 0, - "value": "This team does not have any websites." + "value": "У цієї команди немає жодного веб-сайту." } ], "message.no-teams": [ { "type": 0, - "value": "You have not created any teams." + "value": "Ви не створили жодної команди." } ], "message.no-users": [ { "type": 0, - "value": "There are no users." + "value": "Немає жодного користувача." } ], "message.no-websites-configured": [ @@ -1332,7 +1704,7 @@ "message.reset-website": [ { "type": 0, - "value": "To reset this website, type " + "value": "Щоб скинути налаштування цього веб-сайту, введіть " }, { "type": 1, @@ -1340,7 +1712,7 @@ }, { "type": 0, - "value": " in the box below to confirm." + "value": " у полі нижче для підтвердження." } ], "message.reset-website-warning": [ @@ -1372,19 +1744,19 @@ "message.team-already-member": [ { "type": 0, - "value": "You are already a member of the team." + "value": "Ви вже є членом команди." } ], "message.team-not-found": [ { "type": 0, - "value": "Team not found." + "value": "Команду не знайдено." } ], "message.team-websites-info": [ { "type": 0, - "value": "Websites can be viewed by anyone on the team." + "value": "Веб-сайти може переглядати будь-хто з команди." } ], "message.tracking-code": [ @@ -1393,10 +1765,40 @@ "value": "Код для відслідковування" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Перенести цей сайт до свого облікового запису?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Виберіть команду, до якої ви хочете передати цей веб-сайт." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Передайте право власності на сайт своєму акаунту або іншій команді." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Подія, що спрацювала" + } + ], "message.user-deleted": [ { "type": 0, - "value": "User deleted." + "value": "Користувача видалено." + } + ], + "message.viewed-page": [ + { + "type": 0, + "value": "Переглянута сторінка" } ], "message.visitor-log": [ @@ -1432,5 +1834,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Користувачі що відсіялись" + } ] } diff --git a/public/intl/messages/ur-PK.json b/public/intl/messages/ur-PK.json index 23195ffc0..2652fcfa2 100644 --- a/public/intl/messages/ur-PK.json +++ b/public/intl/messages/ur-PK.json @@ -11,7 +11,7 @@ "value": "اعمال" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "وزٹ کا اوسط وقت" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "حذف کریں" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "شیئر یو آر ایل کو فعال کریں" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "واقعات" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " گھنٹے" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "لاگ آوٹ" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "مزید" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -681,6 +873,18 @@ "value": "پاس ورڈ" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -691,12 +895,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "پروفائل" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -763,6 +997,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -799,6 +1039,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -829,18 +1087,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -865,6 +1141,18 @@ "value": "ایک دن" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -883,18 +1171,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -913,6 +1201,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -991,6 +1285,24 @@ "value": "ٹریکنگ کوڈ" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1015,6 +1327,12 @@ "value": "منفرد زائرین" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1027,6 +1345,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1045,6 +1369,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1057,6 +1387,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1087,12 +1429,30 @@ "value": "مناظر" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "وزٹ کا اوسط وقت" + } + ], "label.visitors": [ { "type": 0, "value": "زائرین" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1123,6 +1483,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1157,6 +1531,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1185,6 +1565,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1199,32 +1593,10 @@ "value": " کے اعدادوشمار کو دوبارہ ترتیب دینا چاہتے ہیں؟" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1417,12 +1789,42 @@ "value": "ٹریکنگ کوڈ" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 1, @@ -1456,5 +1858,11 @@ "type": 0, "value": " سے آنے والا" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/vi-VN.json b/public/intl/messages/vi-VN.json index 4c3ef05cb..68a301ae5 100644 --- a/public/intl/messages/vi-VN.json +++ b/public/intl/messages/vi-VN.json @@ -11,7 +11,7 @@ "value": "Hành động" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "Activity log" @@ -29,6 +29,18 @@ "value": "Add description" } ], + "label.add-member": [ + { + "type": 0, + "value": "Add member" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "Add step" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "Average" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "Thời gian truy cập trung bình" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "Clear all" } ], + "label.compare": [ + { + "type": 0, + "value": "Compare" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "Continue" } ], + "label.count": [ + { + "type": 0, + "value": "Count" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "Created" } ], + "label.created-by": [ + { + "type": 0, + "value": "Created By" + } + ], + "label.current": [ + { + "type": 0, + "value": "Current" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "Xoá" } ], + "label.delete-report": [ + { + "type": 0, + "value": "Delete report" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "Edit dashboard" } ], + "label.edit-member": [ + { + "type": 0, + "value": "Edit member" + } + ], "label.enable-share-url": [ { "type": 0, "value": "Bật khả năng chia sẻ URL" } ], + "label.end-step": [ + { + "type": 0, + "value": "End Step" + } + ], + "label.entry": [ + { + "type": 0, + "value": "Entry URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "Sự kiện" } ], + "label.exit": [ + { + "type": 0, + "value": "Exit URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "Filters" } ], + "label.first-seen": [ + { + "type": 0, + "value": "First seen" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "Understand the conversion and drop-off rate of users." } ], + "label.goal": [ + { + "type": 0, + "value": "Goal" + } + ], + "label.goals": [ + { + "type": 0, + "value": "Goals" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "Track your goals for pageviews and events." + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "Greater than or equals" } ], + "label.host": [ + { + "type": 0, + "value": "Host" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "Hosts" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "Join team" } ], + "label.journey": [ + { + "type": 0, + "value": "Journey" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "Understand how users navigate through your website." + } + ], "label.language": [ { "type": 0, @@ -523,6 +631,26 @@ "value": " giờ gần nhất" } ], + "label.last-months": [ + { + "type": 0, + "value": "Last " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " months" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "Last seen" + } + ], "label.leave": [ { "type": 0, @@ -559,12 +687,30 @@ "value": "Đăng xuất" } ], + "label.manage": [ + { + "type": 0, + "value": "Manage" + } + ], + "label.manager": [ + { + "type": 0, + "value": "Manager" + } + ], "label.max": [ { "type": 0, "value": "Max" } ], + "label.member": [ + { + "type": 0, + "value": "Member" + } + ], "label.members": [ { "type": 0, @@ -589,6 +735,12 @@ "value": "Thêm" } ], + "label.my-account": [ + { + "type": 0, + "value": "My account" + } + ], "label.my-websites": [ { "type": 0, @@ -613,6 +765,46 @@ "value": "None" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -673,6 +865,18 @@ "value": "Mật khẩu" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -683,12 +887,42 @@ "value": "name" } ], + "label.previous": [ + { + "type": 0, + "value": "Previous" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "Previous period" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "Previous year" + } + ], "label.profile": [ { "type": 0, "value": "Hồ sơ" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "Property" + } + ], "label.queries": [ { "type": 0, @@ -755,6 +989,12 @@ "value": "Remove" } ], + "label.remove-member": [ + { + "type": 0, + "value": "Remove member" + } + ], "label.reports": [ { "type": 0, @@ -791,6 +1031,24 @@ "value": "Measure your website stickiness by tracking how often users return." } ], + "label.revenue": [ + { + "type": 0, + "value": "Revenue" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "Look into your revenue across time." + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "Revenue Property" + } + ], "label.role": [ { "type": 0, @@ -821,18 +1079,36 @@ "value": "Search" } ], + "label.select": [ + { + "type": 0, + "value": "Select" + } + ], "label.select-date": [ { "type": 0, "value": "Select date" } ], + "label.select-role": [ + { + "type": 0, + "value": "Select role" + } + ], "label.select-website": [ { "type": 0, "value": "Select website" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -857,6 +1133,18 @@ "value": "Trong ngày" } ], + "label.start-step": [ + { + "type": 0, + "value": "Start Step" + } + ], + "label.steps": [ + { + "type": 0, + "value": "Steps" + } + ], "label.sum": [ { "type": 0, @@ -875,18 +1163,18 @@ "value": "Team" } ], - "label.team-guest": [ - { - "type": 0, - "value": "Team guest" - } - ], "label.team-id": [ { "type": 0, "value": "Team ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "Team manager" + } + ], "label.team-member": [ { "type": 0, @@ -905,6 +1193,12 @@ "value": "Team owner" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "Team view only" + } + ], "label.team-websites": [ { "type": 0, @@ -983,6 +1277,24 @@ "value": "Mã theo dõi" } ], + "label.transactions": [ + { + "type": 0, + "value": "Transactions" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "Transfer" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "Transfer website" + } + ], "label.true": [ { "type": 0, @@ -1007,6 +1319,12 @@ "value": "Khách truy cập một lần" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "Unique Customers" + } + ], "label.unknown": [ { "type": 0, @@ -1019,6 +1337,12 @@ "value": "Untitled" } ], + "label.update": [ + { + "type": 0, + "value": "Update" + } + ], "label.url": [ { "type": 0, @@ -1037,6 +1361,12 @@ "value": "User" } ], + "label.user-property": [ + { + "type": 0, + "value": "User Property" + } + ], "label.username": [ { "type": 0, @@ -1049,6 +1379,18 @@ "value": "Users" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "Track your campaigns through UTM parameters." + } + ], "label.value": [ { "type": 0, @@ -1079,12 +1421,30 @@ "value": "Xem" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "Views per visit" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "Thời gian truy cập trung bình" + } + ], "label.visitors": [ { "type": 0, "value": "Khách" } ], + "label.visits": [ + { + "type": 0, + "value": "Visits" + } + ], "label.website": [ { "type": 0, @@ -1115,6 +1475,20 @@ "value": "Yesterday" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "Type " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " in the box below to confirm." + } + ], "message.active-users": [ { "type": 1, @@ -1149,6 +1523,12 @@ "value": "x" } ], + "message.collected-data": [ + { + "type": 0, + "value": "Collected data" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1177,6 +1557,20 @@ "value": "?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "Are you sure you want to remove " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": "?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1191,32 +1585,10 @@ "value": "?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "To delete this account, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "To delete this website, type " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " in the box below to confirm." + "value": "Deleting a team will also delete all team websites." } ], "message.delete-website-warning": [ @@ -1409,12 +1781,42 @@ "value": "Mã theo dõi" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "Transfer this website to your account?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "Select the team to transfer this website to." + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "Transfer website ownership to your account or another team." + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "Triggered event" + } + ], "message.user-deleted": [ { "type": 0, "value": "User deleted." } ], + "message.viewed-page": [ + { + "type": 0, + "value": "Viewed page" + } + ], "message.visitor-log": [ { "type": 0, @@ -1448,5 +1850,11 @@ "type": 1, "value": "device" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "Visitors dropped off" + } ] } diff --git a/public/intl/messages/zh-CN.json b/public/intl/messages/zh-CN.json index 6441e763b..c2eb1c59a 100644 --- a/public/intl/messages/zh-CN.json +++ b/public/intl/messages/zh-CN.json @@ -11,7 +11,7 @@ "value": "用户行为" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, "value": "活动日志" @@ -29,6 +29,18 @@ "value": "添加描述" } ], + "label.add-member": [ + { + "type": 0, + "value": "添加成员" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "添加步骤" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "平均" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "平均访问时间" - } - ], "label.back": [ { "type": 0, @@ -143,6 +149,12 @@ "value": "清除全部" } ], + "label.compare": [ + { + "type": 0, + "value": "比较" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "继续" } ], + "label.count": [ + { + "type": 0, + "value": "统计" + } + ], "label.countries": [ { "type": 0, @@ -209,6 +227,18 @@ "value": "已创建" } ], + "label.created-by": [ + { + "type": 0, + "value": "创建者" + } + ], + "label.current": [ + { + "type": 0, + "value": "目前" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "删除" } ], + "label.delete-report": [ + { + "type": 0, + "value": "删除报告" + } + ], "label.delete-team": [ { "type": 0, @@ -347,12 +383,30 @@ "value": "编辑仪表板" } ], + "label.edit-member": [ + { + "type": 0, + "value": "编辑成员" + } + ], "label.enable-share-url": [ { "type": 0, "value": "启用共享链接" } ], + "label.end-step": [ + { + "type": 0, + "value": "结束步骤" + } + ], + "label.entry": [ + { + "type": 0, + "value": "入口 URL" + } + ], "label.event": [ { "type": 0, @@ -371,6 +425,12 @@ "value": "行为类别" } ], + "label.exit": [ + { + "type": 0, + "value": "退出 URL" + } + ], "label.false": [ { "type": 0, @@ -413,6 +473,12 @@ "value": "筛选" } ], + "label.first-seen": [ + { + "type": 0, + "value": "首次出现" + } + ], "label.funnel": [ { "type": 0, @@ -425,6 +491,24 @@ "value": "了解用户的转换率和退出率。" } ], + "label.goal": [ + { + "type": 0, + "value": "目标" + } + ], + "label.goals": [ + { + "type": 0, + "value": "目标" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "跟踪页面浏览量和事件的目标。" + } + ], "label.greater-than": [ { "type": 0, @@ -437,6 +521,18 @@ "value": "大于或等于" } ], + "label.host": [ + { + "type": 0, + "value": "主机" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "主机" + } + ], "label.insights": [ { "type": 0, @@ -485,6 +581,18 @@ "value": "加入团队" } ], + "label.journey": [ + { + "type": 0, + "value": "用户浏览轨迹" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "了解用户如何浏览网站。" + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " 小时" } ], + "label.last-months": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 个月" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "最后出现" + } + ], "label.leave": [ { "type": 0, @@ -567,12 +695,30 @@ "value": "退出" } ], + "label.manage": [ + { + "type": 0, + "value": "管理" + } + ], + "label.manager": [ + { + "type": 0, + "value": "管理者" + } + ], "label.max": [ { "type": 0, "value": "最大" } ], + "label.member": [ + { + "type": 0, + "value": "成员" + } + ], "label.members": [ { "type": 0, @@ -597,6 +743,12 @@ "value": "更多" } ], + "label.my-account": [ + { + "type": 0, + "value": "我的账户" + } + ], "label.my-websites": [ { "type": 0, @@ -621,10 +773,50 @@ "value": "无" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " " + }, + { + "offset": 0, + "options": { + "one": { + "value": [ + { + "type": 0, + "value": "record" + } + ] + }, + "other": { + "value": [ + { + "type": 0, + "value": "records" + } + ] + } + }, + "pluralType": "cardinal", + "type": 6, + "value": "x" + } + ], + "label.ok": [ + { + "type": 0, + "value": "好的" + } + ], "label.os": [ { "type": 0, - "value": "OS" + "value": "操作系统" } ], "label.overview": [ @@ -642,7 +834,7 @@ "label.page-of": [ { "type": 0, - "value": "总" + "value": "总 " }, { "type": 1, @@ -650,7 +842,7 @@ }, { "type": 0, - "value": "中的第" + "value": " 中的第 " }, { "type": 1, @@ -658,7 +850,7 @@ }, { "type": 0, - "value": "页" + "value": " 页" } ], "label.page-views": [ @@ -685,6 +877,18 @@ "value": "密码" } ], + "label.path": [ + { + "type": 0, + "value": "Path" + } + ], + "label.paths": [ + { + "type": 0, + "value": "Paths" + } + ], "label.powered-by": [ { "type": 0, @@ -699,12 +903,42 @@ "value": " 提供支持" } ], + "label.previous": [ + { + "type": 0, + "value": "先前" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "上一时期" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "上一年" + } + ], "label.profile": [ { "type": 0, "value": "个人资料" } ], + "label.properties": [ + { + "type": 0, + "value": "Properties" + } + ], + "label.property": [ + { + "type": 0, + "value": "属性" + } + ], "label.queries": [ { "type": 0, @@ -771,6 +1005,12 @@ "value": "移除" } ], + "label.remove-member": [ + { + "type": 0, + "value": "移除成员" + } + ], "label.reports": [ { "type": 0, @@ -807,6 +1047,24 @@ "value": "通过跟踪用户返回的频率来衡量网站的用户粘性。" } ], + "label.revenue": [ + { + "type": 0, + "value": "收入" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "查看您的收入随时间的变化。" + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "收入值" + } + ], "label.role": [ { "type": 0, @@ -837,18 +1095,36 @@ "value": "搜索" } ], + "label.select": [ + { + "type": 0, + "value": "选择" + } + ], "label.select-date": [ { "type": 0, "value": "选择数据" } ], + "label.select-role": [ + { + "type": 0, + "value": "选择角色" + } + ], "label.select-website": [ { "type": 0, "value": "选择网站" } ], + "label.session": [ + { + "type": 0, + "value": "Session" + } + ], "label.sessions": [ { "type": 0, @@ -873,6 +1149,18 @@ "value": "单日" } ], + "label.start-step": [ + { + "type": 0, + "value": "开始步骤" + } + ], + "label.steps": [ + { + "type": 0, + "value": "步骤" + } + ], "label.sum": [ { "type": 0, @@ -891,18 +1179,18 @@ "value": "团队" } ], - "label.team-guest": [ - { - "type": 0, - "value": "团队访客" - } - ], "label.team-id": [ { "type": 0, "value": "团队 ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "团队管理者" + } + ], "label.team-member": [ { "type": 0, @@ -921,6 +1209,12 @@ "value": "团队所有者" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "仅团队视图" + } + ], "label.team-websites": [ { "type": 0, @@ -999,6 +1293,24 @@ "value": "跟踪代码" } ], + "label.transactions": [ + { + "type": 0, + "value": "交易" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "转移" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "转移网站" + } + ], "label.true": [ { "type": 0, @@ -1023,6 +1335,12 @@ "value": "独立访客" } ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "独特客户" + } + ], "label.unknown": [ { "type": 0, @@ -1035,6 +1353,12 @@ "value": "未命名" } ], + "label.update": [ + { + "type": 0, + "value": "更新" + } + ], "label.url": [ { "type": 0, @@ -1053,6 +1377,12 @@ "value": "用户" } ], + "label.user-property": [ + { + "type": 0, + "value": "用户属性" + } + ], "label.username": [ { "type": 0, @@ -1065,6 +1395,18 @@ "value": "用户" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "通过UTM参数追踪您的广告活动。" + } + ], "label.value": [ { "type": 0, @@ -1095,12 +1437,30 @@ "value": "浏览量" } ], + "label.views-per-visit": [ + { + "type": 0, + "value": "每次访问的浏览量" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "平均访问时间" + } + ], "label.visitors": [ { "type": 0, "value": "访客" } ], + "label.visits": [ + { + "type": 0, + "value": "访问次数" + } + ], "label.website": [ { "type": 0, @@ -1131,6 +1491,20 @@ "value": "昨天" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "在下面的框中输入 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " 以确认。" + } + ], "message.active-users": [ { "type": 0, @@ -1145,6 +1519,12 @@ "value": " 人" } ], + "message.collected-data": [ + { + "type": 0, + "value": "已收集的数据" + } + ], "message.confirm-delete": [ { "type": 0, @@ -1173,6 +1553,20 @@ "value": " 吗?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "您确定要移除 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " ?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1184,35 +1578,13 @@ }, { "type": 0, - "value": " 的数据吗?" + "value": " 的数据吗?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "确定删除该账户, 请在下面的输入框中输入 " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " 进行二次确认。" - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "确定删除该网站, 请在下面的输入框中输入 " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " 进行二次确认。" + "value": "删除团队也会删除所有团队的网站。" } ], "message.delete-website-warning": [ @@ -1234,7 +1606,7 @@ }, { "type": 0, - "value": "上的" + "value": " 上的 " }, { "type": 1, @@ -1276,7 +1648,7 @@ "message.new-version-available": [ { "type": 0, - "value": "Umami的新版本" + "value": "Umami 的新版本 " }, { "type": 1, @@ -1284,7 +1656,7 @@ }, { "type": 0, - "value": "已推出!" + "value": " 已推出!" } ], "message.no-data-available": [ @@ -1344,7 +1716,7 @@ "message.reset-website": [ { "type": 0, - "value": "如果确定重置该网站, 请在下面的输入框中输入 " + "value": "如果确定重置该网站,请在下面的输入框中输入 " }, { "type": 1, @@ -1405,16 +1777,46 @@ "value": "跟踪代码" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "将该网站转入您的账户?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "选择要将该网站转移到哪个团队。" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "将网站所有权转移到您的账户或其他团队。" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "触发事件" + } + ], "message.user-deleted": [ { "type": 0, "value": "用户已删除。" } ], + "message.viewed-page": [ + { + "type": 0, + "value": "已浏览页面" + } + ], "message.visitor-log": [ { "type": 0, - "value": "来自" + "value": "来自 " }, { "type": 1, @@ -1422,7 +1824,7 @@ }, { "type": 0, - "value": "的访客在搭载 " + "value": " 的访客在搭载 " }, { "type": 1, @@ -1430,7 +1832,7 @@ }, { "type": 0, - "value": " 的" + "value": " 的 " }, { "type": 1, @@ -1438,7 +1840,7 @@ }, { "type": 0, - "value": "上使用 " + "value": " 上使用 " }, { "type": 1, @@ -1448,5 +1850,11 @@ "type": 0, "value": " 浏览器进行访问。" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "访客减少" + } ] } diff --git a/public/intl/messages/zh-TW.json b/public/intl/messages/zh-TW.json index 82f54a667..d8fb3d42d 100644 --- a/public/intl/messages/zh-TW.json +++ b/public/intl/messages/zh-TW.json @@ -8,13 +8,13 @@ "label.actions": [ { "type": 0, - "value": "行動" + "value": "行為" } ], - "label.activity-log": [ + "label.activity": [ { "type": 0, - "value": "活動日誌" + "value": "活動紀錄" } ], "label.add": [ @@ -29,6 +29,18 @@ "value": "新增描述" } ], + "label.add-member": [ + { + "type": 0, + "value": "新增成員" + } + ], + "label.add-step": [ + { + "type": 0, + "value": "新增步驟" + } + ], "label.add-website": [ { "type": 0, @@ -71,12 +83,6 @@ "value": "平均" } ], - "label.average-visit-time": [ - { - "type": 0, - "value": "平均造訪時間" - } - ], "label.back": [ { "type": 0, @@ -98,7 +104,7 @@ "label.breakdown": [ { "type": 0, - "value": "分解" + "value": "細項分析" } ], "label.browser": [ @@ -143,6 +149,12 @@ "value": "全部清除" } ], + "label.compare": [ + { + "type": 0, + "value": "比較" + } + ], "label.confirm": [ { "type": 0, @@ -167,6 +179,12 @@ "value": "繼續" } ], + "label.count": [ + { + "type": 0, + "value": "數量" + } + ], "label.countries": [ { "type": 0, @@ -188,7 +206,7 @@ "label.create-report": [ { "type": 0, - "value": "建立報告" + "value": "建立報表" } ], "label.create-team": [ @@ -209,6 +227,18 @@ "value": "已建立" } ], + "label.created-by": [ + { + "type": 0, + "value": "建立者" + } + ], + "label.current": [ + { + "type": 0, + "value": "目前" + } + ], "label.current-password": [ { "type": 0, @@ -263,6 +293,12 @@ "value": "刪除" } ], + "label.delete-report": [ + { + "type": 0, + "value": "刪除報表" + } + ], "label.delete-team": [ { "type": 0, @@ -332,7 +368,7 @@ "label.dropoff": [ { "type": 0, - "value": "退出" + "value": "離開" } ], "label.edit": [ @@ -347,10 +383,28 @@ "value": "編輯儀表板" } ], + "label.edit-member": [ + { + "type": 0, + "value": "編輯成員" + } + ], "label.enable-share-url": [ { "type": 0, - "value": "啟用分享網址" + "value": "啟用分享連結" + } + ], + "label.end-step": [ + { + "type": 0, + "value": "結束步驟" + } + ], + "label.entry": [ + { + "type": 0, + "value": "進入網址" } ], "label.event": [ @@ -371,6 +425,12 @@ "value": "事件" } ], + "label.exit": [ + { + "type": 0, + "value": "離開網址" + } + ], "label.false": [ { "type": 0, @@ -410,19 +470,43 @@ "label.filters": [ { "type": 0, - "value": "篩選器" + "value": "篩選條件" + } + ], + "label.first-seen": [ + { + "type": 0, + "value": "首次造訪" } ], "label.funnel": [ { "type": 0, - "value": "漏斗" + "value": "漏斗分析" } ], "label.funnel-description": [ { "type": 0, - "value": "瞭解使用者的轉換率和退出率" + "value": "瞭解使用者的轉換率與流失率。" + } + ], + "label.goal": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals": [ + { + "type": 0, + "value": "目標" + } + ], + "label.goals-description": [ + { + "type": 0, + "value": "追蹤網頁瀏覽和事件的目標。" } ], "label.greater-than": [ @@ -437,6 +521,18 @@ "value": "大於或等於" } ], + "label.host": [ + { + "type": 0, + "value": "主機名稱" + } + ], + "label.hosts": [ + { + "type": 0, + "value": "主機名稱" + } + ], "label.insights": [ { "type": 0, @@ -446,7 +542,7 @@ "label.insights-description": [ { "type": 0, - "value": "透過使用區段和篩選器來深入探索你的數據" + "value": "使用區段和篩選器來深入分析您的資料。" } ], "label.is": [ @@ -485,6 +581,18 @@ "value": "加入團隊" } ], + "label.journey": [ + { + "type": 0, + "value": "使用者旅程" + } + ], + "label.journey-description": [ + { + "type": 0, + "value": "瞭解使用者如何瀏覽您的網站。" + } + ], "label.language": [ { "type": 0, @@ -531,6 +639,26 @@ "value": " 小時" } ], + "label.last-months": [ + { + "type": 0, + "value": "最近 " + }, + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 個月" + } + ], + "label.last-seen": [ + { + "type": 0, + "value": "最後造訪" + } + ], "label.leave": [ { "type": 0, @@ -567,10 +695,28 @@ "value": "登出" } ], + "label.manage": [ + { + "type": 0, + "value": "管理" + } + ], + "label.manager": [ + { + "type": 0, + "value": "管理者" + } + ], "label.max": [ { "type": 0, - "value": "最大" + "value": "最大值" + } + ], + "label.member": [ + { + "type": 0, + "value": "成員" } ], "label.members": [ @@ -582,7 +728,7 @@ "label.min": [ { "type": 0, - "value": "最小" + "value": "最小值" } ], "label.mobile": [ @@ -597,6 +743,12 @@ "value": "更多" } ], + "label.my-account": [ + { + "type": 0, + "value": "我的帳號" + } + ], "label.my-websites": [ { "type": 0, @@ -621,6 +773,22 @@ "value": "無" } ], + "label.number-of-records": [ + { + "type": 1, + "value": "x" + }, + { + "type": 0, + "value": " 筆紀錄" + } + ], + "label.ok": [ + { + "type": 0, + "value": "OK" + } + ], "label.os": [ { "type": 0, @@ -630,7 +798,7 @@ "label.overview": [ { "type": 0, - "value": "概覽" + "value": "總覽" } ], "label.owner": [ @@ -642,7 +810,7 @@ "label.page-of": [ { "type": 0, - "value": "頁面 " + "value": "第 " }, { "type": 1, @@ -650,29 +818,33 @@ }, { "type": 0, - "value": " / " + "value": " 頁,共 " }, { "type": 1, "value": "total" + }, + { + "type": 0, + "value": " 頁" } ], "label.page-views": [ { "type": 0, - "value": "頁面瀏覽" + "value": "網頁瀏覽次數" } ], "label.pageTitle": [ { "type": 0, - "value": "頁面標題" + "value": "網頁標題" } ], "label.pages": [ { "type": 0, - "value": "頁面" + "value": "網頁" } ], "label.password": [ @@ -681,6 +853,18 @@ "value": "密碼" } ], + "label.path": [ + { + "type": 0, + "value": "路徑" + } + ], + "label.paths": [ + { + "type": 0, + "value": "路徑" + } + ], "label.powered-by": [ { "type": 0, @@ -692,13 +876,43 @@ }, { "type": 0, - "value": " 提供" + "value": " 提供技術支援" + } + ], + "label.previous": [ + { + "type": 0, + "value": "上一個" + } + ], + "label.previous-period": [ + { + "type": 0, + "value": "上一期間" + } + ], + "label.previous-year": [ + { + "type": 0, + "value": "去年" } ], "label.profile": [ { "type": 0, - "value": "個人資料" + "value": "個人檔案" + } + ], + "label.properties": [ + { + "type": 0, + "value": "屬性" + } + ], + "label.property": [ + { + "type": 0, + "value": "屬性" } ], "label.queries": [ @@ -752,13 +966,13 @@ "label.region": [ { "type": 0, - "value": "區域" + "value": "地區" } ], "label.regions": [ { "type": 0, - "value": "區域" + "value": "地區" } ], "label.remove": [ @@ -767,10 +981,16 @@ "value": "移除" } ], + "label.remove-member": [ + { + "type": 0, + "value": "移除成員" + } + ], "label.reports": [ { "type": 0, - "value": "報告" + "value": "報表" } ], "label.required": [ @@ -788,13 +1008,13 @@ "label.reset-website": [ { "type": 0, - "value": "重設網站" + "value": "重設網站統計資料" } ], "label.retention": [ { "type": 0, - "value": "保留" + "value": "留存率" } ], "label.retention-description": [ @@ -803,6 +1023,24 @@ "value": "透過追蹤使用者回訪的頻率來衡量您的網站黏著度。" } ], + "label.revenue": [ + { + "type": 0, + "value": "營收" + } + ], + "label.revenue-description": [ + { + "type": 0, + "value": "查看您的營收趨勢。" + } + ], + "label.revenue-property": [ + { + "type": 0, + "value": "營收屬性" + } + ], "label.role": [ { "type": 0, @@ -830,19 +1068,37 @@ "label.search": [ { "type": 0, - "value": "Search" + "value": "搜尋" + } + ], + "label.select": [ + { + "type": 0, + "value": "選取" } ], "label.select-date": [ { "type": 0, - "value": "選擇日期" + "value": "選取日期" + } + ], + "label.select-role": [ + { + "type": 0, + "value": "選取角色" } ], "label.select-website": [ { "type": 0, - "value": "選擇網站" + "value": "選取網站" + } + ], + "label.session": [ + { + "type": 0, + "value": "工作階段" } ], "label.sessions": [ @@ -860,7 +1116,7 @@ "label.share-url": [ { "type": 0, - "value": "分享網址" + "value": "分享連結" } ], "label.single-day": [ @@ -869,6 +1125,18 @@ "value": "單日" } ], + "label.start-step": [ + { + "type": 0, + "value": "起始步驟" + } + ], + "label.steps": [ + { + "type": 0, + "value": "步驟" + } + ], "label.sum": [ { "type": 0, @@ -887,18 +1155,18 @@ "value": "團隊" } ], - "label.team-guest": [ - { - "type": 0, - "value": "團隊訪客" - } - ], "label.team-id": [ { "type": 0, "value": "團隊 ID" } ], + "label.team-manager": [ + { + "type": 0, + "value": "團隊管理者" + } + ], "label.team-member": [ { "type": 0, @@ -917,6 +1185,12 @@ "value": "團隊擁有者" } ], + "label.team-view-only": [ + { + "type": 0, + "value": "團隊僅供檢視" + } + ], "label.team-websites": [ { "type": 0, @@ -986,7 +1260,7 @@ "label.total-records": [ { "type": 0, - "value": "總記錄" + "value": "紀錄總數" } ], "label.tracking-code": [ @@ -995,6 +1269,24 @@ "value": "追蹤代碼" } ], + "label.transactions": [ + { + "type": 0, + "value": "交易" + } + ], + "label.transfer": [ + { + "type": 0, + "value": "轉移" + } + ], + "label.transfer-website": [ + { + "type": 0, + "value": "轉移網站" + } + ], "label.true": [ { "type": 0, @@ -1010,13 +1302,19 @@ "label.unique": [ { "type": 0, - "value": "獨立" + "value": "不重複" } ], "label.unique-visitors": [ { "type": 0, - "value": "獨立訪客" + "value": "不重複訪客" + } + ], + "label.uniqueCustomers": [ + { + "type": 0, + "value": "不重複客戶" } ], "label.unknown": [ @@ -1028,7 +1326,13 @@ "label.untitled": [ { "type": 0, - "value": "無標題" + "value": "未命名" + } + ], + "label.update": [ + { + "type": 0, + "value": "更新" } ], "label.url": [ @@ -1049,6 +1353,12 @@ "value": "使用者" } ], + "label.user-property": [ + { + "type": 0, + "value": "使用者屬性" + } + ], "label.username": [ { "type": 0, @@ -1061,6 +1371,18 @@ "value": "使用者" } ], + "label.utm": [ + { + "type": 0, + "value": "UTM" + } + ], + "label.utm-description": [ + { + "type": 0, + "value": "透過 UTM 參數追蹤您的行銷活動。" + } + ], "label.value": [ { "type": 0, @@ -1088,7 +1410,19 @@ "label.views": [ { "type": 0, - "value": "檢視" + "value": "瀏覽次數" + } + ], + "label.views-per-visit": [ + { + "type": 0, + "value": "每次造訪的瀏覽次數" + } + ], + "label.visit-duration": [ + { + "type": 0, + "value": "造訪時間" } ], "label.visitors": [ @@ -1097,6 +1431,12 @@ "value": "訪客" } ], + "label.visits": [ + { + "type": 0, + "value": "造訪次數" + } + ], "label.website": [ { "type": 0, @@ -1127,6 +1467,20 @@ "value": "昨天" } ], + "message.action-confirmation": [ + { + "type": 0, + "value": "請在下方欄位輸入 " + }, + { + "type": 1, + "value": "confirmation" + }, + { + "type": 0, + "value": " 以確認。" + } + ], "message.active-users": [ { "type": 0, @@ -1138,7 +1492,13 @@ }, { "type": 0, - "value": " 個活躍的訪客" + "value": " 位訪客" + } + ], + "message.collected-data": [ + { + "type": 0, + "value": "已蒐集的資料" } ], "message.confirm-delete": [ @@ -1169,6 +1529,20 @@ "value": " 嗎?" } ], + "message.confirm-remove": [ + { + "type": 0, + "value": "您確定要移除 " + }, + { + "type": 1, + "value": "target" + }, + { + "type": 0, + "value": " 嗎?" + } + ], "message.confirm-reset": [ { "type": 0, @@ -1180,41 +1554,19 @@ }, { "type": 0, - "value": " 嗎?" + "value": " 的統計資料嗎?" } ], - "message.delete-account": [ + "message.delete-team-warning": [ { "type": 0, - "value": "要刪除此帳戶,請在下方的方框中輸入 " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " 以確認。" - } - ], - "message.delete-website": [ - { - "type": 0, - "value": "要刪除此網站,請在下方的方框中輸入 " - }, - { - "type": 1, - "value": "confirmation" - }, - { - "type": 0, - "value": " 以確認。" + "value": "刪除團隊的同時也會刪除所有團隊的網站。" } ], "message.delete-website-warning": [ { "type": 0, - "value": "所有網站資料將被刪除。" + "value": "所有網站資料都將被刪除。" } ], "message.error": [ @@ -1224,17 +1576,21 @@ } ], "message.event-log": [ - { - "type": 1, - "value": "event" - }, { "type": 0, - "value": " 在 " + "value": "在 " }, { "type": 1, "value": "url" + }, + { + "type": 0, + "value": " 上的 " + }, + { + "type": 1, + "value": "event" } ], "message.go-to-settings": [ @@ -1246,19 +1602,19 @@ "message.incorrect-username-password": [ { "type": 0, - "value": "使用者名稱和/或密碼不正確。" + "value": "使用者名稱或密碼不正確。" } ], "message.invalid-domain": [ { "type": 0, - "value": "無效的網域。請不要包含 http/https。" + "value": "無效的網域。請勿包含 http/https。" } ], "message.min-password-length": [ { "type": 0, - "value": "最少需要 " + "value": "密碼長度至少需 " }, { "type": 1, @@ -1280,7 +1636,7 @@ }, { "type": 0, - "value": " 的新版本已經可以使用!" + "value": " 的新版本已推出!" } ], "message.no-data-available": [ @@ -1322,7 +1678,7 @@ "message.no-users": [ { "type": 0, - "value": "沒有使用者。" + "value": "沒有任何使用者。" } ], "message.no-websites-configured": [ @@ -1334,13 +1690,13 @@ "message.page-not-found": [ { "type": 0, - "value": "找不到頁面" + "value": "找不到網頁" } ], "message.reset-website": [ { "type": 0, - "value": "要重設此網站,請在下方的方框中輸入 " + "value": "要重設此網站的統計資料,請在下方欄位輸入 " }, { "type": 1, @@ -1354,7 +1710,7 @@ "message.reset-website-warning": [ { "type": 0, - "value": "此網站的所有統計將被刪除,但您的設定將保持不變。" + "value": "此網站的所有統計資料都將被刪除,但您的設定將保持不變。" } ], "message.saved": [ @@ -1366,13 +1722,13 @@ "message.share-url": [ { "type": 0, - "value": "您的網站統計資料可以在以下網址公開檢視:" + "value": "您的網站統計資料可在以下網址公開檢視:" } ], "message.team-already-member": [ { "type": 0, - "value": "您已經是團隊的成員。" + "value": "您已是該團隊的成員。" } ], "message.team-not-found": [ @@ -1384,13 +1740,13 @@ "message.team-websites-info": [ { "type": 0, - "value": "團隊的任何成員都可以檢視網站。" + "value": "團隊中的所有成員都可以檢視網站。" } ], "message.tracking-code": [ { "type": 0, - "value": "要追蹤此網站的統計,請將以下代碼放在您的 HTML 的 " + "value": "要追蹤此網站的統計資料,請將以下程式碼放在您 HTML 的 " }, { "children": [ @@ -1407,12 +1763,42 @@ "value": " 區段中。" } ], + "message.transfer-team-website-to-user": [ + { + "type": 0, + "value": "要將此網站轉移至您的帳號嗎?" + } + ], + "message.transfer-user-website-to-team": [ + { + "type": 0, + "value": "請選擇要轉移此網站的團隊。" + } + ], + "message.transfer-website": [ + { + "type": 0, + "value": "將網站所有權轉移至您的帳號或其他團隊。" + } + ], + "message.triggered-event": [ + { + "type": 0, + "value": "已觸發的事件" + } + ], "message.user-deleted": [ { "type": 0, "value": "使用者已刪除。" } ], + "message.viewed-page": [ + { + "type": 0, + "value": "已瀏覽的網頁" + } + ], "message.visitor-log": [ { "type": 0, @@ -1450,5 +1836,11 @@ "type": 0, "value": " 瀏覽。" } + ], + "message.visitors-dropped-off": [ + { + "type": 0, + "value": "訪客已離開" + } ] } diff --git a/rollup.tracker.config.mjs b/rollup.tracker.config.mjs index 465e1af36..05df28798 100644 --- a/rollup.tracker.config.mjs +++ b/rollup.tracker.config.mjs @@ -1,5 +1,4 @@ import 'dotenv/config'; -import buble from '@rollup/plugin-buble'; import replace from '@rollup/plugin-replace'; import { terser } from 'rollup-plugin-terser'; @@ -11,11 +10,11 @@ export default { }, plugins: [ replace({ - '/api/send': process.env.COLLECT_API_ENDPOINT || '/api/send', + '__COLLECT_API_HOST__': process.env.COLLECT_API_HOST || '', + '__COLLECT_API_ENDPOINT__': process.env.COLLECT_API_ENDPOINT || '/api/send', delimiters: ['', ''], preventAssignment: true, }), - buble({ objectAssign: true }), terser({ compress: { evaluate: false } }), ], }; diff --git a/scripts/check-db.js b/scripts/check-db.js index 757843ac3..cdfeafa32 100644 --- a/scripts/check-db.js +++ b/scripts/check-db.js @@ -44,7 +44,7 @@ async function checkConnection() { success('Database connection successful.'); } catch (e) { - throw new Error('Unable to connect to the database.'); + throw new Error('Unable to connect to the database: ' + e.message); } } diff --git a/scripts/check-env.js b/scripts/check-env.js index a68fd822a..280e7e398 100644 --- a/scripts/check-env.js +++ b/scripts/check-env.js @@ -22,14 +22,6 @@ if (!process.env.SKIP_DB_CHECK && !process.env.DATABASE_TYPE) { checkMissing(['DATABASE_URL']); } -if (process.env.CLICKHOUSE_URL) { - checkMissing(['CA_CERT', 'CLIENT_CERT', 'CLIENT_KEY', 'KAFKA_BROKER', 'KAFKA_URL', 'REDIS_URL']); -} - if (process.env.CLOUD_MODE) { - checkMissing(['CLOUD_URL']); -} - -if (process.env.ENABLE_BLOCKER) { - checkMissing(['REDIS_URL']); + checkMissing(['CLOUD_URL', 'KAFKA_BROKER', 'KAFKA_URL', 'REDIS_URL']); } diff --git a/scripts/merge-messages.js b/scripts/merge-messages.js index 572e9a7ed..44ffb5c78 100644 --- a/scripts/merge-messages.js +++ b/scripts/merge-messages.js @@ -2,7 +2,7 @@ const fs = require('fs'); const path = require('path'); const prettier = require('prettier'); -const messages = require('../build/messages.json'); +const messages = require('../build/extracted-messages.json'); const dest = path.resolve(__dirname, '../src/lang'); const files = fs.readdirSync(dest); diff --git a/scripts/start-env.js b/scripts/start-env.js index e9fe2a4b4..264c4e92b 100644 --- a/scripts/start-env.js +++ b/scripts/start-env.js @@ -2,7 +2,6 @@ require('dotenv').config(); const cli = require('next/dist/cli/next-start'); cli.nextStart({ - '--port': process.env.PORT || 3000, - '--hostname': process.env.HOSTNAME || '0.0.0.0', - _: [], + port: process.env.PORT || 3000, + hostname: process.env.HOSTNAME || '0.0.0.0', }); diff --git a/scripts/telemetry.js b/scripts/telemetry.js index 24cd40c91..27110cd46 100644 --- a/scripts/telemetry.js +++ b/scripts/telemetry.js @@ -15,9 +15,9 @@ async function sendTelemetry(type) { node: process.version, platform: os.platform(), arch: os.arch(), - os: `${os.type()} (${os.version()})`, - isDocker: isDocker(), - isCi: isCI, + os: `${os.type()} ${os.version()}`, + is_docker: isDocker(), + is_ci: isCI, }, }; diff --git a/scripts/update-tracker.js b/scripts/update-tracker.js index fdec11dc0..4dcbf2457 100644 --- a/scripts/update-tracker.js +++ b/scripts/update-tracker.js @@ -10,10 +10,7 @@ if (endPoint) { const tracker = fs.readFileSync(file); - fs.writeFileSync( - path.resolve(file), - tracker.toString().replace(/"\/api\/send"/g, `"${endPoint}"`), - ); + fs.writeFileSync(path.resolve(file), tracker.toString().replace(/\/api\/send/g, endPoint)); console.log(`Updated tracker endpoint: ${endPoint}.`); } diff --git a/src/app/(main)/App.tsx b/src/app/(main)/App.tsx index 4b0931652..efb38043a 100644 --- a/src/app/(main)/App.tsx +++ b/src/app/(main)/App.tsx @@ -27,7 +27,7 @@ export function App({ children }) { {children} {process.env.NODE_ENV === 'production' && !pathname.includes('/share/') && ( - `; - - return ( - <> -

{formatMessage(messages.trackingCode)}

-