Merge branch 'dev' into uk-UA-translations

This commit is contained in:
Mike Cao
2024-06-19 22:18:38 -07:00
committed by GitHub
304 changed files with 15825 additions and 2085 deletions

107
README.md
View File

@@ -1,69 +1,93 @@
# umami
<p align="center">
<img src="https://umami.is/images/umami-logo.png" alt="Umami Logo" width="100">
</p>
Umami is a simple, fast, privacy-focused alternative to Google Analytics.
<h1 align="center">Umami</h1>
## Getting started
<p align="center">
<i>Umami is a simple, fast, privacy-focused alternative to Google Analytics.</i>
</p>
A detailed getting started guide can be found at [https://umami.is/docs/](https://umami.is/docs/)
<p align="center">
<a href="https://github.com/umami-software/umami/releases">
<img src="https://img.shields.io/github/release/umami-software/umami.svg" alt="GitHub Release" />
</a>
<a href="https://github.com/umami-software/umami/blob/master/LICENSE">
<img src="https://img.shields.io/github/license/umami-software/umami.svg" alt="MIT License" />
</a>
<a href="https://github.com/umami-software/umami/actions">
<img src="https://img.shields.io/github/actions/workflow/status/umami-software/umami/ci.yml" alt="Build Status" />
</a>
<a href="https://analytics.umami.is/share/LGazGOecbDtaIwDr/umami.is" style="text-decoration: none;">
<img src="https://img.shields.io/badge/Try%20Demo%20Now-Click%20Here-brightgreen" alt="Umami Demo" />
</a>
</p>
## 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/) (minimum v8.0) and [Postgresql](https://www.postgresql.org/) (minimum v12.14) databases.
- A database. Umami supports [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 are 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
@@ -81,7 +105,9 @@ Or with MySQL support:
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,7 +124,36 @@ docker compose pull
docker compose up --force-recreate
```
## License
---
MIT
## 🛟 Support
<p align="center">
<a href="https://github.com/umami-software/umami">
<img src="https://img.shields.io/badge/GitHub--blue?style=social&logo=github" alt="GitHub" />
</a>
<a href="https://twitter.com/umami_software">
<img src="https://img.shields.io/badge/Twitter--blue?style=social&logo=twitter" alt="Twitter" />
</a>
<a href="https://linkedin.com/company/umami-software">
<img src="https://img.shields.io/badge/LinkedIn--blue?style=social&logo=linkedin" alt="LinkedIn" />
</a>
<a href="https://umami.is/discord">
<img src="https://img.shields.io/badge/Discord--blue?style=social&logo=discord" alt="Discord" />
</a>
</p>
[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

View File

@@ -3,18 +3,17 @@ require('dotenv').config();
const path = require('path');
const pkg = require('./package.json');
const basePath = process.env.BASE_PATH || '';
const forceSSL = process.env.FORCE_SSL || '';
const collectApiEndpoint = process.env.COLLECT_API_ENDPOINT || '';
const defaultLocale = process.env.DEFAULT_LOCALE || '';
const trackerScriptName = process.env.TRACKER_SCRIPT_NAME || '';
const cloudMode = process.env.CLOUD_MODE || '';
const cloudUrl = process.env.CLOUD_URL || '';
const frameAncestors = process.env.ALLOWED_FRAME_URLS || '';
const disableLogin = process.env.DISABLE_LOGIN || '';
const disableUI = process.env.DISABLE_UI || '';
const hostURL = process.env.HOST_URL || '';
const privateMode = process.env.PRIVATE_MODE || '';
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 contentSecurityPolicy = [
`default-src 'self'`,
@@ -120,7 +119,6 @@ const config = {
defaultLocale,
disableLogin,
disableUI,
hostURL,
privateMode,
},
basePath,
@@ -169,6 +167,10 @@ const config = {
source: '/telemetry.js',
destination: '/api/scripts/telemetry',
},
{
source: '/teams/:teamId/:path*',
destination: '/:path*',
},
];
},
async redirects() {

View File

@@ -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",

View File

@@ -1,6 +1,6 @@
{
"name": "umami",
"version": "2.11.3",
"version": "2.12.0",
"description": "A simple, fast, privacy-focused alternative to Google Analytics.",
"author": "Umami Software, Inc. <hello@umami.is>",
"license": "MIT",
@@ -64,14 +64,14 @@
".next/cache"
],
"dependencies": {
"@clickhouse/client": "^0.2.2",
"@clickhouse/client": "^1.0.2",
"@fontsource/inter": "^4.5.15",
"@prisma/client": "5.12.1",
"@prisma/client": "5.14.0",
"@prisma/extension-read-replicas": "^0.3.0",
"@react-spring/web": "^9.7.3",
"@tanstack/react-query": "^5.28.6",
"@umami/prisma-client": "^0.14.0",
"@umami/redis-client": "^0.20.0",
"@umami/redis-client": "^0.21.0",
"chalk": "^4.1.1",
"chart.js": "^4.4.2",
"chartjs-adapter-date-fns": "^3.0.0",
@@ -98,11 +98,11 @@
"maxmind": "^4.3.6",
"md5": "^2.3.0",
"moment-timezone": "^0.5.35",
"next": "14.1.4",
"next": "14.2.3",
"next-basics": "^0.39.0",
"node-fetch": "^3.2.8",
"npm-run-all": "^4.1.5",
"prisma": "5.12.1",
"prisma": "5.14.0",
"react": "^18.2.0",
"react-basics": "^0.123.0",
"react-beautiful-dnd": "^13.1.0",

View File

@@ -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"
}

View File

@@ -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"
}

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Average visit time"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Enable share URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Events"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Single day"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Visit duration"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "المتوسط"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "متوسط وقت الزيارة"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "مسح الكل"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "تابع"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "أُنشئ من قبل"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "فعّل مشاركة الرابط"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "الأحداث"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "أكبَر مِن أو يساوي"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "انضم للفريق"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "التحكم"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "يوم واحد"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "معرّف الفريق"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "متوسط وقت الزيارة"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Сярэдняя даўжыня наведвання"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Дазволіць дзяліцца спасылкай"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Падзеі"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Адзін дзень"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Сярэдняя даўжыня наведвання"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
"label.access-code": [
{
"type": 0,
"value": "Access code"
"value": "এক্সেস কোড"
}
],
"label.actions": [
@@ -14,31 +14,31 @@
"label.activity-log": [
{
"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": "Add member"
"value": "সদস্য যোগ করুন"
}
],
"label.add-step": [
{
"type": 0,
"value": "Add step"
"value": "পদ যোগ করুন"
}
],
"label.add-website": [
@@ -56,7 +56,7 @@
"label.after": [
{
"type": 0,
"value": "After"
"value": "পরে"
}
],
"label.all": [
@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "গড় পরিদর্শনের সময়"
}
],
"label.back": [
{
"type": 0,
@@ -98,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": [
@@ -140,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": [
@@ -170,55 +170,61 @@
"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": [
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "শেয়ার ইউআরএল শেয়ার করুন"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "ঘটনা"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "একদিন"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "গড় পরিদর্শনের সময়"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Prosjek"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Prosječno vrijeme posjete"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Očisti sve"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Nastavi"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Kreirao"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"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,
@@ -401,6 +425,12 @@
"value": "Događaji"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "Veće od ili jednako"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Učlani se u tim"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Jedan dan"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Tim ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Pregledi po posjeti"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Prosječno vrijeme posjete"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Mitjana"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Temps mitjà de visita"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Netejar tot"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continuar"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Creat Per"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Activa l'enllaç per compartir"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Esdeveniments"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"value": "Entengui la taxa de conversió i abandonament dels usuaris."
}
],
"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,
@@ -467,6 +515,18 @@
"value": "Més gran que o igual a"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Unir-se al equip"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Administrar"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Un sol dia"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "ID del equip"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Temps mitjà de visita"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Průměrný čas návštěvy"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Povolit sdílení URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Události"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Jeden den"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Průměrný čas návštěvy"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Gennemsnitlig besøgstid"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Aktivér delings-URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Hændelser"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Enkelt dag"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Gennemsnitlig besøgstid"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Durchschn. Bsuechsziit"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Alles lösche"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Wiiter"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Freigab-URL aktiviere"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Ereigniss"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Team biträte"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Ein Tag"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Durchschn. Bsuechsziit"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Durchschnitt"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Durchschn. Besuchszeit"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Alles löschen"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Weiter"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Freigabe-URL aktivieren"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Ereignisse"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Größer oder gleich"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Team beitreten"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Ein Tag"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team-ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Durchschn. Besuchszeit"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Μέσος χρόνος επίσκεψης"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Ενεργοποίηση κοινής χρήσης URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Γεγονότα"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Ημερήσια"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Μέσος χρόνος επίσκεψης"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Average visit time"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Enable share URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Events"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Single day"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Visit duration"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Average visit time"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Enable share URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Events"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Single day"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Visit duration"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Media"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Tiempo promedio de visita"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Limpiar todo"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continuar"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Habilitar compartir URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Eventos"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"value": "Comprender conversión y abandono de usuarios."
}
],
"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,
@@ -467,6 +515,18 @@
"value": "Mayor que o igual a"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Unirse al equipo"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Administrar"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Un solo día"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "ID del equipo"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Tiempo promedio de visita"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -71,7 +71,7 @@
"value": "Average"
}
],
"label.average-visit-time": [
"label.visit-duration": [
{
"type": 0,
"value": "Tiempo promedio de visita"

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "میانگین زمان بازدید"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "فعال کردن اشتراک گذاری URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "رویدادها"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "یک روز"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "میانگین زمان بازدید"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Keskimääräinen vierailuaika"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"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,
@@ -401,6 +425,12 @@
"value": "Tapahtumat"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Yksi päivä"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Keskimääräinen vierailuaika"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Miðal vitjurnartíð "
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Virkja deili leinki"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Hendingar/tiltøk"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Einkultur dagur"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Miðal vitjurnartíð "
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Moyenne"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Temps de visite moyen"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Réinitialiser"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continuer"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Crée par"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Activer l'URL de partage"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Évènements"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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": "Track your goals for pageviews and events."
}
],
"label.greater-than": [
{
"type": 0,
@@ -467,6 +515,18 @@
"value": "Supérieur ou égal à"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Rejoindre une équipe"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -605,6 +677,12 @@
"value": "Gérer"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -781,12 +859,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -973,6 +1075,12 @@
"value": "Journée"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1003,6 +1111,12 @@
"value": "ID d'équipe"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1237,6 +1351,12 @@
"value": "Vues par visite"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Temps de visite moyen"
}
],
"label.visitors": [
{
"type": 0,
@@ -1331,6 +1451,12 @@
"value": " actuellement"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Tempo medio de visita"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"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,
@@ -401,6 +425,12 @@
"value": "Eventos"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -993,6 +1095,12 @@
"value": "Un só día"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1023,6 +1131,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1257,6 +1371,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Tempo medio de visita"
}
],
"label.visitors": [
{
"type": 0,
@@ -1347,6 +1467,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "זמן ביקור ממוצע"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "הפעלת URL שיתוף"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "אירועים"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -609,6 +681,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -785,12 +863,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -977,6 +1079,12 @@
"value": "יום בודד"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1007,6 +1115,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1241,6 +1355,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "זמן ביקור ממוצע"
}
],
"label.visitors": [
{
"type": 0,
@@ -1331,6 +1451,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "औसत दृश्य समय"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "शेयर URL सक्षम करें"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "स्पर्धाएँ"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "एक दिन"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "औसत दृश्य समय"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Average visit time"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Omogući dijeljenje poveznice"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Events"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Jedan dan"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Visit duration"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Átlagos látogatási idő"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"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,
@@ -401,6 +425,12 @@
"value": "Események"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Egy nap"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Átlagos látogatási idő"
}
],
"label.visitors": [
{
"type": 0,
@@ -1343,6 +1463,12 @@
"value": " jelenleg"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Waktu kunjungan rata-rata"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Aktifkan URL berbagi"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Perihal"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -609,6 +681,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -785,12 +863,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -977,6 +1079,12 @@
"value": "Sehari"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1007,6 +1115,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1241,6 +1355,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Waktu kunjungan rata-rata"
}
],
"label.visitors": [
{
"type": 0,
@@ -1307,6 +1427,12 @@
"value": " pengunjung saat ini"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Tempo medio di visita"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Abilita URL di condivisione"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Eventi"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Singolo giorno"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Tempo medio di visita"
}
],
"label.visitors": [
{
"type": 0,
@@ -1343,6 +1463,12 @@
"value": " online"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "平均"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "平均滞在時間"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "すべてクリア"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "続ける"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "共有URLを有効にする"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "イベント"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "以上"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "チームに参加"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "管理"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "一日"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "チームID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "平均滞在時間"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 1,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "មើលជាមធ្យម"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "បើកការចែករំលែក URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "ព្រឹត្តិការណ៍"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -609,6 +681,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -785,12 +863,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -977,6 +1079,12 @@
"value": "ថ្ងៃតែមួយ"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1007,6 +1115,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1241,6 +1355,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "មើលជាមធ្យម"
}
],
"label.visitors": [
{
"type": 0,
@@ -1311,6 +1431,12 @@
"value": " នាក់ ឥលូវនេះ"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "평균 방문 시간"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "URL 공유 활성화"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "이벤트"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -797,12 +875,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -989,6 +1091,12 @@
"value": "하루"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1019,6 +1127,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1253,6 +1367,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "평균 방문 시간"
}
],
"label.visitors": [
{
"type": 0,
@@ -1319,6 +1439,12 @@
"value": "명의 사용자가 보는 중입니다."
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 1,

View File

@@ -83,12 +83,6 @@
"value": "Vidurkis"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Vidutinė vizito trukmė"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Išvalyti visus"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Įjungti bendrinimą su nuoroda"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Įvykiai"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Prisijungti į komandą"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -722,6 +794,12 @@
"value": "Tvarkyti"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -898,12 +976,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -1090,6 +1192,12 @@
"value": "Viena diena"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1120,6 +1228,12 @@
"value": "Komandos ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1354,6 +1468,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Vidutinė vizito trukmė"
}
],
"label.visitors": [
{
"type": 0,
@@ -1464,6 +1584,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Дундаж"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Зочилсон дундаж хугацаа"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Бүгдийг арилгах"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Үргэлжлүүлэх"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Хуваалцах холбоос идэвхжүүлэх"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Үйлдэл"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "Их буюу тэнцүү"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Багт нэгдэх"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Нэг өдөр"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Багийн ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Зочилсон дундаж хугацаа"
}
],
"label.visitors": [
{
"type": 0,
@@ -1347,6 +1467,12 @@
"value": " байна"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Purata tempoh masa lawatan"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Aktifkan url berkongsi"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Peristiwa"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -609,6 +681,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -785,12 +863,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -977,6 +1079,12 @@
"value": "Satu hari"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1007,6 +1115,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1241,6 +1355,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Purata tempoh masa lawatan"
}
],
"label.visitors": [
{
"type": 0,
@@ -1331,6 +1451,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "ပျမ်းမျှ"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "ဝဘက်ဘ်ဆိုဒ်တွင် ပျမ်းမျှကုန်ဆုံးချိန်"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "အားလုံးကိုဖျက်မည်"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "ဆက်သွားမည်"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "ဝေငှခြင်းကိုလင့်ကို ဖွင့်မည်"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "အဖြစ်အပျက်များ"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "ထက်ပို၍ကြီးသည်သို့မဟုတ်တူသည်"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "အသင်းဝင်မည်"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "တစ်ရက်အတွင်း"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "အသင်း အိုင်ဒီ"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "ဝဘက်ဘ်ဆိုဒ်တွင် ပျမ်းမျှကုန်ဆုံးချိန်"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 1,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Gjennomsnittlig besøkstid"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Aktiver delings-URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Arrangementer"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Enkelt dag"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Gjennomsnittlig besøkstid"
}
],
"label.visitors": [
{
"type": 0,
@@ -1343,6 +1463,12 @@
"value": " nå"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Gemiddelde"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Gemiddelde bezoektijd"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Filters wissen"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Doorgaan"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Gemaakt Door"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"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,
@@ -401,6 +425,12 @@
"value": "Gebeurtenissen"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "Groter of gelijk aan"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Word lid van een team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Beheren"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Enkele dag"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Gemiddelde bezoektijd"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -32,13 +32,13 @@
"label.add-member": [
{
"type": 0,
"value": "Add member"
"value": "Dodaj członka"
}
],
"label.add-step": [
{
"type": 0,
"value": "Add step"
"value": "Dodaj krok"
}
],
"label.add-website": [
@@ -83,12 +83,6 @@
"value": "Średnia"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Średni czas wizyty"
}
],
"label.back": [
{
"type": 0,
@@ -116,7 +110,7 @@
"label.browser": [
{
"type": 0,
"value": "Browser"
"value": "Przeglądarka"
}
],
"label.browsers": [
@@ -146,7 +140,7 @@
"label.city": [
{
"type": 0,
"value": "City"
"value": "Miasto"
}
],
"label.clear-all": [
@@ -155,6 +149,12 @@
"value": "Wyczyść wszystko"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Kontynuuj"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -188,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": [
@@ -224,7 +230,13 @@
"label.created-by": [
{
"type": 0,
"value": "Created By"
"value": "Utworzony przez"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
@@ -248,13 +260,13 @@
"label.data": [
{
"type": 0,
"value": "Data"
"value": "Dane"
}
],
"label.date": [
{
"type": 0,
"value": "Date"
"value": "Data"
}
],
"label.date-range": [
@@ -266,7 +278,7 @@
"label.day": [
{
"type": 0,
"value": "Day"
"value": "Dzień"
}
],
"label.default-date-range": [
@@ -284,7 +296,7 @@
"label.delete-report": [
{
"type": 0,
"value": "Delete report"
"value": "Usuń raport"
}
],
"label.delete-team": [
@@ -326,7 +338,7 @@
"label.device": [
{
"type": 0,
"value": "Device"
"value": "Urządzenie"
}
],
"label.devices": [
@@ -356,7 +368,7 @@
"label.dropoff": [
{
"type": 0,
"value": "Dropoff"
"value": "Odpływ"
}
],
"label.edit": [
@@ -374,7 +386,7 @@
"label.edit-member": [
{
"type": 0,
"value": "Edit member"
"value": "Edytuj członka"
}
],
"label.enable-share-url": [
@@ -383,10 +395,22 @@
"value": "Włącz udostępnianie adresu URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
"value": "Event"
"value": "Zdarzenie"
}
],
"label.event-data": [
@@ -401,6 +425,12 @@
"value": "Zdarzenia"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -422,7 +452,7 @@
"label.filter": [
{
"type": 0,
"value": "Filter"
"value": "Filtruj"
}
],
"label.filter-combined": [
@@ -452,7 +482,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": "Goal"
}
],
"label.goals": [
{
"type": 0,
"value": "Goals"
}
],
"label.goals-description": [
{
"type": 0,
"value": "Track your goals for pageviews and events."
}
],
"label.greater-than": [
@@ -467,16 +515,28 @@
"value": "Większe niż lub równe"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"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": [
@@ -494,13 +554,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": [
@@ -515,6 +575,18 @@
"value": "Dołącz do zespołu"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -564,7 +636,7 @@
"label.last-months": [
{
"type": 0,
"value": "Last "
"value": "Osatnie "
},
{
"type": 1,
@@ -572,7 +644,7 @@
},
{
"type": 0,
"value": " months"
"value": " miesięcy"
}
],
"label.leave": [
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -626,7 +704,7 @@
"label.member": [
{
"type": 0,
"value": "Member"
"value": "Członek"
}
],
"label.members": [
@@ -656,13 +734,13 @@
"label.my-account": [
{
"type": 0,
"value": "My account"
"value": "Moje konto"
}
],
"label.my-websites": [
{
"type": 0,
"value": "My websites"
"value": "Moje witryny"
}
],
"label.name": [
@@ -699,7 +777,7 @@
"value": [
{
"type": 0,
"value": "record"
"value": "rekord"
}
]
},
@@ -707,7 +785,7 @@
"value": [
{
"type": 0,
"value": "records"
"value": "rekordy"
}
]
}
@@ -744,7 +822,7 @@
"label.page-of": [
{
"type": 0,
"value": "Page "
"value": "Strona "
},
{
"type": 1,
@@ -752,7 +830,7 @@
},
{
"type": 0,
"value": " of "
"value": " z "
},
{
"type": 1,
@@ -768,7 +846,7 @@
"label.pageTitle": [
{
"type": 0,
"value": "Page title"
"value": "Tytuł strony"
}
],
"label.pages": [
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -898,19 +1000,19 @@
"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.role": [
{
"type": 0,
"value": "Role"
"value": "Rola"
}
],
"label.run-query": [
@@ -934,13 +1036,13 @@
"label.search": [
{
"type": 0,
"value": "Search"
"value": "Szukaj"
}
],
"label.select": [
{
"type": 0,
"value": "Select"
"value": "Wybierz"
}
],
"label.select-date": [
@@ -952,7 +1054,7 @@
"label.select-role": [
{
"type": 0,
"value": "Select role"
"value": "Wybierz rolę"
}
],
"label.select-website": [
@@ -985,10 +1087,16 @@
"value": "W tym dniu"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
"value": "Steps"
"value": "Kroki"
}
],
"label.sum": [
@@ -1015,6 +1123,12 @@
"value": "ID zespołu"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1024,7 +1138,7 @@
"label.team-name": [
{
"type": 0,
"value": "Team name"
"value": "Nazwa zespołu"
}
],
"label.team-owner": [
@@ -1036,13 +1150,13 @@
"label.team-view-only": [
{
"type": 0,
"value": "Team view only"
"value": "Tylko do odczytu dla zespołu"
}
],
"label.team-websites": [
{
"type": 0,
"value": "Team websites"
"value": "Witryny zespołu"
}
],
"label.teams": [
@@ -1168,7 +1282,7 @@
"label.update": [
{
"type": 0,
"value": "Update"
"value": "Aktualizuj"
}
],
"label.url": [
@@ -1210,7 +1324,7 @@
"label.utm-description": [
{
"type": 0,
"value": "Track your campaigns through UTM parameters."
"value": "Śledź swoje kampanie za pomocą parametrów UTM."
}
],
"label.value": [
@@ -1246,7 +1360,13 @@
"label.views-per-visit": [
{
"type": 0,
"value": "Views per visit"
"value": "Widoków na wizytę"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Średni czas wizyty"
}
],
"label.visitors": [
@@ -1258,7 +1378,7 @@
"label.visits": [
{
"type": 0,
"value": "Visits"
"value": "Odwiedząjący"
}
],
"label.website": [
@@ -1294,7 +1414,7 @@
"message.action-confirmation": [
{
"type": 0,
"value": "Type "
"value": "Wpisz "
},
{
"type": 1,
@@ -1302,7 +1422,7 @@
},
{
"type": 0,
"value": " in the box below to confirm."
"value": ", aby potwierdzić."
}
],
"message.active-users": [
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,
@@ -1370,7 +1496,7 @@
"message.confirm-remove": [
{
"type": 0,
"value": "Are you sure you want to remove "
"value": "Czy na pewno chcesz usunąć "
},
{
"type": 1,
@@ -1398,7 +1524,7 @@
"message.delete-team-warning": [
{
"type": 0,
"value": "Deleting a team will also delete all team websites."
"value": "Usunięcie zespołu usunie wszystkie jego witryny."
}
],
"message.delete-website-warning": [
@@ -1436,7 +1562,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": [
@@ -1462,7 +1588,7 @@
"message.new-version-available": [
{
"type": 0,
"value": "A new version of Umami "
"value": "Nowa wersja Umami "
},
{
"type": 1,
@@ -1470,7 +1596,7 @@
},
{
"type": 0,
"value": " is available!"
"value": " jest dostępna!"
}
],
"message.no-data-available": [
@@ -1594,25 +1720,25 @@
"message.transfer-team-website-to-user": [
{
"type": 0,
"value": "Transfer this website to your account?"
"value": "Czy przenieść tę witrynę do Twoje konta?"
}
],
"message.transfer-user-website-to-team": [
{
"type": 0,
"value": "Select the team to transfer this website to."
"value": "Wybierz zespół, do którego chcesz przenieść tę witrynę."
}
],
"message.transfer-website": [
{
"type": 0,
"value": "Transfer website ownership to your account or another team."
"value": "Przenieś własność witryny na swoje konto lub do innego zespołu."
}
],
"message.triggered-event": [
{
"type": 0,
"value": "Triggered event"
"value": "Zdarzenie wyzwalające"
}
],
"message.user-deleted": [
@@ -1624,7 +1750,7 @@
"message.viewed-page": [
{
"type": 0,
"value": "Viewed page"
"value": "Obejrzana strona"
}
],
"message.visitor-log": [
@@ -1664,7 +1790,7 @@
"message.visitors-dropped-off": [
{
"type": 0,
"value": "Visitors dropped off"
"value": "Odpływ użytkowników"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Tempo médio de visita"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Ativar link de partilha"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Eventos"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Dia único"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Tempo médio de visita"
}
],
"label.visitors": [
{
"type": 0,
@@ -1343,6 +1463,12 @@
"value": " neste momento"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Mediu"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Timp mediu de vizitare"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Șterge tot"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continuă"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Activare adresă URL de distribuire"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Evenimente"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"value": "Înțelege rata de conversie și rata de abandon a utilizatorilor."
}
],
"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,
@@ -467,6 +515,18 @@
"value": "Mai mare sau egal cu"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Alătură-te echipei"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Administrează"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "O singură zi"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "ID Echipa"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Timp mediu de vizitare"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Среднее время посещения"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Очистить все"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Продолжить"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Разрешить делиться ссылкой"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "События"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Присоединиться к команде"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Один день"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "ID команды"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Среднее время посещения"
}
],
"label.visitors": [
{
"type": 0,
@@ -1315,6 +1435,12 @@
"value": " текущих посетителей"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Average visit time"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "බෙදාගැනීමේ URL සබල කරන්න"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Events"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "තනි දවස"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Visit duration"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 1,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Priemerný čas návštevy"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Povoliť zdielanie URL"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Udalosti"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Jeden deň"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Priemerný čas návštevy"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Povprečno"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Povprečni čas obiska"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Počisti vse"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Nadaljuj"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Uredi povezavo za deljenje"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Dogodki"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Večje ali enako kot"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Pridruži se ekipi"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "En dan"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "ID ekipe"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Povprečni čas obiska"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Genomsnitt"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Genomsnittlig besökstid"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Rensa alla"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Fortsätt"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "Aktivera delningslänk"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "Händelser"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "Större än eller lika med"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Gå med i team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "En dag"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Genomsnittlig besökstid"
}
],
"label.visitors": [
{
"type": 0,
@@ -1343,6 +1463,12 @@
"value": " just nu"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "சராசரி வருகை நேரம்"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "கள முகவரியை பகிரலாம்"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "நிகழ்வுகள்"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "ஒரு நாள்"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "சராசரி வருகை நேரம்"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "ระยะเวลาเข้าชมเฉลี่ย"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "เปิดใช้งานการแชร์ลิงก์"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "เหตุการณ์"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -609,6 +681,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -785,12 +863,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -977,6 +1079,12 @@
"value": "วันที่"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1007,6 +1115,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1241,6 +1355,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "ระยะเวลาเข้าชมเฉลี่ย"
}
],
"label.visitors": [
{
"type": 0,
@@ -1335,6 +1455,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -47,10 +47,10 @@
"value": "Web sitesi ekle"
}
],
"label.administrator": [
"label.admin": [
{
"type": 0,
"value": "Yönetici"
"value": "Administrator"
}
],
"label.after": [
@@ -83,12 +83,6 @@
"value": "Ortalama"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "Ortalama ziyaret süresi"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Hepsini temizle"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Devam et"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Tarafından oluşturldu"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"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,
@@ -401,6 +425,12 @@
"value": "Olaylar"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "Büyük veya eşittir"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Takıma katıl"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Yönet"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "Tekil gün"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Takım ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Ziyaret başına görüntüleme"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Ortalama ziyaret süresi"
}
],
"label.visitors": [
{
"type": 0,
@@ -1315,6 +1435,12 @@
"value": " aktif ziyaretçi"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 1,

File diff suppressed because it is too large Load Diff

View File

@@ -83,12 +83,6 @@
"value": "Average"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "وزٹ کا اوسط وقت"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "شیئر یو آر ایل کو فعال کریں"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "واقعات"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -793,12 +871,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -985,6 +1087,12 @@
"value": "ایک دن"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1015,6 +1123,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1249,6 +1363,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "وزٹ کا اوسط وقت"
}
],
"label.visitors": [
{
"type": 0,
@@ -1339,6 +1459,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,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,
@@ -155,6 +149,12 @@
"value": "Clear all"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "Continue"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"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,
@@ -401,6 +425,12 @@
"value": "Sự kiện"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,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,
@@ -467,6 +515,18 @@
"value": "Greater than or equals"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "Join team"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -609,6 +681,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -785,12 +863,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -977,6 +1079,12 @@
"value": "Trong ngày"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1007,6 +1115,12 @@
"value": "Team ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1241,6 +1355,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "Thời gian truy cập trung bình"
}
],
"label.visitors": [
{
"type": 0,
@@ -1331,6 +1451,12 @@
"value": "x"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "平均"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "平均访问时间"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "清除全部"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "继续"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "创建者"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "启用共享链接"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "行为类别"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "大于或等于"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "加入团队"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "管理"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -801,12 +879,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -993,6 +1095,12 @@
"value": "单日"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1023,6 +1131,12 @@
"value": "团队 ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1257,6 +1371,12 @@
"value": "每次访问的浏览量"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "平均访问时间"
}
],
"label.visitors": [
{
"type": 0,
@@ -1327,6 +1447,12 @@
"value": " 人"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -83,12 +83,6 @@
"value": "平均"
}
],
"label.average-visit-time": [
{
"type": 0,
"value": "平均造訪時間"
}
],
"label.back": [
{
"type": 0,
@@ -155,6 +149,12 @@
"value": "全部清除"
}
],
"label.compare": [
{
"type": 0,
"value": "Compare"
}
],
"label.confirm": [
{
"type": 0,
@@ -179,6 +179,12 @@
"value": "繼續"
}
],
"label.count": [
{
"type": 0,
"value": "Count"
}
],
"label.countries": [
{
"type": 0,
@@ -227,6 +233,12 @@
"value": "Created By"
}
],
"label.current": [
{
"type": 0,
"value": "Current"
}
],
"label.current-password": [
{
"type": 0,
@@ -383,6 +395,18 @@
"value": "啟用分享網址"
}
],
"label.end-step": [
{
"type": 0,
"value": "End Step"
}
],
"label.entry": [
{
"type": 0,
"value": "Entry URL"
}
],
"label.event": [
{
"type": 0,
@@ -401,6 +425,12 @@
"value": "事件"
}
],
"label.exit": [
{
"type": 0,
"value": "Exit URL"
}
],
"label.false": [
{
"type": 0,
@@ -455,6 +485,24 @@
"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,
@@ -467,6 +515,18 @@
"value": "大於或等於"
}
],
"label.host": [
{
"type": 0,
"value": "Host"
}
],
"label.hosts": [
{
"type": 0,
"value": "Hosts"
}
],
"label.insights": [
{
"type": 0,
@@ -515,6 +575,18 @@
"value": "加入團隊"
}
],
"label.journey": [
{
"type": 0,
"value": "Journey"
}
],
"label.journey-description": [
{
"type": 0,
"value": "Understand how users nagivate through your website."
}
],
"label.language": [
{
"type": 0,
@@ -617,6 +689,12 @@
"value": "Manage"
}
],
"label.manager": [
{
"type": 0,
"value": "Manager"
}
],
"label.max": [
{
"type": 0,
@@ -797,12 +875,36 @@
"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.property": [
{
"type": 0,
"value": "Property"
}
],
"label.queries": [
{
"type": 0,
@@ -989,6 +1091,12 @@
"value": "單日"
}
],
"label.start-step": [
{
"type": 0,
"value": "Start Step"
}
],
"label.steps": [
{
"type": 0,
@@ -1019,6 +1127,12 @@
"value": "團隊 ID"
}
],
"label.team-manager": [
{
"type": 0,
"value": "Team manager"
}
],
"label.team-member": [
{
"type": 0,
@@ -1253,6 +1367,12 @@
"value": "Views per visit"
}
],
"label.visit-duration": [
{
"type": 0,
"value": "平均造訪時間"
}
],
"label.visitors": [
{
"type": 0,
@@ -1323,6 +1443,12 @@
"value": " 個活躍的訪客"
}
],
"message.collected-data": [
{
"type": 0,
"value": "Collected data"
}
],
"message.confirm-delete": [
{
"type": 0,

View File

@@ -27,7 +27,7 @@ export function App({ children }) {
{children}
<UpdateNotice user={user} config={config} />
{process.env.NODE_ENV === 'production' && !pathname.includes('/share/') && (
<Script src={`${process.env.basePath}/telemetry.js`} />
<Script src={`${process.env.basePath || ''}/telemetry.js`} />
)}
</>
);

View File

@@ -29,6 +29,7 @@ export function TestConsole({ websiteId }: { websiteId: string }) {
boolean: true,
booleanError: 'true',
time: new Date(),
user: `user${Math.round(Math.random() * 10)}`,
number: 1,
number2: Math.random() * 100,
time2: new Date().toISOString(),
@@ -80,7 +81,7 @@ export function TestConsole({ websiteId }: { websiteId: string }) {
<Script
async
data-website-id={websiteId}
src={`${process.env.basePath}/script.js`}
src={`${process.env.basePath || ''}/script.js`}
data-cache="true"
/>
<div className={styles.actions}>

View File

@@ -19,15 +19,3 @@
height: calc(100vh - 60px);
overflow-y: auto;
}
.content {
flex: 1;
display: flex;
flex-direction: column;
position: relative;
width: 100%;
max-width: 1320px;
margin: 0 auto;
padding: 0 20px;
min-height: calc(100vh - 60px);
}

View File

@@ -5,6 +5,10 @@ import Page from 'components/layout/Page';
import styles from './layout.module.css';
export default function ({ children }) {
if (process.env.DISABLE_UI) {
return null;
}
return (
<App>
<main className={styles.layout}>

View File

@@ -7,11 +7,11 @@ import styles from './DateRangeSetting.module.css';
export function DateRangeSetting() {
const { formatMessage, labels } = useMessages();
const [dateRange, setDateRange] = useDateRange();
const { dateRange, saveDateRange } = useDateRange();
const { value } = dateRange;
const handleChange = (value: string | DateRange) => setDateRange(value);
const handleReset = () => setDateRange(DEFAULT_DATE_RANGE);
const handleChange = (value: string | DateRange) => saveDateRange(value);
const handleReset = () => saveDateRange(DEFAULT_DATE_RANGE);
return (
<Flexbox gap={10} width={300}>

View File

@@ -1,16 +1,23 @@
import { useReports } from 'components/hooks';
import ReportsTable from './ReportsTable';
import DataTable from 'components/common/DataTable';
import { ReactNode } from 'react';
export default function ReportsDataTable({
websiteId,
teamId,
children,
}: {
websiteId?: string;
teamId?: string;
children?: ReactNode;
}) {
const queryResult = useReports({ websiteId, teamId });
if (queryResult?.result?.data?.length === 0) {
return children;
}
return (
<DataTable queryResult={queryResult}>
{({ data }) => <ReportsTable data={data} showDomain={!websiteId} />}

View File

@@ -2,8 +2,11 @@
import { Metadata } from 'next';
import ReportsHeader from './ReportsHeader';
import ReportsDataTable from './ReportsDataTable';
import { useTeamUrl } from 'components/hooks';
export default function ReportsPage() {
const { teamId } = useTeamUrl();
export default function ReportsPage({ teamId }: { teamId: string }) {
return (
<>
<ReportsHeader />

View File

@@ -0,0 +1,3 @@
.dropdown div {
max-height: 300px;
}

View File

@@ -5,6 +5,7 @@ import DateFilter from 'components/input/DateFilter';
import WebsiteSelect from 'components/input/WebsiteSelect';
import { useMessages, useTeamUrl, useWebsite } from 'components/hooks';
import { ReportContext } from './Report';
import styles from './BaseParameters.module.css';
export interface BaseParametersProps {
showWebsiteSelect?: boolean;
@@ -48,7 +49,7 @@ export function BaseParameters({
</FormRow>
)}
{showDateSelect && (
<FormRow label={formatMessage(labels.dateRange)}>
<FormRow label={formatMessage(labels.dateRange)} className={styles.dropdown}>
{allowDateSelect && (
<DateFilter
value={value}

View File

@@ -6,11 +6,24 @@
.item {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 12px;
width: 100%;
flex-wrap: nowrap;
padding: 12px;
border: 1px solid var(--base400);
border-radius: var(--border-radius);
box-shadow: 1px 1px 1px var(--base400);
}
.value {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
flex: 1;
}
.icon,
.close {
height: 1.5rem;
}

View File

@@ -24,18 +24,21 @@ export function ParameterList({ children }: ParameterListProps) {
const Item = ({
children,
className,
icon,
onClick,
onRemove,
}: {
children?: ReactNode;
className?: string;
icon?: ReactNode;
onClick?: () => void;
onRemove?: () => void;
}) => {
return (
<div className={classNames(styles.item, className)} onClick={onClick}>
{children}
<Icon onClick={onRemove}>
{icon && <Icon className={styles.icon}>{icon}</Icon>}
<div className={styles.value}>{children}</div>
<Icon className={styles.close} onClick={onRemove}>
<Icons.Close />
</Icon>
</div>

View File

@@ -3,4 +3,5 @@
grid-template-rows: max-content 1fr;
grid-template-columns: max-content 1fr;
margin-bottom: 60px;
height: 90vh;
}

View File

@@ -1,5 +1,5 @@
.body {
padding-inline-start: 20px;
grid-row: 2/3;
grid-row: 2 / 3;
grid-column: 2 / 3;
}

View File

@@ -1,6 +1,6 @@
import styles from './ReportBody.module.css';
import { useContext } from 'react';
import { ReportContext } from './Report';
import styles from './ReportBody.module.css';
export function ReportBody({ children }) {
const { report } = useContext(ReportContext);

View File

@@ -60,7 +60,7 @@ export function ReportHeader({ icon }) {
<div className={styles.type}>
<Breadcrumb
data={[
{ label: formatMessage(labels.reports), url: '/reports' },
{ label: formatMessage(labels.reports), url: renderTeamUrl('/reports') },
{
label: formatMessage(
labels[Object.keys(REPORT_TYPES).find(key => REPORT_TYPES[key] === report?.type)],

View File

@@ -1,7 +1,38 @@
.menu {
position: relative;
width: 300px;
padding-top: 20px;
padding-inline-end: 20px;
border-inline-end: 1px solid var(--base300);
grid-row: 2 / 3;
grid-column: 1 / 2;
}
.button {
position: absolute;
top: 0;
right: 0;
display: flex;
place-content: center;
border: 1px solid var(--base400);
border-right: 0;
width: 30px;
padding: 5px;
cursor: pointer;
border-radius: 4px 0 0 4px;
z-index: 1;
}
.button:hover {
background: var(--base75);
}
.menu.collapsed {
width: 0;
padding: 0;
}
.menu.collapsed .button {
right: 0;
border-radius: 4px 0 0 4px;
}

View File

@@ -1,15 +1,27 @@
import styles from './ReportMenu.module.css';
import { useContext } from 'react';
import { useContext, useState } from 'react';
import { ReportContext } from './Report';
import styles from './ReportMenu.module.css';
import { Icon, Icons } from 'react-basics';
import classNames from 'classnames';
export function ReportMenu({ children }) {
const [collapsed, setCollapsed] = useState(false);
const { report } = useContext(ReportContext);
if (!report) {
return null;
}
return <div className={styles.menu}>{children}</div>;
return (
<div className={classNames(styles.menu, collapsed && styles.collapsed)}>
<div className={styles.button} onClick={() => setCollapsed(!collapsed)}>
<Icon rotate={collapsed ? -90 : 90}>
<Icons.ChevronDown />
</Icon>
</div>
{!collapsed && children}
</div>
);
}
export default ReportMenu;

View File

@@ -1,10 +1,13 @@
'use client';
import FunnelReport from '../funnel/FunnelReport';
import { useReport } from 'components/hooks';
import EventDataReport from '../event-data/EventDataReport';
import FunnelReport from '../funnel/FunnelReport';
import GoalReport from '../goals/GoalsReport';
import InsightsReport from '../insights/InsightsReport';
import JourneyReport from '../journey/JourneyReport';
import RetentionReport from '../retention/RetentionReport';
import UTMReport from '../utm/UTMReport';
import { useReport } from 'components/hooks';
import RevenueReport from '../revenue/RevenueReport';
const reports = {
funnel: FunnelReport,
@@ -12,6 +15,9 @@ const reports = {
insights: InsightsReport,
retention: RetentionReport,
utm: UTMReport,
goals: GoalReport,
journey: JourneyReport,
revenue: RevenueReport,
};
export default function ReportPage({ reportId }: { reportId: string }) {

View File

@@ -1,12 +1,14 @@
import Link from 'next/link';
import { Button, Icons, Text, Icon } from 'react-basics';
import PageHeader from 'components/layout/PageHeader';
import Funnel from 'assets/funnel.svg';
import Lightbulb from 'assets/lightbulb.svg';
import Magnet from 'assets/magnet.svg';
import Path from 'assets/path.svg';
import Tag from 'assets/tag.svg';
import styles from './ReportTemplates.module.css';
import Target from 'assets/target.svg';
import { useMessages, useTeamUrl } from 'components/hooks';
import PageHeader from 'components/layout/PageHeader';
import Link from 'next/link';
import { Button, Icon, Icons, Text } from 'react-basics';
import styles from './ReportTemplates.module.css';
export function ReportTemplates({ showHeader = true }: { showHeader?: boolean }) {
const { formatMessage, labels } = useMessages();
@@ -37,6 +39,24 @@ export function ReportTemplates({ showHeader = true }: { showHeader?: boolean })
url: renderTeamUrl('/reports/utm'),
icon: <Tag />,
},
{
title: formatMessage(labels.goals),
description: formatMessage(labels.goalsDescription),
url: renderTeamUrl('/reports/goals'),
icon: <Target />,
},
{
title: formatMessage(labels.journey),
description: formatMessage(labels.journeyDescription),
url: renderTeamUrl('/reports/journey'),
icon: <Path />,
},
{
title: formatMessage(labels.revenue),
description: formatMessage(labels.revenueDescription),
url: renderTeamUrl('/reports/revenue'),
icon: <Path />,
},
];
return (

View File

@@ -5,10 +5,6 @@
width: 100%;
}
.type {
color: var(--base700);
}
.value {
display: flex;
align-self: center;

View File

@@ -93,12 +93,10 @@ export function FunnelParameters() {
<PopupTrigger key={index}>
<ParameterList.Item
className={styles.item}
icon={step.type === 'url' ? <Icons.Eye /> : <Icons.Bolt />}
onRemove={() => handleRemoveStep(index)}
>
<div className={styles.value}>
<div className={styles.type}>
<Icon>{step.type === 'url' ? <Icons.Eye /> : <Icons.Bolt />}</Icon>
</div>
<div>{step.value}</div>
</div>
</ParameterList.Item>

View File

@@ -0,0 +1,7 @@
.dropdown {
width: 140px;
}
.input {
width: 200px;
}

View File

@@ -0,0 +1,143 @@
import { useMessages } from 'components/hooks';
import { useState } from 'react';
import { Button, Dropdown, Flexbox, FormRow, Item, TextField } from 'react-basics';
import styles from './GoalsAddForm.module.css';
export function GoalsAddForm({
type: defaultType = 'url',
value: defaultValue = '',
property: defaultProperty = '',
operator: defaultAggregae = null,
goal: defaultGoal = 10,
onChange,
}: {
type?: string;
value?: string;
operator?: string;
property?: string;
goal?: number;
onChange?: (step: {
type: string;
value: string;
goal: number;
operator?: string;
property?: string;
}) => void;
}) {
const [type, setType] = useState(defaultType);
const [value, setValue] = useState(defaultValue);
const [operator, setOperator] = useState(defaultAggregae);
const [property, setProperty] = useState(defaultProperty);
const [goal, setGoal] = useState(defaultGoal);
const { formatMessage, labels } = useMessages();
const items = [
{ label: formatMessage(labels.url), value: 'url' },
{ label: formatMessage(labels.event), value: 'event' },
{ label: formatMessage(labels.eventData), value: 'event-data' },
];
const operators = [
{ label: formatMessage(labels.count), value: 'count' },
{ label: formatMessage(labels.average), value: 'average' },
{ label: formatMessage(labels.sum), value: 'sum' },
];
const isDisabled = !type || !value;
const handleSave = () => {
onChange(
type === 'event-data' ? { type, value, goal, operator, property } : { type, value, goal },
);
setValue('');
setProperty('');
setGoal(10);
};
const handleChange = (e, set) => {
set(e.target.value);
};
const handleKeyDown = e => {
if (e.key === 'Enter') {
e.stopPropagation();
handleSave();
}
};
const renderTypeValue = (value: any) => {
return items.find(item => item.value === value)?.label;
};
const renderoperatorValue = (value: any) => {
return operators.find(item => item.value === value)?.label;
};
return (
<Flexbox direction="column" gap={10}>
<FormRow label={formatMessage(defaultValue ? labels.update : labels.add)}>
<Flexbox gap={10}>
<Dropdown
className={styles.dropdown}
items={items}
value={type}
renderValue={renderTypeValue}
onChange={(value: any) => setType(value)}
>
{({ value, label }) => {
return <Item key={value}>{label}</Item>;
}}
</Dropdown>
<TextField
className={styles.input}
value={value}
onChange={e => handleChange(e, setValue)}
autoFocus={true}
autoComplete="off"
onKeyDown={handleKeyDown}
/>
</Flexbox>
</FormRow>
{type === 'event-data' && (
<FormRow label={formatMessage(labels.property)}>
<Flexbox gap={10}>
<Dropdown
className={styles.dropdown}
items={operators}
value={operator}
renderValue={renderoperatorValue}
onChange={(value: any) => setOperator(value)}
>
{({ value, label }) => {
return <Item key={value}>{label}</Item>;
}}
</Dropdown>
<TextField
className={styles.input}
value={property}
onChange={e => handleChange(e, setProperty)}
autoFocus={true}
autoComplete="off"
onKeyDown={handleKeyDown}
/>
</Flexbox>
</FormRow>
)}
<FormRow label={formatMessage(labels.goal)}>
<Flexbox gap={10}>
<TextField
className={styles.input}
value={goal?.toString()}
onChange={e => handleChange(e, setGoal)}
autoComplete="off"
onKeyDown={handleKeyDown}
/>
</Flexbox>
</FormRow>
<FormRow>
<Button variant="primary" onClick={handleSave} disabled={isDisabled}>
{formatMessage(defaultValue ? labels.update : labels.add)}
</Button>
</FormRow>
</Flexbox>
);
}
export default GoalsAddForm;

View File

@@ -0,0 +1,95 @@
.chart {
display: grid;
gap: 30px;
}
.goal {
padding-bottom: 40px;
border-bottom: 1px solid var(--base400);
}
.goal:last-child {
border: 0;
}
.card {
display: grid;
gap: 20px;
margin-top: 14px;
}
.header {
display: flex;
flex-direction: column;
gap: 20px;
}
.label {
color: var(--base600);
font-weight: 700;
text-transform: uppercase;
}
.item {
font-size: 20px;
color: var(--base900);
font-weight: 700;
}
.metric {
color: var(--base700);
display: flex;
justify-content: space-between;
gap: 10px;
margin: 10px 0;
text-transform: lowercase;
}
.value {
color: var(--base900);
font-size: 24px;
font-weight: 900;
margin-right: 10px;
}
.percent {
font-size: 20px;
font-weight: 700;
align-self: flex-end;
}
.total {
color: var(--base700);
}
.bar {
display: flex;
align-items: center;
justify-content: flex-end;
background: var(--base900);
height: 10px;
border-radius: 5px;
overflow: hidden;
position: relative;
}
.bar.level1 {
background: var(--red800);
}
.bar.level2 {
background: var(--orange200);
}
.bar.level3 {
background: var(--orange400);
}
.bar.level4 {
background: var(--orange600);
}
.bar.level5 {
background: var(--green600);
}
.track {
background-color: var(--base100);
border-radius: 5px;
}

View File

@@ -0,0 +1,74 @@
import { useContext } from 'react';
import classNames from 'classnames';
import { useMessages } from 'components/hooks';
import { ReportContext } from '../[reportId]/Report';
import { formatLongNumber } from 'lib/format';
import styles from './GoalsChart.module.css';
export function GoalsChart({ className }: { className?: string; isLoading?: boolean }) {
const { report } = useContext(ReportContext);
const { formatMessage, labels } = useMessages();
const { data } = report || {};
const getLabel = type => {
let label = '';
switch (type) {
case 'url':
label = labels.viewedPage;
break;
case 'event':
label = labels.triggeredEvent;
break;
default:
label = labels.collectedData;
break;
}
return label;
};
return (
<div className={classNames(styles.chart, className)}>
{data?.map(({ type, value, goal, result, property, operator }, index: number) => {
const percent = result > goal ? 100 : (result / goal) * 100;
return (
<div key={index} className={styles.goal}>
<div className={styles.card}>
<div className={styles.header}>
<span className={styles.label}>{formatMessage(getLabel(type))}</span>
<span className={styles.item}>{`${value}${
type === 'event-data' ? `:(${operator}):${property}` : ''
}`}</span>
</div>
<div className={styles.track}>
<div
className={classNames(
classNames(styles.bar, {
[styles.level1]: percent <= 20,
[styles.level2]: percent > 20 && percent <= 40,
[styles.level3]: percent > 40 && percent <= 60,
[styles.level4]: percent > 60 && percent <= 80,
[styles.level5]: percent > 80,
}),
)}
style={{ width: `${percent}%` }}
></div>
</div>
<div className={styles.metric}>
<div className={styles.value}>
{formatLongNumber(result)}
<span className={styles.total}> / {formatLongNumber(goal)}</span>
</div>
<div className={styles.percent}>{((result / goal) * 100).toFixed(2)}%</div>
</div>
</div>
</div>
);
})}
</div>
);
}
export default GoalsChart;

View File

@@ -0,0 +1,25 @@
.value {
width: 100%;
margin-bottom: 8px;
font-weight: 600;
}
.eventData {
color: var(--orange900);
background-color: var(--orange100);
font-size: 12px;
font-weight: 900;
padding: 2px 8px;
border-radius: 5px;
width: fit-content;
}
.goal {
color: var(--blue900);
background-color: var(--blue100);
font-size: 12px;
font-weight: 900;
padding: 2px 8px;
border-radius: 5px;
width: fit-content;
}

View File

@@ -0,0 +1,141 @@
import { useMessages } from 'components/hooks';
import Icons from 'components/icons';
import { formatNumber } from 'lib/format';
import { useContext } from 'react';
import {
Button,
Flexbox,
Form,
FormButtons,
FormRow,
Icon,
Popup,
PopupTrigger,
SubmitButton,
} from 'react-basics';
import BaseParameters from '../[reportId]/BaseParameters';
import ParameterList from '../[reportId]/ParameterList';
import PopupForm from '../[reportId]/PopupForm';
import { ReportContext } from '../[reportId]/Report';
import GoalsAddForm from './GoalsAddForm';
import styles from './GoalsParameters.module.css';
export function GoalsParameters() {
const { report, runReport, updateReport, isRunning } = useContext(ReportContext);
const { formatMessage, labels } = useMessages();
const { id, parameters } = report || {};
const { websiteId, dateRange, goals } = parameters || {};
const queryDisabled = !websiteId || !dateRange || goals?.length < 1;
const handleSubmit = (data: any, e: any) => {
e.stopPropagation();
e.preventDefault();
if (!queryDisabled) {
runReport(data);
}
};
const handleAddGoals = (goal: { type: string; value: string }) => {
updateReport({ parameters: { goals: parameters.goals.concat(goal) } });
};
const handleUpdateGoals = (
close: () => void,
index: number,
goal: { type: string; value: string },
) => {
const goals = [...parameters.goals];
goals[index] = goal;
updateReport({ parameters: { goals } });
close();
};
const handleRemoveGoals = (index: number) => {
const goals = [...parameters.goals];
delete goals[index];
updateReport({ parameters: { goals: goals.filter(n => n) } });
};
const AddGoalsButton = () => {
return (
<PopupTrigger>
<Button>
<Icon>
<Icons.Plus />
</Icon>
</Button>
<Popup alignment="start">
<PopupForm>
<GoalsAddForm onChange={handleAddGoals} />
</PopupForm>
</Popup>
</PopupTrigger>
);
};
return (
<Form values={parameters} onSubmit={handleSubmit} preventSubmit={true}>
<BaseParameters allowWebsiteSelect={!id} />
<FormRow label={formatMessage(labels.goals)} action={<AddGoalsButton />}>
<ParameterList>
{goals.map(
(
goal: {
type: string;
value: string;
goal: number;
operator?: string;
property?: string;
},
index: number,
) => {
return (
<PopupTrigger key={index}>
<ParameterList.Item
icon={goal.type === 'url' ? <Icons.Eye /> : <Icons.Bolt />}
onRemove={() => handleRemoveGoals(index)}
>
<Flexbox direction="column" gap={5}>
<div className={styles.value}>{goal.value}</div>
{goal.type === 'event-data' && (
<div className={styles.eventData}>
{formatMessage(labels[goal.operator])}: {goal.property}
</div>
)}
<div className={styles.goal}>
{formatMessage(labels.goal)}: {formatNumber(goal.goal)}
</div>
</Flexbox>
</ParameterList.Item>
<Popup alignment="start">
{(close: () => void) => (
<PopupForm>
<GoalsAddForm
type={goal.type}
value={goal.value}
goal={goal.goal}
operator={goal.operator}
property={goal.property}
onChange={handleUpdateGoals.bind(null, close, index)}
/>
</PopupForm>
)}
</Popup>
</PopupTrigger>
);
},
)}
</ParameterList>
</FormRow>
<FormButtons>
<SubmitButton variant="primary" disabled={queryDisabled} isLoading={isRunning}>
{formatMessage(labels.runQuery)}
</SubmitButton>
</FormButtons>
</Form>
);
}
export default GoalsParameters;

View File

@@ -0,0 +1,10 @@
.filters {
display: flex;
flex-direction: column;
justify-content: space-between;
border: 1px solid var(--base400);
border-radius: var(--border-radius);
line-height: 32px;
padding: 10px;
overflow: hidden;
}

View File

@@ -0,0 +1,27 @@
import GoalsChart from './GoalsChart';
import GoalsParameters from './GoalsParameters';
import Report from '../[reportId]/Report';
import ReportHeader from '../[reportId]/ReportHeader';
import ReportMenu from '../[reportId]/ReportMenu';
import ReportBody from '../[reportId]/ReportBody';
import Target from 'assets/target.svg';
import { REPORT_TYPES } from 'lib/constants';
const defaultParameters = {
type: REPORT_TYPES.goals,
parameters: { goals: [] },
};
export default function GoalsReport({ reportId }: { reportId?: string }) {
return (
<Report reportId={reportId} defaultParameters={defaultParameters}>
<ReportHeader icon={<Target />} />
<ReportMenu>
<GoalsParameters />
</ReportMenu>
<ReportBody>
<GoalsChart />
</ReportBody>
</Report>
);
}

View File

@@ -0,0 +1,6 @@
'use client';
import GoalReport from './GoalsReport';
export default function GoalReportPage() {
return <GoalReport />;
}

View File

@@ -0,0 +1,10 @@
import GoalsReportPage from './GoalsReportPage';
import { Metadata } from 'next';
export default function () {
return <GoalsReportPage />;
}
export const metadata: Metadata = {
title: 'Goals Report',
};

View File

@@ -3,6 +3,7 @@ import { GridTable, GridColumn } from 'react-basics';
import { useFormat, useMessages } from 'components/hooks';
import { ReportContext } from '../[reportId]/Report';
import EmptyPlaceholder from 'components/common/EmptyPlaceholder';
import { formatShortTime } from 'lib/format';
export function InsightsTable() {
const [fields, setFields] = useState([]);
@@ -31,6 +32,12 @@ export function InsightsTable() {
</GridColumn>
);
})}
<GridColumn name="views" label={formatMessage(labels.views)} width="100px" alignment="end">
{row => row?.views?.toLocaleString()}
</GridColumn>
<GridColumn name="visits" label={formatMessage(labels.visits)} width="100px" alignment="end">
{row => row?.visits?.toLocaleString()}
</GridColumn>
<GridColumn
name="visitors"
label={formatMessage(labels.visitors)}
@@ -39,8 +46,27 @@ export function InsightsTable() {
>
{row => row?.visitors?.toLocaleString()}
</GridColumn>
<GridColumn name="views" label={formatMessage(labels.views)} width="100px" alignment="end">
{row => row?.views?.toLocaleString()}
<GridColumn
name="bounceRate"
label={formatMessage(labels.bounceRate)}
width="100px"
alignment="end"
>
{row => {
const n = (Math.min(row?.visits, row?.bounces) / row?.visits) * 100;
return Math.round(+n) + '%';
}}
</GridColumn>
<GridColumn
name="visitDuration"
label={formatMessage(labels.visitDuration)}
width="100px"
alignment="end"
>
{row => {
const n = row?.totaltime / row?.visits;
return `${+n < 0 ? '-' : ''}${formatShortTime(Math.abs(~~n), ['m', 's'], ' ')}`;
}}
</GridColumn>
</GridTable>
);

View File

@@ -0,0 +1,63 @@
import { useContext } from 'react';
import { useMessages } from 'components/hooks';
import {
Dropdown,
Form,
FormButtons,
FormInput,
FormRow,
Item,
SubmitButton,
TextField,
} from 'react-basics';
import { ReportContext } from '../[reportId]/Report';
import BaseParameters from '../[reportId]/BaseParameters';
export function JourneyParameters() {
const { report, runReport, isRunning } = useContext(ReportContext);
const { formatMessage, labels } = useMessages();
const { id, parameters } = report || {};
const { websiteId, dateRange, steps } = parameters || {};
const queryDisabled = !websiteId || !dateRange || !steps;
const handleSubmit = (data: any, e: any) => {
e.stopPropagation();
e.preventDefault();
if (!queryDisabled) {
runReport(data);
}
};
return (
<Form values={parameters} onSubmit={handleSubmit} preventSubmit={true}>
<BaseParameters showDateSelect={true} allowWebsiteSelect={!id} />
<FormRow label={formatMessage(labels.steps)}>
<FormInput
name="steps"
rules={{ required: formatMessage(labels.required), pattern: /[0-9]+/, min: 3, max: 7 }}
>
<Dropdown items={[3, 4, 5, 6, 7]}>{item => <Item key={item}>{item}</Item>}</Dropdown>
</FormInput>
</FormRow>
<FormRow label={formatMessage(labels.startStep)}>
<FormInput name="startStep">
<TextField autoComplete="off" />
</FormInput>
</FormRow>
<FormRow label={formatMessage(labels.endStep)}>
<FormInput name="endStep">
<TextField autoComplete="off" />
</FormInput>
</FormRow>
<FormButtons>
<SubmitButton variant="primary" disabled={queryDisabled} isLoading={isRunning}>
{formatMessage(labels.runQuery)}
</SubmitButton>
</FormButtons>
</Form>
);
}
export default JourneyParameters;

View File

@@ -0,0 +1,28 @@
'use client';
import Report from '../[reportId]/Report';
import ReportHeader from '../[reportId]/ReportHeader';
import ReportMenu from '../[reportId]/ReportMenu';
import ReportBody from '../[reportId]/ReportBody';
import JourneyParameters from './JourneyParameters';
import JourneyView from './JourneyView';
import Path from 'assets/path.svg';
import { REPORT_TYPES } from 'lib/constants';
const defaultParameters = {
type: REPORT_TYPES.journey,
parameters: { steps: 5 },
};
export default function JourneyReport({ reportId }: { reportId?: string }) {
return (
<Report reportId={reportId} defaultParameters={defaultParameters}>
<ReportHeader icon={<Path />} />
<ReportMenu>
<JourneyParameters />
</ReportMenu>
<ReportBody>
<JourneyView />
</ReportBody>
</Report>
);
}

View File

@@ -0,0 +1,5 @@
import JourneyReport from './JourneyReport';
export default function JourneyReportPage() {
return <JourneyReport />;
}

View File

@@ -0,0 +1,274 @@
.container {
width: 100%;
height: 100%;
position: relative;
--journey-line-color: var(--base600);
--journey-active-color: var(--primary400);
--journey-faded-color: var(--base300);
}
.view {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
overflow: auto;
gap: 100px;
padding-right: 20px;
}
.header {
margin-bottom: 20px;
}
.stats {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
width: 100%;
height: 40px;
}
.visitors {
font-weight: 600;
font-size: 16px;
text-transform: lowercase;
}
.dropoff {
font-weight: 600;
color: var(--blue800);
background: var(--blue100);
padding: 4px 8px;
border-radius: 5px;
}
.num {
display: flex;
align-items: center;
justify-content: center;
border-radius: 100%;
width: 50px;
height: 50px;
font-size: 16px;
font-weight: 700;
color: var(--base100);
background: var(--base800);
z-index: 1;
margin: 0 auto 20px;
}
.column {
display: flex;
flex-direction: column;
}
.nodes {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
}
.wrapper {
padding-bottom: 10px;
}
.node {
position: relative;
cursor: pointer;
padding: 10px 20px;
background: var(--base75);
border-radius: 5px;
display: flex;
align-items: center;
justify-content: space-between;
width: 300px;
max-width: 300px;
height: 60px;
max-height: 60px;
}
.node:hover:not(.selected) {
color: var(--base900);
background: var(--base100);
}
.node.selected {
color: var(--base75);
background: var(--base900);
font-weight: 400;
}
.node.active {
color: var(--light50);
background: var(--primary400);
}
.node.selected .count {
color: var(--base50);
background: var(--base800);
}
.node.selected.active .count {
background: var(--primary600);
}
.name {
font-weight: 500;
}
.count {
border-radius: 4px;
padding: 5px 10px;
background: var(--base200);
}
.line {
position: absolute;
bottom: 0;
left: -100px;
width: 100px;
pointer-events: none;
}
.line.up {
bottom: 0;
}
.line.down {
top: 0;
}
.segment {
position: absolute;
}
.start {
left: 0;
width: 50px;
height: 30px;
border: 0;
}
.mid {
top: 60px;
width: 50px;
border-right: 3px solid var(--journey-line-color);
}
.end {
width: 50px;
height: 30px;
border: 0;
}
.up .start {
top: 30px;
border-top-right-radius: 100%;
border-top: 3px solid var(--journey-line-color);
border-right: 3px solid var(--journey-line-color);
}
.up .end {
width: 52px;
bottom: 27px;
right: 0;
border-bottom-left-radius: 100%;
border-bottom: 3px solid var(--journey-line-color);
border-left: 3px solid var(--journey-line-color);
}
.down .start {
bottom: 27px;
border-bottom-right-radius: 100%;
border-bottom: 3px solid var(--journey-line-color);
border-right: 3px solid var(--journey-line-color);
}
.down .end {
width: 52px;
top: 30px;
right: 0;
border-top-left-radius: 100%;
border-top: 3px solid var(--journey-line-color);
border-left: 3px solid var(--journey-line-color);
}
.flat .start {
left: 0;
top: 30px;
border-top: 3px solid var(--journey-line-color);
}
.flat .end {
right: 0;
top: 30px;
border-top: 3px solid var(--journey-line-color);
}
.start:before,
.end:before {
content: '';
position: absolute;
border-radius: 100%;
border: 3px solid var(--journey-line-color);
background: var(--light50);
width: 14px;
height: 14px;
}
.line:not(.active) .start:before,
.line:not(.active) .end:before {
display: none;
}
.up .start:before {
left: -8px;
top: -8px;
}
.up .end:before {
right: -8px;
bottom: -8px;
}
.down .start:before {
left: -8px;
bottom: -8px;
}
.down .end:before {
right: -8px;
top: -8px;
}
.flat .start:before {
left: -8px;
top: -8px;
}
.flat .end:before {
right: -8px;
top: -8px;
}
.line.active .segment,
.line.active .segment:before {
border-color: var(--journey-active-color);
z-index: 1;
}
.column.active .line:not(.active) .segment {
border-color: var(--journey-faded-color);
}
.column.active .line:not(.active) .segment:before {
display: none;
}

View File

@@ -0,0 +1,251 @@
import { useContext, useMemo, useState } from 'react';
import { TooltipPopup } from 'react-basics';
import { firstBy } from 'thenby';
import classNames from 'classnames';
import { useEscapeKey, useMessages } from 'components/hooks';
import { objectToArray } from 'lib/data';
import { ReportContext } from '../[reportId]/Report';
import styles from './JourneyView.module.css';
import { formatLongNumber } from 'lib/format';
const NODE_HEIGHT = 60;
const NODE_GAP = 10;
const LINE_WIDTH = 3;
export default function JourneyView() {
const [selectedNode, setSelectedNode] = useState(null);
const [activeNode, setActiveNode] = useState(null);
const { report } = useContext(ReportContext);
const { data, parameters } = report || {};
const { formatMessage, labels } = useMessages();
useEscapeKey(() => setSelectedNode(null));
const columns = useMemo(() => {
if (!data) {
return [];
}
const selectedPaths = selectedNode?.paths ?? [];
const activePaths = activeNode?.paths ?? [];
const columns = [];
for (let columnIndex = 0; columnIndex < +parameters.steps; columnIndex++) {
const nodes = {};
data.forEach(({ items, count }: any, nodeIndex: any) => {
const name = items[columnIndex];
if (name) {
const selected = !!selectedPaths.find(({ items }) => items[columnIndex] === name);
const active = selected && !!activePaths.find(({ items }) => items[columnIndex] === name);
if (!nodes[name]) {
const paths = data.filter(({ items }) => items[columnIndex] === name);
nodes[name] = {
name,
count,
totalCount: count,
nodeIndex,
columnIndex,
selected,
active,
paths,
pathMap: paths.map(({ items, count }) => ({
[`${columnIndex}:${items.join(':')}`]: count,
})),
};
} else {
nodes[name].totalCount += count;
}
}
});
columns.push({
nodes: objectToArray(nodes).sort(firstBy('total', -1)),
});
}
columns.forEach((column, columnIndex) => {
const nodes = column.nodes.map((currentNode, currentNodeIndex) => {
const previousNodes = columns[columnIndex - 1]?.nodes;
let selectedCount = previousNodes ? 0 : currentNode.totalCount;
let activeCount = selectedCount;
const lines =
previousNodes?.reduce((arr: any[][], previousNode: any, previousNodeIndex: number) => {
const fromCount = selectedNode?.paths.reduce((sum, path) => {
if (
previousNode.name === path.items[columnIndex - 1] &&
currentNode.name === path.items[columnIndex]
) {
sum += path.count;
}
return sum;
}, 0);
if (currentNode.selected && previousNode.selected && fromCount) {
arr.push([previousNodeIndex, currentNodeIndex]);
selectedCount += fromCount;
if (previousNode.active) {
activeCount += fromCount;
}
}
return arr;
}, []) || [];
return { ...currentNode, selectedCount, activeCount, lines };
});
const visitorCount = nodes.reduce(
(sum: number, { selected, selectedCount, active, activeCount, totalCount }) => {
if (!selectedNode) {
sum += totalCount;
} else if (!activeNode && selectedNode && selected) {
sum += selectedCount;
} else if (activeNode && active) {
sum += activeCount;
}
return sum;
},
0,
);
const previousTotal = columns[columnIndex - 1]?.visitorCount ?? 0;
const dropOff =
previousTotal > 0 ? ((visitorCount - previousTotal) / previousTotal) * 100 : 0;
Object.assign(column, { nodes, visitorCount, dropOff });
});
return columns;
}, [data, selectedNode, activeNode]);
const handleClick = (name: string, columnIndex: number, paths: any[]) => {
if (name !== selectedNode?.name || columnIndex !== selectedNode?.columnIndex) {
setSelectedNode({ name, columnIndex, paths });
} else {
setSelectedNode(null);
}
setActiveNode(null);
};
if (!data) {
return null;
}
return (
<div className={styles.container}>
<div className={styles.view}>
{columns.map((column, columnIndex) => {
const dropOffPercent = `${~~column.dropOff}%`;
return (
<div
key={columnIndex}
className={classNames(styles.column, {
[styles.selected]: selectedNode,
[styles.active]: activeNode,
})}
>
<div className={styles.header}>
<div className={styles.num}>{columnIndex + 1}</div>
<div className={styles.stats}>
<div className={styles.visitors} title={column.visitorCount}>
{formatLongNumber(column.visitorCount)} {formatMessage(labels.visitors)}
</div>
{columnIndex > 0 && <div className={styles.dropoff}>{dropOffPercent}</div>}
</div>
</div>
<div className={styles.nodes}>
{column.nodes.map(
({
name,
totalCount,
selected,
active,
paths,
activeCount,
selectedCount,
lines,
}) => {
const nodeCount = selected
? active
? activeCount
: selectedCount
: totalCount;
return (
<div
key={name}
className={styles.wrapper}
onMouseEnter={() => selected && setActiveNode({ name, columnIndex, paths })}
onMouseLeave={() => selected && setActiveNode(null)}
>
<div
className={classNames(styles.node, {
[styles.selected]: selected,
[styles.active]: active,
})}
onClick={() => handleClick(name, columnIndex, paths)}
>
<div className={styles.name}>{name}</div>
<TooltipPopup label={dropOffPercent} disabled={!selected}>
<div className={styles.count} title={nodeCount}>
{formatLongNumber(nodeCount)}
</div>
</TooltipPopup>
{columnIndex < columns.length &&
lines.map(([fromIndex, nodeIndex], i) => {
const height =
(Math.abs(nodeIndex - fromIndex) + 1) * (NODE_HEIGHT + NODE_GAP) -
NODE_GAP;
const midHeight =
(Math.abs(nodeIndex - fromIndex) - 1) * (NODE_HEIGHT + NODE_GAP) +
NODE_GAP +
LINE_WIDTH;
const nodeName = columns[columnIndex - 1]?.nodes[fromIndex].name;
return (
<div
key={`${fromIndex}${nodeIndex}${i}`}
className={classNames(styles.line, {
[styles.active]:
active &&
activeNode?.paths.find(
path =>
path.items[columnIndex] === name &&
path.items[columnIndex - 1] === nodeName,
),
[styles.up]: fromIndex < nodeIndex,
[styles.down]: fromIndex > nodeIndex,
[styles.flat]: fromIndex === nodeIndex,
})}
style={{ height }}
>
<div className={classNames(styles.segment, styles.start)} />
<div
className={classNames(styles.segment, styles.mid)}
style={{
height: midHeight,
}}
/>
<div className={classNames(styles.segment, styles.end)} />
</div>
);
})}
</div>
</div>
);
},
)}
</div>
</div>
);
})}
</div>
</div>
);
}

View File

@@ -0,0 +1,10 @@
import { Metadata } from 'next';
import JourneyReportPage from './JourneyReportPage';
export default function () {
return <JourneyReportPage />;
}
export const metadata: Metadata = {
title: 'Journey Report',
};

View File

@@ -1,8 +1,8 @@
import ReportsPage from './ReportsPage';
import { Metadata } from 'next';
export default function ({ params: { teamId } }: { params: { teamId: string } }) {
return <ReportsPage teamId={teamId} />;
export default function () {
return <ReportsPage />;
}
export const metadata: Metadata = {

View File

@@ -0,0 +1,98 @@
import BarChart, { BarChartProps } from 'components/charts/BarChart';
import { useLocale, useMessages } from 'components/hooks';
import MetricCard from 'components/metrics/MetricCard';
import MetricsBar from 'components/metrics/MetricsBar';
import { renderDateLabels } from 'lib/charts';
import { formatLongNumber } from 'lib/format';
import { useContext, useMemo } from 'react';
import { ReportContext } from '../[reportId]/Report';
export interface PageviewsChartProps extends BarChartProps {
isLoading?: boolean;
}
export function RevenueChart({ isLoading, ...props }: PageviewsChartProps) {
const { formatMessage, labels } = useMessages();
const { locale } = useLocale();
const { report } = useContext(ReportContext);
const { data, parameters } = report || {};
const chartData = useMemo(() => {
if (!data) {
return {};
}
return {
datasets: [
{
label: formatMessage(labels.average),
data: data?.chart.map(a => ({ x: a.time, y: a.avg })),
borderWidth: 2,
backgroundColor: '#8601B0',
borderColor: '#8601B0',
order: 1,
},
{
label: formatMessage(labels.total),
data: data?.chart.map(a => ({ x: a.time, y: a.sum })),
borderWidth: 2,
backgroundColor: '#f15bb5',
borderColor: '#f15bb5',
order: 2,
},
],
};
}, [data, locale]);
const metricData = useMemo(() => {
if (!data) {
return [];
}
const { sum, avg, count, uniqueCount } = data.total;
return [
{
value: sum,
label: formatMessage(labels.total),
formatValue: formatLongNumber,
},
{
value: avg,
label: formatMessage(labels.average),
formatValue: formatLongNumber,
},
{
value: count,
label: formatMessage(labels.transactions),
formatValue: formatLongNumber,
},
{
value: uniqueCount,
label: formatMessage(labels.uniqueCustomers),
formatValue: formatLongNumber,
},
] as any;
}, [data, locale]);
return (
<>
<MetricsBar isFetched={data}>
{metricData?.map(({ label, value, formatValue }) => {
return <MetricCard key={label} value={value} label={label} formatValue={formatValue} />;
})}
</MetricsBar>
{data && (
<BarChart
{...props}
data={chartData}
unit={parameters?.dateRange.unit}
isLoading={isLoading}
renderXLabel={renderDateLabels(parameters?.dateRange.unit, locale)}
/>
)}
</>
);
}
export default RevenueChart;

View File

@@ -0,0 +1,51 @@
import { useMessages } from 'components/hooks';
import { useContext } from 'react';
import { Form, FormButtons, FormInput, FormRow, SubmitButton, TextField } from 'react-basics';
import BaseParameters from '../[reportId]/BaseParameters';
import { ReportContext } from '../[reportId]/Report';
export function RevenueParameters() {
const { report, runReport, isRunning } = useContext(ReportContext);
const { formatMessage, labels } = useMessages();
const { id, parameters } = report || {};
const { websiteId, dateRange } = parameters || {};
const queryDisabled = !websiteId || !dateRange;
const handleSubmit = (data: any, e: any) => {
e.stopPropagation();
e.preventDefault();
if (!queryDisabled) {
runReport(data);
}
};
return (
<Form values={parameters} onSubmit={handleSubmit} preventSubmit={true}>
<BaseParameters showDateSelect={true} allowWebsiteSelect={!id} />
<FormRow label={formatMessage(labels.event)}>
<FormInput name="eventName" rules={{ required: formatMessage(labels.required) }}>
<TextField autoComplete="off" />
</FormInput>
</FormRow>
<FormRow label={formatMessage(labels.revenueProperty)}>
<FormInput name="revenueProperty" rules={{ required: formatMessage(labels.required) }}>
<TextField autoComplete="off" />
</FormInput>
</FormRow>
<FormRow label={formatMessage(labels.userProperty)}>
<FormInput name="userProperty">
<TextField autoComplete="off" />
</FormInput>
</FormRow>
<FormButtons>
<SubmitButton variant="primary" disabled={queryDisabled} isLoading={isRunning}>
{formatMessage(labels.runQuery)}
</SubmitButton>
</FormButtons>
</Form>
);
}
export default RevenueParameters;

Some files were not shown because too many files have changed in this diff Show More