mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Merge pull request #3683 from umami-software/dev
Some checks are pending
Node.js CI / build (postgresql, 18.18, 10) (push) Waiting to run
Some checks are pending
Node.js CI / build (postgresql, 18.18, 10) (push) Waiting to run
v3
This commit is contained in:
commit
98092004b6
1139 changed files with 51665 additions and 28882 deletions
|
|
@ -4,4 +4,6 @@ Dockerfile
|
|||
.gitignore
|
||||
.DS_Store
|
||||
node_modules
|
||||
.idea
|
||||
.idea
|
||||
.env
|
||||
.env.*
|
||||
|
|
|
|||
1
.eslintignore
Normal file
1
.eslintignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
/src/generated/
|
||||
|
|
@ -42,7 +42,8 @@
|
|||
"@typescript-eslint/no-var-requires": "off",
|
||||
"@typescript-eslint/no-empty-interface": "off",
|
||||
"@typescript-eslint/no-unused-vars": ["error", { "ignoreRestSiblings": true }],
|
||||
"@typescript-eslint/no-namespace": ["error", { "allowDeclarations": true }]
|
||||
"@typescript-eslint/no-namespace": ["error", { "allowDeclarations": true }],
|
||||
"@typescript-eslint/triple-slash-reference": "off"
|
||||
},
|
||||
"globals": {
|
||||
"React": "writable"
|
||||
|
|
|
|||
58
.github/workflows/cd-manual.yml
vendored
Normal file
58
.github/workflows/cd-manual.yml
vendored
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
name: Create docker images (manual)
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
type: string
|
||||
description: Version
|
||||
required: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build, push, and deploy
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
db-type: [postgresql]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Extract version parts from input
|
||||
id: extract_version
|
||||
run: |
|
||||
echo "version=$(echo ${{ github.event.inputs.version }})" >> $GITHUB_ENV
|
||||
echo "major=$(echo ${{ github.event.inputs.version }} | cut -d. -f1)" >> $GITHUB_ENV
|
||||
echo "minor=$(echo ${{ github.event.inputs.version }} | cut -d. -f2)" >> $GITHUB_ENV
|
||||
|
||||
- name: Generate tags
|
||||
id: generate_tags
|
||||
run: |
|
||||
echo "tag_major=$(echo ${{ matrix.db-type }}-${{ env.major }})" >> $GITHUB_ENV
|
||||
echo "tag_minor=$(echo ${{ matrix.db-type }}-${{ env.major }}.${{ env.minor }})" >> $GITHUB_ENV
|
||||
echo "tag_patch=$(echo ${{ matrix.db-type }}-${{ env.version }})" >> $GITHUB_ENV
|
||||
echo "tag_latest=$(echo ${{ matrix.db-type }}-latest)" >> $GITHUB_ENV
|
||||
|
||||
- uses: mr-smithers-excellent/docker-build-push@v6
|
||||
name: Build & push Docker image to ghcr.io for ${{ matrix.db-type }}
|
||||
with:
|
||||
image: umami
|
||||
tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }}
|
||||
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
||||
registry: ghcr.io
|
||||
multiPlatform: true
|
||||
platform: linux/amd64,linux/arm64
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- uses: mr-smithers-excellent/docker-build-push@v6
|
||||
name: Build & push Docker image to docker.io for ${{ matrix.db-type }}
|
||||
with:
|
||||
image: umamisoftware/umami
|
||||
tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }}
|
||||
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
||||
registry: docker.io
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
|
@ -1,6 +1,3 @@
|
|||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
||||
|
||||
name: Node.js CI
|
||||
|
||||
on: [push]
|
||||
|
|
@ -11,7 +8,6 @@ env:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
# Only run the CI if it belongs to the original repository
|
||||
if: github.repository == 'umami-software/umami'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
|
@ -21,9 +17,6 @@ jobs:
|
|||
- node-version: 18.18
|
||||
pnpm-version: 10
|
||||
db-type: postgresql
|
||||
- node-version: 18.18
|
||||
pnpm-version: 10
|
||||
db-type: mysql
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
|
|||
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -10,16 +10,16 @@ node_modules
|
|||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
/prisma/
|
||||
/src/generated/
|
||||
/.next
|
||||
/out
|
||||
|
||||
# production
|
||||
/build
|
||||
/public/script.js
|
||||
/geo
|
||||
/dist
|
||||
/generated
|
||||
/src/generated
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
|
|
|
|||
|
|
@ -1,4 +1 @@
|
|||
#!/bin/sh
|
||||
. "$(dirname "$0")/_/husky.sh"
|
||||
|
||||
npx lint-staged
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
/public/script.js
|
||||
/public/script.js
|
||||
/src/generated/
|
||||
|
|
|
|||
|
|
@ -1,11 +1,6 @@
|
|||
{
|
||||
"extends": [
|
||||
"stylelint-config-recommended",
|
||||
"stylelint-config-css-modules",
|
||||
"stylelint-config-prettier"
|
||||
],
|
||||
"extends": ["stylelint-config-recommended", "stylelint-config-css-modules"],
|
||||
"rules": {
|
||||
"no-descending-specificity": null
|
||||
},
|
||||
"ignoreFiles": ["**/*.js", "**/*.md"]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ FROM node:22-alpine AS builder
|
|||
WORKDIR /app
|
||||
COPY --from=deps /app/node_modules ./node_modules
|
||||
COPY . .
|
||||
COPY docker/middleware.ts ./src
|
||||
|
||||
ARG DATABASE_TYPE
|
||||
ARG BASE_PATH
|
||||
|
|
@ -41,7 +42,7 @@ RUN set -x \
|
|||
&& apk add --no-cache curl
|
||||
|
||||
# Script dependencies
|
||||
RUN pnpm add npm-run-all dotenv prisma@6.7.0
|
||||
RUN pnpm add npm-run-all dotenv chalk semver prisma@6.18.0 @prisma/adapter-pg@6.18.0
|
||||
|
||||
# Permissions for prisma
|
||||
RUN chown -R nextjs:nodejs node_modules/.pnpm/
|
||||
|
|
@ -49,15 +50,13 @@ RUN chown -R nextjs:nodejs node_modules/.pnpm/
|
|||
COPY --from=builder --chown=nextjs:nodejs /app/public ./public
|
||||
COPY --from=builder /app/prisma ./prisma
|
||||
COPY --from=builder /app/scripts ./scripts
|
||||
COPY --from=builder /app/generated ./generated
|
||||
|
||||
# Automatically leverage output traces to reduce image size
|
||||
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
||||
|
||||
# Custom routes
|
||||
RUN mv ./.next/routes-manifest.json ./.next/routes-manifest-orig.json
|
||||
|
||||
USER nextjs
|
||||
|
||||
EXPOSE 3000
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ A detailed getting started guide can be found at [umami.is/docs](https://umami.i
|
|||
### Requirements
|
||||
|
||||
- A server with Node.js version 18.18 or newer
|
||||
- A database. Umami supports [MariaDB](https://www.mariadb.org/) (minimum v10.5), [MySQL](https://www.mysql.com/) (minimum v8.0) and [PostgreSQL](https://www.postgresql.org/) (minimum v12.14) databases.
|
||||
- A database. Umami supports [PostgreSQL](https://www.postgresql.org/) (minimum v12.14) databases.
|
||||
|
||||
### Get the Source Code and Install Packages
|
||||
|
||||
|
|
@ -58,7 +58,6 @@ The connection URL format:
|
|||
|
||||
```bash
|
||||
postgresql://username:mypassword@localhost:5432/mydb
|
||||
mysql://username:mypassword@localhost:3306/mydb
|
||||
```
|
||||
|
||||
### Build the Application
|
||||
|
|
@ -93,12 +92,6 @@ Alternatively, to pull just the Umami Docker image with PostgreSQL support:
|
|||
docker pull docker.umami.is/umami-software/umami:postgresql-latest
|
||||
```
|
||||
|
||||
Or with MySQL support:
|
||||
|
||||
```bash
|
||||
docker pull docker.umami.is/umami-software/umami:mysql-latest
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🔄 Getting Updates
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ CREATE TABLE umami.event_data
|
|||
event_name String,
|
||||
data_key String,
|
||||
string_value Nullable(String),
|
||||
number_value Nullable(Decimal64(4)),
|
||||
number_value Nullable(Decimal(22, 4)),
|
||||
date_value Nullable(DateTime('UTC')),
|
||||
data_type UInt32,
|
||||
created_at DateTime('UTC'),
|
||||
|
|
@ -73,7 +73,7 @@ CREATE TABLE umami.session_data
|
|||
session_id UUID,
|
||||
data_key String,
|
||||
string_value Nullable(String),
|
||||
number_value Nullable(Decimal64(4)),
|
||||
number_value Nullable(Decimal(22, 4)),
|
||||
date_value Nullable(DateTime('UTC')),
|
||||
data_type UInt32,
|
||||
distinct_id String,
|
||||
|
|
@ -209,7 +209,7 @@ FROM (SELECT
|
|||
arrayFilter(x -> x != '', groupArray(twclid)) twclid,
|
||||
event_type,
|
||||
if(event_type = 2, groupArray(event_name), []) event_name,
|
||||
sumIf(1, event_type = 1) views,
|
||||
sumIf(1, event_type != 2) views,
|
||||
min(created_at) min_time,
|
||||
max(created_at) max_time,
|
||||
arrayFilter(x -> x != '', groupArray(tag)) tag,
|
||||
|
|
|
|||
|
|
@ -1,143 +0,0 @@
|
|||
-- CreateTable
|
||||
CREATE TABLE `user` (
|
||||
`user_id` VARCHAR(36) NOT NULL,
|
||||
`username` VARCHAR(255) NOT NULL,
|
||||
`password` VARCHAR(60) NOT NULL,
|
||||
`role` VARCHAR(50) NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
`updated_at` TIMESTAMP(0) NULL,
|
||||
`deleted_at` TIMESTAMP(0) NULL,
|
||||
|
||||
UNIQUE INDEX `user_user_id_key`(`user_id`),
|
||||
UNIQUE INDEX `user_username_key`(`username`),
|
||||
PRIMARY KEY (`user_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `session` (
|
||||
`session_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`hostname` VARCHAR(100) NULL,
|
||||
`browser` VARCHAR(20) NULL,
|
||||
`os` VARCHAR(20) NULL,
|
||||
`device` VARCHAR(20) NULL,
|
||||
`screen` VARCHAR(11) NULL,
|
||||
`language` VARCHAR(35) NULL,
|
||||
`country` CHAR(2) NULL,
|
||||
`subdivision1` CHAR(20) NULL,
|
||||
`subdivision2` VARCHAR(50) NULL,
|
||||
`city` VARCHAR(50) NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
|
||||
UNIQUE INDEX `session_session_id_key`(`session_id`),
|
||||
INDEX `session_created_at_idx`(`created_at`),
|
||||
INDEX `session_website_id_idx`(`website_id`),
|
||||
PRIMARY KEY (`session_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `website` (
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`name` VARCHAR(100) NOT NULL,
|
||||
`domain` VARCHAR(500) NULL,
|
||||
`share_id` VARCHAR(50) NULL,
|
||||
`reset_at` TIMESTAMP(0) NULL,
|
||||
`user_id` VARCHAR(36) NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
`updated_at` TIMESTAMP(0) NULL,
|
||||
`deleted_at` TIMESTAMP(0) NULL,
|
||||
|
||||
UNIQUE INDEX `website_website_id_key`(`website_id`),
|
||||
UNIQUE INDEX `website_share_id_key`(`share_id`),
|
||||
INDEX `website_user_id_idx`(`user_id`),
|
||||
INDEX `website_created_at_idx`(`created_at`),
|
||||
INDEX `website_share_id_idx`(`share_id`),
|
||||
PRIMARY KEY (`website_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `website_event` (
|
||||
`event_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`session_id` VARCHAR(36) NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
`url_path` VARCHAR(500) NOT NULL,
|
||||
`url_query` VARCHAR(500) NULL,
|
||||
`referrer_path` VARCHAR(500) NULL,
|
||||
`referrer_query` VARCHAR(500) NULL,
|
||||
`referrer_domain` VARCHAR(500) NULL,
|
||||
`page_title` VARCHAR(500) NULL,
|
||||
`event_type` INTEGER UNSIGNED NOT NULL DEFAULT 1,
|
||||
`event_name` VARCHAR(50) NULL,
|
||||
|
||||
INDEX `website_event_created_at_idx`(`created_at`),
|
||||
INDEX `website_event_session_id_idx`(`session_id`),
|
||||
INDEX `website_event_website_id_idx`(`website_id`),
|
||||
INDEX `website_event_website_id_created_at_idx`(`website_id`, `created_at`),
|
||||
INDEX `website_event_website_id_session_id_created_at_idx`(`website_id`, `session_id`, `created_at`),
|
||||
PRIMARY KEY (`event_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `event_data` (
|
||||
`event_id` VARCHAR(36) NOT NULL,
|
||||
`website_event_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`event_key` VARCHAR(500) NOT NULL,
|
||||
`event_string_value` VARCHAR(500) NULL,
|
||||
`event_numeric_value` DECIMAL(19, 4) NULL,
|
||||
`event_date_value` TIMESTAMP(0) NULL,
|
||||
`event_data_type` INTEGER UNSIGNED NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
|
||||
INDEX `event_data_created_at_idx`(`created_at`),
|
||||
INDEX `event_data_website_id_idx`(`website_id`),
|
||||
INDEX `event_data_website_event_id_idx`(`website_event_id`),
|
||||
INDEX `event_data_website_id_website_event_id_created_at_idx`(`website_id`, `website_event_id`, `created_at`),
|
||||
PRIMARY KEY (`event_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `team` (
|
||||
`team_id` VARCHAR(36) NOT NULL,
|
||||
`name` VARCHAR(50) NOT NULL,
|
||||
`access_code` VARCHAR(50) NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
`updated_at` TIMESTAMP(0) NULL,
|
||||
|
||||
UNIQUE INDEX `team_team_id_key`(`team_id`),
|
||||
UNIQUE INDEX `team_access_code_key`(`access_code`),
|
||||
INDEX `team_access_code_idx`(`access_code`),
|
||||
PRIMARY KEY (`team_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `team_user` (
|
||||
`team_user_id` VARCHAR(36) NOT NULL,
|
||||
`team_id` VARCHAR(36) NOT NULL,
|
||||
`user_id` VARCHAR(36) NOT NULL,
|
||||
`role` VARCHAR(50) NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
`updated_at` TIMESTAMP(0) NULL,
|
||||
|
||||
UNIQUE INDEX `team_user_team_user_id_key`(`team_user_id`),
|
||||
INDEX `team_user_team_id_idx`(`team_id`),
|
||||
INDEX `team_user_user_id_idx`(`user_id`),
|
||||
PRIMARY KEY (`team_user_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `team_website` (
|
||||
`team_website_id` VARCHAR(36) NOT NULL,
|
||||
`team_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
|
||||
UNIQUE INDEX `team_website_team_website_id_key`(`team_website_id`),
|
||||
INDEX `team_website_team_id_idx`(`team_id`),
|
||||
INDEX `team_website_website_id_idx`(`website_id`),
|
||||
PRIMARY KEY (`team_website_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- AddSystemUser
|
||||
INSERT INTO user (user_id, username, role, password) VALUES ('41e2b680-648e-4b09-bcd7-3e2b10c06264' , 'admin', 'admin', '$2b$10$BUli0c.muyCW1ErNJc3jL.vFRFtFJWrT8/GcR4A.sUdCznaXiqFXa');
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `event_data` CHANGE `event_data_type` `data_type` INTEGER UNSIGNED NOT NULL;
|
||||
ALTER TABLE `event_data` CHANGE `event_date_value` `date_value` TIMESTAMP(0) NULL;
|
||||
ALTER TABLE `event_data` CHANGE `event_id` `event_data_id` VARCHAR(36) NOT NULL;
|
||||
ALTER TABLE `event_data` CHANGE `event_numeric_value` `number_value` DECIMAL(19,4) NULL;
|
||||
ALTER TABLE `event_data` CHANGE `event_string_value` `string_value` VARCHAR(500) NULL;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `session_data` (
|
||||
`session_data_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`session_id` VARCHAR(36) NOT NULL,
|
||||
`event_key` VARCHAR(500) NOT NULL,
|
||||
`string_value` VARCHAR(500) NULL,
|
||||
`number_value` DECIMAL(19, 4) NULL,
|
||||
`date_value` TIMESTAMP(0) NULL,
|
||||
`data_type` INTEGER UNSIGNED NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
|
||||
INDEX `session_data_created_at_idx`(`created_at`),
|
||||
INDEX `session_data_website_id_idx`(`website_id`),
|
||||
INDEX `session_data_session_id_idx`(`session_id`),
|
||||
PRIMARY KEY (`session_data_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE `report` (
|
||||
`report_id` VARCHAR(36) NOT NULL,
|
||||
`user_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`type` VARCHAR(200) NOT NULL,
|
||||
`name` VARCHAR(200) NOT NULL,
|
||||
`description` VARCHAR(500) NOT NULL,
|
||||
`parameters` VARCHAR(6000) NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
`updated_at` TIMESTAMP(0) NULL,
|
||||
|
||||
UNIQUE INDEX `report_report_id_key`(`report_id`),
|
||||
INDEX `report_user_id_idx`(`user_id`),
|
||||
INDEX `report_website_id_idx`(`website_id`),
|
||||
INDEX `report_type_idx`(`type`),
|
||||
INDEX `report_name_idx`(`name`),
|
||||
PRIMARY KEY (`report_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
-- EventData migration
|
||||
UPDATE event_data
|
||||
SET string_value = number_value
|
||||
WHERE data_type = 2;
|
||||
|
||||
UPDATE event_data
|
||||
SET string_value = CONCAT(REPLACE(DATE_FORMAT(date_value, '%Y-%m-%d %T'), ' ', 'T'), 'Z')
|
||||
WHERE data_type = 4;
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
-- CreateIndex
|
||||
CREATE INDEX `event_data_website_id_created_at_idx` ON `event_data`(`website_id`, `created_at`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `event_data_website_id_created_at_event_key_idx` ON `event_data`(`website_id`, `created_at`, `event_key`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_idx` ON `session`(`website_id`, `created_at`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_hostname_idx` ON `session`(`website_id`, `created_at`, `hostname`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_browser_idx` ON `session`(`website_id`, `created_at`, `browser`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_os_idx` ON `session`(`website_id`, `created_at`, `os`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_device_idx` ON `session`(`website_id`, `created_at`, `device`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_screen_idx` ON `session`(`website_id`, `created_at`, `screen`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_language_idx` ON `session`(`website_id`, `created_at`, `language`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_country_idx` ON `session`(`website_id`, `created_at`, `country`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_subdivision1_idx` ON `session`(`website_id`, `created_at`, `subdivision1`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_website_id_created_at_city_idx` ON `session`(`website_id`, `created_at`, `city`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_created_at_url_path_idx` ON `website_event`(`website_id`, `created_at`, `url_path`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_created_at_url_query_idx` ON `website_event`(`website_id`, `created_at`, `url_query`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_created_at_referrer_domain_idx` ON `website_event`(`website_id`, `created_at`, `referrer_domain`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_created_at_page_title_idx` ON `website_event`(`website_id`, `created_at`, `page_title`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_created_at_event_name_idx` ON `website_event`(`website_id`, `created_at`, `event_name`);
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the `team_website` table. If the table is not empty, all the data it contains will be lost.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE `team` ADD COLUMN `deleted_at` TIMESTAMP(0) NULL,
|
||||
ADD COLUMN `logo_url` VARCHAR(2183) NULL;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE `user` ADD COLUMN `display_name` VARCHAR(255) NULL,
|
||||
ADD COLUMN `logo_url` VARCHAR(2183) NULL;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE `website` ADD COLUMN `created_by` VARCHAR(36) NULL,
|
||||
ADD COLUMN `team_id` VARCHAR(36) NULL;
|
||||
|
||||
-- MigrateData
|
||||
UPDATE `website` SET created_by = user_id WHERE team_id IS NULL;
|
||||
|
||||
-- DropTable
|
||||
DROP TABLE `team_website`;
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_team_id_idx` ON `website`(`team_id`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_created_by_idx` ON `website`(`created_by`);
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `website_event` ADD COLUMN `visit_id` VARCHAR(36) NULL;
|
||||
|
||||
UPDATE `website_event` we
|
||||
JOIN (SELECT DISTINCT
|
||||
s.session_id,
|
||||
s.visit_time,
|
||||
BIN_TO_UUID(RANDOM_BYTES(16) & 0xffffffffffff0fff3fffffffffffffff | 0x00000000000040008000000000000000) uuid
|
||||
FROM (SELECT DISTINCT session_id,
|
||||
DATE_FORMAT(created_at, '%Y-%m-%d %H:00:00') visit_time
|
||||
FROM `website_event`) s) a
|
||||
ON we.session_id = a.session_id and DATE_FORMAT(we.created_at, '%Y-%m-%d %H:00:00') = a.visit_time
|
||||
SET we.visit_id = a.uuid
|
||||
WHERE we.visit_id IS NULL;
|
||||
|
||||
ALTER TABLE `website_event` MODIFY `visit_id` VARCHAR(36) NOT NULL;
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_visit_id_idx` ON `website_event`(`visit_id`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_visit_id_created_at_idx` ON `website_event`(`website_id`, `visit_id`, `created_at`);
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
-- DropIndex
|
||||
DROP INDEX `event_data_website_id_created_at_event_key_idx` ON `event_data`;
|
||||
|
||||
-- DropIndex
|
||||
DROP INDEX `event_data_website_id_website_event_id_created_at_idx` ON `event_data`;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE `event_data` RENAME COLUMN `event_key` TO `data_key`;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE `session_data` RENAME COLUMN `event_key` TO `data_key`;
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `event_data_website_id_created_at_data_key_idx` ON `event_data`(`website_id`, `created_at`, `data_key`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_data_session_id_created_at_idx` ON `session_data`(`session_id`, `created_at`);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `session_data_website_id_created_at_data_key_idx` ON `session_data`(`website_id`, `created_at`, `data_key`);
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `website_event` ADD COLUMN `tag` VARCHAR(50) NULL;
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_created_at_tag_idx` ON `website_event`(`website_id`, `created_at`, `tag`);
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `website_event`
|
||||
ADD COLUMN `fbclid` VARCHAR(255) NULL,
|
||||
ADD COLUMN `gclid` VARCHAR(255) NULL,
|
||||
ADD COLUMN `li_fat_id` VARCHAR(255) NULL,
|
||||
ADD COLUMN `msclkid` VARCHAR(255) NULL,
|
||||
ADD COLUMN `ttclid` VARCHAR(255) NULL,
|
||||
ADD COLUMN `twclid` VARCHAR(255) NULL,
|
||||
ADD COLUMN `utm_campaign` VARCHAR(255) NULL,
|
||||
ADD COLUMN `utm_content` VARCHAR(255) NULL,
|
||||
ADD COLUMN `utm_medium` VARCHAR(255) NULL,
|
||||
ADD COLUMN `utm_source` VARCHAR(255) NULL,
|
||||
ADD COLUMN `utm_term` VARCHAR(255) NULL;
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `website_event` ADD COLUMN `hostname` VARCHAR(100) NULL;
|
||||
|
||||
-- DataMigration
|
||||
UPDATE `website_event` w
|
||||
JOIN `session` s
|
||||
ON s.website_id = w.website_id
|
||||
and s.session_id = w.session_id
|
||||
SET w.hostname = s.hostname;
|
||||
|
||||
-- DropIndex
|
||||
DROP INDEX `session_website_id_created_at_hostname_idx` ON `session`;
|
||||
DROP INDEX `session_website_id_created_at_subdivision1_idx` ON `session`;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE `session` RENAME COLUMN `subdivision1` TO `region`;
|
||||
ALTER TABLE `session` DROP COLUMN `subdivision2`;
|
||||
ALTER TABLE `session` DROP COLUMN `hostname`;
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX `website_event_website_id_created_at_hostname_idx` ON `website_event`(`website_id`, `created_at`, `hostname`);
|
||||
CREATE INDEX `session_website_id_created_at_region_idx` ON `session`(`website_id`, `created_at`, `region`);
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `session` ADD COLUMN `distinct_id` VARCHAR(50) NULL;
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE `session_data` ADD COLUMN `distinct_id` VARCHAR(50) NULL;
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
-- CreateTable
|
||||
CREATE TABLE `segment` (
|
||||
`segment_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`type` VARCHAR(200) NOT NULL,
|
||||
`name` VARCHAR(200) NOT NULL,
|
||||
`parameters` JSON NOT NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
`updated_at` TIMESTAMP(0) NULL,
|
||||
|
||||
UNIQUE INDEX `segment_segment_id_key`(`segment_id`),
|
||||
INDEX `segment_website_id_idx`(`website_id`),
|
||||
PRIMARY KEY (`segment_id`)
|
||||
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `report` MODIFY `parameters` JSON NOT NULL;
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
-- CreateTable
|
||||
CREATE TABLE `revenue` (
|
||||
`revenue_id` VARCHAR(36) NOT NULL,
|
||||
`website_id` VARCHAR(36) NOT NULL,
|
||||
`session_id` VARCHAR(36) NOT NULL,
|
||||
`event_id` VARCHAR(36) NOT NULL,
|
||||
`event_name` VARCHAR(50) NOT NULL,
|
||||
`currency` VARCHAR(100) NOT NULL,
|
||||
`revenue` DECIMAL(19, 4) NULL,
|
||||
`created_at` TIMESTAMP(0) NULL DEFAULT CURRENT_TIMESTAMP(0),
|
||||
|
||||
UNIQUE INDEX `revenue_revenue_id_key`(`revenue_id`),
|
||||
INDEX `revenue_website_id_idx`(`website_id`),
|
||||
INDEX `revenue_session_id_idx`(`session_id`),
|
||||
INDEX `revenue_website_id_created_at_idx`(`website_id`, `created_at`),
|
||||
INDEX `revenue_website_id_session_id_created_at_idx`(`website_id`, `session_id`, `created_at`),
|
||||
PRIMARY KEY (`revenue_id`)
|
||||
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# Please do not edit this file manually
|
||||
# It should be added in your version-control system (e.g., Git)
|
||||
provider = "mysql"
|
||||
|
|
@ -1,271 +0,0 @@
|
|||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "mysql"
|
||||
url = env("DATABASE_URL")
|
||||
relationMode = "prisma"
|
||||
}
|
||||
|
||||
model User {
|
||||
id String @id @unique @map("user_id") @db.VarChar(36)
|
||||
username String @unique @db.VarChar(255)
|
||||
password String @db.VarChar(60)
|
||||
role String @map("role") @db.VarChar(50)
|
||||
logoUrl String? @map("logo_url") @db.VarChar(2183)
|
||||
displayName String? @map("display_name") @db.VarChar(255)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0)
|
||||
deletedAt DateTime? @map("deleted_at") @db.Timestamp(0)
|
||||
|
||||
websiteUser Website[] @relation("user")
|
||||
websiteCreateUser Website[] @relation("createUser")
|
||||
teamUser TeamUser[]
|
||||
report Report[]
|
||||
|
||||
@@map("user")
|
||||
}
|
||||
|
||||
model Session {
|
||||
id String @id @unique @map("session_id") @db.VarChar(36)
|
||||
websiteId String @map("website_id") @db.VarChar(36)
|
||||
browser String? @db.VarChar(20)
|
||||
os String? @db.VarChar(20)
|
||||
device String? @db.VarChar(20)
|
||||
screen String? @db.VarChar(11)
|
||||
language String? @db.VarChar(35)
|
||||
country String? @db.Char(2)
|
||||
region String? @db.Char(20)
|
||||
city String? @db.VarChar(50)
|
||||
distinctId String? @map("distinct_id") @db.VarChar(50)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
|
||||
websiteEvent WebsiteEvent[]
|
||||
sessionData SessionData[]
|
||||
revenue Revenue[]
|
||||
|
||||
@@index([createdAt])
|
||||
@@index([websiteId])
|
||||
@@index([websiteId, createdAt])
|
||||
@@index([websiteId, createdAt, browser])
|
||||
@@index([websiteId, createdAt, os])
|
||||
@@index([websiteId, createdAt, device])
|
||||
@@index([websiteId, createdAt, screen])
|
||||
@@index([websiteId, createdAt, language])
|
||||
@@index([websiteId, createdAt, country])
|
||||
@@index([websiteId, createdAt, region])
|
||||
@@index([websiteId, createdAt, city])
|
||||
@@map("session")
|
||||
}
|
||||
|
||||
model Website {
|
||||
id String @id @unique @map("website_id") @db.VarChar(36)
|
||||
name String @db.VarChar(100)
|
||||
domain String? @db.VarChar(500)
|
||||
shareId String? @unique @map("share_id") @db.VarChar(50)
|
||||
resetAt DateTime? @map("reset_at") @db.Timestamp(0)
|
||||
userId String? @map("user_id") @db.VarChar(36)
|
||||
teamId String? @map("team_id") @db.VarChar(36)
|
||||
createdBy String? @map("created_by") @db.VarChar(36)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0)
|
||||
deletedAt DateTime? @map("deleted_at") @db.Timestamp(0)
|
||||
|
||||
user User? @relation("user", fields: [userId], references: [id])
|
||||
createUser User? @relation("createUser", fields: [createdBy], references: [id])
|
||||
team Team? @relation(fields: [teamId], references: [id])
|
||||
eventData EventData[]
|
||||
report Report[]
|
||||
revenue Revenue[]
|
||||
sessionData SessionData[]
|
||||
segment Segment[]
|
||||
|
||||
@@index([userId])
|
||||
@@index([teamId])
|
||||
@@index([createdAt])
|
||||
@@index([shareId])
|
||||
@@index([createdBy])
|
||||
@@map("website")
|
||||
}
|
||||
|
||||
model WebsiteEvent {
|
||||
id String @id() @map("event_id") @db.VarChar(36)
|
||||
websiteId String @map("website_id") @db.VarChar(36)
|
||||
sessionId String @map("session_id") @db.VarChar(36)
|
||||
visitId String @map("visit_id") @db.VarChar(36)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
urlPath String @map("url_path") @db.VarChar(500)
|
||||
urlQuery String? @map("url_query") @db.VarChar(500)
|
||||
utmSource String? @map("utm_source") @db.VarChar(255)
|
||||
utmMedium String? @map("utm_medium") @db.VarChar(255)
|
||||
utmCampaign String? @map("utm_campaign") @db.VarChar(255)
|
||||
utmContent String? @map("utm_content") @db.VarChar(255)
|
||||
utmTerm String? @map("utm_term") @db.VarChar(255)
|
||||
referrerPath String? @map("referrer_path") @db.VarChar(500)
|
||||
referrerQuery String? @map("referrer_query") @db.VarChar(500)
|
||||
referrerDomain String? @map("referrer_domain") @db.VarChar(500)
|
||||
pageTitle String? @map("page_title") @db.VarChar(500)
|
||||
gclid String? @map("gclid") @db.VarChar(255)
|
||||
fbclid String? @map("fbclid") @db.VarChar(255)
|
||||
msclkid String? @map("msclkid") @db.VarChar(255)
|
||||
ttclid String? @map("ttclid") @db.VarChar(255)
|
||||
lifatid String? @map("li_fat_id") @db.VarChar(255)
|
||||
twclid String? @map("twclid") @db.VarChar(255)
|
||||
eventType Int @default(1) @map("event_type") @db.UnsignedInt
|
||||
eventName String? @map("event_name") @db.VarChar(50)
|
||||
tag String? @db.VarChar(50)
|
||||
hostname String? @db.VarChar(100)
|
||||
|
||||
eventData EventData[]
|
||||
session Session @relation(fields: [sessionId], references: [id])
|
||||
|
||||
@@index([createdAt])
|
||||
@@index([sessionId])
|
||||
@@index([visitId])
|
||||
@@index([websiteId])
|
||||
@@index([websiteId, createdAt])
|
||||
@@index([websiteId, createdAt, urlPath])
|
||||
@@index([websiteId, createdAt, urlQuery])
|
||||
@@index([websiteId, createdAt, referrerDomain])
|
||||
@@index([websiteId, createdAt, pageTitle])
|
||||
@@index([websiteId, createdAt, eventName])
|
||||
@@index([websiteId, createdAt, tag])
|
||||
@@index([websiteId, sessionId, createdAt])
|
||||
@@index([websiteId, visitId, createdAt])
|
||||
@@index([websiteId, createdAt, hostname])
|
||||
@@map("website_event")
|
||||
}
|
||||
|
||||
model EventData {
|
||||
id String @id() @map("event_data_id") @db.VarChar(36)
|
||||
websiteId String @map("website_id") @db.VarChar(36)
|
||||
websiteEventId String @map("website_event_id") @db.VarChar(36)
|
||||
dataKey String @map("data_key") @db.VarChar(500)
|
||||
stringValue String? @map("string_value") @db.VarChar(500)
|
||||
numberValue Decimal? @map("number_value") @db.Decimal(19, 4)
|
||||
dateValue DateTime? @map("date_value") @db.Timestamp(0)
|
||||
dataType Int @map("data_type") @db.UnsignedInt
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
|
||||
website Website @relation(fields: [websiteId], references: [id])
|
||||
websiteEvent WebsiteEvent @relation(fields: [websiteEventId], references: [id])
|
||||
|
||||
@@index([createdAt])
|
||||
@@index([websiteId])
|
||||
@@index([websiteEventId])
|
||||
@@index([websiteId, createdAt])
|
||||
@@index([websiteId, createdAt, dataKey])
|
||||
@@map("event_data")
|
||||
}
|
||||
|
||||
model SessionData {
|
||||
id String @id() @map("session_data_id") @db.VarChar(36)
|
||||
websiteId String @map("website_id") @db.VarChar(36)
|
||||
sessionId String @map("session_id") @db.VarChar(36)
|
||||
dataKey String @map("data_key") @db.VarChar(500)
|
||||
stringValue String? @map("string_value") @db.VarChar(500)
|
||||
numberValue Decimal? @map("number_value") @db.Decimal(19, 4)
|
||||
dateValue DateTime? @map("date_value") @db.Timestamp(0)
|
||||
dataType Int @map("data_type") @db.UnsignedInt
|
||||
distinctId String? @map("distinct_id") @db.VarChar(50)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
|
||||
website Website @relation(fields: [websiteId], references: [id])
|
||||
session Session @relation(fields: [sessionId], references: [id])
|
||||
|
||||
@@index([createdAt])
|
||||
@@index([websiteId])
|
||||
@@index([sessionId])
|
||||
@@index([sessionId, createdAt])
|
||||
@@index([websiteId, createdAt, dataKey])
|
||||
@@map("session_data")
|
||||
}
|
||||
|
||||
model Team {
|
||||
id String @id() @unique() @map("team_id") @db.VarChar(36)
|
||||
name String @db.VarChar(50)
|
||||
accessCode String? @unique @map("access_code") @db.VarChar(50)
|
||||
logoUrl String? @map("logo_url") @db.VarChar(2183)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0)
|
||||
deletedAt DateTime? @map("deleted_at") @db.Timestamp(0)
|
||||
|
||||
website Website[]
|
||||
teamUser TeamUser[]
|
||||
|
||||
@@index([accessCode])
|
||||
@@map("team")
|
||||
}
|
||||
|
||||
model TeamUser {
|
||||
id String @id() @unique() @map("team_user_id") @db.VarChar(36)
|
||||
teamId String @map("team_id") @db.VarChar(36)
|
||||
userId String @map("user_id") @db.VarChar(36)
|
||||
role String @map("role") @db.VarChar(50)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0)
|
||||
|
||||
team Team @relation(fields: [teamId], references: [id])
|
||||
user User @relation(fields: [userId], references: [id])
|
||||
|
||||
@@index([teamId])
|
||||
@@index([userId])
|
||||
@@map("team_user")
|
||||
}
|
||||
|
||||
model Report {
|
||||
id String @id() @unique() @map("report_id") @db.VarChar(36)
|
||||
userId String @map("user_id") @db.VarChar(36)
|
||||
websiteId String @map("website_id") @db.VarChar(36)
|
||||
type String @db.VarChar(200)
|
||||
name String @db.VarChar(200)
|
||||
description String @db.VarChar(500)
|
||||
parameters Json
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0)
|
||||
|
||||
user User @relation(fields: [userId], references: [id])
|
||||
website Website @relation(fields: [websiteId], references: [id])
|
||||
|
||||
@@index([userId])
|
||||
@@index([websiteId])
|
||||
@@index([type])
|
||||
@@index([name])
|
||||
@@map("report")
|
||||
}
|
||||
|
||||
model Segment {
|
||||
id String @id() @unique() @map("segment_id") @db.VarChar(36)
|
||||
websiteId String @map("website_id") @db.VarChar(36)
|
||||
type String @db.VarChar(200)
|
||||
name String @db.VarChar(200)
|
||||
parameters Json
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamp(0)
|
||||
|
||||
website Website @relation(fields: [websiteId], references: [id])
|
||||
|
||||
@@index([websiteId])
|
||||
@@map("segment")
|
||||
}
|
||||
|
||||
model Revenue {
|
||||
id String @id() @unique() @map("revenue_id") @db.VarChar(36)
|
||||
websiteId String @map("website_id") @db.VarChar(36)
|
||||
sessionId String @map("session_id") @db.VarChar(36)
|
||||
eventId String @map("event_id") @db.VarChar(36)
|
||||
eventName String @map("event_name") @db.VarChar(50)
|
||||
currency String @db.VarChar(100)
|
||||
revenue Decimal? @db.Decimal(19, 4)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamp(0)
|
||||
|
||||
website Website @relation(fields: [websiteId], references: [id])
|
||||
session Session @relation(fields: [sessionId], references: [id])
|
||||
|
||||
@@index([websiteId])
|
||||
@@index([sessionId])
|
||||
@@index([websiteId, createdAt])
|
||||
@@index([websiteId, sessionId, createdAt])
|
||||
@@map("revenue")
|
||||
}
|
||||
|
|
@ -3,7 +3,7 @@ services:
|
|||
umami:
|
||||
image: ghcr.io/umami-software/umami:postgresql-latest
|
||||
ports:
|
||||
- '3000:3000'
|
||||
- "3000:3000"
|
||||
environment:
|
||||
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
||||
DATABASE_TYPE: postgresql
|
||||
|
|
@ -14,7 +14,7 @@ services:
|
|||
init: true
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'curl http://localhost:3000/api/heartbeat']
|
||||
test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
|
@ -28,7 +28,7 @@ services:
|
|||
- umami-db-data:/var/lib/postgresql/data
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}']
|
||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
|
|
|||
78
docker/middleware.ts
Normal file
78
docker/middleware.ts
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
import { NextRequest, NextResponse } from 'next/server';
|
||||
|
||||
export const config = {
|
||||
matcher: '/:path*',
|
||||
};
|
||||
|
||||
const TRACKER_PATH = '/script.js';
|
||||
const COLLECT_PATH = '/api/send';
|
||||
const LOGIN_PATH = '/login';
|
||||
|
||||
const apiHeaders = {
|
||||
'Access-Control-Allow-Origin': '*',
|
||||
'Access-Control-Allow-Headers': '*',
|
||||
'Access-Control-Allow-Methods': 'GET, DELETE, POST, PUT',
|
||||
'Access-Control-Max-Age': process.env.CORS_MAX_AGE || '86400',
|
||||
'Cache-Control': 'no-cache',
|
||||
};
|
||||
|
||||
const trackerHeaders = {
|
||||
'Access-Control-Allow-Origin': '*',
|
||||
'Cache-Control': 'public, max-age=86400, must-revalidate',
|
||||
};
|
||||
|
||||
function customCollectEndpoint(request: NextRequest) {
|
||||
const collectEndpoint = process.env.COLLECT_API_ENDPOINT;
|
||||
|
||||
if (collectEndpoint) {
|
||||
const url = request.nextUrl.clone();
|
||||
|
||||
if (url.pathname.endsWith(collectEndpoint)) {
|
||||
url.pathname = COLLECT_PATH;
|
||||
return NextResponse.rewrite(url, { headers: apiHeaders });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function customScriptName(request: NextRequest) {
|
||||
const scriptName = process.env.TRACKER_SCRIPT_NAME;
|
||||
|
||||
if (scriptName) {
|
||||
const url = request.nextUrl.clone();
|
||||
const names = scriptName.split(',').map(name => name.trim().replace(/^\/+/, ''));
|
||||
|
||||
if (names.find(name => url.pathname.endsWith(name))) {
|
||||
url.pathname = TRACKER_PATH;
|
||||
return NextResponse.rewrite(url, { headers: trackerHeaders });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function customScriptUrl(request: NextRequest) {
|
||||
const scriptUrl = process.env.TRACKER_SCRIPT_URL;
|
||||
|
||||
if (scriptUrl && request.nextUrl.pathname.endsWith(TRACKER_PATH)) {
|
||||
return NextResponse.rewrite(scriptUrl, { headers: trackerHeaders });
|
||||
}
|
||||
}
|
||||
|
||||
function disableLogin(request: NextRequest) {
|
||||
const loginDisabled = process.env.DISABLE_LOGIN;
|
||||
|
||||
if (loginDisabled && request.nextUrl.pathname.endsWith(LOGIN_PATH)) {
|
||||
return new NextResponse('Access denied', { status: 403 });
|
||||
}
|
||||
}
|
||||
|
||||
export default function middleware(req: NextRequest) {
|
||||
const fns = [customCollectEndpoint, customScriptName, customScriptUrl, disableLogin];
|
||||
|
||||
for (const fn of fns) {
|
||||
const res = fn(req);
|
||||
if (res) {
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
||||
return NextResponse.next();
|
||||
}
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
{
|
||||
"cs-CZ": ["label.reset", "metrics.device.tablet"],
|
||||
"de-CH": [
|
||||
"label.admin",
|
||||
"label.analytics",
|
||||
"label.desktop",
|
||||
"label.details",
|
||||
"label.domain",
|
||||
"label.laptop",
|
||||
"label.tablet",
|
||||
"label.name",
|
||||
"label.sessions",
|
||||
"label.team",
|
||||
"label.team-id",
|
||||
"label.teams"
|
||||
],
|
||||
"de-DE": [
|
||||
"label.admin",
|
||||
"label.analytics",
|
||||
"label.desktop",
|
||||
"label.details",
|
||||
"label.domain",
|
||||
"label.laptop",
|
||||
"label.tablet",
|
||||
"label.name",
|
||||
"label.sessions",
|
||||
"label.team",
|
||||
"label.team-id",
|
||||
"label.teams"
|
||||
],
|
||||
"en-GB": "*",
|
||||
"fr-FR": ["metrics.actions", "metrics.pages"],
|
||||
"lt-LT": [
|
||||
"metrics.device.desktop",
|
||||
"metrics.device.laptop",
|
||||
"metrics.referrers",
|
||||
"message.powered-by"
|
||||
],
|
||||
"mn-MN": ["label.max", "label.min", "label.os", "label.query", "label.url", "label.urls"],
|
||||
"nb-NO": ["label.administrator", "label.dashboard"],
|
||||
"nl-NL": [
|
||||
"label.analytics",
|
||||
"label.browsers",
|
||||
"label.laptop",
|
||||
"label.tablet",
|
||||
"label.team",
|
||||
"label.team-id",
|
||||
"label.teams",
|
||||
"label.website-id",
|
||||
"label.websites"
|
||||
],
|
||||
"it-IT": [
|
||||
"label.password",
|
||||
"label.reset",
|
||||
"message.powered-by",
|
||||
"metrics.device.desktop",
|
||||
"metrics.device.tablet",
|
||||
"metrics.filter.raw"
|
||||
],
|
||||
"pt-PT": ["label.websites", "metrics.device.desktop", "metrics.device.tablet"]
|
||||
}
|
||||
1
next-env.d.ts
vendored
1
next-env.d.ts
vendored
|
|
@ -1,5 +1,6 @@
|
|||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
/// <reference path="./.next/types/routes.d.ts" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
||||
|
|
|
|||
|
|
@ -1,30 +1,27 @@
|
|||
import 'dotenv/config';
|
||||
import { createRequire } from 'module';
|
||||
|
||||
const require = createRequire(import.meta.url);
|
||||
const pkg = require('./package.json');
|
||||
import pkg from './package.json' assert { type: 'json' };
|
||||
|
||||
const TRACKER_SCRIPT = '/script.js';
|
||||
|
||||
const basePath = process.env.BASE_PATH;
|
||||
const collectApiEndpoint = process.env.COLLECT_API_ENDPOINT;
|
||||
const cloudMode = process.env.CLOUD_MODE;
|
||||
const cloudUrl = process.env.CLOUD_URL;
|
||||
const corsMaxAge = process.env.CORS_MAX_AGE;
|
||||
const defaultLocale = process.env.DEFAULT_LOCALE;
|
||||
const forceSSL = process.env.FORCE_SSL;
|
||||
const frameAncestors = process.env.ALLOWED_FRAME_URLS ?? '';
|
||||
const trackerScriptName = process.env.TRACKER_SCRIPT_NAME;
|
||||
const trackerScriptURL = process.env.TRACKER_SCRIPT_URL;
|
||||
const basePath = process.env.BASE_PATH || '';
|
||||
const cloudMode = process.env.CLOUD_MODE || '';
|
||||
const cloudUrl = process.env.CLOUD_URL || '';
|
||||
const collectApiEndpoint = process.env.COLLECT_API_ENDPOINT || '';
|
||||
const corsMaxAge = process.env.CORS_MAX_AGE || '';
|
||||
const defaultLocale = process.env.DEFAULT_LOCALE || '';
|
||||
const forceSSL = process.env.FORCE_SSL || '';
|
||||
const frameAncestors = process.env.ALLOWED_FRAME_URLS || '';
|
||||
const trackerScriptName = process.env.TRACKER_SCRIPT_NAME || '';
|
||||
const trackerScriptURL = process.env.TRACKER_SCRIPT_URL || '';
|
||||
|
||||
const contentSecurityPolicy = [
|
||||
`default-src 'self'`,
|
||||
`img-src * data:`,
|
||||
`script-src 'self' 'unsafe-eval' 'unsafe-inline'`,
|
||||
`style-src 'self' 'unsafe-inline'`,
|
||||
`connect-src 'self' api.umami.is cloud.umami.is`,
|
||||
`frame-ancestors 'self' ${frameAncestors}`,
|
||||
];
|
||||
const contentSecurityPolicy = `
|
||||
default-src 'self';
|
||||
img-src 'self' https: data:;
|
||||
script-src 'self' 'unsafe-eval' 'unsafe-inline';
|
||||
style-src 'self' 'unsafe-inline';
|
||||
connect-src 'self' https:;
|
||||
frame-ancestors 'self' ${frameAncestors};
|
||||
`;
|
||||
|
||||
const defaultHeaders = [
|
||||
{
|
||||
|
|
@ -33,10 +30,7 @@ const defaultHeaders = [
|
|||
},
|
||||
{
|
||||
key: 'Content-Security-Policy',
|
||||
value: contentSecurityPolicy
|
||||
.join(';')
|
||||
.replace(/\s{2,}/g, ' ')
|
||||
.trim(),
|
||||
value: contentSecurityPolicy.replace(/\s{2,}/g, ' ').trim(),
|
||||
},
|
||||
];
|
||||
|
||||
|
|
@ -120,18 +114,23 @@ if (collectApiEndpoint) {
|
|||
const redirects = [
|
||||
{
|
||||
source: '/settings',
|
||||
destination: '/settings/websites',
|
||||
permanent: true,
|
||||
destination: '/settings/preferences',
|
||||
permanent: false,
|
||||
},
|
||||
{
|
||||
source: '/teams/:id',
|
||||
destination: '/teams/:id/dashboard',
|
||||
permanent: true,
|
||||
destination: '/teams/:id/websites',
|
||||
permanent: false,
|
||||
},
|
||||
{
|
||||
source: '/teams/:id/settings',
|
||||
destination: '/teams/:id/settings/team',
|
||||
permanent: true,
|
||||
destination: '/teams/:id/settings/preferences',
|
||||
permanent: false,
|
||||
},
|
||||
{
|
||||
source: '/admin',
|
||||
destination: '/admin/users',
|
||||
permanent: false,
|
||||
},
|
||||
];
|
||||
|
||||
|
|
@ -156,23 +155,10 @@ if (trackerScriptName) {
|
|||
}
|
||||
}
|
||||
|
||||
if (cloudMode && cloudUrl) {
|
||||
redirects.push({
|
||||
source: '/settings/:path*',
|
||||
destination: `${cloudUrl}/settings/:path*`,
|
||||
permanent: false,
|
||||
});
|
||||
|
||||
redirects.push({
|
||||
source: '/teams/:id/settings/:path*',
|
||||
destination: `${cloudUrl}/teams/:id/settings/:path*`,
|
||||
permanent: false,
|
||||
});
|
||||
|
||||
redirects.push({
|
||||
source: '/login',
|
||||
destination: cloudUrl,
|
||||
permanent: false,
|
||||
if (cloudMode) {
|
||||
rewrites.push({
|
||||
source: '/script.js',
|
||||
destination: 'https://cloud.umami.is/script.js',
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -194,22 +180,6 @@ export default {
|
|||
typescript: {
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
turbopack: {
|
||||
rules: {
|
||||
'*.svg': {
|
||||
loaders: ['@svgr/webpack'],
|
||||
as: '*.js',
|
||||
},
|
||||
},
|
||||
},
|
||||
webpack(config) {
|
||||
config.module.rules.push({
|
||||
test: /\.svg$/,
|
||||
issuer: /\.(js|ts)x?$/,
|
||||
use: ['@svgr/webpack'],
|
||||
});
|
||||
return config;
|
||||
},
|
||||
async headers() {
|
||||
return headers;
|
||||
},
|
||||
|
|
@ -221,7 +191,7 @@ export default {
|
|||
destination: '/api/scripts/telemetry',
|
||||
},
|
||||
{
|
||||
source: '/teams/:teamId/:path((?!settings).*)*',
|
||||
source: '/teams/:teamId/:path*',
|
||||
destination: '/:path*',
|
||||
},
|
||||
];
|
||||
|
|
@ -1,24 +1,10 @@
|
|||
{
|
||||
"name": "@umami/components",
|
||||
"version": "0.1.0",
|
||||
"version": "0.130.0",
|
||||
"description": "Umami React components.",
|
||||
"author": "Mike Cao <mike@mikecao.com>",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"main": "./index.js",
|
||||
"types": "./index.d.ts",
|
||||
"peerDependencies": {
|
||||
"@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",
|
||||
"next-basics": "^0.36.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-intl": "^5.24.7",
|
||||
"zustand": "^4.3.8"
|
||||
}
|
||||
"types": "./index.d.ts"
|
||||
}
|
||||
|
|
|
|||
139
package.json
139
package.json
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "umami",
|
||||
"version": "2.19.0",
|
||||
"version": "3.0.0",
|
||||
"description": "A modern, privacy-focused alternative to Google Analytics.",
|
||||
"author": "Umami Software, Inc. <hello@umami.is>",
|
||||
"license": "MIT",
|
||||
|
|
@ -9,24 +9,25 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/umami-software/umami.git"
|
||||
},
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"dev-turbo": "next dev -p 3000 --turbopack",
|
||||
"dev": "next dev -p 3001 --turbo",
|
||||
"build": "npm-run-all check-env build-db check-db build-tracker build-geo build-app",
|
||||
"start": "next start",
|
||||
"build-docker": "npm-run-all build-db build-tracker build-geo build-app",
|
||||
"start-docker": "npm-run-all check-db update-tracker set-routes-manifest start-server",
|
||||
"start-docker": "npm-run-all check-db update-tracker start-server",
|
||||
"start-env": "node scripts/start-env.js",
|
||||
"start-server": "node server.js",
|
||||
"build-app": "next build",
|
||||
"build-components": "rollup -c rollup.components.config.mjs",
|
||||
"build-tracker": "rollup -c rollup.tracker.config.mjs",
|
||||
"build-db": "npm-run-all copy-db-files build-db-client",
|
||||
"build-app": "next build --turbo",
|
||||
"build-icons": "svgr ./src/assets --out-dir src/components/svg --typescript",
|
||||
"build-components": "tsup",
|
||||
"build-tracker": "rollup -c rollup.tracker.config.js",
|
||||
"build-prisma-client": "node scripts/build-prisma-client.js",
|
||||
"build-lang": "npm-run-all format-lang compile-lang download-country-names download-language-names clean-lang",
|
||||
"build-geo": "node scripts/build-geo.js",
|
||||
"build-db": "npm-run-all build-db-client build-prisma-client",
|
||||
"build-db-schema": "prisma db pull",
|
||||
"build-db-client": "prisma generate",
|
||||
"set-routes-manifest": "node scripts/set-routes-manifest.js",
|
||||
"update-tracker": "node scripts/update-tracker.js",
|
||||
"update-db": "prisma migrate deploy",
|
||||
"check-db": "node scripts/check-db.js",
|
||||
|
|
@ -38,7 +39,6 @@
|
|||
"format-lang": "node scripts/format-lang.js",
|
||||
"compile-lang": "formatjs compile-folder --ast build/messages public/intl/messages",
|
||||
"clean-lang": "prettier --write ./public/intl/**/*.json",
|
||||
"check-lang": "node scripts/check-lang.js",
|
||||
"download-country-names": "node scripts/download-country-names.js",
|
||||
"download-language-names": "node scripts/download-language-names.js",
|
||||
"change-password": "node scripts/change-password.js",
|
||||
|
|
@ -66,20 +66,23 @@
|
|||
".next/cache"
|
||||
],
|
||||
"dependencies": {
|
||||
"@clickhouse/client": "^1.10.1",
|
||||
"@clickhouse/client": "^1.12.0",
|
||||
"@date-fns/utc": "^1.2.0",
|
||||
"@dicebear/collection": "^9.2.1",
|
||||
"@dicebear/core": "^9.2.1",
|
||||
"@fontsource/inter": "^4.5.15",
|
||||
"@dicebear/collection": "^9.2.3",
|
||||
"@dicebear/core": "^9.2.3",
|
||||
"@fontsource/inter": "^5.2.8",
|
||||
"@hello-pangea/dnd": "^17.0.0",
|
||||
"@prisma/client": "6.7.0",
|
||||
"@prisma/adapter-pg": "^6.18.0",
|
||||
"@prisma/client": "^6.18.0",
|
||||
"@prisma/extension-read-replicas": "^0.4.1",
|
||||
"@react-spring/web": "^9.7.3",
|
||||
"@tanstack/react-query": "^5.28.6",
|
||||
"@umami/redis-client": "^0.26.0",
|
||||
"bcryptjs": "^2.4.3",
|
||||
"chalk": "^4.1.1",
|
||||
"chart.js": "^4.4.9",
|
||||
"@react-spring/web": "^10.0.3",
|
||||
"@svgr/cli": "^8.1.0",
|
||||
"@tanstack/react-query": "^5.90.5",
|
||||
"@umami/react-zen": "^0.203.0",
|
||||
"@umami/redis-client": "^0.29.0",
|
||||
"bcryptjs": "^3.0.2",
|
||||
"chalk": "^5.6.2",
|
||||
"chart.js": "^4.5.1",
|
||||
"chartjs-adapter-date-fns": "^3.0.0",
|
||||
"classnames": "^2.3.1",
|
||||
"colord": "^2.9.2",
|
||||
|
|
@ -87,99 +90,101 @@
|
|||
"cross-spawn": "^7.0.3",
|
||||
"date-fns": "^2.23.0",
|
||||
"date-fns-tz": "^1.1.4",
|
||||
"debug": "^4.3.4",
|
||||
"debug": "^4.4.3",
|
||||
"del": "^6.0.0",
|
||||
"detect-browser": "^5.2.0",
|
||||
"dotenv": "^10.0.0",
|
||||
"dotenv": "^17.2.3",
|
||||
"esbuild": "^0.25.11",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"fs-extra": "^10.0.1",
|
||||
"immer": "^9.0.12",
|
||||
"fs-extra": "^11.3.2",
|
||||
"immer": "^10.2.0",
|
||||
"ipaddr.js": "^2.0.1",
|
||||
"is-ci": "^3.0.1",
|
||||
"is-docker": "^3.0.0",
|
||||
"is-localhost-ip": "^1.4.0",
|
||||
"isbot": "^5.1.16",
|
||||
"is-localhost-ip": "^2.0.0",
|
||||
"isbot": "^5.1.31",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"jszip": "^3.10.1",
|
||||
"kafkajs": "^2.1.0",
|
||||
"maxmind": "^4.3.24",
|
||||
"md5": "^2.3.0",
|
||||
"next": "15.4.7",
|
||||
"lucide-react": "^0.543.0",
|
||||
"maxmind": "^5.0.0",
|
||||
"next": "15.5.3",
|
||||
"node-fetch": "^3.2.8",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"papaparse": "^5.5.3",
|
||||
"prisma": "6.7.0",
|
||||
"pure-rand": "^6.1.0",
|
||||
"react": "^19.0.0",
|
||||
"react-basics": "^0.126.0",
|
||||
"react-dom": "^19.0.0",
|
||||
"pg": "^8.16.3",
|
||||
"prisma": "^6.18.0",
|
||||
"pure-rand": "^7.0.1",
|
||||
"react": "^19.2.0",
|
||||
"react-dom": "^19.2.0",
|
||||
"react-error-boundary": "^4.0.4",
|
||||
"react-intl": "^6.5.5",
|
||||
"react-intl": "^7.1.14",
|
||||
"react-simple-maps": "^2.3.0",
|
||||
"react-use-measure": "^2.0.4",
|
||||
"react-window": "^1.8.6",
|
||||
"request-ip": "^3.3.0",
|
||||
"semver": "^7.5.4",
|
||||
"semver": "^7.7.3",
|
||||
"serialize-error": "^12.0.0",
|
||||
"thenby": "^1.3.4",
|
||||
"uuid": "^9.0.0",
|
||||
"zod": "^3.24.3",
|
||||
"zustand": "^4.5.5"
|
||||
"ua-parser-js": "^2.0.6",
|
||||
"uuid": "^11.1.0",
|
||||
"zod": "^4.1.12",
|
||||
"zustand": "^5.0.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@formatjs/cli": "^4.2.29",
|
||||
"@netlify/plugin-nextjs": "^5.10.6",
|
||||
"@netlify/plugin-nextjs": "^5.14.4",
|
||||
"@rollup/plugin-alias": "^5.0.0",
|
||||
"@rollup/plugin-commonjs": "^25.0.4",
|
||||
"@rollup/plugin-json": "^6.0.0",
|
||||
"@rollup/plugin-node-resolve": "^15.2.0",
|
||||
"@rollup/plugin-replace": "^5.0.2",
|
||||
"@rollup/plugin-terser": "^0.4.4",
|
||||
"@svgr/rollup": "^8.1.0",
|
||||
"@svgr/webpack": "^8.1.0",
|
||||
"@types/jest": "^29.5.14",
|
||||
"@types/node": "^22.13.4",
|
||||
"@types/react": "^19.0.8",
|
||||
"@types/react-dom": "^19.0.2",
|
||||
"@rollup/plugin-typescript": "^12.3.0",
|
||||
"@types/jest": "^30.0.0",
|
||||
"@types/node": "^24.9.2",
|
||||
"@types/react": "^19.2.2",
|
||||
"@types/react-dom": "^19.2.2",
|
||||
"@types/react-window": "^1.8.8",
|
||||
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
||||
"@typescript-eslint/parser": "^6.7.3",
|
||||
"cross-env": "^7.0.3",
|
||||
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
||||
"@typescript-eslint/parser": "^8.46.2",
|
||||
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
||||
"cross-env": "^10.1.0",
|
||||
"cypress": "^13.6.6",
|
||||
"esbuild": "^0.25.0",
|
||||
"eslint": "^8.33.0",
|
||||
"eslint-config-next": "^14.0.4",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-config-next": "^14.2.33",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-import-resolver-alias": "^1.1.2",
|
||||
"eslint-plugin-css-modules": "^2.12.0",
|
||||
"eslint-plugin-cypress": "^2.15.1",
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-import": "^2.32.0",
|
||||
"eslint-plugin-jest": "^27.9.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"eslint-plugin-prettier": "^5.5.3",
|
||||
"extract-react-intl-messages": "^4.1.1",
|
||||
"husky": "^8.0.3",
|
||||
"husky": "^9.1.7",
|
||||
"jest": "^29.7.0",
|
||||
"lint-staged": "^14.0.1",
|
||||
"postcss": "^8.4.31",
|
||||
"lint-staged": "^16.2.6",
|
||||
"postcss": "^8.5.6",
|
||||
"postcss-flexbugs-fixes": "^5.0.2",
|
||||
"postcss-import": "^15.1.0",
|
||||
"postcss-preset-env": "7.8.3",
|
||||
"prettier": "^2.6.2",
|
||||
"prettier": "^3.6.2",
|
||||
"prompts": "2.4.2",
|
||||
"rollup": "^3.28.0",
|
||||
"rollup": "^4.52.5",
|
||||
"rollup-plugin-copy": "^3.4.0",
|
||||
"rollup-plugin-delete": "^2.0.0",
|
||||
"rollup-plugin-dts": "^5.3.1",
|
||||
"rollup-plugin-esbuild": "^5.0.0",
|
||||
"rollup-plugin-node-externals": "^6.1.1",
|
||||
"rollup-plugin-delete": "^3.0.1",
|
||||
"rollup-plugin-dts": "^6.2.3",
|
||||
"rollup-plugin-node-externals": "^8.1.1",
|
||||
"rollup-plugin-peer-deps-external": "^2.2.4",
|
||||
"rollup-plugin-postcss": "^4.0.2",
|
||||
"stylelint": "^15.10.1",
|
||||
"stylelint-config-css-modules": "^4.4.0",
|
||||
"stylelint-config-css-modules": "^4.5.1",
|
||||
"stylelint-config-prettier": "^9.0.3",
|
||||
"stylelint-config-recommended": "^14.0.0",
|
||||
"tar": "^6.1.2",
|
||||
"ts-jest": "^29.1.2",
|
||||
"ts-jest": "^29.4.5",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^5.5.3"
|
||||
"tsup": "^8.5.0",
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
7948
pnpm-lock.yaml
generated
7948
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
17
postcss.config.js
Normal file
17
postcss.config.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
export default {
|
||||
plugins: [
|
||||
'postcss-flexbugs-fixes',
|
||||
[
|
||||
'postcss-preset-env',
|
||||
{
|
||||
autoprefixer: {
|
||||
flexbox: 'no-2009',
|
||||
},
|
||||
stage: 3,
|
||||
features: {
|
||||
'custom-properties': false,
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
};
|
||||
119
prisma/migrations/14_add_link_and_pixel/migration.sql
Normal file
119
prisma/migrations/14_add_link_and_pixel/migration.sql
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "report" ALTER COLUMN "type" SET DATA TYPE VARCHAR(50);
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "revenue" ALTER COLUMN "currency" SET DATA TYPE VARCHAR(10);
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "segment" ALTER COLUMN "type" SET DATA TYPE VARCHAR(50);
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE "link" (
|
||||
"link_id" UUID NOT NULL,
|
||||
"name" VARCHAR(100) NOT NULL,
|
||||
"url" VARCHAR(500) NOT NULL,
|
||||
"slug" VARCHAR(100) NOT NULL,
|
||||
"user_id" UUID,
|
||||
"team_id" UUID,
|
||||
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||
"updated_at" TIMESTAMPTZ(6),
|
||||
"deleted_at" TIMESTAMPTZ(6),
|
||||
|
||||
CONSTRAINT "link_pkey" PRIMARY KEY ("link_id")
|
||||
);
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE "pixel" (
|
||||
"pixel_id" UUID NOT NULL,
|
||||
"name" VARCHAR(100) NOT NULL,
|
||||
"slug" VARCHAR(100) NOT NULL,
|
||||
"user_id" UUID,
|
||||
"team_id" UUID,
|
||||
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||
"updated_at" TIMESTAMPTZ(6),
|
||||
"deleted_at" TIMESTAMPTZ(6),
|
||||
|
||||
CONSTRAINT "pixel_pkey" PRIMARY KEY ("pixel_id")
|
||||
);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE UNIQUE INDEX "link_link_id_key" ON "link"("link_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE UNIQUE INDEX "link_slug_key" ON "link"("slug");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "link_slug_idx" ON "link"("slug");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "link_user_id_idx" ON "link"("user_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "link_team_id_idx" ON "link"("team_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "link_created_at_idx" ON "link"("created_at");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE UNIQUE INDEX "pixel_pixel_id_key" ON "pixel"("pixel_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE UNIQUE INDEX "pixel_slug_key" ON "pixel"("slug");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "pixel_slug_idx" ON "pixel"("slug");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "pixel_user_id_idx" ON "pixel"("user_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "pixel_team_id_idx" ON "pixel"("team_id");
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "pixel_created_at_idx" ON "pixel"("created_at");
|
||||
|
||||
-- DataMigration Funnel
|
||||
DELETE FROM "report" WHERE type = 'funnel' and jsonb_array_length(parameters->'steps') = 1;
|
||||
UPDATE "report" SET parameters = parameters - 'websiteId' - 'dateRange' - 'urls' WHERE type = 'funnel';
|
||||
|
||||
UPDATE "report"
|
||||
SET parameters = jsonb_set(
|
||||
parameters,
|
||||
'{steps}',
|
||||
(
|
||||
SELECT jsonb_agg(
|
||||
CASE
|
||||
WHEN step->>'type' = 'url'
|
||||
THEN jsonb_set(step, '{type}', '"path"')
|
||||
ELSE step
|
||||
END
|
||||
)
|
||||
FROM jsonb_array_elements(parameters->'steps') step
|
||||
)
|
||||
)
|
||||
WHERE type = 'funnel'
|
||||
and parameters @> '{"steps":[{"type":"url"}]}';
|
||||
|
||||
-- DataMigration Goals
|
||||
UPDATE "report" SET type = 'goal' WHERE type = 'goals';
|
||||
|
||||
INSERT INTO "report" (report_id, user_id, website_id, type, name, description, parameters, created_at, updated_at)
|
||||
SELECT gen_random_uuid(),
|
||||
user_id,
|
||||
website_id,
|
||||
'goal',
|
||||
concat(name, ' - ', elem ->> 'value'),
|
||||
description,
|
||||
jsonb_build_object(
|
||||
'type', CASE WHEN elem ->> 'type' = 'url' THEN 'path'
|
||||
ELSE elem ->> 'type' END,
|
||||
'value', elem ->> 'value'
|
||||
) AS parameters,
|
||||
created_at,
|
||||
updated_at
|
||||
FROM "report"
|
||||
CROSS JOIN LATERAL jsonb_array_elements(parameters -> 'goals') elem
|
||||
WHERE type = 'goal'
|
||||
and elem ->> 'type' IN ('event', 'url');
|
||||
|
||||
DELETE FROM "report" WHERE type = 'goal' and parameters ? 'goals';
|
||||
|
|
@ -1,5 +1,7 @@
|
|||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
provider = "prisma-client"
|
||||
output = "../src/generated/prisma"
|
||||
engineType = "client"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
|
|
@ -19,10 +21,12 @@ model User {
|
|||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6)
|
||||
|
||||
websiteUser Website[] @relation("user")
|
||||
websiteCreateUser Website[] @relation("createUser")
|
||||
teamUser TeamUser[]
|
||||
report Report[]
|
||||
websites Website[] @relation("user")
|
||||
createdBy Website[] @relation("createUser")
|
||||
links Link[] @relation("user")
|
||||
pixels Pixel[] @relation("user")
|
||||
teams TeamUser[]
|
||||
reports Report[]
|
||||
|
||||
@@map("user")
|
||||
}
|
||||
|
|
@ -41,9 +45,9 @@ model Session {
|
|||
distinctId String? @map("distinct_id") @db.VarChar(50)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
|
||||
websiteEvent WebsiteEvent[]
|
||||
sessionData SessionData[]
|
||||
revenue Revenue[]
|
||||
websiteEvents WebsiteEvent[]
|
||||
sessionData SessionData[]
|
||||
revenue Revenue[]
|
||||
|
||||
@@index([createdAt])
|
||||
@@index([websiteId])
|
||||
|
|
@ -76,10 +80,10 @@ model Website {
|
|||
createUser User? @relation("createUser", fields: [createdBy], references: [id])
|
||||
team Team? @relation(fields: [teamId], references: [id])
|
||||
eventData EventData[]
|
||||
report Report[]
|
||||
reports Report[]
|
||||
revenue Revenue[]
|
||||
segments Segment[]
|
||||
sessionData SessionData[]
|
||||
segment Segment[]
|
||||
|
||||
@@index([userId])
|
||||
@@index([teamId])
|
||||
|
|
@ -191,8 +195,10 @@ model Team {
|
|||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6)
|
||||
|
||||
website Website[]
|
||||
teamUser TeamUser[]
|
||||
websites Website[]
|
||||
members TeamUser[]
|
||||
links Link[]
|
||||
pixels Pixel[]
|
||||
|
||||
@@index([accessCode])
|
||||
@@map("team")
|
||||
|
|
@ -218,10 +224,10 @@ model Report {
|
|||
id String @id() @unique() @map("report_id") @db.Uuid
|
||||
userId String @map("user_id") @db.Uuid
|
||||
websiteId String @map("website_id") @db.Uuid
|
||||
type String @db.VarChar(200)
|
||||
type String @db.VarChar(50)
|
||||
name String @db.VarChar(200)
|
||||
description String @db.VarChar(500)
|
||||
parameters Json
|
||||
parameters Json
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
|
||||
|
|
@ -236,13 +242,13 @@ model Report {
|
|||
}
|
||||
|
||||
model Segment {
|
||||
id String @id() @unique() @map("segment_id") @db.Uuid
|
||||
websiteId String @map("website_id") @db.Uuid
|
||||
type String @db.VarChar(200)
|
||||
name String @db.VarChar(200)
|
||||
parameters Json
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
id String @id() @unique() @map("segment_id") @db.Uuid
|
||||
websiteId String @map("website_id") @db.Uuid
|
||||
type String @db.VarChar(50)
|
||||
name String @db.VarChar(200)
|
||||
parameters Json
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
|
||||
website Website @relation(fields: [websiteId], references: [id])
|
||||
|
||||
|
|
@ -251,14 +257,14 @@ model Segment {
|
|||
}
|
||||
|
||||
model Revenue {
|
||||
id String @id() @unique() @map("revenue_id") @db.Uuid
|
||||
websiteId String @map("website_id") @db.Uuid
|
||||
sessionId String @map("session_id") @db.Uuid
|
||||
eventId String @map("event_id") @db.Uuid
|
||||
eventName String @map("event_name") @db.VarChar(50)
|
||||
currency String @db.VarChar(100)
|
||||
revenue Decimal? @db.Decimal(19, 4)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
id String @id() @unique() @map("revenue_id") @db.Uuid
|
||||
websiteId String @map("website_id") @db.Uuid
|
||||
sessionId String @map("session_id") @db.Uuid
|
||||
eventId String @map("event_id") @db.Uuid
|
||||
eventName String @map("event_name") @db.VarChar(50)
|
||||
currency String @db.VarChar(10)
|
||||
revenue Decimal? @db.Decimal(19, 4)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
|
||||
website Website @relation(fields: [websiteId], references: [id])
|
||||
session Session @relation(fields: [sessionId], references: [id])
|
||||
|
|
@ -268,4 +274,45 @@ model Revenue {
|
|||
@@index([websiteId, createdAt])
|
||||
@@index([websiteId, sessionId, createdAt])
|
||||
@@map("revenue")
|
||||
}
|
||||
}
|
||||
|
||||
model Link {
|
||||
id String @id() @unique() @map("link_id") @db.Uuid
|
||||
name String @db.VarChar(100)
|
||||
url String @db.VarChar(500)
|
||||
slug String @unique() @db.VarChar(100)
|
||||
userId String? @map("user_id") @db.Uuid
|
||||
teamId String? @map("team_id") @db.Uuid
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6)
|
||||
|
||||
user User? @relation("user", fields: [userId], references: [id])
|
||||
team Team? @relation(fields: [teamId], references: [id])
|
||||
|
||||
@@index([slug])
|
||||
@@index([userId])
|
||||
@@index([teamId])
|
||||
@@index([createdAt])
|
||||
@@map("link")
|
||||
}
|
||||
|
||||
model Pixel {
|
||||
id String @id() @unique() @map("pixel_id") @db.Uuid
|
||||
name String @db.VarChar(100)
|
||||
slug String @unique() @db.VarChar(100)
|
||||
userId String? @map("user_id") @db.Uuid
|
||||
teamId String? @map("team_id") @db.Uuid
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
deletedAt DateTime? @map("deleted_at") @db.Timestamptz(6)
|
||||
|
||||
user User? @relation("user", fields: [userId], references: [id])
|
||||
team Team? @relation(fields: [teamId], references: [id])
|
||||
|
||||
@@index([slug])
|
||||
@@index([userId])
|
||||
@@index([teamId])
|
||||
@@index([createdAt])
|
||||
@@map("pixel")
|
||||
}
|
||||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browsers"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Change password"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Devices"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dismiss"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,18 +539,36 @@
|
|||
"value": "Event Data"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Events"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exit URL"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.false": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +611,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +635,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +671,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +713,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +737,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +767,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +791,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +869,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +905,12 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobile"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,42 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1065,12 @@
|
|||
"value": "Owner"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1107,36 @@
|
|||
"value": "Pages"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1155,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1231,12 @@
|
|||
"value": "Realtime"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1273,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1339,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1381,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1405,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1423,12 @@
|
|||
"value": "Settings"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1441,18 @@
|
|||
"value": "Single day"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1477,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1525,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1549,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1687,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1849,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1949,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2049,18 @@
|
|||
"value": "You do not have any websites configured."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2093,12 @@
|
|||
"value": "Saved."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1827,6 +2175,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1872,11 +2226,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "أضِف"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "أضف لوحة"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "مدير"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,12 @@
|
|||
"value": "تحليلات"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تطبيق"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -107,6 +125,12 @@
|
|||
"value": "قبل"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "لوحات"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +155,12 @@
|
|||
"value": "المتصفحات"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "حملات"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -143,6 +173,12 @@
|
|||
"value": "تغيير كلمة المرور"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "قنوات"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -161,12 +197,24 @@
|
|||
"value": "مسح الكل"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مجموعة"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "المقارنة"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "قارن التواريخ"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -185,12 +233,36 @@
|
|||
"value": "يحتوي على"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "المحتوى"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تابع"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تحويل"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "معدل التحويل"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "خطوة التحويل"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -245,6 +317,12 @@
|
|||
"value": "أُنشئ من قبل"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "العملة"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -359,18 +437,42 @@
|
|||
"value": "الأجهزة"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مباشر"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تجاهل"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "معرّف مميز"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "لا يحتوي على"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "لا يتضمن"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "غير موجود"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -401,6 +503,12 @@
|
|||
"value": "عدّل العضو"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -431,12 +539,24 @@
|
|||
"value": "تاريخ الحدث"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "اسم الحدث"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "الأحداث"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "موجود"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -485,6 +605,12 @@
|
|||
"value": "التصفيات"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "النقرة الأولى"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -503,6 +629,12 @@
|
|||
"value": "فهم معدل التحويل والانقطاع عن المستخدمين."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "قمعات"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -533,16 +665,28 @@
|
|||
"value": "أكبَر مِن أو يساوي"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "مجمع"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "اسم المضيف"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "يتضمن"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "رؤية معمقة"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -563,6 +707,12 @@
|
|||
"value": "يساوي"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "غير صحيح"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -581,6 +731,12 @@
|
|||
"value": "ضُبط"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "صحيح"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -605,6 +761,12 @@
|
|||
"value": "تعرّف على كيفية تنقّل المستخدمين داخل موقعك."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "رحلات المستخدم"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -623,6 +785,12 @@
|
|||
"value": "لابتوب"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "النقرة الأخيرة"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -695,6 +863,12 @@
|
|||
"value": "أقل مِن أو يساوي"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "روابط"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -725,6 +899,18 @@
|
|||
"value": "الحد الأقصى"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "توسيع"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "وسيط"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -749,6 +935,12 @@
|
|||
"value": "جوال"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "نموذج"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -782,7 +974,7 @@
|
|||
"label.none": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "غير معرّف"
|
||||
"value": "لا شيء"
|
||||
}
|
||||
],
|
||||
"label.number-of-records": [
|
||||
|
|
@ -801,7 +993,7 @@
|
|||
"value": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "record"
|
||||
"value": "سجل"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -809,7 +1001,7 @@
|
|||
"value": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "records"
|
||||
"value": "سجلات"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -825,12 +1017,48 @@
|
|||
"value": "نعم"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "بحث عضوي"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تسوق عضوي"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "اجتماعي عضوي"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "فيديو عضوي"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "نظام التشغيل"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "أخرى"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -843,6 +1071,12 @@
|
|||
"value": "المالك"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "صفحة"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,7 +1110,37 @@
|
|||
"label.pages": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "الصفحات"
|
||||
"value": "صفحات"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "إعلانات مدفوعة"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "بحث مدفوع"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تسوق مدفوع"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "اجتماعي مدفوع"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "فيديو مدفوع"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
|
|
@ -888,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "المسار"
|
||||
"value": "مسار"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "المسارات"
|
||||
"value": "مسارات"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "بكسلات"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -934,13 +1204,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "الخصائص"
|
||||
"value": "خصائص"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "الخاصية"
|
||||
"value": "خاصية"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -958,7 +1228,7 @@
|
|||
"label.query-parameters": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "متغيرات الرابط"
|
||||
"value": "معاملات الاستعلام"
|
||||
}
|
||||
],
|
||||
"label.realtime": [
|
||||
|
|
@ -967,6 +1237,12 @@
|
|||
"value": "الوقت الفعلي"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "إحالة"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1003,6 +1279,12 @@
|
|||
"value": "المناطق"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "متبقي"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1063,12 +1345,6 @@
|
|||
"value": "قم بإلقاء نظرة على بيانات إيراداتك وكيفية إنفاق المستخدمين."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "خاصية الإيرادات"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1111,6 +1387,12 @@
|
|||
"value": "حدد التاريخ"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "اختر تصفية"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1411,12 @@
|
|||
"value": "الزيارة"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "بيانات الجلسة"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1429,12 @@
|
|||
"value": "الإعدادات"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مشاركة"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1153,6 +1447,18 @@
|
|||
"value": "يوم واحد"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مصادر"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1225,6 +1531,12 @@
|
|||
"value": "مدير الفريق"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "إعدادات الفريق"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1243,6 +1555,12 @@
|
|||
"value": "الفرق"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مصطلحات"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1375,30 +1693,12 @@
|
|||
"value": "تحديث"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "الرابط"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "الروابط"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "المستخدم"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "سمات المستخدم"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1555,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1649,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1743,6 +2055,18 @@
|
|||
"value": "لم تقم بإعداد اي موقع."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1775,6 +2099,12 @@
|
|||
"value": "تم الحفظ بنجاح."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1829,6 +2159,12 @@
|
|||
"value": "أُطلق الحدث"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1874,11 +2210,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "أنخفض عدد الزوار"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Дадаць"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Дадаць дошку"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Адміністратар"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Партнёр"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Аналітыка"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ужыць"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Атрыбуцыя"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Глядзіце, як карыстальнікі ўзаемадзейнічаюць з вашым маркетынгам і што прыводзіць да канверсій."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Да"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Дошкі"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Браўзеры"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Кампаніі"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Змяніць пароль"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Каналы"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Ачысціць усё"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Кагорта"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Параўнаць"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Параўнаць даты"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Уключае"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Змест"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Працягнуць"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Канверсія"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Канверсійная стаўка"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Крок канверсіі"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Створана"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Валюта"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Прылады"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Прама"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Адхіліць"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Унікальны ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не ўключае"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не ўключае"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не існуе"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Рэдагаваць удзельніка"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Дадзеныя падзеі"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Назва падзеі"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Падзеі"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Існуе"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,10 +605,16 @@
|
|||
"value": "Фільтры"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Першы клік"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First seen"
|
||||
"value": "Першы раз убачана"
|
||||
}
|
||||
],
|
||||
"label.funnel": [
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Разумець паказчыкі канверсіі і адмоваў."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Варонкі"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Больш чым або роўна"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хост"
|
||||
"value": "Групаваны"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хасты"
|
||||
"value": "Імя хаста"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Уключае"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Інсайт"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "З'яўляецца"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ложна"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Устаноўлена"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Праўда"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Разумець як карыстальнікі навігуюць па сайце."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Маршруты"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Ноўтбук"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Апошні клік"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Менш чым або роўна"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Спасылкі"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Максімум"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Разгарнуць"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Сярэдні"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Мабільны"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Мадэль"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "ОК"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Арганічны пошук"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Арганічныя пакупкі"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Арганічныя сацыяльныя сеткі"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Арганічнае відэа"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Аперацыйная сістэма"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Іншае"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Уласнік"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Старонка"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Старонкі"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платная рэклама"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платаны пошук"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платныя пакупкі"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платныя сацыяльныя сеткі"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платнае відэа"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Шлях"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Шляхи"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Пікселі"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -922,7 +1204,7 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Уласцівасці"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "У рэяльным часе"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Рэферал"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Рэгіёны"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Засталося"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Выбраць дату"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Выбраць фільтр"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1114,7 +1408,13 @@
|
|||
"label.session": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session"
|
||||
"value": "Сесія"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Дадзеныя сесіі"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Налады"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Падзяліцца"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Адзін дзень"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Крыніцы"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Планшэт"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Уласнік каманды"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Налады каманды"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Каманды"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Тэрміны"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Абнавіць"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Карыстальнік"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Вы не наладзілі ніводнага сайта."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Захавана паспяхова."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2167,12 @@
|
|||
"value": "Падзея якая спрацавала"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2218,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Наведвальнікі сышлі"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Добави"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Добави дъска"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Администратор"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Партньор"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Анализи"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Приложи"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Атрибуция"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Вижте как потребителите взаимодействат с вашия маркетинг и какво води до конверсии."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Преди"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Дъски"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Браузъри"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Кампании"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Смени парола"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Канали"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,10 +197,22 @@
|
|||
"value": "Изчисти всички"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Кохорта"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
"value": "Сравни"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Сравни дати"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
|
|
@ -173,16 +233,40 @@
|
|||
"value": "Съдържа"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Съдържание"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Продължи"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Конверсия"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Процент на конверсия"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Стъпка на конверсия"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Count"
|
||||
"value": "Брой"
|
||||
}
|
||||
],
|
||||
"label.countries": [
|
||||
|
|
@ -233,10 +317,16 @@
|
|||
"value": "Създадено от"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Валута"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Current"
|
||||
"value": "Текущ"
|
||||
}
|
||||
],
|
||||
"label.current-password": [
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Устройства"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Директно"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Отхвърли"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Уникален ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не съдържа"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не включва"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не съществува"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Редактирай член"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Имейл"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -398,13 +518,13 @@
|
|||
"label.end-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "End Step"
|
||||
"value": "Крайна стъпка"
|
||||
}
|
||||
],
|
||||
"label.entry": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Entry URL"
|
||||
"value": "URL на вход"
|
||||
}
|
||||
],
|
||||
"label.event": [
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Данни за събитие"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Име на събитие"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Събития"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Съществува"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,10 +605,16 @@
|
|||
"value": "Филтри"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Първо кликване"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First seen"
|
||||
"value": "Първо видяно"
|
||||
}
|
||||
],
|
||||
"label.funnel": [
|
||||
|
|
@ -491,22 +629,28 @@
|
|||
"value": "Разберете процента на конверсия и отпадане на потребителите."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Фунии"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goal"
|
||||
"value": "Цел"
|
||||
}
|
||||
],
|
||||
"label.goals": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goals"
|
||||
"value": "Цели"
|
||||
}
|
||||
],
|
||||
"label.goals-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Track your goals for pageviews and events."
|
||||
"value": "Следете целите си за прегледи на страници и събития."
|
||||
}
|
||||
],
|
||||
"label.greater-than": [
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "По-голямо или равно на"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Групирано"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Име на хост"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Включва"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Прозрение"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Е"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Грешно"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Зададено е"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Вярно"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -584,13 +752,19 @@
|
|||
"label.journey": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journey"
|
||||
"value": "Пътешествие"
|
||||
}
|
||||
],
|
||||
"label.journey-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Understand how users navigate through your website."
|
||||
"value": "Разберете как потребителите навигират във вашия уебсайт."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Пътешествия"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Лаптоп"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Последно кликване"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "По-малко или равно на"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Връзки"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -704,7 +890,7 @@
|
|||
"label.manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Manager"
|
||||
"value": "Мениджър"
|
||||
}
|
||||
],
|
||||
"label.max": [
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Максимум"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Разшири"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Среден"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Мобилен"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Модел"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "Добре"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органично търсене"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органично пазаруване"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органични социални мрежи"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органично видео"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ОС"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Друго"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Собственик"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Страница"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Страници"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платени реклами"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платено търсене"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платено пазаруване"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платени социални мрежи"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платено видео"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Път"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Пътища"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Пиксели"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -922,13 +1204,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Свойства"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Свойство"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "В реално време"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Реферал"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Региони"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Оставащи"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Избери дата"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Избери филтър"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1114,7 +1408,13 @@
|
|||
"label.session": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session"
|
||||
"value": "Сесия"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Данни за сесия"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Настройки"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Сподели"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,10 +1447,22 @@
|
|||
"value": "Един ден"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Източници"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Start Step"
|
||||
"value": "Начална стъпка"
|
||||
}
|
||||
],
|
||||
"label.steps": [
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Таблет"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Етикет"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Етикети"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1180,7 +1510,7 @@
|
|||
"label.team-manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team manager"
|
||||
"value": "Мениджър на екип"
|
||||
}
|
||||
],
|
||||
"label.team-member": [
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Собственик на екипа"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Настройки на екипа"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Екипи"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Термини"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Актуализирай"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL адрес"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL адреси"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Потребител"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Нямате конфигурирани уебсайтове."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Запазено."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1819,6 +2173,12 @@
|
|||
"value": "Активирано събитие"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1864,11 +2224,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Спад на посетителите"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Dodaj"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dodaj ploču"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partner"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analitike"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Primijeni"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atribucija"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pogledajte kako korisnici komuniciraju s vašim marketingom i šta dovodi do konverzija."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,10 +125,16 @@
|
|||
"value": "Prije"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ploče"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bounce rate"
|
||||
"value": "Stopa napuštanja"
|
||||
}
|
||||
],
|
||||
"label.breakdown": [
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browseri"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampanje"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Promijeni šifru"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanali"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,10 +197,22 @@
|
|||
"value": "Očisti sve"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kohorta"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
"value": "Uporedi"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uporedi datume"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
|
|
@ -173,16 +233,40 @@
|
|||
"value": "Sadrži"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sadržaj"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nastavi"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konverzija"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Stopa konverzije"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Korak konverzije"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Count"
|
||||
"value": "Broj"
|
||||
}
|
||||
],
|
||||
"label.countries": [
|
||||
|
|
@ -233,10 +317,16 @@
|
|||
"value": "Kreirao"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Valuta"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Current"
|
||||
"value": "Trenutno"
|
||||
}
|
||||
],
|
||||
"label.current-password": [
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Uređaji"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direktno"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Odbaci"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Jedinstveni ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ne sadrži"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ne uključuje"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ne postoji"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -368,7 +482,7 @@
|
|||
"label.dropoff": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dropoff"
|
||||
"value": "Odlazak"
|
||||
}
|
||||
],
|
||||
"label.edit": [
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Uredi člana"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "E-mail"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -398,13 +518,13 @@
|
|||
"label.end-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "End Step"
|
||||
"value": "Završni korak"
|
||||
}
|
||||
],
|
||||
"label.entry": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Entry URL"
|
||||
"value": "URL ulaza"
|
||||
}
|
||||
],
|
||||
"label.event": [
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Podaci o događaju"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Naziv događaja"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Događaji"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Postoji"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,10 +605,16 @@
|
|||
"value": "Filtri"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Prvi klik"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First seen"
|
||||
"value": "Prvi put viđeno"
|
||||
}
|
||||
],
|
||||
"label.funnel": [
|
||||
|
|
@ -491,22 +629,28 @@
|
|||
"value": "Razumite koverziju i drop-off učestalost korisnika."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lijevci"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goal"
|
||||
"value": "Cilj"
|
||||
}
|
||||
],
|
||||
"label.goals": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goals"
|
||||
"value": "Ciljevi"
|
||||
}
|
||||
],
|
||||
"label.goals-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Track your goals for pageviews and events."
|
||||
"value": "Pratite svoje ciljeve za prikaze stranica i događaje."
|
||||
}
|
||||
],
|
||||
"label.greater-than": [
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Veće od ili jednako"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grupisano"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Naziv hosta"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uključuje"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uvid"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Jeste"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nije tačno"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Jeste setano"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tačno"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -584,13 +752,19 @@
|
|||
"label.journey": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journey"
|
||||
"value": "Putovanje"
|
||||
}
|
||||
],
|
||||
"label.journey-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Understand how users navigate through your website."
|
||||
"value": "Saznajte kako korisnici navigiraju vašom web stranicom."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Putovanja"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zadnji klik"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Manje od ili jednako"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Linkovi"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -704,7 +890,7 @@
|
|||
"label.manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Manager"
|
||||
"value": "Menadžer"
|
||||
}
|
||||
],
|
||||
"label.max": [
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Proširi"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Srednje"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobile"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -770,7 +974,7 @@
|
|||
"label.none": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "None"
|
||||
"value": "Nijedno"
|
||||
}
|
||||
],
|
||||
"label.number-of-records": [
|
||||
|
|
@ -789,7 +993,7 @@
|
|||
"value": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "record"
|
||||
"value": "zapis"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -797,7 +1001,7 @@
|
|||
"value": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "records"
|
||||
"value": "zapisa"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organska pretraga"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organska kupovina"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organske društvene mreže"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organski video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Drugo"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Vlasnik"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Stranica"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Stranice"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plaćeni oglasi"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plaćena pretraga"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plaćena kupovina"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plaćene društvene mreže"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plaćeni video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Putanja"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Putanje"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pikseli"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -922,31 +1204,31 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Svojstva"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Svojstvo"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Queryji"
|
||||
"value": "Upiti"
|
||||
}
|
||||
],
|
||||
"label.query": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Query"
|
||||
"value": "Upit"
|
||||
}
|
||||
],
|
||||
"label.query-parameters": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Query parametri"
|
||||
"value": "Parametri upita"
|
||||
}
|
||||
],
|
||||
"label.realtime": [
|
||||
|
|
@ -955,22 +1237,28 @@
|
|||
"value": "Realno vrijeme"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Preporuka"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referrer"
|
||||
"value": "Preporučilac"
|
||||
}
|
||||
],
|
||||
"label.referrers": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referrers"
|
||||
"value": "Preporučioci"
|
||||
}
|
||||
],
|
||||
"label.refresh": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Refresh"
|
||||
"value": "Osvježi"
|
||||
}
|
||||
],
|
||||
"label.regenerate": [
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regioni"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Preostalo"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1012,7 +1306,7 @@
|
|||
"label.required": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Required"
|
||||
"value": "Obavezno"
|
||||
}
|
||||
],
|
||||
"label.reset": [
|
||||
|
|
@ -1030,7 +1324,7 @@
|
|||
"label.retention": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Retention"
|
||||
"value": "Zadržavanje"
|
||||
}
|
||||
],
|
||||
"label.retention-description": [
|
||||
|
|
@ -1042,19 +1336,13 @@
|
|||
"label.revenue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue"
|
||||
"value": "Prihod"
|
||||
}
|
||||
],
|
||||
"label.revenue-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
"value": "Pogledajte svoje prihode tokom vremena."
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Odaberi datum"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Odaberi filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1114,7 +1408,13 @@
|
|||
"label.session": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session"
|
||||
"value": "Sesija"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Podaci o sesiji"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
|
|
@ -1129,10 +1429,16 @@
|
|||
"value": "Postavke"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Podijeli"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share URL"
|
||||
"value": "URL za dijeljenje"
|
||||
}
|
||||
],
|
||||
"label.single-day": [
|
||||
|
|
@ -1141,10 +1447,22 @@
|
|||
"value": "Jedan dan"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Izvori"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Start Step"
|
||||
"value": "Početni korak"
|
||||
}
|
||||
],
|
||||
"label.steps": [
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Oznaka"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Oznake"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1180,7 +1510,7 @@
|
|||
"label.team-manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team manager"
|
||||
"value": "Menadžer tima"
|
||||
}
|
||||
],
|
||||
"label.team-member": [
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Vlasnik tima"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Postavke tima"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Timovi"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pojmovi"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Korisnik"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Nemate iskonfigurisanu nijednu web stranicu."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Sačuvano."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1819,6 +2173,12 @@
|
|||
"value": "Trigerovani događaj"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1864,11 +2224,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Posjetitelji koji su napustili stranicu"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Afegir"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afegir tauler"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrador"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afiliat"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analítiques"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Aplica"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atribució"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vegeu com els usuaris interactuen amb el vostre màrqueting i què impulsa les conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Abans"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Taulers"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Navegadors"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campanyes"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Canvia la contrasenya"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Canals"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Netejar tot"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparar"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparar dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Conté"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Contingut"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continuar"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversió"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Taxa de conversió"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pas de conversió"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Creat Per"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Moneda"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Dispositius"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Directe"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Descarta"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ID distintiu"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "No conté"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "No inclou"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "No existeix"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edita membre"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Dades de l'esdeveniment"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nom de l'esdeveniment"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Esdeveniments"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existeix"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filtres"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Primer clic"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Entengui la taxa de conversió i abandonament dels usuaris."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Embuts"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Més gran que o igual a"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Amfitrió"
|
||||
"value": "Agrupat"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Amfitrions"
|
||||
"value": "Nom de host"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inclou"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visió"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "És igual a"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "És fals"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Està establert"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "És cert"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Entengui com naveguen els usuaris pel seu lloc web."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Trajectes"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Portàtil"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Últim clic"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Menor que o igual a"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Enllaços"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -704,7 +890,7 @@
|
|||
"label.manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Manager"
|
||||
"value": "Responsable"
|
||||
}
|
||||
],
|
||||
"label.max": [
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Màx"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expandeix"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Mitjà"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mòbil"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cerca orgànica"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compra orgànica"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social orgànic"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vídeo orgànic"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SO"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Altres"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Propietari"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pàgina"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Pàgines"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Anuncis de pagament"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cerca de pagament"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compra de pagament"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social de pagament"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vídeo de pagament"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Camins"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Temps real"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referència"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Restant"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Observi els seus ingressos al llarg del temps."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Propietat d'Ingressos"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Seleccionar data"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Seleccionar filtre"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Sessió"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dades de sessió"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Configuració"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparteix"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Un sol dia"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Fonts"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tauleta"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etiqueta"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etiquetes"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Propietari de l'equip"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Configuració de l'equip"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Equips"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Termes"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Actualitzar"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Usuari"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Propietat d'Usuari"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "No hi ha cap lloc web configurat."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "S'ha desat amb èxit."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2167,12 @@
|
|||
"value": "Esdeveniment desencadenat"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2218,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitants han sortit"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "hinzuefüege"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Board hinzuefüege"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partnerprogramm"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -74,7 +86,25 @@
|
|||
"label.analytics": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Analytics"
|
||||
"value": "Analytik"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Aawände"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zuordnig"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lueg wie d'Benutzer mit dim Marketing interagiere und was zu Umwandlige führt."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Vor"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browser"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampagne"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Passwort ändere"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanäle"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Alles lösche"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Gruppe"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vergliiche"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Datum vergleiche"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Enthaltet"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inhalt"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Wiiter"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Umwandlig"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Umwandligsrate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Umwandligsschritt"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -230,7 +314,13 @@
|
|||
"label.created-by": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Created By"
|
||||
"value": "Erstellt vo"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Währung"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Grät"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direkt"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Verwärfe"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eindeutigi ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Enthaltet nid"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Isch nid debii"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existiert nid"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Mitglied bearbeite"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Ereigniss Date"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ereignissname"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ereigniss"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existiert"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Erste Klick"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Verstönd Sie d Konversions- und Abspruungsrate vo Nutzer."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Grösser oder gliich"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Gruppiert"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostnam"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Isch debii"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Iiblick"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Isch"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Isch falsch"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Isch gsetzt"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Isch wahr"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Verstönd Sie, wie Nutzer dur Ihri Website navigiered."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Reise"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Letzte Klick"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Kliiner oder gliich"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uusklappe"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Händy"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organischi Suechi"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organischi Iikauf"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organischi Social Media"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organischi Video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Anderi"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Bsitzer"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Siite"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Siite"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahlti Werbung"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahlti Suechi"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahlti Iikauf"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahlti Social Media"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahlti Video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Pfade"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixel"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -922,13 +1204,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Eigeschafte"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Eigeschafte"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Echtzit"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Empfehlig"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regionä"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Verblibe"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Lueged Sie sich Ihre Umsatz im Lauf vor Ziit a."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Umsatzeigenschafte"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Datä uuswähle"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Filter uuswähle"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Sitzig"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sitzigsdate"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Istellige"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Teile"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Ein Tag"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Quälle"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Stichwort"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team Bsitzer"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team Istellige"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bedingige"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Benutzer"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Benutzereigeschafte"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Es isch kei Websiite vorhande."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Erfolgrich gspeichert."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1805,6 +2159,12 @@
|
|||
"value": "Usglösts Ereigniss"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1850,11 +2210,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bsuercher verlore"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Hinzufügen"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Board hinzufügen"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partnerprogramm"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analysen"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Anwenden"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zuordnung"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sehen Sie, wie Nutzer mit Ihrem Marketing interagieren und was zu Konversionen führt."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Vor"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browser"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampagnen"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Passwort ändern"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanäle"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Alles löschen"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Gruppe"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vergleichen"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Daten vergleichen"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Enthält"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inhalt"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Weiter"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konversionsrate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konversionsschritt"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Erstellt von"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Währung"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Geräte"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direkt"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Verwerfen"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eindeutige ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Enthält nicht"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nicht enthalten"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existiert nicht"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Mitglied bearbeiten"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Ereignisdaten"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ereignisname"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ereignisse"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existiert"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filter"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Erster Klick"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Verstehen Sie die Konversions- und Absprungrate Ihrer Nutzer."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Größer oder gleich"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Gruppiert"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Enthält"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Einblick"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Ist"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ist falsch"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Ist gesetzt"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ist wahr"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Verstehen Sie, wie Nutzer auf Ihrer Website navigieren."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Reisen"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Letzter Klick"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Kleiner oder gleich"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Erweitern"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Handy"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organische Suche"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisches Shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisches Social Media"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisches Video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Andere"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Besitzer"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Seite"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Seiten"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahlte Anzeigen"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahlte Suche"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahltes Shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahltes Social Media"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezahltes Video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Pfade"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixel"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -928,7 +1210,7 @@
|
|||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eigentum"
|
||||
"value": "Eigenschaft"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Echtzeit"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Empfehlung"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regionen"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Verbleibend"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Haben Sie einen Blick auf Ihre Umsätze im Laufe der Zeit."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Umsatzeigenschaften"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Datum auswählen"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Filter auswählen"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Sitzung"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sitzungsdaten"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Einstellungen"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Teilen"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Ein Tag"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Quellen"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Stichworte"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team-Eigentümer"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team-Einstellungen"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bedingungen"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Benutzer"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Benutzereigenschaften"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1715,6 +2051,18 @@
|
|||
"value": "Es ist keine Website vorhanden."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1747,6 +2095,12 @@
|
|||
"value": "Erfolgreich gespeichert."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1801,6 +2155,12 @@
|
|||
"value": "Ereignis ausgelöst"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1846,11 +2206,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Besucherverlust"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Διαχειριστής"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Προγράμματα περιήγησης"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Αλλαγή κωδικού"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Συσκευές"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dismiss"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Event data"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Γεγονότα"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Λάπτοπ"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Κινητό"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Owner"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Σελίδες"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Realtime"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Ρυθμίσεις"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Ημερήσια"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Τάμπλετ"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Δεν έχετε ρυθμίσει κανένα ιστότοπο."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Αποθηκεύτηκε επιτυχώς."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2167,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2218,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browsers"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Change password"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Devices"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dismiss"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Event data"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Events"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobile"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Owner"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Pages"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Realtime"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Settings"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Single day"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "You don't have any websites configured."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Saved successfully."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2167,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2218,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -50,7 +56,13 @@
|
|||
"label.admin": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Administrator"
|
||||
"value": "Admin"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browsers"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Change password"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Devices"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dismiss"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -404,7 +524,7 @@
|
|||
"label.entry": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Entry path"
|
||||
"value": "Entry page"
|
||||
}
|
||||
],
|
||||
"label.event": [
|
||||
|
|
@ -419,16 +539,28 @@
|
|||
"value": "Event data"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Events"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exit path"
|
||||
"value": "Exit page"
|
||||
}
|
||||
],
|
||||
"label.false": [
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Maximize"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobile"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Owner"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Pages"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Realtime"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1048,13 +1342,7 @@
|
|||
"label.revenue-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
"value": "Look into your revenue data and how users are spending."
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Settings"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Single day"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "You do not have any websites configured."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Saved."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1819,6 +2173,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1864,11 +2224,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Añadir"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Añadir tablero"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrador"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afiliado"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analíticas"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Aplicar"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atribución"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vea cómo los usuarios interactúan con su marketing y qué impulsa las conversiones."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Antes"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tableros"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Navegadores"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campañas"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Cambiar contraseña"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Canales"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Limpiar todo"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohorte"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparar"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparar fechas"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contiene"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Contenido"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continuar"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversión"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tasa de conversión"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paso de conversión"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Creado por"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Moneda"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Dispositivos"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Directo"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cerrar"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ID distinto"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "No contiene"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "No incluye"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "No existe"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Editar miembro"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Datos de evento"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nombre del evento"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eventos"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existe"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,10 +605,16 @@
|
|||
"value": "Filtros"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Primer clic"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visto por primera vez"
|
||||
"value": "Primera vez visto"
|
||||
}
|
||||
],
|
||||
"label.funnel": [
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Comprender conversión y abandono de usuarios."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Embudos"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,22 +665,34 @@
|
|||
"value": "Mayor que o igual a"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Agrupado"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Nombre de host"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Incluye"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Perspectiva"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insights"
|
||||
"value": "Perspectivas"
|
||||
}
|
||||
],
|
||||
"label.insights-description": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Es igual a"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Es falso"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Está establecido"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Es verdadero"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Comprenda cómo los usuarios navegan por su sitio web."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Viajes"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Portátil"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Último clic"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Menor que o igual a"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Enlaces"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -704,13 +890,25 @@
|
|||
"label.manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Manager"
|
||||
"value": "Gerente"
|
||||
}
|
||||
],
|
||||
"label.max": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Max"
|
||||
"value": "Máximo"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expandir"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medio"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
|
|
@ -728,7 +926,7 @@
|
|||
"label.min": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Min"
|
||||
"value": "Mínimo"
|
||||
}
|
||||
],
|
||||
"label.mobile": [
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Móvil"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Modelo"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Búsqueda orgánica"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compras orgánicas"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social orgánico"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Video orgánico"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sistema"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Otro"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Propietario"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Página"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Páginas"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Anuncios pagados"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Búsqueda pagada"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compras pagadas"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social pagado"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Video pagado"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Ruta"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Rutas"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Píxeles"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -946,7 +1228,7 @@
|
|||
"label.query-parameters": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Parámetros de petición"
|
||||
"value": "Parámetros de consulta"
|
||||
}
|
||||
],
|
||||
"label.realtime": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Tiempo real"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referencia"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regiones"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Restante"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1393,12 @@
|
|||
"value": "Seleccionar fecha"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Seleccionar filtro"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Ajustes"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compartir"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,10 +1447,22 @@
|
|||
"value": "Un solo día"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Fuentes"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paso inical"
|
||||
"value": "Paso inicial"
|
||||
}
|
||||
],
|
||||
"label.steps": [
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tableta"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etiqueta"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etiquetas"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Admin. del equipo"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Configuración del equipo"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Equipos"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Términos"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,18 +1693,6 @@
|
|||
"value": "Actualizar"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1861,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1961,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2061,18 @@
|
|||
"value": "No tienes ningún sitio web configurado."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2105,12 @@
|
|||
"value": "Guardado"
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2173,12 @@
|
|||
"value": "Evento lanzado"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2224,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Los visitantes salieron"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "افزودن"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "افزودن برد"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "مدیر"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "همکار فروش"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "تجزیه و تحلیل"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "اعمال"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "انتساب"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ببینید کاربران چگونه با بازاریابی شما تعامل دارند و چه چیزی باعث تبدیل میشود."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "قبل از"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "بردها"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "مرورگرها"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "کمپینها"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "تغییر رمز"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "کانالها"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "پاک کردن همه"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "گروه"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مقایسه"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مقایسه تاریخها"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "شامل"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "محتوا"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ادامه"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تبدیل"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "نرخ تبدیل"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "گام تبدیل"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "ایجاد شده توسط"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "واحد پول"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "دستگاهها"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مستقیم"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "رد کردن"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "شناسه یکتا"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "شامل نمیشود"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "شامل نمیشود"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "وجود ندارد"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "ویرایش عضو"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ایمیل"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "دادههای رویداد"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "نام رویداد"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "رویدادها"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "وجود دارد"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "فیلترها"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "اولین کلیک"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "نرخ تبدیل و رها کردن کاربران را درک کنید."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "قیفها"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "بزرگتر یا مساوی"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "هاست"
|
||||
"value": "گروهبندی شده"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "هاستها"
|
||||
"value": "نام میزبان"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "شامل میشود"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "بینش"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "برابر است با"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "نادرست است"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "تعیین شده"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "درست است"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "درک کنید که کاربران چگونه در وبسایت شما حرکت می کنند."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مسیرها"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "لپتاپ"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "آخرین کلیک"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -671,6 +851,12 @@
|
|||
"value": "کمتر یا مساوی"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "لینکها"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -701,6 +887,18 @@
|
|||
"value": "حداکثر"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "گسترش"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "متوسط"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -725,6 +923,12 @@
|
|||
"value": "موبایل"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "مدل"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -801,12 +1005,48 @@
|
|||
"value": "تایید"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "جستجوی ارگانیک"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "خرید ارگانیک"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "شبکه اجتماعی ارگانیک"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ویدیوی ارگانیک"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "سیستم عامل"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "سایر"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -819,6 +1059,12 @@
|
|||
"value": "مالک"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "صفحه"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -855,6 +1101,36 @@
|
|||
"value": "صفحهها"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تبلیغات پولی"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "جستجوی پولی"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "خرید پولی"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "شبکه اجتماعی پولی"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ویدیوی پولی"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -873,6 +1149,12 @@
|
|||
"value": "مسیرها"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "پیکسلها"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -943,6 +1225,12 @@
|
|||
"value": "آمار زنده"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ارجاع"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -979,6 +1267,12 @@
|
|||
"value": "مناطق"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "باقیمانده"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1039,12 +1333,6 @@
|
|||
"value": "به درآمد خود در طول زمان نگاه کنید."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ویژگی درآمد"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1087,6 +1375,12 @@
|
|||
"value": "انتخاب تاریخ"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "انتخاب فیلتر"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1105,6 +1399,12 @@
|
|||
"value": "نشست"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "دادههای نشست"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1417,12 @@
|
|||
"value": "تنظیمات"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "اشتراکگذاری"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1435,18 @@
|
|||
"value": "یک روز"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "منابع"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1153,6 +1471,18 @@
|
|||
"value": "تبلت"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "برچسب"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "برچسبها"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1189,6 +1519,12 @@
|
|||
"value": "مالک تیم"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "تنظیمات تیم"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1207,6 +1543,12 @@
|
|||
"value": "تیمها"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "شرایط"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1339,30 +1681,12 @@
|
|||
"value": "بهروزرسانی"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "آدرس اینترنتی"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "آدرسهای اینترنتی"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "کاربر"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ویژگی کاربر"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1519,6 +1843,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1613,6 +1943,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1707,6 +2043,18 @@
|
|||
"value": "شما هیچ وبسایتی را پیکربندی نکردهاید."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1739,6 +2087,12 @@
|
|||
"value": "ذخیره شد."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1793,6 +2147,12 @@
|
|||
"value": "رویداد فعال شده"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1838,11 +2198,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ریزش بازدیدکنندهها"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Ajouter"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ajouter un tableau"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -80,7 +86,13 @@
|
|||
"label.analytics": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Analytics"
|
||||
"value": "Analytique"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Appliquer"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
|
|
@ -113,6 +125,12 @@
|
|||
"value": "Avant"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tableaux"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -179,12 +197,24 @@
|
|||
"value": "Réinitialiser"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohorte"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparer"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparer les dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -215,6 +245,18 @@
|
|||
"value": "Continuer"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Taux de conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -407,12 +449,30 @@
|
|||
"value": "Ignorer"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ID distinct"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ne contient pas"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "N'inclut pas"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "N'existe pas"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -479,12 +539,24 @@
|
|||
"value": "Données d'évènements"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nom de l'évènement"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Évènements"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existe"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -533,6 +605,12 @@
|
|||
"value": "Filtres"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Premier clic"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -551,6 +629,12 @@
|
|||
"value": "Comprenez les taux de conversions et d'abandons des utilisateurs."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Entonnoirs"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -587,22 +671,28 @@
|
|||
"value": "Groupé"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hôte"
|
||||
"value": "Nom d'hôte"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hôtes"
|
||||
"value": "Inclut"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Aperçu"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insights"
|
||||
"value": "Aperçus"
|
||||
}
|
||||
],
|
||||
"label.insights-description": [
|
||||
|
|
@ -617,6 +707,12 @@
|
|||
"value": "Est"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Est faux"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -635,6 +731,12 @@
|
|||
"value": "Est défini"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Est vrai"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -659,6 +761,12 @@
|
|||
"value": "Comprennez comment les utilisateurs naviguent sur votre site."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Parcours"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -677,6 +785,12 @@
|
|||
"value": "Portable"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dernier clic"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -737,6 +851,12 @@
|
|||
"value": "Inférieur ou égal à"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Liens"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -758,7 +878,7 @@
|
|||
"label.manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Manager"
|
||||
"value": "Gestionnaire"
|
||||
}
|
||||
],
|
||||
"label.max": [
|
||||
|
|
@ -767,10 +887,16 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Développer"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Support"
|
||||
"value": "Moyen"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
|
|
@ -879,6 +1005,12 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -888,7 +1020,7 @@
|
|||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "E-commerce organique"
|
||||
"value": "Achat organique"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
|
|
@ -927,6 +1059,12 @@
|
|||
"value": "Propriétaire"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -978,7 +1116,7 @@
|
|||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "E-commerce payant"
|
||||
"value": "Achat payant"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
|
|
@ -1011,6 +1149,12 @@
|
|||
"value": "Chemins"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1123,6 +1267,12 @@
|
|||
"value": "Régions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Restant"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1174,13 +1324,13 @@
|
|||
"label.revenue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Recettes"
|
||||
"value": "Revenus"
|
||||
}
|
||||
],
|
||||
"label.revenue-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Examinez vos recettes et comment dépensent vos utilisateurs."
|
||||
"value": "Consultez vos revenus au fil du temps."
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
|
|
@ -1204,7 +1354,7 @@
|
|||
"label.screens": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Résolutions d'écran"
|
||||
"value": "Écrans"
|
||||
}
|
||||
],
|
||||
"label.search": [
|
||||
|
|
@ -1225,6 +1375,12 @@
|
|||
"value": "Choisir une période"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sélectionner un filtre"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1246,7 +1402,7 @@
|
|||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
"value": "Données de session"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
|
|
@ -1261,6 +1417,12 @@
|
|||
"value": "Paramètres"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partager"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1312,13 +1474,13 @@
|
|||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
"value": "Étiquette"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
"value": "Étiquettes"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
|
|
@ -1357,6 +1519,12 @@
|
|||
"value": "Propriétaire de l'équipe"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1513,18 +1681,6 @@
|
|||
"value": "Modifier"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1691,6 +1847,12 @@
|
|||
"value": " actuellement"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1785,6 +1947,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1879,6 +2047,18 @@
|
|||
"value": "Vous n'avez pas configuré de site."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1911,6 +2091,12 @@
|
|||
"value": "Enregistré."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1965,6 +2151,12 @@
|
|||
"value": "Évènement déclenché"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -2010,11 +2202,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visiteurs ont abandonné"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Engadir"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Engadir taboleiro"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,10 +59,16 @@
|
|||
"value": "Administrador/a"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afiliado"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "After"
|
||||
"value": "Despois"
|
||||
}
|
||||
],
|
||||
"label.all": [
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analíticas"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Aplicar"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atribución"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vexa como os usuarios interactúan co seu márketing e que impulsa as conversións."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Antes"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Taboleiros"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Navegadores"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campañas"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Mudar contrasinal"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Canles"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -146,7 +194,13 @@
|
|||
"label.clear-all": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Clear all"
|
||||
"value": "Limpar todo"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohorte"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
|
|
@ -155,6 +209,12 @@
|
|||
"value": "Comparar"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparar datas"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contén"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Contido"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continuar"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversión"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Taxa de conversión"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paso de conversión"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -206,19 +290,19 @@
|
|||
"label.create-report": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Crear report"
|
||||
"value": "Crear informe"
|
||||
}
|
||||
],
|
||||
"label.create-team": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Crear team"
|
||||
"value": "Crear equipo"
|
||||
}
|
||||
],
|
||||
"label.create-user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Crear user"
|
||||
"value": "Crear usuario"
|
||||
}
|
||||
],
|
||||
"label.created": [
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Creado por"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Moeda"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Dispositivos"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Directo"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Desbotar"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ID distinto"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Non contén"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Non inclúe"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Non existe"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Editar membro"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Correo electrónico"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -398,13 +518,13 @@
|
|||
"label.end-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "End Step"
|
||||
"value": "Paso final"
|
||||
}
|
||||
],
|
||||
"label.entry": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Entry URL"
|
||||
"value": "URL de entrada"
|
||||
}
|
||||
],
|
||||
"label.event": [
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Datos do evento"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nome do evento"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eventos"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existe"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filtros"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Primeiro clic"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -482,7 +620,7 @@
|
|||
"label.funnel": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnel"
|
||||
"value": "Funil"
|
||||
}
|
||||
],
|
||||
"label.funnel-description": [
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Entende a taxa de conversión e de abandono dos usuarios."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funís"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,28 +665,40 @@
|
|||
"value": "Maior ou igual que"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dominio"
|
||||
"value": "Agrupado"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dominios"
|
||||
"value": "Nome do host"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inclúe"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Información"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insights"
|
||||
"value": "Informacións"
|
||||
}
|
||||
],
|
||||
"label.insights-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dive deeper into your data by using segments and filters."
|
||||
"value": "Afonda nos teus datos usando segmentos e filtros."
|
||||
}
|
||||
],
|
||||
"label.is": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "É"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "É falso"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Está establecido"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "É verdadeiro"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Entende como os usuarios navegan polo teu sitio web."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Traxectorias"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Portátil"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Último clic"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Menor ou igual que"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ligazóns"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expandir"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medio"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Móbil"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Modelo"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -770,7 +974,7 @@
|
|||
"label.none": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "None"
|
||||
"value": "Ningún"
|
||||
}
|
||||
],
|
||||
"label.number-of-records": [
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Busca orgánica"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compra orgánica"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social orgánico"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vídeo orgánico"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sistema operativo"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Outro"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Propietario/a"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Páxina"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Páxinas"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Anuncios de pago"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Busca de pago"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compra de pago"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social de pago"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vídeo de pago"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Rutas"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Píxeles"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Agora mesmo"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referencia"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Rexións"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Restante"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1059,12 +1353,6 @@
|
|||
"value": "Consulta os teus ingresos ao longo do tempo."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1107,6 +1395,12 @@
|
|||
"value": "Seleccionar data"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Seleccionar filtro"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1125,6 +1419,12 @@
|
|||
"value": "Sesión"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Datos da sesión"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1137,6 +1437,12 @@
|
|||
"value": "Axustes"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compartir"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1149,6 +1455,18 @@
|
|||
"value": "Un só día"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Fontes"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1173,6 +1491,18 @@
|
|||
"value": "Tableta"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etiqueta"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etiquetas"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1209,6 +1539,12 @@
|
|||
"value": "Propietario do equipo"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Axustes do equipo"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1227,6 +1563,12 @@
|
|||
"value": "Equipos"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Termos"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1359,30 +1701,12 @@
|
|||
"value": "Actualizar"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Usuario"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Propiedade do usuario"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1539,6 +1863,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1633,6 +1963,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1727,6 +2063,18 @@
|
|||
"value": "Non tes sitios web configurados."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1759,6 +2107,12 @@
|
|||
"value": "Gardouse correctamente."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1821,6 +2175,12 @@
|
|||
"value": "Activou o evento"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1866,11 +2226,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitantes abandonados"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Tambah"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tambah papan"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Pengelola"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afiliasi"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analitik"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terapkan"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atribusi"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lihat bagaimana pengguna berinteraksi dengan pemasaran Anda dan apa yang mendorong konversi."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Sebelum"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Papan"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Peramban"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampanye"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Ganti kata sandi"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Saluran"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Hapus semua"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kelompok"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bandingkan"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bandingkan tanggal"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Mengandung"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konten"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lanjutkan"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konversi"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tingkat konversi"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Langkah konversi"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Dibuat oleh"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Mata uang"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Perangkat"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Langsung"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tutup"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ID unik"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tidak mengandung"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tidak termasuk"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tidak ada"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Sunting anggota"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Data peristiwa"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nama peristiwa"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Peristiwa"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ada"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Klik pertama"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Pahami tingkat konversi dan penurunan pengguna."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Corong"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Lebih dari atau sama dengan"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Dikelompokkan"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Nama host"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Termasuk"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Wawasan"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Adalah"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Salah"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Diatur"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Benar"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Pahami bagaimana pengguna menavigasi situs web Anda."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Perjalanan"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Klik terakhir"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -671,6 +851,12 @@
|
|||
"value": "Kurang dari atau sama dengan"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tautan"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -692,13 +878,25 @@
|
|||
"label.manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pengelola"
|
||||
"value": "Manajer"
|
||||
}
|
||||
],
|
||||
"label.max": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Maks"
|
||||
"value": "Maksimum"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Perluas"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sedang"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
|
|
@ -716,7 +914,7 @@
|
|||
"label.min": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Min"
|
||||
"value": "Minimum"
|
||||
}
|
||||
],
|
||||
"label.mobile": [
|
||||
|
|
@ -725,6 +923,12 @@
|
|||
"value": "Ponsel"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -777,7 +981,7 @@
|
|||
"value": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "record"
|
||||
"value": "catatan"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -785,7 +989,7 @@
|
|||
"value": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "records"
|
||||
"value": "catatan"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -801,12 +1005,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pencarian organik"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Belanja organik"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sosial organik"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Video organik"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lainnya"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -819,6 +1059,12 @@
|
|||
"value": "Pemilik"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Halaman"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -855,6 +1101,36 @@
|
|||
"value": "Halaman"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Iklan berbayar"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pencarian berbayar"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Belanja berbayar"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sosial berbayar"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Video berbayar"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -864,13 +1140,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Jalur"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Jalur"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Piksel"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -910,31 +1192,31 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Properti"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Properti"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Queries"
|
||||
"value": "Kueri"
|
||||
}
|
||||
],
|
||||
"label.query": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Query"
|
||||
"value": "Kueri"
|
||||
}
|
||||
],
|
||||
"label.query-parameters": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Query parameters"
|
||||
"value": "Parameter kueri"
|
||||
}
|
||||
],
|
||||
"label.realtime": [
|
||||
|
|
@ -943,6 +1225,12 @@
|
|||
"value": "Waktu nyata"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Rujukan"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -979,6 +1267,12 @@
|
|||
"value": "Wilayah"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tersisa"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1039,12 +1333,6 @@
|
|||
"value": "Lihat pendapatan Anda seiring waktu."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properti pendapatan"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1087,6 +1375,12 @@
|
|||
"value": "Pilih tanggal"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pilih filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1105,6 +1399,12 @@
|
|||
"value": "Sesi"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Data sesi"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1417,12 @@
|
|||
"value": "Pengaturan"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bagikan"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1435,18 @@
|
|||
"value": "Sehari"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sumber"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1153,6 +1471,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1189,6 +1519,12 @@
|
|||
"value": "Pemilik tim"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pengaturan tim"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1207,6 +1543,12 @@
|
|||
"value": "Tim"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ketentuan"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1339,30 +1681,12 @@
|
|||
"value": "Perbarui"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pengguna"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1495,6 +1819,12 @@
|
|||
"value": " pengunjung saat ini"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1589,6 +1919,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1683,6 +2019,18 @@
|
|||
"value": "Anda tidak memiliki situs web yang dikonfigurasi."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1715,6 +2063,12 @@
|
|||
"value": "Berhasil disimpan."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1777,6 +2131,12 @@
|
|||
"value": "Peristiwa terjadi"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1822,11 +2182,5 @@
|
|||
"type": 1,
|
||||
"value": "os"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pengunjung yang meninggalkan situs web"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "追加"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ボードを追加"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "管理者"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "アフィリエイト"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "アナリティクス"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "適用"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "アトリビューション"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ユーザーがあなたのマーケティングにどのように関与し、何がコンバージョンを促進するかを確認します。"
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "直前"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ボード"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "ブラウザ"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "キャンペーン"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "パスワードの変更"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "チャンネル"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "すべてクリア"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "コホート"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "比較"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "日付を比較"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "コンテンツ"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "コンテンツ"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "続ける"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "コンバージョン"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "コンバージョン率"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "コンバージョンステップ"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "作成者"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "通貨"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "デバイス"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ダイレクト"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "却下"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "識別ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "を含まない"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "含まない"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "存在しない"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "メンバーの編集"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "メール"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "イベントデータ"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "イベント名"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "イベント"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "存在する"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "フィルター"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "最初のクリック"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "ユーザーのコンバージョン率と離脱率を分析します。"
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ファネル"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "以上"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ホスト"
|
||||
"value": "グループ化"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ホスト"
|
||||
"value": "ホスト名"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "含む"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "インサイト"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "に等しい"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "偽である"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "設定済み"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "真である"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "ユーザーがWebサイト内をどのように移動するかを把握します。"
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ジャーニー"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "ノートPC"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "最後のクリック"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "以下"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "リンク"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "最大"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "展開"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "メディア"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "携帯電話"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "モデル"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "オーガニック検索"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "オーガニックショッピング"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "オーガニックソーシャル"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "オーガニックビデオ"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "その他"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "所有者"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ページ"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "ページ"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "有料広告"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "有料検索"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "有料ショッピング"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "有料ソーシャル"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "有料ビデオ"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "パス"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ピクセル"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "リアルタイム"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "地域"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "残り"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "時間あたりの売上高を確認します。"
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "レベニュープロパティ"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "日付を選択"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "フィルターを選択"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "セッション"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "セッションデータ"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "設定"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "共有"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "一日"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ソース"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "タブレット"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "タグ"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "タグ"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "チームオーナー"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "チーム設定"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "チーム"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "利用規約"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "更新"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ユーザー"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ユーザープロパティ"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1609,6 +1939,12 @@
|
|||
"value": "event"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1703,6 +2039,18 @@
|
|||
"value": "Webサイトが設定されていません。"
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1735,6 +2083,12 @@
|
|||
"value": "保存されました。"
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1803,6 +2157,12 @@
|
|||
"value": "トリガーされたイベント"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1848,11 +2208,5 @@
|
|||
"type": 0,
|
||||
"value": "からの訪問者"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "訪問者の離脱率"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"label.access-code": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Access code"
|
||||
"value": "កូដចូលប្រើ"
|
||||
}
|
||||
],
|
||||
"label.actions": [
|
||||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "បង្កើតបន្ថែម"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "បន្ថែមក្តារ"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "អ្នកគ្រប់គ្រង"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ដៃគូ"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -74,7 +86,25 @@
|
|||
"label.analytics": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Analytics"
|
||||
"value": "វិភាគ"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "អនុវត្ត"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ការបញ្ជាក់"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មើលថាប្រើប្រាស់របស់អ្នកធ្វើអ្វីជាមួយទីផ្សាររបស់អ្នក និងអ្វីជាហេតុបណ្តាលឲ្យមានការបម្លែង។"
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "មុន"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ក្តារ"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -104,13 +140,13 @@
|
|||
"label.breakdown": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Breakdown"
|
||||
"value": "បំបែកលម្អិត"
|
||||
}
|
||||
],
|
||||
"label.browser": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Browser"
|
||||
"value": "កម្មវិធីរុករក"
|
||||
}
|
||||
],
|
||||
"label.browsers": [
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "កម្មវិធី"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "យុទ្ធនាការ"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "ផ្លាស់ប្តូរពាក្យសម្ងាត់"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ឆានែល"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -146,7 +194,13 @@
|
|||
"label.clear-all": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "លុបទាំងអស់"
|
||||
"value": "លុបចេញទាំងអស់"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ក្រុម"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
|
|
@ -155,6 +209,12 @@
|
|||
"value": "ប្រៀបធៀប"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ប្រៀបធៀបទិន្នន័យថ្ងៃខែ"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "មាន"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មាតិកា"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "បន្ត"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ការបម្លែង"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "អត្រាបម្លែង"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ជំហានបម្លែង"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "បង្កើតដោយ"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "រូបិយប័ណ្ណ"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "ឧបករណ៍"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ផ្ទាល់"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "រំសាយ"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "លេខសម្គាល់ពិសេស"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មិនមាន"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មិនរួមបញ្ចូល"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មិនមានទេ"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "កែព័ត៌មានសមាជិក"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "ទិន្នន័យព្រឹត្តិការណ៍"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ឈ្មោះព្រឹត្តិការណ៍"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ព្រឹត្តិការណ៍"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មាន"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "ចម្រោះ"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ចុចដំបូង"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -482,7 +620,7 @@
|
|||
"label.funnel": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnel"
|
||||
"value": "ផ្លូវបង្ហាញ"
|
||||
}
|
||||
],
|
||||
"label.funnel-description": [
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ផ្លូវបង្ហាញ"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "ធំជាងឬស្មើ"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "បានដាក់ជាក្រុម"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "ឈ្មោះម៉ាស៊ីន"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "រួមបញ្ចូល"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ការយល់ដឹង"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "គឺ"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មិនពិត"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "បានកំណត់"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ពិត"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "ស្វែងយល់ពីការប្រើប្រាស់គេហទំព័ររបស់អតិថិជនអ្នក។"
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ដំណើរ"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "កុំព្យូទ័រយួរដៃ"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ចុចចុងក្រោយ"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -671,6 +851,12 @@
|
|||
"value": "តិចជាង ឬស្មើ"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "តំណភ្ជាប់"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -701,6 +887,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ពង្រីក"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មធ្យម"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -725,6 +923,12 @@
|
|||
"value": "ទូរស័ព្ទចល័ត"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ម៉ូដែល"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -758,7 +962,7 @@
|
|||
"label.none": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "មិនមាន"
|
||||
"value": "គ្មាន"
|
||||
}
|
||||
],
|
||||
"label.number-of-records": [
|
||||
|
|
@ -801,12 +1005,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ស្វែងរកធម្មជាតិ"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ការទិញធម្មជាតិ"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "សង្គមធម្មជាតិ"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "វីដេអូធម្មជាតិ"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ផ្សេងទៀត"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -819,6 +1059,12 @@
|
|||
"value": "ម្ចាស់"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ទំព័រ"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -855,6 +1101,36 @@
|
|||
"value": "ទំព័រ"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ផ្សាយពាណិជ្ជកម្មបង់ប្រាក់"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ស្វែងរកបង់ប្រាក់"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ទិញបង់ប្រាក់"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "សង្គមបង់ប្រាក់"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "វីដេអូបង់ប្រាក់"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -873,6 +1149,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ភីកសែល"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -910,13 +1192,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "លក្ខណៈពិសេស"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "លក្ខណៈពិសេស"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -943,6 +1225,12 @@
|
|||
"value": "ឥលូវនេះ"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ការបញ្ជូន"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -979,6 +1267,12 @@
|
|||
"value": "តំបន់"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "នៅសល់"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1012,7 +1306,15 @@
|
|||
"label.reset-website": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "កំណត់ស្ថិតិឡើងវិញ"
|
||||
"value": "ដើម្បីកែគេហទំព័រនេះឡើងវិញ សូមសរសេរ "
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
"value": "confirmation"
|
||||
},
|
||||
{
|
||||
"type": 0,
|
||||
"value": " នៅក្នុងប្រអប់ខាងក្រោមដើម្បីបញ្ជាក់។"
|
||||
}
|
||||
],
|
||||
"label.retention": [
|
||||
|
|
@ -1039,12 +1341,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1087,6 +1383,12 @@
|
|||
"value": "ជ្រើសរើសកាលបរិច្ឆេទ"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ជ្រើសរើសតម្រង"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1105,6 +1407,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ទិន្នន័យសម័យ"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1425,12 @@
|
|||
"value": "ការកំណត់"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ចែករំលែក"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1443,18 @@
|
|||
"value": "ថ្ងៃតែមួយ"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ប្រភព"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1153,6 +1479,18 @@
|
|||
"value": "ថេប្លេត"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ស្លាក"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ស្លាក"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1189,6 +1527,12 @@
|
|||
"value": "ម្ចាស់ក្រុម"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ការកំណត់ក្រុម"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1207,6 +1551,12 @@
|
|||
"value": "ក្រុម"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "លក្ខខណ្ឌ"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1339,30 +1689,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "អ្នកប្រើប្រាស់"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1499,6 +1831,12 @@
|
|||
"value": " នាក់ ឥលូវនេះ"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1593,6 +1931,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1687,6 +2031,18 @@
|
|||
"value": "អ្នកមិនទាន់បានដាក់គេហទំព័រណាមួយចូលទេ។"
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2075,12 @@
|
|||
"value": "រក្សាទុកដោយជោគជ័យ។"
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1795,6 +2157,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1840,11 +2208,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ចំនួនអ្នកទស្សនាធ្លាក់ចុះ"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "추가"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "보드 추가"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "관리자"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "제휴사"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "분석"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "적용"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "기여도"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "사용자가 마케팅에 어떻게 반응하고 전환을 유도하는지 확인하세요."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "이전"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "보드"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "브라우저"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "캠페인"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "비밀번호 변경"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "채널"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "모두 지우기"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "코호트"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "비교"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "날짜 비교"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "포함"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "콘텐츠"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "계속"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "전환"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "전환율"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "전환 단계"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "작성자"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "통화"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "기기"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "직접"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "무시하기"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "고유 ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "포함하지 않음"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "포함하지 않음"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "존재하지 않음"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "멤버 편집"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "이메일"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "이벤트 데이터"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "이벤트 이름"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "이벤트"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "존재함"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "필터"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "첫 클릭"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "사용자 전환율 및 이탈률을 살펴보세요."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "퍼널"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "이상"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "호스트"
|
||||
"value": "그룹화됨"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "호스트"
|
||||
"value": "호스트명"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "포함"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "인사이트"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "해당"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "거짓임"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "설정됨"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "참임"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "사용자가 웹사이트를 탐색하는 경로를 살펴보세요."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "여정"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "노트북"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "마지막 클릭"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "이하"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "링크"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "최대"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "확장"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "미디엄"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "모바일"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "모델"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -789,12 +993,48 @@
|
|||
"value": "확인"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "자연 검색"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "자연 쇼핑"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "자연 소셜"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "자연 비디오"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "운영 체제"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "기타"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -807,6 +1047,12 @@
|
|||
"value": "소유자"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "페이지"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -843,6 +1089,36 @@
|
|||
"value": "페이지"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "유료 광고"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "유료 검색"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "유료 쇼핑"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "유료 소셜"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "유료 비디오"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -861,6 +1137,12 @@
|
|||
"value": "패스"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "픽셀"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -931,6 +1213,12 @@
|
|||
"value": "실시간"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -967,6 +1255,12 @@
|
|||
"value": "지역"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "남음"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1027,12 +1321,6 @@
|
|||
"value": "시간대별 수익을 살펴보세요."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "수익 속성"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1075,6 +1363,12 @@
|
|||
"value": "날짜 선택"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "필터 선택"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1093,6 +1387,12 @@
|
|||
"value": "세션"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "세션 데이터"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1105,6 +1405,12 @@
|
|||
"value": "설정"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "공유"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1423,18 @@
|
|||
"value": "하루"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "소스"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1459,18 @@
|
|||
"value": "태블릿"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "태그"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "태그"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1177,6 +1507,12 @@
|
|||
"value": "팀 소유자"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "팀 설정"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1195,6 +1531,12 @@
|
|||
"value": "팀"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "약관"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1327,30 +1669,12 @@
|
|||
"value": "업데이트"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "사용자"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "사용자 속성"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1487,6 +1811,12 @@
|
|||
"value": "명"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1565,6 +1895,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1659,6 +1995,18 @@
|
|||
"value": "설정된 웹사이트가 없습니다."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1691,6 +2039,12 @@
|
|||
"value": "저장했습니다."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1759,6 +2113,12 @@
|
|||
"value": "트리거된 이벤트"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1804,11 +2164,5 @@
|
|||
"type": 0,
|
||||
"value": "의 방문자"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "방문자 이탈함"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Нэмэх"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Самбар нэмэх"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Админ"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Харьяа"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Аналитик"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хэрэглэх"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Холбогдол"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хэрэглэгчид таны маркетингт хэрхэн оролцож, ямар зүйлс хөрвүүлэлтэд нөлөөлж байгааг хараарай."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Өмнө"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Самбарууд"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Хөтөч"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Аянууд"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Нууц үг солих"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Суваг"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Бүгдийг арилгах"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Бүлэг"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Харьцуулах"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Огноо харьцуулах"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Агуулах"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Агуулга"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Үргэлжлүүлэх"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хөрвүүлэлт"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хөрвүүлэлтийн хувь"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хөрвүүлэлтийн алхам"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Үүсгэсэн"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Валют"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Төхөөрөмж"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Шууд"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Үл хэрэгсэх"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ялгаатай ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Агуулахгүй"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Агуулаагүй"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Байхгүй"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Гишүүн засах"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Имэйл"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Үйлдлийн өгөгдөл"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Үйлдлийн нэр"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Үйлдэл"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Байгаа"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Шүүлтүүр"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Эхний даралт"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Хэрэглэгчдийн шилжилт, уналтын хэмжээг шинжлэх."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Цутгалууд"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Их буюу тэнцүү"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хост"
|
||||
"value": "Бүлэглэсэн"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хост"
|
||||
"value": "Хост нэр"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Агуулсан"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ойлголт"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Бол"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Худал байна"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Утга оноосон"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Үнэн байна"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Хэрэглэгчид таны цахим хуудсаар хэрхэн шилжиж явсныг шинжлэх."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Аялалууд"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Зөөврийн компьютер"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Сүүлийн даралт"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Бага буюу тэнцүү"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Холбоосууд"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Өргөтгөх"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Дунд"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Утас"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Загвар"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "ЗА"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Байгалийн хайлт"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Байгалийн дэлгүүр"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Байгалийн сошиал"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Байгалийн видео"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Бусад"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Эзэмшигч"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хуудас"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Хуудас"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Төлбөртэй зар"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Төлбөртэй хайлт"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Төлбөртэй дэлгүүр"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Төлбөртэй сошиал"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Төлбөртэй видео"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Зам"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Пиксел"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Яг одоо"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Бүсүүд"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Үлдсэн"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Цаг хугацааны туршид орлогын өөрчлөлтийг харах."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Орлогын шинж чанар"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Огноо сонгох"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Шүүлтүүр сонгох"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Сессийн өгөгдөл"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Тохиргоо"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хуваалцах"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Нэг өдөр"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Эх сурвалжууд"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Таблет"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Таг"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Тагууд"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Багийн эзэмшигч"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Багийн тохиргоо"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Багууд"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Нөхцөл"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Шинэчлэх"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL-ууд"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хэрэглэгч"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Хэрэглэгчийн шинж"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1539,6 +1863,12 @@
|
|||
"value": " байна"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1633,6 +1963,12 @@
|
|||
"value": "event"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1727,6 +2063,18 @@
|
|||
"value": "Та ямар нэгэн веб тохируулаагүй байна."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1759,6 +2107,12 @@
|
|||
"value": "Хадгалсан."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1827,6 +2181,12 @@
|
|||
"value": "Өдөөсөн үйлдэл"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1872,11 +2232,5 @@
|
|||
"type": 0,
|
||||
"value": " хөтөч ашиглан орсон"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Зочдын уналт"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Pentadbir"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Pelayar web"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Tukar kata laluan"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Peranti"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ketepikan"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Event data"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Peristiwa"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -675,6 +855,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -705,6 +891,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -729,6 +927,12 @@
|
|||
"value": "Telefon bimbit"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -805,12 +1009,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -823,6 +1063,12 @@
|
|||
"value": "Owner"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -859,6 +1105,36 @@
|
|||
"value": "Halaman"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -877,6 +1153,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -947,6 +1229,12 @@
|
|||
"value": "Siaran langsung"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -983,6 +1271,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1043,12 +1337,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1091,6 +1379,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1109,6 +1403,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1121,6 +1421,12 @@
|
|||
"value": "Tetapan"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1133,6 +1439,18 @@
|
|||
"value": "Satu hari"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1157,6 +1475,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1193,6 +1523,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1211,6 +1547,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1343,30 +1685,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1523,6 +1847,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1617,6 +1947,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1711,6 +2047,18 @@
|
|||
"value": "Anda tidak ada sebarang laman web yang telah dikonfigurasikan."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1743,6 +2091,12 @@
|
|||
"value": "Berjaya disimpan."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1805,6 +2159,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1850,11 +2210,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "ထပ်ထည့်မည်"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "အက်ဒမင်"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "အန်နလစ်တစ်"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "မတိုင်မီ"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "ဝက်ဘ်ဘရောင်ဇာများ"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "စကားဝှက် ပြောင်းမည်"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "အားလုံးကိုဖျက်မည်"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "ပါဝင်သည်"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ဆက်သွားမည်"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "အသုံးပြုသည့် ကိရိယာများ"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ပိတ်ပါ"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "မပါဝင်ပါ"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "အဖြစ်အပျက် ဒေတာ"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "အဖြစ်အပျက်များ"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filter များ"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "ထက်ပို၍ကြီးသည်သို့မဟုတ်တူသည်"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "လက်တော့ပ်"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "ထက်ပို၍ငယ်သည်သို့မဟုတ်တူသည်"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "အများဆုံး"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "မိုဘိုင်း"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ကွန်ပျူတာလည်ပတ်မှုစနစ်"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "ပိုင်ဆိုင်သူ"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "စာမျက်နှာများ"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "အချိန်နှင့်တပြေးညီ"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "ဒေသများ"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "ရက်ရွေးပါ"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "ဆက်တင်များ"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "တစ်ရက်အတွင်း"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "တက်ဘလက်"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "အသင်းကိုပိုင်ဆိုင်သူ"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "အသင်းများ"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL များ"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "အသုံးပြုသူ"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1613,6 +1943,12 @@
|
|||
"value": "event"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1707,6 +2043,18 @@
|
|||
"value": "ဝက်ဘ်ဆိုဒ်တစ်ခုမှ မထည့်ရသေးပါ"
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1739,6 +2087,12 @@
|
|||
"value": "မှတ်သားပြီး"
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1793,6 +2147,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1838,11 +2198,5 @@
|
|||
"type": 0,
|
||||
"value": " တွင် ဝင်ရောက်ကြည့်ရှုသူ"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Legg til"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Legg til tavle"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tilknyttet"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -74,7 +86,25 @@
|
|||
"label.analytics": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Analytics"
|
||||
"value": "Analyse"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bruk"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribusjon"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Se hvordan brukere engasjerer seg i markedsføringen din og hva som driver konverteringer."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Før"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tavler"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Nettlesere"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampanjer"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Bytt passord"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanaler"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Tøm alle"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sammenlign"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sammenlign datoer"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Inneholder"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Innhold"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Fortsett"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konvertering"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konverteringsrate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konverteringssteg"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Opprettet av"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Valuta"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -296,19 +386,19 @@
|
|||
"label.delete-report": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Delete report"
|
||||
"value": "Slett rapport"
|
||||
}
|
||||
],
|
||||
"label.delete-team": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Delete team"
|
||||
"value": "Slett team"
|
||||
}
|
||||
],
|
||||
"label.delete-user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Delete user"
|
||||
"value": "Slett bruker"
|
||||
}
|
||||
],
|
||||
"label.delete-website": [
|
||||
|
|
@ -320,7 +410,7 @@
|
|||
"label.description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Description"
|
||||
"value": "Beskrivelse"
|
||||
}
|
||||
],
|
||||
"label.desktop": [
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Enheter"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direkte"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Avbryt"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unik ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Innholder ikke"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inkluderer ikke"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eksisterer ikke"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Rediger bruker"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Hendelsesdata"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hendelsesnavn"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hendelser"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eksisterer"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filter"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Første klikk"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Forstå konverteringen og drop-off frafallsfrekvens av brukere."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Trakter"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Mer enn eller lik"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vert"
|
||||
"value": "Gruppert"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Verter"
|
||||
"value": "Vertsnavn"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inkluderer"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Innsikt"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Er"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Er usant"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Er satt"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Er sant"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Forstå hvordan brukerene navigerer gjennom din side."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Reiser"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Bærbar"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Siste klikk"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Mindre enn eller lik"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lenker"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Maks"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Utvid"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobiltelefon"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Modell"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk søk"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk handel"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk sosial"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Annet"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Eier"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Side"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Sider"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betalte annonser"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betalt søk"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betalt handel"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betalt sosial"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betalt video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Stier"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Piksler"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Sanntid"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regioner"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Gjenstår"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Se på inntektene dine over tid."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inntektegenskaper"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Velg dato"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Velg filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Økt"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Øktdata"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Innstillinger"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Del"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Enkeltdag"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kilder"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Nettbrett"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tagg"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tagger"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Teameier"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Teaminnstillinger"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Team"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vilkår"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Oppdater"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL-er"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bruker"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Brukeregenskap"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1535,6 +1859,12 @@
|
|||
"value": " nå"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1629,6 +1959,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1723,6 +2059,18 @@
|
|||
"value": "Du har ikke satt opp noen nettsteder."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1755,6 +2103,12 @@
|
|||
"value": "Lagret!"
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1817,6 +2171,12 @@
|
|||
"value": "Utløst hendelse"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1862,11 +2222,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Besøkende falt fra"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Toevoegen"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bord toevoegen"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -32,13 +38,13 @@
|
|||
"label.add-member": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add member"
|
||||
"value": "Lid toevoegen"
|
||||
}
|
||||
],
|
||||
"label.add-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add step"
|
||||
"value": "Stap toevoegen"
|
||||
}
|
||||
],
|
||||
"label.add-website": [
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partner"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -74,7 +86,25 @@
|
|||
"label.analytics": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Analytics"
|
||||
"value": "Analyse"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Toepassen"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Toewijzing"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bekijk hoe gebruikers omgaan met je marketing en wat conversies stimuleert."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Voor"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Borden"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browsers"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campagnes"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Wachtwoord wijzigen"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanalen"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,10 +197,22 @@
|
|||
"value": "Filters wissen"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
"value": "Vergelijken"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Datums vergelijken"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
|
|
@ -173,16 +233,40 @@
|
|||
"value": "Bevat"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inhoud"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Doorgaan"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversie"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversieratio"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversiestap"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Count"
|
||||
"value": "Aantal"
|
||||
}
|
||||
],
|
||||
"label.countries": [
|
||||
|
|
@ -233,10 +317,16 @@
|
|||
"value": "Gemaakt Door"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Valuta"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Current"
|
||||
"value": "Huidig"
|
||||
}
|
||||
],
|
||||
"label.current-password": [
|
||||
|
|
@ -308,7 +398,7 @@
|
|||
"label.delete-user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Verwijder gebruiker"
|
||||
"value": "Gebruiker verwijderen"
|
||||
}
|
||||
],
|
||||
"label.delete-website": [
|
||||
|
|
@ -320,7 +410,7 @@
|
|||
"label.description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Omschrijving"
|
||||
"value": "Beschrijving"
|
||||
}
|
||||
],
|
||||
"label.desktop": [
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Apparaten"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Negeren"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uniek ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bevat geen"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bevat niet"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bestaat niet"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Gebruiker aanpassen"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Datum gebeurtenis"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Gebeurtenisnaam"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Gebeurtenissen"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bestaat"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Eerste klik"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,22 +629,28 @@
|
|||
"value": "Ontdek de conversie- en uitvalpercentages van gebruikers."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Trechters"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goal"
|
||||
"value": "Doel"
|
||||
}
|
||||
],
|
||||
"label.goals": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goals"
|
||||
"value": "Doelen"
|
||||
}
|
||||
],
|
||||
"label.goals-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Track your goals for pageviews and events."
|
||||
"value": "Volg je doelen voor paginaweergaven en gebeurtenissen."
|
||||
}
|
||||
],
|
||||
"label.greater-than": [
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Groter of gelijk aan"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Gegroepeerd"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostnaam"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bevat"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inzicht"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is onwaar"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is ingesteld"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is waar"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -584,13 +752,19 @@
|
|||
"label.journey": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journey"
|
||||
"value": "Reis"
|
||||
}
|
||||
],
|
||||
"label.journey-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Understand how users navigate through your website."
|
||||
"value": "Begrijp hoe gebruikers door je website navigeren."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Reizen"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Laatste klik"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -642,7 +822,7 @@
|
|||
"label.last-months": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last "
|
||||
"value": "Laatste "
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -650,13 +830,13 @@
|
|||
},
|
||||
{
|
||||
"type": 0,
|
||||
"value": " months"
|
||||
"value": " maanden"
|
||||
}
|
||||
],
|
||||
"label.last-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last seen"
|
||||
"value": "Laatst gezien"
|
||||
}
|
||||
],
|
||||
"label.leave": [
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Minder of gelijk aan"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Koppelingen"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uitvouwen"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobiel"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisch zoeken"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisch winkelen"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisch sociaal"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organische video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Overig"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Eigenaar"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pagina"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Pagina's"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betaalde advertenties"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betaald zoeken"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betaald winkelen"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betaald sociaal"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betaalde video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Pad"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Paden"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -898,19 +1180,19 @@
|
|||
"label.previous": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous"
|
||||
"value": "Vorige"
|
||||
}
|
||||
],
|
||||
"label.previous-period": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous period"
|
||||
"value": "Vorige periode"
|
||||
}
|
||||
],
|
||||
"label.previous-year": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous year"
|
||||
"value": "Vorig jaar"
|
||||
}
|
||||
],
|
||||
"label.profile": [
|
||||
|
|
@ -922,13 +1204,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Eigenschappen"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Eigenschap"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Actueel"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Verwijzing"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regio's"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Resterend"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1042,19 +1336,13 @@
|
|||
"label.revenue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue"
|
||||
"value": "Omzet"
|
||||
}
|
||||
],
|
||||
"label.revenue-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
"value": "Bekijk je omzet in de loop van de tijd."
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Datum selecteren"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Filter selecteren"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1114,7 +1408,13 @@
|
|||
"label.session": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session"
|
||||
"value": "Sessie"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sessiegegevens"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Instellingen"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Delen"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,16 +1447,28 @@
|
|||
"value": "Enkele dag"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bronnen"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Start Step"
|
||||
"value": "Startstap"
|
||||
}
|
||||
],
|
||||
"label.steps": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Steps"
|
||||
"value": "Stappen"
|
||||
}
|
||||
],
|
||||
"label.sum": [
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Label"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Labels"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1180,7 +1510,7 @@
|
|||
"label.team-manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team manager"
|
||||
"value": "Teamleider"
|
||||
}
|
||||
],
|
||||
"label.team-member": [
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Teameigenaar"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Teaminstellingen"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Voorwaarden"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL's"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Gebruiker"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Je hebt geen websites ingesteld."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Opslaan succesvol."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2167,12 @@
|
|||
"value": "Getriggerde gebeurtenis"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2218,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afgehaakte bezoekers"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Dodaj"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dodaj tablicę"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partner"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analityka"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zastosuj"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atrybucja"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zobacz, jak użytkownicy angażują się w Twoją reklamę i co napędza konwersje."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Przed"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tablice"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Przeglądarki"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampanie"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Zmień hasło"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanały"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Wyczyść wszystko"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kohorta"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Porównaj"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Porównaj daty"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Zawiera"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Treść"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kontynuuj"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konwersja"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Wskaźnik konwersji"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etap konwersji"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Utworzony przez"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Waluta"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Urządzenia"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bezpośredni"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Odrzuć"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unikalny ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nie zawiera"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nie zawiera"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nie istnieje"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edytuj członka"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Dane zdarzenia"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nazwa zdarzenia"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zdarzenia"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Istnieje"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filtry"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pierwsze kliknięcie"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Zrozum wskaźniki konwersji i odpływu użytkowników."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lejki"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Większe niż lub równe"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grupowane"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosty"
|
||||
"value": "Nazwa hosta"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zawiera"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Wgląd"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Równe"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Jest fałszem"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Ustawione"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Jest prawdą"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Zrozum, w jaki sposób użytkownicy poruszają się po Twojej witrynie."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Drogi"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ostatnie kliknięcie"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -642,7 +822,7 @@
|
|||
"label.last-months": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Osatnie "
|
||||
"value": "Ostatnie "
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -656,7 +836,7 @@
|
|||
"label.last-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last seen"
|
||||
"value": "Ostatnio widziany"
|
||||
}
|
||||
],
|
||||
"label.leave": [
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Mniejsze niż lub równe"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Linki"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Maks"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Rozwiń"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Smartfon"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Wyszukiwanie organiczne"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zakupy organiczne"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organiczne social media"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organiczne wideo"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inne"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Właściciel"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Strona"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Strony"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Reklamy płatne"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Płatne wyszukiwanie"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Płatne zakupy"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Płatne social media"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Płatne wideo"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Ścieżka"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Ścieżki"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Piksele"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -922,13 +1204,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Właściwości"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Właściwość"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Czas rzeczywisty"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Polecenie"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regiony"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pozostało"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1042,19 +1336,13 @@
|
|||
"label.revenue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue"
|
||||
"value": "Przychód"
|
||||
}
|
||||
],
|
||||
"label.revenue-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
"value": "Sprawdź swoje przychody w czasie."
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Wybierz datę"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Wybierz filtr"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1114,7 +1408,13 @@
|
|||
"label.session": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session"
|
||||
"value": "Sesja"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dane sesji"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Ustawienia"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Udostępnij"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "W tym dniu"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Źródła"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tagi"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1180,7 +1510,7 @@
|
|||
"label.team-manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team manager"
|
||||
"value": "Menedżer zespołu"
|
||||
}
|
||||
],
|
||||
"label.team-member": [
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Właściciel zespołu"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ustawienia zespołu"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Zespoły"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Warunki"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Aktualizuj"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Link"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Linki"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Użytkownik"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Nie masz skonfigurowanych żadnych witryn internetowych."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Zapisano pomyślnie."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2167,12 @@
|
|||
"value": "Zdarzenie wyzwalające"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2218,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Odpływ użytkowników"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Adicionar"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Adicionar quadro"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrador"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afiliado"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Análise"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Aplicar"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atribuição"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Veja como os usuários interagem com seu marketing e o que impulsiona conversões."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Antes"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Quadros"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Navegadores"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campanhas"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Alterar senha"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Canais"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,10 +197,22 @@
|
|||
"value": "Limpar tudo"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohorte"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
"value": "Comparar"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Comparar datas"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
|
|
@ -173,16 +233,40 @@
|
|||
"value": "Contém"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conteúdo"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continuar"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversão"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Taxa de conversão"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etapa de conversão"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Count"
|
||||
"value": "Contagem"
|
||||
}
|
||||
],
|
||||
"label.countries": [
|
||||
|
|
@ -233,10 +317,16 @@
|
|||
"value": "Criado por"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Moeda"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Current"
|
||||
"value": "Atual"
|
||||
}
|
||||
],
|
||||
"label.current-password": [
|
||||
|
|
@ -326,7 +416,7 @@
|
|||
"label.desktop": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Desktop"
|
||||
"value": "Computador"
|
||||
}
|
||||
],
|
||||
"label.details": [
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Dispositivos"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direto"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Fechar"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ID distinto"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Não contém"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Não inclui"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Não existe"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Editar membro"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Dados do evento"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nome do evento"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tipos de eventos"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existe"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filtros"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Primeiro clique"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,22 +629,28 @@
|
|||
"value": "Entenda a taxa de conversão e abandono dos seus usuários."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funis"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goal"
|
||||
"value": "Meta"
|
||||
}
|
||||
],
|
||||
"label.goals": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goals"
|
||||
"value": "Metas"
|
||||
}
|
||||
],
|
||||
"label.goals-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Track your goals for pageviews and events."
|
||||
"value": "Acompanhe suas metas para visualizações de página e eventos."
|
||||
}
|
||||
],
|
||||
"label.greater-than": [
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Maior ou igual a"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Agrupado"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Nome do host"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inclui"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "É igual a"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "É falso"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Definido"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "É verdadeiro"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -584,13 +752,19 @@
|
|||
"label.journey": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journey"
|
||||
"value": "Jornada"
|
||||
}
|
||||
],
|
||||
"label.journey-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Understand how users navigate through your website."
|
||||
"value": "Entenda como os usuários navegam pelo seu site."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Jornadas"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Notebook"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Último clique"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -656,7 +836,7 @@
|
|||
"label.last-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last seen"
|
||||
"value": "Última visualização"
|
||||
}
|
||||
],
|
||||
"label.leave": [
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Menor ou igual a"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Máximo"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expandir"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Médio"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Celular"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Modelo"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Busca orgânica"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compras orgânicas"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social orgânico"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vídeo orgânico"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sistema operacional"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Outro"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Proprietário"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Página"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Páginas"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Anúncios pagos"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Busca paga"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compras pagas"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social pago"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vídeo pago"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Caminho"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Caminhos"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -898,19 +1180,19 @@
|
|||
"label.previous": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous"
|
||||
"value": "Anterior"
|
||||
}
|
||||
],
|
||||
"label.previous-period": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous period"
|
||||
"value": "Período anterior"
|
||||
}
|
||||
],
|
||||
"label.previous-year": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous year"
|
||||
"value": "Ano anterior"
|
||||
}
|
||||
],
|
||||
"label.profile": [
|
||||
|
|
@ -922,13 +1204,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Propriedades"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Propriedade"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Tempo real"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referência"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Estados"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Restante"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1042,19 +1336,13 @@
|
|||
"label.revenue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue"
|
||||
"value": "Receita"
|
||||
}
|
||||
],
|
||||
"label.revenue-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
"value": "Veja sua receita ao longo do tempo."
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Selecionar data"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Selecionar filtro"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1114,7 +1408,13 @@
|
|||
"label.session": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session"
|
||||
"value": "Sessão"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dados da sessão"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Configurações"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compartilhar"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Apenas um dia"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Fontes"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1180,7 +1510,7 @@
|
|||
"label.team-manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team manager"
|
||||
"value": "Gerente da equipe"
|
||||
}
|
||||
],
|
||||
"label.team-member": [
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Proprietário da equipe"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Configurações da equipe"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Equipes"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Termos"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Atualizar"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Usuário"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1511,6 +1835,12 @@
|
|||
"value": " usuários ativos"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1605,6 +1935,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1699,6 +2035,18 @@
|
|||
"value": "Você ainda não configurou nenhum site."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1731,6 +2079,12 @@
|
|||
"value": "Salvo com sucesso."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1793,6 +2147,12 @@
|
|||
"value": "Evento disparado"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1842,11 +2202,5 @@
|
|||
"type": 0,
|
||||
"value": "."
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitantes abandonados"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Adaugă"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Adaugă panou"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Afiliat"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -74,7 +86,25 @@
|
|||
"label.analytics": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Analytics"
|
||||
"value": "Analiză"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Aplică"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Atribuire"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vezi cum utilizatorii interacționează cu marketingul tău și ce determină conversiile."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Înainte"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Panouri"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browsere"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campanii"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Schimbare parolă"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Canale"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Șterge tot"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohortă"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compară"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compară datele"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Conține"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conținut"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continuă"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversie"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Rată de conversie"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pas de conversie"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Creat de"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Monedă"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Dispozitive"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Renunță"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nu conține"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nu include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nu există"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Editare membru"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Date despre eveniment"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nume eveniment"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Evenimente"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Există"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filtre"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Primul click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Înțelege rata de conversie și rata de abandon a utilizatorilor."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Parcursuri"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Mai mare sau egal cu"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grupat"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Nume gazdă"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Include"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Perspectivă"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Este"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Este fals"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Este setat"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Este adevărat"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Înțelege cum navighează vizitatorii prin website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Trasee"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ultimul click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Mai puțin sau egal cu"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Linkuri"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Extinde"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Mediu"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobil"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Căutare organică"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cumpărături organice"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social organic"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Video organic"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Altul"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Titular"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pagină"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Pagini"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Reclame plătite"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Căutare plătită"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cumpărături plătite"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Social plătit"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Video plătit"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Rute"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixeli"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Timp real"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regiuni"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Rămas"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Urmărește venitul în timp."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Selectează data"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Selectează filtru"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Sesiune"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Date sesiune"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Setări"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partajează"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "O singură zi"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Surse"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tabletă"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etichetă"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Etichete"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Titular echipă"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Setări echipă"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Echipă"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Termeni"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Utilizator"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Proprietatea utilizatorului"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "Nu ai niciun site web configurat."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "Salvat cu succes."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1813,6 +2167,12 @@
|
|||
"value": "Eveniment declanșat"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1858,11 +2218,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vizitatori care au abandonat"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Добавить"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Добавить доску"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Администратор"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Партнер"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Аналитика"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Применить"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Атрибуция"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Посмотрите, как пользователи взаимодействуют с вашим маркетингом и что приводит к конверсиям."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "До"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Доски"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Браузеры"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Кампании"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Изменить пароль"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Каналы"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Очистить все"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Когорта"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Сравнить"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Сравнить даты"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Содержит"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Контент"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Продолжить"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Конверсия"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Коэффициент конверсии"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Шаг конверсии"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Создано"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Валюта"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Устройства"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Отклонить"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не содержит"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не включает"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Не существует"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Редактировать участника"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Данные о событии"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Название события"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "События"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Существует"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Фильтры"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Первый клик"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Изучите коэффициент конверсии и ухода пользователей."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Воронки"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Больше или равно"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Группировано"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Имя хоста"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Включает"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Инсайт"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Является"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ложно"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Установлен"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Истинно"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Поймите, как пользователи перемещаются по вашему сайту."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Пути"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Ноутбук"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Последний клик"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Меньше или равно"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ссылки"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Максимум"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Развернуть"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Средний"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Смартфон"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Модель"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органический поиск"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органические покупки"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органические соцсети"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Органическое видео"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Другое"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Владелец"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Страница"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Страницы"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платная реклама"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платный поиск"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платные покупки"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платные соцсети"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Платное видео"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Пути"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Пиксели"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Реальное время"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Регионы"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Осталось"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Изучите свои доходы за определенное время."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Доходная недвижимость"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Выберите дату"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Выберите фильтр"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Сессия"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Данные сессии"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Настройки"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Поделиться"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "Один день"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Источники"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Планшет"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Тег"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Теги"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Владелец команды"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Настройки команды"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Команды"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Условия"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Обновление"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Пользователь"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Собственность пользователя"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1507,6 +1831,12 @@
|
|||
"value": " текущих посетителей"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1601,6 +1931,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1695,6 +2031,18 @@
|
|||
"value": "У вас нет настроенных сайтов."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2067,12 @@
|
|||
"value": "Успешно сохранено."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1781,6 +2135,12 @@
|
|||
"value": "Запущенное событие"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1826,11 +2186,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Высадка посетителей"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Browsers"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "මුරපදය වෙනස් කරන්න"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Devices"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "මගහරින්න"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "සිදුවීම් දත්ත"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Events"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Laptop"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobile"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "හිමිකරු"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Pages"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "තත්ය කාල"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "සැකසුම්"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "තනි දවස"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Tablet"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1617,6 +1947,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1711,6 +2047,18 @@
|
|||
"value": "You do not have any websites configured."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1743,6 +2091,12 @@
|
|||
"value": "Saved."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1819,6 +2173,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1864,11 +2224,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Dodaj"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dodaj tablo"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administrator"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partner"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analitika"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uporabi"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pripis"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Oglejte si, kako uporabniki sodelujejo z vašim marketingom in kaj spodbuja konverzije."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Pred"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Table"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Brskalniki"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampanje"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Zamenjaj geslo"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanali"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,6 +221,12 @@
|
|||
"value": "Vsebuje"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Vsebina"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +401,42 @@
|
|||
"value": "Naprave"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Neposredno"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Prezri"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unikatni ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ne vsebuje"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ne vključuje"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ne obstaja"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,6 +497,12 @@
|
|||
"value": "Podatki dogodka"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Ime dogodka"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -551,6 +635,12 @@
|
|||
"value": "Je"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Je napačno"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +659,12 @@
|
|||
"value": "Je nastavljeno"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Je res"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +707,12 @@
|
|||
"value": "Prenosni računalnik"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Zadnji klik"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +785,12 @@
|
|||
"value": "Manjše ali enako kot"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Povezave"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +845,12 @@
|
|||
"value": "Mobilne naprave"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -770,7 +884,7 @@
|
|||
"label.none": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Brez"
|
||||
"value": "Noben"
|
||||
}
|
||||
],
|
||||
"label.number-of-records": [
|
||||
|
|
@ -813,12 +927,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organsko iskanje"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organski nakupi"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organska družbena omrežja"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organski video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Drugo"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +981,12 @@
|
|||
"value": "Lastnik"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Stran"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1023,36 @@
|
|||
"value": "Strani"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plačani oglasi"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plačano iskanje"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plačani nakupi"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plačana družbena omrežja"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Plačani video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -955,6 +1141,12 @@
|
|||
"value": "V živo"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Napoten"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1183,12 @@
|
|||
"value": "Regije"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Preostalo"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1327,12 @@
|
|||
"value": "Nastavitve"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Deli"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1369,18 @@
|
|||
"value": "Tablični računalnik"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Oznaka"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Oznake"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1435,12 @@
|
|||
"value": "Ekipe"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pogoji"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1573,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Povezava"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Povezave"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Uporabnik"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1829,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +1929,18 @@
|
|||
"value": "Nimate nastavljenih nobenih spletnih mest."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +1973,12 @@
|
|||
"value": "Uspešno shranjeno."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Lägg till"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Lägg till anslagstavla"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -32,13 +38,13 @@
|
|||
"label.add-member": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add member"
|
||||
"value": "Lägg till medlem"
|
||||
}
|
||||
],
|
||||
"label.add-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add step"
|
||||
"value": "Lägg till steg"
|
||||
}
|
||||
],
|
||||
"label.add-website": [
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "Administratör"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Partner"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Webbplats Analys"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tillämpa"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribuering"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Se hur användare interagerar med din marknadsföring och vad som driver konverteringar."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Före"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Anslagstavlor"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "Webbläsare"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kampanjer"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "Byt lösenord"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kanaler"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,10 +197,22 @@
|
|||
"value": "Rensa alla"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Kohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
"value": "Jämför"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Jämför datum"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
|
|
@ -173,16 +233,40 @@
|
|||
"value": "Innehåller"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Innehåll"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Fortsätt"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konvertering"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konverteringsfrekvens"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Konverteringssteg"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Count"
|
||||
"value": "Antal"
|
||||
}
|
||||
],
|
||||
"label.countries": [
|
||||
|
|
@ -230,13 +314,19 @@
|
|||
"label.created-by": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Created By"
|
||||
"value": "Skapad av"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Valuta"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Current"
|
||||
"value": "Nuvarande"
|
||||
}
|
||||
],
|
||||
"label.current-password": [
|
||||
|
|
@ -296,7 +386,7 @@
|
|||
"label.delete-report": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Delete report"
|
||||
"value": "Radera rapport"
|
||||
}
|
||||
],
|
||||
"label.delete-team": [
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "Enheter"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direkt"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Avbryt"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unikt ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Innehåller inte"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inkluderar inte"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existerar inte"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -386,7 +500,13 @@
|
|||
"label.edit-member": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Edit member"
|
||||
"value": "Redigera medlem"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
|
|
@ -398,13 +518,13 @@
|
|||
"label.end-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "End Step"
|
||||
"value": "Slutsteg"
|
||||
}
|
||||
],
|
||||
"label.entry": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Entry URL"
|
||||
"value": "Ingångs-URL"
|
||||
}
|
||||
],
|
||||
"label.event": [
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Händelsedata"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Händelsenamn"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Händelser"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Existerar"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filter"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Första klicket"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,22 +629,28 @@
|
|||
"value": "Förstå omvandlingen och bortfallsfrekvensen för användare."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Trattar"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goal"
|
||||
"value": "Mål"
|
||||
}
|
||||
],
|
||||
"label.goals": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Goals"
|
||||
"value": "Mål"
|
||||
}
|
||||
],
|
||||
"label.goals-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Track your goals for pageviews and events."
|
||||
"value": "Följ dina mål för sidvisningar och händelser."
|
||||
}
|
||||
],
|
||||
"label.greater-than": [
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Större än eller lika med"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grupperad"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Värdnamn"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inkluderar"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insikt"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Är"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Är falskt"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Är inställd"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Är sant"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -584,13 +752,19 @@
|
|||
"label.journey": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journey"
|
||||
"value": "Resa"
|
||||
}
|
||||
],
|
||||
"label.journey-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Understand how users navigate through your website."
|
||||
"value": "Förstå hur användare navigerar på din webbplats."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Resor"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "Bärbar"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sista klicket"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -642,7 +822,7 @@
|
|||
"label.last-months": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last "
|
||||
"value": "Senaste "
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -650,13 +830,13 @@
|
|||
},
|
||||
{
|
||||
"type": 0,
|
||||
"value": " months"
|
||||
"value": " månaderna"
|
||||
}
|
||||
],
|
||||
"label.last-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last seen"
|
||||
"value": "Senast sedd"
|
||||
}
|
||||
],
|
||||
"label.leave": [
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Mindre än eller lika med"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Länkar"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,10 +899,22 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expandera"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Member"
|
||||
"value": "Medlem"
|
||||
}
|
||||
],
|
||||
"label.members": [
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "Mobil"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Modell"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -746,7 +950,7 @@
|
|||
"label.my-account": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "My account"
|
||||
"value": "Mitt konto"
|
||||
}
|
||||
],
|
||||
"label.my-websites": [
|
||||
|
|
@ -770,7 +974,7 @@
|
|||
"label.none": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Inga"
|
||||
"value": "Ingen"
|
||||
}
|
||||
],
|
||||
"label.number-of-records": [
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk sökning"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organisk video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Operativsystem"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Annat"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Ägare"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sida"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "Sidor"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betalda annonser"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betald sökning"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betald shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betald social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Betald video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -876,13 +1152,19 @@
|
|||
"label.path": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Path"
|
||||
"value": "Sökväg"
|
||||
}
|
||||
],
|
||||
"label.paths": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paths"
|
||||
"value": "Sökvägar"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixlar"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
|
|
@ -898,19 +1180,19 @@
|
|||
"label.previous": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous"
|
||||
"value": "Föregående"
|
||||
}
|
||||
],
|
||||
"label.previous-period": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous period"
|
||||
"value": "Föregående period"
|
||||
}
|
||||
],
|
||||
"label.previous-year": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Previous year"
|
||||
"value": "Föregående år"
|
||||
}
|
||||
],
|
||||
"label.profile": [
|
||||
|
|
@ -922,13 +1204,13 @@
|
|||
"label.properties": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Properties"
|
||||
"value": "Egenskaper"
|
||||
}
|
||||
],
|
||||
"label.property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Property"
|
||||
"value": "Egenskap"
|
||||
}
|
||||
],
|
||||
"label.queries": [
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "Realtid"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hänvisning"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regioner"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Återstår"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1042,19 +1336,13 @@
|
|||
"label.revenue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue"
|
||||
"value": "Intäkter"
|
||||
}
|
||||
],
|
||||
"label.revenue-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
"value": "Se dina intäkter över tid."
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Välj datum"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Välj filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sessionsdata"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "Inställningar"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Dela"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "En dag"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Källor"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "Surfplatta"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tagg"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Taggar"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1180,7 +1510,7 @@
|
|||
"label.team-manager": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team manager"
|
||||
"value": "Teamledare"
|
||||
}
|
||||
],
|
||||
"label.team-member": [
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team-ägare"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Teaminställningar"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Team"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Villkor"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Länk"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Länkar"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Användare"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1535,6 +1859,12 @@
|
|||
"value": " just nu"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1629,6 +1959,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1723,6 +2059,18 @@
|
|||
"value": "Du har inte konfigurerat några webbplatser."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1755,6 +2103,12 @@
|
|||
"value": "Sparat!"
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1817,6 +2171,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1862,11 +2222,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "நிர்வாகியைச் சேர்க்க"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "உலாவிகள்"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "கடவுச்சொல்லை மாற்று"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "சாதனங்கள்"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "நீக்கு"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Event data"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "நிகழ்வுகள்"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "மடிக்கணினி"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -683,6 +863,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -713,6 +899,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -737,6 +935,12 @@
|
|||
"value": "கைபேசி"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -813,12 +1017,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -831,6 +1071,12 @@
|
|||
"value": "Owner"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -867,6 +1113,36 @@
|
|||
"value": "பக்கங்கள்"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -885,6 +1161,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -955,6 +1237,12 @@
|
|||
"value": "தற்போதைய"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -991,6 +1279,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1051,12 +1345,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1099,6 +1387,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1117,6 +1411,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1129,6 +1429,12 @@
|
|||
"value": "அமைப்புகள்"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1141,6 +1447,18 @@
|
|||
"value": "ஒரு நாள்"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1165,6 +1483,18 @@
|
|||
"value": "கையடக்க கணினி"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1201,6 +1531,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1219,6 +1555,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1351,30 +1693,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1531,6 +1855,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1625,6 +1955,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1719,6 +2055,18 @@
|
|||
"value": "உங்களிடம் எந்த வலைத்தளங்களும் கட்டமைக்கப்படவில்லை."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1751,6 +2099,12 @@
|
|||
"value": "வெற்றிகரமாக சேமிக்கப்பட்டது."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -1809,6 +2163,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1854,11 +2214,5 @@
|
|||
"type": 0,
|
||||
"value": "லில் பயன்படுத்துகிறார்"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,6 +23,12 @@
|
|||
"value": "Add"
|
||||
}
|
||||
],
|
||||
"label.add-board": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Add board"
|
||||
}
|
||||
],
|
||||
"label.add-description": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -53,6 +59,12 @@
|
|||
"value": "ผู้ดูแลระบบ"
|
||||
}
|
||||
],
|
||||
"label.affiliate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Affiliate"
|
||||
}
|
||||
],
|
||||
"label.after": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -77,6 +89,24 @@
|
|||
"value": "Analytics"
|
||||
}
|
||||
],
|
||||
"label.apply": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Apply"
|
||||
}
|
||||
],
|
||||
"label.attribution": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Attribution"
|
||||
}
|
||||
],
|
||||
"label.attribution-description": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "See how users engage with your marketing and what drives conversions."
|
||||
}
|
||||
],
|
||||
"label.average": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -95,6 +125,12 @@
|
|||
"value": "Before"
|
||||
}
|
||||
],
|
||||
"label.boards": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Boards"
|
||||
}
|
||||
],
|
||||
"label.bounce-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -119,6 +155,12 @@
|
|||
"value": "เบราว์เซอร์"
|
||||
}
|
||||
],
|
||||
"label.campaigns": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Campaigns"
|
||||
}
|
||||
],
|
||||
"label.cancel": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -131,6 +173,12 @@
|
|||
"value": "เปลี่ยนรหัสผ่าน"
|
||||
}
|
||||
],
|
||||
"label.channels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Channels"
|
||||
}
|
||||
],
|
||||
"label.cities": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -149,12 +197,24 @@
|
|||
"value": "Clear all"
|
||||
}
|
||||
],
|
||||
"label.cohort": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cohort"
|
||||
}
|
||||
],
|
||||
"label.compare": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare"
|
||||
}
|
||||
],
|
||||
"label.compare-dates": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Compare dates"
|
||||
}
|
||||
],
|
||||
"label.confirm": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -173,12 +233,36 @@
|
|||
"value": "Contains"
|
||||
}
|
||||
],
|
||||
"label.content": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Content"
|
||||
}
|
||||
],
|
||||
"label.continue": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Continue"
|
||||
}
|
||||
],
|
||||
"label.conversion": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion"
|
||||
}
|
||||
],
|
||||
"label.conversion-rate": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion rate"
|
||||
}
|
||||
],
|
||||
"label.conversion-step": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Conversion step"
|
||||
}
|
||||
],
|
||||
"label.count": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -233,6 +317,12 @@
|
|||
"value": "Created By"
|
||||
}
|
||||
],
|
||||
"label.currency": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Currency"
|
||||
}
|
||||
],
|
||||
"label.current": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -347,18 +437,42 @@
|
|||
"value": "อุปกรณ์"
|
||||
}
|
||||
],
|
||||
"label.direct": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Direct"
|
||||
}
|
||||
],
|
||||
"label.dismiss": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "ยกเลิก"
|
||||
}
|
||||
],
|
||||
"label.distinct-id": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Distinct ID"
|
||||
}
|
||||
],
|
||||
"label.does-not-contain": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not contain"
|
||||
}
|
||||
],
|
||||
"label.does-not-include": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not include"
|
||||
}
|
||||
],
|
||||
"label.doest-not-exist": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Does not exist"
|
||||
}
|
||||
],
|
||||
"label.domain": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -389,6 +503,12 @@
|
|||
"value": "Edit member"
|
||||
}
|
||||
],
|
||||
"label.email": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Email"
|
||||
}
|
||||
],
|
||||
"label.enable-share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -419,12 +539,24 @@
|
|||
"value": "Event data"
|
||||
}
|
||||
],
|
||||
"label.event-name": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Event name"
|
||||
}
|
||||
],
|
||||
"label.events": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "เหตุการณ์"
|
||||
}
|
||||
],
|
||||
"label.exists": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Exists"
|
||||
}
|
||||
],
|
||||
"label.exit": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -473,6 +605,12 @@
|
|||
"value": "Filters"
|
||||
}
|
||||
],
|
||||
"label.first-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "First click"
|
||||
}
|
||||
],
|
||||
"label.first-seen": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -491,6 +629,12 @@
|
|||
"value": "Understand the conversion and drop-off rate of users."
|
||||
}
|
||||
],
|
||||
"label.funnels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Funnels"
|
||||
}
|
||||
],
|
||||
"label.goal": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -521,16 +665,28 @@
|
|||
"value": "Greater than or equals"
|
||||
}
|
||||
],
|
||||
"label.host": [
|
||||
"label.grouped": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Host"
|
||||
"value": "Grouped"
|
||||
}
|
||||
],
|
||||
"label.hosts": [
|
||||
"label.hostname": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Hosts"
|
||||
"value": "Hostname"
|
||||
}
|
||||
],
|
||||
"label.includes": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Includes"
|
||||
}
|
||||
],
|
||||
"label.insight": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Insight"
|
||||
}
|
||||
],
|
||||
"label.insights": [
|
||||
|
|
@ -551,6 +707,12 @@
|
|||
"value": "Is"
|
||||
}
|
||||
],
|
||||
"label.is-false": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is false"
|
||||
}
|
||||
],
|
||||
"label.is-not": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -569,6 +731,12 @@
|
|||
"value": "Is set"
|
||||
}
|
||||
],
|
||||
"label.is-true": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Is true"
|
||||
}
|
||||
],
|
||||
"label.join": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -593,6 +761,12 @@
|
|||
"value": "Understand how users navigate through your website."
|
||||
}
|
||||
],
|
||||
"label.journeys": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Journeys"
|
||||
}
|
||||
],
|
||||
"label.language": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -611,6 +785,12 @@
|
|||
"value": "แล็ปท็อป"
|
||||
}
|
||||
],
|
||||
"label.last-click": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Last click"
|
||||
}
|
||||
],
|
||||
"label.last-days": [
|
||||
{
|
||||
"type": 1,
|
||||
|
|
@ -675,6 +855,12 @@
|
|||
"value": "Less than or equals"
|
||||
}
|
||||
],
|
||||
"label.links": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Links"
|
||||
}
|
||||
],
|
||||
"label.login": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -705,6 +891,18 @@
|
|||
"value": "Max"
|
||||
}
|
||||
],
|
||||
"label.maximize": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Expand"
|
||||
}
|
||||
],
|
||||
"label.medium": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Medium"
|
||||
}
|
||||
],
|
||||
"label.member": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -729,6 +927,12 @@
|
|||
"value": "โทรศัพท์มือถือ"
|
||||
}
|
||||
],
|
||||
"label.model": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Model"
|
||||
}
|
||||
],
|
||||
"label.more": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -805,12 +1009,48 @@
|
|||
"value": "OK"
|
||||
}
|
||||
],
|
||||
"label.online": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Online"
|
||||
}
|
||||
],
|
||||
"label.organic-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic search"
|
||||
}
|
||||
],
|
||||
"label.organic-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic shopping"
|
||||
}
|
||||
],
|
||||
"label.organic-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic social"
|
||||
}
|
||||
],
|
||||
"label.organic-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Organic video"
|
||||
}
|
||||
],
|
||||
"label.os": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "OS"
|
||||
}
|
||||
],
|
||||
"label.other": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Other"
|
||||
}
|
||||
],
|
||||
"label.overview": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -823,6 +1063,12 @@
|
|||
"value": "เจ้าของ"
|
||||
}
|
||||
],
|
||||
"label.page": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Page"
|
||||
}
|
||||
],
|
||||
"label.page-of": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -859,6 +1105,36 @@
|
|||
"value": "หน้าเพจ"
|
||||
}
|
||||
],
|
||||
"label.paid-ads": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid ads"
|
||||
}
|
||||
],
|
||||
"label.paid-search": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid search"
|
||||
}
|
||||
],
|
||||
"label.paid-shopping": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid shopping"
|
||||
}
|
||||
],
|
||||
"label.paid-social": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid social"
|
||||
}
|
||||
],
|
||||
"label.paid-video": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Paid video"
|
||||
}
|
||||
],
|
||||
"label.password": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -877,6 +1153,12 @@
|
|||
"value": "Paths"
|
||||
}
|
||||
],
|
||||
"label.pixels": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Pixels"
|
||||
}
|
||||
],
|
||||
"label.powered-by": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -947,6 +1229,12 @@
|
|||
"value": "เรียลไทม์"
|
||||
}
|
||||
],
|
||||
"label.referral": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Referral"
|
||||
}
|
||||
],
|
||||
"label.referrer": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -983,6 +1271,12 @@
|
|||
"value": "Regions"
|
||||
}
|
||||
],
|
||||
"label.remaining": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Remaining"
|
||||
}
|
||||
],
|
||||
"label.remove": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1043,12 +1337,6 @@
|
|||
"value": "Look into your revenue across time."
|
||||
}
|
||||
],
|
||||
"label.revenue-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Revenue Property"
|
||||
}
|
||||
],
|
||||
"label.role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1091,6 +1379,12 @@
|
|||
"value": "Select date"
|
||||
}
|
||||
],
|
||||
"label.select-filter": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Select filter"
|
||||
}
|
||||
],
|
||||
"label.select-role": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1109,6 +1403,12 @@
|
|||
"value": "Session"
|
||||
}
|
||||
],
|
||||
"label.session-data": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Session data"
|
||||
}
|
||||
],
|
||||
"label.sessions": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1121,6 +1421,12 @@
|
|||
"value": "ตั้งค่า"
|
||||
}
|
||||
],
|
||||
"label.share": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Share"
|
||||
}
|
||||
],
|
||||
"label.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1133,6 +1439,18 @@
|
|||
"value": "วันที่"
|
||||
}
|
||||
],
|
||||
"label.sms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "SMS"
|
||||
}
|
||||
],
|
||||
"label.sources": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Sources"
|
||||
}
|
||||
],
|
||||
"label.start-step": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1157,6 +1475,18 @@
|
|||
"value": "แท็บเล็ต"
|
||||
}
|
||||
],
|
||||
"label.tag": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tag"
|
||||
}
|
||||
],
|
||||
"label.tags": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Tags"
|
||||
}
|
||||
],
|
||||
"label.team": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1193,6 +1523,12 @@
|
|||
"value": "Team owner"
|
||||
}
|
||||
],
|
||||
"label.team-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Team settings"
|
||||
}
|
||||
],
|
||||
"label.team-view-only": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1211,6 +1547,12 @@
|
|||
"value": "Teams"
|
||||
}
|
||||
],
|
||||
"label.terms": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Terms"
|
||||
}
|
||||
],
|
||||
"label.theme": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1343,30 +1685,12 @@
|
|||
"value": "Update"
|
||||
}
|
||||
],
|
||||
"label.url": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URL"
|
||||
}
|
||||
],
|
||||
"label.urls": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "URLs"
|
||||
}
|
||||
],
|
||||
"label.user": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User"
|
||||
}
|
||||
],
|
||||
"label.user-property": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "User Property"
|
||||
}
|
||||
],
|
||||
"label.username": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1527,6 +1851,12 @@
|
|||
"value": "x"
|
||||
}
|
||||
],
|
||||
"message.bad-request": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Bad request"
|
||||
}
|
||||
],
|
||||
"message.collected-data": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1621,6 +1951,12 @@
|
|||
"value": "url"
|
||||
}
|
||||
],
|
||||
"message.forbidden": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Forbidden"
|
||||
}
|
||||
],
|
||||
"message.go-to-settings": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1715,6 +2051,18 @@
|
|||
"value": "คุณยังไม่ได้ตั้งค่าเว็บไซต์ใด ๆ ไว้."
|
||||
}
|
||||
],
|
||||
"message.not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Not found"
|
||||
}
|
||||
],
|
||||
"message.nothing-selected": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Nothing selected."
|
||||
}
|
||||
],
|
||||
"message.page-not-found": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1747,6 +2095,12 @@
|
|||
"value": "บันทึกข้อมูลเรียบร้อย."
|
||||
}
|
||||
],
|
||||
"message.sever-error": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Server error"
|
||||
}
|
||||
],
|
||||
"message.share-url": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1809,6 +2163,12 @@
|
|||
"value": "Triggered event"
|
||||
}
|
||||
],
|
||||
"message.unauthorized": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Unauthorized"
|
||||
}
|
||||
],
|
||||
"message.user-deleted": [
|
||||
{
|
||||
"type": 0,
|
||||
|
|
@ -1854,11 +2214,5 @@
|
|||
"type": 1,
|
||||
"value": "device"
|
||||
}
|
||||
],
|
||||
"message.visitors-dropped-off": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Visitors dropped off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue