diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000000..1524586d5d2 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# workflow owner +/.github/workflows/ @Jason-2020 diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml new file mode 100644 index 00000000000..1d55fab8d33 --- /dev/null +++ b/.github/workflows/documentation.yaml @@ -0,0 +1,71 @@ +name: Publish documentation + +on: + push: + branches: + - develop + paths: + - 'docs/**' + - '.github/workflows/documentation.yaml' + pull_request: + branches: + - develop + paths: + - 'docs/**' + +jobs: + docs: + runs-on: ubuntu-18.04 + + # name: Node ${{ matrix.node-version }} + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + - name: Use Node.js 10.x + uses: actions/setup-node@v1 + with: + node-version: 10.x + + # https://github.com/actions/cache/blob/master/examples.md#node---yarn + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + + - name: Cache Node.js modules + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + uses: actions/cache@v1 + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-docs-${{ hashFiles('docs/**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-docs-${{ hashFiles('docs/**/yarn.lock') }} + ${{ runner.os }}-yarn-docs- + ${{ runner.os }}-yarn- + + - name: Install + run: | + cd docs/website + yarn install + + - name: Build + if: github.event_name == 'pull_request' + run: | + cd docs/website + yarn run build + env: + CI: true + + - name: Publish + if: github.event_name == 'push' + run: | + cd docs/website + git config --global user.email "$DOC_USERNAME@users.noreply.github.com" + git config --global user.name "$DOC_USERNAME" + echo "machine github.com login $DOC_USERNAME password $DOC_TOKEN" > ~/.netrc + GIT_USER=$DOC_USERNAME CURRENT_BRANCH=develop yarn run publish-gh-pages + env: + CI: true + DOC_USERNAME: ${{ secrets.DOC_USERNAME }} + DOC_TOKEN: ${{ secrets.DOC_TOKEN }} diff --git a/.github/workflows/ui.yaml b/.github/workflows/ui.yaml new file mode 100644 index 00000000000..df8a0f0c5d1 --- /dev/null +++ b/.github/workflows/ui.yaml @@ -0,0 +1,85 @@ +name: UI CI + +on: + push: + branches: + - '**' + paths: + - 'ui/**' + - '.github/workflows/ui.yaml' + tags: + - '*' + pull_request: + branches: + - master + - develop + - apm + - automations + paths: + - 'ui/**' + +jobs: + ui: + runs-on: ubuntu-18.04 + + # name: Node ${{ matrix.node-version }} + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + - name: Use Node.js 10.x + uses: actions/setup-node@v1 + with: + node-version: 10.x + + # https://github.com/actions/cache/blob/master/examples.md#node---yarn + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + + - name: Cache Node.js modules + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + uses: actions/cache@v1 + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-ui-${{ hashFiles('ui/**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-ui-${{ hashFiles('ui/**/yarn.lock') }} + ${{ runner.os }}-yarn-ui- + ${{ runner.os }}-yarn- + + - name: Install + run: | + cd ui + yarn install + + - name: Lint + run: | + cd ui + yarn lint + + - name: Tsc + run: | + cd ui + yarn tsc + + - name: Build + run: | + cd ui + yarn build + + - name: Build docker image [push] + if: github.event_name == 'push' && ( github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/apm' || github.ref == 'refs/heads/automations') + run: | + cd ui + echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin + docker build -t erxes/erxes:${GITHUB_REF#refs/heads/} -f Dockerfile . + docker push erxes/erxes:${GITHUB_REF#refs/heads/} + + - name: Build docker image [tag] + if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') + run: | + cd ui + docker build -t erxes/erxes:${GITHUB_REF#refs/tags/} -f Dockerfile . + docker push erxes/erxes:${GITHUB_REF#refs/tags/} diff --git a/.github/workflows/widgets.yaml b/.github/workflows/widgets.yaml new file mode 100644 index 00000000000..c1e96e0d762 --- /dev/null +++ b/.github/workflows/widgets.yaml @@ -0,0 +1,79 @@ +name: Widgets CI + +on: + push: + branches: + - '**' + paths: + - 'widgets/**' + - '.github/workflows/widgets.yaml' + tags: + - '*' + pull_request: + branches: + - master + - develop + - apm + paths: + - 'widgets/**' + +jobs: + widgets: + runs-on: ubuntu-18.04 + + # name: Node ${{ matrix.node-version }} + + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + - name: Use Node.js 10.x + uses: actions/setup-node@v1 + with: + node-version: 10.x + + # https://github.com/actions/cache/blob/master/examples.md#node---yarn + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + + - name: Cache Node.js modules + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + uses: actions/cache@v1 + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-widgets-${{ hashFiles('widgets/**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn-widgets-${{ hashFiles('widgets/**/yarn.lock') }} + ${{ runner.os }}-yarn-widgets- + ${{ runner.os }}-yarn- + + - name: Install + run: | + cd widgets + yarn install + + - name: Lint + run: | + cd widgets + yarn lint + + - name: Build + run: | + cd widgets + yarn build + + - name: Build docker image [push] + if: github.event_name == 'push' && ( github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/apm' ) + run: | + cd widgets + echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin + docker build -t erxes/erxes-widgets:${GITHUB_REF#refs/heads/} -f Dockerfile . + docker push erxes/erxes-widgets:${GITHUB_REF#refs/heads/} + + - name: Build docker image [tag] + if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') + run: | + cd widgets + docker build -t erxes/erxes-widgets:${GITHUB_REF#refs/tags/} -f Dockerfile . + docker push erxes/erxes-widgets:${GITHUB_REF#refs/tags/} diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 2795986d4e9..00000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,17 +0,0 @@ -variables: - DOCKER_DRIVER: overlay2 - -default: - image: docker:19.03.5 - services: - - docker:19.03.5-dind - -stages: - - install_dependencies - - test_and_build - - build_docker_images - -include: -- local: '/docs/.docs.gitlab-ci.yml' -- local: '/ui/.ui.gitlab-ci.yml' -- local: '/widgets/.widgets.gitlab-ci.yml' diff --git a/README.md b/README.md index 81dc3527b9f..ddf0cc38173 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ erxes is an open source growth marketing platform. Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem. -Live demo | Join us on RocketChat +Live demo | Join our community [![Codacy Badge](https://api.codacy.com/project/badge/Grade/ed8c207f4351446b8ace7a323630889f)](https://www.codacy.com/app/erxes/erxes) [![Codeclimate Badge](https://api.codeclimate.com/v1/badges/693e2ffc40bc2601630d/maintainability)](https://codeclimate.com/github/erxes/erxes/maintainability) @@ -13,7 +13,7 @@ erxes is an open source growth marketing platform. Marketing, sales, and custome [![Backer](https://opencollective.com/erxes/backers/badge.svg?label=Backer&color=brightgreen)](https://opencollective.com/erxes/) [![Sponsor](https://opencollective.com/erxes/sponsors/badge.svg?label=Sponsor&color=brightgreen)](https://opencollective.com/erxes/) -Open Source Growth Marketing Platform +Open Source Growth Marketing Platform ## Features @@ -35,10 +35,47 @@ erxes helps you attract and engage more customers while giving you high lead con * Install erxes
* erxes documentation
* Contributing to erxes
+ +## Deployment + +### Ubuntu 16.04/18.04 LTS +Follow these deployment instructions. + +[![ubuntu](https://erxes-os.s3-us-west-2.amazonaws.com/github/ubuntu-logo.png)](https://docs.erxes.io/installation/ubuntu) + +### Debian 10 +Follow these deployment instructions. + +[![debian](https://erxes-os.s3-us-west-2.amazonaws.com/github/debian-logo.png)](https://docs.erxes.io/installation/debian10) + +### CentOS 8 +Follow these deployment instructions. + +[![debian](https://erxes-os.s3-us-west-2.amazonaws.com/github/centos-logo.png)](https://docs.erxes.io/installation/centos8) + +### Docker +Follow these deployment instructions. + +[![debian](https://erxes-os.s3-us-west-2.amazonaws.com/github/docker-logo.png)](https://docs.erxes.io/installation/docker) + +### Heroku +Host your own erxes server with One-Click Deploy. + +[![debian](https://erxes-os.s3-us-west-2.amazonaws.com/github/heroku.png)](https://heroku.com/deploy?template=https://github.com/erxes/erxes/tree/develop) + +### AWS Marketplace +Launch an EC2 instance using erxes in the AWS Marketplace. + +[![debian](https://erxes-os.s3-us-west-2.amazonaws.com/github/aws-logo.png)](https://aws.amazon.com/marketplace/pp/B086MZ9FVS/) + +### DigitalOcean Droplet +Deploy to a DigitalOcean droplet with our one-click install listing from the DigitalOcean Marketplace. + +[![debian](https://erxes-os.s3-us-west-2.amazonaws.com/github/droplet.png)](https://marketplace.digitalocean.com/apps/erxes) ## Contributors -This project exists thanks to all the people who contribute. [[Contribute]](CONTRIBUTING.md). +This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)] diff --git a/app.json b/app.json index 49f7ec605f6..7b9f7663e57 100644 --- a/app.json +++ b/app.json @@ -10,7 +10,7 @@ ], "website": "https://erxes.io", "repository": "https://github.com/erxes/erxes", - "logo": "https://raw.githubusercontent.com/erxes/erxes/master/public/images/logo-dark.png", + "logo": "https://raw.githubusercontent.com/erxes/erxes/master/ui/public/images/logo-dark.png", "success_url": "/", "env": { "PORT": { diff --git a/docs/.docs.gitlab-ci.yml b/docs/.docs.gitlab-ci.yml deleted file mode 100644 index 36997aca0c6..00000000000 --- a/docs/.docs.gitlab-ci.yml +++ /dev/null @@ -1,46 +0,0 @@ -docs:install_dependencies: - stage: install_dependencies - image: node:10.16-slim - before_script: - - cd docs/website - script: - - yarn install - rules: - - changes: - - docs/website/package.json - # Only creating cache when this file changes. - # If cache is deleted somehow run pipelines manually to create cache again. - # Otherwise new cache won't build until docs/website/package.json file changed. - cache: - key: - files: - - docs/website/package.json - prefix: docs - paths: - - docs/website/node_modules/ - policy: pull-push - -docs:test_and_build: - stage: test_and_build - image: node:10.16-slim - before_script: - - apt-get update && apt-get install -y git - - cd docs/website - - yarn install # install dependencies again if cache is missing - script: - - git config --global user.email "$GITHUB_USERNAME@users.noreply.github.com" - - git config --global user.name "Jason-2020" - - echo "machine github.com login $GITHUB_USERNAME password $GITHUB_TOKEN" > ~/.netrc - - GIT_USER=$GITHUB_USERNAME CURRENT_BRANCH=develop yarn run publish-gh-pages - rules: - - changes: - - docs/**/* - if: '$CI_COMMIT_BRANCH == "develop"' - cache: - key: - files: - - docs/website/package.json - prefix: docs - paths: - - docs/website/node_modules/ - policy: pull diff --git a/docs/docs/administrator/system-config.md b/docs/docs/administrator/system-config.md index 786d13f15cb..17aff1e7b94 100644 --- a/docs/docs/administrator/system-config.md +++ b/docs/docs/administrator/system-config.md @@ -685,7 +685,7 @@ When you start erxes-integration repo webhook will automatically created accordi 6. Select your brand and click save. -7. Go to Setting=> Channel=> Add new channel=> Connect facebook integration. +7. Go to Setting=> Channel=> Add new channel=> Connect WhatsApp integration. ## Sunshine Conversations API Integration @@ -716,15 +716,20 @@ When you start erxes-integration repo webhook will automatically created accordi ### Viber 1. Create a Public Account -+ You can create an account for testing and development purpose by registering on the [Viber admin panel](https://partners.viber.com/). Note that accounts created this way can’t be discovered by the public and Viber limits the messaging volume on them. -To create an account for production usage, contact Viber directly using [this form](https://support.viber.com/customer/portal/emails/new). - ++ You can create an account for testing and development purpose by registering on the [Viber admin panel](https://partners.viber.com/). ++ Fill out all required fields and create your Bot account. + ++ You can share the QR code with your customers and partners. + + 2. Once you have your Public Account token, copy and paste it into Viber token field on the Add Viber page from erxes App Store. Then click on “Save”. + +3. Go to Setting=> Channel=> Add new channel=> Connect Viber integration. ### Telegram @@ -738,15 +743,94 @@ To create an account for production usage, contact Viber directly using [this fo -4. Then copy your bot token and paste it into Telegram Bot Token field on the add Telegram page from erxes App Store. Then click on “Save” + + + + You can share the link with your customers and partners and they can connect with you. +4. Then copy your bot token and paste it into Telegram Bot Token field on the add Telegram page from erxes App Store. Then click on “Save” -## Engage configurationsmo +5. Go to Setting=> Channel=> Add new channel=> Connect Telegram integration. + +### LINE + ++ A Channel ID and Channel Secret will need to be retrieved from the Line Developers Platform + ++ The Smooch Webhook URL will need to be added to the LINE Developers Platform. + +1. Sign in to a [Line Developer Console](https://developers.line.biz/console/) + +2. Select the Provider you created in the LINE Official Accounts platform previously or create new one. + + + +3. Create Channel and select it to connect. + + + ++ Then you will get your channel id and secret. + + + + + +4. Go to Erxes settings => App store => **add line**. + + + +5. Copy and paste your channel id and secret to corresponding fields on the add LINE page from erxes App Store. Then click on “Save”. Then erxes will give you a webhook url. + + + +6. Navigate to the Messaging API tab and add the Webook URL found in the previous step to the Webhook URL field. + +7. Press Update and then Verify. + + + +8. Turn on the Use Webhook switch. + + + +9. Get your QR Code from Messaging API tab and share the QR Code with your customers and partners. This code will allow them to connect with you using LINE chat. + + + +10. Go to Setting=> Channel=> Add new channel=> Connect LINE integration. + +### Twilio SMS + +1. Sign in to a [Twilio Console](https://www.twilio.com/console) + +2. Go to the [Twilio Console](https://www.twilio.com/console) and press the red "Get a Trial Number" button. Twilio will recommend a phone number based on your location. + ++ If you don't have a preference, you can click on the red "Choose this Number" button. However, if you would like to purchase a number from a different country or you just would like a different number from the one recommended, you can click on "Search for a different number". + ++ You can select a number from any country available on Twilio. The only prerequisite for Erxes integration to work is SMS capability. Bear in mind that Twilio does offer numbers without SMS functionality, those won't work. + + + + + +3. Copy and paste your ACCOUNT SID and AUTH TOKEN to corresponding fields on the add Twilio SMS page from erxes App Store. + + + +4. Get your phone number sid from [twilio](https://www.twilio.com/console/phone-numbers/incoming) + + + +5. Copy and paste your PHONE NUMBER SID to PHONE NUMBER SID field on the add Twilio SMS page from erxes App Store. Then click on “Save”. + + + +6. Go to Setting=> Channel=> Add new channel=> Connect Twilio integration. + +## Engage configurations ### AWS SES diff --git a/docs/docs/developer/contributing.md b/docs/docs/developer/contributing.md index 5d6094999d5..15343e04db9 100644 --- a/docs/docs/developer/contributing.md +++ b/docs/docs/developer/contributing.md @@ -12,7 +12,7 @@ We would love for you to contribute to Erxes and help make it even better than i * [Submission Guidelines](#submission-guidelines) * [Coding Standards](#coding-standards) * [Commit Message Guidelines](#commit-message-guidelines) -* [Swag for Contributions]() +* [Swag for Contributions](#swag-for-contributions) ### Found a Bug? @@ -389,4 +389,4 @@ revert: feat(inbox): add 'graphiteWidth' option To show our appreciation, we are sending everyone who contributes to erxes a special package, which includes a t-shirt and stickers. [Click here](https://erxes.io/hubspot-alternative-erxes-swag) to claim your swag. (Worldwide free shipping included!)

-

+

diff --git a/docs/docs/developer/developer.md b/docs/docs/developer/developer.md index b9335715477..10df1faf50e 100644 --- a/docs/docs/developer/developer.md +++ b/docs/docs/developer/developer.md @@ -42,6 +42,9 @@ cp .env.sample .env # Install dependencies (package.json) yarn install +# Create admin user & save the returned password +yarn initProject + # Load sample data yarn loadInitialData @@ -74,5 +77,5 @@ Visit http://localhost:3000 and login using following credentials ``` username: admin@erxes.io -password: erxes +password: the password generated during initProject ``` diff --git a/docs/docs/developer/troubleshooting.md b/docs/docs/developer/troubleshooting.md index 74f38f71e0d..29438349450 100644 --- a/docs/docs/developer/troubleshooting.md +++ b/docs/docs/developer/troubleshooting.md @@ -5,36 +5,36 @@ sidebar_label: Troubleshooting --- ## Nylas -Having troubles with your own Nylas App? We recommend you to read this [developer guide](https://docs.nylas.com/docs) +Having troubles with your own Nylas App? We recommend you to read this [developer guide](https://docs.nylas.com/docs). ## Integration -* After you create an integration do not forget to add it to a channel, Otherwise, you will not see an email or message integration in Inbox +* After you create an integration do not forget to add it to a channel, Otherwise, you will not see an email or message integration in Inbox. + +## Revoke Google app +* After removing your **Nylas-Gmail** or **Gmail** account from Erxes you will also need to revoke your Erxes app [Google App permissions]( https://myaccount.google.com/permissions). ## Password Encryption -In Outlook, Yahoo, IMAP providers you will need to enter your password so following configs required for encryption +In **Outlook**, **Yahoo**, **IMAP** providers your password needs to be encrypted so following configs are required before you create an account. - ALGORITHM -- ENCRYPTION KEY +- ENCRYPTION KEY ## Nylas IMAP -> Before you add IMAP account please make sure that you already config ENCRYPTION KEY, ALGORITHM [here](#password-encryption) +> Before you add IMAP account please make sure that you already config ENCRYPTION KEY, ALGORITHM [here](#password-encryption). When you create the IMAP account check you entered correct values for example: -* Common [a List of SMTP and IMAP Server](https://www.arclab.com/en/kb/email/list-of-smtp-and-imap-servers-mailserver-list.html) -* If you have Nylas IMAP specific problem read [here](https://docs.nylas.com/docs/imap) - -## Nylas Gmail -* After removing your Nylas Gmail account from Erxes you will also need to revoke your Erxes app [Google App permissions]( https://myaccount.google.com/permissions) +* Common [a List of SMTP and IMAP Server](https://www.arclab.com/en/kb/email/list-of-smtp-and-imap-servers-mailserver-list.html). +* If you have Nylas IMAP specific problem read [here](https://docs.nylas.com/docs/imap). ## Gmail * Before you use Gmail integration please make sure that you enter correct GOOGLE TOPIC, GOOGLE GMAIL SUBSCRIPTION NAME it should be single string otherwise you will get invalid_format error. -* Permission Denied, when creating or checking Google Topic and Subscription make sure your service account has owner role in IAM & Admin -> IAM +* Permission Denied, when creating or checking Google Topic and Subscription make sure your service account has owner role in IAM & Admin -> IAM. -* If you are not receiving any emails, please check you add Grant Publish Topic right to **gmail-api-push@system.gserviceaccount.com** in IAM & Admin -> IAM -> Add \ No newline at end of file +* If you are not receiving any emails, please check you add Grant Publish Topic right to **gmail-api-push@system.gserviceaccount.com** in IAM & Admin -> IAM -> Add. \ No newline at end of file diff --git a/docs/docs/installation/aws.md b/docs/docs/installation/aws.md index 2ca938a5ed9..b0c02376957 100644 --- a/docs/docs/installation/aws.md +++ b/docs/docs/installation/aws.md @@ -3,7 +3,7 @@ id: aws title: AWS Marketplace --- -Launch an EC2 instance selecting `erxes` in the AWS Marketplace. +Launch an EC2 instance using [erxes](https://aws.amazon.com/marketplace/pp/B086MZ9FVS/) in the AWS Marketplace. Once you have created the EC2 instance using erxes AMI product in the AWS Marketplace, you will then have erxes up and running and it will be accessible by public hostname of the EC2 instance. ## Create an admin user diff --git a/docs/docs/installation/digitalocean.md b/docs/docs/installation/digitalocean.md index 6ae28f51149..b71fc08327e 100644 --- a/docs/docs/installation/digitalocean.md +++ b/docs/docs/installation/digitalocean.md @@ -3,7 +3,7 @@ id: digitalocean title: DigitalOcean Marketplace --- -Launch a Droplet selecting `erxes` in the DigitalOcean Marketplace. +Launch a Droplet using [erxes](https://marketplace.digitalocean.com/apps/erxes) in the DigitalOcean Marketplace. Once you have created the Droplet, you will then have erxes up and running and it will be accessible by public IP address of the Droplet. ## Create an admin user @@ -57,7 +57,7 @@ To be able to use your own domain with erxes, you will need to do a few steps. NODE_ENV: "production", REACT_APP_API_URL: "http://your_domain/api", REACT_APP_API_SUBSCRIPTION_URL: "ws://your_domain/api/subscriptions", - REACT_APP_CDN_HOST: "http://your_domain/widgets" + REACT_APP_CDN_HOST: "http://your_domain/widgets", }; ``` @@ -69,8 +69,7 @@ To be able to use your own domain with erxes, you will need to do a few steps. pm2 restart ecosystem.json ``` -6. Switch to `root` user and update your nginx config - `server_name` with your domain. +6. Switch to `root` user and edit your nginx config file located in `/etc/nginx/sites-available/default` and replace `server_name` with your domain. 7. Lastly reload your nginx service by running `systemctl reload nginx` diff --git a/docs/docs/installation/heroku.md b/docs/docs/installation/heroku.md index 6be56fcd5fb..3147540a5f2 100644 --- a/docs/docs/installation/heroku.md +++ b/docs/docs/installation/heroku.md @@ -23,8 +23,6 @@ In this installation guide, we pretend the following app names will be available Try the following 3 steps to install all required apps on Heroku. -**Note**: When setting up config vars (environment vars), do not change the PORT numbers of all apps. - ### 1. Install erxes Please try clicking the deploy button below, then set all the config vars and hit the Deploy app button. @@ -46,19 +44,19 @@ Now it's time to install erxes API - click the button below and set the config v **Config vars:** ```sh +PORT = 3300 +PORT_CRONS = 3600 +PORT_WORKERS = 3700 DOMAIN = https://erxes-api.herokuapp.com -INTEGRATIONS_API_DOMAIN = https://ERXESINTEGRATIONSAPINAME.herokuapp.com MAIN_APP_DOMAIN = https://erxes.herokuapp.com MONGO_URL = mongodb:// # leave it as is, we will update it later on -PORT = 3300 -RABBITMQ_HOST = RABBITMQ_HOST +RABBITMQ_HOST = RABBITMQ_HOST # we will update it later on REDIS_HOST = REDIS_HOST # we will update it later on REDIS_PASSWORD = REDIS_PASS # we will update it later on REDIS_PORT = 28229 # update it later on -WIDGETS_DOMAIN = https://erxes-widget.herokuapp.com -PORT_CRONS: 3600, -PORT_WORKERS: 3700, JWT_TOKEN_SECRET: "replact it with your token" +LOGS_API_DOMAIN = "update it when you install logger app" +INTEGRATIONS_API_DOMAIN = "update it when you install integrations app" ``` [![Deploy erxes API](https://www.herokucdn.com/deploy/button.svg#heroku "Deploy erxes API")](https://heroku.com/deploy?template=https://github.com/erxes/erxes-api/tree/develop) @@ -78,15 +76,21 @@ Update REDIS_HOST, REDIS_PASSWORD, and REDIS_PORT values using REDIS_URL's value Please now go to Resources tab as you will need to start `cronjob` and `worker` processes. Start `cronjob` and `worker`. +#### Load initial data + The last step is to insert initial data. To do that you will need to clone `erxes-api` repo and `mongorestore` tool. Clone the `erxes-api` and run the following commands in the terminal. -`cd erxes-api` +`cd erxes-api/src` + +The below command will create initial permission groups, permissions, growth hack templates, email templates and some sample data. -`mongorestore --host=host --port=port -u user -d db initialData` +`mongorestore --host= --port= -u -d initialData` -`mongorestore --host=host --port=port -u user -d db permissionData` +If do not want to load sample data then you can run following command just to load permissions. + +`mongorestore --host= --port= -u -d permissionData` **Note**: extract `host`, `port`, `user`, `db` from the `MONGO_URI` config var. @@ -104,10 +108,10 @@ Now install erxes Widget app by clicking the deploy button below and set config **Config vars:** ```sh -API_SUBSCRIPTIONS_URL = ws://erxes-api.herokuapp.com/subscriptions -MAIN_API_URL = https://erxes.herokuapp.com -PORT = 3200 ROOT_URL = https://erxes-widget.herokuapp.com +API_URL = https://erxes-api.herokuapp.com +API_SUBSCRIPTIONS_URL = wss://erxes-api.herokuapp.com/subscriptions +PORT = 3200 ``` [![Deploy Widgets](https://www.herokucdn.com/deploy/button.svg#heroku "Deploy erxes Widgets")](https://heroku.com/deploy?template=https://github.com/batnasan/erxes-widgets-heroku-button) @@ -119,20 +123,38 @@ Now it's time to grab yourself a cup of coffee and enjoy using **erxes**. There is a several apps available for you to install and make erxes even more powerful. The steps of installing them are same as above. -### 1. Install erxes integrations +### 4. Install Logger + +**Config vars:** + +```sh +PORT = 3800 +MONGO_URL = MONGO_URL # we will update it later on +RABBITMQ_HOST = copy and paste from erxes-api RABBITMQ_HOST config var +``` + +Once the app is deployed, go to `Settings` and click `Config Vars` button. +Copy `MONGO_URI`'s value and paste it into `MONGO_URL`. + +[![Deploy Widgets](https://www.herokucdn.com/deploy/button.svg#heroku "Deploy erxes integrations")](https://heroku.com/deploy?template=https://github.com/batnasan/erxes-logger-heroku-button) + +### 5. Install erxes integrations **Config vars:** ```sh PORT = 3400 DOMAIN = https://erxes-integration.herokuapp.com -MAIN_API_DOMAIN = MAIN_API_DOMAIN -MAIN_APP_DOMAIN = MAIN_APP_DOMAIN -MONGO_URL = MONGO_URL # we will update it later on +MAIN_API_DOMAIN = API domain +MAIN_APP_DOMAIN = Front app domain +MONGO_URL = INTEGRATION_MONGO_URL # we will update it later on RABBITMQ_HOST = copy and paste from erxes-api RABBITMQ_HOST config var +REDIS_HOST = copy and paste from erxes-api REDIS_HOST config var +REDIS_PASSWORD = copy and paste from erxes-api REDIS_PASSWORD config var +REDIS_PORT = copy and paste from erxes-api REDIS_PORT config var ``` -[![Deploy Widgets](https://www.herokucdn.com/deploy/button.svg#heroku "Deploy erxes engages email sender")](https://heroku.com/deploy?template=https://github.com/erxes/erxes-integrations/tree/develop) +[![Deploy Widgets](https://www.herokucdn.com/deploy/button.svg#heroku "Deploy erxes integrations")](https://heroku.com/deploy?template=https://github.com/erxes/erxes-integrations/tree/develop) Once the app is deployed, go to `Settings` and click `Config Vars` button. Copy `MONGODB_URI`'s value and paste it into `MONGO_URL`. diff --git a/docs/docs/overview/getting-started.md b/docs/docs/overview/getting-started.md index 185861f062a..00695df5328 100644 --- a/docs/docs/overview/getting-started.md +++ b/docs/docs/overview/getting-started.md @@ -25,6 +25,7 @@ title: Getting Started - Popups - Script installation - Contacts +- Segments - Sales pipeline - Engage - Insights diff --git a/docs/docs/user/script-install.md b/docs/docs/user/script-install.md index 3bccc8b4e34..575d82be033 100644 --- a/docs/docs/user/script-install.md +++ b/docs/docs/user/script-install.md @@ -483,7 +483,7 @@ Basic steps to install Erxes scripts. --- ## Advanced setup -Advanced steps to install scripts. +Advanced steps to install scripts. Erxes let you enable to track all possible customer fields from messenger. ### Get data from your web app (for logged-in users) #### Step 1:Copy messenger install code. @@ -509,85 +509,98 @@ Advanced steps to install scripts. -#### Step 3: If you want to get user email, phone and code automatically. You can write under brand id in your code: +#### Step 3: If you want to get user information automatically, you can insert additional field under `brand_id ` in your messenger script. Insert the messenger script in your web body section. : ``` + ``` -(see the below figure). - - - -#### Step 4: After you edit you will see user email, phone, and code will be automatically displayed on the right sidebar. - +#### Step 4: As you can see the user details, all value will be automatically displayed on each field on user profile. -

-

-

- -#### Step 5: If you want to get firstname, lastname, bio automatically. You can write under brand id in your code: +#### Step 5: Check the custom fields value, it is shown on Tracked data field on left down side. +(see the bellow figure). ``` -data :{ - -firstName:””, - -lastName:””, - -bio:””, - -} + // custom fields =========== + // createdAt is reserved field + updatePlan: new Date('2020-04-25'), + plan: 'paid', ``` -(see the below figure). - - + -#### Step 6: After you edit you will see user firstname, lastname and bio will be automatically displayed on the right sidebar. - - - - -

-

-

- - - - -#### Step 7: Also If you want to get any data of your Web app automatically. You can just write in your source code inside the data section. (See the below figure). - - - +#### Step 6: Check the companyData value, it is shown on Companied field on upper right side. +(see the above figure). +``` +companyData: { + name: 'name', + 'links.website': 'http://website.com', + }, +```

- ### Manipulate your messenger function @@ -643,7 +656,7 @@ You can manipulate the position of the messenger body like following. The messen (function() { var script = document.createElement('script'); - script.src = "https://w.office.erxes.io/build/messengerWidget.bundle.js"; + script.src = "http://localhost:3200/build/messengerWidget.bundle.js"; script.async = true; var entry = document.getElementsByTagName('script')[0]; entry.parentNode.insertBefore(script, entry); diff --git a/docs/docs/user/segments.md b/docs/docs/user/segments.md index 5ceba1e2b50..fd090c52c52 100644 --- a/docs/docs/user/segments.md +++ b/docs/docs/user/segments.md @@ -4,104 +4,245 @@ title: Segments --- -Coordinate and manage your companies and customers in one go from company database. It enables you to filter companies and customers by websites, size, plan industry, session count in an more realistic way. + A segment is smaller group of your contacts defined by rules or filters that you set. Coordinate and manage your companies and customers in one go from the company database. Erxes let you filter and segment an important group of data for targeted purposes such as by websites, size, plan industry, session count or some criteria in a more realistic way. + --- ## Setup segment -Segment is a customer data management and analytics solution that helps you make sense of customer and company data coming from multiple sources. +The segment is a customer data management and analytics solution that helps you make sense of customer and company data coming from multiple sources. There are two main categories of segments. One is the properties segment which belongs to basic information of companies, customers and leads. The another one is the custom event segment. It will able to create actions yourself that are triggered by something your customer performs on your site or app. + +You can create a new segment by different ways from different paths. +1. Go to Erxes Settings => Segments => select Customer/Company => New segment. -+ Please follow the steps for setup: Certain Features ->Segment > Add Segment +
+ +
+
+ +
-1. Click on top right corner of segment -2. Click New segment +2. You can directly create from Certain Features. Certain feature => Segment => New segment. + + + Click on top right corner of segment. + + Click New segment.
---- -## Create segment -Segment is a customer data management and analytics solution that helps you make sense of customer and company data coming from multiple sources. -+ Please follow the steps for setup: Certain Features ->Segment > Add Segment +## Create Properties Segments +The properties segment is a data management and analytics solution that helps you make sense of customer and company basic data coming from multiple sources. + ++ Please follow the steps for setup: Certain Features => FILTER BY SEGMENTS => New Segment. +- **Let's take an example, It is shown the number of new users created in March 2020.**
- +
-1. Add condition for the Segment -2. Click Add Condition -3. Insert your condition “30 online customers” -4. Insert Name for the Segment -5. Insert Description for the Segment -6. Choose Sub Segment -7. Choose Color for the Segment -8. Click Save to create Segment -9. The numbers of customers equals to created segment +1. Insert Name for the Segment. +2. Choose Sub Segment. +3. Insert Description for the Segment. +4. Choose Color for the Segment. +5. Choose Segment type. (If you create Properties Segments, select the Add Properties. +6. Choose Segment type. (If you create Event Segments, select the Add Events. +7. Select the Filter property. +8. Select operator. +9. Insert value. +10. Show count and Save the Segment. +11. The numbers of results. + + +### Sub-segments of segment +Sub-segment allows you to create a new filter on the parent segment. Once we have created the segment on the above example. If we need more filters on that segment, you can create a new segment. In the sub-segment section, you need to call the parent segment. The following example shows who had set their primary email from created users in March 2020. + +
+ +
+ + +### Study case of segment + + Learn the following case studies for how to set segments using some SELECT OPERATORs on date fields. + + + + date relative less than + + date relative greater than + + will occur before on following n-th minute + + will occur after on following n-th minute + + will occur before on following n-th day + + will occur after on following n-th day + --- -## Create event +#### Date relative less than + +This operator let you filter on date fields that the all-action or all-state had been being occurred until your specified date. +Take an example, let's create a segment that inactive users **for the last 3 weeks**. In this case, use "date relative less than" operator to show all inactive users who did not seen at on exactly twenty-one days from the current time. + +`"date relative less than now-21d/d " `- filters the specified data from the past until 21 days ago from the current time. + -#### Copy script ``` - - + var script = document.createElement('script'); + script.src = "http://localhost:3200/build/eventsWidget.bundle.js"; + script.async = true; + var entry = document.getElementsByTagName('script')[0]; + entry.parentNode.insertBefore(script, entry); + })(); + + ``` -#### Register events +#### Step 2: Register events + +You can arrange the event occurs (such as when a user clicks a button). The example shows when users click `GET STARTED` button, it will register event named `get-start` with attributes price 100 and view 80%. Later you can make segment for event name, therefore filter with your defined attributes. Copy the code below and paste it onto your website page body section. + + ``` - - - +
+ +
+ ``` -#### Create segments using registered events +#### Step 3: Create segments using registered events +While your configured event is triggered, the event will be recorded on your database, then you can create the event segments. +
+ +
+
+In the above script, there are configured attributes such as price and view. You can add more filters on the attributes.
- +
+
+--- +### Segment customer properties according to tracked data. +Erxes allows you to create customer properties segment based on event triggers. For example, when user clicked button for **Update plan attribute**, this user will be registered Tracked data section with `pricing-team111` attributes. Later you can create properties segment directly. -#### Update customer properties ``` ``` -#### Check registered attribute +#### Check user's registered attribute +
+ +
+ +#### Customer segment based on event triggers using properties segment(Tracked data section).
- +
\ No newline at end of file diff --git a/docs/website/package.json b/docs/website/package.json index 71c8d8f34d1..1f87392a9d8 100644 --- a/docs/website/package.json +++ b/docs/website/package.json @@ -9,6 +9,6 @@ "rename-version": "docusaurus-rename-version" }, "devDependencies": { - "docusaurus": "^1.14.3" + "docusaurus": "^1.14.4" } } diff --git a/docs/website/static/img/docusaurus.svg b/docs/website/static/img/docusaurus.svg index f80b2217c7b..8f91fe4991c 100644 --- a/docs/website/static/img/docusaurus.svg +++ b/docs/website/static/img/docusaurus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/website/static/img/erxes.png b/docs/website/static/img/erxes.png index a6c2cbda2c8..2bbe1e7cd4b 100644 Binary files a/docs/website/static/img/erxes.png and b/docs/website/static/img/erxes.png differ diff --git a/docs/website/static/img/favicon.png b/docs/website/static/img/favicon.png index 2b57699fb3f..6fd2ac80a00 100644 Binary files a/docs/website/static/img/favicon.png and b/docs/website/static/img/favicon.png differ diff --git a/docs/website/static/img/thumb.png b/docs/website/static/img/thumb.png index d44a5d58c15..371be0c383b 100644 Binary files a/docs/website/static/img/thumb.png and b/docs/website/static/img/thumb.png differ diff --git a/ui/.drone.yml b/ui/.drone.yml deleted file mode 100644 index 9e5852042b6..00000000000 --- a/ui/.drone.yml +++ /dev/null @@ -1,99 +0,0 @@ -pipeline: - test: - image: node:10.16.0-slim - commands: - - yarn install - - yarn lint - - yarn tsc - - build: - image: node:10.16.0-slim - commands: - - apt-get update && apt-get install -y git - - git checkout $DRONE_COMMIT_BRANCH - - yarn build - when: - branch: - - master - - develop - - staging - event: - - push - - build_tag: - image: node:10.16.0-slim - commands: - - yarn build - - tar -zcf ${DRONE_REPO_NAME}_${DRONE_TAG}.tar.gz build - when: - event: - - tag - - github_prerelease: - image: plugins/github-release - secrets: [ github_token ] - prerelease: true - files: - - ${DRONE_REPO_NAME}_${DRONE_TAG}.tar.gz - checksum: - - sha256 - when: - event: - - tag - ref: - include: - - "refs/tags/*rc*" - - "refs/tags/*alpha*" - - "refs/tags/*beta*" - - github_release: - image: plugins/github-release - secrets: [ github_token ] - files: - - ${DRONE_REPO_NAME}_${DRONE_TAG}.tar.gz - checksum: - - sha256 - when: - event: - - tag - ref: - include: - - "refs/tags/*" - exclude: - - "refs/tags/*rc*" - - "refs/tags/*alpha*" - - "refs/tags/*beta*" - - docker_publish: - image: plugins/docker - repo: ${DRONE_REPO_OWNER}/${DRONE_REPO_NAME} - dockerfile: Dockerfile - secrets: - - source: docker_hub_username - target: docker_username - - source: docker_hub_password - target: docker_password - tags: - - ${DRONE_BRANCH} - when: - branch: - - master - - develop - - staging - event: - - push - - docker_publish_tag: - image: plugins/docker - repo: ${DRONE_REPO_OWNER}/${DRONE_REPO_NAME} - dockerfile: Dockerfile - secrets: - - source: docker_hub_username - target: docker_username - - source: docker_hub_password - target: docker_password - tags: - - ${DRONE_TAG} - when: - event: - - tag diff --git a/ui/.ui.gitlab-ci.yml b/ui/.ui.gitlab-ci.yml deleted file mode 100644 index 911cb5cbb9e..00000000000 --- a/ui/.ui.gitlab-ci.yml +++ /dev/null @@ -1,66 +0,0 @@ -ui:install_dependencies: - stage: install_dependencies - image: node:10.16-alpine - before_script: - - cd ui - script: - - yarn install - rules: - - changes: - - ui/package.json - - ui/yarn.lock - # Only creating cache when this file changes. - # If cache is deleted somehow run pipelines manually to create cache again. - # Otherwise new cache won't build until ui/package.json file changed. - cache: - key: - files: - - ui/package.json - - ui/yarn.lock - prefix: ui - paths: - - ui/node_modules/ - policy: pull-push - -ui:test_and_build: - stage: test_and_build - image: node:10.16-alpine - before_script: - - cd ui - - yarn install # install dependencies again if cache is missing - - apk add --no-cache --update git - - git checkout ${CI_COMMIT_REF_NAME} - script: - - yarn lint - - yarn tsc - - yarn build - rules: - - changes: - - ui/**/* - cache: - key: - files: - - ui/package.json - prefix: ui - paths: - - ui/node_modules/ - artifacts: - expire_in: 1h - paths: - - ui/build/ - -ui:build_docker_image: - stage: build_docker_images - before_script: - - docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD - script: - - cd ui - - docker build -t erxes/$CI_PROJECT_NAME:${CI_COMMIT_REF_NAME} -f Dockerfile . - - docker push erxes/$CI_PROJECT_NAME:${CI_COMMIT_REF_NAME} - rules: - - changes: - - ui/**/* - if: '$CI_COMMIT_BRANCH == "master" || $CI_COMMIT_BRANCH == "develop" || $CI_COMMIT_BRANCH == "apm"' - needs: - - job: ui:test_and_build - artifacts: true diff --git a/ui/package.json b/ui/package.json index 1098f13e0de..cf06ec1ede1 100644 --- a/ui/package.json +++ b/ui/package.json @@ -16,7 +16,7 @@ "apollo-link-http": "^1.5.16", "apollo-link-ws": "^1.0.8", "apollo-utilities": "^1.0.5", - "autolinker": "^3.0.0", + "autolinker": "3.14.0", "bat-draft-js-mention-plugin": "^2.0.1", "ckeditor4-react": "^1.0.0", "classnames": "^2.2.5", diff --git a/ui/public/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg b/ui/public/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg index 9298aefd8ae..ceb1ac84709 100644 --- a/ui/public/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg +++ b/ui/public/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg @@ -1,25 +1 @@ - - - - cursor_disabled - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file +cursor_disabled \ No newline at end of file diff --git a/ui/public/ckeditor/plugins/copyformatting/cursors/cursor.svg b/ui/public/ckeditor/plugins/copyformatting/cursors/cursor.svg index 95951478f01..5befc35616d 100644 --- a/ui/public/ckeditor/plugins/copyformatting/cursors/cursor.svg +++ b/ui/public/ckeditor/plugins/copyformatting/cursors/cursor.svg @@ -1,14 +1 @@ - - - cursor - - - - - - - - - - - +cursor \ No newline at end of file diff --git a/ui/public/ckeditor/plugins/emoji/assets/iconsall.svg b/ui/public/ckeditor/plugins/emoji/assets/iconsall.svg index da6bc8d34e0..d0ca4ef780c 100644 --- a/ui/public/ckeditor/plugins/emoji/assets/iconsall.svg +++ b/ui/public/ckeditor/plugins/emoji/assets/iconsall.svg @@ -1,58 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/ckeditor/plugins/icons.png b/ui/public/ckeditor/plugins/icons.png index 2a66e0c5de2..a95d0415ebb 100644 Binary files a/ui/public/ckeditor/plugins/icons.png and b/ui/public/ckeditor/plugins/icons.png differ diff --git a/ui/public/ckeditor/plugins/icons_hidpi.png b/ui/public/ckeditor/plugins/icons_hidpi.png index f81e5d3ef5f..b7b71bfe761 100644 Binary files a/ui/public/ckeditor/plugins/icons_hidpi.png and b/ui/public/ckeditor/plugins/icons_hidpi.png differ diff --git a/ui/public/ckeditor/plugins/image/images/noimage.png b/ui/public/ckeditor/plugins/image/images/noimage.png index 74c6ee9262b..e3ef18e103e 100644 Binary files a/ui/public/ckeditor/plugins/image/images/noimage.png and b/ui/public/ckeditor/plugins/image/images/noimage.png differ diff --git a/ui/public/ckeditor/plugins/link/images/hidpi/anchor.png b/ui/public/ckeditor/plugins/link/images/hidpi/anchor.png index 186c3e91651..8a0e431b1fe 100644 Binary files a/ui/public/ckeditor/plugins/link/images/hidpi/anchor.png and b/ui/public/ckeditor/plugins/link/images/hidpi/anchor.png differ diff --git a/ui/public/ckeditor/plugins/smiley/images/broken_heart.gif b/ui/public/ckeditor/plugins/smiley/images/broken_heart.gif index 4162a7b24df..eaab875893b 100644 Binary files a/ui/public/ckeditor/plugins/smiley/images/broken_heart.gif and b/ui/public/ckeditor/plugins/smiley/images/broken_heart.gif differ diff --git a/ui/public/ckeditor/plugins/smiley/images/envelope.gif b/ui/public/ckeditor/plugins/smiley/images/envelope.gif index 5294ec488db..9c50c03c34f 100644 Binary files a/ui/public/ckeditor/plugins/smiley/images/envelope.gif and b/ui/public/ckeditor/plugins/smiley/images/envelope.gif differ diff --git a/ui/public/ckeditor/plugins/smiley/images/heart.gif b/ui/public/ckeditor/plugins/smiley/images/heart.gif index 160be8eff86..1e87341b6d3 100644 Binary files a/ui/public/ckeditor/plugins/smiley/images/heart.gif and b/ui/public/ckeditor/plugins/smiley/images/heart.gif differ diff --git a/ui/public/ckeditor/plugins/smiley/images/kiss.gif b/ui/public/ckeditor/plugins/smiley/images/kiss.gif index ffb23db05a7..0f12d612df5 100644 Binary files a/ui/public/ckeditor/plugins/smiley/images/kiss.gif and b/ui/public/ckeditor/plugins/smiley/images/kiss.gif differ diff --git a/ui/public/ckeditor/plugins/smiley/images/thumbs_up.gif b/ui/public/ckeditor/plugins/smiley/images/thumbs_up.gif index 9cc37029a9d..5aa8581ab0c 100644 Binary files a/ui/public/ckeditor/plugins/smiley/images/thumbs_up.gif and b/ui/public/ckeditor/plugins/smiley/images/thumbs_up.gif differ diff --git a/ui/public/ckeditor/skins/moono/icons.png b/ui/public/ckeditor/skins/moono/icons.png index 04851c55242..3e011e397a6 100644 Binary files a/ui/public/ckeditor/skins/moono/icons.png and b/ui/public/ckeditor/skins/moono/icons.png differ diff --git a/ui/public/ckeditor/skins/moono/icons_hidpi.png b/ui/public/ckeditor/skins/moono/icons_hidpi.png index 5dd10fed180..98863dcc666 100644 Binary files a/ui/public/ckeditor/skins/moono/icons_hidpi.png and b/ui/public/ckeditor/skins/moono/icons_hidpi.png differ diff --git a/ui/public/ckeditor/skins/moono/images/close.png b/ui/public/ckeditor/skins/moono/images/close.png index 2d0297731b2..1aa344f3a25 100644 Binary files a/ui/public/ckeditor/skins/moono/images/close.png and b/ui/public/ckeditor/skins/moono/images/close.png differ diff --git a/ui/public/ckeditor/skins/moono/images/hidpi/anchor.png b/ui/public/ckeditor/skins/moono/images/hidpi/anchor.png index 17cca974e73..7ecc2be32ab 100644 Binary files a/ui/public/ckeditor/skins/moono/images/hidpi/anchor.png and b/ui/public/ckeditor/skins/moono/images/hidpi/anchor.png differ diff --git a/ui/public/ckeditor/skins/moono/images/hidpi/close.png b/ui/public/ckeditor/skins/moono/images/hidpi/close.png index de4eedf6572..7f8907aa2d1 100644 Binary files a/ui/public/ckeditor/skins/moono/images/hidpi/close.png and b/ui/public/ckeditor/skins/moono/images/hidpi/close.png differ diff --git a/ui/public/ckeditor/skins/moono/images/hidpi/lock-open.png b/ui/public/ckeditor/skins/moono/images/hidpi/lock-open.png index 594f0d33943..0e807ba7c10 100644 Binary files a/ui/public/ckeditor/skins/moono/images/hidpi/lock-open.png and b/ui/public/ckeditor/skins/moono/images/hidpi/lock-open.png differ diff --git a/ui/public/ckeditor/skins/moono/images/hidpi/lock.png b/ui/public/ckeditor/skins/moono/images/hidpi/lock.png index 1e23a0b2d9d..d2d07a37d5f 100644 Binary files a/ui/public/ckeditor/skins/moono/images/hidpi/lock.png and b/ui/public/ckeditor/skins/moono/images/hidpi/lock.png differ diff --git a/ui/public/ckeditor/skins/moono/images/hidpi/refresh.png b/ui/public/ckeditor/skins/moono/images/hidpi/refresh.png index 42d94a91ac7..bb57667475a 100644 Binary files a/ui/public/ckeditor/skins/moono/images/hidpi/refresh.png and b/ui/public/ckeditor/skins/moono/images/hidpi/refresh.png differ diff --git a/ui/public/ckeditor/skins/moono/images/lock-open.png b/ui/public/ckeditor/skins/moono/images/lock-open.png index 7d24c5f81db..2546a9d7278 100644 Binary files a/ui/public/ckeditor/skins/moono/images/lock-open.png and b/ui/public/ckeditor/skins/moono/images/lock-open.png differ diff --git a/ui/public/ckeditor/skins/moono/images/lock.png b/ui/public/ckeditor/skins/moono/images/lock.png index 8baeaa4b885..ba859e23204 100644 Binary files a/ui/public/ckeditor/skins/moono/images/lock.png and b/ui/public/ckeditor/skins/moono/images/lock.png differ diff --git a/ui/public/ckeditor/skins/moono/images/refresh.png b/ui/public/ckeditor/skins/moono/images/refresh.png index d8106b032f5..aed2d2a1a1b 100644 Binary files a/ui/public/ckeditor/skins/moono/images/refresh.png and b/ui/public/ckeditor/skins/moono/images/refresh.png differ diff --git a/ui/public/favicon-unread.png b/ui/public/favicon-unread.png index d28b7f8f68f..a1d6a424a44 100644 Binary files a/ui/public/favicon-unread.png and b/ui/public/favicon-unread.png differ diff --git a/ui/public/favicon.png b/ui/public/favicon.png index 36b40d9944d..dd488d176be 100644 Binary files a/ui/public/favicon.png and b/ui/public/favicon.png differ diff --git a/ui/public/images/actions/1.svg b/ui/public/images/actions/1.svg index e42f56fe1f5..17656b9ebaa 100644 --- a/ui/public/images/actions/1.svg +++ b/ui/public/images/actions/1.svg @@ -1 +1 @@ -1 \ No newline at end of file +1 \ No newline at end of file diff --git a/ui/public/images/actions/10.svg b/ui/public/images/actions/10.svg index 0fd49346211..5e1930b4631 100644 --- a/ui/public/images/actions/10.svg +++ b/ui/public/images/actions/10.svg @@ -1 +1 @@ -Outer space \ No newline at end of file +Outer space \ No newline at end of file diff --git a/ui/public/images/actions/11.svg b/ui/public/images/actions/11.svg index fe248a0f7de..022043d90bc 100644 --- a/ui/public/images/actions/11.svg +++ b/ui/public/images/actions/11.svg @@ -1 +1 @@ -people search \ No newline at end of file +people search \ No newline at end of file diff --git a/ui/public/images/actions/12.svg b/ui/public/images/actions/12.svg index f1c9a9bc0cb..61695137254 100644 --- a/ui/public/images/actions/12.svg +++ b/ui/public/images/actions/12.svg @@ -1 +1 @@ -upload \ No newline at end of file +upload \ No newline at end of file diff --git a/ui/public/images/actions/13.svg b/ui/public/images/actions/13.svg index 298acb56711..3b1864c75bd 100644 --- a/ui/public/images/actions/13.svg +++ b/ui/public/images/actions/13.svg @@ -1 +1 @@ -setup wizard \ No newline at end of file +setup wizard \ No newline at end of file diff --git a/ui/public/images/actions/14.svg b/ui/public/images/actions/14.svg index 5943d7d7871..a21850809f9 100644 --- a/ui/public/images/actions/14.svg +++ b/ui/public/images/actions/14.svg @@ -1 +1 @@ -work chat \ No newline at end of file +work chat \ No newline at end of file diff --git a/ui/public/images/actions/15.svg b/ui/public/images/actions/15.svg index 32a57193337..61ab6e00f61 100644 --- a/ui/public/images/actions/15.svg +++ b/ui/public/images/actions/15.svg @@ -1 +1 @@ -followers \ No newline at end of file +followers \ No newline at end of file diff --git a/ui/public/images/actions/16.svg b/ui/public/images/actions/16.svg index da8517dc6c9..94d183deb26 100644 --- a/ui/public/images/actions/16.svg +++ b/ui/public/images/actions/16.svg @@ -1 +1 @@ -scrum board \ No newline at end of file +scrum board \ No newline at end of file diff --git a/ui/public/images/actions/17.svg b/ui/public/images/actions/17.svg index a959d85ea84..53a4fc3a1fa 100644 --- a/ui/public/images/actions/17.svg +++ b/ui/public/images/actions/17.svg @@ -1 +1 @@ -collaboration2 \ No newline at end of file +collaboration2 \ No newline at end of file diff --git a/ui/public/images/actions/18.svg b/ui/public/images/actions/18.svg index ba92a736896..68a05a71c28 100644 --- a/ui/public/images/actions/18.svg +++ b/ui/public/images/actions/18.svg @@ -1 +1 @@ -no data \ No newline at end of file +no data \ No newline at end of file diff --git a/ui/public/images/actions/19.svg b/ui/public/images/actions/19.svg index 538e7d02f8a..7a1277150ec 100644 --- a/ui/public/images/actions/19.svg +++ b/ui/public/images/actions/19.svg @@ -1 +1 @@ -taking notes \ No newline at end of file +taking notes \ No newline at end of file diff --git a/ui/public/images/actions/2.svg b/ui/public/images/actions/2.svg index 530b6ed3557..645220f9678 100644 --- a/ui/public/images/actions/2.svg +++ b/ui/public/images/actions/2.svg @@ -1 +1 @@ -12 \ No newline at end of file +12 \ No newline at end of file diff --git a/ui/public/images/actions/20.svg b/ui/public/images/actions/20.svg index 3665dedeaa7..904cacf15c4 100644 --- a/ui/public/images/actions/20.svg +++ b/ui/public/images/actions/20.svg @@ -1 +1 @@ -startup life \ No newline at end of file +startup life \ No newline at end of file diff --git a/ui/public/images/actions/21.svg b/ui/public/images/actions/21.svg index 80be42a4a9b..f76ee38414d 100644 --- a/ui/public/images/actions/21.svg +++ b/ui/public/images/actions/21.svg @@ -1 +1 @@ -connecting teams3 \ No newline at end of file +connecting teams3 \ No newline at end of file diff --git a/ui/public/images/actions/22.svg b/ui/public/images/actions/22.svg index b6ab98318df..145ada034ba 100644 --- a/ui/public/images/actions/22.svg +++ b/ui/public/images/actions/22.svg @@ -1 +1 @@ -emails \ No newline at end of file +emails \ No newline at end of file diff --git a/ui/public/images/actions/23.svg b/ui/public/images/actions/23.svg index 1f770ec4a2a..8fafe4eb792 100644 --- a/ui/public/images/actions/23.svg +++ b/ui/public/images/actions/23.svg @@ -1 +1 @@ -organizing projects1 \ No newline at end of file +organizing projects1 \ No newline at end of file diff --git a/ui/public/images/actions/24.svg b/ui/public/images/actions/24.svg index c4f07852fd0..9fa7718ac10 100644 --- a/ui/public/images/actions/24.svg +++ b/ui/public/images/actions/24.svg @@ -1 +1 @@ -resume folder_2 \ No newline at end of file +resume folder_2 \ No newline at end of file diff --git a/ui/public/images/actions/25.svg b/ui/public/images/actions/25.svg index f751af4c713..9431ea7cebf 100644 --- a/ui/public/images/actions/25.svg +++ b/ui/public/images/actions/25.svg @@ -1 +1 @@ -in progress \ No newline at end of file +in progress \ No newline at end of file diff --git a/ui/public/images/actions/26.svg b/ui/public/images/actions/26.svg index 45213e9a362..eb59a4ecd12 100644 --- a/ui/public/images/actions/26.svg +++ b/ui/public/images/actions/26.svg @@ -1 +1 @@ -following \ No newline at end of file +following \ No newline at end of file diff --git a/ui/public/images/actions/27.svg b/ui/public/images/actions/27.svg index ff1be4a4811..1e7b163dae5 100644 --- a/ui/public/images/actions/27.svg +++ b/ui/public/images/actions/27.svg @@ -1 +1 @@ -data_report \ No newline at end of file +data_report \ No newline at end of file diff --git a/ui/public/images/actions/28.svg b/ui/public/images/actions/28.svg index 49757673fe2..6dfabf09007 100644 --- a/ui/public/images/actions/28.svg +++ b/ui/public/images/actions/28.svg @@ -1 +1 @@ -site stats \ No newline at end of file +site stats \ No newline at end of file diff --git a/ui/public/images/actions/29.svg b/ui/public/images/actions/29.svg index c1c6ea5c997..0dcaf564cb9 100644 --- a/ui/public/images/actions/29.svg +++ b/ui/public/images/actions/29.svg @@ -1 +1 @@ -newsletter \ No newline at end of file +newsletter \ No newline at end of file diff --git a/ui/public/images/actions/3.svg b/ui/public/images/actions/3.svg index 5c6e00ba15d..9b23b5e80a1 100644 --- a/ui/public/images/actions/3.svg +++ b/ui/public/images/actions/3.svg @@ -1 +1 @@ -3 \ No newline at end of file +3 \ No newline at end of file diff --git a/ui/public/images/actions/30.svg b/ui/public/images/actions/30.svg index db85adf2015..b0be5bb6a7f 100644 --- a/ui/public/images/actions/30.svg +++ b/ui/public/images/actions/30.svg @@ -1 +1 @@ -product teardown \ No newline at end of file +product teardown \ No newline at end of file diff --git a/ui/public/images/actions/31.svg b/ui/public/images/actions/31.svg index 171dd027e89..467d36db30a 100644 --- a/ui/public/images/actions/31.svg +++ b/ui/public/images/actions/31.svg @@ -1 +1 @@ -data trends \ No newline at end of file +data trends \ No newline at end of file diff --git a/ui/public/images/actions/32.svg b/ui/public/images/actions/32.svg index 62a9c44cfe2..28d51066e0f 100644 --- a/ui/public/images/actions/32.svg +++ b/ui/public/images/actions/32.svg @@ -1 +1 @@ -social growth \ No newline at end of file +social growth \ No newline at end of file diff --git a/ui/public/images/actions/33.svg b/ui/public/images/actions/33.svg index 06d8fd7a9bf..b3a996f4cda 100644 --- a/ui/public/images/actions/33.svg +++ b/ui/public/images/actions/33.svg @@ -1 +1 @@ -app installation \ No newline at end of file +app installation \ No newline at end of file diff --git a/ui/public/images/actions/34.svg b/ui/public/images/actions/34.svg index ff551507dc7..5377bdb72f2 100644 --- a/ui/public/images/actions/34.svg +++ b/ui/public/images/actions/34.svg @@ -1 +1 @@ -events \ No newline at end of file +events \ No newline at end of file diff --git a/ui/public/images/actions/35.svg b/ui/public/images/actions/35.svg new file mode 100644 index 00000000000..1869801e4b4 --- /dev/null +++ b/ui/public/images/actions/35.svg @@ -0,0 +1 @@ +researching \ No newline at end of file diff --git a/ui/public/images/actions/5.svg b/ui/public/images/actions/5.svg index 3e7fd638287..bdea218ce20 100644 --- a/ui/public/images/actions/5.svg +++ b/ui/public/images/actions/5.svg @@ -1 +1 @@ -5 \ No newline at end of file +5 \ No newline at end of file diff --git a/ui/public/images/actions/6.svg b/ui/public/images/actions/6.svg index d612685461c..100b5eba6d8 100644 --- a/ui/public/images/actions/6.svg +++ b/ui/public/images/actions/6.svg @@ -1 +1 @@ -6 \ No newline at end of file +6 \ No newline at end of file diff --git a/ui/public/images/actions/8.svg b/ui/public/images/actions/8.svg index aff1c3719f0..6d796bce108 100644 --- a/ui/public/images/actions/8.svg +++ b/ui/public/images/actions/8.svg @@ -1 +1 @@ -onboarding \ No newline at end of file +onboarding \ No newline at end of file diff --git a/ui/public/images/actions/9.svg b/ui/public/images/actions/9.svg index 43374fcdb88..c044d43b072 100644 --- a/ui/public/images/actions/9.svg +++ b/ui/public/images/actions/9.svg @@ -1,294 +1 @@ - - - - -roganize resume - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +roganize resume \ No newline at end of file diff --git a/ui/public/images/actions/welcome.svg b/ui/public/images/actions/welcome.svg new file mode 100644 index 00000000000..f80de35f22b --- /dev/null +++ b/ui/public/images/actions/welcome.svg @@ -0,0 +1,180 @@ + + + + + + + + + balloons + + background + + + + Layer 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ui/public/images/avatar-colored.svg b/ui/public/images/avatar-colored.svg index f6a5986c782..8f54b3c3521 100644 --- a/ui/public/images/avatar-colored.svg +++ b/ui/public/images/avatar-colored.svg @@ -1 +1,30 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/public/images/avatar.svg b/ui/public/images/avatar.svg index e72c15829c2..ae46169e425 100644 --- a/ui/public/images/avatar.svg +++ b/ui/public/images/avatar.svg @@ -1 +1,59 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/public/images/erxes-bot.svg b/ui/public/images/erxes-bot.svg index c6b7cfb9a14..3524fc922a7 100644 --- a/ui/public/images/erxes-bot.svg +++ b/ui/public/images/erxes-bot.svg @@ -1 +1 @@ -erxes bot \ No newline at end of file +erxes bot \ No newline at end of file diff --git a/ui/public/images/erxes.png b/ui/public/images/erxes.png index b674b0e0649..e4bda547b41 100644 Binary files a/ui/public/images/erxes.png and b/ui/public/images/erxes.png differ diff --git a/ui/public/images/googleButton/btn_active.png b/ui/public/images/googleButton/btn_active.png index 369a6ca24df..8fc57c76c6b 100644 Binary files a/ui/public/images/googleButton/btn_active.png and b/ui/public/images/googleButton/btn_active.png differ diff --git a/ui/public/images/googleButton/btn_focus.png b/ui/public/images/googleButton/btn_focus.png index 4cb85e9b554..ecef3ac4013 100644 Binary files a/ui/public/images/googleButton/btn_focus.png and b/ui/public/images/googleButton/btn_focus.png differ diff --git a/ui/public/images/googleButton/btn_normal.png b/ui/public/images/googleButton/btn_normal.png index f27bb243304..fd8e4a3c265 100644 Binary files a/ui/public/images/googleButton/btn_normal.png and b/ui/public/images/googleButton/btn_normal.png differ diff --git a/ui/public/images/icons/deal-insight-lost.svg b/ui/public/images/icons/deal-insight-lost.svg index db653792772..48f8cedcd96 100644 --- a/ui/public/images/icons/deal-insight-lost.svg +++ b/ui/public/images/icons/deal-insight-lost.svg @@ -1,34 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/deal-insight-volume.svg b/ui/public/images/icons/deal-insight-volume.svg index ac60dedbd71..889438dcbc1 100644 --- a/ui/public/images/icons/deal-insight-volume.svg +++ b/ui/public/images/icons/deal-insight-volume.svg @@ -1,70 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/deal-insight-won.svg b/ui/public/images/icons/deal-insight-won.svg index 4e490c9189c..971c179624a 100644 --- a/ui/public/images/icons/deal-insight-won.svg +++ b/ui/public/images/icons/deal-insight-won.svg @@ -1,34 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-01.svg b/ui/public/images/icons/erxes-01.svg index 450e2e678dd..70dde1d1d56 100644 --- a/ui/public/images/icons/erxes-01.svg +++ b/ui/public/images/icons/erxes-01.svg @@ -1,46 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-02.svg b/ui/public/images/icons/erxes-02.svg index a311d2761df..e2fa61e14cd 100644 --- a/ui/public/images/icons/erxes-02.svg +++ b/ui/public/images/icons/erxes-02.svg @@ -1,43 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-03.svg b/ui/public/images/icons/erxes-03.svg index ad73f0cac18..14a1cef7530 100644 --- a/ui/public/images/icons/erxes-03.svg +++ b/ui/public/images/icons/erxes-03.svg @@ -1,50 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-04.svg b/ui/public/images/icons/erxes-04.svg index 3b57f0719e8..3778b5378c5 100644 --- a/ui/public/images/icons/erxes-04.svg +++ b/ui/public/images/icons/erxes-04.svg @@ -1,35 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-05.svg b/ui/public/images/icons/erxes-05.svg index e2ee087fc19..c69b3a9a331 100644 --- a/ui/public/images/icons/erxes-05.svg +++ b/ui/public/images/icons/erxes-05.svg @@ -1,32 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-06.svg b/ui/public/images/icons/erxes-06.svg index ad746add23b..98dc3d5bf4d 100644 --- a/ui/public/images/icons/erxes-06.svg +++ b/ui/public/images/icons/erxes-06.svg @@ -1,41 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-07.svg b/ui/public/images/icons/erxes-07.svg index a66d261aaf8..f242110dd0b 100644 --- a/ui/public/images/icons/erxes-07.svg +++ b/ui/public/images/icons/erxes-07.svg @@ -1,52 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-08.svg b/ui/public/images/icons/erxes-08.svg index 6917bea368f..06ea283b0b6 100644 --- a/ui/public/images/icons/erxes-08.svg +++ b/ui/public/images/icons/erxes-08.svg @@ -1,36 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-09.svg b/ui/public/images/icons/erxes-09.svg index 0ba27a5dea0..8999f1d8c3a 100644 --- a/ui/public/images/icons/erxes-09.svg +++ b/ui/public/images/icons/erxes-09.svg @@ -1,58 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-10.svg b/ui/public/images/icons/erxes-10.svg index 105a6611d6a..590051257d6 100644 --- a/ui/public/images/icons/erxes-10.svg +++ b/ui/public/images/icons/erxes-10.svg @@ -1,46 +1 @@ - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-11.svg b/ui/public/images/icons/erxes-11.svg index cd445fd2ede..5a582f07c38 100644 --- a/ui/public/images/icons/erxes-11.svg +++ b/ui/public/images/icons/erxes-11.svg @@ -1,40 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-12.svg b/ui/public/images/icons/erxes-12.svg index 32fd9dce772..4f30019826a 100644 --- a/ui/public/images/icons/erxes-12.svg +++ b/ui/public/images/icons/erxes-12.svg @@ -1,40 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-13.svg b/ui/public/images/icons/erxes-13.svg index cc987eeddba..f0b6ae0f26a 100644 --- a/ui/public/images/icons/erxes-13.svg +++ b/ui/public/images/icons/erxes-13.svg @@ -1,23 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-14.svg b/ui/public/images/icons/erxes-14.svg index a1a1afaa86f..8a8910670fa 100644 --- a/ui/public/images/icons/erxes-14.svg +++ b/ui/public/images/icons/erxes-14.svg @@ -1,44 +1 @@ - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-15.svg b/ui/public/images/icons/erxes-15.svg index df6d4638ceb..efaefef3c4b 100644 --- a/ui/public/images/icons/erxes-15.svg +++ b/ui/public/images/icons/erxes-15.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-16.svg b/ui/public/images/icons/erxes-16.svg index 20bdab6712c..fb00d972370 100644 --- a/ui/public/images/icons/erxes-16.svg +++ b/ui/public/images/icons/erxes-16.svg @@ -1,62 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-18.svg b/ui/public/images/icons/erxes-18.svg index 6ca0ff21acb..3521240c284 100644 --- a/ui/public/images/icons/erxes-18.svg +++ b/ui/public/images/icons/erxes-18.svg @@ -1,55 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-19.svg b/ui/public/images/icons/erxes-19.svg index 949866b9c56..0353fc594af 100644 --- a/ui/public/images/icons/erxes-19.svg +++ b/ui/public/images/icons/erxes-19.svg @@ -1,38 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-20.svg b/ui/public/images/icons/erxes-20.svg index f7745678e64..0911096bfa2 100644 --- a/ui/public/images/icons/erxes-20.svg +++ b/ui/public/images/icons/erxes-20.svg @@ -1,50 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-21.svg b/ui/public/images/icons/erxes-21.svg index 287c5e0d68c..2761a55cf3e 100644 --- a/ui/public/images/icons/erxes-21.svg +++ b/ui/public/images/icons/erxes-21.svg @@ -1,50 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/ui/public/images/icons/erxes-22.svg b/ui/public/images/icons/erxes-22.svg index 9b3722f9e08..95abc79c96a 100644 --- a/ui/public/images/icons/erxes-22.svg +++ b/ui/public/images/icons/erxes-22.svg @@ -1 +1 @@ -erxes-22 \ No newline at end of file +erxes-22 \ No newline at end of file diff --git a/ui/public/images/icons/erxes-23.svg b/ui/public/images/icons/erxes-23.svg index 4915d0c5703..0456a9e034c 100644 --- a/ui/public/images/icons/erxes-23.svg +++ b/ui/public/images/icons/erxes-23.svg @@ -1 +1 @@ -erxes-23 \ No newline at end of file +erxes-23 \ No newline at end of file diff --git a/ui/public/images/integrations/agatha-answers.png b/ui/public/images/integrations/agatha-answers.png index 39b4e1a9b4b..d53920a5164 100644 Binary files a/ui/public/images/integrations/agatha-answers.png and b/ui/public/images/integrations/agatha-answers.png differ diff --git a/ui/public/images/integrations/aircall.png b/ui/public/images/integrations/aircall.png index 2a214ffd623..2ae8845afdf 100644 Binary files a/ui/public/images/integrations/aircall.png and b/ui/public/images/integrations/aircall.png differ diff --git a/ui/public/images/integrations/amazon-lex.png b/ui/public/images/integrations/amazon-lex.png index a048faec0af..5a060659c73 100644 Binary files a/ui/public/images/integrations/amazon-lex.png and b/ui/public/images/integrations/amazon-lex.png differ diff --git a/ui/public/images/integrations/amazon.png b/ui/public/images/integrations/amazon.png index d4db3496cb2..00ff9401693 100644 Binary files a/ui/public/images/integrations/amazon.png and b/ui/public/images/integrations/amazon.png differ diff --git a/ui/public/images/integrations/asana.png b/ui/public/images/integrations/asana.png index 9e9bca59d9c..c5b40d3cf0d 100644 Binary files a/ui/public/images/integrations/asana.png and b/ui/public/images/integrations/asana.png differ diff --git a/ui/public/images/integrations/ask-nicely.png b/ui/public/images/integrations/ask-nicely.png index 1ceb41b30bc..36888b547c0 100644 Binary files a/ui/public/images/integrations/ask-nicely.png and b/ui/public/images/integrations/ask-nicely.png differ diff --git a/ui/public/images/integrations/autopilot.png b/ui/public/images/integrations/autopilot.png index 6444838559f..6ea607cc3c3 100644 Binary files a/ui/public/images/integrations/autopilot.png and b/ui/public/images/integrations/autopilot.png differ diff --git a/ui/public/images/integrations/aws-ses.png b/ui/public/images/integrations/aws-ses.png index 10891843472..929012a9d91 100644 Binary files a/ui/public/images/integrations/aws-ses.png and b/ui/public/images/integrations/aws-ses.png differ diff --git a/ui/public/images/integrations/base.png b/ui/public/images/integrations/base.png index 3bb8d514a34..48d1911a8aa 100644 Binary files a/ui/public/images/integrations/base.png and b/ui/public/images/integrations/base.png differ diff --git a/ui/public/images/integrations/calendly.png b/ui/public/images/integrations/calendly.png index db77b3ee2eb..ba5840650fd 100644 Binary files a/ui/public/images/integrations/calendly.png and b/ui/public/images/integrations/calendly.png differ diff --git a/ui/public/images/integrations/callpro.png b/ui/public/images/integrations/callpro.png index e10138481e9..52923092359 100644 Binary files a/ui/public/images/integrations/callpro.png and b/ui/public/images/integrations/callpro.png differ diff --git a/ui/public/images/integrations/chatbase.png b/ui/public/images/integrations/chatbase.png index e5f621ee376..61f5dd9ef5c 100644 Binary files a/ui/public/images/integrations/chatbase.png and b/ui/public/images/integrations/chatbase.png differ diff --git a/ui/public/images/integrations/chatbot.png b/ui/public/images/integrations/chatbot.png index 1590f0c8e27..e6ae7f4d7d0 100644 Binary files a/ui/public/images/integrations/chatbot.png and b/ui/public/images/integrations/chatbot.png differ diff --git a/ui/public/images/integrations/chatfuel.png b/ui/public/images/integrations/chatfuel.png index c5974d5282d..4c6600638cc 100644 Binary files a/ui/public/images/integrations/chatfuel.png and b/ui/public/images/integrations/chatfuel.png differ diff --git a/ui/public/images/integrations/cisco-jabber.png b/ui/public/images/integrations/cisco-jabber.png index 00400071d4d..42564d6abd0 100644 Binary files a/ui/public/images/integrations/cisco-jabber.png and b/ui/public/images/integrations/cisco-jabber.png differ diff --git a/ui/public/images/integrations/cisco-webex.png b/ui/public/images/integrations/cisco-webex.png index 87fde98f975..cad0bfe634b 100644 Binary files a/ui/public/images/integrations/cisco-webex.png and b/ui/public/images/integrations/cisco-webex.png differ diff --git a/ui/public/images/integrations/coming-soon.png b/ui/public/images/integrations/coming-soon.png index a4f523c126b..f57cc18a488 100644 Binary files a/ui/public/images/integrations/coming-soon.png and b/ui/public/images/integrations/coming-soon.png differ diff --git a/ui/public/images/integrations/company.png b/ui/public/images/integrations/company.png index 0bc7928f4c6..4912c0260ad 100644 Binary files a/ui/public/images/integrations/company.png and b/ui/public/images/integrations/company.png differ diff --git a/ui/public/images/integrations/dashbot.png b/ui/public/images/integrations/dashbot.png index 1b2a8bdec64..287f39ffbd1 100644 Binary files a/ui/public/images/integrations/dashbot.png and b/ui/public/images/integrations/dashbot.png differ diff --git a/ui/public/images/integrations/databox.png b/ui/public/images/integrations/databox.png index 8fcd7ac5b71..7daf0beaf82 100644 Binary files a/ui/public/images/integrations/databox.png and b/ui/public/images/integrations/databox.png differ diff --git a/ui/public/images/integrations/doorbell.png b/ui/public/images/integrations/doorbell.png index 76ffc3dd854..4fd40fecaee 100644 Binary files a/ui/public/images/integrations/doorbell.png and b/ui/public/images/integrations/doorbell.png differ diff --git a/ui/public/images/integrations/dropbox.png b/ui/public/images/integrations/dropbox.png index 60082f02ef1..4bdf388f8b8 100644 Binary files a/ui/public/images/integrations/dropbox.png and b/ui/public/images/integrations/dropbox.png differ diff --git a/ui/public/images/integrations/erxes-kb.jpg b/ui/public/images/integrations/erxes-kb.jpg index 6c58df8462d..f39b4a6b447 100644 Binary files a/ui/public/images/integrations/erxes-kb.jpg and b/ui/public/images/integrations/erxes-kb.jpg differ diff --git a/ui/public/images/integrations/erxes-kb.png b/ui/public/images/integrations/erxes-kb.png index 6ab654c72b2..2ccae23d213 100644 Binary files a/ui/public/images/integrations/erxes-kb.png and b/ui/public/images/integrations/erxes-kb.png differ diff --git a/ui/public/images/integrations/erxes-lead.png b/ui/public/images/integrations/erxes-lead.png index 28ce39b6028..5a0fa01b0b9 100644 Binary files a/ui/public/images/integrations/erxes-lead.png and b/ui/public/images/integrations/erxes-lead.png differ diff --git a/ui/public/images/integrations/erxes-messenger.png b/ui/public/images/integrations/erxes-messenger.png index bad719a8310..745c5b55ab4 100644 Binary files a/ui/public/images/integrations/erxes-messenger.png and b/ui/public/images/integrations/erxes-messenger.png differ diff --git a/ui/public/images/integrations/exchange.png b/ui/public/images/integrations/exchange.png new file mode 100644 index 00000000000..ddd38eb22ce Binary files /dev/null and b/ui/public/images/integrations/exchange.png differ diff --git a/ui/public/images/integrations/facebook.png b/ui/public/images/integrations/facebook.png index 19c121b4450..55dc42cbb42 100644 Binary files a/ui/public/images/integrations/facebook.png and b/ui/public/images/integrations/facebook.png differ diff --git a/ui/public/images/integrations/fb-messenger.png b/ui/public/images/integrations/fb-messenger.png index e1d47f70ce9..c0559378e38 100644 Binary files a/ui/public/images/integrations/fb-messenger.png and b/ui/public/images/integrations/fb-messenger.png differ diff --git a/ui/public/images/integrations/fivetran.png b/ui/public/images/integrations/fivetran.png index 17bbf60f100..cda9a8cdacf 100644 Binary files a/ui/public/images/integrations/fivetran.png and b/ui/public/images/integrations/fivetran.png differ diff --git a/ui/public/images/integrations/full-contact.png b/ui/public/images/integrations/full-contact.png index f5d7ef715ad..b3ff2f6aed9 100644 Binary files a/ui/public/images/integrations/full-contact.png and b/ui/public/images/integrations/full-contact.png differ diff --git a/ui/public/images/integrations/github.png b/ui/public/images/integrations/github.png index 052deac727e..253a59b19bc 100644 Binary files a/ui/public/images/integrations/github.png and b/ui/public/images/integrations/github.png differ diff --git a/ui/public/images/integrations/gmail.png b/ui/public/images/integrations/gmail.png index c50b9a45453..9ca1a4d17c0 100644 Binary files a/ui/public/images/integrations/gmail.png and b/ui/public/images/integrations/gmail.png differ diff --git a/ui/public/images/integrations/google-drive.png b/ui/public/images/integrations/google-drive.png index 2a9d8de5118..ef039b076bf 100644 Binary files a/ui/public/images/integrations/google-drive.png and b/ui/public/images/integrations/google-drive.png differ diff --git a/ui/public/images/integrations/google-hangouts.png b/ui/public/images/integrations/google-hangouts.png index 5aac53da015..2ac44fd7b44 100644 Binary files a/ui/public/images/integrations/google-hangouts.png and b/ui/public/images/integrations/google-hangouts.png differ diff --git a/ui/public/images/integrations/google-meet.png b/ui/public/images/integrations/google-meet.png index b1487c70187..865f33235cd 100644 Binary files a/ui/public/images/integrations/google-meet.png and b/ui/public/images/integrations/google-meet.png differ diff --git a/ui/public/images/integrations/ibm-watson.png b/ui/public/images/integrations/ibm-watson.png index 5f76153fd53..09436e84dc7 100644 Binary files a/ui/public/images/integrations/ibm-watson.png and b/ui/public/images/integrations/ibm-watson.png differ diff --git a/ui/public/images/integrations/instagram.png b/ui/public/images/integrations/instagram.png index d3b9817337b..dd96df8e757 100644 Binary files a/ui/public/images/integrations/instagram.png and b/ui/public/images/integrations/instagram.png differ diff --git a/ui/public/images/integrations/justcall.png b/ui/public/images/integrations/justcall.png index b5cd50a1c91..8e43e659671 100644 Binary files a/ui/public/images/integrations/justcall.png and b/ui/public/images/integrations/justcall.png differ diff --git a/ui/public/images/integrations/keen.png b/ui/public/images/integrations/keen.png index 8cd265430a8..80fcdcd6d05 100644 Binary files a/ui/public/images/integrations/keen.png and b/ui/public/images/integrations/keen.png differ diff --git a/ui/public/images/integrations/knowledge-base.png b/ui/public/images/integrations/knowledge-base.png index da361039a8c..8da3e78f203 100644 Binary files a/ui/public/images/integrations/knowledge-base.png and b/ui/public/images/integrations/knowledge-base.png differ diff --git a/ui/public/images/integrations/lead.png b/ui/public/images/integrations/lead.png index e63d9346768..d0dc3e52ffc 100644 Binary files a/ui/public/images/integrations/lead.png and b/ui/public/images/integrations/lead.png differ diff --git a/ui/public/images/integrations/line.png b/ui/public/images/integrations/line.png index 400642797dc..f9f13f9aa2a 100644 Binary files a/ui/public/images/integrations/line.png and b/ui/public/images/integrations/line.png differ diff --git a/ui/public/images/integrations/linkedin.png b/ui/public/images/integrations/linkedin.png index ef3449aa1d3..1e01671cf73 100644 Binary files a/ui/public/images/integrations/linkedin.png and b/ui/public/images/integrations/linkedin.png differ diff --git a/ui/public/images/integrations/loom.png b/ui/public/images/integrations/loom.png index 271f6fd58bf..ca48c23b16e 100644 Binary files a/ui/public/images/integrations/loom.png and b/ui/public/images/integrations/loom.png differ diff --git a/ui/public/images/integrations/mandrill.png b/ui/public/images/integrations/mandrill.png index 7368d632fb9..6c159b273a9 100644 Binary files a/ui/public/images/integrations/mandrill.png and b/ui/public/images/integrations/mandrill.png differ diff --git a/ui/public/images/integrations/manychat.png b/ui/public/images/integrations/manychat.png index 3edcc19ae1f..0759aa0902b 100644 Binary files a/ui/public/images/integrations/manychat.png and b/ui/public/images/integrations/manychat.png differ diff --git a/ui/public/images/integrations/messenger.png b/ui/public/images/integrations/messenger.png index 51865bd1bd9..ed92db17600 100644 Binary files a/ui/public/images/integrations/messenger.png and b/ui/public/images/integrations/messenger.png differ diff --git a/ui/public/images/integrations/meya.png b/ui/public/images/integrations/meya.png index e9c7a97ea96..a805bc3ca02 100644 Binary files a/ui/public/images/integrations/meya.png and b/ui/public/images/integrations/meya.png differ diff --git a/ui/public/images/integrations/microsoft.png b/ui/public/images/integrations/microsoft.png index 8a5db52c760..da7192c0e0b 100644 Binary files a/ui/public/images/integrations/microsoft.png and b/ui/public/images/integrations/microsoft.png differ diff --git a/ui/public/images/integrations/mix-panel.png b/ui/public/images/integrations/mix-panel.png index 54f82f713dd..968340791c9 100644 Binary files a/ui/public/images/integrations/mix-panel.png and b/ui/public/images/integrations/mix-panel.png differ diff --git a/ui/public/images/integrations/ms-bot-framework.png b/ui/public/images/integrations/ms-bot-framework.png index db4c936f836..232604de083 100644 Binary files a/ui/public/images/integrations/ms-bot-framework.png and b/ui/public/images/integrations/ms-bot-framework.png differ diff --git a/ui/public/images/integrations/ms-teams.png b/ui/public/images/integrations/ms-teams.png index c409f868982..4b7870a850b 100644 Binary files a/ui/public/images/integrations/ms-teams.png and b/ui/public/images/integrations/ms-teams.png differ diff --git a/ui/public/images/integrations/office365.png b/ui/public/images/integrations/office365.png index 6b8c178a39d..d998feee2f9 100644 Binary files a/ui/public/images/integrations/office365.png and b/ui/public/images/integrations/office365.png differ diff --git a/ui/public/images/integrations/outlook-calendar.png b/ui/public/images/integrations/outlook-calendar.png index 2c19d578bb9..82fb7b55fd5 100644 Binary files a/ui/public/images/integrations/outlook-calendar.png and b/ui/public/images/integrations/outlook-calendar.png differ diff --git a/ui/public/images/integrations/outlook.png b/ui/public/images/integrations/outlook.png index 8ff6c247940..1fa26ba4667 100644 Binary files a/ui/public/images/integrations/outlook.png and b/ui/public/images/integrations/outlook.png differ diff --git a/ui/public/images/integrations/parabola.png b/ui/public/images/integrations/parabola.png index b65eff05ced..499226aa80e 100644 Binary files a/ui/public/images/integrations/parabola.png and b/ui/public/images/integrations/parabola.png differ diff --git a/ui/public/images/integrations/piesync.png b/ui/public/images/integrations/piesync.png index 613f9c009bb..2f00dc12c77 100644 Binary files a/ui/public/images/integrations/piesync.png and b/ui/public/images/integrations/piesync.png differ diff --git a/ui/public/images/integrations/pipedrive.png b/ui/public/images/integrations/pipedrive.png index ef7d22c1a8b..ea7603404ae 100644 Binary files a/ui/public/images/integrations/pipedrive.png and b/ui/public/images/integrations/pipedrive.png differ diff --git a/ui/public/images/integrations/salesforce.png b/ui/public/images/integrations/salesforce.png index ceac2e547fc..57daeee4fd1 100644 Binary files a/ui/public/images/integrations/salesforce.png and b/ui/public/images/integrations/salesforce.png differ diff --git a/ui/public/images/integrations/sendgrid.png b/ui/public/images/integrations/sendgrid.png index 64243007ac2..5118faa1b6f 100644 Binary files a/ui/public/images/integrations/sendgrid.png and b/ui/public/images/integrations/sendgrid.png differ diff --git a/ui/public/images/integrations/sendinblue.png b/ui/public/images/integrations/sendinblue.png index f6af6fd709e..97ef480513e 100644 Binary files a/ui/public/images/integrations/sendinblue.png and b/ui/public/images/integrations/sendinblue.png differ diff --git a/ui/public/images/integrations/shipamax.png b/ui/public/images/integrations/shipamax.png index 1b195a8a556..201d9ea80a0 100644 Binary files a/ui/public/images/integrations/shipamax.png and b/ui/public/images/integrations/shipamax.png differ diff --git a/ui/public/images/integrations/slack.png b/ui/public/images/integrations/slack.png index 64cd74b90a8..a2e05277ed1 100644 Binary files a/ui/public/images/integrations/slack.png and b/ui/public/images/integrations/slack.png differ diff --git a/ui/public/images/integrations/stitch.png b/ui/public/images/integrations/stitch.png index 8ff241b769e..5161203e973 100644 Binary files a/ui/public/images/integrations/stitch.png and b/ui/public/images/integrations/stitch.png differ diff --git a/ui/public/images/integrations/talkdesk.png b/ui/public/images/integrations/talkdesk.png index 9e62486e95f..a92c0efbc14 100644 Binary files a/ui/public/images/integrations/talkdesk.png and b/ui/public/images/integrations/talkdesk.png differ diff --git a/ui/public/images/integrations/trello.png b/ui/public/images/integrations/trello.png index 80c8887b158..4cc3d218017 100644 Binary files a/ui/public/images/integrations/trello.png and b/ui/public/images/integrations/trello.png differ diff --git a/ui/public/images/integrations/twilio-ipm.png b/ui/public/images/integrations/twilio-ipm.png index fb22248e26e..db8603402a6 100644 Binary files a/ui/public/images/integrations/twilio-ipm.png and b/ui/public/images/integrations/twilio-ipm.png differ diff --git a/ui/public/images/integrations/twitter.png b/ui/public/images/integrations/twitter.png index 03df1ca616d..4d0c8926e38 100644 Binary files a/ui/public/images/integrations/twitter.png and b/ui/public/images/integrations/twitter.png differ diff --git a/ui/public/images/integrations/viber.png b/ui/public/images/integrations/viber.png index c66d5e96b4e..ceeea450a8e 100644 Binary files a/ui/public/images/integrations/viber.png and b/ui/public/images/integrations/viber.png differ diff --git a/ui/public/images/integrations/webhook.png b/ui/public/images/integrations/webhook.png index 66c872ca726..5ab1a399af8 100644 Binary files a/ui/public/images/integrations/webhook.png and b/ui/public/images/integrations/webhook.png differ diff --git a/ui/public/images/integrations/wechat.png b/ui/public/images/integrations/wechat.png index a00c337b1b7..990bcd494d8 100644 Binary files a/ui/public/images/integrations/wechat.png and b/ui/public/images/integrations/wechat.png differ diff --git a/ui/public/images/integrations/whatsapp-b.png b/ui/public/images/integrations/whatsapp-b.png index 7a95994e4d0..80f1ddf1fee 100644 Binary files a/ui/public/images/integrations/whatsapp-b.png and b/ui/public/images/integrations/whatsapp-b.png differ diff --git a/ui/public/images/integrations/wit.png b/ui/public/images/integrations/wit.png index ff614ec4318..88985655444 100644 Binary files a/ui/public/images/integrations/wit.png and b/ui/public/images/integrations/wit.png differ diff --git a/ui/public/images/integrations/yahoo.png b/ui/public/images/integrations/yahoo.png index 35403d9808f..9fc4279995a 100644 Binary files a/ui/public/images/integrations/yahoo.png and b/ui/public/images/integrations/yahoo.png differ diff --git a/ui/public/images/integrations/zapier.png b/ui/public/images/integrations/zapier.png index 27b8cea9651..3a5d838e01a 100644 Binary files a/ui/public/images/integrations/zapier.png and b/ui/public/images/integrations/zapier.png differ diff --git a/ui/public/images/integrations/zoho.png b/ui/public/images/integrations/zoho.png index 3946ed73056..03d5f51008c 100644 Binary files a/ui/public/images/integrations/zoho.png and b/ui/public/images/integrations/zoho.png differ diff --git a/ui/public/images/logo-dark.png b/ui/public/images/logo-dark.png index 7e10442eeb9..c898c3ce63d 100644 Binary files a/ui/public/images/logo-dark.png and b/ui/public/images/logo-dark.png differ diff --git a/ui/public/images/logo-image.png b/ui/public/images/logo-image.png index 07958e8595c..a3a4b1d19af 100644 Binary files a/ui/public/images/logo-image.png and b/ui/public/images/logo-image.png differ diff --git a/ui/public/images/logo.png b/ui/public/images/logo.png index 80dac1f4c93..f55a60a7c00 100644 Binary files a/ui/public/images/logo.png and b/ui/public/images/logo.png differ diff --git a/ui/public/images/previews/desktop.png b/ui/public/images/previews/desktop.png index a32fe60921e..ae1e96fcaa8 100644 Binary files a/ui/public/images/previews/desktop.png and b/ui/public/images/previews/desktop.png differ diff --git a/ui/public/images/previews/mobile.png b/ui/public/images/previews/mobile.png index 24478c64991..b9b9d4483ab 100644 Binary files a/ui/public/images/previews/mobile.png and b/ui/public/images/previews/mobile.png differ diff --git a/ui/public/images/previews/preview.png b/ui/public/images/previews/preview.png index 7359574464e..e3610efa97f 100644 Binary files a/ui/public/images/previews/preview.png and b/ui/public/images/previews/preview.png differ diff --git a/ui/public/images/previews/tablet.png b/ui/public/images/previews/tablet.png index 2306fd8cd79..8b052263827 100644 Binary files a/ui/public/images/previews/tablet.png and b/ui/public/images/previews/tablet.png differ diff --git a/ui/public/images/twinkling.png b/ui/public/images/twinkling.png index 749dac8e17a..a1d21eaf20e 100644 Binary files a/ui/public/images/twinkling.png and b/ui/public/images/twinkling.png differ diff --git a/ui/public/images/workflow-diagram.svg b/ui/public/images/workflow-diagram.svg index 5e1cd8d8692..72014b729b9 100644 --- a/ui/public/images/workflow-diagram.svg +++ b/ui/public/images/workflow-diagram.svg @@ -1,2 +1 @@ - -
Brand 1
Description
[Not supported by viewer]
Integrations
<b>Integrations</b>
Facebook
[Not supported by viewer]
Twitter
[Not supported by viewer]
Messenger
[Not supported by viewer]
Facebook
[Not supported by viewer]
Brand 2
Description
[Not supported by viewer]
Integrations
<b>Integrations</b>
Facebook
[Not supported by viewer]
Twitter
[Not supported by viewer]
Messenger
[Not supported by viewer]
Brand 3
Description
[Not supported by viewer]
Twitter
[Not supported by viewer]
Lead
[Not supported by viewer]
Google
meet
[Not supported by viewer]
Integrations
<b>Integrations</b>
Facebook
[Not supported by viewer]
Messenger
[Not supported by viewer]
Twitter
[Not supported by viewer]
Lead
[Not supported by viewer]
Knowledge
base
[Not supported by viewer]
Messenger
[Not supported by viewer]
Channel 1 (Support)
[Not supported by viewer]
Team member 1
[Not supported by viewer]
Team member 2
[Not supported by viewer]
Channel 2 (Marketing)
[Not supported by viewer]
Team member 1
[Not supported by viewer]
Team member 2
[Not supported by viewer]
Team member 3
[Not supported by viewer]
Channel 3 (Sales)
[Not supported by viewer]
Team member 1
[Not supported by viewer]
Team member 2
[Not supported by viewer]
Team member 3
[Not supported by viewer]
Inbox
Inbox
\ No newline at end of file +
Brand 1
Description
[Not supported by viewer]
Integrations
<b>Integrations</b>
Facebook
[Not supported by viewer]
Twitter
[Not supported by viewer]
Messenger
[Not supported by viewer]
Facebook
[Not supported by viewer]
Brand 2
Description
[Not supported by viewer]
Integrations
<b>Integrations</b>
Facebook
[Not supported by viewer]
Twitter
[Not supported by viewer]
Messenger
[Not supported by viewer]
Brand 3
Description
[Not supported by viewer]
Twitter
[Not supported by viewer]
Lead
[Not supported by viewer]
Google
meet
[Not supported by viewer]
Integrations
<b>Integrations</b>
Facebook
[Not supported by viewer]
Messenger
[Not supported by viewer]
Twitter
[Not supported by viewer]
Lead
[Not supported by viewer]
Knowledge
base
[Not supported by viewer]
Messenger
[Not supported by viewer]
Channel 1 (Support)
[Not supported by viewer]
Team member 1
[Not supported by viewer]
Team member 2
[Not supported by viewer]
Channel 2 (Marketing)
[Not supported by viewer]
Team member 1
[Not supported by viewer]
Team member 2
[Not supported by viewer]
Team member 3
[Not supported by viewer]
Channel 3 (Sales)
[Not supported by viewer]
Team member 1
[Not supported by viewer]
Team member 2
[Not supported by viewer]
Team member 3
[Not supported by viewer]
Inbox
Inbox
\ No newline at end of file diff --git a/ui/public/index.html b/ui/public/index.html index 0fa838b6357..859a6e8948c 100644 --- a/ui/public/index.html +++ b/ui/public/index.html @@ -31,11 +31,6 @@ %REACT_APP_API_URL% -
diff --git a/ui/public/style.min.css b/ui/public/style.min.css index 44fabe52c5c..16c525e3776 100644 --- a/ui/public/style.min.css +++ b/ui/public/style.min.css @@ -1 +1 @@ -body,html{-webkit-text-size-adjust:100%;height:100%}#root,body,html{height:100%}pre,textarea{overflow:auto}.Select-input,img{vertical-align:middle}html{font-family:sans-serif;-ms-text-size-adjust:100%}body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;margin:0;font-size:13px;background:#edf1f5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}.dropdown-menu,.modal-content{-webkit-background-clip:padding-box}#root{display:flex;flex:1}.loading-content{margin:0 auto;width:320px;height:400px;align-self:center;text-align:center;color:#393c40;font-size:14px}.image-animate{position:relative;height:260px}.image-animate svg{position:absolute;left:0}.image-animate .rocket{animation:speeder .8s linear infinite;-webkit-animation:speeder .8s linear infinite;-moz-animation:speeder .8s linear infinite}.faze-1,.faze-2,.faze-3,.faze-4{position:absolute;animation:fazer1 .4s linear infinite;-webkit-animation:fazer1 .4s linear infinite;-moz-animation:fazer1 .4s linear infinite}.faze-2{animation:fazer2 .6s linear infinite;-webkit-animation:fazer2 .6s linear infinite;-moz-animation:fazer2 .6s linear infinite}.faze-3{top:1px;animation:fazer3 .6s linear infinite;-webkit-animation:fazer3 .6s linear infinite;-moz-animation:fazer3 .6s linear infinite;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s}.faze-4{top:4px;animation:fazer4 .8s linear infinite;-webkit-animation:fazer4 .8s linear infinite;-moz-animation:fazer4 .8s linear infinite;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s}.part-1{fill:#535461}.part-2{opacity:.1}.part-3{fill:#e0e0e0}.part-4{fill:#ddd}.faze-1{fill:url(#linear-gradient)}.faze-2{fill:url(#linear-gradient-2)}.faze-3{fill:url(#linear-gradient-3)}.faze-4{fill:url(#linear-gradient-4)}.cls-1{fill:#673fbd}.cls-11{animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s;animation:back 3.2s linear infinite;-webkit-animation:back 3.2s linear infinite;-moz-animation:back 3.2s linear infinite}.cls-3{fill:url(#back-gradient)}.cls-4,.cls-4-1{opacity:.2;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s}.cls-4-1{fill:#563b8f;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s;animation:back 2.8s linear infinite;-webkit-animation:back 2.8s linear infinite;-moz-animation:back 2.8s linear infinite}.planet{animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s;animation:planet 5s linear infinite;-webkit-animation:planet 5s linear infinite;-moz-animation:planet 5s linear infinite}.cls-4,.cls-8{isolation:isolate}.cls-5,.cls-5-1{fill:#fff;animation:back 4.5s linear infinite;-webkit-animation:back 4.5s linear infinite;-moz-animation:back 4.5s linear infinite;animation-delay:.1s;-moz-animation-delay:.1s;-webkit-animation-delay:.1s}.cls-5-1{animation:back 4s linear infinite;-webkit-animation:back 4s linear infinite;-moz-animation:back 4s linear infinite}.cls-6{fill:url(#back-gradient-2)}.cls-7{fill:url(#back-gradient-3)}.cls-8,.cls-9{opacity:.1}.cls-10{fill:url(#back-gradient-4)}.loading-content .slide-enter{animation:slide-enter 1s linear;-webkit-animation:slide-enter 1s linear;-moz-animation:slide-enter 1s linear}.loading-content .slide-enter-text{animation:slide-enter-text 1s linear;-webkit-animation:slide-enter-text 1s linear;-moz-animation:slide-enter-text 1s linear}.loading-content .slide-up{animation:slide-up 1.6s ease-in;-webkit-animation:slide-up 1.6s ease-in;-moz-animation:slide-up 1.6s ease-in}.dropdown-menu,th{text-align:left}.loading-content img{width:100%;margin-bottom:20px}.loading-content img.erxes-logo{width:90px;margin-right:20px}[hidden],template{display:none}h1{margin:.67em 0}svg:not(:root){overflow:hidden}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.collapsing,.dropdown,.dropup{position:relative}p,pre{margin:0 0 10px}h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1,h2,h3{margin-top:20px}h4,h5,h6{margin-top:10px}h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:18px}h5{font-size:14px}h6{font-size:12px}a{text-decoration:none}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}pre{display:block;padding:9.5px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.col-md-5,.col-md-6,.col-sm-3,.col-sm-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px}@media(min-width:768px){.col-sm-3,.col-sm-6{float:left}.col-sm-6{width:50%}.col-sm-3{width:25%}}@media(min-width:992px){.col-md-5,.col-md-6{float:left}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.offset-md-1{margin-left:8.33333333%}}.fade{-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.fade.in{opacity:1}.collapse{display:none}.collapse.show{display:block}.collapsing{height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.popover{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;line-height:1.42857143;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;line-break:auto;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.Select-input>input,button.close{border:0;-webkit-appearance:none}button.close{padding:0;cursor:pointer;background:0}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.Select,.Select-control{position:relative}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc((0.5rem+1px) * -1)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc((0.5rem+1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-bottom-start,.bs-popover-bottom-end,.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-bottom-start>.arrow,.bs-popover-bottom-end>.arrow{top:calc((0.5rem+1px) * -1)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc((0.5rem+1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.clearfix:after,.clearfix:before,.container:after,.container:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.row:after,.row:before{display:table;content:" "}.clearfix:after,.container:after,.modal-footer:after,.modal-header:after,.row:after{clear:both}.Select,.Select div,.Select input,.Select span{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.Select.is-disabled>.Select-control{background-color:#f9f9f9}.Select.is-disabled>.Select-control:hover{box-shadow:none}.Select.is-disabled .Select-arrow-zone{cursor:default;pointer-events:none;opacity:.35}.Select-control{background-color:#fff;border-radius:4px;border:1px solid #ccc;color:#333;cursor:default;display:table;border-spacing:0;border-collapse:separate;height:36px;outline:0;overflow:hidden;width:100%}.is-searchable.is-focused:not(.is-open)>.Select-control,.is-searchable.is-open>.Select-control{cursor:text}.Select-control:hover{box-shadow:0 1px 0 rgba(0,0,0,.06)}.Select-control .Select-input:focus{outline:0}.is-open>.Select-control{border-bottom-right-radius:0;border-bottom-left-radius:0;background:#fff;border-color:#b3b3b3 #ccc #d9d9d9}.is-open>.Select-control .Select-arrow{top:-2px;border-color:transparent transparent #999;border-width:0 5px 5px}.is-focused:not(.is-open)>.Select-control{border-color:#007eff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 3px rgba(0,126,255,.1)}.Select--single>.Select-control .Select-value,.Select-placeholder{bottom:0;color:#aaa;left:0;line-height:34px;padding-left:10px;padding-right:10px;position:absolute;right:0;top:0;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-value.Select--single>.Select-control .Select-value .Select-value-label,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label{color:#333}.has-value.Select--single>.Select-control .Select-value a.Select-value-label,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label{cursor:pointer;text-decoration:none}.has-value.Select--single>.Select-control .Select-value a.Select-value-label:focus,.has-value.Select--single>.Select-control .Select-value a.Select-value-label:hover,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:focus,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:hover{color:#007eff;outline:0;text-decoration:underline}.Select-input{height:34px;padding-left:10px;padding-right:10px}.Select-input>input{width:100%;background:0;box-shadow:none;cursor:default;display:inline-block;font-family:inherit;font-size:inherit;margin:0;outline:0;line-height:14px;padding:8px 0 12px}.is-focused .Select-input>input{cursor:text}.Select-arrow-zone,.Select-clear-zone,.Select-loading-zone{cursor:pointer;text-align:center;position:relative;vertical-align:middle}.Select-control:not(.is-searchable)>.Select-input{outline:0}.Select-loading-zone{display:table-cell;width:16px}.Select-loading{-webkit-animation:Select-animation-spin .4s infinite linear;-o-animation:Select-animation-spin .4s infinite linear;animation:Select-animation-spin .4s infinite linear;width:16px;height:16px;box-sizing:border-box;border-radius:50%;border:2px solid #ccc;border-right-color:#333;display:inline-block;position:relative;vertical-align:middle}.Select-clear-zone{-webkit-animation:Select-animation-fadeIn .2s;-o-animation:Select-animation-fadeIn .2s;animation:Select-animation-fadeIn .2s;color:#999;display:table-cell;width:17px}.Select-clear-zone:hover{color:#d0021b}.Select-clear{display:inline-block;font-size:18px;line-height:1}.Select--multi .Select-clear-zone{width:17px}.Select-arrow-zone{display:table-cell;width:25px;padding-right:5px}.Select--multi .Select-multi-value-wrapper,.Select-arrow{display:inline-block}.Select-arrow{border-color:#999 transparent transparent;border-style:solid;border-width:5px 5px 2.5px;height:0;width:0;position:relative}.Select-arrow-zone:hover>.Select-arrow,.is-open .Select-arrow{border-top-color:#666}.Select .Select-aria-only{position:absolute;display:inline-block;height:1px;width:1px;margin:-1px;clip:rect(0,0,0,0);overflow:hidden;float:left}@-webkit-keyframes Select-animation-fadeIn{from{opacity:0}to{opacity:1}}@keyframes Select-animation-fadeIn{from{opacity:0}to{opacity:1}}.Select-menu-outer{border-bottom-right-radius:4px;border-bottom-left-radius:4px;background-color:#fff;border:1px solid #ccc;border-top-color:#e6e6e6;box-shadow:0 1px 0 rgba(0,0,0,.06);box-sizing:border-box;margin-top:-1px;max-height:200px;position:absolute;top:100%;width:100%;z-index:1;-webkit-overflow-scrolling:touch}.Select-menu{max-height:198px;overflow-y:auto}.Select-option-group-label{box-sizing:border-box;background-color:#fff;color:#666;font-weight:700;cursor:default;display:block;padding:8px 10px}.Select-option-group-label~.Select-option,.Select-option-group-label~.Select-option-group{padding-left:20px}.Select-noresults,.Select-option{box-sizing:border-box;display:block;padding:8px 10px}.Select-option{background-color:#fff;color:#666;cursor:pointer}.Select-option:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.Select-option.is-selected{background-color:#f5faff;background-color:rgba(0,126,255,.04);color:#333}.Select-option.is-focused{background-color:#ebf5ff;background-color:rgba(0,126,255,.08);color:#333}.Select-option.is-disabled{color:#ccc;cursor:default}.Select-noresults{color:#999;cursor:default}.Select--multi .Select-input{vertical-align:middle;margin-left:10px;padding:0}.Select--multi.has-value .Select-input{margin-left:5px}.Select--multi .Select-value{background-color:#ebf5ff;background-color:rgba(0,126,255,.08);border-radius:2px;border:1px solid #c2e0ff;border:1px solid rgba(0,126,255,.24);color:#007eff;display:inline-block;font-size:.9em;line-height:1.4;margin-left:5px;margin-top:5px;vertical-align:top}.Select--multi .Select-value-icon,.Select--multi .Select-value-label{display:inline-block;vertical-align:middle}.Select--multi .Select-value-label{border-bottom-right-radius:2px;border-top-right-radius:2px;cursor:default;padding:2px 5px}.Select--multi a.Select-value-label{color:#007eff;cursor:pointer;text-decoration:none}.Select--multi a.Select-value-label:hover{text-decoration:underline}.Select--multi .Select-value-icon{cursor:pointer;border-bottom-left-radius:2px;border-top-left-radius:2px;border-right:1px solid #c2e0ff;border-right:1px solid rgba(0,126,255,.24);padding:1px 5px 3px}.Select--multi .Select-value-icon:focus,.Select--multi .Select-value-icon:hover{background-color:#d8eafd;background-color:rgba(0,113,230,.08);color:#0071e6}.Select--multi .Select-value-icon:active{background-color:#c2e0ff;background-color:rgba(0,126,255,.24)}.Select--multi.is-disabled .Select-value{background-color:#fcfcfc;border:1px solid #e3e3e3;color:#333}.Select--multi.is-disabled .Select-value-icon{cursor:not-allowed;border-right:1px solid #e3e3e3}.Select--multi.is-disabled .Select-value-icon:active,.Select--multi.is-disabled .Select-value-icon:focus,.Select--multi.is-disabled .Select-value-icon:hover{background-color:#fcfcfc}@keyframes Select-animation-spin{to{transform:rotate(1turn)}}@-webkit-keyframes Select-animation-spin{to{-webkit-transform:rotate(1turn)}}@keyframes speeder{0%{transform:translate(1px,1px) rotate(0)}10%{transform:translate(-1px,-1px) rotate(-.5deg)}20%{transform:translate(-1px,0) rotate(.5deg)}30%{transform:translate(1px,1px) rotate(0)}40%{transform:translate(1px,-1px) rotate(.5deg)}50%{transform:translate(-1px,1px) rotate(-.5deg)}60%{transform:translate(-1px,1px) rotate(0)}70%{transform:translate(1px,1px) rotate(-.5deg)}80%{transform:translate(-1px,-1px) rotate(.5deg)}90%{transform:translate(1px,1px) rotate(0)}100%{transform:translate(1px,-1px) rotate(-.5deg)}}@keyframes fazer1{0%{transform:translateY(0)}100%{transform:translateY(50px);opacity:0}}@keyframes fazer2{0%{transform:translateY(0)}100%{transform:translateY(80px);opacity:0}}@keyframes fazer3{0%{transform:translateY(0)}100%{transform:translateY(30px);opacity:0}}@keyframes fazer4{0%{transform:translateY(0)}100%{transform:translateY(60px);opacity:0}}@keyframes back{0%{transform:translateY(-40px);opacity:0}50%{transform:translateY(30px);opacity:1}100%{transform:translateY(100px);opacity:0}}@keyframes planet{0%{transform:translateY(-100px);opacity:.2}50%{transform:translateY(110px);opacity:1}100%{transform:translateY(320px);opacity:.2}}@keyframes slide-enter{0%{transform:translateY(30px);visibility:hidden}100%{transform:translateY(0);visibility:visible}}@keyframes slide-enter-text{0%{opacity:0;transform:translateY(30px)}50%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:none}}@keyframes slide-up{0%{transform:translateY(-30px) scale(1.08)}100%{transform:translateY(0) scale(1)}} \ No newline at end of file +body,html{-webkit-text-size-adjust:100%;height:100%}#root,body,html{height:100%}pre,textarea{overflow:auto}.Select-input,img{vertical-align:middle}html{font-family:sans-serif;-ms-text-size-adjust:100%}body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;margin:0;font-size:13px;background:#edf1f5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}.dropdown-menu,.modal-content{-webkit-background-clip:padding-box}#root{display:flex;flex:1}.loading-content{margin:auto;width:320px;height:400px;align-self:center;text-align:center;color:#393c40;font-size:14px}.image-animate{position:relative;height:260px}.image-animate svg{position:absolute;left:0}.image-animate .rocket{animation:speeder .8s linear infinite;-webkit-animation:speeder .8s linear infinite;-moz-animation:speeder .8s linear infinite}.faze-1,.faze-2,.faze-3,.faze-4{position:absolute;animation:fazer1 .4s linear infinite;-webkit-animation:fazer1 .4s linear infinite;-moz-animation:fazer1 .4s linear infinite}.faze-2{animation:fazer2 .6s linear infinite;-webkit-animation:fazer2 .6s linear infinite;-moz-animation:fazer2 .6s linear infinite}.faze-3{top:1px;animation:fazer3 .6s linear infinite;-webkit-animation:fazer3 .6s linear infinite;-moz-animation:fazer3 .6s linear infinite;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s}.faze-4{top:4px;animation:fazer4 .8s linear infinite;-webkit-animation:fazer4 .8s linear infinite;-moz-animation:fazer4 .8s linear infinite;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s}.part-1{fill:#535461}.part-2{opacity:.1}.part-3{fill:#e0e0e0}.part-4{fill:#ddd}.faze-1{fill:url(#linear-gradient)}.faze-2{fill:url(#linear-gradient-2)}.faze-3{fill:url(#linear-gradient-3)}.faze-4{fill:url(#linear-gradient-4)}.cls-1{fill:#673fbd}.cls-11{animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s;animation:back 3.2s linear infinite;-webkit-animation:back 3.2s linear infinite;-moz-animation:back 3.2s linear infinite}.cls-3{fill:url(#back-gradient)}.cls-4,.cls-4-1{opacity:.2;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s}.cls-4-1{fill:#563b8f;animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s;animation:back 2.8s linear infinite;-webkit-animation:back 2.8s linear infinite;-moz-animation:back 2.8s linear infinite}.planet{animation-delay:-1s;-moz-animation-delay:-1s;-webkit-animation-delay:-1s;animation:planet 5s linear infinite;-webkit-animation:planet 5s linear infinite;-moz-animation:planet 5s linear infinite}.cls-4,.cls-8{isolation:isolate}.cls-5,.cls-5-1{fill:#fff;animation:back 4.5s linear infinite;-webkit-animation:back 4.5s linear infinite;-moz-animation:back 4.5s linear infinite;animation-delay:.1s;-moz-animation-delay:.1s;-webkit-animation-delay:.1s}.cls-5-1{animation:back 4s linear infinite;-webkit-animation:back 4s linear infinite;-moz-animation:back 4s linear infinite}.cls-6{fill:url(#back-gradient-2)}.cls-7{fill:url(#back-gradient-3)}.cls-8,.cls-9{opacity:.1}.cls-10{fill:url(#back-gradient-4)}.loading-content .slide-enter{animation:slide-enter 1s linear;-webkit-animation:slide-enter 1s linear;-moz-animation:slide-enter 1s linear}.loading-content .slide-enter-text{animation:slide-enter-text 1s linear;-webkit-animation:slide-enter-text 1s linear;-moz-animation:slide-enter-text 1s linear}.loading-content .slide-up{animation:slide-up 1.6s ease-in;-webkit-animation:slide-up 1.6s ease-in;-moz-animation:slide-up 1.6s ease-in}.dropdown-menu,th{text-align:left}.loading-content img{width:100%;margin-bottom:20px}.loading-content img.erxes-logo{width:90px;margin-right:20px}[hidden],template{display:none}h1{margin:.67em 0}svg:not(:root){overflow:hidden}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.collapsing,.dropdown,.dropup{position:relative}p,pre{margin:0 0 10px}h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1,h2,h3{margin-top:20px}h4,h5,h6{margin-top:10px}h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:18px}h5{font-size:14px}h6{font-size:12px}a{text-decoration:none}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}pre{display:block;padding:9.5px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.col-md-5,.col-md-6,.col-sm-3,.col-sm-6{position:relative;min-height:1px;padding-right:15px;padding-left:15px}@media(min-width:768px){.col-sm-3,.col-sm-6{float:left}.col-sm-6{width:50%}.col-sm-3{width:25%}}@media(min-width:992px){.col-md-5,.col-md-6{float:left}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.offset-md-1{margin-left:8.33333333%}}.fade{-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.fade.in{opacity:1}.collapse{display:none}.collapse.show{display:block}.collapsing{height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.popover{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;line-height:1.42857143;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;line-break:auto;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.Select-input>input,button.close{border:0;-webkit-appearance:none}button.close{padding:0;cursor:pointer;background:0}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.Select,.Select-control{position:relative}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc((0.5rem+1px) * -1)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc((0.5rem+1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-bottom-start,.bs-popover-bottom-end,.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow,.bs-popover-bottom-start>.arrow,.bs-popover-bottom-end>.arrow{top:calc((0.5rem+1px) * -1)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc((0.5rem+1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.clearfix:after,.clearfix:before,.container:after,.container:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.row:after,.row:before{display:table;content:" "}.clearfix:after,.container:after,.modal-footer:after,.modal-header:after,.row:after{clear:both}.Select,.Select div,.Select input,.Select span{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.Select.is-disabled>.Select-control{background-color:#f9f9f9}.Select.is-disabled>.Select-control:hover{box-shadow:none}.Select.is-disabled .Select-arrow-zone{cursor:default;pointer-events:none;opacity:.35}.Select-control{background-color:#fff;border-radius:4px;border:1px solid #ccc;color:#333;cursor:default;display:table;border-spacing:0;border-collapse:separate;height:36px;outline:0;overflow:hidden;width:100%}.is-searchable.is-focused:not(.is-open)>.Select-control,.is-searchable.is-open>.Select-control{cursor:text}.Select-control:hover{box-shadow:0 1px 0 rgba(0,0,0,.06)}.Select-control .Select-input:focus{outline:0}.is-open>.Select-control{border-bottom-right-radius:0;border-bottom-left-radius:0;background:#fff;border-color:#b3b3b3 #ccc #d9d9d9}.is-open>.Select-control .Select-arrow{top:-2px;border-color:transparent transparent #999;border-width:0 5px 5px}.is-focused:not(.is-open)>.Select-control{border-color:#007eff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 3px rgba(0,126,255,.1)}.Select--single>.Select-control .Select-value,.Select-placeholder{bottom:0;color:#aaa;left:0;line-height:34px;padding-left:10px;padding-right:10px;position:absolute;right:0;top:0;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-value.Select--single>.Select-control .Select-value .Select-value-label,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label{color:#333}.has-value.Select--single>.Select-control .Select-value a.Select-value-label,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label{cursor:pointer;text-decoration:none}.has-value.Select--single>.Select-control .Select-value a.Select-value-label:focus,.has-value.Select--single>.Select-control .Select-value a.Select-value-label:hover,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:focus,.has-value.is-pseudo-focused.Select--single>.Select-control .Select-value a.Select-value-label:hover{color:#007eff;outline:0;text-decoration:underline}.Select-input{height:34px;padding-left:10px;padding-right:10px}.Select-input>input{width:100%;background:0;box-shadow:none;cursor:default;display:inline-block;font-family:inherit;font-size:inherit;margin:0;outline:0;line-height:14px;padding:8px 0 12px}.is-focused .Select-input>input{cursor:text}.Select-arrow-zone,.Select-clear-zone,.Select-loading-zone{cursor:pointer;text-align:center;position:relative;vertical-align:middle}.Select-control:not(.is-searchable)>.Select-input{outline:0}.Select-loading-zone{display:table-cell;width:16px}.Select-loading{-webkit-animation:Select-animation-spin .4s infinite linear;-o-animation:Select-animation-spin .4s infinite linear;animation:Select-animation-spin .4s infinite linear;width:16px;height:16px;box-sizing:border-box;border-radius:50%;border:2px solid #ccc;border-right-color:#333;display:inline-block;position:relative;vertical-align:middle}.Select-clear-zone{-webkit-animation:Select-animation-fadeIn .2s;-o-animation:Select-animation-fadeIn .2s;animation:Select-animation-fadeIn .2s;color:#999;display:table-cell;width:17px}.Select-clear-zone:hover{color:#d0021b}.Select-clear{display:inline-block;font-size:18px;line-height:1}.Select--multi .Select-clear-zone{width:17px}.Select-arrow-zone{display:table-cell;width:25px;padding-right:5px}.Select--multi .Select-multi-value-wrapper,.Select-arrow{display:inline-block}.Select-arrow{border-color:#999 transparent transparent;border-style:solid;border-width:5px 5px 2.5px;height:0;width:0;position:relative}.Select-arrow-zone:hover>.Select-arrow,.is-open .Select-arrow{border-top-color:#666}.Select .Select-aria-only{position:absolute;display:inline-block;height:1px;width:1px;margin:-1px;clip:rect(0,0,0,0);overflow:hidden;float:left}@-webkit-keyframes Select-animation-fadeIn{from{opacity:0}to{opacity:1}}@keyframes Select-animation-fadeIn{from{opacity:0}to{opacity:1}}.Select-menu-outer{border-bottom-right-radius:4px;border-bottom-left-radius:4px;background-color:#fff;border:1px solid #ccc;border-top-color:#e6e6e6;box-shadow:0 1px 0 rgba(0,0,0,.06);box-sizing:border-box;margin-top:-1px;max-height:200px;position:absolute;top:100%;width:100%;z-index:1;-webkit-overflow-scrolling:touch}.Select-menu{max-height:198px;overflow-y:auto}.Select-option-group-label{box-sizing:border-box;background-color:#fff;color:#666;font-weight:700;cursor:default;display:block;padding:8px 10px}.Select-option-group-label~.Select-option,.Select-option-group-label~.Select-option-group{padding-left:20px}.Select-noresults,.Select-option{box-sizing:border-box;display:block;padding:8px 10px}.Select-option{background-color:#fff;color:#666;cursor:pointer}.Select-option:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.Select-option.is-selected{background-color:#f5faff;background-color:rgba(0,126,255,.04);color:#333}.Select-option.is-focused{background-color:#ebf5ff;background-color:rgba(0,126,255,.08);color:#333}.Select-option.is-disabled{color:#ccc;cursor:default}.Select-noresults{color:#999;cursor:default}.Select--multi .Select-input{vertical-align:middle;margin-left:10px;padding:0}.Select--multi.has-value .Select-input{margin-left:5px}.Select--multi .Select-value{background-color:#ebf5ff;background-color:rgba(0,126,255,.08);border-radius:2px;border:1px solid #c2e0ff;border:1px solid rgba(0,126,255,.24);color:#007eff;display:inline-block;font-size:.9em;line-height:1.4;margin-left:5px;margin-top:5px;vertical-align:top}.Select--multi .Select-value-icon,.Select--multi .Select-value-label{display:inline-block;vertical-align:middle}.Select--multi .Select-value-label{border-bottom-right-radius:2px;border-top-right-radius:2px;cursor:default;padding:2px 5px}.Select--multi a.Select-value-label{color:#007eff;cursor:pointer;text-decoration:none}.Select--multi a.Select-value-label:hover{text-decoration:underline}.Select--multi .Select-value-icon{cursor:pointer;border-bottom-left-radius:2px;border-top-left-radius:2px;border-right:1px solid #c2e0ff;border-right:1px solid rgba(0,126,255,.24);padding:1px 5px 3px}.Select--multi .Select-value-icon:focus,.Select--multi .Select-value-icon:hover{background-color:#d8eafd;background-color:rgba(0,113,230,.08);color:#0071e6}.Select--multi .Select-value-icon:active{background-color:#c2e0ff;background-color:rgba(0,126,255,.24)}.Select--multi.is-disabled .Select-value{background-color:#fcfcfc;border:1px solid #e3e3e3;color:#333}.Select--multi.is-disabled .Select-value-icon{cursor:not-allowed;border-right:1px solid #e3e3e3}.Select--multi.is-disabled .Select-value-icon:active,.Select--multi.is-disabled .Select-value-icon:focus,.Select--multi.is-disabled .Select-value-icon:hover{background-color:#fcfcfc}@keyframes Select-animation-spin{to{transform:rotate(1turn)}}@-webkit-keyframes Select-animation-spin{to{-webkit-transform:rotate(1turn)}}@keyframes speeder{0%{transform:translate(1px,1px) rotate(0)}10%{transform:translate(-1px,-1px) rotate(-.5deg)}20%{transform:translate(-1px,0) rotate(.5deg)}30%{transform:translate(1px,1px) rotate(0)}40%{transform:translate(1px,-1px) rotate(.5deg)}50%{transform:translate(-1px,1px) rotate(-.5deg)}60%{transform:translate(-1px,1px) rotate(0)}70%{transform:translate(1px,1px) rotate(-.5deg)}80%{transform:translate(-1px,-1px) rotate(.5deg)}90%{transform:translate(1px,1px) rotate(0)}100%{transform:translate(1px,-1px) rotate(-.5deg)}}@keyframes fazer1{0%{transform:translateY(0)}100%{transform:translateY(50px);opacity:0}}@keyframes fazer2{0%{transform:translateY(0)}100%{transform:translateY(80px);opacity:0}}@keyframes fazer3{0%{transform:translateY(0)}100%{transform:translateY(30px);opacity:0}}@keyframes fazer4{0%{transform:translateY(0)}100%{transform:translateY(60px);opacity:0}}@keyframes back{0%{transform:translateY(-40px);opacity:0}50%{transform:translateY(30px);opacity:1}100%{transform:translateY(100px);opacity:0}}@keyframes planet{0%{transform:translateY(-100px);opacity:.2}50%{transform:translateY(110px);opacity:1}100%{transform:translateY(320px);opacity:.2}}@keyframes slide-enter{0%{transform:translateY(30px);visibility:hidden}100%{transform:translateY(0);visibility:visible}}@keyframes slide-enter-text{0%{opacity:0;transform:translateY(30px)}50%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:none}}@keyframes slide-up{0%{transform:translateY(-30px) scale(1.08)}100%{transform:translateY(0) scale(1)}} \ No newline at end of file diff --git a/ui/src/__tests__/engage/components/EmailForm.test.tsx b/ui/src/__tests__/engage/components/EmailForm.test.tsx index 35d15506ad6..d9f512be2a3 100644 --- a/ui/src/__tests__/engage/components/EmailForm.test.tsx +++ b/ui/src/__tests__/engage/components/EmailForm.test.tsx @@ -41,14 +41,13 @@ describe('EmailForm component', () => { const testIEngageScheduleDate: IEngageScheduleDate = { type: 'string', month: 'string', - day: 'string', - time: new Date() + day: 'string' }; const defaultProps = { onChange: ( name: 'email' | 'content' | 'fromUserId' | 'scheduleDate', - value: IEngageEmail | IEngageScheduleDate | string + value?: IEngageEmail | IEngageScheduleDate | string ) => null, message: 'string', users: testUsers, diff --git a/ui/src/__tests__/engage/components/Scheduler.test.tsx b/ui/src/__tests__/engage/components/Scheduler.test.tsx index 3d490169c3c..96659f41ec3 100644 --- a/ui/src/__tests__/engage/components/Scheduler.test.tsx +++ b/ui/src/__tests__/engage/components/Scheduler.test.tsx @@ -8,13 +8,12 @@ describe('Scheduler component', () => { const testIEngageScheduleDate: IEngageScheduleDate = { type: 'string', month: 'string', - day: 'string', - time: new Date() + day: 'string' }; const defaultProps = { scheduleDate: testIEngageScheduleDate, - onChange: (name: 'scheduleDate', value: IEngageScheduleDate) => null + onChange: (name: 'scheduleDate', value?: IEngageScheduleDate) => null }; test('renders successfully', () => { diff --git a/ui/src/apolloClient.ts b/ui/src/apolloClient.ts index 815c94c74b2..4721e8e75d7 100644 --- a/ui/src/apolloClient.ts +++ b/ui/src/apolloClient.ts @@ -5,7 +5,7 @@ import { onError } from 'apollo-link-error'; import { createHttpLink } from 'apollo-link-http'; import { WebSocketLink } from 'apollo-link-ws'; import { getMainDefinition } from 'apollo-utilities'; -import { Alert, getCookie } from 'modules/common/utils'; +import { Alert } from 'modules/common/utils'; import { __ } from 'modules/common/utils'; // get env config from process.env or window.env @@ -13,7 +13,7 @@ export const getEnv = (): any => { const envs = {}; for (const envMap of (window as any).envMaps) { - envs[envMap.name] = getCookie(envMap.name); + envs[envMap.name] = localStorage.getItem(`erxes_env_${envMap.name}`); } return envs; diff --git a/ui/src/index.tsx b/ui/src/index.tsx index 2a05c44f917..3391748e421 100644 --- a/ui/src/index.tsx +++ b/ui/src/index.tsx @@ -9,7 +9,7 @@ import 'modules/common/styles/global-styles.ts'; import React from 'react'; import { ApolloProvider } from 'react-apollo'; import { render } from 'react-dom'; -import apolloClient from './apolloClient'; +import apolloClient, { getEnv } from './apolloClient'; import Routes from './routes'; dayjs.extend(localizedFormat); @@ -17,9 +17,18 @@ dayjs.extend(relativeTime); const target = document.querySelector('#root'); -render( - - - , - target -); +const envs = getEnv(); + +fetch( + `${envs.REACT_APP_API_URL}/set-frontend-cookies?envs=${JSON.stringify(envs)}`, + { credentials: 'include' } +) + .then(response => response.text()) + .then(() => { + render( + + + , + target + ); + }); diff --git a/ui/src/locales/ar.json b/ui/src/locales/ar.json new file mode 100644 index 00000000000..6e0c449f337 --- /dev/null +++ b/ui/src/locales/ar.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "هل أنت واثق؟ هذا لا يمكن التراجع عنها.", + "Yes, I am": "نعم انا", + "No, Cancel": "لا ، إلغاء", + "Filter by tags": "تصفية حسب العلامات", + "There is no data": "ليس هنالك معلومات", + "There is no data.": "ليس هنالك معلومات.", + "Load more": "تحميل المزيد", + "There aren't any activities at the moment.": "لا توجد أي أنشطة في الوقت الحالي.", + "Reset your password": "اعد ضبط كلمه السر", + "Email me the instruction": "أرسل لي التعليمات", + "Sign in": "تسجيل الدخول", + "Change password": "تغيير كلمة السر", + "Set your new password": "اضبط كلمة المرور الجديدة", + "Forgot password?": "هل نسيت كلمة المرور؟", + "Photo": "صورة فوتوغرافية", + "Name": "اسم", + "Views": "الآراء", + "Conversion": "تحويلات", + "Go to import": "الذهاب إلى الاستيراد", + "Conversion rate": "معدل التحويل", + "Contacts gathered": "الاتصالات التي تم جمعها", + "Create lead": "إنشاء النوافذ المنبثقة", + "Form title": "عنوان النموذج", + "Related": "ذات صلة", + "Form description": "وصف النموذج", + "Position": "موضع", + "Username": "اسم المستخدم", + "Email": "البريد الإلكتروني", + "sec": "ثانية", + "Twitter username": "اسم مستخدم التويتر", + "Inbox": "صندوق الوارد", + "Workflow": "سير العمل", + "Watch": "راقب", + "Watching": "مشاهدة", + "Team Inbox": "فريق البريد الوارد", + "Customers": "الزبائن", + "Companies": "الشركات", + "Engage": "يشترك - ينخرط", + "Insights": "أفكار", + "Knowledge Base": "قاعدة المعرفة", + "Settings": "الإعدادات", + "Resolve": "حل", + "Send": "إرسال", + "No company": "بدون شريك", + "No customer": "لا العملاء", + "Not tagged yet": "لم يتم وضع علامة بعد", + "New note": "ملاحظة جديدة", + "Conversation": "محادثة", + "Notes": "ملاحظات", + "Activity": "نشاط", + "Basic info": "معلومات أساسية", + "Size": "بحجم", + "Other": "آخر", + "Industry": "صناعة", + "Website": "موقع الكتروني", + "Plan": "خطة", + "About": "حول", + "Discard": "تجاهل", + "Save": "حفظ", + "Create response template": "إنشاء قالب استجابة", + "Associate": "مساعد", + "No tags": "بدون علامات", + "Add customer": "إضافة العملاء", + "No segments": "لا شرائح", + "Manage Columns": "إدارة الأعمدة", + "New customer": "عميل جديد", + "Add company": "أضف شركة", + "New company": "شركة جديدة", + "Choose which column you see": "اختيار العمود الذي تراه", + "There is no engage message.": "لا توجد رسالة الانخراط.", + "Add Knowledge base": "إضافة قاعدة المعرفة", + "Add knowledge base.": "إضافة قاعدة المعرفة.", + "New Channel": "قناة جديدة", + "Edit": "تعديل", + "Edit basic info": "تحرير المعلومات الأساسية", + "Manage integration": "إدارة التكامل", + "Manage Integration": "إدارة التكامل", + "Choose new brand": "اختيار العلامة التجارية الجديدة", + "Edit integration": "تحرير التكامل", + "Integration": "دمج", + "Integration menu": "قائمة التكامل", + "New Brand": "العلامة التجارية الجديدة", + "Add facebook page": "إضافة صفحة الفيسبوك", + "Add integrations": "إضافة التكامل", + "Add messenger": "إضافة رسول", + "There is no lead.": "لا يوجد الرصاص.", + "New response template": "قالب استجابة جديد", + "Cancel": "إلغاء", + "Public": "عامة", + "Private": "نشر", + "New email template": "قالب بريد إلكتروني جديد", + "Local publisher's email template": "قالب البريد الإلكتروني للناشر المحلي", + "New user": "مستخدم جديد", + "Load More": "تحميل المزيد", + "Session count": "عدد الجلسة", + "Last seen at": "شوهد آخر مرة في", + "Tags": "الكلمات", + "Member": "عضو", + "Remove": "إزالة", + "No companies added yet!": "لم تتم إضافة شركات بعد!", + "Merge": "دمج", + "First Name": "الاسم الاول", + "Last Name": "الكنية", + "First name": "الاسم الاول", + "Last name": "الكنية", + "Primary Email": "البريد الإلكتروني الرئيسي", + "Phone": "هاتف", + "Is user": "هو المستخدم", + "Save & New": "حفظ و جديد", + "Save & Close": "حفظ وإغلاق", + "Close": "قريب", + "Customer properties": "خصائص العملاء", + "Device properties": "خصائص الجهاز", + "Location": "موقعك", + "Browser": "المتصفح", + "Platform": "منصة", + "IP Address": "عنوان IP", + "Hostname": "اسم المضيف", + "Language": "لغة", + "User Agent": "وكيل المستخدم", + "Other properties": "خصائص أخرى", + "Facebook": "موقع التواصل الاجتماعي الفيسبوك", + "Facebook profile": "حساب فيسبوك", + "Messenger usage": "استخدام رسول", + "Status": "الحالة", + "Online": "عبر الانترنت", + "Offline": "غير متصل على الانترنت", + "Twitter": "تويتر", + "Twitter quote": "اقتباس تويتر", + "Retweet": "تغريد", + "Screen name": "الاسم الذي سيظهر", + "Don't see the result you're looking for? ": "ألا ترى النتيجة التي تبحث عنها؟", + "Merged Info": "معلومات مدمجة", + "E-mail": "البريد الإلكتروني", + "Integrations": "التكامل", + "integration": "دمج", + "Brands": "العلامات التجارية", + "Start date": "تاريخ البدء", + "End date": "تاريخ الانتهاء", + "lead": "تظهر ظهور مفاجئ", + "twitter": "تويتر", + "facebook": "موقع التواصل الاجتماعي الفيسبوك", + "messenger": "رسول", + "Title": "عنوان", + "Brand": "علامة تجارية", + "Current Password": "كلمة المرور الحالية", + "Current password": "كلمة المرور الحالية", + "New Password": "كلمة مرور جديدة", + "Re-type Password to confirm": "أعد كتابة كلمة المرور للتأكيد", + "Signature": "التوقيع", + "simple": "بسيط", + "custom": "مخصص", + "default": "إفتراضي", + "default language": "اللغة الافتراضية", + "primary": "ابتدائي", + "Content": "المحتوى", + "Save & draft": "حفظ المسودة", + "Save & live": "حفظ وعيش", + "Message:": "رسالة:", + "Email template:": "قالب البريد الإلكتروني:", + "Email subject:": "موضوع البريد الإلكتروني:", + "From": "من عند", + "Message type:": "نوع الرسالة:", + "Sent as:": "إرسال كـ:", + "Brand:": "العلامة التجارية:", + "Add rule": "أضف القاعدة", + "Last online": "أخر ظهور علي الانترنت", + "No Activities": "لا توجد أنشطة", + "There is no customer.": "لا يوجد عميل.", + "Properties": "الخصائص", + "Customize ": "يعدل أو يكيف", + "Kind": "طيب القلب", + "All": "الكل", + "Auto": "تلقاءي", + "Visitor auto": "الزائر السيارات", + "Manual": "كتيب", + "Delivered to a user s email inbox": "يتم تسليمها إلى البريد الوارد لأحد المستخدمين", + "Customize with your own templates": "تخصيص مع القوالب الخاصة بك", + "Delivered inside your app": "سلمت داخل التطبيق الخاص بك", + "Reach active users": "الوصول إلى المستخدمين النشطين", + "Channel": "قناة", + "Edit columns": "تحرير الأعمدة", + "Auto message": "رسالة اوتوماتيكية", + "Manual message": "رسالة يدوية", + "Visitor auto message": "رسالة الزوار السيارات", + "Actions": "أجراءات", + "Created date": "تاريخ الإنشاء", + "Type": "اكتب", + "Failed": "فشل", + "Sent": "أرسلت", + "Total": "مجموع", + "Pause": "وقفة", + "Set live": "مجموعة العيش", + "Sending": "إرسال", + "Delete": "حذف", + "Choose segment": "اختيار قطعة", + "To:": "إلى:", + "Messenger kind:": "نوع رسول:", + "Title:": "عنوان", + "Channel:": "قناة", + "No items": "لا توجد عناصر", + "New": "جديد", + "Options:": "خيارات:", + "Options": "خيارات", + "Type:": "اكتب:", + "Add": "إضافة", + "Validation:": "التحقق من صحة", + "Date": "تاريخ", + "Number": "رقم", + "Text:": "نص:", + "Description:": "وصف:", + "This item is requried": "هذا البند مطلوب", + "Preview": "معاينة", + "Column name": "اسم العمود", + "Visible": "مرئي", + "Visibility": "رؤية", + "Choose person": "اختيار شخص", + "Conversation Details": "تفاصيل المحادثة", + "Opened": "افتتح", + "Conversations": "المحادثات", + "Channels": "قنوات", + "Select all": "اختر الكل", + "Filter by tag": "تصفية حسب العلامة", + "Filter by integrations": "تصفية حسب التكامل", + "Filter by brand": "تصفية حسب العلامة التجارية", + "Filter by channel": "تصفية حسب القناة", + "Filter by status": "تصفية حسب الحالة", + "# Channel": "# قناة", + "Unassigned": "غير المعينة", + "Participating": "مشاركة", + "Resolved": "تم الحل", + "View more": "عرض المزيد", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "الزبون غير متصل. انقر لإخفاء الرسائل وإرسالها ، وسوف يتلقونها في المرة التالية التي يكونون فيها متصلين.", + "No templates": "لا قوالب", + "Save as template": "حفظ كقالب", + "Daily First Response Resolve Rate": "الاستجابة الأولى اليومية حل معدل", + "Daily First Response Resolve Rate by Team Members": "الاستجابة الأولى اليومية حل معدل من قبل أعضاء الفريق", + "Daily Response Close Resolve Rate by Team Members": "الاستجابة اليومية إغلاق حل معدل من قبل أعضاء الفريق", + "Volume Report": "تقرير المجلد", + "Feedbacks gathered through various customer engagement channels.": "تجمع التغذية المرتدة من خلال مختلف قنوات إشراك العملاء.", + "Response Report": "تقرير الاستجابة", + "Total number of response for customer feedbacks, by each staff.": "إجمالي عدد الردود على تعليقات العملاء ، من قبل كل فريق.", + "Response Close Report": "الرد إغلاق التقرير", + "Average time of each staff solving problems that based on customer feedbacks.": "متوسط وقت حل كل موظف للمشاكل التي تستند إلى ملاحظات العملاء.", + "First Response Report": "تقرير الرد الأول", + "Responding time for a single feedback. Stats will define average response time by each staff.": "وقت الاستجابة لردود فعل واحدة. ستحدد الإحصائيات متوسط زمن الاستجابة لكل موظف.", + "Daily Response Close Resolve Rate": "الاستجابة اليومية إغلاق حل معدل", + "Daily Response Close Resolve rate by Team Members": "الاستجابة اليومية إغلاق حل معدل من قبل أعضاء الفريق", + "Response Times summary": "ملخص زمن الاستجابة", + "Response Trend": "اتجاه الاستجابة", + "Punch card": "بطاقة مثقبة", + "Response by team members": "رد أعضاء الفريق", + "Tag": "بطاقة شعار", + "Internal note": "مذكرة داخلية", + "Manage templates": "إدارة القوالب", + "Volume summary": "ملخص المجلد", + "Volume Trend": "حجم الاتجاه", + "Summary": "ملخص", + "Install code": "تثبيت رمز", + "No copyable code": "لا يوجد كود قابل للنسخ", + "Manage Knowledge Base": "إدارة قاعدة المعرفة", + "Add Category": "إضافة فئة", + "Add Article": "أضف مقال", + "Customer engagement. REDEFINED.": "إشراك العملاء. إعادة تعريف.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes عبارة عن AI تجتمع بمنصة الرسائل مفتوحة المصدر للمبيعات والتسويق والدعم", + "404. This page is not found.": "404. هذه الصفحة غير موجودة", + "erxes is an open-source messaging platform for customer success": "erxes عبارة عن منصة رسائل مفتوحة المصدر لنجاح العملاء", + "Notification settings": "إعدادات الإشعار", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "منصة التسويق والمبيعات وخدمة العملاء المصممة لمساعدة أعمالك على جذب المزيد من العملاء الملتزمين. استبدال Hubspot بالمهمة والنظام الإيكولوجي المدفوع بالمجتمع.", + "Mark Page Read": "اجعل الصفحة مقروءة", + "Mark All Read": "ضع علامة بأنه تم القراءة", + "Coming soon": "قريبا", + "Looks like you are all caught up": "يبدو أنك قد اشتعلت جميع", + "AI": "منظمة العفو الدولية", + "See all": "اظهار الكل", + "Select a field": "اختر المجال", + "Add condition": "إضافة شرط", + "Parent segment conditions": "شروط شريحة الوالد", + "Filter by segments": "تصفية حسب القطاعات", + "New segment": "شريحة جديدة", + "Manage segments": "إدارة القطاعات", + "Users who match": "المستخدمين الذين مباراة", + "any": "أي", + "all": "الكل", + "of the below conditions": "من الشروط أدناه", + "Sub segment of": "الجزء الفرعي من", + "Color": "اللون", + "Filters": "مرشحات", + "User(s) will recieve this message": "سوف يستلم المستخدم / المستخدمين هذه الرسالة", + "Color code": "رمز اللون", + "Engage Message": "إشراك الرسالة", + "Item counts": "التهم البند", + "Appearance": "مظهر خارجي", + "Hours, Availability & Other configs": "ساعات ، توافر والتكوينات الأخرى", + "There is no brand": "لا يوجد علامة تجارية", + "There is no integration in this channel.": "لا يوجد تكامل في هذه القناة.", + "Template markup": "ترميز القالب", + "Use html template here": "استخدام قالب HTML هنا", + "Choose your email template type": "اختر نوع قالب البريد الإلكتروني الخاص بك", + "Email signatures": "توقيعات البريد الإلكتروني", + "Personal Settings": "اعدادات شخصية", + "Account Settings": "إعدادت الحساب", + "Profile": "الملف الشخصي", + "Get notification by email": "الحصول على إشعار عن طريق البريد الإلكتروني", + "Admin": "مشرف", + "Contributor": "مساهم", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "نرحب بكم بحرارة في التآكل ونتطلع إلى علاقة عمل صحية طويلة الأجل معنا.", + "Hi, any questions?": "مرحبا أي أسئلة؟", + "1 hour ago": "منذ 1 ساعة", + "We need your help!": "نحن نحتاج مساعدتك!", + "6 minutes ago": "منذ 6 دقائق", + "Write a reply ...": "اكتب رد ...", + "App": "تطبيق", + "From email": "من البريد الإلكترونى", + "User email title": "عنوان البريد الإلكتروني للمستخدم", + "User email content": "محتوى البريد الإلكتروني للمستخدم", + "Admin emails": "رسائل البريد الإلكتروني المسؤول", + "Admin email title": "عنوان البريد الإلكتروني للمشرف", + "Admin email content": "محتوى البريد الإلكتروني المسؤول", + "Redirect url": "إعادة توجيه URL", + "On success": "على النجاح", + "Load": "حمل", + "Success": "نجاح", + "Thank content": "شكرا المحتوى", + "Choose a custom color": "اختيار لون مخصص", + "Choose a wallpaper": "اختيار خلفية", + "Choose a logo": "اختر الشعار", + "Visible online to visitor or customer": "مرئي عبر الإنترنت للزائر أو العميل", + "Online messaging": "الرسائل على الانترنت", + "Welcome message": "رسالة الترحيب", + "Offline messaging": "الرسائل دون اتصال", + "Away message": "رسالة بعيدا", + "Thank you message": "شكرا لك رسالة", + "Hours & Availability": "ساعات وتوافر", + "Turn online/offline manually": "بدوره على الانترنت / حاليا يدويا", + "Set to follow your schedule": "تعيين لمتابعة الجدول الزمني الخاص بك", + "Other configs": "التكوينات الأخرى", + "Notify customer": "بإخطار العملاء", + "Online hours": "ساعات على الانترنت", + "Add another time": "إضافة وقت آخر", + "Time zone": "وحدة زمنية", + "Messenger": "رسول", + "Knowledge base": "قاعدة المعرفة", + "Notification": "تنبيه", + "Notifications": "إشعارات", + "Show unread": "إظهار غير مقروء", + "Unread": "غير مقروء", + "Recent": "الأخيرة", + "Mark all as read": "اشر عليها بانها قرات", + "Email Appearance": "البريد الإلكتروني المظهر", + "Team Members": "أعضاء الفريق", + "Account default": "الحساب الافتراضي", + "Team members": "أعضاء الفريق", + "Full name": "الاسم الكامل", + "Leads": "تظهر ظهور مفاجئ", + "Email Signature": "توقيع البريد الإلكتروني", + "Response Template": "قالب الاستجابة", + "Email Template": "قالب البريد الإلكتروني", + "Response templates": "قوالب الاستجابة", + "Email templates": "قوالب البريد الإلكتروني", + "Brand Name": "اسم العلامة التجارية", + "Current template": "القالب الحالي", + "Created at": "أنشئت في", + "Manage Fields": "إدارة الحقول", + "Duplicate": "مكرر", + "Code": "الشفرة", + "Profile settings": "إعدادات الملف الشخصي", + "Change Password": "تغيير كلمة السر", + "Signatures are only included in response emails.": "يتم تضمين التوقيعات فقط في رسائل البريد الإلكتروني استجابة.", + "Signature template": "قالب التوقيع", + "You can use Markdown to format your signature.": "يمكنك استخدام تخفيض السعر لتنسيق توقيعك.", + "Password": "كلمه السر", + "Password confirmation": "تأكيد كلمة المرور", + "Choose the channels": "اختيار القنوات", + "Simple": "بسيط", + "Custom": "مخصص", + "Create a new Company": "إنشاء شركة جديدة", + "New Company": "شركة جديدة", + "Edit name": "تعديل الاسم", + "Customer": "زبون", + "Add tag": "إضافة علامة", + "Company": "شركة", + "New message ": "رسالة جديدة", + "There aren’t any activities at the moment.": "لا توجد أي أنشطة في الوقت الحالي.", + "This item is required": "هذا البند مطلوب", + "Manage fields": "إدارة الحقول", + "Add integrations ": "إضافة التكامل", + "Form": "شكل", + "Create a new Customer": "إنشاء عميل جديد", + "New Customer": "عميل جديد", + "Segments": "شرائح", + "Add a condition": "إضافة شرط", + "Open": "افتح", + "Choose channel": "اختيار القناة", + "Who is this message for?": "لمن هذه الرسالة؟", + "Compose your message": "يؤلف رسالتك", + "No items added": "لا توجد عناصر مضافة", + "Submit": "إرسال", + "Next": "التالى", + "Save & Draft": "حفظ المسودة", + "Save & Live": "حفظ و لايف", + "From:": "من عند:", + "Pages": "صفحات", + "Links": "الروابط", + "Enter your password to Confirm": "أدخل كلمة المرور للتأكيد", + "Number of visits": "عدد الزيارات", + "Written By": "كتب بواسطة", + "Icon": "أيقونة", + "draft": "مشروع", + "Twitter Username": "اسم مستخدم التويتر", + "LinkedIn": "ينكدين", + "Youtube": "موقع يوتيوب", + "Github": "جيثب", + "Edit response": "تحرير الرد", + "To send your message press Enter and Shift + Enter to add a new line": "لإرسال رسالتك ، اضغط على Enter و Shift + Enter لإضافة سطر جديد", + "To send your note press Enter and Shift + Enter to add a new line": "لإرسال ملاحظتك ، اضغط على Enter و Shift + Enter لإضافة سطر جديد", + "Please enter an unit price. It should be a number": "الرجاء إدخال سعر الوحدة. يجب أن يكون رقم", + "Type to search": "اكتب للبحث", + "Members": "أفراد", + "Choose integrations": "اختيار التكامل", + "Choose brands": "اختيار العلامات التجارية", + "Select a date": "اختر التاريخ", + "Click to select a date": "انقر لتحديد موعد", + "Choose users": "اختيار المستخدمين", + "Select Brand": "اختر العلامة التجارية", + "Write here Welcome message.": "اكتب هنا رسالة الترحيب.", + "Write here Away message.": "أكتب هنا بعيدا الرسالة.", + "Write here Thank you message.": "اكتب هنا شكرا لك", + "Select app": "اختر التطبيق", + "Enter new password": "أدخل كلمة مرور جديدة", + "Choose channels": "اختيار القنوات", + "Select": "تحديد", + "select": "تحديد", + "Choose members": "اختيار الأعضاء", + "Search": "بحث", + "your@email.com": "your@email.com", + "password": "كلمه السر", + "registered@email.com": "registered@email.com", + "new password": "كلمة مرور جديدة", + "Start typing to leave a note": "ابدأ الكتابة لترك ملاحظة", + "Re-type password": "اعد ادخال كلمة المرور", + "Name:": "اسم:", + "Size:": "بحجم:", + "Website:": "موقع الكتروني:", + "Industry:": "صناعة:", + "Plan:": "خطة:", + "There arent't any groups and fields": "ليس هناك أي مجموعات وحقول", + "Please add property Group first": "يرجى إضافة الملكية المجموعة الأولى", + "Add group": "إضافة مجموعة", + "Add Property": "اضف عقارك", + "Add Group & Field ": "إضافة مجموعة وحقل", + "Add Group": "إضافة مجموعة", + "Edit Property": "تحرير الملكية", + "Group:": "مجموعة:", + "There arent't any fields in this group": "لا توجد أي حقول في هذه المجموعة", + "Customer Properties": "خصائص العملاء", + "Company Properties": "خصائص الشركة", + "Add an option": "إضافة خيار", + "Copy to clipboard": "نسخ إلى الحافظة", + "Go to home page": "الذهاب إلى الصفحة الرئيسية", + "Assign to": "يسند إلى", + "Remove assignee": "إزالة المحال إليه", + "Account settings": "إعدادت الحساب", + "General Settings": "الاعدادات العامة", + "Integration Settings": "إعدادات التكامل", + "Personal settings": "اعدادات شخصية", + "Add category": "إضافة فئة", + "Filter": "منقي", + "Live": "حي", + "Draft": "مشروع", + "Paused": "توقف مؤقت", + "Your messages": "رسائلك", + "Delivered inside your app Reach active users": "سلمت داخل التطبيق الخاص بك الوصول إلى المستخدمين النشطين", + "Delivered to a user s email inbox Customize with your own templates": "تم تسليمها إلى صندوق بريد البريد الإلكتروني الخاص بالمستخدم ، قم بالتخصيص باستخدام القوالب الخاصة بك", + "email": "البريد الإلكتروني", + "Create segment": "إنشاء مقطع", + "customers": "الزبائن", + "has any value": "لديه أي قيمة", + "is unknown": "غير معروف", + "is not": "ليس", + "is": "يكون", + "Less than": "أقل من", + "City": "مدينة", + "Greater than": "أكثر من", + "Country": "بلد", + "Current page url": "رابط الصفحة الحالية", + "Browser language": "لغة المتصفح", + "conversation": "محادثة", + "engageMessage": "engageMessage", + "customer": "زبون", + "company": "شركة", + "starts with": "ابدا ب", + "ends with": "ينتهي مع", + "contains": "يحتوي على", + "does not contain": "لا يحتوي", + "Basic Info": "معلومات أساسية", + "Add Phone": "أضف الهاتف", + "Add Email": "إضافة البريد الإلكتروني", + "Choose your tags": "اختيار العلامات الخاصة بك", + "Manage tags": "إدارة العلامات", + "Edit Profile": "تعديل الملف الشخصي", + "Sign out": "خروج", + "Last Updated By": "آخر تحديث بواسطة", + "There is no channel": "لا توجد قناة", + "Facebook page": "صفحة الفيسبوك", + "plan": "خطة", + "Edit segment": "تحرير القطاع", + "New message": "رسالة جديدة", + "Message": "رسالة", + "Merge Customers": "دمج العملاء", + "Assign": "تعيين", + "There is no message.": "لا توجد رسالة", + "per page": "لكل صفحة", + "[view]": "[رأي]", + "Go to twitter": "الذهاب إلى تويتر", + "Build": "بناء", + "`s integration": "سيصدره التكامل", + "Created": "خلقت", + "Email templates:": "قوالب البريد الإلكتروني:", + "Content:": "المحتوى:", + "Response Templates": "قوالب الاستجابة", + "Merge Companies": "دمج الشركات", + "Response template": "قالب الاستجابة", + "Attach file": "أرفق ملف", + "Upload": "رفع", + "ShoutBox": "وصندوق الصيحة", + "Popup": "يظهر فجأة", + "Embedded": "المضمنة", + "Choose a flow type": "اختيار نوع التدفق", + "CallOut": "صرخ", + "Callout title": "عنوان وسيلة الشرح", + "Callout body": "هيئة شرح", + "Callout button text": "نص زر وسيلة شرح", + "Skip callOut": "تخطي callOut", + "Form button text": "نص زر النموذج", + "Theme color": "لون الموضوع", + "Featured image": "صورة مميزة", + "Full Preview": "معاينة كاملة", + "Try some of these colors:": "جرب بعض هذه الألوان:", + "Included fields": "الحقول المشمولة", + "Deal": "مجرى البيع", + "Deals": "خطوط أنابيب المبيعات", + "New Product & Service": "منتج جديد و الخدمة", + "No product or services": "لا يوجد منتج أو خدمات", + "UOM": "UOM", + "Quantity": "كمية", + "Unit price": "سعر الوحده", + "Discount": "خصم", + "Tax": "ضريبة", + "Ticket": "تذكرة", + "Task": "مهمة", + "Select company": "اختر الشركة", + "Select customer": "اختيار العملاء", + "Note": "ملحوظة", + "Assigned to": "مخصص ل", + "Move": "نقل", + "Move deal": "نقل الصفقة", + "Copy": "نسخ", + "Close date": "تاريخ قريب", + "Choose product & service": "اختيار المنتج والخدمة", + "Select product & service": "حدد المنتج والخدمة", + "Please, select a close date": "من فضلك ، حدد تاريخ الإغلاق", + "Create a new Product": "إنشاء منتج جديد", + "New Product": "منتج جديد", + "SKU": "SKU", + "Choose a company": "اختيار شركة", + "Choose a customer": "اختيار العملاء", + "Choose a board": "اختيار لوحة", + "Choose a pipeline": "اختيار خط أنابيب", + "Manage Board & Pipeline": "إدارة المجلس وخطوط الأنابيب", + "Choose a stage": "اختيار المرحلة", + "Deal Settings": "إعدادات خط أنابيب المبيعات", + "Ticket Settings": "إعدادات التذاكر", + "Task Settings": "إعدادات المهمة", + "Boards & Pipelines": "لوحات وخطوط الأنابيب", + "Product & Service": "المنتج والخدمة", + "There is no pipeline in this board.": "لا يوجد خط أنابيب في هذا المنتدى.", + "There is no board": "لا يوجد لوحة", + "New Board": "مجلس إدارة جديد", + "Add pipeline": "إضافة خط أنابيب", + "Create one": "اصنع واحدا", + "Edit pipeline": "تحرير خط الانابيب", + "Add stage": "إضافة المرحلة", + "Board": "مجلس", + "Pipeline": "خط انابيب", + "Stage": "المسرح", + "Stage name": "اسم المرحلة", + "Add a deal": "أضف صفقة", + "Add a task": "أضف مهمة", + "Add a ticket": "أضف تذكرة", + "Priority": "أفضلية", + "Critical": "حرج", + "High": "عالي", + "Normal": "عادي", + "Low": "منخفض", + "Attachments": "مرفقات", + "Source": "مصدر", + "Select a source": "اختر مصدر", + "Upload an attachment": "تحميل مرفق", + "Description": "وصف", + "Select a priority": "اختر أولوية", + "Edit deal": "تحرير الصفقة", + "Edit task": "تحرير المهمة", + "Edit ticket": "تحرير التذكرة", + "Add Product / Service": "إضافة المنتج / الخدمة", + "Reply tweet": "رد سقسقة", + "Tweet": "سقسقة", + "Details": "تفاصيل", + "View Profile": "عرض الصفحة الشخصية", + "Empty Notes": "ملاحظات فارغة", + "Mini-resume": "ميني الذاتية", + "You cannot update this property": "لا يمكنك تحديث هذه الخاصية", + "Desktop": "سطح المكتب", + "Mobile": "التليفون المحمول", + "Tablet": "لوح", + "Amount": "كمية", + "Owner": "صاحب", + "Department": "قسم", + "Lead Status": "يطفو على السطح حالة", + "Lifecycle State": "دولة دورة الحياة", + "Has Authority": "لديه السلطة", + "Do not disturb": "لا تقاطع", + "Parent Company": "الشركة الام", + "Business Type": "نوع العمل", + "Employees count": "عدد الموظفين", + "Yes": "نعم", + "No": "لا", + "Copied": "نسخ", + "General": "جنرال لواء", + "Currency": "عملة", + "Unit of measurement": "وحدة قياس", + "Create another board": "إنشاء لوحة أخرى", + "No pipeline": "لا خط أنابيب", + "No stage": "لا مرحلة", + "No deal": "لا أتفاق", + "Background": "خلفية", + "Choose": "أختر", + "Successfully saved.": "تم الحفظ بنجاح.", + "Successfully moved.": "انتقل بنجاح.", + "Successfully selected.": "تم اختيارها بنجاح.", + "Body description here": "وصف الجسم هنا", + "Thank you.": "شكرا لكم.", + "Choose a brand": "اختيار العلامة التجارية", + "Write a title": "اكتب العنوان", + "Contact": "اتصل", + "Created by": "انشأ من قبل", + "Manage": "يدير", + "Dropdown": "اسقاط", + "Slide-in Left": "الشريحة في اليسار", + "Slide-in Right": "الشريحة في اليمين", + "Enter name": "أدخل الاسم", + "Delivered": "تم التوصيل", + "Clicked": "النقر", + "Complaint": "شكوى", + "Bounce": "وثب، ارتداد", + "Rendering Failure": "تقديم الفشل", + "Rejected": "مرفوض", + "Action": "عمل", + "Please select one to merge": "يرجى اختيار واحد للدمج", + "Filter by date": "تصفية حسب التاريخ", + "Total conversations": "مجموع المحادثات", + "Filter by form": "تصفية حسب النموذج", + "Supporters": "أنصار", + "Import histories": "تاريخ الاستيراد", + "Imported Date": "تاريخ الاستيراد", + "Imported User": "مستخدم مستورد", + "Export customers": "تصدير العملاء", + "Import customers": "استيراد العملاء", + "Export companies": "شركات التصدير", + "Import companies": "شركات الاستيراد", + "All customers imported successfully": "تم استيراد جميع العملاء بنجاح", + "There aren't any imports": "لا توجد أي واردات", + "Successfully Removed all customers": "تم إزالة جميع العملاء بنجاح", + "You can only import max 600 at a time": "يمكنك فقط استيراد 600 كحد أقصى في كل مرة", + "Invalid import type": "نوع الاستيراد غير صالح", + "Last updated": "آخر تحديث", + "Filter by lead status": "تصفية حسب الحالة المنبثقة", + "No lead status chosen": "لم يتم اختيار حالة الرصاص", + "Schedule:": "جدول:", + "Every Day": "كل يوم", + "Every Month": "كل شهر", + "Every Year": "كل عام", + "Every Monday": "كل اثنين", + "Every Tuesday": "كل ثلاثاء", + "Every Wednesday": "كل أربعاء", + "Every Thursday": "كل يوم خميس", + "Every Friday": "كل جمعة", + "Every Saturday": "كل سبت", + "Every Sunday": "كل احد", + "Choose a schedule day": "اختيار يوم الجدول الزمني", + "Choose a schedule time": "اختيار جدول زمني", + "Won": "وون", + "Lost": "ضائع", + "App store": "متجر التطبيقات", + "App store menu": "قائمة متجر التطبيقات", + "In Progress": "في تقدم", + "It`s size exceeds the limit 10mb": "سيصدره حجم يتجاوز 10mb الحد", + "Congrats! Your email sent successfully!": "مبروك! تم إرسال بريدك الإلكتروني بنجاح!", + "Works with messenger": "يعمل مع رسول", + "Knowledge base topic": "موضوع قاعدة المعرفة", + "Package version": "حزمة الإصدار", + "Branch name": "اسم الفرع", + "Abbreviated": "مختصر", + "User": "المستعمل", + "Recent conversations": "المحادثات الأخيرة", + "Start new conversation": "بدء محادثة جديدة", + "Talk with support staff": "التحدث مع موظفي الدعم", + "Send a message": "ارسل رسالة", + "Volume Report By Customer": "تقرير حجم من قبل العملاء", + "Export Report": "تقرير التصدير", + "We`re ready to help you.": "نحن على استعداد لمساعدتك.", + "Please choose a product": "يرجى اختيار المنتج", + "Please choose a currency": "يرجى اختيار العملة", + "No board": "لا لوحة", + "Empty": "فارغة", + "There is no account.": "لا يوجد حساب", + "There is no tag.": "لا يوجد علامة.", + "Skip for now": "تخطي في الوقت الراهن", + "Go to Inbox": "الذهاب إلى البريد الوارد", + "Messenger Language": "لغة الرسول", + "Messenger name": "اسم رسول", + "Skip": "تخطى", + "Finish": "إنهاء", + "Show": "تبين", + "Hide": "إخفاء", + "Previous": "السابق", + "Users": "المستخدمين", + "users": "المستخدمين", + "brands": "العلامات التجارية", + "messengers": "رسل", + "channels": "قنوات", + "Emails": "رسائل البريد الإلكتروني", + "Messengers": "رسل", + "You already have": "لديك بالفعل", + "There is another": "هناك شيء آخر", + "Let's create your brand": "لنقم بإنشاء علامتك التجارية", + "Invite users": "دعوة المستخدمين", + "Let's grow your team": "دعنا ننمو فريقك", + "Invite": "يدعو", + "Let's start": "لنبدأ", + "Start messaging now!": "ابدأ المراسلة الآن!", + "Create channel": "إنشاء قناة", + "Get started on your channel": "ابدأ على قناتك", + "Create your first messenger": "قم بإنشاء الرسول الأول", + "Welcome": "أهلا بك", + "Nothing inserted": "لا شيء إدراجها", + "Empty emails": "رسائل البريد الإلكتروني فارغة", + "Initial setup": "الإعداد الأولي", + "Add another": "أضف آخر", + "Don't show again": "لا تظهر مرة أخرى", + "No other pipeline": "لا خط أنابيب أخرى", + "No other boards": "لا مجالس أخرى", + "I'm ready to get started": "أنا مستعد للبدء", + "Welcome paragraph": "نحن سعداء جدا أن يكون لك. دعنا نأخذ لحظة لتحصل على الإعداد", + "Get notified and notify others to keep everything up to date": "الحصول على إخطار وإخطار الآخرين للحفاظ على كل شيء حتى الآن", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "إذا لم يتلق فريقك الرسائل التي أرسلتها على الموقع ، فيمكننا إرسالها إليهم عبر البريد الإلكتروني", + "Send an email and notify members that they've been invited!": "إرسال بريد إلكتروني وإخطار الأعضاء بأنهم قد تمت دعوتهم!", + "January": "كانون الثاني", + "February": "شهر فبراير", + "March": "مارس", + "April": "أبريل", + "May": "قد", + "June": "يونيو", + "July": "يوليو", + "August": "أغسطس", + "September": "سبتمبر", + "October": "اكتوبر", + "November": "شهر نوفمبر", + "December": "ديسمبر", + "Today": "اليوم", + "Sales": "مبيعات", + "Monthly view": "عرض شهري", + "Filter by": "مصنف بواسطة", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "إنشاء علامة تجارية وإضافة القنوات ، يمكنك تحليل احتياجات العملاء بشكل أفضل والمساعدة في حل مشكلاتهم", + "Grow and add users to your team! Assign, designate and let them do what they do best": "ينمو ويضيف المستخدمين إلى فريقك! قم بتعيينهم وتعيينهم واتركهم يفعلون ما يفعلونه بشكل أفضل", + "Stay up to date with every single customer feedback and create more meaningful conversations": "كن على اطلاع دائم بكل ملاحظات العملاء الفردية وخلق محادثات أكثر جدوى", + "Create brand channels that are specifically categorized by type and activity": "أنشئ قنوات علامات تجارية مصنفة على وجه التحديد حسب النوع والنشاط", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "أضف عميلًا هنا وشاهده على تطبيق Messenger Messenger! لمشاهدة العملاء المتوقعين في صندوق الوارد الخاص بك ، يرجى التأكد من إضافته في قناتك.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "يمكنك الاختيار من بين تكامل برامج المراسلة المتعددة لدينا والإضافة إلى قاعدة معارفك. ستظهر قاعدة المعرفة في علامة تبويب أداة المراسلة. للقيام بذلك ، يرجى إنشاء وإضافة إلى قاعدة معارفك.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "يمثل توقيع البريد الإلكتروني فرصة لتبادل المعلومات التي تساعد على بناء الاعتراف والثقة.", + "Let's start taking care of your customers": "لنبدأ في رعاية عملائك", + "Add in your first company!": "أضف في شركتك الأولى!", + "Choose from our many integrations and add to your channel": "اختر من بين العديد من عمليات الدمج لدينا وأضفها إلى قناتك", + "Let's get you messaging away!": "دعنا نرسل لك الرسائل بعيدا!", + "Whoops! No messages here but you can always start": "يصيح! لا توجد رسائل هنا ولكن يمكنك دائمًا البدء", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "يمكن للمقالات معالجة أي عدد من المشكلات التي يواجهها عملاؤك. يمكن أن تشمل أنواع مقالات المعرفة حلولًا للمشكلات الشائعة ووثائق المنتج أو الميزات والأسئلة الشائعة والمزيد.", + "Oops! No data here": "وجه الفتاة! لا توجد بيانات هنا", + "Start adding integrations now!": "البدء في إضافة التكامل الآن!", + "Add an integration in this Brand": "إضافة التكامل في هذه العلامة التجارية", + "Oh dear! You have no imports": "يا للهول! لا يوجد لديك واردات", + "A strong customer engagement can help to further brand growth and loyalty": "يمكن أن تساعد مشاركة العملاء القوية في زيادة نمو العلامة التجارية والولاء", + "Get started on your pipeline": "البدء في خط الأنابيب الخاص بك", + "Connect to Facebook messages right from your Team Inbox": "يمكنك الاتصال برسائل Facebook مباشرة من صندوق الوارد الخاص بك", + "Tweet back to your DMs right from your Team Inbox": "قم بالرد على سجلات الإدارة الخاصة بك مباشرة من صندوق الوارد الوارد", + "Connect straight to your Gmail and get those emails going": "اتصل مباشرة بـ Gmail واحصل على رسائل البريد الإلكتروني هذه", + "Find your lead forms right here in your Widget": "العثور على أشكال الرصاص الخاصة بك هنا في القطعة الخاصة بك", + "Get access to your Knowledge Base right in your Widget": "الحصول على حق الوصول إلى قاعدة المعارف الخاصة بك في القطعة الخاصة بك", + "Soon you'll be able to connect Viber straight to your Team Inbox": "ستتمكن قريبًا من توصيل Viber مباشرة بـ Team Inbox", + "Get a hold of your Whatsapp messages through your Team Inbox": "احصل على رسائل واتساب الخاصة بك من خلال Team Inbox", + "Connect with Wechat and start messaging right from your Team Inbox": "تواصل مع Wechat وابدأ المراسلة مباشرة من Team Inbox", + "Find feedback that has been gathered from various customer engagement channels.": "ابحث عن التعليقات التي تم جمعها من مختلف قنوات مشاركة العملاء.", + "A report on the total number of customer feedback responses given by team members.": "تقرير عن العدد الإجمالي لاستجابات تعليقات العملاء المقدمة من أعضاء الفريق.", + "The average time a team member solved a problem based on customer feedback.": "متوسط الوقت الذي يحل فيه عضو الفريق مشكلة بناءً على ملاحظات العملاء.", + "You can find stats that defines the average response time by each team member.": "يمكنك العثور على إحصائيات تحدد متوسط زمن الاستجابة لكل عضو في الفريق.", + "Oh boy, looks like you need to get a head start on your deals": "يا ولد ، يبدو أنك بحاجة إلى الحصول على نقطة بداية على صفقاتك", + "Open segments and starting add details": "فتح شرائح والبدء في إضافة تفاصيل", + "Now easier to find contacts according to your brand": "أصبح من الأسهل الآن العثور على جهات اتصال وفقًا لعلامتك التجارية", + "Search and filter customers by form": "بحث وتصفية العملاء حسب النموذج", + "There is always a lead!": "هناك دائما زمام المبادرة!", + "Calendar": "التقويم", + "Columns": "أعمدة", + "columns": "أعمدة", + "Linked Accounts": "الحسابات المرتبطة", + "Select account": "حدد حساب", + "Select account ...": "حدد حساب ...", + "Add Account": "إضافة حساب", + "Remove Account": "إزالة الحساب", + "You can upload only image file": "يمكنك تحميل ملف صورة .png أو .jpg فقط", + "Permissions": "أذونات", + "New permission": "إذن جديد", + "New group": "مجموعة جديدة", + "Users groups": "مجموعات المستخدمين", + "Choose the module": "اختيار الوحدة", + "Choose the actions": "اختيار الإجراءات", + "Choose the users": "اختيار المستخدمين", + "Choose the groups": "اختيار المجموعات", + "Choose groups": "اختيار المجموعات", + "Allow": "السماح", + "Invitation Status": "حالة الدعوة", + "Permission": "الإذن", + "data successfully imported": "تم استيراد البيانات بنجاح", + "Show result": "نتيجة العرض", + "Importing": "استيراد", + "data": "البيانات", + "errors acquired": "الأخطاء المكتسبة", + "There are": "يوجد", + "Continue": "استمر", + "Create brand": "إنشاء العلامة التجارية", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "قم بإنشاء أول دردشة مباشرة ورسائل داخل التطبيق. كن على اطلاع دائم بكل ملاحظات العملاء الفردية للحصول على تفاعلات أكثر معنى.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "تقدم القناة رؤية كاملة لجميع العلامات التجارية وتطبيقاتها في مكان واحد. يمكنك رؤية جميع الرسائل الواردة في صندوق الوارد الخاص بفريقك.", + "Hooray and Congratulations! You've completed the initial setup!": "الصيحة والتهاني! لقد أكملت الإعداد الأولي!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "الصق الكود أدناه قبل علامة على كل صفحة تريد ظهور محادثة erxes فيها.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "الصق الكود أدناه قبل ظهور علامة النص في كل صفحة تريد أن تؤدي فيها erxes", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "إذا كان نوع التدفق مضمنًا ، فقم بلصق الرمز أدناه الذي تريد أن تظهر به erxes", + "If your flow type is popup paste the code below additionally in your button": "إذا كان نوع التدفق منبثقًا ، فقم بلصق الرمز أدناه بالإضافة إلى ذلك في الزر الخاص بك", + "Choose messengers": "اختيار الرسل", + "erxes allows you to create multiple messengers": "erxes يسمح لك لإنشاء رسل متعددة", + "erxes allows you to create multiple brands": "تتيح لك erxes إنشاء علامات تجارية متعددة", + "erxes allows you to create multiple channels": "erxes يسمح لك لإنشاء قنوات متعددة", + "Contacts": "جهات الاتصال", + "Create group": "إنشاء مجموعة", + "Visitors": "الزائرين", + "Due in the next day": "بسبب في اليوم التالي", + "Due in the next week": "من المقرر في الأسبوع المقبل", + "Due in the next month": "المقرر في الشهر المقبل", + "Has no close date": "ليس لديه موعد قريب", + "Over due": "أكثر بسبب", + "Clear Filter": "مرشح واضح", + "Remove this filter": "إزالة هذا الفلتر", + "Filtering is on": "التصفية قيد التشغيل", + "Choose products": "اختيار المنتجات", + "Choose companies": "اختيار الشركات", + "Choose customers": "اختيار العملاء", + "Choose team members": "اختيار أعضاء الفريق", + "erxes Inc": "شركة erxes", + "Get": "احصل على", + "Download ios app for free on the App Store": "قم بتنزيل تطبيق ios مجانًا على متجر التطبيقات.", + "Download android app for free on the Google play": "قم بتنزيل تطبيق android مجانًا على Google play.", + "Please upgrade your browser to use erxes!": "يرجى ترقية المتصفح الخاص بك لاستخدام erxes!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "لسوء الحظ ، فأنت تعمل على متصفح قد لا يكون متوافقًا تمامًا مع erxes.", + "Please use recommended version": "يرجى استخدام النسخة الموصى بها", + "Messenger data": "رسول البيانات", + "Customer field data": "بيانات حقل العميل", + "Others": "الآخرين", + "Select brand": "اختر العلامة التجارية", + "There is no permissions in this group": "لا توجد أذونات في هذه المجموعة.", + "There is no group": "لا يوجد مجموعة.", + "User groups": "مجموعات الاعضاء", + "What action can do": "ما العمل يمكن القيام به", + "Who can": "من يستطيع", + "Grant permission": "يعطي الأذن", + "Check if permission is allowed": "تحقق مما إذا كان الإذن مسموحًا به", + "Then": "ثم", + "Or": "أو", + "Auto message description": "إرسال البريد الإلكتروني والدردشة المستهدفة للمستخدمين الذين تم تسجيل دخولهم بناءً على علامتهم التجارية / علامة / قطعة. يمكنك ضبط وقتك لإرسال بريد إلكتروني أو الدردشة مسبقًا. يمكن قص تصميم الدردشة والشارة والرسالة الكاملة ويمكن أن يكون نصًا أو فيديوًا.", + "Manual message description": "إرسال البريد الإلكتروني والدردشة المستهدفة للمستخدمين الذين تم تسجيل دخولهم بناءً على علامتهم التجارية / علامة / قطعة. سيتم إرسال بريد إلكتروني أو دردشة مباشرة بعد النقر فوق زر حفظ. يمكن قص تصميم الدردشة والشارة والرسالة الكاملة ويمكن أن يكون نصًا أو فيديوًا.", + "Visitor auto message description": "أرسل الدردشات المستهدفة للزائرين الذين تم تسجيل خروجهم على موقع الويب بناءً على صفحة الزيارة ونشاطهم وبلد إقامتهم والمدينة. يمكن قص تصميم الدردشة والشارة والرسالة الكاملة ويمكن أن يكون نصًا أو فيديوًا.", + "Required field": "يتطلب حقلا!", + "Invalid email format! Please enter a valid email address": "تنسيق البريد الإلكتروني غير صالح! رجاء قم بإدخال بريد الكتروني صحيح.", + "Invalid link": "رابط غير صالح!", + "Maximum length is": "الحد الأقصى للطول هو", + "characters": "الشخصيات!", + "Invalid number format! Please enter a valid number": "تنسيق رقم غير صالح! من فضلك أدخل رقما صالحا.", + "Insert email template to content": "إدراج قالب البريد الإلكتروني إلى المحتوى", + "Logs": "السجلات", + "There are no logs recorded": "لا توجد سجلات مسجلة", + "Module": "وحدة", + "Unchanged fields": "حقول لم تتغير", + "Changed fields": "الحقول المتغيرة", + "Create": "خلق", + "Update": "تحديث", + "Changes": "التغييرات", + "Choose start date": "اختر تاريخ البدء", + "Choose end date": "اختيار تاريخ الانتهاء", + "Permission denied": "طلب الاذن مرفوض", + "Old data": "البيانات القديمة", + "New data": "بيانات جديدة", + "Archive": "أرشيف", + "NetworkError": "محاولة لاستعادة الاتصال. التغييرات التي تم إجراؤها الآن قد لا يتم حفظها.", + "Email add account description question": "هل تربط حساب بريد إلكتروني مشترك؟", + "Email add account description": "عندما تقوم بتوصيل بريد إلكتروني بصندوق المحادثات الخاص بك ، فأنت تقوم بتوصيله كحساب مشترك. يمكن عرض الرسائل المرسلة إلى الحسابات المشتركة من قِبل كل شخص لديه حق الوصول إلى البريد الوارد لفريقك.", + "No connected email": "لا يوجد بريد الكتروني متصل", + "Your email will be sent with Erxes email template": "سيتم إرسال بريدك الإلكتروني مع قالب البريد الإلكتروني Erxes" +} diff --git a/ui/src/locales/bn.json b/ui/src/locales/bn.json new file mode 100644 index 00000000000..c62d097e63c --- /dev/null +++ b/ui/src/locales/bn.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "তুমি কি নিশ্চিত? এটা অসম্পূর্ণ থাকতে পারে না.", + "Yes, I am": "হ্যাঁ আমি", + "No, Cancel": "না, বাতিল", + "Filter by tags": "ট্যাগ দ্বারা ফিল্টার", + "There is no data": "সেখানে কোন তথ্য নেই", + "There is no data.": "সেখানে কোন তথ্য নেই.", + "Load more": "আর ঢুকাও", + "There aren't any activities at the moment.": "এই মুহূর্তে কোনও ক্রিয়াকলাপ নেই।", + "Reset your password": "আপনার পাসওয়ার্ড পুনরায় সেট করুন", + "Email me the instruction": "আমাকে নির্দেশ ইমেল করুন", + "Sign in": "সাইন ইন করুন", + "Change password": "পাসওয়ার্ড পরিবর্তন করুন", + "Set your new password": "আপনার নতুন পাসওয়ার্ড সেট করুন", + "Forgot password?": "পাসওয়ার্ড ভুলে গেছেন?", + "Photo": "ছবি", + "Name": "নাম", + "Views": "দেখেছে", + "Conversion": "পরিবর্তন", + "Go to import": "আমদানিতে যান", + "Conversion rate": "রূপান্তর হার", + "Contacts gathered": "পরিচিতি সংগ্রহ করা", + "Create lead": "পপ আপগুলি তৈরি করুন", + "Form title": "ফর্ম শিরোনাম", + "Related": "সম্পর্কিত", + "Form description": "ফর্ম বিবরণ", + "Position": "অবস্থান", + "Username": "ব্যবহারকারীর নাম", + "Email": "ইমেইল", + "sec": "সেকেন্ড", + "Twitter username": "টুইটার ব্যবহারকারীর নাম", + "Inbox": "ইনবক্স", + "Workflow": "কর্মধারা", + "Watch": "ঘড়ি", + "Watching": "পর্যবেক্ষক", + "Team Inbox": "টিম ইনবক্স", + "Customers": "গ্রাহকরা", + "Companies": "কোম্পানি", + "Engage": "চুক্তিবদ্ধ করান", + "Insights": "অন্তর্দৃষ্টি", + "Knowledge Base": "জ্ঞানভিত্তিক", + "Settings": "সেটিংস", + "Resolve": "সমাধান", + "Send": "পাঠান", + "No company": "কোন সংস্থাই নেই", + "No customer": "গ্রাহক নেই", + "Not tagged yet": "এখনও ট্যাগ করা হয়নি", + "New note": "নতুন নোট", + "Conversation": "কথোপকথন", + "Notes": "মন্তব্য", + "Activity": "কার্যকলাপ", + "Basic info": "মৌলিক তথ্য", + "Size": "আয়তন", + "Other": "অন্যান্য", + "Industry": "শিল্প", + "Website": "ওয়েবসাইট", + "Plan": "পরিকল্পনা", + "About": "সম্পর্কিত", + "Discard": "বাতিল করা", + "Save": "সংরক্ষণ", + "Create response template": "প্রতিক্রিয়া টেম্পলেট তৈরি করুন", + "Associate": "সহযোগী", + "No tags": "কোনও ট্যাগ নেই", + "Add customer": "গ্রাহক যুক্ত করুন", + "No segments": "কোনও বিভাগ নেই", + "Manage Columns": "কলাম পরিচালনা করুন", + "New customer": "নতুন গ্রাহক", + "Add company": "সংযুক্ত করুন", + "New company": "নতুন সংস্থা", + "Choose which column you see": "আপনি কোন কলামটি দেখুন তা চয়ন করুন", + "There is no engage message.": "কোনও বাগদানের বার্তা নেই।", + "Add Knowledge base": "জ্ঞান বেস যোগ করুন", + "Add knowledge base.": "জ্ঞান বেস যোগ করুন।", + "New Channel": "নতুন চ্যানেল", + "Edit": "সম্পাদন করা", + "Edit basic info": "প্রাথমিক তথ্য সম্পাদনা করুন", + "Manage integration": "ইন্টিগ্রেশন পরিচালনা করুন", + "Manage Integration": "ইন্টিগ্রেশন পরিচালনা করুন", + "Choose new brand": "নতুন ব্র্যান্ড চয়ন করুন", + "Edit integration": "সংহতকরণ সম্পাদনা করুন", + "Integration": "মিশ্রণ", + "Integration menu": "ইন্টিগ্রেশন মেনু", + "New Brand": "নতুন ব্র্যান্ড", + "Add facebook page": "ফেসবুক পৃষ্ঠা যুক্ত করুন", + "Add integrations": "ইন্টিগ্রেশন যুক্ত করুন", + "Add messenger": "ম্যাসেঞ্জার যুক্ত করুন", + "There is no lead.": "কোন নেতৃত্ব নেই।", + "New response template": "নতুন প্রতিক্রিয়া টেম্পলেট", + "Cancel": "বাতিল", + "Public": "প্রকাশ্য", + "Private": "ব্যক্তিগত", + "New email template": "নতুন ইমেল টেম্পলেট", + "Local publisher's email template": "স্থানীয় প্রকাশকের ইমেল টেম্পলেট", + "New user": "নতুন ব্যবহারকারী", + "Load More": "আর ঢুকাও", + "Session count": "সেশন গণনা", + "Last seen at": "সর্বশেষ দেখা হয়েছে", + "Tags": "ট্যাগ", + "Member": "সদস্য", + "Remove": "অপসারণ", + "No companies added yet!": "এখনও কোনও সংযুক্ত করা হয়নি!", + "Merge": "একত্রিত করা", + "First Name": "নামের প্রথম অংশ", + "Last Name": "নামের শেষাংশ", + "First name": "নামের প্রথম অংশ", + "Last name": "নামের শেষাংশ", + "Primary Email": "প্রাথমিক ইমেইল", + "Phone": "ফোন", + "Is user": "ব্যবহারকারী", + "Save & New": "সংরক্ষণ করুন এবং নতুন", + "Save & Close": "সংরক্ষণ করুন এবং বন্ধ করুন", + "Close": "ঘনিষ্ঠ", + "Customer properties": "গ্রাহক সম্পত্তি", + "Device properties": "ডিভাইস বৈশিষ্ট্য", + "Location": "অবস্থান", + "Browser": "ব্রাউজার", + "Platform": "মাচা", + "IP Address": "আইপি ঠিকানা", + "Hostname": "হোস্টনাম", + "Language": "ভাষা", + "User Agent": "ব্যবহারিক দূত", + "Other properties": "অন্যান্য সম্পত্তি", + "Facebook": "ফেসবুক", + "Facebook profile": "ফেসবুক প্রোফাইল", + "Messenger usage": "ম্যাসেঞ্জার ব্যবহার", + "Status": "অবস্থা", + "Online": "অনলাইন", + "Offline": "অফলাইন", + "Twitter": "টুইটার", + "Twitter quote": "টুইটারের উদ্ধৃতি", + "Retweet": "পুনঃটুইট", + "Screen name": "স্ক্রিন নাম", + "Don't see the result you're looking for? ": "আপনি যে ফলাফলটি সন্ধান করছেন তা দেখছেন না?", + "Merged Info": "মার্জ করা তথ্য", + "E-mail": "ই-মেইল", + "Integrations": "ঐক্যবদ্ধতা", + "integration": "মিশ্রণ", + "Brands": "ব্র্যান্ডস", + "Start date": "শুরুর তারিখ", + "End date": "শেষ তারিখ", + "lead": "পপ আপস", + "twitter": "টুইটার", + "facebook": "ফেইসবুক", + "messenger": "বার্তাবহ", + "Title": "শিরোনাম", + "Brand": "তরবার", + "Current Password": "বর্তমান পাসওয়ার্ড", + "Current password": "বর্তমান পাসওয়ার্ড", + "New Password": "নতুন পাসওয়ার্ড", + "Re-type Password to confirm": "নিশ্চিত করতে পাসওয়ার্ড আবার টাইপ করুন", + "Signature": "স্বাক্ষর", + "simple": "সহজ", + "custom": "প্রথা", + "default": "ডিফল্ট", + "default language": "নির্ধারিত ভাষা", + "primary": "প্রাথমিক", + "Content": "সন্তুষ্ট", + "Save & draft": "খসড়া সংরক্ষণ", + "Save & live": "সংরক্ষণ এবং লাইভ", + "Message:": "বার্তা:", + "Email template:": "ইমেল টেমপ্লেট:", + "Email subject:": "ইমেইল বিষয়:", + "From": "থেকে", + "Message type:": "বার্তার ধরণ:", + "Sent as:": "হিসাবে প্রেরিত:", + "Brand:": "ব্র্যান্ড:", + "Add rule": "বিধি যুক্ত করুন", + "Last online": "গত অনলাইন", + "No Activities": "কোন ক্রিয়াকলাপ নেই", + "There is no customer.": "কোনও গ্রাহক নেই।", + "Properties": "প্রোপার্টি", + "Customize ": "কাস্টমাইজ", + "Kind": "সদয়", + "All": "সব", + "Auto": "অটো", + "Visitor auto": "ভিজিটর অটো", + "Manual": "ম্যানুয়াল", + "Delivered to a user s email inbox": "ব্যবহারকারীর ইমেল ইনবক্সে বিতরণ করা হয়েছে", + "Customize with your own templates": "আপনার নিজস্ব টেমপ্লেটগুলি সাথে কাস্টমাইজ করুন", + "Delivered inside your app": "আপনার অ্যাপ্লিকেশন ভিতরে বিতরণ", + "Reach active users": "সক্রিয় ব্যবহারকারীদের কাছে পৌঁছান", + "Channel": "চ্যানেল", + "Edit columns": "কলামগুলি সম্পাদনা করুন", + "Auto message": "স্বয়ংক্রিয় বার্তা", + "Manual message": "ম্যানুয়াল বার্তা", + "Visitor auto message": "দর্শনার্থী অটো বার্তা", + "Actions": "ক্রিয়াকলাপ", + "Created date": "তৈরীর তারিখ", + "Type": "আদর্শ", + "Failed": "ব্যর্থ", + "Sent": "প্রেরিত", + "Total": "মোট", + "Pause": "বিরতি", + "Set live": "লাইভ সেট করুন", + "Sending": "পাঠানো হচ্ছে", + "Delete": "মুছে ফেলা", + "Choose segment": "বিভাগটি চয়ন করুন", + "To:": "প্রতি:", + "Messenger kind:": "ম্যাসেঞ্জার ধরনের:", + "Title:": "শিরোনাম", + "Channel:": "চ্যানেল", + "No items": "কোন আইটেম নেই", + "New": "নতুন", + "Options:": "বিকল্প:", + "Options": "বিকল্প", + "Type:": "টাইপ করুন:", + "Add": "যোগ", + "Validation:": "ভ্যালিডেশন", + "Date": "তারিখ", + "Number": "সংখ্যা", + "Text:": "পাঠ্য:", + "Description:": "বর্ণনা:", + "This item is requried": "এই আইটেমটি পুনরুদ্ধার করা হয়", + "Preview": "পূর্বরূপ", + "Column name": "কলামের নাম", + "Visible": "দৃশ্যমান", + "Visibility": "দৃষ্টিপাত", + "Choose person": "ব্যক্তি চয়ন করুন", + "Conversation Details": "কথোপকথনের বিশদ", + "Opened": "খোলা হয়েছে", + "Conversations": "কথোপকথন", + "Channels": "চ্যানেল", + "Select all": "সমস্ত নির্বাচন করুন", + "Filter by tag": "ট্যাগ দ্বারা ফিল্টার", + "Filter by integrations": "ইন্টিগ্রেশন দ্বারা ফিল্টার", + "Filter by brand": "ব্র্যান্ড দ্বারা ফিল্টার", + "Filter by channel": "চ্যানেল দ্বারা ফিল্টার", + "Filter by status": "স্থিতি অনুসারে ফিল্টার করুন", + "# Channel": "# চ্যানেল", + "Unassigned": "নির্দিষ্ট কাউকে না দেওয়া", + "Participating": "অংশগ্রহণকারী", + "Resolved": "স্থিরপ্রতিজ্ঞ", + "View more": "আরো দেখুন", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "গ্রাহক অফলাইনে রয়েছে। বার্তাগুলি আড়াল করতে এবং প্রেরণ করতে ক্লিক করুন এবং পরের বার অনলাইনে আসার পরে তারা সেগুলি গ্রহণ করবে।", + "No templates": "কোনও টেম্পলেট নেই", + "Save as template": "ফর্মা হিসেবে সংরক্ষণ", + "Daily First Response Resolve Rate": "দৈনিক প্রথম প্রতিক্রিয়া সমাধানের হার", + "Daily First Response Resolve Rate by Team Members": "টিম সদস্যদের দ্বারা দৈনিক প্রথম প্রতিক্রিয়া সমাধানের হার Res", + "Daily Response Close Resolve Rate by Team Members": "টিম সদস্যদের দ্বারা দৈনিক প্রতিক্রিয়া বন্ধ সমাধানের হার", + "Volume Report": "ভলিউম রিপোর্ট", + "Feedbacks gathered through various customer engagement channels.": "প্রতিক্রিয়াগুলি বিভিন্ন গ্রাহকবৃত্তির চ্যানেলের মাধ্যমে জড়ো হয়েছিল।", + "Response Report": "প্রতিক্রিয়া প্রতিবেদন", + "Total number of response for customer feedbacks, by each staff.": "প্রতিটি কর্মী দ্বারা গ্রাহক ফিডব্যাকের জন্য মোট প্রতিক্রিয়ার সংখ্যা।", + "Response Close Report": "প্রতিক্রিয়া বন্ধ প্রতিবেদন", + "Average time of each staff solving problems that based on customer feedbacks.": "গ্রাহক ফিডব্যাকগুলির উপর ভিত্তি করে সমস্যাগুলি সমাধান করার প্রতিটি কর্মীর গড় সময়।", + "First Response Report": "প্রথম প্রতিক্রিয়া প্রতিবেদন", + "Responding time for a single feedback. Stats will define average response time by each staff.": "একক প্রতিক্রিয়ার জন্য সময় সাড়া। পরিসংখ্যান প্রতিটি কর্মী দ্বারা গড় প্রতিক্রিয়া সময় সংজ্ঞায়িত করা হবে।", + "Daily Response Close Resolve Rate": "দৈনিক প্রতিক্রিয়া বন্ধ সমাধানের হার", + "Daily Response Close Resolve rate by Team Members": "টিম সদস্যদের দ্বারা দৈনিক প্রতিক্রিয়া বন্ধ সমাধানের হার", + "Response Times summary": "রেসপন্স টাইমসের সংক্ষিপ্তসার", + "Response Trend": "প্রতিক্রিয়া ট্রেন্ড", + "Punch card": "পাঞ্চ কার্ড", + "Response by team members": "দলের সদস্যদের দ্বারা প্রতিক্রিয়া", + "Tag": "ট্যাগ", + "Internal note": "অভ্যন্তরীণ নোট", + "Manage templates": "টেমপ্লেট পরিচালনা করুন", + "Volume summary": "আয়তন সংক্ষিপ্তসার", + "Volume Trend": "ভলিউম ট্রেন্ড", + "Summary": "সারসংক্ষেপ", + "Install code": "কোড ইনস্টল করুন", + "No copyable code": "কোনও অনুলিপিযোগ্য কোড নেই", + "Manage Knowledge Base": "জ্ঞান বেস পরিচালনা করুন", + "Add Category": "বিভাগ যুক্ত করুন", + "Add Article": "নিবন্ধ যুক্ত করুন", + "Customer engagement. REDEFINED.": "ক্রেতা প্রবৃত্তি. পুনরায় সংজ্ঞায়িত।", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "এরক্সেস হল একটি এআই বিক্রয়, বিপণন এবং সমর্থনের জন্য ওপেন সোর্স মেসেজিং প্ল্যাটফর্ম meets", + "404. This page is not found.": "404. এই পৃষ্ঠাটি পাওয়া যায় না।", + "erxes is an open-source messaging platform for customer success": "এরেক্সেস গ্রাহকের সাফল্যের জন্য একটি ওপেন সোর্স মেসেজিং প্ল্যাটফর্ম", + "Notification settings": "বিজ্ঞপ্তি সেটিংস", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "বিপণন, বিক্রয় এবং গ্রাহক পরিষেবা প্ল্যাটফর্ম আপনার ব্যবসাকে আরও নিযুক্ত গ্রাহকদের আকর্ষণ করতে সহায়তা করার জন্য ডিজাইন করা। মিশন এবং সম্প্রদায়-চালিত বাস্তুতন্ত্রের সাথে হাবস্পট প্রতিস্থাপন করুন।", + "Mark Page Read": "পৃষ্ঠা পড়ুন চিহ্নিত করুন", + "Mark All Read": "সমস্ত পড়ুন চিহ্নিত করুন", + "Coming soon": "শীঘ্রই আসছে", + "Looks like you are all caught up": "দেখে মনে হচ্ছে আপনি সবাই ধরা পড়েছেন", + "AI": "এআই", + "See all": "সবগুলো দেখ", + "Select a field": "একটি ক্ষেত্র নির্বাচন করুন", + "Add condition": "শর্ত যুক্ত করুন", + "Parent segment conditions": "অভিভাবক বিভাগের শর্ত", + "Filter by segments": "বিভাগগুলি দ্বারা ফিল্টার করুন", + "New segment": "নতুন বিভাগ", + "Manage segments": "বিভাগগুলি পরিচালনা করুন", + "Users who match": "ব্যবহারকারী যারা মেলে", + "any": "কোন", + "all": "সব", + "of the below conditions": "নীচের অবস্থার", + "Sub segment of": "উপ বিভাগ", + "Color": "রঙ", + "Filters": "ফিল্টার", + "User(s) will recieve this message": "ব্যবহারকারী (গুলি) এই বার্তাটি গ্রহণ করবে", + "Color code": "রঙের কোড", + "Engage Message": "বার্তা নিযুক্ত করুন", + "Item counts": "আইটেম গণনা", + "Appearance": "চেহারা", + "Hours, Availability & Other configs": "ঘন্টা, উপলভ্যতা এবং অন্যান্য কনফিগারেশন", + "There is no brand": "কোন ব্র্যান্ড নেই", + "There is no integration in this channel.": "এই চ্যানেলে কোনও সংহতকরণ নেই।", + "Template markup": "টেমপ্লেট মার্কআপ", + "Use html template here": "এখানে এইচটিএমএল টেমপ্লেট ব্যবহার করুন", + "Choose your email template type": "আপনার ইমেল টেম্পলেট প্রকার চয়ন করুন", + "Email signatures": "ইমেল স্বাক্ষর", + "Personal Settings": "ব্যাক্তিগত সেটিংস", + "Account Settings": "অ্যাকাউন্ট সেটিংস", + "Profile": "প্রোফাইল", + "Get notification by email": "ইমেল মাধ্যমে বিজ্ঞপ্তি পান", + "Admin": "অ্যাডমিন", + "Contributor": "অংশদাতা", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "আমরা আপনাকে আন্তরিকভাবে স্বাগত জানাই এবং আমাদের সাথে দীর্ঘমেয়াদী স্বাস্থ্যকর কর্মসংস্থান করার প্রত্যাশায়।", + "Hi, any questions?": "হাই, কোন প্রশ্ন?", + "1 hour ago": "1 ঘন্টা আগে", + "We need your help!": "আমাদের আপনার সাহায্য দরকার!", + "6 minutes ago": "6 মিনিট আগে", + "Write a reply ...": "একটি প্রতিউত্তর লেখ ...", + "App": "অ্যাপ", + "From email": "ইমেল থেকে", + "User email title": "ব্যবহারকারীর ইমেল শিরোনাম", + "User email content": "ব্যবহারকারীর ইমেল সামগ্রী", + "Admin emails": "প্রশাসন ইমেল", + "Admin email title": "প্রশাসন ইমেল শিরোনাম", + "Admin email content": "প্রশাসনিক ইমেল সামগ্রী", + "Redirect url": "পুনর্নির্দেশ url", + "On success": "সাফল্যের উপর", + "Load": "ভার", + "Success": "সাফল্য", + "Thank content": "কন্টেন্ট ধন্যবাদ", + "Choose a custom color": "একটি কাস্টম রঙ চয়ন করুন", + "Choose a wallpaper": "একটি ওয়ালপেপার চয়ন করুন", + "Choose a logo": "একটি লোগো চয়ন করুন", + "Visible online to visitor or customer": "দর্শনার্থী বা গ্রাহকের কাছে অনলাইনে দৃশ্যমান", + "Online messaging": "অনলাইন বার্তা", + "Welcome message": "স্বাগত বার্তা", + "Offline messaging": "অফলাইন বার্তা পাঠানো", + "Away message": "দূরে বার্তা", + "Thank you message": "ধন্যবাদ বার্তা", + "Hours & Availability": "ঘন্টা এবং উপলভ্যতা", + "Turn online/offline manually": "ম্যানুয়ালি অনলাইন / অফলাইন চালু করুন", + "Set to follow your schedule": "আপনার সময়সূচী অনুসরণ করতে সেট করুন", + "Other configs": "অন্যান্য কনফিগারেশন", + "Notify customer": "গ্রাহককে অবহিত করুন", + "Online hours": "অনলাইন ঘন্টা", + "Add another time": "অন্য সময় যুক্ত করুন", + "Time zone": "সময় অঞ্চল", + "Messenger": "বার্তাবহ", + "Knowledge base": "জ্ঞানভিত্তিক", + "Notification": "প্রজ্ঞাপন", + "Notifications": "বিজ্ঞপ্তিগুলি", + "Show unread": "অপঠিত দেখান", + "Unread": "অপঠিত", + "Recent": "সাম্প্রতিক", + "Mark all as read": "সবগুলো পঠিত বলে সনাক্ত কর", + "Email Appearance": "ইমেল উপস্থিতি", + "Team Members": "দলের সদস্যরা", + "Account default": "অ্যাকাউন্ট ডিফল্ট", + "Team members": "দলের সদস্যরা", + "Full name": "পুরো নাম", + "Leads": "পপ আপস", + "Email Signature": "ইমেইল স্বাক্ষর", + "Response Template": "প্রতিক্রিয়া টেম্পলেট", + "Email Template": "ইমেল টেম্পলেট", + "Response templates": "প্রতিক্রিয়া টেম্পলেট", + "Email templates": "ইমেল টেম্পলেট", + "Brand Name": "পরিচিতিমুলক নাম", + "Current template": "বর্তমান টেম্পলেট", + "Created at": "এ নির্মিত", + "Manage Fields": "ক্ষেত্রগুলি পরিচালনা করুন", + "Duplicate": "প্রতিলিপি", + "Code": "কোড", + "Profile settings": "প্রোফাইল সেটিংস", + "Change Password": "পাসওয়ার্ড পরিবর্তন করুন", + "Signatures are only included in response emails.": "স্বাক্ষরগুলি কেবল প্রতিক্রিয়া ইমেলের অন্তর্ভুক্ত থাকে।", + "Signature template": "স্বাক্ষর টেম্পলেট", + "You can use Markdown to format your signature.": "আপনি আপনার স্বাক্ষর ফর্ম্যাট করতে মার্কডাউন ব্যবহার করতে পারেন।", + "Password": "পাসওয়ার্ড", + "Password confirmation": "পাসওয়ার্ড নিশ্চিতকরণ", + "Choose the channels": "চ্যানেলগুলি চয়ন করুন", + "Simple": "সহজ", + "Custom": "প্রথা", + "Create a new Company": "একটি নতুন সংস্থা তৈরি করুন", + "New Company": "নতুন সংস্থা", + "Edit name": "নাম সম্পাদনা কর", + "Customer": "ক্রেতা", + "Add tag": "ট্যাগ যুক্ত করুন", + "Company": "প্রতিষ্ঠান", + "New message ": "নতুন বার্তা", + "There aren’t any activities at the moment.": "এই মুহূর্তে কোনও ক্রিয়াকলাপ নেই।", + "This item is required": "এই আইটেমটি প্রয়োজনীয়", + "Manage fields": "ক্ষেত্রগুলি পরিচালনা করুন", + "Add integrations ": "ইন্টিগ্রেশন যুক্ত করুন", + "Form": "ফর্ম", + "Create a new Customer": "একটি নতুন গ্রাহক তৈরি করুন", + "New Customer": "নতুন গ্রাহক", + "Segments": "বিভাগগুলি", + "Add a condition": "একটি শর্ত যুক্ত করুন", + "Open": "খোলা", + "Choose channel": "চ্যানেল চয়ন করুন", + "Who is this message for?": "এই বার্তাটি কার পক্ষে?", + "Compose your message": "আপনার বার্তা রচনা করুন", + "No items added": "কোনও আইটেম যুক্ত করা হয়নি", + "Submit": "জমা দিন", + "Next": "পরবর্তী", + "Save & Draft": "খসড়া সংরক্ষণ", + "Save & Live": "সংরক্ষণ এবং লাইভ", + "From:": "থেকে:", + "Pages": "পেজ", + "Links": "লিংক", + "Enter your password to Confirm": "নিশ্চিত করার জন্য আপনার পাসওয়ার্ড লিখুন", + "Number of visits": "দর্শন সংখ্যা", + "Written By": "লিখেছেন", + "Icon": "আইকন", + "draft": "খসড়া", + "Twitter Username": "টুইটার ব্যবহারকারীর নাম", + "LinkedIn": "লিঙ্কডইন", + "Youtube": "ইউটিউব", + "Github": "GitHub", + "Edit response": "প্রতিক্রিয়া সম্পাদনা করুন", + "To send your message press Enter and Shift + Enter to add a new line": "আপনার বার্তা প্রেরণের জন্য একটি নতুন লাইন যুক্ত করতে এন্টার এবং শিফট + এন্টার টিপুন", + "To send your note press Enter and Shift + Enter to add a new line": "আপনার নোটটি প্রেরণের জন্য একটি নতুন লাইন যুক্ত করতে এন্টার এবং শিফট + এন্টার টিপুন", + "Please enter an unit price. It should be a number": "দয়া করে একটি ইউনিটের দাম লিখুন। এটি একটি সংখ্যা হওয়া উচিত", + "Type to search": "অনুসন্ধান করতে টাইপ করুন", + "Members": "সদস্য", + "Choose integrations": "একীকরণ চয়ন করুন", + "Choose brands": "ব্র্যান্ড চয়ন করুন", + "Select a date": "একটি তারিখ নির্বাচন করুন", + "Click to select a date": "একটি তারিখ নির্বাচন করতে ক্লিক করুন", + "Choose users": "ব্যবহারকারীদের চয়ন করুন", + "Select Brand": "ব্র্যান্ড নির্বাচন করুন", + "Write here Welcome message.": "এখানে স্বাগতম বার্তা লিখুন।", + "Write here Away message.": "দূরে বার্তা লিখুন।", + "Write here Thank you message.": "এখানে লিখুন ধন্যবাদ বার্তা।", + "Select app": "অ্যাপ্লিকেশন নির্বাচন করুন", + "Enter new password": "নতুন পাসওয়ার্ড লিখুন", + "Choose channels": "চ্যানেলগুলি চয়ন করুন", + "Select": "নির্বাচন করা", + "select": "নির্বাচন করা", + "Choose members": "সদস্যদের চয়ন করুন", + "Search": "অনুসন্ধান করুন", + "your@email.com": "your@email.com", + "password": "পাসওয়ার্ড", + "registered@email.com": "registered@email.com", + "new password": "নতুন পাসওয়ার্ড", + "Start typing to leave a note": "একটি নোট রেখে টাইপ করা শুরু করুন", + "Re-type password": "পুনরায় টাইপ করুন পাসওয়ার্ড", + "Name:": "নাম:", + "Size:": "আকার:", + "Website:": "ওয়েবসাইট:", + "Industry:": "শিল্প:", + "Plan:": "পরিকল্পনা:", + "There arent't any groups and fields": "কোনও গ্রুপ এবং ক্ষেত্র নেই", + "Please add property Group first": "প্রথমে সম্পত্তি গ্রুপ যুক্ত করুন", + "Add group": "গ্রুপ যুক্ত করুন", + "Add Property": "সম্পত্তি যুক্ত করুন", + "Add Group & Field ": "গ্রুপ ও ফিল্ড যুক্ত করুন", + "Add Group": "গ্রুপ যুক্ত করুন", + "Edit Property": "সম্পত্তি সম্পাদনা করুন", + "Group:": "গ্রুপ:", + "There arent't any fields in this group": "এই গ্রুপে কোনও ক্ষেত্র নেই", + "Customer Properties": "গ্রাহক সম্পত্তি", + "Company Properties": "কোম্পানির সম্পত্তি", + "Add an option": "একটি বিকল্প যুক্ত করুন", + "Copy to clipboard": "ক্লিপবোর্ডে অনুলিপি করুন", + "Go to home page": "হোমপেজে যান", + "Assign to": "ধার্য", + "Remove assignee": "Assignee সরান", + "Account settings": "অ্যাকাউন্ট সেটিংস", + "General Settings": "সাধারণ সেটিংস", + "Integration Settings": "সংহতকরণ সেটিংস", + "Personal settings": "ব্যাক্তিগত সেটিংস", + "Add category": "বিভাগ যুক্ত করুন", + "Filter": "ছাঁকনি", + "Live": "লাইভ দেখান", + "Draft": "খসড়া", + "Paused": "বিরাম দেওয়া", + "Your messages": "আপনার বার্তা", + "Delivered inside your app Reach active users": "আপনার অ্যাপ্লিকেশন ভিতরে বিতরণ সক্রিয় ব্যবহারকারীদের পৌঁছান", + "Delivered to a user s email inbox Customize with your own templates": "ব্যবহারকারীর ইমেল ইনবক্সে বিতরণ আপনার নিজস্ব টেমপ্লেটগুলি কাস্টমাইজ করুন", + "email": "ই-মেইল", + "Create segment": "বিভাগ তৈরি করুন", + "customers": "গ্রাহকদের", + "has any value": "কোন মান আছে", + "is unknown": "অজানা", + "is not": "এটি না", + "is": "হয়", + "Less than": "এর চেয়ে কম", + "City": "শহর", + "Greater than": "অপেক্ষা বৃহত্তর", + "Country": "দেশ", + "Current page url": "বর্তমান পৃষ্ঠার url", + "Browser language": "ব্রাউজারের ভাষা", + "conversation": "কথোপকথন", + "engageMessage": "engageMessage", + "customer": "ক্রেতা", + "company": "প্রতিষ্ঠান", + "starts with": "সুরু কর", + "ends with": "দিয়ে শেষ হয়", + "contains": "রয়েছে", + "does not contain": "থাকে না", + "Basic Info": "মৌলিক তথ্য", + "Add Phone": "ফোন যুক্ত করুন", + "Add Email": "ইমেল যুক্ত করুন", + "Choose your tags": "আপনার ট্যাগ চয়ন করুন", + "Manage tags": "ট্যাগ পরিচালনা করুন", + "Edit Profile": "জীবন বৃত্তান্ত সম্পাদনা", + "Sign out": "সাইন আউট", + "Last Updated By": "সর্বশেষ আপডেট করেছেন", + "There is no channel": "কোনও চ্যানেল নেই", + "Facebook page": "ফেসবুক পাতা", + "plan": "পরিকল্পনা", + "Edit segment": "বিভাগটি সম্পাদনা করুন", + "New message": "নতুন বার্তা", + "Message": "বার্তা", + "Merge Customers": "গ্রাহকদের একত্রিত করুন", + "Assign": "বরাদ্দ", + "There is no message.": "কোন বার্তা নেই।", + "per page": "প্রতি পৃষ্ঠা", + "[view]": "[দেখুন]", + "Go to twitter": "টুইটারে যান", + "Build": "বিল্ড", + "`s integration": "এর একীকরণ", + "Created": "নির্মিত", + "Email templates:": "ইমেল টেমপ্লেট:", + "Content:": "বিষয়বস্তু:", + "Response Templates": "প্রতিক্রিয়া টেমপ্লেট", + "Merge Companies": "সংস্থাগুলি মার্জ করুন", + "Response template": "প্রতিক্রিয়া টেম্পলেট", + "Attach file": "ফাইল সংযুক্ত", + "Upload": "আপলোড", + "ShoutBox": "shoutbox", + "Popup": "পপআপ", + "Embedded": "এমবেডেড", + "Choose a flow type": "একটি প্রবাহ প্রকার চয়ন করুন", + "CallOut": "কলআউট", + "Callout title": "কলআউট শিরোনাম", + "Callout body": "কলআউট বডি", + "Callout button text": "কলআউট বোতাম পাঠ্য", + "Skip callOut": "কলআউট ছাড়ুন", + "Form button text": "ফর্ম বোতাম পাঠ্য", + "Theme color": "থিমের রঙ", + "Featured image": "বৈশিষ্ট্যযুক্ত ইমেজ", + "Full Preview": "সম্পূর্ণ পূর্বরূপ", + "Try some of these colors:": "এর মধ্যে কয়েকটি রঙ ব্যবহার করে দেখুন:", + "Included fields": "অন্তর্ভুক্ত ক্ষেত্র", + "Deal": "বিক্রয় পাইপলাইন", + "Deals": "বিক্রয় পাইপলাইন", + "New Product & Service": "নতুন পণ্য ও পরিষেবা", + "No product or services": "কোনও পণ্য বা পরিষেবা নেই", + "UOM": "UOM", + "Quantity": "পরিমাণ", + "Unit price": "একক দাম", + "Discount": "ডিসকাউন্ট", + "Tax": "কর", + "Ticket": "টিকেট", + "Task": "কার্য", + "Select company": "সংস্থা নির্বাচন করুন", + "Select customer": "গ্রাহক নির্বাচন করুন", + "Note": "বিঃদ্রঃ", + "Assigned to": "নির্ধারিত", + "Move": "পদক্ষেপ", + "Move deal": "ডিল সরান", + "Copy": "কপি", + "Close date": "বন্ধ তারিখ", + "Choose product & service": "পণ্য এবং পরিষেবা চয়ন করুন", + "Select product & service": "পণ্য এবং পরিষেবা নির্বাচন করুন", + "Please, select a close date": "দয়া করে একটি নিকট তারিখ নির্বাচন করুন", + "Create a new Product": "একটি নতুন পণ্য তৈরি করুন", + "New Product": "নতুন পণ্য", + "SKU": "করা SKU", + "Choose a company": "একটি সংস্থা চয়ন করুন", + "Choose a customer": "একটি গ্রাহক চয়ন করুন", + "Choose a board": "একটি বোর্ড চয়ন করুন", + "Choose a pipeline": "একটি পাইপলাইন চয়ন করুন", + "Manage Board & Pipeline": "বোর্ড এবং পাইপলাইন পরিচালনা করুন", + "Choose a stage": "একটি মঞ্চ চয়ন করুন", + "Deal Settings": "বিক্রয় পাইপলাইন সেটিংস", + "Ticket Settings": "টিকিটের সেটিংস", + "Task Settings": "কার্য সেটিংস", + "Boards & Pipelines": "বোর্ড এবং পাইপলাইন", + "Product & Service": "পণ্য ও পরিষেবা", + "There is no pipeline in this board.": "এই বোর্ডে কোনও পাইপলাইন নেই।", + "There is no board": "বোর্ড নেই", + "New Board": "নতুন বোর্ড", + "Add pipeline": "পাইপলাইন যুক্ত করুন", + "Create one": "একটি তৈরী কর", + "Edit pipeline": "পাইপলাইন সম্পাদনা করুন", + "Add stage": "মঞ্চ যুক্ত করুন", + "Board": "তক্তা", + "Pipeline": "পাইপলাইন", + "Stage": "পর্যায়", + "Stage name": "মঞ্চের নাম", + "Add a deal": "একটি চুক্তি যুক্ত করুন", + "Add a task": "একটি কাজ যোগ করুন", + "Add a ticket": "একটি টিকিট যুক্ত করুন", + "Priority": "অগ্রাধিকার", + "Critical": "সংকটপূর্ণ", + "High": "উচ্চ", + "Normal": "সাধারণ", + "Low": "কম", + "Attachments": "সংযুক্তিসমূহ", + "Source": "সূত্র", + "Select a source": "একটি উত্স নির্বাচন করুন", + "Upload an attachment": "একটি সংযুক্তি আপলোড করুন", + "Description": "বিবরণ", + "Select a priority": "একটি অগ্রাধিকার নির্বাচন করুন", + "Edit deal": "সম্পাদনা চুক্তি", + "Edit task": "সম্পাদনা কার্য", + "Edit ticket": "টিকিট সম্পাদনা করুন", + "Add Product / Service": "পণ্য / পরিষেবা যুক্ত করুন", + "Reply tweet": "প্রত্যুত্তর", + "Tweet": "কিচ্কিচ্", + "Details": "বিস্তারিত", + "View Profile": "প্রোফাইল দেখুন", + "Empty Notes": "খালি নোট", + "Mini-resume": "মিনি-সারসংকলন", + "You cannot update this property": "আপনি এই সম্পত্তি আপডেট করতে পারবেন না", + "Desktop": "ডেস্কটপ", + "Mobile": "মুঠোফোন", + "Tablet": "ট্যাবলেট", + "Amount": "পরিমাণ", + "Owner": "মালিক", + "Department": "বিভাগ", + "Lead Status": "পপ আপসের স্থিতি", + "Lifecycle State": "জীবনচক্র রাজ্য", + "Has Authority": "কর্তৃপক্ষ আছে", + "Do not disturb": "বিরক্ত করবেন না", + "Parent Company": "মূল কোম্পানি", + "Business Type": "ব্যবসার ধরণ", + "Employees count": "কর্মী গণনা", + "Yes": "হ্যাঁ", + "No": "না", + "Copied": "অনুলিপি করা", + "General": "সাধারণ", + "Currency": "মুদ্রা", + "Unit of measurement": "পরিমাপের একক", + "Create another board": "অন্য একটি বোর্ড তৈরি করুন", + "No pipeline": "পাইপলাইন নেই", + "No stage": "কোনও মঞ্চ নেই", + "No deal": "কোন চুক্তি নেই", + "Background": "পটভূমি", + "Choose": "পছন্দ করা", + "Successfully saved.": "সফলভাবে সংরক্ষিত.", + "Successfully moved.": "সাফল্যের সাথে সরানো হয়েছে।", + "Successfully selected.": "সফলভাবে নির্বাচিত।", + "Body description here": "শারীরিক বিবরণ এখানে", + "Thank you.": "ধন্যবাদ.", + "Choose a brand": "একটি ব্র্যান্ড চয়ন করুন", + "Write a title": "একটি শিরোনাম লিখুন", + "Contact": "যোগাযোগ", + "Created by": "দ্বারা সৃষ্টি", + "Manage": "পরিচালনা করা", + "Dropdown": "ড্রপডাউন", + "Slide-in Left": "স্লাইড-ইন বাম", + "Slide-in Right": "স্লাইড-ইন ডান", + "Enter name": "নাম লিখুন", + "Delivered": "নিষ্কৃত", + "Clicked": "ক্লিক করা", + "Complaint": "অভিযোগ", + "Bounce": "বড়াই", + "Rendering Failure": "ব্যর্থতা রেন্ডারিং", + "Rejected": "প্রত্যাখ্যাত", + "Action": "কর্ম", + "Please select one to merge": "মার্জ করতে দয়া করে একটি নির্বাচন করুন", + "Filter by date": "তারিখ অনুসারে ফিল্টার", + "Total conversations": "মোট কথোপকথন", + "Filter by form": "ফর্ম দ্বারা ফিল্টার", + "Supporters": "সমর্থকরা", + "Import histories": "ইতিহাস আমদানি করুন", + "Imported Date": "আমদানির তারিখ", + "Imported User": "আমদানিকৃত ব্যবহারকারী", + "Export customers": "রফতানি গ্রাহকরা", + "Import customers": "আমদানি গ্রাহকরা", + "Export companies": "রপ্তানি সংস্থা", + "Import companies": "আমদানি ও রপ্তানি", + "All customers imported successfully": "সমস্ত গ্রাহক সফলভাবে আমদানি করেছেন", + "There aren't any imports": "কোনও আমদানি নেই", + "Successfully Removed all customers": "সফলভাবে সমস্ত গ্রাহক সরানো হয়েছে", + "You can only import max 600 at a time": "আপনি একবারে সর্বোচ্চ 600 আমদানি করতে পারবেন", + "Invalid import type": "অবৈধ আমদানির ধরণ", + "Last updated": "সর্বশেষ সংষ্করণ", + "Filter by lead status": "পপ আপস স্থিতি দ্বারা ফিল্টার", + "No lead status chosen": "কোনও সীসা স্থিতি নির্বাচিত হয়নি", + "Schedule:": "সূচি:", + "Every Day": "প্রতিদিন", + "Every Month": "প্রতি মাসে", + "Every Year": "প্রত্যেক বছর", + "Every Monday": "প্রতি সোমবার", + "Every Tuesday": "প্রত্যেক মঙ্গলবার", + "Every Wednesday": "প্রত্যেক বুধবার", + "Every Thursday": "প্রতি বৃহস্পতি বার", + "Every Friday": "প্রতি শুক্রবার", + "Every Saturday": "প্রতি শনিবার", + "Every Sunday": "প্রতি রবিবার", + "Choose a schedule day": "একটি তফসিল দিন চয়ন করুন", + "Choose a schedule time": "একটি সময়সূচী সময় চয়ন করুন", + "Won": "ওঁন", + "Lost": "নিখোঁজ", + "App store": "অ্যাপ স্টোর", + "App store menu": "অ্যাপ স্টোর মেনু", + "In Progress": "চলমান", + "It`s size exceeds the limit 10mb": "এর আকার 10 এমবি সীমা ছাড়িয়েছে", + "Congrats! Your email sent successfully!": "অভিনন্দন! আপনার ইমেল সফলভাবে প্রেরণ!", + "Works with messenger": "মেসেঞ্জারের সাথে কাজ করে", + "Knowledge base topic": "জ্ঞান বেস বিষয়", + "Package version": "প্যাকেজ সংস্করণ", + "Branch name": "শাখার নাম", + "Abbreviated": "সংক্ষিপ্ত", + "User": "ব্যবহারকারী", + "Recent conversations": "সাম্প্রতিক কথোপকথন", + "Start new conversation": "নতুন কথোপকথন শুরু করুন", + "Talk with support staff": "সমর্থন কর্মীদের সাথে কথা বলুন", + "Send a message": "একটি বার্তা পাঠান", + "Volume Report By Customer": "গ্রাহক দ্বারা ভলিউম রিপোর্ট", + "Export Report": "এক্সপোর্ট রিপোর্ট", + "We`re ready to help you.": "আমরা আপনাকে সাহায্য করতে প্রস্তুত।", + "Please choose a product": "দয়া করে একটি পণ্য চয়ন করুন", + "Please choose a currency": "একটি মুদ্রা চয়ন করুন", + "No board": "বোর্ড নেই", + "Empty": "খালি", + "There is no account.": "কোনও হিসাব নেই।", + "There is no tag.": "কোনও ট্যাগ নেই।", + "Skip for now": "যথোপযুক্ত সৃষ্টিকর্তা", + "Go to Inbox": "ইনবক্সে যান", + "Messenger Language": "ম্যাসেঞ্জার ল্যাঙ্গুয়েজ", + "Messenger name": "ম্যাসেঞ্জারের নাম", + "Skip": "এড়িয়ে", + "Finish": "শেষ", + "Show": "প্রদর্শনী", + "Hide": "লুকান", + "Previous": "আগে", + "Users": "ব্যবহারকারীরা", + "users": "ব্যবহারকারীদের", + "brands": "ব্রান্ডের", + "messengers": "রাসূলগণের", + "channels": "চ্যানেল", + "Emails": "ইমেইল", + "Messengers": "রসূলগণ", + "You already have": "যদি আপনি ইতিমধ্যেই আছে", + "There is another": "আর একটি আছে", + "Let's create your brand": "আসুন আপনার ব্র্যান্ডটি তৈরি করুন", + "Invite users": "ব্যবহারকারীদের আমন্ত্রণ জানান", + "Let's grow your team": "আসুন আপনার দল বাড়ানো যাক", + "Invite": "আমন্ত্রণ করা", + "Let's start": "চল শুরু করি", + "Start messaging now!": "এখনই মেসেজিং শুরু করুন!", + "Create channel": "চ্যানেল তৈরি করুন", + "Get started on your channel": "আপনার চ্যানেলে শুরু করুন", + "Create your first messenger": "আপনার প্রথম ম্যাসেঞ্জার তৈরি করুন", + "Welcome": "স্বাগত", + "Nothing inserted": "কিছুই .োকানো হয়নি", + "Empty emails": "খালি ইমেলগুলি", + "Initial setup": "প্রাথমিক সেটআপ", + "Add another": "অন্য একটি যোগ করুন", + "Don't show again": "আবার দেখাবেন না", + "No other pipeline": "অন্য কোনও পাইপলাইন নেই", + "No other boards": "অন্য কোনও বোর্ড নেই", + "I'm ready to get started": "আমি শুরু করতে প্রস্তুত", + "Welcome paragraph": "আমরা আপনাকে পেয়ে খুব খুশি। আপনাকে সেট আপ করতে কিছুক্ষণ সময় নিই", + "Get notified and notify others to keep everything up to date": "সবকিছু আপ টু ডেট রাখার জন্য বিজ্ঞাপিত হন এবং অন্যকে অবহিত করুন", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "আপনার দলটি যদি আপনি সাইটে প্রেরিত বার্তা না পেয়ে থাকে তবে আমরা ইমেলের মাধ্যমে তাদের কাছে এটি পাঠাতে পারি", + "Send an email and notify members that they've been invited!": "একটি ইমেল প্রেরণ করুন এবং সদস্যদের জানান যে তারা আমন্ত্রিত হয়েছে!", + "January": "জানুয়ারী", + "February": "ফেব্রুয়ারি", + "March": "মার্চ", + "April": "এপ্রিল", + "May": "মে", + "June": "জুন", + "July": "জুলাই", + "August": "অগাস্ট", + "September": "সেপ্টেম্বর", + "October": "অক্টোবর", + "November": "নভেম্বর", + "December": "ডিসেম্বর", + "Today": "আজ", + "Sales": "বিক্রয়", + "Monthly view": "মাসিক ভিউ", + "Filter by": "দ্বারা ফিল্টার করুন", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "একটি ব্র্যান্ড তৈরি করা এবং চ্যানেলগুলি যুক্ত করে আপনি আপনার গ্রাহকদের প্রয়োজনের আরও বিশ্লেষণ করতে এবং তাদের সমস্যাগুলি সমাধান করতে সহায়তা করতে পারবেন", + "Grow and add users to your team! Assign, designate and let them do what they do best": "আপনার দলে ব্যবহারকারীদের বাড়ান এবং যুক্ত করুন! বরাদ্দ করুন, মনোনীত করুন এবং যা তারা সবচেয়ে ভাল করেন তা করতে দিন", + "Stay up to date with every single customer feedback and create more meaningful conversations": "প্রতিটি একক গ্রাহকের প্রতিক্রিয়া সহ আপডেট থাকুন এবং আরও অর্থবহ কথোপকথন তৈরি করুন", + "Create brand channels that are specifically categorized by type and activity": "প্রকার এবং ক্রিয়াকলাপ দ্বারা বিশেষত শ্রেণিবদ্ধ করা ব্র্যান্ড চ্যানেলগুলি তৈরি করুন", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "এখানে একটি লিড যুক্ত করুন এবং এটি আপনার ম্যাসেঞ্জার উইজেটে দেখুন! আপনার ইনবক্সে সীসা দেখতে, দয়া করে নিশ্চিত করুন এটি আপনার চ্যানেলে যুক্ত হয়েছে।", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "আপনি আমাদের অনেক ম্যাসেঞ্জার ইন্টিগ্রেশন থেকে চয়ন করতে পারেন এবং আপনার জ্ঞান ভিত্তিতে যোগ করতে পারেন। জ্ঞান বেসটি আপনার ম্যাসেঞ্জার উইজেটের ট্যাবে উপস্থিত হবে। এটি করতে, দয়া করে তৈরি করুন এবং আপনার জ্ঞান ভিত্তিতে যুক্ত করুন।", + "An email signature is an opportunity to share information that helps build recognition and trust.": "একটি ইমেল স্বাক্ষর এমন একটি তথ্য শেয়ার করার একটি সুযোগ যা স্বীকৃতি এবং বিশ্বাস তৈরি করতে সহায়তা করে।", + "Let's start taking care of your customers": "আসুন আপনার গ্রাহকদের যত্ন নেওয়া শুরু করুন", + "Add in your first company!": "আপনার প্রথম সংস্থায় যোগ করুন!", + "Choose from our many integrations and add to your channel": "আমাদের অনেক সংহতকরণ থেকে চয়ন করুন এবং আপনার চ্যানেলে যুক্ত করুন", + "Let's get you messaging away!": "আসুন আপনাকে মেসেজিং সরিয়ে নিই!", + "Whoops! No messages here but you can always start": "উপস! এখানে কোনও বার্তা নেই তবে আপনি সর্বদা শুরু করতে পারেন", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "নিবন্ধগুলি আপনার গ্রাহকদের যে কোনও সমস্যার মুখোমুখি হতে পারে। জ্ঞান নিবন্ধগুলির প্রকারের মধ্যে সাধারণ সমস্যাগুলির সমাধান, পণ্য বা বৈশিষ্ট্য ডকুমেন্টেশন, এফএকিউ এবং আরও অনেক কিছুর সমাধান অন্তর্ভুক্ত থাকতে পারে।", + "Oops! No data here": "ওহো! এখানে কোন তথ্য নেই", + "Start adding integrations now!": "এখনই সংহত করা শুরু করুন!", + "Add an integration in this Brand": "এই ব্র্যান্ডে একটি সংহতকরণ যুক্ত করুন", + "Oh dear! You have no imports": "ওহে প্রিয়! আপনার কোনও আমদানি নেই", + "A strong customer engagement can help to further brand growth and loyalty": "একটি শক্তিশালী গ্রাহকের ব্যস্ততা ব্র্যান্ডের বৃদ্ধি এবং আনুগত্যকে আরও সহায়তা করতে পারে", + "Get started on your pipeline": "আপনার পাইপলাইনে শুরু করুন", + "Connect to Facebook messages right from your Team Inbox": "আপনার টিম ইনবক্স থেকে সরাসরি ফেসবুক বার্তায় সংযুক্ত হন", + "Tweet back to your DMs right from your Team Inbox": "আপনার টিম ইনবক্স থেকে সরাসরি আপনার ডিএমগুলিতে টুইট করুন", + "Connect straight to your Gmail and get those emails going": "সরাসরি আপনার Gmail এ সংযুক্ত হন এবং সেই ইমেলগুলি চালিয়ে যান", + "Find your lead forms right here in your Widget": "আপনার উইজেটে সরাসরি আপনার সীসা ফর্মগুলি সন্ধান করুন", + "Get access to your Knowledge Base right in your Widget": "আপনার উইজেটে ঠিক আপনার নলেজ বেসে অ্যাক্সেস পান", + "Soon you'll be able to connect Viber straight to your Team Inbox": "শীঘ্রই আপনি ভাইবারকে সরাসরি আপনার টিম ইনবক্সে সংযুক্ত করতে সক্ষম হবেন", + "Get a hold of your Whatsapp messages through your Team Inbox": "আপনার টিম ইনবক্সের মাধ্যমে আপনার হোয়াটসঅ্যাপ বার্তাগুলি ধরে রাখুন", + "Connect with Wechat and start messaging right from your Team Inbox": "ওয়েচ্যাট এর সাথে সংযুক্ত হন এবং সরাসরি আপনার টিম ইনবক্স থেকে বার্তা প্রেরণা শুরু করুন", + "Find feedback that has been gathered from various customer engagement channels.": "বিভিন্ন গ্রাহক ব্যস্ততা চ্যানেল থেকে সংগ্রহ করা প্রতিক্রিয়া সন্ধান করুন।", + "A report on the total number of customer feedback responses given by team members.": "টিম সদস্যদের দ্বারা প্রদত্ত গ্রাহক প্রতিক্রিয়ার প্রতিক্রিয়াগুলির মোট সংখ্যার উপর একটি প্রতিবেদন।", + "The average time a team member solved a problem based on customer feedback.": "একজন টিম সদস্য গ্রাহকের মতামতের ভিত্তিতে কোনও সমস্যা সমাধানের গড় সময়।", + "You can find stats that defines the average response time by each team member.": "আপনি প্রতি দলের সদস্য দ্বারা গড় প্রতিক্রিয়া সময় সংজ্ঞায়িত পরিসংখ্যান খুঁজে পেতে পারেন।", + "Oh boy, looks like you need to get a head start on your deals": "ওহ ছেলে, দেখে মনে হচ্ছে আপনার ডিলগুলি শুরু করার দরকার আছে", + "Open segments and starting add details": "বিভাগগুলি খুলুন এবং বিশদ যুক্ত করুন", + "Now easier to find contacts according to your brand": "আপনার ব্র্যান্ড অনুসারে পরিচিতিগুলি খুঁজে পাওয়া এখন সহজ", + "Search and filter customers by form": "ফর্ম দ্বারা গ্রাহকদের অনুসন্ধান এবং ফিল্টার করুন", + "There is always a lead!": "সর্বদা একটি সীসা আছে!", + "Calendar": "পাঁজি", + "Columns": "কলাম", + "columns": "কলাম", + "Linked Accounts": "লিঙ্কযুক্ত অ্যাকাউন্ট", + "Select account": "নির্বাচন অ্যাকাউন্ট", + "Select account ...": "নির্বাচন অ্যাকাউন্ট ...", + "Add Account": "হিসাব যোগ করা", + "Remove Account": "অ্যাকাউন্ট অপসারণ", + "You can upload only image file": "আপনি কেবল .png বা .jpg চিত্র ফাইলটি আপলোড করতে পারেন", + "Permissions": "অনুমতিসমূহ", + "New permission": "নতুন অনুমতি", + "New group": "নতুন দল", + "Users groups": "ব্যবহারকারীদের গ্রুপ", + "Choose the module": "মডিউলটি চয়ন করুন", + "Choose the actions": "ক্রিয়াগুলি চয়ন করুন", + "Choose the users": "ব্যবহারকারীদের চয়ন করুন", + "Choose the groups": "গ্রুপগুলি চয়ন করুন", + "Choose groups": "গ্রুপ চয়ন করুন", + "Allow": "অনুমতি দিন", + "Invitation Status": "আমন্ত্রণের স্থিতি", + "Permission": "অনুমতি", + "data successfully imported": "ডেটা সফলভাবে আমদানি করা হয়েছে", + "Show result": "ফলাফল দেখান", + "Importing": "আমদানি হচ্ছে", + "data": "উপাত্ত", + "errors acquired": "ত্রুটি অর্জিত", + "There are": "সেখানে", + "Continue": "চালিয়ে", + "Create brand": "ব্র্যান্ড তৈরি করুন", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "আপনার প্রথম লাইভ চ্যাট এবং অ্যাপ-ইন মেসেজিং তৈরি করুন। আরও অর্থবহ ইন্টারঅ্যাকশন জন্য প্রতিটি একক গ্রাহক প্রতিক্রিয়া সঙ্গে আপ টু ডেট থাকুন।", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "একটি চ্যানেল সমস্ত ব্র্যান্ড এবং এর অ্যাপ্লিকেশনগুলিকে সমস্ত এক জায়গায় পুরো দর্শন দেয়। আপনি আপনার টিমের ইনবক্সে আগত সমস্ত বার্তাগুলি দেখতে পাচ্ছেন।", + "Hooray and Congratulations! You've completed the initial setup!": "হুর ও অভিনন্দন! আপনি প্রাথমিক সেটআপ শেষ করেছেন!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "নীচের কোডটি পেস্ট করুন before আপনি প্রতিটি পৃষ্ঠায় ট্যাগ করতে চান এরেক্স চ্যাটটি প্রদর্শিত হবে।", + "Paste the code below before the body tag on every page you want erxes lead to appear": "আপনার প্রতিটি পৃষ্ঠায় বডি ট্যাগ দেওয়ার আগে নীচের কোডটি আটকে দিন যাতে আপনি এরেক্সস লিড প্রদর্শিত হয়", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "যদি আপনার প্রবাহের ধরণটি এম্বেড করা থাকে তবে নীচে কোডটি পেস্ট করুন যে আপনি চাইলে এরেক্সস লেড হাজির হয়", + "If your flow type is popup paste the code below additionally in your button": "যদি আপনার প্রবাহের ধরণটি পপআপ হয় তবে নীচে কোডটি আপনার বোতামে পেস্ট করুন", + "Choose messengers": "ম্যাসেঞ্জার বেছে নিন", + "erxes allows you to create multiple messengers": "erxes আপনাকে একাধিক বার্তাবাহক তৈরি করতে দেয়", + "erxes allows you to create multiple brands": "erxes আপনাকে একাধিক ব্র্যান্ড তৈরি করতে দেয়", + "erxes allows you to create multiple channels": "erxes আপনাকে একাধিক চ্যানেল তৈরি করতে দেয়", + "Contacts": "যোগাযোগ", + "Create group": "গ্রুপ তৈরি করুন", + "Visitors": "দর্শকরা", + "Due in the next day": "পরের দিনেই নির্ধারিত", + "Due in the next week": "পরের সপ্তাহে", + "Due in the next month": "পরের মাসে শেষ", + "Has no close date": "কোন নিকটতম তারিখ আছে", + "Over due": "ওভার বকেয়া", + "Clear Filter": "স্বচ্ছ ছাকুনী", + "Remove this filter": "এই ফিল্টারটি সরান", + "Filtering is on": "ফিল্টারিং চলছে", + "Choose products": "পণ্য চয়ন করুন", + "Choose companies": "সংস্থা নির্বাচন করুন", + "Choose customers": "গ্রাহক চয়ন করুন", + "Choose team members": "দলের সদস্যদের চয়ন করুন", + "erxes Inc": "এরেক্স ইনক", + "Get": "পাওয়া", + "Download ios app for free on the App Store": "অ্যাপ স্টোরটিতে আইওএস অ্যাপটি বিনামূল্যে ডাউনলোড করুন।", + "Download android app for free on the Google play": "গুগল প্লেতে বিনামূল্যে অ্যান্ড্রয়েড অ্যাপ্লিকেশন ডাউনলোড করুন।", + "Please upgrade your browser to use erxes!": "এরেক্সস ব্যবহার করতে দয়া করে আপনার ব্রাউজারটি আপগ্রেড করুন!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "দুর্ভাগ্যক্রমে, আপনি এমন একটি ব্রাউজারে চলছেন যা এরکسগুলির সাথে পুরোপুরি সামঞ্জস্যপূর্ণ নয়।", + "Please use recommended version": "প্রস্তাবিত সংস্করণ দয়া করে ব্যবহার করুন", + "Messenger data": "ম্যাসেঞ্জার ডেটা", + "Customer field data": "গ্রাহক ক্ষেত্রের ডেটা", + "Others": "অন্যান্য", + "Select brand": "ব্র্যান্ড নির্বাচন করুন", + "There is no permissions in this group": "এই গোষ্ঠীতে কোনও অনুমতি নেই।", + "There is no group": "কোন গ্রুপ নেই।", + "User groups": "ব্যবহারকারী গোষ্ঠী", + "What action can do": "কী পদক্ষেপ নিতে পারে", + "Who can": "কে পারে", + "Grant permission": "অনুমতি প্রদান", + "Check if permission is allowed": "অনুমতি অনুমোদিত কিনা তা পরীক্ষা করে দেখুন", + "Then": "তারপর", + "Or": "অথবা", + "Auto message description": "লগ ইন করা ব্যবহারকারীদের তাদের ব্র্যান্ড / ট্যাগ / বিভাগের উপর ভিত্তি করে লক্ষ্যযুক্ত ইমেল এবং চ্যাট প্রেরণ করুন। আপনি কোনও ইমেল প্রেরণ বা আগাম চ্যাট করতে আপনার সময় নির্ধারণ করতে পারেন। চ্যাট ডিজাইনটি কেটে ফেলা যেতে পারে, ব্যাজ এবং পুরো বার্তাটি হতে পারে এবং এটি কোনও পাঠ্য বা ভিডিও হতে পারে।", + "Manual message description": "লগ ইন করা ব্যবহারকারীদের তাদের ব্র্যান্ড / ট্যাগ / বিভাগের উপর ভিত্তি করে লক্ষ্যযুক্ত ইমেল এবং চ্যাট প্রেরণ করুন। আপনি সংরক্ষণ বোতামটি ক্লিক করার পরে একটি ইমেল বা চ্যাট অবিলম্বে পাঠানো হবে। চ্যাট ডিজাইনটি কেটে ফেলা যেতে পারে, ব্যাজ এবং পুরো বার্তাটি হতে পারে এবং এটি কোনও পাঠ্য বা ভিডিও হতে পারে।", + "Visitor auto message description": "লগ-আউট দর্শকদের তাদের ভিজিট পৃষ্ঠা, ক্রিয়াকলাপ, তাদের আবাসের দেশ এবং শহরের ভিত্তিতে লগ-আউট দর্শকদের লক্ষ্যবস্তু চ্যাটগুলি প্রেরণ করুন। চ্যাট ডিজাইনটি কেটে ফেলা যেতে পারে, ব্যাজ এবং পুরো বার্তাটি হতে পারে এবং এটি কোনও পাঠ্য বা ভিডিও হতে পারে।", + "Required field": "প্রয়োজনীয় ক্ষেত্র!", + "Invalid email format! Please enter a valid email address": "অবৈধ ইমেল বিন্যাস! একটি বৈধ ইমেইল ঠিকানা লিখুন।", + "Invalid link": "অবৈধ লিঙ্ক!", + "Maximum length is": "সর্বোচ্চ দৈর্ঘ্য হয়", + "characters": "চরিত্র!", + "Invalid number format! Please enter a valid number": "অবৈধ সংখ্যা বিন্যাস! দয়া করে একটি বৈধ নম্বর লিখুন।", + "Insert email template to content": "সামগ্রীতে ইমেল টেমপ্লেট .োকান", + "Logs": "লগ", + "There are no logs recorded": "কোন লগ রেকর্ড করা আছে", + "Module": "মডিউল", + "Unchanged fields": "অপরিবর্তিত ক্ষেত্র", + "Changed fields": "ক্ষেত্র পরিবর্তন", + "Create": "সৃষ্টি", + "Update": "হালনাগাদ", + "Changes": "পরিবর্তনগুলি", + "Choose start date": "শুরুর তারিখটি চয়ন করুন", + "Choose end date": "শেষের তারিখটি চয়ন করুন", + "Permission denied": "অনুমতি অস্বীকৃত", + "Old data": "পুরানো তথ্য", + "New data": "নতুন তথ্য", + "Archive": "সংরক্ষাণাগার", + "NetworkError": "সংযোগ পুনরুদ্ধার করার চেষ্টা করা হচ্ছে। এখনই করা পরিবর্তনগুলি সংরক্ষণ নাও হতে পারে।", + "Email add account description question": "আপনি কি একটি ভাগ করা ইমেল অ্যাকাউন্ট সংযোগ করছেন?", + "Email add account description": "যখন আপনি কোনও ইমেলটিকে আপনার কথোপকথনের ইনবক্সে সংযুক্ত করেন, আপনি এটিকে একটি ভাগ করা অ্যাকাউন্ট হিসাবে সংযুক্ত করছেন। ভাগ করা অ্যাকাউন্টগুলিতে পাঠানো বার্তাগুলি আপনার টিমের ইনবক্সে অ্যাক্সেস থাকা প্রত্যেকে দেখতে পাবেন can", + "No connected email": "কোনও সংযুক্ত ইমেল নেই", + "Your email will be sent with Erxes email template": "আপনার ইমেল এরেক্সেস ইমেল টেম্পলেট সহ প্রেরণ করা হবে" +} diff --git a/ui/src/locales/cs.json b/ui/src/locales/cs.json new file mode 100644 index 00000000000..13f49edd97d --- /dev/null +++ b/ui/src/locales/cs.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Jsi si jistá? To nelze vrátit zpět.", + "Yes, I am": "Ano jsem", + "No, Cancel": "Ne, zrušit", + "Filter by tags": "Filtrovat podle značek", + "There is no data": "Nejsou žádná data", + "There is no data.": "Nejsou žádná data.", + "Load more": "Načíst další", + "There aren't any activities at the moment.": "Momentálně nejsou žádné aktivity.", + "Reset your password": "Obnovit heslo", + "Email me the instruction": "Pošlete mi e-mail s pokyny", + "Sign in": "Přihlásit se", + "Change password": "Změnit heslo", + "Set your new password": "Nastavte nové heslo", + "Forgot password?": "Zapomenuté heslo?", + "Photo": "Fotografie", + "Name": "název", + "Views": "Zobrazení", + "Conversion": "Konverze", + "Go to import": "Přejít na import", + "Conversion rate": "Míra konverze", + "Contacts gathered": "Kontakty byly shromážděny", + "Create lead": "Vytvořit vyskakovací okna", + "Form title": "Název formuláře", + "Related": "Příbuzný", + "Form description": "Popis formuláře", + "Position": "Pozice", + "Username": "Uživatelské jméno", + "Email": "E-mailem", + "sec": "sec", + "Twitter username": "Uživatelské jméno na Twitteru", + "Inbox": "Doručená pošta", + "Workflow": "Pracovní postup", + "Watch": "Hodinky", + "Watching": "Sledování", + "Team Inbox": "Doručená pošta týmu", + "Customers": "Zákazníci", + "Companies": "Společnosti", + "Engage": "Zapojte se", + "Insights": "Statistiky", + "Knowledge Base": "Znalostní báze", + "Settings": "Nastavení", + "Resolve": "Odhodlání", + "Send": "Poslat", + "No company": "Žádná společnost", + "No customer": "Žádný zákazník", + "Not tagged yet": "Ještě neoznačeno", + "New note": "Nová poznámka", + "Conversation": "Konverzace", + "Notes": "Poznámky", + "Activity": "Aktivita", + "Basic info": "Základní informace", + "Size": "Velikost", + "Other": "jiný", + "Industry": "Průmysl", + "Website": "webová stránka", + "Plan": "Plán", + "About": "O", + "Discard": "Zahodit", + "Save": "Uložit", + "Create response template": "Vytvořit šablonu odpovědi", + "Associate": "Spolupracovník", + "No tags": "Žádné značky", + "Add customer": "Přidat zákazníka", + "No segments": "Žádné segmenty", + "Manage Columns": "Správa sloupců", + "New customer": "Nový zákazník", + "Add company": "Přidat společnost", + "New company": "Nová společnost", + "Choose which column you see": "Vyberte sloupec, který vidíte", + "There is no engage message.": "Neexistuje žádná zpráva o zapojení.", + "Add Knowledge base": "Přidejte znalostní bázi", + "Add knowledge base.": "Přidejte znalostní základnu.", + "New Channel": "Nový kanál", + "Edit": "Upravit", + "Edit basic info": "Upravit základní informace", + "Manage integration": "Správa integrace", + "Manage Integration": "Správa integrace", + "Choose new brand": "Vyberte si novou značku", + "Edit integration": "Upravit integraci", + "Integration": "Integrace", + "Integration menu": "Integrační nabídka", + "New Brand": "Nová značka", + "Add facebook page": "Přidejte facebookovou stránku", + "Add integrations": "Přidejte integrace", + "Add messenger": "Přidat posla", + "There is no lead.": "Neexistuje žádný olovo.", + "New response template": "Nová šablona odpovědi", + "Cancel": "zrušení", + "Public": "Veřejnost", + "Private": "Soukromé", + "New email template": "Nová e-mailová šablona", + "Local publisher's email template": "Šablona e-mailu místního vydavatele", + "New user": "Nový uživatel", + "Load More": "Načíst další", + "Session count": "Počet relací", + "Last seen at": "Naposledy viděno v", + "Tags": "Značky", + "Member": "Člen", + "Remove": "Odstranit", + "No companies added yet!": "Zatím nebyly přidány žádné společnosti!", + "Merge": "Spojit", + "First Name": "Jméno", + "Last Name": "Příjmení", + "First name": "Jméno", + "Last name": "Příjmení", + "Primary Email": "Primární email", + "Phone": "Telefon", + "Is user": "Je uživatel", + "Save & New": "Uložit a nové", + "Save & Close": "Uložit a zavřít", + "Close": "Zavřít", + "Customer properties": "Vlastnosti zákazníka", + "Device properties": "Vlastnosti zařízení", + "Location": "Umístění", + "Browser": "Prohlížeč", + "Platform": "Plošina", + "IP Address": "IP adresa", + "Hostname": "Název hostitele", + "Language": "Jazyk", + "User Agent": "Uživatelský agent", + "Other properties": "Další vlastnosti", + "Facebook": "Facebook", + "Facebook profile": "facebookový profil", + "Messenger usage": "Využití messengeru", + "Status": "Postavení", + "Online": "Online", + "Offline": "Offline", + "Twitter": "Cvrlikání", + "Twitter quote": "Twitter nabídka", + "Retweet": "retweet", + "Screen name": "Přezdívka", + "Don't see the result you're looking for? ": "Nevidíte výsledek, který hledáte?", + "Merged Info": "Sloučené informace", + "E-mail": "E-mailem", + "Integrations": "Integrace", + "integration": "integrace", + "Brands": "Značky", + "Start date": "Datum zahájení", + "End date": "Datum ukončení", + "lead": "Vyskakovací okna", + "twitter": "cvrlikání", + "facebook": "Facebook", + "messenger": "posel", + "Title": "Titul", + "Brand": "Značka", + "Current Password": "Aktuální heslo", + "Current password": "Aktuální heslo", + "New Password": "nové heslo", + "Re-type Password to confirm": "Znovu zadejte heslo pro potvrzení", + "Signature": "Podpis", + "simple": "jednoduchý", + "custom": "Zvyk", + "default": "výchozí", + "default language": "základní jazyk", + "primary": "hlavní", + "Content": "Obsah", + "Save & draft": "Uložit koncept", + "Save & live": "Uložit a žít", + "Message:": "Zpráva:", + "Email template:": "E-mailová šablona:", + "Email subject:": "Předmět emailu:", + "From": "Z", + "Message type:": "Typ zprávy:", + "Sent as:": "Odesláno jako:", + "Brand:": "Značka:", + "Add rule": "Přidat pravidlo", + "Last online": "Poslední on-line", + "No Activities": "Žádné aktivity", + "There is no customer.": "Neexistuje žádný zákazník.", + "Properties": "Vlastnosti", + "Customize ": "Přizpůsobte", + "Kind": "Druh", + "All": "Všechno", + "Auto": "Auto", + "Visitor auto": "Návštěvník auto", + "Manual": "Manuál", + "Delivered to a user s email inbox": "Doručeno do e-mailové schránky uživatele", + "Customize with your own templates": "Přizpůsobte si své vlastní šablony", + "Delivered inside your app": "Dodáváno uvnitř aplikace", + "Reach active users": "Oslovte aktivní uživatele", + "Channel": "Kanál", + "Edit columns": "Upravit sloupce", + "Auto message": "Automatické zprávy", + "Manual message": "Ruční zpráva", + "Visitor auto message": "Automatická zpráva návštěvníka", + "Actions": "Akce", + "Created date": "Datum vytvoření", + "Type": "Typ", + "Failed": "Selhalo", + "Sent": "Odesláno", + "Total": "Celkový", + "Pause": "Pauza", + "Set live": "Nastavit živě", + "Sending": "Odesílání", + "Delete": "Odstranit", + "Choose segment": "Vyberte segment", + "To:": "Na:", + "Messenger kind:": "Druh zpráv:", + "Title:": "Titul", + "Channel:": "Kanál", + "No items": "Žádně věci", + "New": "Nový", + "Options:": "Možnosti:", + "Options": "Možnosti", + "Type:": "Typ:", + "Add": "Přidat", + "Validation:": "Validace", + "Date": "datum", + "Number": "Číslo", + "Text:": "Text:", + "Description:": "Popis:", + "This item is requried": "Tato položka je vyžadována", + "Preview": "Náhled", + "Column name": "Název sloupce", + "Visible": "Viditelné", + "Visibility": "Viditelnost", + "Choose person": "Vyberte osobu", + "Conversation Details": "Podrobnosti o konverzaci", + "Opened": "Otevřeno", + "Conversations": "Konverzace", + "Channels": "Kanály", + "Select all": "Vybrat vše", + "Filter by tag": "Filtrovat podle značky", + "Filter by integrations": "Filtrovat podle integrací", + "Filter by brand": "Filtrovat podle značky", + "Filter by channel": "Filtrovat podle kanálu", + "Filter by status": "Filtrovat podle stavu", + "# Channel": "# Channel", + "Unassigned": "Nepřiřazeno", + "Participating": "Účastní se", + "Resolved": "Vyřešeno", + "View more": "Ukázat více", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Zákazník je offline. Klepnutím skryjete a odešlete zprávy a obdrží je, až budou online.", + "No templates": "Žádné šablony", + "Save as template": "Uložit jako šablonu", + "Daily First Response Resolve Rate": "Denní rychlost vyřešení první reakce", + "Daily First Response Resolve Rate by Team Members": "Denní míra vyřešení první odpovědi členy týmu", + "Daily Response Close Resolve Rate by Team Members": "Denní odpověď Zavřít Uzavřít sazba členů týmu", + "Volume Report": "Zpráva o svazku", + "Feedbacks gathered through various customer engagement channels.": "Zpětná vazba získaná prostřednictvím různých kanálů pro zapojení zákazníků.", + "Response Report": "Zpráva o reakci", + "Total number of response for customer feedbacks, by each staff.": "Celkový počet odpovědí každého zákazníka na zpětnou vazbu od zákazníků.", + "Response Close Report": "Zpráva o uzavření zprávy", + "Average time of each staff solving problems that based on customer feedbacks.": "Průměrná doba každého personálu, který řeší problémy na základě zpětné vazby od zákazníků.", + "First Response Report": "Zpráva o první odpovědi", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Reakční doba na jednu zpětnou vazbu. Statistiky definují průměrnou dobu odezvy každého personálu.", + "Daily Response Close Resolve Rate": "Denní odezva uzavřít rychlost řešení", + "Daily Response Close Resolve rate by Team Members": "Denní odezva Zavřít Uzavřít sazba členy týmu", + "Response Times summary": "Shrnutí doby odezvy", + "Response Trend": "Trend odezvy", + "Punch card": "Punch karta", + "Response by team members": "Reakce členů týmu", + "Tag": "Štítek", + "Internal note": "Interní nota", + "Manage templates": "Správa šablon", + "Volume summary": "Souhrn svazku", + "Volume Trend": "Trend objemu", + "Summary": "souhrn", + "Install code": "Nainstalujte kód", + "No copyable code": "Žádný kopírovat kód", + "Manage Knowledge Base": "Správa znalostní báze", + "Add Category": "Přidat kategorii", + "Add Article": "Přidat článek", + "Customer engagement. REDEFINED.": "Zapojení zákazníků. REDEFINED.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes je AI splňuje otevřenou platformu pro zasílání zpráv pro prodej, marketing a podporu", + "404. This page is not found.": "404. Tato stránka nebyla nalezena.", + "erxes is an open-source messaging platform for customer success": "erxes je open-source platforma pro zasílání zpráv pro úspěch zákazníka", + "Notification settings": "Nastavení upozornění", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Platforma pro marketing, prodej a služby zákazníkům navržená tak, aby pomohla vašemu podnikání přilákat více angažovaných zákazníků. Nahraďte Hubspot posláním a komunitním ekosystémem.", + "Mark Page Read": "Označit stránku jako přečtenou", + "Mark All Read": "Označit vše jako přečtené", + "Coming soon": "Již brzy", + "Looks like you are all caught up": "Vypadá to, že jste všichni dohoneni", + "AI": "AI", + "See all": "Vidět vše", + "Select a field": "Vyberte pole", + "Add condition": "Přidat podmínku", + "Parent segment conditions": "Podmínky nadřazeného segmentu", + "Filter by segments": "Filtrovat podle segmentů", + "New segment": "Nový segment", + "Manage segments": "Správa segmentů", + "Users who match": "Uživatelé, kteří odpovídají", + "any": "žádný", + "all": "Všechno", + "of the below conditions": "níže uvedených podmínek", + "Sub segment of": "Dílčí segment", + "Color": "Barva", + "Filters": "Filtry", + "User(s) will recieve this message": "Uživatel (y) obdrží tuto zprávu", + "Color code": "Barevný kód", + "Engage Message": "Zapojte zprávu", + "Item counts": "Položka se počítá", + "Appearance": "Vzhled", + "Hours, Availability & Other configs": "Hodiny, dostupnost a další konfigurace", + "There is no brand": "Neexistuje žádná značka", + "There is no integration in this channel.": "V tomto kanálu není integrace.", + "Template markup": "Označení šablony", + "Use html template here": "Použijte zde html šablonu", + "Choose your email template type": "Vyberte typ vaší e-mailové šablony", + "Email signatures": "E-mailové podpisy", + "Personal Settings": "Osobní nastavení", + "Account Settings": "Nastavení účtu", + "Profile": "Profil", + "Get notification by email": "Získejte upozornění e-mailem", + "Admin": "Správce", + "Contributor": "Přispěvatel", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Srdečně Vás vítáme při výměně a těšíme se na dlouhodobě zdravé pracovní spojení s námi.", + "Hi, any questions?": "Ahoj, nějaké dotazy?", + "1 hour ago": "před 1 hodinou", + "We need your help!": "Potřebujeme tvou pomoc!", + "6 minutes ago": "Před 6 minutami", + "Write a reply ...": "Napsat odpověď ...", + "App": "Aplikace", + "From email": "Z e-mailu", + "User email title": "Název e-mailu uživatele", + "User email content": "Obsah e-mailu uživatele", + "Admin emails": "E-maily správce", + "Admin email title": "Název administrátorského e-mailu", + "Admin email content": "Obsah e-mailu pro správce", + "Redirect url": "Přesměrovat adresu URL", + "On success": "Na úspěch", + "Load": "Zatížení", + "Success": "Úspěch", + "Thank content": "Děkujeme za obsah", + "Choose a custom color": "Vyberte si vlastní barvu", + "Choose a wallpaper": "Vyberte tapetu", + "Choose a logo": "Vyberte logo", + "Visible online to visitor or customer": "Viditelné online návštěvníkovi nebo zákazníkovi", + "Online messaging": "Online zasílání zpráv", + "Welcome message": "Uvítací zpráva", + "Offline messaging": "Offline zprávy", + "Away message": "Hlášení pryč", + "Thank you message": "Děkuji", + "Hours & Availability": "Hodiny a dostupnost", + "Turn online/offline manually": "Ručně zapněte online / offline", + "Set to follow your schedule": "Nastavte podle plánu", + "Other configs": "Další konfigurace", + "Notify customer": "Informujte zákazníka", + "Online hours": "Online hodiny", + "Add another time": "Přidejte další čas", + "Time zone": "Časové pásmo", + "Messenger": "Posel", + "Knowledge base": "Znalostní báze", + "Notification": "Oznámení", + "Notifications": "Oznámení", + "Show unread": "Zobrazit nepřečtené", + "Unread": "Nepřečtený", + "Recent": "Nedávné", + "Mark all as read": "označit vše jako přečtené", + "Email Appearance": "Vzhled e-mailu", + "Team Members": "Členové týmu", + "Account default": "Výchozí účet", + "Team members": "Členové týmu", + "Full name": "Celé jméno", + "Leads": "Vyskakovací okna", + "Email Signature": "E-mailový podpis", + "Response Template": "Šablona odpovědi", + "Email Template": "Šablona e-mailu", + "Response templates": "Šablony odpovědí", + "Email templates": "E-mailové šablony", + "Brand Name": "Jméno značky", + "Current template": "Aktuální šablona", + "Created at": "Vytvořeno v", + "Manage Fields": "Správa polí", + "Duplicate": "Duplikát", + "Code": "Kód", + "Profile settings": "Nastavení profilu", + "Change Password": "Změnit heslo", + "Signatures are only included in response emails.": "Podpisy jsou zahrnuty pouze v e-mailech s odpovědí.", + "Signature template": "Podpisová šablona", + "You can use Markdown to format your signature.": "Pro formátování vašeho podpisu můžete použít Markdown.", + "Password": "Heslo", + "Password confirmation": "Potvrzení hesla", + "Choose the channels": "Vyberte kanály", + "Simple": "Jednoduchý", + "Custom": "Zvyk", + "Create a new Company": "Vytvořte novou společnost", + "New Company": "Nová společnost", + "Edit name": "Upravit název", + "Customer": "Zákazník", + "Add tag": "Přidat značku", + "Company": "Společnost", + "New message ": "Nová zpráva", + "There aren’t any activities at the moment.": "Momentálně nejsou žádné aktivity.", + "This item is required": "Tato položka je povinná", + "Manage fields": "Správa polí", + "Add integrations ": "Přidejte integrace", + "Form": "Formulář", + "Create a new Customer": "Vytvořte nového zákazníka", + "New Customer": "Nový zákazník", + "Segments": "Segmenty", + "Add a condition": "Přidejte podmínku", + "Open": "otevřeno", + "Choose channel": "Vyberte kanál", + "Who is this message for?": "Pro koho je tato zpráva určena?", + "Compose your message": "Napište svou zprávu", + "No items added": "Nebyly přidány žádné položky", + "Submit": "Předložit", + "Next": "další", + "Save & Draft": "Uložit koncept", + "Save & Live": "Uložit a žít", + "From:": "Z:", + "Pages": "Stránky", + "Links": "Odkazy", + "Enter your password to Confirm": "Zadejte heslo pro potvrzení", + "Number of visits": "Počet návštěv", + "Written By": "Napsáno", + "Icon": "Ikona", + "draft": "návrh", + "Twitter Username": "Uživatelské jméno na Twitteru", + "LinkedIn": "LinkedIn", + "Youtube": "Youtube", + "Github": "Github", + "Edit response": "Upravit odpověď", + "To send your message press Enter and Shift + Enter to add a new line": "Chcete-li odeslat zprávu, stiskněte klávesu Enter a Shift + Enter a přidejte nový řádek", + "To send your note press Enter and Shift + Enter to add a new line": "Chcete-li odeslat poznámku, stiskněte klávesu Enter a Shift + Enter a přidejte nový řádek", + "Please enter an unit price. It should be a number": "Zadejte jednotkovou cenu. Mělo by to být číslo", + "Type to search": "Zadejte hledaný text", + "Members": "Členové", + "Choose integrations": "Vyberte integraci", + "Choose brands": "Vyberte značky", + "Select a date": "Vyberte datum", + "Click to select a date": "Klepnutím vyberte datum", + "Choose users": "Vyberte uživatele", + "Select Brand": "Vyberte značku", + "Write here Welcome message.": "Zde napište uvítací zprávu.", + "Write here Away message.": "Napište sem Pryč.", + "Write here Thank you message.": "Sem napište Děkuji.", + "Select app": "Vyberte aplikaci", + "Enter new password": "Zadejte nové heslo", + "Choose channels": "Vyberte kanály", + "Select": "Vybrat", + "select": "vybrat", + "Choose members": "Vyberte členy", + "Search": "Vyhledávání", + "your@email.com": "your@email.com", + "password": "Heslo", + "registered@email.com": "registrované@email.com", + "new password": "nové heslo", + "Start typing to leave a note": "Začněte psát a zanechte poznámku", + "Re-type password": "Zadejte znovu heslo", + "Name:": "Název:", + "Size:": "Velikost:", + "Website:": "Webová stránka:", + "Industry:": "Průmysl:", + "Plan:": "Plán:", + "There arent't any groups and fields": "Nejsou žádné skupiny a pole", + "Please add property Group first": "Nejprve prosím přidejte skupinu vlastností", + "Add group": "Přidat skupinu", + "Add Property": "Přidat vlastnost", + "Add Group & Field ": "Přidat skupinu a pole", + "Add Group": "Přidat skupinu", + "Edit Property": "Upravit vlastnost", + "Group:": "Skupina:", + "There arent't any fields in this group": "V této skupině nejsou žádná pole", + "Customer Properties": "Vlastnosti zákazníka", + "Company Properties": "Vlastnosti společnosti", + "Add an option": "Přidejte možnost", + "Copy to clipboard": "Zkopírovat do schránky", + "Go to home page": "Jít na domovskou stránku", + "Assign to": "Přiřadit", + "Remove assignee": "Odstraňte postupníka", + "Account settings": "Nastavení účtu", + "General Settings": "Obecné nastavení", + "Integration Settings": "Nastavení integrace", + "Personal settings": "Osobní nastavení", + "Add category": "Přidat kategorii", + "Filter": "Filtr", + "Live": "Žít", + "Draft": "Návrh", + "Paused": "Pozastaveno", + "Your messages": "Vaše zprávy", + "Delivered inside your app Reach active users": "Doručeno uvnitř aplikace Oslovte aktivní uživatele", + "Delivered to a user s email inbox Customize with your own templates": "Doručeno do e-mailové schránky uživatele Přizpůsobte si své vlastní šablony", + "email": "e-mailem", + "Create segment": "Vytvořit segment", + "customers": "zákazníky", + "has any value": "má jakoukoli hodnotu", + "is unknown": "není znám", + "is not": "není", + "is": "je", + "Less than": "Méně než", + "City": "Město", + "Greater than": "Větší než", + "Country": "Země", + "Current page url": "Aktuální adresa URL stránky", + "Browser language": "Jazyk prohlížeče", + "conversation": "konverzace", + "engageMessage": "engMessage", + "customer": "zákazník", + "company": "společnost", + "starts with": "začíná s", + "ends with": "končí s", + "contains": "obsahuje", + "does not contain": "neobsahuje", + "Basic Info": "Základní informace", + "Add Phone": "Přidat telefon", + "Add Email": "Přidat e-mail", + "Choose your tags": "Vyberte si své značky", + "Manage tags": "Správa značek", + "Edit Profile": "Upravit profil", + "Sign out": "Odhlásit se", + "Last Updated By": "Naposledy aktualizováno uživatelem", + "There is no channel": "Neexistuje žádný kanál", + "Facebook page": "facebooková stránka", + "plan": "plán", + "Edit segment": "Upravit segment", + "New message": "Nová zpráva", + "Message": "Zpráva", + "Merge Customers": "Sloučit zákazníky", + "Assign": "Přiřadit", + "There is no message.": "Neexistuje žádná zpráva.", + "per page": "na stránku", + "[view]": "[Pohled]", + "Go to twitter": "Přejít na twitter", + "Build": "Stavět", + "`s integration": "integrace", + "Created": "Vytvořeno", + "Email templates:": "E-mailové šablony:", + "Content:": "Obsah:", + "Response Templates": "Šablony odpovědí", + "Merge Companies": "Sloučit společnosti", + "Response template": "Šablona odpovědi", + "Attach file": "Přiložit soubor", + "Upload": "nahrát", + "ShoutBox": "ShoutBox", + "Popup": "Vyskakovat", + "Embedded": "Vestavěný", + "Choose a flow type": "Vyberte typ toku", + "CallOut": "Zavolat", + "Callout title": "Název nadpisu", + "Callout body": "Popis těla", + "Callout button text": "Text tlačítka popisku", + "Skip callOut": "Přeskočit hovorOut", + "Form button text": "Text tlačítka formuláře", + "Theme color": "Barva motivu", + "Featured image": "Hlavní obrázek", + "Full Preview": "Úplný náhled", + "Try some of these colors:": "Vyzkoušejte některou z těchto barev:", + "Included fields": "Zahrnutá pole", + "Deal": "Potrubí prodeje", + "Deals": "Potrubí prodeje", + "New Product & Service": "Nový produkt a služba", + "No product or services": "Žádný produkt nebo služby", + "UOM": "UOM", + "Quantity": "Množství", + "Unit price": "Jednotková cena", + "Discount": "Sleva", + "Tax": "Daň", + "Ticket": "Lístek", + "Task": "Úkol", + "Select company": "Vyberte společnost", + "Select customer": "Vyberte zákazníka", + "Note": "Poznámka", + "Assigned to": "Přiřazen", + "Move": "Hýbat se", + "Move deal": "Přesunout obchod", + "Copy": "kopírovat", + "Close date": "Datum uzavření", + "Choose product & service": "Vyberte produkt a službu", + "Select product & service": "Vyberte produkt a službu", + "Please, select a close date": "Vyberte datum uzavření", + "Create a new Product": "Vytvořte nový produkt", + "New Product": "Nový výrobek", + "SKU": "SKU", + "Choose a company": "Vyberte společnost", + "Choose a customer": "Vyberte si zákazníka", + "Choose a board": "Vyberte si desku", + "Choose a pipeline": "Vyberte potrubí", + "Manage Board & Pipeline": "Spravujte rady a potrubí", + "Choose a stage": "Vyberte scénu", + "Deal Settings": "Nastavení prodejního potrubí", + "Ticket Settings": "Nastavení vstupenek", + "Task Settings": "Nastavení úlohy", + "Boards & Pipelines": "Tabule a potrubí", + "Product & Service": "Produkt a služba", + "There is no pipeline in this board.": "Na této desce není potrubí.", + "There is no board": "Neexistuje žádná deska", + "New Board": "Nová deska", + "Add pipeline": "Přidat potrubí", + "Create one": "Vytvořit jeden", + "Edit pipeline": "Upravit potrubí", + "Add stage": "Přidat fázi", + "Board": "Prkno", + "Pipeline": "Potrubí", + "Stage": "Etapa", + "Stage name": "Pseudonym", + "Add a deal": "Přidat dohodu", + "Add a task": "Přidejte úkol", + "Add a ticket": "Přidejte lístek", + "Priority": "Přednost", + "Critical": "Kritický", + "High": "Vysoký", + "Normal": "Normální", + "Low": "Nízký", + "Attachments": "Přílohy", + "Source": "Zdroj", + "Select a source": "Vyberte zdroj", + "Upload an attachment": "Nahrajte přílohu", + "Description": "Popis", + "Select a priority": "Vyberte prioritu", + "Edit deal": "Upravit obchod", + "Edit task": "Úkol upravit", + "Edit ticket": "Upravit lístek", + "Add Product / Service": "Přidat produkt / službu", + "Reply tweet": "Odpovědět tweet", + "Tweet": "tweet", + "Details": "Podrobnosti", + "View Profile": "Prohlédnout profil", + "Empty Notes": "Prázdné poznámky", + "Mini-resume": "Mini-životopis", + "You cannot update this property": "Tuto vlastnost nelze aktualizovat", + "Desktop": "plocha počítače", + "Mobile": "mobilní, pohybliví", + "Tablet": "Tableta", + "Amount": "Množství", + "Owner": "Majitel", + "Department": "oddělení", + "Lead Status": "Stav vyskakovacích oken", + "Lifecycle State": "Stav životního cyklu", + "Has Authority": "Má autoritu", + "Do not disturb": "Nerušit", + "Parent Company": "Mateřská společnost", + "Business Type": "Typ podnikání", + "Employees count": "Počet zaměstnanců", + "Yes": "Ano", + "No": "Ne", + "Copied": "Zkopírováno", + "General": "Všeobecné", + "Currency": "Měna", + "Unit of measurement": "Jednotka měření", + "Create another board": "Vytvořte další desku", + "No pipeline": "Žádné potrubí", + "No stage": "Žádná fáze", + "No deal": "Žádná dohoda", + "Background": "Pozadí", + "Choose": "Vybrat", + "Successfully saved.": "Úspěšně uloženo.", + "Successfully moved.": "Úspěšně se pohyboval.", + "Successfully selected.": "Úspěšně vybráno.", + "Body description here": "Popis těla zde", + "Thank you.": "Děkuji.", + "Choose a brand": "Vyberte si značku", + "Write a title": "Napište název", + "Contact": "Kontakt", + "Created by": "Vytvořil", + "Manage": "Spravovat", + "Dropdown": "Rozbalovací nabídka", + "Slide-in Left": "Zasunutí vlevo", + "Slide-in Right": "Zasuňte vpravo", + "Enter name": "Napište jméno", + "Delivered": "Dodáno", + "Clicked": "Kliknuto", + "Complaint": "Stížnost", + "Bounce": "Odskočit", + "Rendering Failure": "Selhání vykreslení", + "Rejected": "Odmítnuto", + "Action": "Akce", + "Please select one to merge": "Vyberte jednu, kterou chcete sloučit", + "Filter by date": "Filtrovat podle data", + "Total conversations": "Celkem konverzací", + "Filter by form": "Filtrovat podle formuláře", + "Supporters": "Příznivci", + "Import histories": "Importujte historii", + "Imported Date": "Datum importu", + "Imported User": "Importovaný uživatel", + "Export customers": "Exportujte zákazníky", + "Import customers": "Importujte zákazníky", + "Export companies": "Exportní společnosti", + "Import companies": "Dovozní společnosti", + "All customers imported successfully": "Všichni zákazníci úspěšně importovali", + "There aren't any imports": "Neexistují žádné dovozy", + "Successfully Removed all customers": "Úspěšně odebráni všichni zákazníci", + "You can only import max 600 at a time": "Naraz můžete importovat maximálně 600", + "Invalid import type": "Neplatný typ importu", + "Last updated": "Naposledy aktualizováno", + "Filter by lead status": "Filtrovat podle stavu vyskakovacích oken", + "No lead status chosen": "Nebyl vybrán žádný stav olova", + "Schedule:": "Plán:", + "Every Day": "Každý den", + "Every Month": "Každý měsíc", + "Every Year": "Každý rok", + "Every Monday": "Každé pondělí", + "Every Tuesday": "Každé úterý", + "Every Wednesday": "Každou středu", + "Every Thursday": "Každý čtvrtek", + "Every Friday": "Každý pátek", + "Every Saturday": "Každou sobotu", + "Every Sunday": "Každou neděli", + "Choose a schedule day": "Vyberte si rozvrhový den", + "Choose a schedule time": "Vyberte čas naplánování", + "Won": "Vyhrál", + "Lost": "Ztracený", + "App store": "Obchod s aplikacemi", + "App store menu": "Nabídka obchodu s aplikacemi", + "In Progress": "Probíhá", + "It`s size exceeds the limit 10mb": "Jeho velikost přesahuje limit 10mb", + "Congrats! Your email sent successfully!": "Gratuluji! Váš e-mail byl úspěšně odeslán!", + "Works with messenger": "Pracuje s messengerem", + "Knowledge base topic": "Téma znalostní báze", + "Package version": "Verze balíčku", + "Branch name": "Jméno pobočky", + "Abbreviated": "Zkráceno", + "User": "Uživatel", + "Recent conversations": "Nedávné konverzace", + "Start new conversation": "Zahajte novou konverzaci", + "Talk with support staff": "Promluvte si s podpůrným personálem", + "Send a message": "Poslat zprávu", + "Volume Report By Customer": "Zpráva o objemu od zákazníka", + "Export Report": "Exportovat sestavu", + "We`re ready to help you.": "Jsme připraveni vám pomoci.", + "Please choose a product": "Vyberte prosím produkt", + "Please choose a currency": "Vyberte měnu", + "No board": "Žádná deska", + "Empty": "Prázdný", + "There is no account.": "Neexistuje žádný účet.", + "There is no tag.": "Neexistuje žádná značka.", + "Skip for now": "Prozatím přeskočte", + "Go to Inbox": "Přejděte do složky Doručená pošta", + "Messenger Language": "Jazyk Messenger", + "Messenger name": "Jméno posla", + "Skip": "Přeskočit", + "Finish": "Dokončit", + "Show": "Ukázat", + "Hide": "Skrýt", + "Previous": "Předchozí", + "Users": "Uživatelé", + "users": "uživatelé", + "brands": "značky", + "messengers": "poslové", + "channels": "kanály", + "Emails": "E-maily", + "Messengers": "Poslové", + "You already have": "Už máš", + "There is another": "Je tu další", + "Let's create your brand": "Vytvořme vaši značku", + "Invite users": "Pozvěte uživatele", + "Let's grow your team": "Pojďme rozšířit svůj tým", + "Invite": "Pozvat", + "Let's start": "Začněme", + "Start messaging now!": "Začněte posílat zprávy hned teď!", + "Create channel": "Vytvořit kanál", + "Get started on your channel": "Začněte na svém kanálu", + "Create your first messenger": "Vytvořte si prvního posla", + "Welcome": "Vítejte", + "Nothing inserted": "Nic nebylo vloženo", + "Empty emails": "Prázdné e-maily", + "Initial setup": "Počáteční nastavení", + "Add another": "Přidej další", + "Don't show again": "Nezobrazovat znovu", + "No other pipeline": "Žádné další potrubí", + "No other boards": "Žádné další desky", + "I'm ready to get started": "Jsem připraven začít", + "Welcome paragraph": "Jsme tak rádi, že vás máme. Udělejme si chvilku, abychom vás připravili", + "Get notified and notify others to keep everything up to date": "Buďte informováni a informujte ostatní, aby vše udržovali aktuální", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Pokud váš tým neobdržel zprávy, které jste odeslali na web, můžeme jim je zaslat e-mailem", + "Send an email and notify members that they've been invited!": "Pošlete e-mail a informujte členy, že byli pozváni!", + "January": "leden", + "February": "Únor", + "March": "březen", + "April": "duben", + "May": "Smět", + "June": "červen", + "July": "červenec", + "August": "srpen", + "September": "září", + "October": "říjen", + "November": "listopad", + "December": "prosinec", + "Today": "Dnes", + "Sales": "Odbyt", + "Monthly view": "Měsíční zobrazení", + "Filter by": "Filtrovat podle", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Vytvořením značky a přidáním kanálů můžete lépe analyzovat potřeby svých zákazníků a pomáhat řešit jejich problémy", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Rozšiřte a přidejte uživatele do svého týmu! Přiřadit, určit a nechat je dělat to, co umí nejlépe", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Zůstaňte v obraze se zpětnou vazbou od každého zákazníka a vytvářejte smysluplnější konverzace", + "Create brand channels that are specifically categorized by type and activity": "Vytvářejte značkové kanály, které jsou specificky roztříděny podle typu a aktivity", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Sem přidejte potenciálního zákazníka a podívejte se na svůj Messenger Messenger! Chcete-li ve své doručené poště zobrazit potenciální zákazníky, ujistěte se, že jsou přidány do vašeho kanálu.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Můžete si vybrat z naší mnoha integrací messengerů a přidat do své znalostní báze. Znalostní báze se objeví na záložce vašeho widgetu Messenger. Chcete-li to provést, vytvořte a přidejte do své znalostní báze.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "E-mailový podpis je příležitost ke sdílení informací, které pomáhají budovat rozpoznávání a důvěru.", + "Let's start taking care of your customers": "Začněme se starat o své zákazníky", + "Add in your first company!": "Přidejte svou první společnost!", + "Choose from our many integrations and add to your channel": "Vyberte si z mnoha integrací a přidejte si svůj kanál", + "Let's get you messaging away!": "Pojďme dostat zprávy pryč!", + "Whoops! No messages here but you can always start": "Jejda! Žádné zprávy, ale můžete vždy začít", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Články mohou řešit libovolný počet problémů, se kterými se zákazníci setkávají. Typy článků o znalostech mohou zahrnovat řešení běžných problémů, dokumentaci produktů nebo funkcí, nejčastější dotazy a mnoho dalšího.", + "Oops! No data here": "Jejda! Nejsou zde žádná data", + "Start adding integrations now!": "Začněte přidávat integrace hned teď!", + "Add an integration in this Brand": "Přidejte integraci do této značky", + "Oh dear! You have no imports": "Ach drahá! Nemáte žádný import", + "A strong customer engagement can help to further brand growth and loyalty": "Silné zapojení zákazníků může přispět k dalšímu růstu značky a loajalitě", + "Get started on your pipeline": "Začněte s plynovodem", + "Connect to Facebook messages right from your Team Inbox": "Připojte se ke zprávám na Facebooku přímo ze složky Team Inbox", + "Tweet back to your DMs right from your Team Inbox": "Tweet zpět do svého DM přímo ze složky Doručená pošta týmu", + "Connect straight to your Gmail and get those emails going": "Připojte se přímo ke svému Gmailu a získejte tyto e-maily", + "Find your lead forms right here in your Widget": "Zde najdete své hlavní formuláře ve svém widgetu", + "Get access to your Knowledge Base right in your Widget": "Získejte přístup k vaší znalostní bázi přímo ve vašem widgetu", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Brzy budete moci připojit Viber přímo k vaší složce Doručená pošta", + "Get a hold of your Whatsapp messages through your Team Inbox": "Získejte přes Whatsapp zprávy prostřednictvím svého týmu Doručená pošta", + "Connect with Wechat and start messaging right from your Team Inbox": "Spojte se s Wechatem a začněte zasílat zprávy přímo ze složky Team Inbox", + "Find feedback that has been gathered from various customer engagement channels.": "Najděte zpětnou vazbu získanou z různých kanálů pro zapojení zákazníků.", + "A report on the total number of customer feedback responses given by team members.": "Zpráva o celkovém počtu odpovědí zákazníků na zpětnou vazbu od členů týmu.", + "The average time a team member solved a problem based on customer feedback.": "Průměrná doba, kterou člen týmu vyřešil problém na základě zpětné vazby od zákazníka.", + "You can find stats that defines the average response time by each team member.": "Najdete statistiky, které definují průměrnou dobu odezvy každého člena týmu.", + "Oh boy, looks like you need to get a head start on your deals": "Panebože, vypadá to, že musíte začít s obchodem", + "Open segments and starting add details": "Otevřete segmenty a začněte přidávat podrobnosti", + "Now easier to find contacts according to your brand": "Nyní je snadnější najít kontakty podle vaší značky", + "Search and filter customers by form": "Vyhledávejte a filtrujte zákazníky podle formuláře", + "There is always a lead!": "Vždy existuje vedení!", + "Calendar": "Kalendář", + "Columns": "Sloupce", + "columns": "sloupce", + "Linked Accounts": "Propojené účty", + "Select account": "Vyberte účet", + "Select account ...": "Vyberte účet ...", + "Add Account": "Přidat účet", + "Remove Account": "Odstranit účet", + "You can upload only image file": "Můžete nahrát pouze obrazový soubor .png nebo .jpg", + "Permissions": "Oprávnění", + "New permission": "Nové povolení", + "New group": "Nová skupina", + "Users groups": "Skupiny uživatelů", + "Choose the module": "Vyberte modul", + "Choose the actions": "Vyberte akce", + "Choose the users": "Vyberte uživatele", + "Choose the groups": "Vyberte skupiny", + "Choose groups": "Vyberte skupiny", + "Allow": "Dovolit", + "Invitation Status": "Stav pozvánky", + "Permission": "Povolení", + "data successfully imported": "data byla úspěšně importována", + "Show result": "Zobrazit výsledek", + "Importing": "Probíhá import", + "data": "data", + "errors acquired": "získané chyby", + "There are": "Existují", + "Continue": "Pokračovat", + "Create brand": "Vytvořte značku", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Vytvořte svůj první živý chat a zasílání zpráv v aplikaci. Zůstaňte v obraze se zpětnou vazbou od každého zákazníka pro smysluplnější interakce.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Kanál poskytuje úplný přehled o všech značkách a jejich aplikacích na jednom místě. Všechny doručené zprávy můžete vidět v doručené poště týmu.", + "Hooray and Congratulations! You've completed the initial setup!": "Hurá a gratuluji! Dokončili jste počáteční nastavení!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Vložte níže uvedený kód před tag na každé stránce, na které se má zobrazit erxes chat.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Vložte níže uvedený kód před značku těla na každou stránku, na kterou se mají objevit erxes", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Pokud je vložen váš typ toku, vložte níže uvedený kód, který se má zobrazit", + "If your flow type is popup paste the code below additionally in your button": "Pokud je váš typ toku vyskakovací okno, vložte níže uvedený kód do tlačítka", + "Choose messengers": "Vyberte si posly", + "erxes allows you to create multiple messengers": "erxes umožňuje vytvořit více poslů", + "erxes allows you to create multiple brands": "erxes umožňuje vytvářet více značek", + "erxes allows you to create multiple channels": "erxes umožňuje vytvářet více kanálů", + "Contacts": "Kontakty", + "Create group": "Vytvořit skupinu", + "Visitors": "Návštěvníci", + "Due in the next day": "Termín příštího dne", + "Due in the next week": "Termín příštího týdne", + "Due in the next month": "V příštím měsíci", + "Has no close date": "Nemá datum uzávěrky", + "Over due": "Zpožděný", + "Clear Filter": "Vymazat filtr", + "Remove this filter": "Odstraňte tento filtr", + "Filtering is on": "Filtrování je zapnuto", + "Choose products": "Vyberte si produkty", + "Choose companies": "Vyberte společnosti", + "Choose customers": "Vyberte si zákazníky", + "Choose team members": "Vyberte členy týmu", + "erxes Inc": "erxes Inc", + "Get": "Dostat", + "Download ios app for free on the App Store": "Stáhněte si zdarma aplikaci ios v App Store.", + "Download android app for free on the Google play": "Stáhněte si Android aplikaci zdarma na Google Play.", + "Please upgrade your browser to use erxes!": "Upgradujte prosím prohlížeč, aby používal erxy!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Bohužel, používáte prohlížeč, který nemusí být plně kompatibilní s erxy.", + "Please use recommended version": "Použijte prosím doporučenou verzi", + "Messenger data": "Data zpráv", + "Customer field data": "Údaje o zákaznickém poli", + "Others": "Ostatní", + "Select brand": "Vyberte značku", + "There is no permissions in this group": "V této skupině nejsou žádná oprávnění.", + "There is no group": "Neexistuje žádná skupina.", + "User groups": "Skupiny uživatelů", + "What action can do": "Jaké kroky mohou udělat", + "Who can": "Kdo může", + "Grant permission": "Udělte svolení", + "Check if permission is allowed": "Zkontrolujte, zda je povolení povoleno", + "Then": "Pak", + "Or": "Nebo", + "Auto message description": "Pošlete cílený e-mail a chat přihlášeným uživatelům na základě jejich značky / značky / segmentu. Můžete si nastavit svůj čas na odeslání e-mailu nebo chatu předem. Návrh chatu může být vyřezán, odznak a úplná zpráva a může to být text nebo video.", + "Manual message description": "Pošlete cílený e-mail a chat přihlášeným uživatelům na základě jejich značky / značky / segmentu. E-mail nebo chat bude odeslán okamžitě po kliknutí na tlačítko Uložit. Návrh chatu může být vyřezán, odznak a úplná zpráva a může to být text nebo video.", + "Visitor auto message description": "Zasílejte cílené chaty odhlášeným návštěvníkům webových stránek na základě jejich navštívené stránky, aktivity, země pobytu a města. Návrh chatu může být vyřezán, odznak a úplná zpráva a může to být text nebo video.", + "Required field": "Povinné pole!", + "Invalid email format! Please enter a valid email address": "Neplatný formát e-mailu! Prosím zadejte platnou emailovou adresu.", + "Invalid link": "Neplatný odkaz!", + "Maximum length is": "Maximální délka je", + "characters": "postavy!", + "Invalid number format! Please enter a valid number": "Neplatný formát čísla! Prosím zadejte platné číslo.", + "Insert email template to content": "Vložení e-mailové šablony do obsahu", + "Logs": "Protokoly", + "There are no logs recorded": "Nejsou zaznamenány žádné protokoly", + "Module": "Modul", + "Unchanged fields": "Nezměněná pole", + "Changed fields": "Změněná pole", + "Create": "Vytvořit", + "Update": "Aktualizace", + "Changes": "Změny", + "Choose start date": "Zvolte datum zahájení", + "Choose end date": "Zvolte datum ukončení", + "Permission denied": "Přístup odepřen", + "Old data": "Stará data", + "New data": "Nová data", + "Archive": "Archiv", + "NetworkError": "Pokus o obnovení připojení. Změny provedené nyní nemusí být uloženy.", + "Email add account description question": "Připojujete sdílený e-mailový účet?", + "Email add account description": "Když k doručené konverzaci připojíte e-mail, připojujete jej jako sdílený účet. Zprávy odeslané na sdílené účty si mohou prohlížet všichni, kdo mají přístup k doručené poště vašeho týmu.", + "No connected email": "Žádný připojený e-mail", + "Your email will be sent with Erxes email template": "Váš e-mail bude odeslán s e-mailovou šablonou Erxes" +} diff --git a/ui/src/locales/de.json b/ui/src/locales/de.json index bf9dc460445..48651035573 100644 --- a/ui/src/locales/de.json +++ b/ui/src/locales/de.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "Sind Sie sicher?", "Yes, I am": "Ja, bin ich", "No, Cancel": "Nein, abbrechen", @@ -137,6 +138,7 @@ "Brand": "Marke", "Current Password": "Aktuelles Passwort", "Current password": "Aktuelles Passwort", + "Set up your password": "Passwort-Einstellung", "New Password": "Neues Passwort", "Re-type Password to confirm": "Geben Sie das Passwort zur Bestätigung erneut ein", "Signature": "Unterschrift", @@ -800,5 +802,21 @@ "Choose messengers": "Choose messengers", "erxes allows you to create multiple messengers": "erxes allows you to create multiple messengers", "erxes allows you to create multiple brands": "erxes allows you to create multiple brands", - "erxes allows you to create multiple channels": "erxes allows you to create multiple channels" + "erxes allows you to create multiple channels": "erxes allows you to create multiple channels", + "Show the full message": "Zeige die ganze Nachricht", + "Snippet": "Ausschnitt", + "Add New Brand": "Eine \"brand\" erstellen", + "Basic JavaScript": "Webseite", + "Google tag manager": "Google Tag Manager", + "gtm_b": "So fügen Sie das wiget über GTM ein.", + "gtm_li_1": "öffnen Sie die Tags innerhalb von GTM", + "gtm_li_2": "erstellen Sie einen neuen tag (zB \"inflow\")", + "gtm_li_3": "klicken Sie den tag container und wählen Sie als Typ: Custom HTML", + "gtm_li_4": "fügen Sie den unten stehen code ein", + "gtm_li_5": "unter Triggering wählen Sie \"Auf allen Seiten\"", + "gtm_li_6": "speichern nicht vergessen (oben rechts)", + "gtm_li_7": "anschließend müssen sie die Änderungen über Submit bestätigen", + "gtm_li_8": "das widget wird nun auf den Webseiten geladen, auf denen GTM aktivier ist", + "For websites and web apps with full-page refreshes. Paste the code below before the body tag on every page you want erxes chat to appear": "Für Webseite oder Web-App mit full-page refresh. Bitte fügen Sie den code VOR dem tag auf allen Webseiten ein, auf denen das widget aktiv sein soll.", + "To connect Google Tag Manager to erxes, you must have an active Google Tag Manager account with a published container": "Um das widget über Google Tag Manager (GTM) zu installieren benötigen Sie einen aktivierten GTM account mit einem veröffnetlichen container." } diff --git a/ui/src/locales/en.json b/ui/src/locales/en.json index 474ae714cdb..060341ea035 100644 --- a/ui/src/locales/en.json +++ b/ui/src/locales/en.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "Are you sure? This cannot be undone.", "Yes, I am": "Yes, I am", "No, Cancel": "No, Cancel", @@ -147,6 +148,7 @@ "Current Password": "Current Password", "Current password": "Current password", "New Password": "New Password", + "Set up your password": "Set up your password", "Re-type Password to confirm": "Re-type Password to confirm", "Signature": "Signature", "simple": "simple", @@ -939,5 +941,21 @@ "Engage config": "Engage config", "Join a call": "Join a call", "Invite to video call": "Invite to video call", - "Video call invitation sent": "Video call invitation sent" + "Video call invitation sent": "Video call invitation sent", + "Show the full message": "Show the full message", + "Snippet": "Snippet", + "Add New Brand": "Add New Brand", + "Basic JavaScript": "Website", + "Google tag manager": "Google Tag Manager", + "gtm_b": "To install erxes on your website with Google Tag Manager, just follow these steps.", + "gtm_li_1": "Navigate to the Tags section of your Google Tag Manager account", + "gtm_li_2": "Create a new tag and name it (for example: \"inflow\")", + "gtm_li_3": "Click the Tag Configuration section and choose Custom HTML{' '} tag type", + "gtm_li_4": "Paste the code below", + "gtm_li_5": "Next, click the Triggering section and choose “All Pages”", + "gtm_li_6": "Click ‘Save’ button in the top-right corner of the page", + "gtm_li_7": "Next click ‘Submit’ button in the top-right corner of the page to save the changes you made", + "gtm_li_8": "Now, erxes chat will be installed using your Google Tag Manager account. Just make sure you copy the gtm code to your website", + "For websites and web apps with full-page refreshes. Paste the code below before the body tag on every page you want erxes chat to appear": "For websites and web apps with full-page refreshes. Paste the code below before the body tag on every page you want erxes chat to appear", + "To connect Google Tag Manager to erxes, you must have an active Google Tag Manager account with a published container": "To connect Google Tag Manager to erxes, you must have an active Google Tag Manager account with a published container" } diff --git a/ui/src/locales/es.json b/ui/src/locales/es.json index 3ce6f04d371..48f7bdd3d15 100644 --- a/ui/src/locales/es.json +++ b/ui/src/locales/es.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Response Close Report": "Respuesta Cerrar Informe", "Average time of each staff solving problems that based on customer feedbacks.": "Tiempo promedio que le toma al personal para resolver problemas basados en comentarios del cliente.", "First Response Report": "Primer informe de respuesta", diff --git a/ui/src/locales/fa_IR.json b/ui/src/locales/fa_IR.json new file mode 100644 index 00000000000..057ae4614b3 --- /dev/null +++ b/ui/src/locales/fa_IR.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "مطمئنی؟ این قابل بازگشت نیست.", + "Yes, I am": "بله من هستم", + "No, Cancel": "نه ، لغو کنید", + "Filter by tags": "با برچسب ها فیلتر کنید", + "There is no data": "داده ای وجود ندارد", + "There is no data.": "داده ای وجود ندارد", + "Load more": "بارگذاری بیشتر", + "There aren't any activities at the moment.": "هیچ فعالیتی در حال حاضر وجود ندارد", + "Reset your password": "رمزعبور خود را دوباره تنظیم کنید", + "Email me the instruction": "دستورالعمل را برای من ایمیل کنید", + "Sign in": "ورود", + "Change password": "رمز عبور را تغییر دهید", + "Set your new password": "رمزعبور جدید خود را تنظیم کنید", + "Forgot password?": "رمز عبور را فراموش کرده اید؟", + "Photo": "عکس", + "Name": "نام", + "Views": "بازدیدها", + "Conversion": "تبدیل", + "Go to import": "به واردات بروید", + "Conversion rate": "نرخ تبدیل", + "Contacts gathered": "مخاطبین جمع شدند", + "Create lead": "پاپ آپ ها را ایجاد کنید", + "Form title": "عنوان فرم", + "Related": "مربوط", + "Form description": "توضیحات فرم", + "Position": "موقعیت", + "Username": "نام کاربری", + "Email": "پست الکترونیک", + "sec": "ثانیه", + "Twitter username": "نام کاربری توییتر", + "Inbox": "صندوق ورودی", + "Workflow": "جریان کار", + "Watch": "تماشا کردن", + "Watching": "تماشا کردن", + "Team Inbox": "صندوق ورودی تیم", + "Customers": "مشتریان", + "Companies": "شرکتها", + "Engage": "مشغول کردن", + "Insights": "بینش", + "Knowledge Base": "دانش محور", + "Settings": "تنظیمات", + "Resolve": "برطرف کردن", + "Send": "ارسال", + "No company": "هیچ شرکتی نیست", + "No customer": "مشتری نیست", + "Not tagged yet": "هنوز برچسب گذاری نشده است", + "New note": "یادداشت جدید", + "Conversation": "گفتگو", + "Notes": "یادداشت", + "Activity": "فعالیت", + "Basic info": "اطلاعات پایه", + "Size": "اندازه", + "Other": "دیگر", + "Industry": "صنعت", + "Website": "سایت اینترنتی", + "Plan": "طرح", + "About": "در باره", + "Discard": "دور انداختن", + "Save": "صرفه جویی", + "Create response template": "الگوی پاسخ ایجاد کنید", + "Associate": "وابسته", + "No tags": "بدون برچسب", + "Add customer": "مشتری را اضافه کنید", + "No segments": "بدون سگمنت", + "Manage Columns": "مدیریت ستون ها", + "New customer": "مشتری جدید", + "Add company": "شرکت را اضافه کنید", + "New company": "شرکت جدید", + "Choose which column you see": "کدام ستون را می بینید", + "There is no engage message.": "پیام تعامل وجود ندارد.", + "Add Knowledge base": "پایه دانش را اضافه کنید", + "Add knowledge base.": "پایه دانش را اضافه کنید.", + "New Channel": "کانال جدید", + "Edit": "ویرایش کنید", + "Edit basic info": "اطلاعات اصلی را ویرایش کنید", + "Manage integration": "ادغام را مدیریت کنید", + "Manage Integration": "ادغام را مدیریت کنید", + "Choose new brand": "مارک جدید را انتخاب کنید", + "Edit integration": "ادغام را ویرایش کنید", + "Integration": "ادغام", + "Integration menu": "منوی ادغام", + "New Brand": "برند جدید", + "Add facebook page": "صفحه فیس بوک را اضافه کنید", + "Add integrations": "ادغام ها را اضافه کنید", + "Add messenger": "مسنجر را اضافه کنید", + "There is no lead.": "سرب وجود ندارد.", + "New response template": "الگوی پاسخ جدید", + "Cancel": "لغو", + "Public": "عمومی", + "Private": "خصوصی", + "New email template": "الگوی ایمیل جدید", + "Local publisher's email template": "الگوی ایمیل ناشر محلی", + "New user": "کاربر جدید", + "Load More": "بارگذاری بیشتر", + "Session count": "تعداد جلسه", + "Last seen at": "اخرین بازدید در", + "Tags": "برچسب ها", + "Member": "عضو", + "Remove": "برداشتن", + "No companies added yet!": "هنوز هیچ شرکتی اضافه نشده است!", + "Merge": "ادغام", + "First Name": "نام کوچک", + "Last Name": "نام خانوادگی", + "First name": "نام کوچک", + "Last name": "نام خانوادگی", + "Primary Email": "ایمیل اصلی", + "Phone": "تلفن", + "Is user": "کاربر است", + "Save & New": "ذخیره و جدید", + "Save & Close": "ذخیره و بستن", + "Close": "نزدیک", + "Customer properties": "خواص مشتری", + "Device properties": "ویژگی های دستگاه", + "Location": "محل", + "Browser": "مرورگر", + "Platform": "سکو", + "IP Address": "آدرس آی پی", + "Hostname": "نام میزبان", + "Language": "زبان", + "User Agent": "عامل کاربر", + "Other properties": "خواص دیگر", + "Facebook": "فیس بوک", + "Facebook profile": "پروفایل فیس بوک", + "Messenger usage": "استفاده از مسنجر", + "Status": "وضعیت", + "Online": "برخط", + "Offline": "آفلاین", + "Twitter": "توییتر", + "Twitter quote": "نقل قول توییتر", + "Retweet": "بازتوییت", + "Screen name": "نام صفحه", + "Don't see the result you're looking for? ": "نتیجه ای که به دنبالش هستید را نمی بینید؟", + "Merged Info": "اطلاعات ادغام شده", + "E-mail": "پست الکترونیک", + "Integrations": "ادغام", + "integration": "ادغام", + "Brands": "مارک ها", + "Start date": "تاریخ شروع", + "End date": "تاریخ پایان", + "lead": "پنجره های باز شو", + "twitter": "توییتر", + "facebook": "فیس بوک", + "messenger": "پیام رسان", + "Title": "عنوان", + "Brand": "نام تجاری", + "Current Password": "گذرواژه فعلی", + "Current password": "رمز عبور فعلی", + "New Password": "رمز عبور جدید", + "Re-type Password to confirm": "برای تأیید دوباره کلمه عبور را تایپ کنید", + "Signature": "امضا", + "simple": "ساده", + "custom": "سفارشی", + "default": "پیش فرض", + "default language": "زبان پیش فرض", + "primary": "اولیه", + "Content": "محتوا", + "Save & draft": "ذخیره پیش نویس", + "Save & live": "ذخیره و زندگی کنید", + "Message:": "پیام:", + "Email template:": "الگوی ایمیل:", + "Email subject:": "موضوع نامه الکترونیکی:", + "From": "از جانب", + "Message type:": "نوع پیام:", + "Sent as:": "ارسال شده به عنوان:", + "Brand:": "نام تجاری:", + "Add rule": "قانون را اضافه کنید", + "Last online": "آخرین آنلاین", + "No Activities": "فعالیتی وجود ندارد", + "There is no customer.": "مشتری وجود ندارد.", + "Properties": "خصوصیات", + "Customize ": "شخصی سازی", + "Kind": "نوع", + "All": "همه", + "Auto": "خودکار", + "Visitor auto": "خودکار بازدید کننده", + "Manual": "کتابچه راهنمای", + "Delivered to a user s email inbox": "به صندوق ورودی ایمیل کاربر منتقل شد", + "Customize with your own templates": "با الگوهای خاص خود سفارشی سازی کنید", + "Delivered inside your app": "داخل برنامه شما تحویل داده شده است", + "Reach active users": "دسترسی به کاربران فعال", + "Channel": "کانال", + "Edit columns": "ستون ها را ویرایش کنید", + "Auto message": "پیام خودکار", + "Manual message": "پیام دستی", + "Visitor auto message": "پیام خودکار بازدید کننده", + "Actions": "اقدامات", + "Created date": "تاریخ ایجاد شده", + "Type": "تایپ کنید", + "Failed": "ناموفق", + "Sent": "ارسال شد", + "Total": "جمع", + "Pause": "مکث کنید", + "Set live": "زندگی کن", + "Sending": "در حال ارسال", + "Delete": "حذف", + "Choose segment": "بخش را انتخاب کنید", + "To:": "به:", + "Messenger kind:": "نوع پیام رسان:", + "Title:": "عنوان", + "Channel:": "کانال", + "No items": "هیچ موردی نیست", + "New": "جدید", + "Options:": "گزینه ها:", + "Options": "گزینه ها", + "Type:": "نوع:", + "Add": "اضافه کردن", + "Validation:": "اعتبار سنجی", + "Date": "تاریخ", + "Number": "عدد", + "Text:": "متن:", + "Description:": "شرح:", + "This item is requried": "این مورد دوباره تأیید شده است", + "Preview": "پیش نمایش", + "Column name": "نام ستون", + "Visible": "قابل رویت", + "Visibility": "دید", + "Choose person": "شخص را انتخاب کنید", + "Conversation Details": "جزئیات مکالمه", + "Opened": "افتتاح شد", + "Conversations": "گفتگو", + "Channels": "کانالها", + "Select all": "انتخاب همه", + "Filter by tag": "فیلتر برچسب", + "Filter by integrations": "فیلتر توسط ادغام ها", + "Filter by brand": "فیلتر بر اساس نام تجاری", + "Filter by channel": "فیلتر توسط کانال", + "Filter by status": "فیلتر بر اساس وضعیت", + "# Channel": "# کانال", + "Unassigned": "دست نخورده", + "Participating": "شرکت کننده", + "Resolved": "حل شد", + "View more": "بیشتر ببینید", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "مشتری آنلاین نیست. برای مخفی کردن و ارسال پیام کلیک کنید و دفعه بعد آنلاین بودن آنها را دریافت خواهید کرد.", + "No templates": "بدون الگو", + "Save as template": "به عنوان الگو ذخیره کنید", + "Daily First Response Resolve Rate": "نرخ پاسخ روزانه اول پاسخ", + "Daily First Response Resolve Rate by Team Members": "پاسخ روزانه میزان پاسخگویی توسط اعضای تیم", + "Daily Response Close Resolve Rate by Team Members": "پاسخ روزانه بستن نرخ حل توسط اعضای تیم", + "Volume Report": "گزارش جلد", + "Feedbacks gathered through various customer engagement channels.": "بازخورد از طریق کانال های مختلف جذب مشتری جمع آوری شده است.", + "Response Report": "گزارش پاسخ", + "Total number of response for customer feedbacks, by each staff.": "تعداد کل پاسخ ها برای بازخورد مشتری ، توسط هر یک از کارمندان.", + "Response Close Report": "گزارش بستن پاسخ", + "Average time of each staff solving problems that based on customer feedbacks.": "میانگین زمان هر پرسنلی که مشکلات را حل می کنند که بر اساس بازخورد مشتری است.", + "First Response Report": "اولین پاسخ پاسخ", + "Responding time for a single feedback. Stats will define average response time by each staff.": "زمان پاسخگویی برای یک بازخورد واحد. آمار میانگین زمان پاسخگویی توسط هر پرسنل را تعیین می کند.", + "Daily Response Close Resolve Rate": "پاسخ روزانه نرخ بستن پاسخ", + "Daily Response Close Resolve rate by Team Members": "پاسخ روزانه بستن نرخ حل توسط اعضای تیم", + "Response Times summary": "خلاصه پاسخ بار", + "Response Trend": "روند پاسخ", + "Punch card": "کارت پانچ", + "Response by team members": "پاسخ اعضای تیم", + "Tag": "برچسب زدن", + "Internal note": "یادداشت داخلی", + "Manage templates": "مدیریت الگوهای", + "Volume summary": "خلاصه جلد", + "Volume Trend": "روند دوره", + "Summary": "خلاصه", + "Install code": "نصب کد", + "No copyable code": "بدون کد قابل کپی کردن", + "Manage Knowledge Base": "پایگاه دانش را مدیریت کنید", + "Add Category": "افزودن دسته", + "Add Article": "مقاله را اضافه کنید", + "Customer engagement. REDEFINED.": "مشارکت مشتری. رد شده", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes یک هوش مصنوعی است که برای فروش ، بازاریابی و پشتیبانی از پلت فرم پیام رسانی متن باز برخوردار است", + "404. This page is not found.": "404. این صفحه یافت نمی شود.", + "erxes is an open-source messaging platform for customer success": "erxes یک بستر پیام رسان منبع باز برای موفقیت مشتری است", + "Notification settings": "تنظیمات اعلان", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "بازاریابی ، فروش و بستر خدمات مشتری برای کمک به مشاغل شما در جذب مشتریان درگیرتر طراحی شده است. Hubspot را با مأموریت و اکوسیستم محور جامعه جایگزین کنید.", + "Mark Page Read": "علامت گذاری به عنوان صفحه خوانده شده", + "Mark All Read": "علامت گذاری همه خواندن", + "Coming soon": "به زودی", + "Looks like you are all caught up": "به نظر می رسد همه شما گرفتار هستید", + "AI": "هوش مصنوعی", + "See all": "همه را ببین", + "Select a field": "فیلد را انتخاب کنید", + "Add condition": "اضافه کردن شرط", + "Parent segment conditions": "شرایط بخش والدین", + "Filter by segments": "براساس بخش ها فیلتر کنید", + "New segment": "بخش جدید", + "Manage segments": "بخش ها را مدیریت کنید", + "Users who match": "کاربرانی که مطابقت دارند", + "any": "هر", + "all": "همه", + "of the below conditions": "از شرایط زیر", + "Sub segment of": "زیر بخش از", + "Color": "رنگ", + "Filters": "فیلترها", + "User(s) will recieve this message": "کاربر (ها) این پیام را دریافت می کنند", + "Color code": "کد رنگ", + "Engage Message": "پیام نامزدی", + "Item counts": "تعداد موارد", + "Appearance": "ظاهر", + "Hours, Availability & Other configs": "ساعت ، در دسترس بودن و سایر تنظیمات", + "There is no brand": "هیچ مارکی وجود ندارد", + "There is no integration in this channel.": "در این کانال ادغام وجود ندارد.", + "Template markup": "نشانه گذاری الگو", + "Use html template here": "از قالب html در اینجا استفاده کنید", + "Choose your email template type": "نوع الگوی ایمیل خود را انتخاب کنید", + "Email signatures": "امضاهای ایمیل", + "Personal Settings": "تنظیمات شخصی", + "Account Settings": "تنظیمات حساب", + "Profile": "مشخصات", + "Get notification by email": "اعلان را از طریق ایمیل دریافت کنید", + "Admin": "مدیر", + "Contributor": "مشارکت کننده", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "ما از گرمی به erxes استقبال می کنیم و مشتاقانه به دنبال یک همکاری طولانی کار سالم با ما هستیم.", + "Hi, any questions?": "سلام ، سوالی دارید؟", + "1 hour ago": "1 ساعت قبل", + "We need your help!": "ما به کمک شما نیاز!", + "6 minutes ago": "6 دقیقه پیش", + "Write a reply ...": "نوشتن پاسخ ...", + "App": "برنامه", + "From email": "از ایمیل", + "User email title": "عنوان ایمیل کاربر", + "User email content": "محتوای ایمیل کاربر", + "Admin emails": "ایمیل های سرپرست", + "Admin email title": "عنوان ایمیل مدیر", + "Admin email content": "محتوای ایمیل مدیر", + "Redirect url": "تغییر آدرس اینترنتی", + "On success": "در موفقیت", + "Load": "بار", + "Success": "موفقیت", + "Thank content": "از مطالب تشکر می کنم", + "Choose a custom color": "یک رنگ دلخواه را انتخاب کنید", + "Choose a wallpaper": "تصویر زمینه را انتخاب کنید", + "Choose a logo": "یک آرم انتخاب کنید", + "Visible online to visitor or customer": "به صورت آنلاین برای بازدید کننده یا مشتری قابل مشاهده است", + "Online messaging": "پیام آنلاین", + "Welcome message": "پیام خوش امد گویی", + "Offline messaging": "پیام آفلاین", + "Away message": "پیام دور", + "Thank you message": "پیام ممنون", + "Hours & Availability": "ساعت و در دسترس بودن", + "Turn online/offline manually": "به صورت آنلاین و آفلاین بچرخید", + "Set to follow your schedule": "تنظیم کنید تا برنامه خود را دنبال کنید", + "Other configs": "سایر پیکربندی ها", + "Notify customer": "به مشتری اطلاع دهید", + "Online hours": "ساعات آنلاین", + "Add another time": "بار دیگر اضافه کنید", + "Time zone": "منطقه زمانی", + "Messenger": "پیام رسان", + "Knowledge base": "دانش محور", + "Notification": "اطلاع", + "Notifications": "اطلاعیه", + "Show unread": "نمایش خوانده نشده", + "Unread": "خوانده نشده", + "Recent": "اخیر", + "Mark all as read": "همه را به عنوان خوانده شده علامت بزن", + "Email Appearance": "ظاهر ایمیل", + "Team Members": "اعضای تیم", + "Account default": "پیش فرض حساب", + "Team members": "اعضای تیم", + "Full name": "نام و نام خانوادگی", + "Leads": "پنجره های باز شو", + "Email Signature": "امضای ایمیل", + "Response Template": "الگوی پاسخ", + "Email Template": "الگوی ایمیل", + "Response templates": "الگوهای پاسخ", + "Email templates": "قالب های ایمیل", + "Brand Name": "نام تجاری", + "Current template": "الگوی فعلی", + "Created at": "ایجاد شده در", + "Manage Fields": "مدیریت زمینه ها", + "Duplicate": "کپی کردن", + "Code": "کد", + "Profile settings": "تنظیمات نمایه", + "Change Password": "تغییر رمز عبور", + "Signatures are only included in response emails.": "امضاها فقط در ایمیل های پاسخ گنجانده شده اند.", + "Signature template": "الگوی امضا", + "You can use Markdown to format your signature.": "برای قالب بندی امضا می توانید از Markdown استفاده کنید.", + "Password": "کلمه عبور", + "Password confirmation": "تایید رمز عبور", + "Choose the channels": "کانالها را انتخاب کنید", + "Simple": "ساده", + "Custom": "سفارشی", + "Create a new Company": "یک شرکت جدید ایجاد کنید", + "New Company": "شرکت جدید", + "Edit name": "ویرایش نام", + "Customer": "مشتری", + "Add tag": "برچسب اضافه کنید", + "Company": "شرکت", + "New message ": "پیام جدید", + "There aren’t any activities at the moment.": "هیچ فعالیتی در حال حاضر وجود ندارد", + "This item is required": "این مورد الزامی است", + "Manage fields": "مدیریت زمینه ها", + "Add integrations ": "ادغام ها را اضافه کنید", + "Form": "فرم", + "Create a new Customer": "مشتری جدیدی ایجاد کنید", + "New Customer": "مشتری جدید", + "Segments": "بخش ها", + "Add a condition": "یک شرط اضافه کنید", + "Open": "باز کن", + "Choose channel": "کانال را انتخاب کنید", + "Who is this message for?": "این پیام برای چه کسی است؟", + "Compose your message": "پیام خود را بنویسید", + "No items added": "هیچ موردی اضافه نشد", + "Submit": "ارسال", + "Next": "بعد", + "Save & Draft": "ذخیره پیش نویس", + "Save & Live": "ذخیره و زنده", + "From:": "از جانب:", + "Pages": "صفحات", + "Links": "پیوندها", + "Enter your password to Confirm": "رمز عبور خود را برای تأیید وارد کنید", + "Number of visits": "تعداد بازدید", + "Written By": "نوشته شده توسط", + "Icon": "آیکون", + "draft": "پیش نویس", + "Twitter Username": "نام کاربری توییتر", + "LinkedIn": "لینکدین", + "Youtube": "یوتیوب", + "Github": "گیتوب", + "Edit response": "پاسخ را ویرایش کنید", + "To send your message press Enter and Shift + Enter to add a new line": "برای ارسال پیام خود Enter و Shift + Enter را بزنید تا یک خط جدید اضافه شود", + "To send your note press Enter and Shift + Enter to add a new line": "برای ارسال یادداشت خود ، Enter و Shift + Enter را فشار دهید تا یک خط جدید اضافه شود", + "Please enter an unit price. It should be a number": "لطفاً قیمت واحد را وارد کنید. باید یک عدد باشد", + "Type to search": "برای جستجو تایپ کنید", + "Members": "اعضا", + "Choose integrations": "ادغام را انتخاب کنید", + "Choose brands": "مارک ها را انتخاب کنید", + "Select a date": "تاریخ را انتخاب کنید", + "Click to select a date": "برای انتخاب تاریخ کلیک کنید", + "Choose users": "کاربران را انتخاب کنید", + "Select Brand": "نام تجاری را انتخاب کنید", + "Write here Welcome message.": "اینجا بنویسید پیام خوش آمدید.", + "Write here Away message.": "اینجا را بنویسید پیام دور.", + "Write here Thank you message.": "در اینجا بنویسید متشکرم", + "Select app": "برنامه را انتخاب کنید", + "Enter new password": "رمز ورود جدید را وارد کنید", + "Choose channels": "کانالها را انتخاب کنید", + "Select": "انتخاب کنید", + "select": "انتخاب کنید", + "Choose members": "اعضا را انتخاب کنید", + "Search": "جستجو کردن", + "your@email.com": "your@email.com", + "password": "کلمه عبور", + "registered@email.com": "ثبت نام شده@email.com", + "new password": "رمز عبور جدید", + "Start typing to leave a note": "برای ترک یادداشت شروع به تایپ کنید", + "Re-type password": "رمزعبور را دوباره تایپ کنید", + "Name:": "نام:", + "Size:": "اندازه:", + "Website:": "سایت اینترنتی:", + "Industry:": "صنعت:", + "Plan:": "طرح:", + "There arent't any groups and fields": "هیچ گروه و زمینه وجود ندارد", + "Please add property Group first": "لطفاً ابتدا گروه ملک را اضافه کنید", + "Add group": "اضافه کردن گروه", + "Add Property": "افزودن ملک", + "Add Group & Field ": "گروه و فیلد را اضافه کنید", + "Add Group": "افزودن گروه", + "Edit Property": "ویرایش ویژگی", + "Group:": "گروه:", + "There arent't any fields in this group": "هیچ فیلد در این گروه وجود ندارد", + "Customer Properties": "ویژگی های مشتری", + "Company Properties": "خواص شرکت", + "Add an option": "گزینه ای را اضافه کنید", + "Copy to clipboard": "کپی به کلیپ بورد", + "Go to home page": "به صفحه اصلی بروید", + "Assign to": "اختصاص به", + "Remove assignee": "انتصاب را حذف کنید", + "Account settings": "تنظیمات حساب", + "General Settings": "تنظیمات عمومی", + "Integration Settings": "تنظیمات ادغام", + "Personal settings": "تنظیمات شخصی", + "Add category": "افزودن دسته", + "Filter": "فیلتر", + "Live": "زنده", + "Draft": "پیش نویس", + "Paused": "مکث کرد", + "Your messages": "پیام های شما", + "Delivered inside your app Reach active users": "در برنامه خود تحویل داده شده است به کاربران فعال", + "Delivered to a user s email inbox Customize with your own templates": "تحویل به صندوق ورودی ایمیل یک کاربر با قالب های شخصی خود سفارشی سازی کنید", + "email": "پست الکترونیک", + "Create segment": "ایجاد بخش", + "customers": "مشتریان", + "has any value": "ارزش دارد", + "is unknown": "ناشناخته است", + "is not": "نیست", + "is": "است", + "Less than": "کمتر از", + "City": "شهر", + "Greater than": "بزرگتر از", + "Country": "کشور", + "Current page url": "آدرس صفحه فعلی", + "Browser language": "زبان مرورگر", + "conversation": "گفتگو", + "engageMessage": "engMessage", + "customer": "مشتری", + "company": "شرکت", + "starts with": "شروع می شود با", + "ends with": "به پایان می رسد با", + "contains": "حاوی", + "does not contain": "شامل نمی شود", + "Basic Info": "اطلاعات پایه", + "Add Phone": "تلفن را اضافه کنید", + "Add Email": "ارسال ایمیل", + "Choose your tags": "برچسب های خود را انتخاب کنید", + "Manage tags": "مدیریت برچسب ها", + "Edit Profile": "ویرایش نمایه", + "Sign out": "خروج از سیستم", + "Last Updated By": "آخرین به روزرسانی توسط", + "There is no channel": "کانالی وجود ندارد", + "Facebook page": "صفحه فیس بوک", + "plan": "طرح", + "Edit segment": "بخش را ویرایش کنید", + "New message": "پیام جدید", + "Message": "پیام", + "Merge Customers": "ادغام مشتریان", + "Assign": "اختصاص دادن", + "There is no message.": "پیامی وجود ندارد.", + "per page": "هر صفحه", + "[view]": "[چشم انداز]", + "Go to twitter": "برو توییتر", + "Build": "ساختن", + "`s integration": "ادغام", + "Created": "ایجاد شده", + "Email templates:": "الگوهای ایمیل:", + "Content:": "محتوا:", + "Response Templates": "الگوهای پاسخ", + "Merge Companies": "ادغام شرکت ها", + "Response template": "الگوی پاسخ", + "Attach file": "پیوست پرونده", + "Upload": "بارگذاری", + "ShoutBox": "ShoutBox", + "Popup": "پنجره", + "Embedded": "جاسازی شده", + "Choose a flow type": "یک نوع جریان را انتخاب کنید", + "CallOut": "CallOut", + "Callout title": "عنوان فراخوان", + "Callout body": "بدن فراخوان", + "Callout button text": "متن دکمه فراخوان", + "Skip callOut": "پرش از تماس", + "Form button text": "متن دکمه فرم", + "Theme color": "رنگ تم", + "Featured image": "تصویر شاخص", + "Full Preview": "پیش نمایش کامل", + "Try some of these colors:": "برخی از این رنگ ها را امتحان کنید:", + "Included fields": "زمینه های موجود", + "Deal": "خط لوله فروش", + "Deals": "خطوط لوله فروش", + "New Product & Service": "خدمات و خدمات جدید", + "No product or services": "هیچ محصولی یا خدماتی ندارد", + "UOM": "UOM", + "Quantity": "تعداد", + "Unit price": "قیمت واحد", + "Discount": "تخفیف", + "Tax": "مالیات", + "Ticket": "بلیط", + "Task": "وظیفه", + "Select company": "شرکت را انتخاب کنید", + "Select customer": "مشتری را انتخاب کنید", + "Note": "توجه داشته باشید", + "Assigned to": "اختصاص یافته به", + "Move": "حرکت", + "Move deal": "حرکت معامله", + "Copy": "کپی 🀄", + "Close date": "تاریخ نزدیک", + "Choose product & service": "محصول و خدمات را انتخاب کنید", + "Select product & service": "محصول و خدمات را انتخاب کنید", + "Please, select a close date": "لطفاً تاریخ نزدیک را انتخاب کنید", + "Create a new Product": "محصولی جدید ایجاد کنید", + "New Product": "محصول جدید", + "SKU": "SKU", + "Choose a company": "شرکتی را انتخاب کنید", + "Choose a customer": "مشتری را انتخاب کنید", + "Choose a board": "هیئت مدیره را انتخاب کنید", + "Choose a pipeline": "خط لوله را انتخاب کنید", + "Manage Board & Pipeline": "مدیریت صفحه و خط لوله", + "Choose a stage": "مرحله ای را انتخاب کنید", + "Deal Settings": "تنظیمات خط لوله فروش", + "Ticket Settings": "تنظیمات بلیط", + "Task Settings": "تنظیمات کار", + "Boards & Pipelines": "تابلوها و خطوط لوله", + "Product & Service": "محصولات و خدمات", + "There is no pipeline in this board.": "خط لوله ای در این صفحه وجود ندارد.", + "There is no board": "هیچ تخته ای وجود ندارد", + "New Board": "صفحه جدید", + "Add pipeline": "خط لوله را اضافه کنید", + "Create one": "یکی بساز", + "Edit pipeline": "خط لوله را ویرایش کنید", + "Add stage": "مرحله را اضافه کنید", + "Board": "تخته", + "Pipeline": "خط لوله", + "Stage": "صحنه", + "Stage name": "نام صحنه", + "Add a deal": "معامله اضافه کنید", + "Add a task": "اضافه کردن یک کار", + "Add a ticket": "بلیط اضافه کنید", + "Priority": "اولویت", + "Critical": "بحرانی", + "High": "بالا", + "Normal": "معمولی", + "Low": "کم", + "Attachments": "پیوست ها", + "Source": "منبع", + "Select a source": "یک منبع را انتخاب کنید", + "Upload an attachment": "پیوست را بارگذاری کنید", + "Description": "شرح", + "Select a priority": "اولویت را انتخاب کنید", + "Edit deal": "معامله را ویرایش کنید", + "Edit task": "ویرایش کار", + "Edit ticket": "ویرایش بلیط", + "Add Product / Service": "اضافه کردن محصول / خدمات", + "Reply tweet": "توییت پاسخ دهید", + "Tweet": "توییت", + "Details": "جزئیات", + "View Profile": "مشاهده پروفایل", + "Empty Notes": "یادداشت های خالی", + "Mini-resume": "رزومه کوتاه", + "You cannot update this property": "شما نمی توانید این ویژگی را به روز کنید", + "Desktop": "دسکتاپ", + "Mobile": "سیار", + "Tablet": "قرص", + "Amount": "میزان", + "Owner": "صاحب", + "Department": "دپارتمان", + "Lead Status": "وضعیت پاپ آپ", + "Lifecycle State": "حالت چرخه عمر", + "Has Authority": "دارای اقتدار است", + "Do not disturb": "مزاحم نشوید", + "Parent Company": "شرکت مادر", + "Business Type": "نوع کسب و کار", + "Employees count": "کارمندان حساب می کنند", + "Yes": "آره", + "No": "نه", + "Copied": "کپی شده", + "General": "عمومی", + "Currency": "واحد پول", + "Unit of measurement": "واحد اندازه گیری", + "Create another board": "تابلوی دیگری ایجاد کنید", + "No pipeline": "خط لوله ای نیست", + "No stage": "مرحله ای نیست", + "No deal": "هیچ معامله", + "Background": "زمینه", + "Choose": "انتخاب کنید", + "Successfully saved.": "با موفقیت ذخیره شد.", + "Successfully moved.": "با موفقیت جابجا شد.", + "Successfully selected.": "با موفقیت انتخاب شد.", + "Body description here": "توضیحات بدن در اینجا", + "Thank you.": "متشکرم.", + "Choose a brand": "یک مارک انتخاب کنید", + "Write a title": "یک عنوان بنویسید", + "Contact": "مخاطب", + "Created by": "خلق شده توسط", + "Manage": "مدیریت کنید", + "Dropdown": "رها کردن", + "Slide-in Left": "اسلاید در سمت چپ", + "Slide-in Right": "اسلاید در سمت راست", + "Enter name": "نام را وارد کنید", + "Delivered": "تحویل داده شده", + "Clicked": "کلیک کرد", + "Complaint": "شکایت", + "Bounce": "گزاف گویی", + "Rendering Failure": "ارائه عدم موفقیت", + "Rejected": "رد شد", + "Action": "عمل", + "Please select one to merge": "لطفاً یکی را انتخاب کنید تا ادغام شود", + "Filter by date": "فیلتر براساس تاریخ", + "Total conversations": "کل مکالمات", + "Filter by form": "فیلتر بر اساس فرم", + "Supporters": "حامیان", + "Import histories": "تاریخچه های واردات", + "Imported Date": "تاریخ وارد شده", + "Imported User": "کاربر وارد شده", + "Export customers": "صادرات مشتری", + "Import customers": "واردات مشتری", + "Export companies": "شرکت های صادراتی", + "Import companies": "شرکت های وارداتی", + "All customers imported successfully": "همه مشتریانی که با موفقیت وارد شدند", + "There aren't any imports": "هیچ وارداتی وجود ندارد", + "Successfully Removed all customers": "با موفقیت تمام مشتریان حذف شد", + "You can only import max 600 at a time": "شما فقط می توانید حداکثر 600 بار همزمان وارد کنید", + "Invalid import type": "نوع واردات نامعتبر است", + "Last updated": "اخرین به روز رسانی", + "Filter by lead status": "فیلتر بر اساس وضعیت Pop Ups", + "No lead status chosen": "هیچ وضعیت سرب انتخاب نشده است", + "Schedule:": "برنامه:", + "Every Day": "هر روز", + "Every Month": "هر ماه", + "Every Year": "هر سال", + "Every Monday": "هر دوشنبه", + "Every Tuesday": "هر سه شنبه", + "Every Wednesday": "هر چهارشنبه", + "Every Thursday": "هر پنجشنبه", + "Every Friday": "هر جمعه", + "Every Saturday": "هر شنبه", + "Every Sunday": "هر یکشنبه", + "Choose a schedule day": "یک روز برنامه را انتخاب کنید", + "Choose a schedule time": "زمان برنامه را انتخاب کنید", + "Won": "برنده شد", + "Lost": "کم شده", + "App store": "فروشگاه برنامه", + "App store menu": "منوی فروشگاه برنامه", + "In Progress": "در حال پیش رفت", + "It`s size exceeds the limit 10mb": "اندازه آن از حد مجاز 10mb است", + "Congrats! Your email sent successfully!": "تبریک می گویم! ایمیل شما با موفقیت ارسال شد!", + "Works with messenger": "با پیام رسان کار می کند", + "Knowledge base topic": "مبحث پایه دانش", + "Package version": "نسخه بسته بندی", + "Branch name": "نام شعبه", + "Abbreviated": "مخفف", + "User": "کاربر", + "Recent conversations": "مکالمات اخیر", + "Start new conversation": "مکالمه جدید را شروع کنید", + "Talk with support staff": "با کارمندان پشتیبانی صحبت کنید", + "Send a message": "ارسال یک پیام", + "Volume Report By Customer": "گزارش حجم توسط مشتری", + "Export Report": "گزارش صادرات", + "We`re ready to help you.": "ما آماده کمک به شما هستیم.", + "Please choose a product": "لطفاً محصولی را انتخاب کنید", + "Please choose a currency": "لطفاً ارز انتخاب کنید", + "No board": "هيئت", + "Empty": "خالی", + "There is no account.": "حساب کاربری نیست", + "There is no tag.": "هیچ برچسب وجود ندارد.", + "Skip for now": "اکنون پرش کنید", + "Go to Inbox": "به صندوق ورودی بروید", + "Messenger Language": "زبان مسنجر", + "Messenger name": "نام مسنجر", + "Skip": "پرش", + "Finish": "پایان", + "Show": "نشان دادن", + "Hide": "پنهان شدن", + "Previous": "قبلی", + "Users": "کاربران", + "users": "کاربران", + "brands": "مارک ها", + "messengers": "پیام رسان ها", + "channels": "کانالها", + "Emails": "ایمیل", + "Messengers": "پیام رسان ها", + "You already have": "همین حالا داری", + "There is another": "مورد دیگری وجود دارد", + "Let's create your brand": "بیایید نام تجاری خود را ایجاد کنیم", + "Invite users": "کاربران را دعوت کنید", + "Let's grow your team": "بیایید تیم شما رشد کنیم", + "Invite": "دعوت", + "Let's start": "بیا شروع کنیم", + "Start messaging now!": "اکنون پیام را شروع کنید!", + "Create channel": "ایجاد کانال", + "Get started on your channel": "در کانال خود شروع کنید", + "Create your first messenger": "اولین پیام رسان خود را ایجاد کنید", + "Welcome": "خوش آمدی", + "Nothing inserted": "هیچ چیز درج نشده است", + "Empty emails": "ایمیل های خالی", + "Initial setup": "راه اندازی اولیه", + "Add another": "اضافه کردن یکی دیگر", + "Don't show again": "دوباره نشان ندهید", + "No other pipeline": "خط لوله دیگری نیست", + "No other boards": "تابلوهای دیگر", + "I'm ready to get started": "من برای شروع کار آماده هستم", + "Welcome paragraph": "ما از داشتن شما بسیار خوشحالیم. بیایید یک لحظه به شما راه اندازی شود", + "Get notified and notify others to keep everything up to date": "مطلع شوید و به دیگران اطلاع دهید تا همه چیز را به روز نگه دارید", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "اگر تیم شما پیامهایی را که شما در سایت ارسال کرده اید دریافت نکرده است ، ما می توانیم از طریق ایمیل برای آنها ارسال کنیم", + "Send an email and notify members that they've been invited!": "ایمیل بفرستید و اعضا را که از آنها دعوت شده اند مطلع کنید!", + "January": "ژانویه", + "February": "فوریه", + "March": "مارس", + "April": "آوریل", + "May": "ممکن است", + "June": "ژوئن", + "July": "جولای", + "August": "اوت", + "September": "سپتامبر", + "October": "اکتبر", + "November": "نوامبر", + "December": "دسامبر", + "Today": "امروز", + "Sales": "حراجی", + "Monthly view": "نمای ماهانه", + "Filter by": "محدود شده توسط", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "شما می توانید با ایجاد یک برند و با اضافه کردن کانالها ، نیازهای مشتریان خود را بهتر تجزیه و تحلیل کرده و به حل مشکلات آنها کمک کنید", + "Grow and add users to your team! Assign, designate and let them do what they do best": "رشد و اضافه کردن کاربران به تیم خود! اختصاص دهید ، تعیین کنید و به آنها اجازه دهید کاری را که انجام می دهند به بهترین شکل انجام دهند", + "Stay up to date with every single customer feedback and create more meaningful conversations": "با هر بازخورد مشتری به روز بمانید و مکالمات معنادار تری ایجاد کنید", + "Create brand channels that are specifically categorized by type and activity": "کانال های مارک تجاری ایجاد کنید که به طور خاص بر اساس نوع و فعالیت طبقه بندی شوند", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "یک سربرگ را به اینجا اضافه کنید و آن را در ویجت مسنجر خود ببینید! برای دیدن موارد در صندوق ورودی خود ، لطفاً اطمینان حاصل کنید که در کانال شما اضافه شده است.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "می توانید از بسیاری از ادغام های پیام رسان ما انتخاب کرده و به پایگاه دانش خود اضافه کنید. پایگاه دانش در تب ویجت پیام رسان شما ظاهر می شود. برای انجام این کار ، لطفاً به پایگاه دانش خود ایجاد و اضافه کنید.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "امضای ایمیل فرصتی برای اشتراک گذاری اطلاعاتی است که به ایجاد شناخت و اعتماد کمک می کند.", + "Let's start taking care of your customers": "بیایید مراقبت از مشتریان را شروع کنیم", + "Add in your first company!": "اولین شرکت خود را اضافه کنید!", + "Choose from our many integrations and add to your channel": "از بسیاری از ادغام های ما استفاده کنید و به کانال خود اضافه کنید", + "Let's get you messaging away!": "بیایید پیام را از شما دور کنیم!", + "Whoops! No messages here but you can always start": "وای! هیچ پیامی در اینجا وجود ندارد اما همیشه می توانید شروع کنید", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "مقالات می توانند به تعدادی از مواردی که مشتریان شما با آن روبرو هستند پرداخته شود. انواع مقالات دانش می تواند شامل راه حل هایی برای موضوعات مشترک ، اسناد مربوط به محصول یا ویژگی ها ، سؤالات متداول و موارد دیگر باشد.", + "Oops! No data here": "اوه! در اینجا داده ای وجود ندارد", + "Start adding integrations now!": "اکنون اضافه کردن ادغام ها را شروع کنید!", + "Add an integration in this Brand": "یکپارچه سازی در این برند را اضافه کنید", + "Oh dear! You have no imports": "اوه عزیزم! شما هیچ وارداتی ندارید", + "A strong customer engagement can help to further brand growth and loyalty": "مشارکت جدی مشتری می تواند به رشد و وفاداری بیشتر برند کمک کند", + "Get started on your pipeline": "در خط لوله خود شروع کنید", + "Connect to Facebook messages right from your Team Inbox": "از طریق صندوق ورودی تیم خود به پیام های فیس بوک وصل شوید", + "Tweet back to your DMs right from your Team Inbox": "درست از صندوق ورودی تیم خود به DM های خود بازگردید", + "Connect straight to your Gmail and get those emails going": "مستقیم به Gmail وصل شوید و آن ایمیل ها را ادامه دهید", + "Find your lead forms right here in your Widget": "اشکال اصلی خود را در اینجا در ویجت خود بیابید", + "Get access to your Knowledge Base right in your Widget": "درست در ویجت به پایگاه دانش خود دسترسی پیدا کنید", + "Soon you'll be able to connect Viber straight to your Team Inbox": "به زودی می توانید Viber را مستقیماً به صندوق ورودی تیم خود وصل کنید", + "Get a hold of your Whatsapp messages through your Team Inbox": "پیامهای Whatsapp خود را از طریق صندوق ورودی تیم دریافت کنید", + "Connect with Wechat and start messaging right from your Team Inbox": "با Wechat ارتباط برقرار کنید و پیام را مستقیماً از صندوق ورودی تیم خود شروع کنید", + "Find feedback that has been gathered from various customer engagement channels.": "بازخورد هایی را که از کانال های مختلف جذب مشتری جمع آوری شده است پیدا کنید.", + "A report on the total number of customer feedback responses given by team members.": "گزارشی از تعداد کل پاسخهای بازخورد مشتری توسط اعضای تیم داده شده است.", + "The average time a team member solved a problem based on customer feedback.": "میانگین زمانی که یک عضو تیم بر اساس بازخورد مشتری یک مشکل را حل کرد.", + "You can find stats that defines the average response time by each team member.": "می توانید آماری پیدا کنید که میانگین زمان پاسخ توسط هر یک از اعضای تیم را تعیین کند.", + "Oh boy, looks like you need to get a head start on your deals": "اوه پسر ، به نظر می رسد که باید معاملات خود را شروع کنید", + "Open segments and starting add details": "بخش ها را باز کنید و جزئیات را اضافه کنید", + "Now easier to find contacts according to your brand": "اکنون راحت تر می توانید مخاطبین را مطابق با نام تجاری خود پیدا کنید", + "Search and filter customers by form": "مشتریان را به صورت فرم جستجو و فیلتر کنید", + "There is always a lead!": "همیشه سرب وجود دارد!", + "Calendar": "تقویم", + "Columns": "ستون ها", + "columns": "ستون ها", + "Linked Accounts": "حساب های مرتبط", + "Select account": "حساب را انتخاب کنید", + "Select account ...": "حساب را انتخاب کنید ...", + "Add Account": "اضافه کردن حساب", + "Remove Account": "حذف حساب", + "You can upload only image file": "فقط می توانید پرونده تصویری .png یا .jpg را بارگذاری کنید", + "Permissions": "مجوزها", + "New permission": "اجازه جدید", + "New group": "گروه جدید", + "Users groups": "گروه های کاربران", + "Choose the module": "ماژول را انتخاب کنید", + "Choose the actions": "اقدامات را انتخاب کنید", + "Choose the users": "کاربران را انتخاب کنید", + "Choose the groups": "گروه ها را انتخاب کنید", + "Choose groups": "گروه ها را انتخاب کنید", + "Allow": "اجازه", + "Invitation Status": "وضعیت دعوت", + "Permission": "اجازه", + "data successfully imported": "داده با موفقیت وارد شد", + "Show result": "نمایش نتیجه", + "Importing": "واردات", + "data": "داده ها", + "errors acquired": "خطاهای به دست آمده", + "There are": "وجود دارد", + "Continue": "ادامه هید", + "Create brand": "ایجاد مارک", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "اولین پیام زنده گپ و پیام درون برنامه خود را ایجاد کنید. برای تعامل معنادارتر با هر بازخورد مشتری به روز باشید.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "یک کانال نمایی کامل از همه مارک ها و برنامه های کاربردی آن همه را در یک مکان نشان می دهد. می توانید تمام پیام های در آینده را در صندوق ورودی تیم خود مشاهده کنید.", + "Hooray and Congratulations! You've completed the initial setup!": "هورای و تبریک! شما تنظیم اولیه را انجام داده اید!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "قبل از کد کد زیر را وارد کنید در هر صفحه مورد نظر چت erx نشان داده شود.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "قبل از برچسب بدن در صفحه ای که می خواهید منجر به ظاهر شود ، کد زیر را چسبانید", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "اگر نوع جریان شما تعبیه شده است ، کد زیر را نیز اضافه کنید که می خواهید منجر به ظاهر شود", + "If your flow type is popup paste the code below additionally in your button": "اگر نوع جریان شما ظاهر شده است ، کد زیر را علاوه بر دکمه خود قرار دهید", + "Choose messengers": "پیام رسان ها را انتخاب کنید", + "erxes allows you to create multiple messengers": "erxes به شما امکان می دهد چندین پیام رسان ایجاد کنید", + "erxes allows you to create multiple brands": "erxes به شما امکان می دهد چندین مارک ایجاد کنید", + "erxes allows you to create multiple channels": "erxes به شما امکان می دهد چندین کانال ایجاد کنید", + "Contacts": "مخاطب", + "Create group": "ایجاد گروه", + "Visitors": "بازدید کنندگان", + "Due in the next day": "موعد در روز بعد", + "Due in the next week": "در هفته بعد", + "Due in the next month": "موعد در ماه آینده", + "Has no close date": "تاریخ نزدیکی ندارد", + "Over due": "موعد مقرر", + "Clear Filter": "فیلتر را پاک کنید", + "Remove this filter": "این فیلتر را بردارید", + "Filtering is on": "فیلتر روشن است", + "Choose products": "محصولات را انتخاب کنید", + "Choose companies": "شرکت ها را انتخاب کنید", + "Choose customers": "مشتریان را انتخاب کنید", + "Choose team members": "اعضای تیم را انتخاب کنید", + "erxes Inc": "وارز", + "Get": "گرفتن", + "Download ios app for free on the App Store": "برنامه ios را به صورت رایگان در فروشگاه App بارگیری کنید.", + "Download android app for free on the Google play": "برنامه Android را به صورت رایگان در Google Play بارگیری کنید.", + "Please upgrade your browser to use erxes!": "لطفاً برای استفاده از erxes ، مرورگر خود را ارتقا دهید!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "متأسفانه ، شما در حال مرورگری هستید که ممکن است کاملاً با erxes سازگار نباشد.", + "Please use recommended version": "لطفاً از نسخه پیشنهادی استفاده کنید", + "Messenger data": "داده های مسنجر", + "Customer field data": "داده های مربوط به مشتری", + "Others": "دیگران", + "Select brand": "مارک را انتخاب کنید", + "There is no permissions in this group": "در این گروه هیچ مجوزی وجود ندارد.", + "There is no group": "هیچ گروهی وجود ندارد", + "User groups": "گروه های کاربر", + "What action can do": "چه عملی می تواند انجام دهد", + "Who can": "که می تواند", + "Grant permission": "اجازه", + "Check if permission is allowed": "بررسی کنید که آیا اجازه مجاز است یا خیر", + "Then": "سپس", + "Or": "یا", + "Auto message description": "بر اساس نام تجاری / برچسب / بخش آنها ، ایمیل های هدفمند و گپ را برای کاربران وارد شده ارسال کنید. می توانید زمان خود را برای ارسال ایمیل یا گپ از قبل تنظیم کنید. طراحی چت می تواند به صورت snaps ، نشان و پیام کامل درآید و می تواند یک متن یا ویدیو باشد.", + "Manual message description": "بر اساس نام تجاری / برچسب / بخش آنها ، ایمیل های هدفمند و گپ را برای کاربران وارد شده ارسال کنید. بلافاصله پس از کلیک روی دکمه ذخیره ، یک ایمیل یا گپ ارسال می شود. طراحی چت می تواند به صورت snaps ، نشان و پیام کامل درآید و می تواند یک متن یا ویدیو باشد.", + "Visitor auto message description": "بر اساس صفحه بازدید ، فعالیت ، کشور محل اقامت و شهرشان ، چتهای هدفمند را برای بازدید کنندگان خارج از سیستم در وب سایت ارسال کنید. طراحی چت می تواند به صورت snaps ، نشان و پیام کامل درآید و می تواند یک متن یا ویدیو باشد.", + "Required field": "زمینه مورد نیاز!", + "Invalid email format! Please enter a valid email address": "قالب ایمیل نامعتبر است! لطفا یک آدرس ایمیل معتبر وارد کنید.", + "Invalid link": "پیوند نامعتبر است!", + "Maximum length is": "حداکثر طول آن است", + "characters": "شخصیت ها!", + "Invalid number format! Please enter a valid number": "قالب شماره نامعتبر است! لطفا یک شماره معتبر وارد کنید.", + "Insert email template to content": "الگوی ایمیل را به محتوا وارد کنید", + "Logs": "سیاههها", + "There are no logs recorded": "هیچ سابقه ای ثبت نشده است", + "Module": "مدول", + "Unchanged fields": "زمینه های بدون تغییر", + "Changed fields": "زمینه های تغییر یافته", + "Create": "ايجاد كردن", + "Update": "به روز رسانی", + "Changes": "تغییر می کند", + "Choose start date": "تاریخ شروع را انتخاب کنید", + "Choose end date": "تاریخ پایان را انتخاب کنید", + "Permission denied": "اجازه رد شد", + "Old data": "داده های قدیمی", + "New data": "داده های جدید", + "Archive": "بایگانی", + "NetworkError": "تلاش برای برقراری ارتباط است. تغییرات ایجاد شده اکنون ممکن است ذخیره نشوند.", + "Email add account description question": "آیا شما در حال اتصال به یک حساب ایمیل مشترک هستید؟", + "Email add account description": "وقتی ایمیلی را به صندوق ورودی مکالمات خود وصل می کنید ، آن را به عنوان یک اشتراک مشترک وصل می کنید. هر کسی که به صندوق ورودی تیم شما دسترسی داشته باشد ، پیام های ارسال شده به حساب های مشترک را می توان مشاهده کرد.", + "No connected email": "ایمیلی وصل نشده است", + "Your email will be sent with Erxes email template": "ایمیل شما با الگوی ایمیل Erxes ارسال می شود" +} diff --git a/ui/src/locales/fr.json b/ui/src/locales/fr.json index b6245e77f9d..c56c9acc3fe 100644 --- a/ui/src/locales/fr.json +++ b/ui/src/locales/fr.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "Êtes vous sûr ?", "Yes, I am": "Oui, je le suis.", "No, Cancel": "Non, Annuler", diff --git a/ui/src/locales/hi.json b/ui/src/locales/hi.json index a176ee9f8a8..06534424e3e 100644 --- a/ui/src/locales/hi.json +++ b/ui/src/locales/hi.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "EN": "Hindi", "Are you sure?": "क्या आपको यकीन है?", "Yes, I am": "हां मैं हूं", diff --git a/ui/src/locales/id_ID.json b/ui/src/locales/id_ID.json new file mode 100644 index 00000000000..80d9a3bfbf1 --- /dev/null +++ b/ui/src/locales/id_ID.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Apakah kamu yakin Ini tidak dapat dibatalkan.", + "Yes, I am": "Ya, benar", + "No, Cancel": "Tidak, Batalkan", + "Filter by tags": "Saring dengan tag", + "There is no data": "Tidak ada data", + "There is no data.": "Tidak ada data.", + "Load more": "Muat lebih banyak", + "There aren't any activities at the moment.": "Tidak ada kegiatan saat ini.", + "Reset your password": "Mereset password Anda", + "Email me the instruction": "Kirimi saya instruksinya melalui email", + "Sign in": "Masuk", + "Change password": "Ganti kata sandi", + "Set your new password": "Tetapkan kata sandi baru Anda", + "Forgot password?": "Tidak ingat kata sandi?", + "Photo": "Foto", + "Name": "Nama", + "Views": "Tampilan", + "Conversion": "Konversi", + "Go to import": "Pergi untuk mengimpor", + "Conversion rate": "Tingkat konversi", + "Contacts gathered": "Kontak dikumpulkan", + "Create lead": "Buat Pop Ups", + "Form title": "Judul formulir", + "Related": "Terkait", + "Form description": "Deskripsi formulir", + "Position": "Posisi", + "Username": "Nama pengguna", + "Email": "Surel", + "sec": "detik", + "Twitter username": "nama pengguna Twitter", + "Inbox": "Kotak masuk", + "Workflow": "Alur kerja", + "Watch": "Menonton", + "Watching": "Menonton", + "Team Inbox": "Kotak Masuk Tim", + "Customers": "Pelanggan", + "Companies": "Perusahaan", + "Engage": "Mengikutsertakan", + "Insights": "Wawasan", + "Knowledge Base": "Dasar pengetahuan", + "Settings": "Pengaturan", + "Resolve": "Menyelesaikan", + "Send": "Kirim", + "No company": "Tidak ada perusahaan", + "No customer": "Tidak ada pelanggan", + "Not tagged yet": "Belum ditandai", + "New note": "Catatan baru", + "Conversation": "Percakapan", + "Notes": "Catatan", + "Activity": "Aktivitas", + "Basic info": "Info dasar", + "Size": "Ukuran", + "Other": "Lain", + "Industry": "Industri", + "Website": "Situs web", + "Plan": "Rencana", + "About": "Tentang", + "Discard": "Membuang", + "Save": "Menyimpan", + "Create response template": "Buat template respons", + "Associate": "Rekan", + "No tags": "Tidak ada tag", + "Add customer": "Tambahkan pelanggan", + "No segments": "Tanpa segmen", + "Manage Columns": "Kelola Kolom", + "New customer": "Pelanggan baru", + "Add company": "Tambahkan perusahaan", + "New company": "Perusahaan baru", + "Choose which column you see": "Pilih kolom mana yang Anda lihat", + "There is no engage message.": "Tidak ada pesan keterlibatan.", + "Add Knowledge base": "Tambahkan basis Pengetahuan", + "Add knowledge base.": "Tambahkan basis pengetahuan.", + "New Channel": "Saluran Baru", + "Edit": "Edit", + "Edit basic info": "Edit info dasar", + "Manage integration": "Kelola integrasi", + "Manage Integration": "Kelola Integrasi", + "Choose new brand": "Pilih merek baru", + "Edit integration": "Edit integrasi", + "Integration": "Integrasi", + "Integration menu": "Menu integrasi", + "New Brand": "Merek Baru", + "Add facebook page": "Tambahkan halaman Facebook", + "Add integrations": "Tambahkan integrasi", + "Add messenger": "Tambahkan messenger", + "There is no lead.": "Tidak ada petunjuk.", + "New response template": "Template respons baru", + "Cancel": "Membatalkan", + "Public": "Publik", + "Private": "Pribadi", + "New email template": "Template email baru", + "Local publisher's email template": "Templat email penerbit lokal", + "New user": "Pengguna baru", + "Load More": "Muat lebih banyak", + "Session count": "Jumlah sesi", + "Last seen at": "Terakhir terlihat di", + "Tags": "Tag", + "Member": "Anggota", + "Remove": "Menghapus", + "No companies added yet!": "Belum ada perusahaan yang ditambahkan!", + "Merge": "Menggabungkan", + "First Name": "Nama depan", + "Last Name": "Nama keluarga", + "First name": "Nama depan", + "Last name": "nama keluarga", + "Primary Email": "Email utama", + "Phone": "Telepon", + "Is user": "Apakah pengguna", + "Save & New": "Simpan & Baru", + "Save & Close": "Simpan & Tutup", + "Close": "Menutup", + "Customer properties": "Properti pelanggan", + "Device properties": "Properti perangkat", + "Location": "Lokasi", + "Browser": "Browser", + "Platform": "Peron", + "IP Address": "Alamat IP", + "Hostname": "Nama host", + "Language": "Bahasa", + "User Agent": "Agen pengguna", + "Other properties": "Properti lainnya", + "Facebook": "Facebook", + "Facebook profile": "Profil Facebook", + "Messenger usage": "Penggunaan messenger", + "Status": "Status", + "Online": "On line", + "Offline": "Offline", + "Twitter": "Indonesia", + "Twitter quote": "Kutipan Twitter", + "Retweet": "Retweet", + "Screen name": "Nama layar", + "Don't see the result you're looking for? ": "Tidak melihat hasil yang Anda cari?", + "Merged Info": "Info yang Digabungkan", + "E-mail": "Surel", + "Integrations": "Integrasi", + "integration": "integrasi", + "Brands": "Merek", + "Start date": "Mulai tanggal", + "End date": "Tanggal akhir", + "lead": "Muncul tiba-tiba", + "twitter": "Indonesia", + "facebook": "facebook", + "messenger": "kurir", + "Title": "Judul", + "Brand": "Merek", + "Current Password": "kata sandi saat ini", + "Current password": "Kata sandi saat ini", + "New Password": "kata sandi baru", + "Re-type Password to confirm": "Ketik ulang kata sandi untuk mengonfirmasi", + "Signature": "Tanda tangan", + "simple": "sederhana", + "custom": "adat", + "default": "standar", + "default language": "bahasa default", + "primary": "utama", + "Content": "Kandungan", + "Save & draft": "Menyimpan konsep", + "Save & live": "Simpan & hidup", + "Message:": "Pesan:", + "Email template:": "Template email:", + "Email subject:": "Subjek email:", + "From": "Dari", + "Message type:": "Jenis pesan:", + "Sent as:": "Dikirim sebagai:", + "Brand:": "Merek:", + "Add rule": "Tambahkan aturan", + "Last online": "Terakhir online", + "No Activities": "Tidak Ada Aktivitas", + "There is no customer.": "Tidak ada pelanggan.", + "Properties": "Properti", + "Customize ": "Sesuaikan", + "Kind": "Jenis", + "All": "Semua", + "Auto": "Mobil", + "Visitor auto": "Pengunjung otomatis", + "Manual": "Manual", + "Delivered to a user s email inbox": "Dikirim ke kotak masuk email pengguna", + "Customize with your own templates": "Kustomisasi dengan templat Anda sendiri", + "Delivered inside your app": "Dikirim di dalam aplikasi Anda", + "Reach active users": "Jangkau pengguna aktif", + "Channel": "Saluran", + "Edit columns": "Edit kolom", + "Auto message": "Pesan otomatis", + "Manual message": "Pesan manual", + "Visitor auto message": "Pesan otomatis pengunjung", + "Actions": "Tindakan", + "Created date": "Tanggal dibuat", + "Type": "Tipe", + "Failed": "Gagal", + "Sent": "Terkirim", + "Total": "Total", + "Pause": "Jeda", + "Set live": "Hidupkan", + "Sending": "Mengirim", + "Delete": "Menghapus", + "Choose segment": "Pilih segmen", + "To:": "Untuk:", + "Messenger kind:": "Jenis messenger:", + "Title:": "Judul", + "Channel:": "Saluran", + "No items": "Tidak ada barang", + "New": "Baru", + "Options:": "Pilihan:", + "Options": "Pilihan", + "Type:": "Tipe:", + "Add": "Menambahkan", + "Validation:": "Validasi", + "Date": "Tanggal", + "Number": "Jumlah", + "Text:": "Teks:", + "Description:": "Deskripsi:", + "This item is requried": "Item ini di-requried", + "Preview": "Pratinjau", + "Column name": "Nama kolom", + "Visible": "Terlihat", + "Visibility": "Visibilitas", + "Choose person": "Pilih orang", + "Conversation Details": "Rincian Percakapan", + "Opened": "Terbuka", + "Conversations": "Percakapan", + "Channels": "Saluran", + "Select all": "Pilih Semua", + "Filter by tag": "Saring dengan tag", + "Filter by integrations": "Saring berdasarkan integrasi", + "Filter by brand": "Saring berdasarkan merek", + "Filter by channel": "Saring berdasarkan saluran", + "Filter by status": "Saring berdasarkan status", + "# Channel": "# Saluran", + "Unassigned": "Tidak ditugaskan", + "Participating": "Berpartisipasi", + "Resolved": "Terselesaikan", + "View more": "Lihat lebih banyak", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Pelanggan sedang offline. Klik untuk menyembunyikan dan mengirim pesan dan mereka akan menerimanya saat berikutnya online.", + "No templates": "Tidak ada templat", + "Save as template": "Simpan sebagai templat", + "Daily First Response Resolve Rate": "Tingkat Selesaikan Respons Pertama Harian", + "Daily First Response Resolve Rate by Team Members": "Respons Pertama, Tingkat Selesaikan oleh Anggota Tim", + "Daily Response Close Resolve Rate by Team Members": "Tanggapan Harian Tutup Tingkat Penyelesaian oleh Anggota Tim", + "Volume Report": "Laporan Volume", + "Feedbacks gathered through various customer engagement channels.": "Masukan dikumpulkan melalui berbagai saluran keterlibatan pelanggan.", + "Response Report": "Laporan Tanggapan", + "Total number of response for customer feedbacks, by each staff.": "Jumlah total tanggapan untuk umpan balik pelanggan, oleh masing-masing staf.", + "Response Close Report": "Respons Tutup Laporan", + "Average time of each staff solving problems that based on customer feedbacks.": "Waktu rata-rata setiap staf memecahkan masalah yang didasarkan pada umpan balik pelanggan.", + "First Response Report": "Laporan Tanggapan Pertama", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Menanggapi waktu untuk satu umpan balik. Statistik akan menentukan waktu respons rata-rata oleh setiap staf.", + "Daily Response Close Resolve Rate": "Respons Harian Tutup Tingkat Penyelesaian", + "Daily Response Close Resolve rate by Team Members": "Respon Harian Tutup Tetapkan tingkat oleh Anggota Tim", + "Response Times summary": "Ringkasan Response Times", + "Response Trend": "Tren Respons", + "Punch card": "Kartu punch", + "Response by team members": "Tanggapan oleh anggota tim", + "Tag": "Menandai", + "Internal note": "Catatan internal", + "Manage templates": "Kelola template", + "Volume summary": "Ringkasan volume", + "Volume Trend": "Tren Volume", + "Summary": "Ringkasan", + "Install code": "Pasang kode", + "No copyable code": "Tidak ada kode yang dapat disalin", + "Manage Knowledge Base": "Kelola Basis Pengetahuan", + "Add Category": "Tambahkan kategori", + "Add Article": "Tambahkan Artikel", + "Customer engagement. REDEFINED.": "Keterlibatan pelanggan. DITENTUKAN KEMBALI.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes adalah AI yang memenuhi platform perpesanan sumber terbuka untuk penjualan, pemasaran, dan dukungan", + "404. This page is not found.": "404. Halaman ini tidak ditemukan.", + "erxes is an open-source messaging platform for customer success": "erxes adalah platform perpesanan sumber terbuka untuk kesuksesan pelanggan", + "Notification settings": "Pengaturan pemberitahuan", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Platform pemasaran, penjualan, dan layanan pelanggan yang dirancang untuk membantu bisnis Anda menarik lebih banyak pelanggan yang terlibat. Ganti Hubspot dengan misi dan ekosistem berbasis komunitas.", + "Mark Page Read": "Tandai Baca Halaman", + "Mark All Read": "Tandai Semua Baca", + "Coming soon": "Segera akan datang", + "Looks like you are all caught up": "Sepertinya Anda semua terjebak", + "AI": "AI", + "See all": "Lihat semua", + "Select a field": "Pilih satu bidang", + "Add condition": "Tambahkan kondisi", + "Parent segment conditions": "Kondisi segmen induk", + "Filter by segments": "Saring berdasarkan segmen", + "New segment": "Segmen baru", + "Manage segments": "Kelola segmen", + "Users who match": "Pengguna yang cocok", + "any": "apa saja", + "all": "semua", + "of the below conditions": "dari kondisi di bawah ini", + "Sub segment of": "Sub segmen", + "Color": "Warna", + "Filters": "Filter", + "User(s) will recieve this message": "Pengguna akan menerima pesan ini", + "Color code": "Kode warna", + "Engage Message": "Libatkan Pesan", + "Item counts": "Jumlah barang", + "Appearance": "Penampilan", + "Hours, Availability & Other configs": "Jam, Ketersediaan & Konfigurasi lainnya", + "There is no brand": "Tidak ada merek", + "There is no integration in this channel.": "Tidak ada integrasi dalam saluran ini.", + "Template markup": "Markup template", + "Use html template here": "Gunakan template html di sini", + "Choose your email template type": "Pilih jenis templat email Anda", + "Email signatures": "Tanda tangan email", + "Personal Settings": "Pengaturan pribadi", + "Account Settings": "Pengaturan akun", + "Profile": "Profil", + "Get notification by email": "Dapatkan pemberitahuan melalui email", + "Admin": "Admin", + "Contributor": "Penyumbang", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Kami menyambut Anda dengan hangat ke erxes dan berharap untuk asosiasi kerja sehat jangka panjang dengan kami.", + "Hi, any questions?": "Hai, ada pertanyaan?", + "1 hour ago": "1 jam yang lalu", + "We need your help!": "Kami membutuhkan bantuan Anda!", + "6 minutes ago": "6 menit yang lalu", + "Write a reply ...": "Menulis balasan ...", + "App": "Aplikasi", + "From email": "Dari email", + "User email title": "Judul email pengguna", + "User email content": "Konten email pengguna", + "Admin emails": "Email admin", + "Admin email title": "Judul email admin", + "Admin email content": "Konten email admin", + "Redirect url": "Redirect url", + "On success": "Tentang kesuksesan", + "Load": "Beban", + "Success": "Keberhasilan", + "Thank content": "Terima kasih konten", + "Choose a custom color": "Pilih warna khusus", + "Choose a wallpaper": "Pilih wallpaper", + "Choose a logo": "Pilih logo", + "Visible online to visitor or customer": "Terlihat online untuk pengunjung atau pelanggan", + "Online messaging": "Pesan online", + "Welcome message": "Pesan selamat datang", + "Offline messaging": "Olahpesan offline", + "Away message": "Pesan jauh", + "Thank you message": "Pesan terima kasih", + "Hours & Availability": "Jam & Ketersediaan", + "Turn online/offline manually": "Putar online / offline secara manual", + "Set to follow your schedule": "Atur untuk mengikuti jadwal Anda", + "Other configs": "Konfigurasi lainnya", + "Notify customer": "Beri tahu pelanggan", + "Online hours": "Jam online", + "Add another time": "Tambahkan waktu lain", + "Time zone": "Zona waktu", + "Messenger": "Kurir", + "Knowledge base": "Dasar pengetahuan", + "Notification": "Pemberitahuan", + "Notifications": "Notifikasi", + "Show unread": "Tampilkan belum dibaca", + "Unread": "Belum dibaca", + "Recent": "Baru", + "Mark all as read": "tandai semua telah dibaca", + "Email Appearance": "Penampilan Email", + "Team Members": "Anggota tim", + "Account default": "Default akun", + "Team members": "Anggota tim", + "Full name": "Nama lengkap", + "Leads": "Muncul tiba-tiba", + "Email Signature": "Email Signature", + "Response Template": "Template Respons", + "Email Template": "Template Email", + "Response templates": "Template respons", + "Email templates": "Template email", + "Brand Name": "Nama merk", + "Current template": "Template saat ini", + "Created at": "Dibuat di", + "Manage Fields": "Kelola Fields", + "Duplicate": "Duplikat", + "Code": "Kode", + "Profile settings": "Pengaturan profil", + "Change Password": "Ganti kata sandi", + "Signatures are only included in response emails.": "Tanda tangan hanya disertakan dalam email tanggapan.", + "Signature template": "Template tanda tangan", + "You can use Markdown to format your signature.": "Anda dapat menggunakan Penurunan harga untuk memformat tanda tangan Anda.", + "Password": "Kata sandi", + "Password confirmation": "konfirmasi kata kunci", + "Choose the channels": "Pilih salurannya", + "Simple": "Sederhana", + "Custom": "Adat", + "Create a new Company": "Buat Perusahaan baru", + "New Company": "Perusahaan Baru", + "Edit name": "Edit nama", + "Customer": "Pelanggan", + "Add tag": "Tambahkan tag", + "Company": "Perusahaan", + "New message ": "Pesan baru", + "There aren’t any activities at the moment.": "Tidak ada kegiatan saat ini.", + "This item is required": "Item ini wajib diisi", + "Manage fields": "Kelola bidang", + "Add integrations ": "Tambahkan integrasi", + "Form": "Bentuk", + "Create a new Customer": "Buat Pelanggan baru", + "New Customer": "Pelanggan baru", + "Segments": "Segmen", + "Add a condition": "Tambahkan sebuah kondisi", + "Open": "Buka", + "Choose channel": "Pilih saluran", + "Who is this message for?": "Untuk siapa pesan ini?", + "Compose your message": "Tulis pesan Anda", + "No items added": "Tidak ada item yang ditambahkan", + "Submit": "Kirimkan", + "Next": "Lanjut", + "Save & Draft": "Menyimpan konsep", + "Save & Live": "Simpan & Langsung", + "From:": "Dari:", + "Pages": "Halaman", + "Links": "Tautan", + "Enter your password to Confirm": "Masukkan kata sandi Anda untuk mengonfirmasi", + "Number of visits": "Jumlah kunjungan", + "Written By": "Ditulis oleh", + "Icon": "Ikon", + "draft": "minuman", + "Twitter Username": "Nama pengguna Twitter", + "LinkedIn": "LinkedIn", + "Youtube": "Youtube", + "Github": "Github", + "Edit response": "Edit tanggapan", + "To send your message press Enter and Shift + Enter to add a new line": "Untuk mengirim pesan Anda tekan Enter dan Shift + Enter untuk menambahkan baris baru", + "To send your note press Enter and Shift + Enter to add a new line": "Untuk mengirim catatan Anda, tekan Enter dan Shift + Enter untuk menambahkan baris baru", + "Please enter an unit price. It should be a number": "Silakan masukkan harga satuan. Itu harus berupa angka", + "Type to search": "Ketik untuk mencari", + "Members": "Anggota", + "Choose integrations": "Pilih integrasi", + "Choose brands": "Pilih merek", + "Select a date": "Pilih tanggal", + "Click to select a date": "Klik untuk memilih tanggal", + "Choose users": "Pilih pengguna", + "Select Brand": "Pilih Merek", + "Write here Welcome message.": "Tulis di sini Pesan selamat datang.", + "Write here Away message.": "Tulis di sini Pesan jauh.", + "Write here Thank you message.": "Tulis di sini. Terima kasih.", + "Select app": "Pilih aplikasi", + "Enter new password": "Masukan kata sandi baru", + "Choose channels": "Pilih saluran", + "Select": "Pilih", + "select": "Pilih", + "Choose members": "Pilih anggota", + "Search": "Cari", + "your@email.com": "your@email.com", + "password": "kata sandi", + "registered@email.com": "terdaftar@email.com", + "new password": "kata sandi baru", + "Start typing to leave a note": "Mulai mengetik untuk meninggalkan catatan", + "Re-type password": "Ketikkan kembali kata sandi", + "Name:": "Nama:", + "Size:": "Ukuran:", + "Website:": "Situs web:", + "Industry:": "Industri:", + "Plan:": "Rencana:", + "There arent't any groups and fields": "Tidak ada grup dan bidang apa pun", + "Please add property Group first": "Silakan tambahkan Grup properti terlebih dahulu", + "Add group": "Tambahkan grup", + "Add Property": "Tambahkan Properti", + "Add Group & Field ": "Tambahkan Grup & Bidang", + "Add Group": "Tambahkan Grup", + "Edit Property": "Edit Properti", + "Group:": "Kelompok:", + "There arent't any fields in this group": "Tidak ada bidang dalam grup ini", + "Customer Properties": "Properti Pelanggan", + "Company Properties": "Properti Perusahaan", + "Add an option": "Tambahkan opsi", + "Copy to clipboard": "Menyalin ke clipboard", + "Go to home page": "Buka halaman beranda", + "Assign to": "Menetapkan ke", + "Remove assignee": "Hapus penerima pengalihan", + "Account settings": "Pengaturan akun", + "General Settings": "Pengaturan Umum", + "Integration Settings": "Pengaturan integrasi", + "Personal settings": "Pengaturan pribadi", + "Add category": "Tambahkan kategori", + "Filter": "Saring", + "Live": "Hidup", + "Draft": "Minuman", + "Paused": "Dijeda", + "Your messages": "Pesan Anda", + "Delivered inside your app Reach active users": "Disampaikan di dalam aplikasi Anda. Jangkau pengguna aktif", + "Delivered to a user s email inbox Customize with your own templates": "Dikirim ke kotak masuk email pengguna Sesuaikan dengan templat Anda sendiri", + "email": "surel", + "Create segment": "Buat segmen", + "customers": "pelanggan", + "has any value": "memiliki nilai apa pun", + "is unknown": "tidak diketahui", + "is not": "tidak", + "is": "adalah", + "Less than": "Kurang dari", + "City": "Kota", + "Greater than": "Lebih besar dari", + "Country": "Negara", + "Current page url": "URL halaman saat ini", + "Browser language": "Bahasa browser", + "conversation": "percakapan", + "engageMessage": "engagementMessage", + "customer": "pelanggan", + "company": "perusahaan", + "starts with": "dimulai dengan", + "ends with": "berakhir dengan", + "contains": "mengandung", + "does not contain": "tidak mengandung", + "Basic Info": "Info dasar", + "Add Phone": "Tambahkan Telepon", + "Add Email": "Tambahkan Email", + "Choose your tags": "Pilih tag Anda", + "Manage tags": "Kelola tag", + "Edit Profile": "Sunting profil", + "Sign out": "Keluar", + "Last Updated By": "Terakhir Diperbarui Oleh", + "There is no channel": "Tidak ada saluran", + "Facebook page": "halaman Facebook", + "plan": "rencana", + "Edit segment": "Edit segmen", + "New message": "Pesan baru", + "Message": "Pesan", + "Merge Customers": "Gabungkan Pelanggan", + "Assign": "Menetapkan", + "There is no message.": "Tidak ada pesan", + "per page": "per halaman", + "[view]": "[melihat]", + "Go to twitter": "Pergi ke twitter", + "Build": "Membangun", + "`s integration": "Integrasi", + "Created": "Dibuat", + "Email templates:": "Template email:", + "Content:": "Kandungan:", + "Response Templates": "Template Respons", + "Merge Companies": "Gabungkan Perusahaan", + "Response template": "Template respons", + "Attach file": "Lampirkan file", + "Upload": "Unggah", + "ShoutBox": "ShoutBox", + "Popup": "Muncul", + "Embedded": "Tertanam", + "Choose a flow type": "Pilih jenis aliran", + "CallOut": "Memanggil", + "Callout title": "Judul info", + "Callout body": "Seruan keluar", + "Callout button text": "Teks tombol panggil", + "Skip callOut": "Lewati panggilan", + "Form button text": "Teks tombol bentuk", + "Theme color": "Warna tema", + "Featured image": "Gambar unggulan", + "Full Preview": "Pratinjau Penuh", + "Try some of these colors:": "Coba beberapa warna ini:", + "Included fields": "Bidang yang disertakan", + "Deal": "Jalur Penjualan", + "Deals": "Jalur Penjualan", + "New Product & Service": "Produk & Layanan Baru", + "No product or services": "Tidak ada produk atau layanan", + "UOM": "UOM", + "Quantity": "Kuantitas", + "Unit price": "Patokan harga", + "Discount": "Diskon", + "Tax": "Pajak", + "Ticket": "Tiket", + "Task": "Tugas", + "Select company": "Pilih perusahaan", + "Select customer": "Pilih pelanggan", + "Note": "Catatan", + "Assigned to": "Ditugaskan untuk", + "Move": "Pindah", + "Move deal": "Pindahkan kesepakatan", + "Copy": "Salinan", + "Close date": "Tanggal tutup", + "Choose product & service": "Pilih produk & layanan", + "Select product & service": "Pilih produk & layanan", + "Please, select a close date": "Silakan pilih tanggal tutup", + "Create a new Product": "Buat Produk baru", + "New Product": "Produk baru", + "SKU": "SKU", + "Choose a company": "Pilih perusahaan", + "Choose a customer": "Pilih pelanggan", + "Choose a board": "Pilih papan", + "Choose a pipeline": "Pilih saluran pipa", + "Manage Board & Pipeline": "Kelola Papan & Pipa", + "Choose a stage": "Pilih panggung", + "Deal Settings": "Pengaturan Pipa Penjualan", + "Ticket Settings": "Pengaturan Tiket", + "Task Settings": "Pengaturan Tugas", + "Boards & Pipelines": "Papan & Saluran Pipa", + "Product & Service": "Produk & Layanan", + "There is no pipeline in this board.": "Tidak ada pipa di papan ini.", + "There is no board": "Tidak ada papan", + "New Board": "Dewan Baru", + "Add pipeline": "Tambahkan pipa", + "Create one": "Buat satu", + "Edit pipeline": "Edit pipa", + "Add stage": "Tambahkan panggung", + "Board": "Naik", + "Pipeline": "Saluran pipa", + "Stage": "Tahap", + "Stage name": "Nama panggung", + "Add a deal": "Tambahkan kesepakatan", + "Add a task": "Tambahkan tugas", + "Add a ticket": "Tambahkan tiket", + "Priority": "Prioritas", + "Critical": "Kritis", + "High": "Tinggi", + "Normal": "Normal", + "Low": "Rendah", + "Attachments": "Lampiran", + "Source": "Sumber", + "Select a source": "Pilih sumber", + "Upload an attachment": "Unggah lampiran", + "Description": "Deskripsi", + "Select a priority": "Pilih prioritas", + "Edit deal": "Edit kesepakatan", + "Edit task": "Edit tugas", + "Edit ticket": "Edit tiket", + "Add Product / Service": "Tambahkan Produk / Layanan", + "Reply tweet": "Balas tweet", + "Tweet": "Menciak", + "Details": "Detail", + "View Profile": "Tampilkan profil", + "Empty Notes": "Catatan Kosong", + "Mini-resume": "Mini resume", + "You cannot update this property": "Anda tidak dapat memperbarui properti ini", + "Desktop": "Desktop", + "Mobile": "Mobile", + "Tablet": "Tablet", + "Amount": "Jumlah", + "Owner": "Pemilik", + "Department": "Departemen", + "Lead Status": "Status Pop Ups", + "Lifecycle State": "Keadaan Siklus Hidup", + "Has Authority": "Memiliki Otoritas", + "Do not disturb": "Jangan ganggu", + "Parent Company": "Perusahaan utama", + "Business Type": "Jenis Bisnis", + "Employees count": "Karyawan menghitung", + "Yes": "Iya", + "No": "Tidak", + "Copied": "Disalin", + "General": "Umum", + "Currency": "Mata uang", + "Unit of measurement": "Unit pengukuran", + "Create another board": "Buat papan lain", + "No pipeline": "Tidak ada pipa", + "No stage": "Tanpa panggung", + "No deal": "Tidak sepakat", + "Background": "Latar Belakang", + "Choose": "Memilih", + "Successfully saved.": "Berhasil disimpan.", + "Successfully moved.": "Berhasil dipindahkan.", + "Successfully selected.": "Berhasil dipilih.", + "Body description here": "Deskripsi tubuh di sini", + "Thank you.": "Terima kasih.", + "Choose a brand": "Pilih merek", + "Write a title": "Tulis judul", + "Contact": "Kontak", + "Created by": "Dibuat oleh", + "Manage": "Mengelola", + "Dropdown": "Dropdown", + "Slide-in Left": "Geser ke Kiri", + "Slide-in Right": "Geser ke Kanan", + "Enter name": "Masukkan nama", + "Delivered": "Disampaikan", + "Clicked": "Diklik", + "Complaint": "Keluhan", + "Bounce": "Melambung", + "Rendering Failure": "Kegagalan Rendering", + "Rejected": "Ditolak", + "Action": "Tindakan", + "Please select one to merge": "Silakan pilih satu untuk digabung", + "Filter by date": "Saring berdasarkan tanggal", + "Total conversations": "Total percakapan", + "Filter by form": "Saring berdasarkan formulir", + "Supporters": "Pendukung", + "Import histories": "Impor sejarah", + "Imported Date": "Tanggal Impor", + "Imported User": "Pengguna yang Diimpor", + "Export customers": "Pelanggan ekspor", + "Import customers": "Pelanggan impor", + "Export companies": "Perusahaan ekspor", + "Import companies": "Perusahaan impor", + "All customers imported successfully": "Semua pelanggan berhasil diimpor", + "There aren't any imports": "Tidak ada impor", + "Successfully Removed all customers": "Berhasil menghapus semua pelanggan", + "You can only import max 600 at a time": "Anda hanya dapat mengimpor maks 600 sekaligus", + "Invalid import type": "Jenis impor tidak valid", + "Last updated": "Terakhir diperbarui", + "Filter by lead status": "Saring berdasarkan status Pop Ups", + "No lead status chosen": "Tidak ada status prospek yang dipilih", + "Schedule:": "Susunan acara:", + "Every Day": "Setiap hari", + "Every Month": "Setiap bulan", + "Every Year": "Setiap tahun", + "Every Monday": "Setiap Senin", + "Every Tuesday": "Setiap Selasa", + "Every Wednesday": "Setiap rabu", + "Every Thursday": "Setiap Kamis", + "Every Friday": "Setiap Jumat", + "Every Saturday": "Setiap hari Sabtu", + "Every Sunday": "Setiap Minggu", + "Choose a schedule day": "Pilih hari jadwal", + "Choose a schedule time": "Pilih waktu jadwal", + "Won": "Won", + "Lost": "Kalah", + "App store": "Toko aplikasi", + "App store menu": "Menu app store", + "In Progress": "Sedang berlangsung", + "It`s size exceeds the limit 10mb": "Ukurannya melebihi batas 10mb", + "Congrats! Your email sent successfully!": "Selamat! Email Anda berhasil terkirim!", + "Works with messenger": "Bekerja dengan messenger", + "Knowledge base topic": "Topik basis pengetahuan", + "Package version": "Versi paket", + "Branch name": "Nama cabang", + "Abbreviated": "Disingkat", + "User": "Pengguna", + "Recent conversations": "Percakapan terbaru", + "Start new conversation": "Mulai percakapan baru", + "Talk with support staff": "Bicara dengan staf pendukung", + "Send a message": "Kirim pesan", + "Volume Report By Customer": "Laporan Volume Oleh Pelanggan", + "Export Report": "Laporan Ekspor", + "We`re ready to help you.": "Kami siap membantu Anda.", + "Please choose a product": "Silakan pilih produk", + "Please choose a currency": "Silakan pilih mata uang", + "No board": "Tidak ada papan", + "Empty": "Kosong", + "There is no account.": "Tidak ada akun", + "There is no tag.": "Tidak ada tag.", + "Skip for now": "Lewati sekarang", + "Go to Inbox": "Buka Kotak Masuk", + "Messenger Language": "Bahasa Messenger", + "Messenger name": "Nama messenger", + "Skip": "Melewatkan", + "Finish": "Selesai", + "Show": "Menunjukkan", + "Hide": "Menyembunyikan", + "Previous": "Sebelumnya", + "Users": "Pengguna", + "users": "pengguna", + "brands": "merek", + "messengers": "rasul", + "channels": "saluran", + "Emails": "Email", + "Messengers": "Rasul", + "You already have": "Anda sudah punya", + "There is another": "Ada lagi", + "Let's create your brand": "Ayo buat merek Anda", + "Invite users": "Undang pengguna", + "Let's grow your team": "Mari tumbuhkan tim Anda", + "Invite": "Undang", + "Let's start": "Ayo mulai", + "Start messaging now!": "Mulai perpesanan sekarang!", + "Create channel": "Buat saluran", + "Get started on your channel": "Mulai di saluran Anda", + "Create your first messenger": "Buat messenger pertama Anda", + "Welcome": "Selamat datang", + "Nothing inserted": "Tidak ada yang dimasukkan", + "Empty emails": "Email kosong", + "Initial setup": "Pengaturan awal", + "Add another": "Tambahkan yang lain", + "Don't show again": "Jangan perlihatkan lagi", + "No other pipeline": "Tidak ada pipa lain", + "No other boards": "Tidak ada papan lainnya", + "I'm ready to get started": "Saya siap memulai", + "Welcome paragraph": "Kami sangat senang memilikimu. Mari kita luangkan waktu untuk mengatur Anda", + "Get notified and notify others to keep everything up to date": "Dapatkan pemberitahuan dan beri tahu orang lain agar semuanya selalu terbarui", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Jika tim Anda belum menerima pesan yang Anda kirim di situs, kami dapat mengirimkannya melalui email", + "Send an email and notify members that they've been invited!": "Kirim email dan beri tahu anggota bahwa mereka telah diundang!", + "January": "Januari", + "February": "Februari", + "March": "Maret", + "April": "April", + "May": "Mungkin", + "June": "Juni", + "July": "Juli", + "August": "Agustus", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Desember", + "Today": "Hari ini", + "Sales": "Penjualan", + "Monthly view": "Tampilan bulanan", + "Filter by": "Saring menurut", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Menciptakan merek dan dengan menambahkan saluran, Anda dapat menganalisis dengan lebih baik kebutuhan pelanggan Anda dan membantu menyelesaikan masalah mereka", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Tumbuhkan dan tambahkan pengguna ke tim Anda! Tetapkan, tunjuk dan biarkan mereka melakukan yang terbaik", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Ikuti perkembangan setiap umpan balik pelanggan dan ciptakan percakapan yang lebih bermakna", + "Create brand channels that are specifically categorized by type and activity": "Buat saluran merek yang dikategorikan secara spesifik berdasarkan jenis dan aktivitas", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Tambahkan Lead di sini dan lihat di Widget Messenger Anda! Untuk melihat Petunjuk di kotak masuk Anda, pastikan itu ditambahkan di saluran Anda.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Anda dapat memilih dari banyak integrasi messenger kami dan menambah basis pengetahuan Anda. Basis pengetahuan akan muncul di tab widget messenger Anda. Untuk melakukan ini, silakan buat dan tambahkan ke basis pengetahuan Anda.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "Tanda tangan email adalah kesempatan untuk berbagi informasi yang membantu membangun pengakuan dan kepercayaan.", + "Let's start taking care of your customers": "Mari mulai merawat pelanggan Anda", + "Add in your first company!": "Tambahkan di perusahaan pertama Anda!", + "Choose from our many integrations and add to your channel": "Pilih dari banyak integrasi kami dan tambahkan ke saluran Anda", + "Let's get you messaging away!": "Biarkan Anda mengirim pesan!", + "Whoops! No messages here but you can always start": "Aduh! Tidak ada pesan di sini tetapi Anda selalu dapat memulai", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Artikel dapat mengatasi sejumlah masalah yang ditemui pelanggan Anda. Jenis artikel pengetahuan dapat mencakup solusi untuk masalah umum, dokumentasi produk atau fitur, FAQ, dan banyak lagi.", + "Oops! No data here": "Ups! Tidak ada data di sini", + "Start adding integrations now!": "Mulai tambahkan integrasi sekarang!", + "Add an integration in this Brand": "Tambahkan integrasi dalam Merek ini", + "Oh dear! You have no imports": "Oh sayang! Anda tidak memiliki impor", + "A strong customer engagement can help to further brand growth and loyalty": "Keterlibatan pelanggan yang kuat dapat membantu meningkatkan pertumbuhan dan loyalitas merek", + "Get started on your pipeline": "Mulai dengan pipa Anda", + "Connect to Facebook messages right from your Team Inbox": "Hubungkan ke pesan Facebook langsung dari Kotak Masuk Tim Anda", + "Tweet back to your DMs right from your Team Inbox": "Tweet kembali ke DM Anda langsung dari Kotak Masuk Tim Anda", + "Connect straight to your Gmail and get those emails going": "Terhubung langsung ke Gmail Anda dan mulai email-email itu", + "Find your lead forms right here in your Widget": "Temukan formulir utama Anda di sini di Widget Anda", + "Get access to your Knowledge Base right in your Widget": "Dapatkan akses ke Basis Pengetahuan Anda langsung di Widget Anda", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Segera Anda akan dapat menghubungkan Viber langsung ke Kotak Masuk Tim Anda", + "Get a hold of your Whatsapp messages through your Team Inbox": "Dapatkan pesan Whatsapp Anda melalui Kotak Masuk Tim Anda", + "Connect with Wechat and start messaging right from your Team Inbox": "Terhubung dengan Wechat dan mulai mengirim pesan langsung dari Kotak Masuk Tim Anda", + "Find feedback that has been gathered from various customer engagement channels.": "Temukan umpan balik yang telah dikumpulkan dari berbagai saluran keterlibatan pelanggan.", + "A report on the total number of customer feedback responses given by team members.": "Laporan tentang jumlah total tanggapan umpan balik pelanggan yang diberikan oleh anggota tim.", + "The average time a team member solved a problem based on customer feedback.": "Waktu rata-rata anggota tim memecahkan masalah berdasarkan umpan balik pelanggan.", + "You can find stats that defines the average response time by each team member.": "Anda dapat menemukan statistik yang menentukan waktu respons rata-rata oleh setiap anggota tim.", + "Oh boy, looks like you need to get a head start on your deals": "Ya ampun, sepertinya Anda harus mulai dengan penawaran Anda", + "Open segments and starting add details": "Buka segmen dan mulai tambahkan detail", + "Now easier to find contacts according to your brand": "Sekarang lebih mudah menemukan kontak sesuai dengan merek Anda", + "Search and filter customers by form": "Cari dan saring pelanggan berdasarkan formulir", + "There is always a lead!": "Selalu ada petunjuk!", + "Calendar": "Kalender", + "Columns": "Kolom", + "columns": "kolom", + "Linked Accounts": "Akun Tertaut", + "Select account": "Pilih akun", + "Select account ...": "Pilih akun ...", + "Add Account": "Menambahkan akun", + "Remove Account": "Menghapus akun", + "You can upload only image file": "Anda hanya dapat mengunggah file gambar .png atau .jpg", + "Permissions": "Izin", + "New permission": "Izin baru", + "New group": "Grup baru", + "Users groups": "Kelompok pengguna", + "Choose the module": "Pilih modul", + "Choose the actions": "Pilih tindakan", + "Choose the users": "Pilih pengguna", + "Choose the groups": "Pilih grup", + "Choose groups": "Pilih grup", + "Allow": "Mengizinkan", + "Invitation Status": "Status Undangan", + "Permission": "Izin", + "data successfully imported": "data berhasil diimpor", + "Show result": "Tunjukkan hasil", + "Importing": "Pengimporan", + "data": "data", + "errors acquired": "kesalahan diperoleh", + "There are": "Ada", + "Continue": "Terus", + "Create brand": "Buat merek", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Buat obrolan langsung pertama dan perpesanan dalam aplikasi Anda. Tetap up to date dengan setiap umpan balik pelanggan tunggal untuk interaksi yang lebih bermakna.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Saluran memberikan tampilan penuh dari semua merek dan aplikasinya di satu tempat. Anda dapat melihat semua pesan yang masuk di kotak masuk tim Anda.", + "Hooray and Congratulations! You've completed the initial setup!": "Hore dan Selamat! Anda telah menyelesaikan pengaturan awal!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Rekatkan kode di bawah ini sebelum beri tag pada setiap halaman yang Anda inginkan untuk erxes chat untuk muncul", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Rekatkan kode di bawah ini sebelum tag tubuh pada setiap halaman yang Anda inginkan agar erxes muncul", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Jika jenis aliran Anda disematkan, tempelkan kode di bawah ini yang Anda inginkan agar erx lead muncul", + "If your flow type is popup paste the code below additionally in your button": "Jika jenis aliran Anda muncul, sisipkan kode di bawah ini juga di tombol Anda", + "Choose messengers": "Pilih pembawa pesan", + "erxes allows you to create multiple messengers": "erxes memungkinkan Anda membuat banyak messenger", + "erxes allows you to create multiple brands": "erxes memungkinkan Anda membuat banyak merek", + "erxes allows you to create multiple channels": "erxes memungkinkan Anda membuat banyak saluran", + "Contacts": "Kontak", + "Create group": "Membuat grup", + "Visitors": "Pengunjung", + "Due in the next day": "Karena di hari berikutnya", + "Due in the next week": "Jatuh tempo pada minggu berikutnya", + "Due in the next month": "Jatuh tempo pada bulan berikutnya", + "Has no close date": "Tidak punya tanggal tutup", + "Over due": "Lebih dari jatuh tempo", + "Clear Filter": "Bersihkan Filter", + "Remove this filter": "Hapus filter ini", + "Filtering is on": "Penyaringan aktif", + "Choose products": "Pilih produk", + "Choose companies": "Pilih perusahaan", + "Choose customers": "Pilih pelanggan", + "Choose team members": "Pilih anggota tim", + "erxes Inc": "erxes Inc", + "Get": "Dapatkan", + "Download ios app for free on the App Store": "Unduh aplikasi ios secara gratis di App Store.", + "Download android app for free on the Google play": "Unduh aplikasi android secara gratis di Google play.", + "Please upgrade your browser to use erxes!": "Harap tingkatkan peramban Anda untuk menggunakan erx!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Sayangnya, Anda berjalan di peramban yang mungkin tidak sepenuhnya kompatibel dengan erx.", + "Please use recommended version": "Silakan gunakan versi yang disarankan", + "Messenger data": "Data messenger", + "Customer field data": "Data bidang pelanggan", + "Others": "Lainnya", + "Select brand": "Pilih merek", + "There is no permissions in this group": "Tidak ada izin di grup ini.", + "There is no group": "Tidak ada grup.", + "User groups": "Grup Pengguna", + "What action can do": "Tindakan apa yang bisa dilakukan", + "Who can": "Siapa bisa", + "Grant permission": "Memberikan ijin", + "Check if permission is allowed": "Periksa apakah izin diizinkan", + "Then": "Kemudian", + "Or": "Atau", + "Auto message description": "Kirim email dan obrolan yang ditargetkan ke pengguna yang masuk berdasarkan merek / tag / segmen mereka. Anda dapat mengatur waktu Anda untuk mengirim email atau mengobrol terlebih dahulu. Desain obrolan dapat dipotong, lencana, dan pesan lengkap dan dapat berupa teks atau video.", + "Manual message description": "Kirim email dan obrolan yang ditargetkan ke pengguna yang masuk berdasarkan merek / tag / segmen mereka. Email atau obrolan akan dikirim segera setelah Anda mengklik tombol simpan. Desain obrolan dapat dipotong, lencana, dan pesan lengkap dan dapat berupa teks atau video.", + "Visitor auto message description": "Kirim obrolan yang ditargetkan ke pengunjung yang keluar dari situs web berdasarkan halaman kunjungan, aktivitas, negara tempat tinggal dan kota mereka. Desain obrolan dapat dipotong, lencana, dan pesan lengkap dan dapat berupa teks atau video.", + "Required field": "Kolom yang harus diisi!", + "Invalid email format! Please enter a valid email address": "Format email salah! Silakan isi alamat email.", + "Invalid link": "Tautan tidak valid!", + "Maximum length is": "Panjang maksimum adalah", + "characters": "karakter!", + "Invalid number format! Please enter a valid number": "Format angka tidak valid! Silakan masukkan nomor yang valid.", + "Insert email template to content": "Sisipkan templat email ke konten", + "Logs": "Log", + "There are no logs recorded": "Tidak ada catatan yang dicatat", + "Module": "Modul", + "Unchanged fields": "Bidang tidak berubah", + "Changed fields": "Bidang yang diubah", + "Create": "Membuat", + "Update": "Memperbarui", + "Changes": "Perubahan", + "Choose start date": "Pilih tanggal mulai", + "Choose end date": "Pilih tanggal akhir", + "Permission denied": "Izin ditolak", + "Old data": "Data lama", + "New data": "Data baru", + "Archive": "Arsipkan", + "NetworkError": "Mencoba memulihkan koneksi. Perubahan yang dibuat sekarang mungkin tidak disimpan.", + "Email add account description question": "Apakah Anda menghubungkan akun email yang dibagikan?", + "Email add account description": "Saat Anda menghubungkan email ke kotak masuk percakapan Anda, Anda menghubungkannya sebagai akun bersama. Pesan yang dikirim ke akun bersama dapat dilihat oleh semua orang yang memiliki akses ke kotak masuk tim Anda.", + "No connected email": "Tidak ada email yang terhubung", + "Your email will be sent with Erxes email template": "Email Anda akan dikirim dengan templat email Erxes" +} diff --git a/ui/src/locales/it.json b/ui/src/locales/it.json index dcc5ca0fbdb..6d9a9e2815b 100644 --- a/ui/src/locales/it.json +++ b/ui/src/locales/it.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "Sei sicuro?", "Yes, I am": "Sì, lo sono", "No, Cancel": "No, cancella", diff --git a/ui/src/locales/ja.json b/ui/src/locales/ja.json index d05435d0f3b..9a95b56af96 100644 --- a/ui/src/locales/ja.json +++ b/ui/src/locales/ja.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "本気ですか?", "Yes, I am": "はい、そうです", "No, Cancel": "いいえ、キャンセル", diff --git a/ui/src/locales/jv.json b/ui/src/locales/jv.json new file mode 100644 index 00000000000..d0d9c55a59e --- /dev/null +++ b/ui/src/locales/jv.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Sampeyan yakin? Iki ora bisa dibatalake.", + "Yes, I am": "Ya, aku", + "No, Cancel": "Ora, Batal", + "Filter by tags": "Filter miturut label", + "There is no data": "Ora ana data", + "There is no data.": "Ora ana data.", + "Load more": "Muat luwih", + "There aren't any activities at the moment.": "Ora ana kegiatan saiki.", + "Reset your password": "Reset sandhi", + "Email me the instruction": "Email kula instruksi", + "Sign in": "Mlebu", + "Change password": "Ngganti sandhi", + "Set your new password": "Setel sandhi anyar sampeyan", + "Forgot password?": "Lali sandi?", + "Photo": "Foto", + "Name": "Jeneng", + "Views": "Ndeleng", + "Conversion": "Konversi", + "Go to import": "Menyang kanggo ngimpor", + "Conversion rate": "Tingkat konversi", + "Contacts gathered": "Kontak diklumpukake", + "Create lead": "Nggawe Pop Ups", + "Form title": "Judhul wujud", + "Related": "Gegayutan", + "Form description": "Katrangan wujud", + "Position": "Posisi", + "Username": "Jeneng pangguna", + "Email": "Email", + "sec": "sec", + "Twitter username": "Jeneng pangguna Twitter", + "Inbox": "Kothak mlebu", + "Workflow": "Aliran kerja", + "Watch": "Watch", + "Watching": "Nonton", + "Team Inbox": "Kothak mlebu Tim", + "Customers": "Pelanggan", + "Companies": "Perusahaan", + "Engage": "Nggarap", + "Insights": "Wawasan", + "Knowledge Base": "Dhasar Kawruh", + "Settings": "Setelan", + "Resolve": "Rampungake", + "Send": "Kirim", + "No company": "Ora ana perusahaan", + "No customer": "Ora ana pelanggan", + "Not tagged yet": "Ora ditandhani", + "New note": "Cathetan anyar", + "Conversation": "Obrolan", + "Notes": "Cathetan", + "Activity": "Kegiatan", + "Basic info": "Info dhasar", + "Size": "Ukuran", + "Other": "Liyane", + "Industry": "Industri", + "Website": "Situs web", + "Plan": "Rencanakake", + "About": "Babagan", + "Discard": "Buwak", + "Save": "Ngirit", + "Create response template": "Gawe template respon", + "Associate": "Associate", + "No tags": "Ora ana tag", + "Add customer": "Tambahake pelanggan", + "No segments": "Ora ana segmen", + "Manage Columns": "Ngatur lajur", + "New customer": "Pelanggan anyar", + "Add company": "Tambah perusahaan", + "New company": "Perusahaan anyar", + "Choose which column you see": "Pilih kolom endi sing sampeyan deleng", + "There is no engage message.": "Ora ana pesen sing melu.", + "Add Knowledge base": "Tambahake dhasar Kawruh", + "Add knowledge base.": "Tambahake dhasar pengetahuan.", + "New Channel": "Saluran Anyar", + "Edit": "Sunting", + "Edit basic info": "Owahi info dhasar", + "Manage integration": "Ngatur integrasi", + "Manage Integration": "Ngatur Integrasi", + "Choose new brand": "Pilih merek anyar", + "Edit integration": "Integrasi integrasi", + "Integration": "Integrasi", + "Integration menu": "Menu Integrasi", + "New Brand": "New Brand", + "Add facebook page": "Tambahake kaca facebook", + "Add integrations": "Tambah integrasi", + "Add messenger": "Tambah utusan", + "There is no lead.": "Ora ana timbal.", + "New response template": "Cithakan respon anyar", + "Cancel": "Batal", + "Public": "Publik", + "Private": "Pribadi", + "New email template": "Cithakan email anyar", + "Local publisher's email template": "Cithakan email penerbit lokal", + "New user": "Pangguna anyar", + "Load More": "Mbukak Liyane", + "Session count": "Count session", + "Last seen at": "Paling katon ing", + "Tags": "Tags", + "Member": "Anggota", + "Remove": "Mbusak", + "No companies added yet!": "Ora ana perusahaan sing ditambahake!", + "Merge": "Gabung", + "First Name": "Jeneng Pertama", + "Last Name": "Jeneng Mburi", + "First name": "Jeneng pisanan", + "Last name": "Jeneng mburi", + "Primary Email": "Email Utami", + "Phone": "Telpon", + "Is user": "Apa pangguna", + "Save & New": "Ngirit & Anyar", + "Save & Close": "Simpen & Nutup", + "Close": "Nutup", + "Customer properties": "Properti pelanggan", + "Device properties": "Properti piranti", + "Location": "Lokasi", + "Browser": "Browser", + "Platform": "Platform", + "IP Address": "Alamat IP", + "Hostname": "Hostname", + "Language": "Basa", + "User Agent": "Agen Panganggo", + "Other properties": "Properti liyane", + "Facebook": "Facebook", + "Facebook profile": "Profil Facebook", + "Messenger usage": "Panggunaan Messenger", + "Status": "Status", + "Online": "Nyambung", + "Offline": "Offline", + "Twitter": "Twitter", + "Twitter quote": "Kutipan Twitter", + "Retweet": "Retweet", + "Screen name": "Jeneng layar", + "Don't see the result you're looking for? ": "Aja ndeleng asil sing digoleki?", + "Merged Info": "Info Gawe", + "E-mail": "E-mail", + "Integrations": "Integrasi", + "integration": "integrasi", + "Brands": "Merek", + "Start date": "Tanggal tanggal", + "End date": "Akhir tanggal", + "lead": "Pop Ups", + "twitter": "twitter", + "facebook": "facebook", + "messenger": "utusan", + "Title": "Judhul", + "Brand": "Merek", + "Current Password": "Sandi saiki", + "Current password": "Sandi saiki", + "New Password": "Sandi sandhi anyar", + "Re-type Password to confirm": "Pilih maneh Sandi sandhi kanggo konfirmasi", + "Signature": "Signature", + "simple": "sederhana", + "custom": "adat", + "default": "gawan", + "default language": "basa standar", + "primary": "utami", + "Content": "Konten", + "Save & draft": "Ngirit & konsep", + "Save & live": "Ngirit & urip", + "Message:": "Pesen:", + "Email template:": "Cithakan email:", + "Email subject:": "Judhul email:", + "From": "Saka", + "Message type:": "Jinis pesen:", + "Sent as:": "Dikirim minangka:", + "Brand:": "Merek:", + "Add rule": "Tambah aturan", + "Last online": "Pungkasan online", + "No Activities": "Ora Aktivitas", + "There is no customer.": "Ora ana palanggan.", + "Properties": "Properti", + "Customize ": "Ngatur", + "Kind": "Jinis", + "All": "Kabeh", + "Auto": "Otomatis", + "Visitor auto": "Mobil pengunjung", + "Manual": "Manual", + "Delivered to a user s email inbox": "Dikirim menyang kothak mlebu email pangguna", + "Customize with your own templates": "Setel karo template dhewe", + "Delivered inside your app": "Dikirim ing app sampeyan", + "Reach active users": "Entuk pangguna aktif", + "Channel": "Saluran", + "Edit columns": "Owahi kolom", + "Auto message": "Pesen otomatis", + "Manual message": "Pesen manual", + "Visitor auto message": "Pesen otomatis pengunjung", + "Actions": "Tumindak", + "Created date": "Tanggal digawe", + "Type": "Ketik", + "Failed": "Gagal", + "Sent": "Dikirim", + "Total": "Gunggunge", + "Pause": "Ngaso", + "Set live": "Setel urip", + "Sending": "Ngirim", + "Delete": "Mbusak", + "Choose segment": "Pilih bagean", + "To:": "Kanggo:", + "Messenger kind:": "Messenger Messenger:", + "Title:": "Judhul", + "Channel:": "Saluran", + "No items": "Ora ana barang", + "New": "Anyar", + "Options:": "Pilihan:", + "Options": "Pilihan", + "Type:": "Jinis:", + "Add": "Tambah", + "Validation:": "Validasi", + "Date": "Tanggal", + "Number": "Nomer", + "Text:": "Teks:", + "Description:": "Katrangan:", + "This item is requried": "Barang iki diwenehi requried", + "Preview": "Pratayang", + "Column name": "Jeneng kolom", + "Visible": "Katon", + "Visibility": "Visibilitas", + "Choose person": "Pilih wong", + "Conversation Details": "Rincian pacelathon", + "Opened": "Dibukak", + "Conversations": "Obrolan", + "Channels": "Saluran", + "Select all": "Pilih Kabeh", + "Filter by tag": "Filter kanthi label", + "Filter by integrations": "Filter miturut integrasi", + "Filter by brand": "Filter miturut merek", + "Filter by channel": "Filter miturut saluran", + "Filter by status": "Filter miturut status", + "# Channel": "# Saluran", + "Unassigned": "Ditunjuk Ora Duwe", + "Participating": "Melu", + "Resolved": "Ditanggulangi", + "View more": "Ndeleng liyane", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Pelanggan ana offline. Klik kanggo ndhelikake lan ngirim pesen lan bakal nampa nalika ana online.", + "No templates": "Ora ana template", + "Save as template": "Simpen minangka template", + "Daily First Response Resolve Rate": "Tanggepan Ngatasi Pertimbangan Saben Dina", + "Daily First Response Resolve Rate by Team Members": "Tanggepan Saben Respon Saben Dina dening Anggota Tim", + "Daily Response Close Resolve Rate by Team Members": "Respon Saben Nutup Ngatasi Rating dening Anggota Tim", + "Volume Report": "Laporan Jilid", + "Feedbacks gathered through various customer engagement channels.": "Umpan balik sing diklumpukake ing macem-macem saluran keterlibatan pelanggan.", + "Response Report": "Laporan Respon", + "Total number of response for customer feedbacks, by each staff.": "Jumlah tanggapan kanggo umpan balik pelanggan, dening saben staf.", + "Response Close Report": "Laporan Panutup Tanggepan", + "Average time of each staff solving problems that based on customer feedbacks.": "Rata-rata wektu saben staf ngrampungake masalah sing adhedhasar umpan balik pelanggan.", + "First Response Report": "Laporan Respon Pisanan", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Mbales wektu kanggo tanggepan siji. Stats bakal netepake wektu tanggapan rata-rata dening saben staf.", + "Daily Response Close Resolve Rate": "Respon Saben Nutup Tanggalan Rampung", + "Daily Response Close Resolve rate by Team Members": "Tanggepan Rapat Tutup Saben Warta dening Anggota Tim", + "Response Times summary": "Ringkesan Ringkesan Kali", + "Response Trend": "Trend Wangsulan", + "Punch card": "Kertu punch", + "Response by team members": "Wangsulan dening anggota tim", + "Tag": "Tag", + "Internal note": "Cathetan internal", + "Manage templates": "Ngatur template", + "Volume summary": "Ringkesan jilid", + "Volume Trend": "Aliran volume", + "Summary": "Ringkesan", + "Install code": "Pasang kode", + "No copyable code": "Ora bisa diconto kode", + "Manage Knowledge Base": "Ngatur Dasar Kawruh", + "Add Category": "Nambah Kategori", + "Add Article": "Tambah Artikel", + "Customer engagement. REDEFINED.": "Keterlibatan pelanggan. REDEFINED.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes minangka AI memenuhi platform olahpesen mbukak kanggo dodolan, pemasaran lan dhukungan", + "404. This page is not found.": "404. Halaman iki ora ditemokake.", + "erxes is an open-source messaging platform for customer success": "erxes minangka platform olahpesen mbukak kanggo sukses pelanggan", + "Notification settings": "Setelan kabar", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Platform marketing, sales, lan layanan pelanggan sing dirancang kanggo mbantu bisnis sampeyan narik luwih akeh pelanggan. Ganti Hubspot kanthi ekosistem misi lan mimpin komunitas.", + "Mark Page Read": "Waca Waca Kaca", + "Mark All Read": "Centhang Kabeh Waca", + "Coming soon": "Bakal rauh", + "Looks like you are all caught up": "Katon sampeyan kabeh kepepet", + "AI": "AI", + "See all": "Deleng kabeh", + "Select a field": "Pilih lapangan", + "Add condition": "Tambah kawontenan", + "Parent segment conditions": "Kahanan segmen wong tuwa", + "Filter by segments": "Filter miturut segmen", + "New segment": "Segmen anyar", + "Manage segments": "Ngatur segmen", + "Users who match": "Pangguna sing cocog", + "any": "punapa mawon", + "all": "kabeh", + "of the below conditions": "saka kahanan ing ngisor iki", + "Sub segment of": "Sub bagean saka", + "Color": "Werna", + "Filters": "Saringan", + "User(s) will recieve this message": "Pangguna bakal nampa pesen iki", + "Color code": "Kode warna", + "Engage Message": "Nindakake pesen", + "Item counts": "Item sing ngitung", + "Appearance": "Katon", + "Hours, Availability & Other configs": "Jam, Kasedhiyan & configs liyane", + "There is no brand": "Ora ana merek", + "There is no integration in this channel.": "Ora ana integrasi ing saluran iki.", + "Template markup": "Markup cithakan", + "Use html template here": "Gunakake template html ing kene", + "Choose your email template type": "Pilih jinis template email sampeyan", + "Email signatures": "Tandha email", + "Personal Settings": "Setelan pribadi", + "Account Settings": "Setelan akun", + "Profile": "Profil", + "Get notification by email": "Entuk kabar kanthi email", + "Admin": "Admin", + "Contributor": "Kontributor", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Matur nuwun sampeyan kanthi anget kanggo mbusak lan ngarepake hubungan kerja sing sehat kanggo jangka panjang.", + "Hi, any questions?": "Hai, ana pitakon?", + "1 hour ago": "1 jam kepungkur", + "We need your help!": "Kita butuh pitulung sampeyan!", + "6 minutes ago": "6 menit kepungkur", + "Write a reply ...": "Tulis balesan ...", + "App": "App", + "From email": "Saka email", + "User email title": "Judhul email pangguna", + "User email content": "Konten email pangguna", + "Admin emails": "Email admin", + "Admin email title": "Judhul email Admin", + "Admin email content": "Konten email Admin", + "Redirect url": "Pangalihan url", + "On success": "Ing sukses", + "Load": "Mbukak", + "Success": "Sukses", + "Thank content": "Matur konten", + "Choose a custom color": "Pilih warna khusus", + "Choose a wallpaper": "Pilih wallpaper", + "Choose a logo": "Pilih logo", + "Visible online to visitor or customer": "Katon online kanggo tamu utawa customer", + "Online messaging": "Pesen online", + "Welcome message": "Pesen sambutan", + "Offline messaging": "Olahpesen offline", + "Away message": "Pesen adoh", + "Thank you message": "Matur nuwun pesen", + "Hours & Availability": "Jam & Kasedhiyan", + "Turn online/offline manually": "Nguripake online / offline kanthi manual", + "Set to follow your schedule": "Setel kanggo tindakake jadwal", + "Other configs": "Configs liyane", + "Notify customer": "Menehi pengiriman notifikasi menyang pelanggan", + "Online hours": "Online jam", + "Add another time": "Tambah wektu liyane", + "Time zone": "Zona wektu", + "Messenger": "Messenger", + "Knowledge base": "Dhasar kawruh", + "Notification": "Kabar", + "Notifications": "Kabar", + "Show unread": "Tampilake sing durung diwaca", + "Unread": "Ora kawaca", + "Recent": "Paling Anyar", + "Mark all as read": "Centhang kabeh minangka diwaca", + "Email Appearance": "Penampilan Email", + "Team Members": "Anggota Tim", + "Account default": "Gawan akun", + "Team members": "Anggota tim", + "Full name": "Jeneng lengkap", + "Leads": "Pop Ups", + "Email Signature": "Tandha Email", + "Response Template": "Cithakan tanggapan", + "Email Template": "Cithakan Email", + "Response templates": "Cithakan tanggapan", + "Email templates": "Cithakan email", + "Brand Name": "Jeneng merek", + "Current template": "Cithakan saiki", + "Created at": "Digawe ing", + "Manage Fields": "Ngatur Lapangan", + "Duplicate": "Rumpakan", + "Code": "Kode", + "Profile settings": "Setelan profil", + "Change Password": "Ngganti Pangguna Sandi", + "Signatures are only included in response emails.": "Tandha tangan mung dilebokake ing email respon.", + "Signature template": "Cithakan tandha", + "You can use Markdown to format your signature.": "Sampeyan bisa nggunakake Markdown kanggo ngowahi format sampeyan teken.", + "Password": "Sandi", + "Password confirmation": "Konfirmasi sandhi", + "Choose the channels": "Pilih saluran", + "Simple": "Prasaja", + "Custom": "Custom", + "Create a new Company": "Nggawe Company anyar", + "New Company": "Perusahaan Anyar", + "Edit name": "Jeneng Sunting", + "Customer": "Pelanggan", + "Add tag": "Tambah tag", + "Company": "Perusahaan", + "New message ": "Pesen anyar", + "There aren’t any activities at the moment.": "Ora ana kegiatan saiki.", + "This item is required": "Item kasebut dibutuhake", + "Manage fields": "Ngatur kothak", + "Add integrations ": "Tambah integrasi", + "Form": "Formulir", + "Create a new Customer": "Gawe Pelanggan anyar", + "New Customer": "Pelanggan Anyar", + "Segments": "Segmen", + "Add a condition": "Tambah kahanan", + "Open": "Mbukak", + "Choose channel": "Pilih saluran", + "Who is this message for?": "Sapa pesen iki?", + "Compose your message": "Nggawe pesen sampeyan", + "No items added": "Ora ditambahake", + "Submit": "Kirim", + "Next": "Sabanjure", + "Save & Draft": "Simpen & Rancang", + "Save & Live": "Ngirit & Urip", + "From:": "Saka:", + "Pages": "Halaman", + "Links": "Link", + "Enter your password to Confirm": "Ketik sandhi kanggo Konfirmasi", + "Number of visits": "Jumlah kunjungan", + "Written By": "Di tulis karo", + "Icon": "Ikon", + "draft": "konsep", + "Twitter Username": "Jeneng Pangguna Twitter", + "LinkedIn": "LinkedIn", + "Youtube": "youtube", + "Github": "Github", + "Edit response": "Tanggepan sunting", + "To send your message press Enter and Shift + Enter to add a new line": "Kanggo ngirim penet pesen Ketik lan Shift + Enter kanggo nambah garis anyar", + "To send your note press Enter and Shift + Enter to add a new line": "Kanggo ngirim cathetan Pencet Ketik lan Shift + Enter kanggo nambah garis anyar", + "Please enter an unit price. It should be a number": "Ketik rega unit. Sampeyan kudu dadi nomer", + "Type to search": "Ketik kanggo digoleki", + "Members": "Anggota", + "Choose integrations": "Pilih integrasi", + "Choose brands": "Pilih merek", + "Select a date": "Pilih tanggal", + "Click to select a date": "Klik kanggo milih tanggal", + "Choose users": "Pilih pangguna", + "Select Brand": "Pilih merek", + "Write here Welcome message.": "Tulis ing kene.", + "Write here Away message.": "Tulis ing kene.", + "Write here Thank you message.": "Tulis ing kene Matur nuwun pesen.", + "Select app": "Pilih app", + "Enter new password": "Ketik sandhi anyar", + "Choose channels": "Pilih saluran", + "Select": "Pilih", + "select": "pilih", + "Choose members": "Pilih anggota", + "Search": "Telusuri", + "your@email.com": "@email.com", + "password": "sandhi", + "registered@email.com": "registrasi@email.com", + "new password": "sandhi anyar", + "Start typing to leave a note": "Miwiti ngetik kanggo ninggalake cathetan", + "Re-type password": "Ketik maneh sandhi", + "Name:": "Jeneng:", + "Size:": "Ukuran:", + "Website:": "Situs Web:", + "Industry:": "Industri:", + "Plan:": "Rencana:", + "There arent't any groups and fields": "Ora ana klompok lan lapangan", + "Please add property Group first": "Mangga tambahake Klompok properti dhisik", + "Add group": "Tambah klompok", + "Add Property": "Tambah Properti", + "Add Group & Field ": "Tambah Klompok & Lapangan", + "Add Group": "Tambah Klompok", + "Edit Property": "Properti Owahi", + "Group:": "Klompok:", + "There arent't any fields in this group": "Ora ana lapangan ing grup iki", + "Customer Properties": "Properti Pelanggan", + "Company Properties": "Properties Company", + "Add an option": "Tambah pilihan", + "Copy to clipboard": "Salin menyang clipboard", + "Go to home page": "Menyang kaca ngarep", + "Assign to": "Nemtokake menyang", + "Remove assignee": "Mbusak assignee", + "Account settings": "Setelan akun", + "General Settings": "Setelan umum", + "Integration Settings": "Setelan integrasi", + "Personal settings": "Setelan pribadi", + "Add category": "Nambah kategori", + "Filter": "Filter", + "Live": "Urip", + "Draft": "Kraf", + "Paused": "Ngaso", + "Your messages": "Pesen sampeyan", + "Delivered inside your app Reach active users": "Dikirim ing app sampeyan Goleki pangguna aktif", + "Delivered to a user s email inbox Customize with your own templates": "Dikirim menyang kothak mlebu email pangguna Ngatur nganggo template dhewe", + "email": "email", + "Create segment": "Nggawe segmen", + "customers": "pelanggan", + "has any value": "nduwe regane", + "is unknown": "ora dingerteni", + "is not": "ora", + "is": "yaiku", + "Less than": "Kurang saka", + "City": "Kutha", + "Greater than": "Ngungkuli", + "Country": "Negara", + "Current page url": "Kaca url saiki", + "Browser language": "Bahasa Browser", + "conversation": "obrolan", + "engageMessage": "Waca rangkeng", + "customer": "pelanggan", + "company": "perusahaan", + "starts with": "diwiwiti karo", + "ends with": "mungkasi karo", + "contains": "ngemot", + "does not contain": "ora ngemot", + "Basic Info": "Info dhasar", + "Add Phone": "Nambah telpon", + "Add Email": "Tambah Email", + "Choose your tags": "Pilih label sampeyan", + "Manage tags": "Ngatur label", + "Edit Profile": "Sunting Profil", + "Sign out": "Mlebu", + "Last Updated By": "Paling Keri Dianyari Miturut", + "There is no channel": "Ora ana saluran", + "Facebook page": "Kaca Facebook", + "plan": "rencana", + "Edit segment": "Segmen Owahi", + "New message": "Pesen anyar", + "Message": "Pesen", + "Merge Customers": "Gabung Pelanggan", + "Assign": "Nemtokake", + "There is no message.": "Ora ana pesen.", + "per page": "saben kaca", + "[view]": "[ndeleng]", + "Go to twitter": "Menyang twitter", + "Build": "Mbangun", + "`s integration": "integrasi `s", + "Created": "Digawe", + "Email templates:": "Cithakan email:", + "Content:": "Isi:", + "Response Templates": "Cithakan tanggapan", + "Merge Companies": "Gabung Perusahaan", + "Response template": "Cithakan tanggapan", + "Attach file": "Pasang file", + "Upload": "Unggah", + "ShoutBox": "ShoutBox", + "Popup": "Popup", + "Embedded": "Ditempelake", + "Choose a flow type": "Pilih jinis aliran", + "CallOut": "Nyeluk", + "Callout title": "Judhul panggilan", + "Callout body": "Awak panelpon", + "Callout button text": "Teks tombol callout", + "Skip callOut": "Skip telponOut", + "Form button text": "Teks tombol Formulir", + "Theme color": "Werna tema", + "Featured image": "Gambar sing ditampilake", + "Full Preview": "Preview lengkap", + "Try some of these colors:": "Coba sawetara warna kasebut:", + "Included fields": "Gawan", + "Deal": "Piping Sales", + "Deals": "Pipeline Sales", + "New Product & Service": "Produk & Layanan Anyar", + "No product or services": "Ora ana produk utawa layanan", + "UOM": "UOM", + "Quantity": "Kuantitas", + "Unit price": "Rega unit", + "Discount": "Diskon", + "Tax": "Pajak", + "Ticket": "Tiket", + "Task": "Tugas", + "Select company": "Pilih perusahaan", + "Select customer": "Pilih pelanggan", + "Note": "Cathetan", + "Assigned to": "Ditunjuk kanggo", + "Move": "Ngalih", + "Move deal": "Pindhah menehi hasil", + "Copy": "Nyalin", + "Close date": "Tanggal tanggal", + "Choose product & service": "Pilih produk & layanan", + "Select product & service": "Pilih produk & layanan", + "Please, select a close date": "Mangga pilih tanggal cedhak", + "Create a new Product": "Gawe Produk anyar", + "New Product": "Produk Anyar", + "SKU": "SKU", + "Choose a company": "Pilih perusahaan", + "Choose a customer": "Pilih pelanggan", + "Choose a board": "Pilih papan", + "Choose a pipeline": "Pilih pipa", + "Manage Board & Pipeline": "Ngatur Dewan & Pipa", + "Choose a stage": "Pilih panggung", + "Deal Settings": "Setelan Pipeline Sales", + "Ticket Settings": "Setelan Tiket", + "Task Settings": "Setelan Tugas", + "Boards & Pipelines": "Papan & Pipa", + "Product & Service": "Produk & Layanan", + "There is no pipeline in this board.": "Ora ana pipa ing papan iki.", + "There is no board": "Ora ana papan", + "New Board": "Papan Anyar", + "Add pipeline": "Tambah pipa", + "Create one": "Nggawe siji", + "Edit pipeline": "Owahi pipa", + "Add stage": "Tambah tahapan", + "Board": "Papan", + "Pipeline": "Pipa", + "Stage": "Panggung", + "Stage name": "Jeneng tangga", + "Add a deal": "Nambah kesepakatan", + "Add a task": "Nambah tugas", + "Add a ticket": "Tambah karcis", + "Priority": "Utami prioritas", + "Critical": "Kritis", + "High": "Dhuwur", + "Normal": "Biasa", + "Low": "Dhuwur", + "Attachments": "Lampiran", + "Source": "Sumber", + "Select a source": "Pilih sumber", + "Upload an attachment": "Upload lampiran", + "Description": "Katrangan", + "Select a priority": "Pilih prioritas", + "Edit deal": "Sunting", + "Edit task": "Tugas tugas", + "Edit ticket": "Owahi tiket", + "Add Product / Service": "Tambah Product / Layanan", + "Reply tweet": "Mbales tweet", + "Tweet": "Tweet", + "Details": "Rincian", + "View Profile": "Ndeleng profil", + "Empty Notes": "Cathetan kosong", + "Mini-resume": "Mini-resume", + "You cannot update this property": "Sampeyan ora bisa nganyari properti iki", + "Desktop": "Desktop", + "Mobile": "Ponsel", + "Tablet": "Tablet", + "Amount": "Jumlah", + "Owner": "Pamilik", + "Department": "Departemen", + "Lead Status": "Status Pop Ups", + "Lifecycle State": "Negara Lifecycle", + "Has Authority": "Wis Panguwasa", + "Do not disturb": "Aja ganggu", + "Parent Company": "Perusahaan Parent", + "Business Type": "Jenis Bisnis", + "Employees count": "Pekerja ngetang", + "Yes": "Ya", + "No": "Ora", + "Copied": "Disalin", + "General": "Umum", + "Currency": "Dhuwit", + "Unit of measurement": "Unit pangukuran", + "Create another board": "Gawe papan liya", + "No pipeline": "Ora ana pipa", + "No stage": "Ora ana tahapan", + "No deal": "Ora urusan", + "Background": "Latar mburi", + "Choose": "Pilih", + "Successfully saved.": "Sukses disimpen.", + "Successfully moved.": "Sukses pindhah.", + "Successfully selected.": "Sukses dipilih.", + "Body description here": "Deskripsi awak ing kene", + "Thank you.": "Matur suwun.", + "Choose a brand": "Pilih merek", + "Write a title": "Tulis judhul", + "Contact": "Hubungi", + "Created by": "Digawe dening", + "Manage": "Ngatur", + "Dropdown": "Tambak", + "Slide-in Left": "Geser ing Kiri", + "Slide-in Right": "Geser-Tengen Tengen", + "Enter name": "Ketik jeneng", + "Delivered": "Dikirim", + "Clicked": "Diklik", + "Complaint": "Keluhan", + "Bounce": "Mumbul", + "Rendering Failure": "Gagal Rendering", + "Rejected": "Ditolak", + "Action": "Tumindak", + "Please select one to merge": "Pilih salah siji kanggo nggabung", + "Filter by date": "Filter miturut tanggal", + "Total conversations": "Jumlah obrolan", + "Filter by form": "Filter miturut formulir", + "Supporters": "Panyengkuyung", + "Import histories": "Impor sejarah", + "Imported Date": "Tanggal Diimpor", + "Imported User": "Pangguna Diimpor", + "Export customers": "Pelanggan pelanggan", + "Import customers": "Impor pelanggan", + "Export companies": "Perusahaan ekspor", + "Import companies": "Perusahaan impor", + "All customers imported successfully": "Kabeh pelanggan kanthi sukses diimpor", + "There aren't any imports": "Ora ana impor", + "Successfully Removed all customers": "Sukses diilangi kabeh pelanggan", + "You can only import max 600 at a time": "Sampeyan mung bisa ngimpor max 600 sekaligus", + "Invalid import type": "Jinis impor sing ora bener", + "Last updated": "Paling dianyari", + "Filter by lead status": "Filter miturut status Pop Ups", + "No lead status chosen": "Ora ana status timbal sing dipilih", + "Schedule:": "Jadwal:", + "Every Day": "Saben dina", + "Every Month": "Saben sasi", + "Every Year": "Saben taun", + "Every Monday": "Saben Senin", + "Every Tuesday": "Saben dina Selasa", + "Every Wednesday": "Saben Rebo", + "Every Thursday": "Saben Kemis", + "Every Friday": "Saben dina Jumuah", + "Every Saturday": "Saben dina Setu", + "Every Sunday": "Saben dina Minggu", + "Choose a schedule day": "Pilih jadwal dina", + "Choose a schedule time": "Pilih wektu jadwal", + "Won": "Menang", + "Lost": "Ilang", + "App store": "Toko App", + "App store menu": "Menu Toko App", + "In Progress": "Ing Kemajuan", + "It`s size exceeds the limit 10mb": "Ukurane ngluwihi watesan 10mb", + "Congrats! Your email sent successfully!": "Selamat! Email sampeyan sukses dikirim!", + "Works with messenger": "Bisa karo utusan", + "Knowledge base topic": "Topik dhasar kawruh", + "Package version": "Versi paket", + "Branch name": "Jeneng cabang", + "Abbreviated": "Disingkat", + "User": "Pangguna", + "Recent conversations": "Obrolan sing anyar", + "Start new conversation": "Miwiti obrolan anyar", + "Talk with support staff": "Dhiskusi karo staf dhukungan", + "Send a message": "Kirim pesen", + "Volume Report By Customer": "Laporan Jilid Miturut Pelanggan", + "Export Report": "Laporan Ekspor", + "We`re ready to help you.": "Kita siap mbantu sampeyan.", + "Please choose a product": "Mangga pilih produk", + "Please choose a currency": "Mangga pilih mata uang", + "No board": "Ora ana papan", + "Empty": "Kuwat", + "There is no account.": "Ora ana akun.", + "There is no tag.": "Ora ana tag.", + "Skip for now": "Skip saiki", + "Go to Inbox": "Menyang Inbox", + "Messenger Language": "Basa Messenger", + "Messenger name": "Jeneng Messenger", + "Skip": "Lumpati", + "Finish": "Rampung", + "Show": "Tampilake", + "Hide": "Singidaken", + "Previous": "Sadurunge", + "Users": "Pangguna", + "users": "pangguna", + "brands": "merek", + "messengers": "utusan", + "channels": "saluran", + "Emails": "Email", + "Messengers": "Utusan", + "You already have": "Sampeyan wis duwe", + "There is another": "Ana liyane", + "Let's create your brand": "Ayo nggawe merek sampeyan", + "Invite users": "Ajak pangguna", + "Let's grow your team": "Ayo tuwuh tim sampeyan", + "Invite": "Ngundang", + "Let's start": "Ayo dadi miwiti", + "Start messaging now!": "Mulai olahpesen saiki!", + "Create channel": "Gawe saluran", + "Get started on your channel": "Miwiti saluran sampeyan", + "Create your first messenger": "Gawe utusan pertama sampeyan", + "Welcome": "Sugeng rawuh", + "Nothing inserted": "Ora ana sing dipasang", + "Empty emails": "Email kosong", + "Initial setup": "Persiyapan awal", + "Add another": "Tambah liyane", + "Don't show again": "Aja nuduhake maneh", + "No other pipeline": "Ora ana pipa liyane", + "No other boards": "Ora ana papan liya", + "I'm ready to get started": "Aku siap miwiti", + "Welcome paragraph": "Kita seneng duwe sampeyan. Ayo sawetara wektu supaya sampeyan nyiyapake", + "Get notified and notify others to keep everything up to date": "Menehi kabar lan notifikasi wong liya supaya ora kabeh", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Yen tim sampeyan ora nampa pesen sing dikirim ing situs kasebut, kita bisa ngirim menyang dheweke liwat email", + "Send an email and notify members that they've been invited!": "Kirim email lan ngabari anggota sing wis diundang!", + "January": "Januari", + "February": "Februari", + "March": "Maret", + "April": "April", + "May": "Mei", + "June": "Juni", + "July": "Juli", + "August": "Agustus", + "September": "September", + "October": "Oktober", + "November": "November", + "December": "Desember", + "Today": "Dina iki", + "Sales": "Penjualan", + "Monthly view": "Tampilan saben wulan", + "Filter by": "Filter dening", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Nggawe merek lan kanthi nambah saluran, sampeyan bisa nganalisa kabutuhan pelanggan lan mbantu ngatasi masalah", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Tuwuh lan tambah pangguna menyang tim sampeyan! Nemtokake, ngrancang lan supaya dheweke nindakake apa sing paling apik", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Tanggalan karo saben umpan balik pelanggan lan nggawe obrolan sing luwih migunani", + "Create brand channels that are specifically categorized by type and activity": "Gawe saluran merek sing dikategorikake khusus miturut jinis lan kegiatan", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Tambah Nambah kene lan deleng ing Widget Messenger sampeyan! Kanggo ndeleng Pandu ing kothak mlebu, priksa manawa ditambahake ing saluran sampeyan.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Sampeyan bisa milih saka integrasi messenger akeh lan ditambahake menyang basis pengetahuan. Dhasar kawruh bakal ditampilake ing tab widget utusan sampeyan. Kanggo nindakake iki, mangga nggawe lan tambahake menyang dhasar pengetahuan.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "Tandha email minangka kesempatan kanggo nuduhake informasi sing mbantu mbangun pangenalan lan kapercayan.", + "Let's start taking care of your customers": "Ayo miwiti ngurus pelanggan", + "Add in your first company!": "Tambah ing perusahaan pisanan!", + "Choose from our many integrations and add to your channel": "Pilih saka akeh integrasi lan ditambahake menyang saluran sampeyan", + "Let's get you messaging away!": "Ayo sampeyan entuk pesen!", + "Whoops! No messages here but you can always start": "Sapa! Ora ana pesen ing kene nanging sampeyan bisa miwiti", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Artikel bisa ngrampungake pirang-pirang masalah sing nemoni pelanggan. Jinis artikel pengetahuan bisa uga kalebu solusi kanggo masalah umum, dokumentasi produk utawa fitur, FAQ lan liya-liyane.", + "Oops! No data here": "Dhuh! Ora ana data ing kene", + "Start adding integrations now!": "Miwiti nambah integrasi saiki!", + "Add an integration in this Brand": "Tambah integrasi ing merek iki", + "Oh dear! You have no imports": "Duh! Sampeyan ora duwe impor", + "A strong customer engagement can help to further brand growth and loyalty": "Keterlibatan pelanggan sing kuwat bisa mbantu nambah wutah lan kesetiaan merek", + "Get started on your pipeline": "Miwiti pipo sampeyan", + "Connect to Facebook messages right from your Team Inbox": "Sambungake menyang pesen Facebook langsung saka Kothak mlebu Tim", + "Tweet back to your DMs right from your Team Inbox": "Tweet maneh menyang DMs sampeyan saka kothak mlebu Team", + "Connect straight to your Gmail and get those emails going": "Sambungake langsung menyang Gmail lan entuk email kasebut", + "Find your lead forms right here in your Widget": "Temokake formulir timbal sampeyan ing kene ing Widget", + "Get access to your Knowledge Base right in your Widget": "Entuk akses menyang Base Kawigaten ing Widget", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Ora suwe sampeyan bakal bisa nyambung Viber langsung menyang Kothak mlebu Tim", + "Get a hold of your Whatsapp messages through your Team Inbox": "Entuk pesen samsung liwat kothak mlebu Tim", + "Connect with Wechat and start messaging right from your Team Inbox": "Sambungake karo Wechat lan wiwiti olahpesen saka kothak mlebu Tim", + "Find feedback that has been gathered from various customer engagement channels.": "Temokake umpan balik sing wis diklumpukake saka macem-macem saluran keterlibatan pelanggan.", + "A report on the total number of customer feedback responses given by team members.": "Laporan babagan total tanggapan pelanggan sing diwenehake dening anggota tim.", + "The average time a team member solved a problem based on customer feedback.": "Rata-rata wektu anggota tim ngatasi masalah adhedhasar umpan balik pelanggan.", + "You can find stats that defines the average response time by each team member.": "Sampeyan bisa nemokake statistik sing nemtokake wektu tanggapan rata-rata saben anggota tim.", + "Oh boy, looks like you need to get a head start on your deals": "Oh bocah lanang, katon sampeyan kudu miwiti kepala kanggo menehi hasil", + "Open segments and starting add details": "Bukak bagean lan miwiti nambah rincian", + "Now easier to find contacts according to your brand": "Saiki luwih gampang golek kontak miturut merek sampeyan", + "Search and filter customers by form": "Telusuri lan nyaring pelanggan miturut formulir", + "There is always a lead!": "Ana mesthi timbal!", + "Calendar": "Tanggalan", + "Columns": "Kolom", + "columns": "kolom", + "Linked Accounts": "Link Akun", + "Select account": "Pilih akun", + "Select account ...": "Pilih akun ...", + "Add Account": "Tambah Akun", + "Remove Account": "Mbusak Akun", + "You can upload only image file": "Sampeyan mung bisa ngunggah file .png utawa .jpg", + "Permissions": "Ijin", + "New permission": "Ijin anyar", + "New group": "Klompok anyar", + "Users groups": "Klompok pangguna", + "Choose the module": "Pilih modul", + "Choose the actions": "Pilih tumindak", + "Choose the users": "Pilih pangguna", + "Choose the groups": "Pilih kelompok kasebut", + "Choose groups": "Pilih klompok", + "Allow": "Ngidini", + "Invitation Status": "Status Undhangan", + "Permission": "Ijin", + "data successfully imported": "data kasil diimpor", + "Show result": "Tampilake asil", + "Importing": "Ngimpor", + "data": "data", + "errors acquired": "kesalahan angsal", + "There are": "Ana", + "Continue": "Terusake", + "Create brand": "Nggawe merek", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Gawe olahpesen langsung lan olahpesen aplikasi ing app. Tanggalan karo saben umpan balik pelanggan kanggo interaksi sing luwih migunani.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Saluran menehi tampilan lengkap babagan merek lan aplikasi kabeh ing sak panggonan. Sampeyan bisa ndeleng kabeh pesen sing bakal mlebu ing kothak mlebu tim sampeyan.", + "Hooray and Congratulations! You've completed the initial setup!": "Hooray lan Sugeng! Sampeyan wis ngrampungake persiyapan awal!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Tempel kode ing ngisor iki sadurunge tag ing saben kaca sing pengin ditampilake erting.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Tempel kode ing ngisor iki sadurunge tag awak ing saben kaca sing pengin ditampilake", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Yen jinis aliran sampeyan, nempel kode ing ngisor iki, sampeyan pengin muncul bakal katon", + "If your flow type is popup paste the code below additionally in your button": "Yen jinis aliran sampeyan nyembul tempel kode ing ngisor iki uga ing tombol sampeyan", + "Choose messengers": "Pilih utusan", + "erxes allows you to create multiple messengers": "Erxes ngidini sampeyan nggawe pirang-pirang messenger", + "erxes allows you to create multiple brands": "Erx ngidini sampeyan nggawe pirang-pirang merek", + "erxes allows you to create multiple channels": "Erxes ngidini sampeyan nggawe macem-macem saluran", + "Contacts": "Kontak", + "Create group": "Gawe kelompok", + "Visitors": "Pengunjung", + "Due in the next day": "Amarga ing dina esuk", + "Due in the next week": "Amarga ing minggu sabanjure", + "Due in the next month": "Amarga ing wulan ngarep", + "Has no close date": "Ora duwe tanggal cedhak", + "Over due": "Over amarga", + "Clear Filter": "Filter Filter", + "Remove this filter": "Copot saringan iki", + "Filtering is on": "Nyaring aktif", + "Choose products": "Pilih produk", + "Choose companies": "Pilih perusahaan", + "Choose customers": "Pilih pelanggan", + "Choose team members": "Pilih anggota tim", + "erxes Inc": "ningkahan Inc.", + "Get": "Njaluk", + "Download ios app for free on the App Store": "Download aplikasi ios gratis ing Toko App.", + "Download android app for free on the Google play": "Download aplikasi Android kanthi gratis ing muter Google.", + "Please upgrade your browser to use erxes!": "Mangga upgrade browser kanggo nggunakake erx!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Sayange, sampeyan lagi mbukak browser sing ora kompatibel karo erx.", + "Please use recommended version": "Mangga nggunakake versi sing disaranake", + "Messenger data": "Data Messenger", + "Customer field data": "Data lapangan pelanggan", + "Others": "Liyane", + "Select brand": "Pilih merek", + "There is no permissions in this group": "Ora ana idin ing grup iki.", + "There is no group": "Ora ana grup.", + "User groups": "Klompok pangguna", + "What action can do": "Tumindak apa bisa ditindakake", + "Who can": "Sing bisa", + "Grant permission": "Ijin idin", + "Check if permission is allowed": "Priksa manawa wis diidini", + "Then": "Banjur", + "Or": "Utawa", + "Auto message description": "Kirimake email lan ngobrol menyang pangguna pangguna sing mlebu adhedhasar segmen merek / tag / segmen. Sampeyan bisa ngeset wektu kanggo ngirim email utawa ngobrol luwih dhisik. Desain obrolan bisa disusupi, lencana lan pesen lengkap lan bisa dadi teks utawa video.", + "Manual message description": "Kirimake email lan ngobrol menyang pangguna pangguna sing mlebu adhedhasar segmen merek / tag / segmen. Email utawa chatting bakal dikirim langsung sawise sampeyan klik tombol nyimpen. Desain obrolan bisa disusupi, lencana lan pesen lengkap lan bisa dadi teks utawa video.", + "Visitor auto message description": "Kirim obrolan sing diangkah menyang pengunjung sing wis dilebokake ing situs web adhedhasar kaca, kegiatan, negara sing dipanggoni lan kutha. Desain obrolan bisa disusupi, lencana lan pesen lengkap lan bisa dadi teks utawa video.", + "Required field": "Kolom sing dibutuhake!", + "Invalid email format! Please enter a valid email address": "Format email sing ora bener! Ketik alamat email sing bener.", + "Invalid link": "Link sing ora sah!", + "Maximum length is": "Dawane maksimal yaiku", + "characters": "karakter!", + "Invalid number format! Please enter a valid number": "Format nomer sing ora bener! Mangga ketik nomer sing bener.", + "Insert email template to content": "Lebokake template email menyang konten", + "Logs": "Log", + "There are no logs recorded": "Ora ana cathetan sing direkam", + "Module": "Modul", + "Unchanged fields": "Lapangan sing ora owah", + "Changed fields": "Lapangan sing diowahi", + "Create": "Nggawe", + "Update": "Nganyari", + "Changes": "Malih", + "Choose start date": "Pilih tanggal wiwitan", + "Choose end date": "Pilih tanggal pungkasan", + "Permission denied": "Ijin ditolak", + "Old data": "Data lawas", + "New data": "Data anyar", + "Archive": "Arsip", + "NetworkError": "Nyoba kanggo mulihake sambungan. Owah-owahan sing saiki wis ora bisa disimpen.", + "Email add account description question": "Apa sampeyan nyambungake akun email sing dituduhake?", + "Email add account description": "Yen sampeyan nyambungake email menyang kothak mlebu obrolan, sampeyan nyambungake minangka akun sing dienggo bareng. Pesen sing dikirim menyang akun sing dituduhake bisa dideleng dening kabeh wong sing duwe akses menyang kothak mlebu tim sampeyan.", + "No connected email": "Ora ana email sing disambung", + "Your email will be sent with Erxes email template": "Email sampeyan bakal dikirim nganggo template email Erxes" +} diff --git a/ui/src/locales/kk.json b/ui/src/locales/kk.json new file mode 100644 index 00000000000..5a34cb36faf --- /dev/null +++ b/ui/src/locales/kk.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Сіз сенімдісіз бе? Мұны болдырмауға болмайды.", + "Yes, I am": "Иә мен сондаймын", + "No, Cancel": "Жоқ, Болдырмау", + "Filter by tags": "Тегтер бойынша сүзу", + "There is no data": "Дерек жоқ", + "There is no data.": "Дерек жоқ.", + "Load more": "Тағы жүктеңіз", + "There aren't any activities at the moment.": "Қазіргі уақытта ешқандай әрекеттер жоқ.", + "Reset your password": "Құпия сөзді қалпына келтіріңіз", + "Email me the instruction": "Маған нұсқаулықты электронды пошта арқылы жіберіңіз", + "Sign in": "Кіру", + "Change password": "Құпия сөзді өзгерту", + "Set your new password": "Жаңа құпия сөзді орнатыңыз", + "Forgot password?": "Құпия сөзді ұмыттыңыз ба?", + "Photo": "Фото", + "Name": "Аты", + "Views": "Көріністер", + "Conversion": "Айырбастау", + "Go to import": "Импортқа өтіңіз", + "Conversion rate": "Айырбастау бағамы", + "Contacts gathered": "Байланыстар жиналды", + "Create lead": "Қалқымалы терезелер жасаңыз", + "Form title": "Пішін атауы", + "Related": "Байланысты", + "Form description": "Пішін сипаттамасы", + "Position": "Лауазымы", + "Username": "Пайдаланушы аты", + "Email": "Электрондық пошта", + "sec": "сек", + "Twitter username": "Twitter қолданушы аты", + "Inbox": "Кіріс жәшігі", + "Workflow": "Жұмыс процесі", + "Watch": "Қарау", + "Watching": "Қарау", + "Team Inbox": "Топтық жәшік", + "Customers": "Клиенттер", + "Companies": "Компаниялар", + "Engage": "Қатыстырыңыз", + "Insights": "Түсініктер", + "Knowledge Base": "Білім базасы", + "Settings": "Параметрлер", + "Resolve": "Шешу", + "Send": "Жіберіңіз", + "No company": "Компания жоқ", + "No customer": "Клиент жоқ", + "Not tagged yet": "Белгіленген жоқ", + "New note": "Жаңа нота", + "Conversation": "Әңгіме", + "Notes": "Ескертпелер", + "Activity": "Қызметі", + "Basic info": "Негізгі ақпарат", + "Size": "Көлемі", + "Other": "Басқа", + "Industry": "Өнеркәсіп", + "Website": "Веб-сайт", + "Plan": "Жоспар", + "About": "Туралы", + "Discard": "Жою", + "Save": "Сақтау", + "Create response template": "Жауап шаблонын жасаңыз", + "Associate": "Серіктес", + "No tags": "Тегтер жоқ", + "Add customer": "Клиент қосыңыз", + "No segments": "Сегменттер жоқ", + "Manage Columns": "Бағандарды басқару", + "New customer": "Жаңа клиент", + "Add company": "Компанияны қосыңыз", + "New company": "Жаңа компания", + "Choose which column you see": "Көретін бағанды таңдаңыз", + "There is no engage message.": "Ешқандай қызықтыратын хабарлама жоқ.", + "Add Knowledge base": "Білім базасын қосыңыз", + "Add knowledge base.": "Білім базасын қосыңыз.", + "New Channel": "Жаңа арна", + "Edit": "Өңдеу", + "Edit basic info": "Негізгі ақпаратты өңдеңіз", + "Manage integration": "Интеграцияны басқарыңыз", + "Manage Integration": "Интеграцияны басқару", + "Choose new brand": "Жаңа брендті таңдаңыз", + "Edit integration": "Интеграцияны өңдеңіз", + "Integration": "Интеграция", + "Integration menu": "Интеграция мәзірі", + "New Brand": "Жаңа бренд", + "Add facebook page": "Facebook парағын қосыңыз", + "Add integrations": "Интегралдарды қосыңыз", + "Add messenger": "Хабарламаны қосыңыз", + "There is no lead.": "Қорғасын жоқ.", + "New response template": "Жаңа жауап шаблоны", + "Cancel": "Болдырмау", + "Public": "Қоғамдық", + "Private": "Жеке", + "New email template": "Жаңа электрондық пошта шаблоны", + "Local publisher's email template": "Жергілікті баспаның электрондық поштасының шаблоны", + "New user": "Жаңа қолданушы", + "Load More": "Көбірек жүктеу", + "Session count": "Сессия саны", + "Last seen at": "Соңғы рет көрілген", + "Tags": "Тегтер", + "Member": "Мүше", + "Remove": "Алып тастаңыз", + "No companies added yet!": "Әлі ешқандай компания қосылмаған!", + "Merge": "Біріктіру", + "First Name": "Аты", + "Last Name": "Тек", + "First name": "Аты", + "Last name": "Тек", + "Primary Email": "Негізгі электрондық пошта", + "Phone": "Телефон", + "Is user": "Пайдаланушы", + "Save & New": "Жаңа сақтау", + "Save & Close": "Сақтау және жабу", + "Close": "Жабық", + "Customer properties": "Клиенттің қасиеттері", + "Device properties": "Құрылғының қасиеттері", + "Location": "Орналасуы", + "Browser": "Браузер", + "Platform": "Платформа", + "IP Address": "IP мекенжайы", + "Hostname": "Хост атауы", + "Language": "Тіл", + "User Agent": "Пайдаланушы агенті", + "Other properties": "Басқа қасиеттер", + "Facebook": "Facebook", + "Facebook profile": "Facebook профилі", + "Messenger usage": "Хабарламаны қолдану", + "Status": "Күй", + "Online": "Желіде", + "Offline": "Офлайн", + "Twitter": "Twitter", + "Twitter quote": "Twitter дәйексөзі", + "Retweet": "Retweet", + "Screen name": "Ник", + "Don't see the result you're looking for? ": "Сіз іздеген нәтиже көрінбейді ме?", + "Merged Info": "Біріктірілген ақпарат", + "E-mail": "Электрондық пошта", + "Integrations": "Интеграциялар", + "integration": "біріктіру", + "Brands": "Брендтер", + "Start date": "Басталатын күн", + "End date": "Аяқталу күні", + "lead": "Поп-поптар", + "twitter": "twitter", + "facebook": "facebook", + "messenger": "хабаршы", + "Title": "Атауы", + "Brand": "Бренд", + "Current Password": "Ағымдағы Құпия сөз", + "Current password": "Ағымдағы Құпия сөз", + "New Password": "Жаңа Құпия Сөз", + "Re-type Password to confirm": "Растау үшін құпия сөзді қайта теріңіз", + "Signature": "Қолы", + "simple": "қарапайым", + "custom": "әдет-ғұрып", + "default": "әдепкі", + "default language": "әдепкі тіл", + "primary": "негізгі", + "Content": "Мазмұны", + "Save & draft": "Сақтау және жоба", + "Save & live": "Сақтау және өмір сүру", + "Message:": "Хабар:", + "Email template:": "Электрондық пошта шаблоны:", + "Email subject:": "Электрондық пошта тақырыбы:", + "From": "Кімнен", + "Message type:": "Хабарлама түрі:", + "Sent as:": "Жіберілген:", + "Brand:": "Бренд:", + "Add rule": "Ереже қосу", + "Last online": "Соңғы желіде", + "No Activities": "Әрекеттер жоқ", + "There is no customer.": "Тапсырыс беруші жоқ.", + "Properties": "Қасиеттері", + "Customize ": "Реттеңіз", + "Kind": "Мейірімді", + "All": "Бәрі", + "Auto": "Автоматты", + "Visitor auto": "Келушілер авто", + "Manual": "Қолмен", + "Delivered to a user s email inbox": "Пайдаланушының электрондық пошта жәшігіне жеткізілді", + "Customize with your own templates": "Өз шаблондарыңызбен теңшеңіз", + "Delivered inside your app": "Қолданба ішінде жеткізілді", + "Reach active users": "Белсенді пайдаланушыларға қол жеткізіңіз", + "Channel": "Арна", + "Edit columns": "Бағандарды өңдеу", + "Auto message": "Авто хабарлама", + "Manual message": "Қолмен хабарлама", + "Visitor auto message": "Келушілердің автоматты хабарламасы", + "Actions": "Әрекеттер", + "Created date": "Жасалған күні", + "Type": "Түрі", + "Failed": "Сәтсіз аяқталды", + "Sent": "Жіберілді", + "Total": "Барлығы", + "Pause": "Кідірту", + "Set live": "Тікелей эфирге қойыңыз", + "Sending": "Жіберіліп жатыр", + "Delete": "Жою", + "Choose segment": "Сегментті таңдаңыз", + "To:": "Кімге:", + "Messenger kind:": "Хабаршы түрі:", + "Title:": "Атауы", + "Channel:": "Арна", + "No items": "Ешқандай элементтер жоқ", + "New": "Жаңа", + "Options:": "Опциялар:", + "Options": "Опциялар", + "Type:": "Түрі:", + "Add": "Қосу", + "Validation:": "Тексеру", + "Date": "Күні", + "Number": "Сан", + "Text:": "Мәтін:", + "Description:": "Сипаттама:", + "This item is requried": "Бұл зат қайта анықталған", + "Preview": "Алдын-ала қарау", + "Column name": "Баған атауы", + "Visible": "Көрінетін", + "Visibility": "Көріну", + "Choose person": "Адамды таңдаңыз", + "Conversation Details": "Әңгіме туралы мәліметтер", + "Opened": "Ашылды", + "Conversations": "Әңгімелер", + "Channels": "Арналар", + "Select all": "Барлығын таңдаңыз", + "Filter by tag": "Тегтер бойынша сүзу", + "Filter by integrations": "Интеграция бойынша сүзу", + "Filter by brand": "Бренд бойынша сүзу", + "Filter by channel": "Арна бойынша сүзу", + "Filter by status": "Күйі бойынша сүзу", + "# Channel": "# Арна", + "Unassigned": "Тағайындалмаған", + "Participating": "Қатысады", + "Resolved": "Шешілді", + "View more": "Көбірек көру", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Клиент желіден тыс. Хабарларды жасыру және жіберу үшін нұқыңыз, олар келесі уақытта желіде болғанда алады.", + "No templates": "Шаблондар жоқ", + "Save as template": "Үлгі ретінде сақтау", + "Daily First Response Resolve Rate": "Күнделікті алғашқы жауап жылдамдығын шешіңіз", + "Daily First Response Resolve Rate by Team Members": "Күнделікті алғашқы жауап команда мүшелерінің бағасын шешеді", + "Daily Response Close Resolve Rate by Team Members": "Күнделікті жауап жауабын топ мүшелері шешеді", + "Volume Report": "Көлем туралы есеп", + "Feedbacks gathered through various customer engagement channels.": "Клиенттерді тартудың әртүрлі арналары бойынша жиналған пікірлер.", + "Response Report": "Жауап беру туралы есеп", + "Total number of response for customer feedbacks, by each staff.": "Әр қызметкердің тапсырыс берушілердің пікірлеріне жауаптарының жалпы саны.", + "Response Close Report": "Жауапты жабу туралы есеп", + "Average time of each staff solving problems that based on customer feedbacks.": "Тапсырыс берушілердің пікірлеріне негізделген мәселелерді шешетін әр қызметкердің орташа уақыты.", + "First Response Report": "Бірінші жауап туралы есеп", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Бір пікірге жауап беру уақыты. Статистика әр қызметкердің орташа жауап уақытын анықтайды.", + "Daily Response Close Resolve Rate": "Күнделікті жауап Жабу жылдамдығын шешіңіз", + "Daily Response Close Resolve rate by Team Members": "Күнделікті жауап Жабу Топ мүшелерінің жылдамдығын шешіңіз", + "Response Times summary": "Жауап беру уақытының қысқаша мазмұны", + "Response Trend": "Жауап беру үрдісі", + "Punch card": "Карточка", + "Response by team members": "Топ мүшелерінің жауабы", + "Tag": "Тег", + "Internal note": "Ішкі нота", + "Manage templates": "Шаблондарды басқару", + "Volume summary": "Көлемнің қысқаша мазмұны", + "Volume Trend": "Көлемді тренд", + "Summary": "Қысқаша мазмұны", + "Install code": "Кодты орнатыңыз", + "No copyable code": "Көшіруге болатын код жоқ", + "Manage Knowledge Base": "Білім қорын басқару", + "Add Category": "Санат қосыңыз", + "Add Article": "Мақал қосыңыз", + "Customer engagement. REDEFINED.": "Клиенттерді тарту. ТАБЫЛДЫ.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes - бұл сату, маркетинг және қолдау үшін ашық бастапқы хабар алмасу платформасына жауап беретін AI", + "404. This page is not found.": "404. Бұл бет табылған жоқ.", + "erxes is an open-source messaging platform for customer success": "erxes - бұл клиенттің жетістігі үшін ашық бастапқы хабар алмасу платформасы", + "Notification settings": "Хабарландыру параметрлері", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Маркетинг, сату және клиенттерге қызмет көрсету платформасы сіздің бизнесіңізге неғұрлым белсенді клиенттерді тартуға көмектесу үшін жасалған. Hubspot-ты миссиямен және қауымдастық басқаратын экожүйемен алмастырыңыз.", + "Mark Page Read": "Оқылған парақты белгілеу", + "Mark All Read": "Барлығын оқылған деп белгілеңіз", + "Coming soon": "Жақында шығады", + "Looks like you are all caught up": "Барлығыңыз қолға түскен сияқтысыз", + "AI": "AI", + "See all": "Барлығын көру", + "Select a field": "Өрісті таңдаңыз", + "Add condition": "Шарт қосу", + "Parent segment conditions": "Ата-аналық сегмент шарттары", + "Filter by segments": "Сегменттер бойынша сүзу", + "New segment": "Жаңа сегмент", + "Manage segments": "Сегменттерді басқарыңыз", + "Users who match": "Сәйкес келетін пайдаланушылар", + "any": "кез келген", + "all": "бәрі", + "of the below conditions": "төмендегі шарттардың", + "Sub segment of": "Қосалқы сегмент", + "Color": "Түсі", + "Filters": "Сүзгілер", + "User(s) will recieve this message": "Пайдаланушы (лар) бұл хабарды алады", + "Color code": "Түс коды", + "Engage Message": "Хабарламаны тарту", + "Item counts": "Элемент есептеледі", + "Appearance": "Сыртқы келбеті", + "Hours, Availability & Other configs": "Сағат, қол жетімділік және басқа параметрлер", + "There is no brand": "Бренд жоқ", + "There is no integration in this channel.": "Бұл арнада интеграция жоқ.", + "Template markup": "Шаблонды белгілеу", + "Use html template here": "Мұнда html шаблонын қолданыңыз", + "Choose your email template type": "Электрондық пошта шаблонының түрін таңдаңыз", + "Email signatures": "Электрондық пошта қолтаңбалары", + "Personal Settings": "Жеке параметрлер", + "Account Settings": "Аккаунт баптаулары", + "Profile": "Профиль", + "Get notification by email": "Электрондық пошта арқылы хабарлама алыңыз", + "Admin": "Админ", + "Contributor": "Қатысушы", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Біз сіздерді қиындықтармен құттықтаймыз және бізбен ұзақ мерзімді сау серіктестік күтеміз.", + "Hi, any questions?": "Сәлем, сұрақтарыңыз бар ма?", + "1 hour ago": "1 сағат бұрын", + "We need your help!": "Біз сіздің көмегіңізге мұқтажбыз!", + "6 minutes ago": "6 минут бұрын", + "Write a reply ...": "Жауап жазыңыз ...", + "App": "Қолданба", + "From email": "Электрондық поштадан", + "User email title": "Пайдаланушының электрондық поштасының атауы", + "User email content": "Пайдаланушының электрондық пошта мазмұны", + "Admin emails": "Әкімші электрондық пошталары", + "Admin email title": "Әкімші электрондық поштасының атауы", + "Admin email content": "Әкімші электрондық поштасының мазмұны", + "Redirect url": "URL мекенжайын қайта бағыттау", + "On success": "Сәттілік туралы", + "Load": "Жүктеу", + "Success": "Жетістік", + "Thank content": "Рахмет мазмұны", + "Choose a custom color": "Жеке түстерді таңдаңыз", + "Choose a wallpaper": "Түсқағазды таңдаңыз", + "Choose a logo": "Логотипті таңдаңыз", + "Visible online to visitor or customer": "Интернетте келушіге немесе тапсырыс берушіге көрінетін", + "Online messaging": "Интернеттегі хабарламалар", + "Welcome message": "Құттықтау хабары", + "Offline messaging": "Желіден тыс хабар алмасу", + "Away message": "Жолдан хабар", + "Thank you message": "Рахмет хабарлама", + "Hours & Availability": "Сағат және қол жетімділік", + "Turn online/offline manually": "Онлайн / офлайн қолмен қосыңыз", + "Set to follow your schedule": "Сіздің кестеңізге сәйкес келетін етіп орнатыңыз", + "Other configs": "Басқа конфигурациялар", + "Notify customer": "Тапсырыс берушіні хабардар ету", + "Online hours": "Онлайн сағат", + "Add another time": "Басқа уақытты қосыңыз", + "Time zone": "Уақыт белдеуі", + "Messenger": "Хабаршы", + "Knowledge base": "Білім базасы", + "Notification": "Хабарлама", + "Notifications": "Хабарламалар", + "Show unread": "Оқылмағанды көрсету", + "Unread": "Оқылмаған", + "Recent": "Жақында", + "Mark all as read": "Барлығын оқылған деп белгілеңіз", + "Email Appearance": "Электрондық поштаның пайда болуы", + "Team Members": "Команда мүшелері", + "Account default": "Есептік жазба әдепкі", + "Team members": "Топ мүшелері", + "Full name": "Толық аты", + "Leads": "Поп-поптар", + "Email Signature": "Электрондық пошта қолтаңбасы", + "Response Template": "Жауап үлгісі", + "Email Template": "Электрондық пошта шаблоны", + "Response templates": "Жауап үлгілері", + "Email templates": "Электрондық пошта шаблондары", + "Brand Name": "Бренд атауы", + "Current template": "Ағымдағы шаблон", + "Created at": "Құрылды", + "Manage Fields": "Өрістерді басқару", + "Duplicate": "Көшірме", + "Code": "Код", + "Profile settings": "Профиль параметрлері", + "Change Password": "Құпия сөзді өзгерту", + "Signatures are only included in response emails.": "Қолтаңбалар тек жауап хаттарында ғана бар.", + "Signature template": "Қол қою үлгісі", + "You can use Markdown to format your signature.": "Сіз өзіңіздің қолтаңбаңызды пішімдеу үшін Markdown бағдарламасын қолдана аласыз.", + "Password": "Пароль", + "Password confirmation": "Парольді растау", + "Choose the channels": "Арналарды таңдаңыз", + "Simple": "Қарапайым", + "Custom": "Жеке", + "Create a new Company": "Жаңа Компания құру", + "New Company": "Жаңа компания", + "Edit name": "Атын өзгерту", + "Customer": "Тұтынушы", + "Add tag": "Тег қосу", + "Company": "Компания", + "New message ": "Жаңа хабарлама", + "There aren’t any activities at the moment.": "Қазіргі уақытта ешқандай әрекеттер жоқ.", + "This item is required": "Бұл элемент қажет", + "Manage fields": "Өрістерді басқару", + "Add integrations ": "Интегралдарды қосыңыз", + "Form": "Пішін", + "Create a new Customer": "Жаңа Тұтынушы жасаңыз", + "New Customer": "Жаңа тұтынушы", + "Segments": "Сегменттер", + "Add a condition": "Шарт қосыңыз", + "Open": "Ашық", + "Choose channel": "Арнаны таңдаңыз", + "Who is this message for?": "Бұл хабар кімге арналған?", + "Compose your message": "Хабарлама жазыңыз", + "No items added": "Ешқайсысы қосылмаған", + "Submit": "Жіберу", + "Next": "Келесі", + "Save & Draft": "Сақтау және жоба", + "Save & Live": "Сақтау және Live", + "From:": "Кімнен:", + "Pages": "Беттер", + "Links": "Сілтемелер", + "Enter your password to Confirm": "Құпия сөзді растау үшін енгізіңіз", + "Number of visits": "Бару саны", + "Written By": "Жазылған", + "Icon": "Белгіше", + "draft": "жоба", + "Twitter Username": "Twitter қолданушының аты", + "LinkedIn": "LinkedIn", + "Youtube": "Youtube", + "Github": "Гитуб", + "Edit response": "Жауапты өңдеу", + "To send your message press Enter and Shift + Enter to add a new line": "Хабарламаны жіберу үшін Enter және Shift + Enter пернелерін басып, жаңа жол қосыңыз", + "To send your note press Enter and Shift + Enter to add a new line": "Жазбаны жіберу үшін Enter және Shift + Enter пернелерін басып жаңа жолды қосыңыз", + "Please enter an unit price. It should be a number": "Бірліктің бағасын енгізіңіз. Бұл сан болуы керек", + "Type to search": "Іздеу үшін теріңіз", + "Members": "Мүшелер", + "Choose integrations": "Интеграцияны таңдаңыз", + "Choose brands": "Брендтерді таңдаңыз", + "Select a date": "Күнді таңдаңыз", + "Click to select a date": "Күнді таңдау үшін басыңыз", + "Choose users": "Пайдаланушыларды таңдаңыз", + "Select Brand": "Бренд таңдаңыз", + "Write here Welcome message.": "Мұнда жазыңыз сәлем.", + "Write here Away message.": "Жою туралы хабарды осында жазыңыз", + "Write here Thank you message.": "Мұнда жазыңыз рахмет.", + "Select app": "Бағдарламаны таңдаңыз", + "Enter new password": "Жаңа парольді енгізіңіз", + "Choose channels": "Арналарды таңдаңыз", + "Select": "Таңдаңыз", + "select": "таңдаңыз", + "Choose members": "Мүшелерді таңдаңыз", + "Search": "Іздеу", + "your@email.com": "сіздің@email.com", + "password": "пароль", + "registered@email.com": "тіркелген@email.com", + "new password": "Жаңа Құпия Сөз", + "Start typing to leave a note": "Жазба қалдыру үшін теруді бастаңыз", + "Re-type password": "Құпия сөзін қайтадан теріңіз", + "Name:": "Аты:", + "Size:": "Көлемі:", + "Website:": "Веб-сайт:", + "Industry:": "Өнеркәсіп:", + "Plan:": "Жоспар:", + "There arent't any groups and fields": "Ешқандай топтар мен өрістер болған жоқ", + "Please add property Group first": "Алдымен мүлік тобын қосыңыз", + "Add group": "Топ қосу", + "Add Property": "Меншік қосу", + "Add Group & Field ": "Топ пен өрісті қосу", + "Add Group": "Топты қосу", + "Edit Property": "Меншікті өңдеу", + "Group:": "Топ:", + "There arent't any fields in this group": "Бұл топта өрістер болған жоқ", + "Customer Properties": "Тұтынушы қасиеттері", + "Company Properties": "Компанияның қасиеттері", + "Add an option": "Опция қосыңыз", + "Copy to clipboard": "Алмасу буферіне көшіру", + "Go to home page": "Басты бетке өту", + "Assign to": "Тағайындау", + "Remove assignee": "Тағайындаушыны алып тастаңыз", + "Account settings": "Аккаунт баптаулары", + "General Settings": "Жалпы параметрлер", + "Integration Settings": "Интеграция параметрлері", + "Personal settings": "Жеке параметрлер", + "Add category": "Санат қосу", + "Filter": "Сүзгі", + "Live": "Тікелей эфир", + "Draft": "Жоба", + "Paused": "Кідіртілді", + "Your messages": "Сіздің хабарламаларыңыз", + "Delivered inside your app Reach active users": "Бағдарлама ішінде жеткізілді Белсенді пайдаланушыларға қол жеткізіңіз", + "Delivered to a user s email inbox Customize with your own templates": "Пайдаланушының электрондық пошта жәшігіне жеткізілді Өз шаблондарыңызбен теңшеңіз", + "email": "электрондық пошта", + "Create segment": "Сегмент құру", + "customers": "тұтынушылар", + "has any value": "мәні бар", + "is unknown": "белгісіз", + "is not": "емес", + "is": "болып табылады", + "Less than": "Одан азырақ", + "City": "Қала", + "Greater than": "Үлкенірек", + "Country": "Ел", + "Current page url": "Ағымдағы беттің URL мекенжайы", + "Browser language": "Браузер тілі", + "conversation": "әңгіме", + "engageMessage": "engMessage", + "customer": "тұтынушы", + "company": "компаниясы", + "starts with": "басталады", + "ends with": "аяқталады", + "contains": "қамтиды", + "does not contain": "құрамында жоқ", + "Basic Info": "Негізгі ақпарат", + "Add Phone": "Телефон қосыңыз", + "Add Email": "Электрондық пошта қосыңыз", + "Choose your tags": "Тегтеріңізді таңдаңыз", + "Manage tags": "Тегтерді басқару", + "Edit Profile": "Профильді өңдеу", + "Sign out": "Шығу", + "Last Updated By": "Соңғы жаңартылған:", + "There is no channel": "Арна жоқ", + "Facebook page": "Facebook парақшасы", + "plan": "жоспар", + "Edit segment": "Сегментті өңдеу", + "New message": "Жаңа хабарлама", + "Message": "Хабар", + "Merge Customers": "Тұтынушыларды біріктіру", + "Assign": "Тағайындау", + "There is no message.": "Хабар жоқ.", + "per page": "әр параққа", + "[view]": "[қарау]", + "Go to twitter": "Twitter-ге өтіңіз", + "Build": "Құру", + "`s integration": "интеграция", + "Created": "Жасалды", + "Email templates:": "Электрондық пошта шаблондары:", + "Content:": "Мазмұны:", + "Response Templates": "Жауап үлгілері", + "Merge Companies": "Компанияларды біріктіру", + "Response template": "Жауап үлгісі", + "Attach file": "Файлды тіркеңіз", + "Upload": "Жүктеу", + "ShoutBox": "ShoutBox", + "Popup": "Кенеттен шыққан", + "Embedded": "Кіріктірілген", + "Choose a flow type": "Ағын түрін таңдаңыз", + "CallOut": "Шақыру", + "Callout title": "Шақыру тақырыбы", + "Callout body": "Шақыру денесі", + "Callout button text": "Шақыру батырмасының мәтіні", + "Skip callOut": "Қоңырауды өткізіп жіберіңіз", + "Form button text": "Форма батырмасының мәтіні", + "Theme color": "Тақырып түсі", + "Featured image": "Танымал сурет", + "Full Preview": "Толық алдын-ала қарау", + "Try some of these colors:": "Мына түстердің кейбірін қолданып көріңіз:", + "Included fields": "Қосылған өрістер", + "Deal": "Сату құбыры", + "Deals": "Сату құбырлары", + "New Product & Service": "Жаңа өнім және қызмет", + "No product or services": "Өнім немесе қызметтер жоқ", + "UOM": "UOM", + "Quantity": "Саны", + "Unit price": "Тауар өлшемінің бағасы", + "Discount": "Жеңілдік", + "Tax": "Салық", + "Ticket": "Билет", + "Task": "Тапсырма", + "Select company": "Компанияны таңдаңыз", + "Select customer": "Клиентті таңдаңыз", + "Note": "Ескерту", + "Assigned to": "Тағайындалған", + "Move": "Жылжыту", + "Move deal": "Жылжыту мәмілесі", + "Copy": "Көшіру", + "Close date": "Жабу күні", + "Choose product & service": "Өнім мен қызметті таңдаңыз", + "Select product & service": "Өнім мен қызметті таңдаңыз", + "Please, select a close date": "Өтінетін күнді таңдаңыз", + "Create a new Product": "Жаңа өнімді жасаңыз", + "New Product": "Жаңа өнім", + "SKU": "ОҚУ", + "Choose a company": "Компанияны таңдаңыз", + "Choose a customer": "Клиентті таңдаңыз", + "Choose a board": "Тақтаны таңдаңыз", + "Choose a pipeline": "Құбырды таңдаңыз", + "Manage Board & Pipeline": "Басқарма және құбыр желісін басқару", + "Choose a stage": "Кезеңді таңдаңыз", + "Deal Settings": "Сату құбыры параметрлері", + "Ticket Settings": "Билет параметрлері", + "Task Settings": "Тапсырма параметрлері", + "Boards & Pipelines": "Қораптар мен құбырлар", + "Product & Service": "Өнім және қызмет", + "There is no pipeline in this board.": "Бұл тақтада құбыр жоқ.", + "There is no board": "Тақта жоқ", + "New Board": "Жаңа кеңес", + "Add pipeline": "Құбырды қосыңыз", + "Create one": "Біреуін жасаңыз", + "Edit pipeline": "Құбырды өңдеу", + "Add stage": "Сахна қосу", + "Board": "Басқарма", + "Pipeline": "Құбыр желісі", + "Stage": "Кезең", + "Stage name": "Сахна атауы", + "Add a deal": "Мәміле қосыңыз", + "Add a task": "Тапсырма қосыңыз", + "Add a ticket": "Билетті қосыңыз", + "Priority": "Басымдық", + "Critical": "Сыни тұрғыдан", + "High": "Биік", + "Normal": "Қалыпты", + "Low": "Төмен", + "Attachments": "Тіркемелер", + "Source": "Дерек көзі", + "Select a source": "Дереккөзді таңдаңыз", + "Upload an attachment": "Тіркемені жүктеңіз", + "Description": "Сипаттамасы", + "Select a priority": "Басымдықты таңдаңыз", + "Edit deal": "Мәмілені өңдеу", + "Edit task": "Тапсырманы өңдеу", + "Edit ticket": "Билетті өңдеу", + "Add Product / Service": "Өнімді / қызметті қосыңыз", + "Reply tweet": "Твиттерге жауап беру", + "Tweet": "Твиттер", + "Details": "Егжей", + "View Profile": "Профильді көру", + "Empty Notes": "Бос жазбалар", + "Mini-resume": "Шағын-түйіндеме", + "You cannot update this property": "Бұл сипатты жаңарту мүмкін емес", + "Desktop": "Жұмыс үстелі", + "Mobile": "Ұялы", + "Tablet": "Планшет", + "Amount": "Сома", + "Owner": "Иесі", + "Department": "Бөлім", + "Lead Status": "Поп-поп мәртебесі", + "Lifecycle State": "Өмір циклінің күйі", + "Has Authority": "Билігі бар", + "Do not disturb": "Кедергі жасамаңыз", + "Parent Company": "Бас компания", + "Business Type": "Бизнес түрі", + "Employees count": "Қызметкерлер саны", + "Yes": "Иә", + "No": "Жоқ", + "Copied": "Көшірілген", + "General": "Жалпы", + "Currency": "Валюта", + "Unit of measurement": "Өлшем бірлігі", + "Create another board": "Басқа тақтаны жасаңыз", + "No pipeline": "Құбыр жоқ", + "No stage": "Кезең жоқ", + "No deal": "Мәміле жоқ", + "Background": "Фон", + "Choose": "Таңдау", + "Successfully saved.": "Сәтті сақталды.", + "Successfully moved.": "Сәтті көшірілді.", + "Successfully selected.": "Сәтті таңдалды.", + "Body description here": "Дене сипаттамасы осында", + "Thank you.": "Рақмет сізге.", + "Choose a brand": "Брендті таңдаңыз", + "Write a title": "Тақырыпты жазыңыз", + "Contact": "Байланыс", + "Created by": "Жасалған", + "Manage": "Басқару", + "Dropdown": "Түсіп қалу", + "Slide-in Left": "Сол жақтағы слайд", + "Slide-in Right": "Слайдпен кіру құқығы", + "Enter name": "Атын енгізіңіз", + "Delivered": "Жеткізілген", + "Clicked": "Басылды", + "Complaint": "Шағым", + "Bounce": "Төңкеру", + "Rendering Failure": "Көрсету сәтсіздігі", + "Rejected": "Қабылданбады", + "Action": "Әрекет", + "Please select one to merge": "Біріктіру үшін біреуін таңдаңыз", + "Filter by date": "Күні бойынша сүзу", + "Total conversations": "Жалпы сөйлесулер", + "Filter by form": "Пішін бойынша сүзу", + "Supporters": "Қолдаушылар", + "Import histories": "Тарихтарды импорттау", + "Imported Date": "Импортталған күні", + "Imported User": "Импортталған пайдаланушы", + "Export customers": "Клиенттерді экспорттау", + "Import customers": "Клиенттерді импорттау", + "Export companies": "Экспорттық компаниялар", + "Import companies": "Импорттық компаниялар", + "All customers imported successfully": "Барлық клиенттер сәтті импортталды", + "There aren't any imports": "Импорт жоқ", + "Successfully Removed all customers": "Барлық клиенттер сәтті жойылды", + "You can only import max 600 at a time": "Сіз бір уақытта ең көбі 600 импорттай аласыз", + "Invalid import type": "Жарамсыз импорт түрі", + "Last updated": "Соңғы жаңартылды", + "Filter by lead status": "Қалқымалы терезелер күйі бойынша сүзу", + "No lead status chosen": "Қорғасын күйі таңдалмаған", + "Schedule:": "Жұмыс кестесі:", + "Every Day": "Күн сайын", + "Every Month": "Әр ай сайын", + "Every Year": "Жыл сайын", + "Every Monday": "Дүйсенбі сайын", + "Every Tuesday": "Әр сейсенбі сайын", + "Every Wednesday": "Әр сәрсенбіде", + "Every Thursday": "Әр бейсенбі сайын", + "Every Friday": "Әр жұмада", + "Every Saturday": "Әр сенбі", + "Every Sunday": "Әр жексенбі", + "Choose a schedule day": "Күн кестесін таңдаңыз", + "Choose a schedule time": "Кестенің уақытын таңдаңыз", + "Won": "Жеңді", + "Lost": "Жоғалған", + "App store": "Қолданбалар дүкені", + "App store menu": "Қолданбалар дүкені мәзірі", + "In Progress": "Орындалуда", + "It`s size exceeds the limit 10mb": "Оның мөлшері 10 МБ шегінен асады", + "Congrats! Your email sent successfully!": "Құттықтаймыз! Сіздің электрондық поштаңыз сәтті жіберілді!", + "Works with messenger": "Хабарламамен жұмыс істейді", + "Knowledge base topic": "Тақырып бойынша білім базасы", + "Package version": "Пакет нұсқасы", + "Branch name": "Филиалдың атауы", + "Abbreviated": "Қысқартылған", + "User": "Пайдаланушы", + "Recent conversations": "Соңғы әңгімелер", + "Start new conversation": "Жаңа сөйлесуді бастаңыз", + "Talk with support staff": "Қолдау қызметкерлерімен сөйлесіңіз", + "Send a message": "Хабарлама жіберу", + "Volume Report By Customer": "Клиенттің көлемі туралы есеп", + "Export Report": "Экспорт туралы есеп", + "We`re ready to help you.": "Біз сізге көмектесуге дайынбыз.", + "Please choose a product": "Өнімді таңдаңыз", + "Please choose a currency": "Өтінемін, валютаны таңдаңыз", + "No board": "Тақта жоқ", + "Empty": "Бос", + "There is no account.": "Есеп жоқ.", + "There is no tag.": "Тег жоқ.", + "Skip for now": "Әзірге өткізіп жіберіңіз", + "Go to Inbox": "Кіріс жәшігіне өтіңіз", + "Messenger Language": "Messenger тілі", + "Messenger name": "Хабаршы аты", + "Skip": "Өткізу", + "Finish": "Аяқтаңыз", + "Show": "Көрсету", + "Hide": "Жасыру", + "Previous": "Алдыңғы", + "Users": "Пайдаланушылар", + "users": "пайдаланушылар", + "brands": "брендтер", + "messengers": "хабаршылар", + "channels": "арналар", + "Emails": "Электрондық пошталар", + "Messengers": "Хабарламалар", + "You already have": "Сізде бар", + "There is another": "Тағы біреуі бар", + "Let's create your brand": "Сіздің брендіңізді құрайық", + "Invite users": "Пайдаланушыларды шақырыңыз", + "Let's grow your team": "Сіздің командаңызды өсірейік", + "Invite": "Шақыру", + "Let's start": "Бастайық", + "Start messaging now!": "Хабарламаны қазір бастаңыз!", + "Create channel": "Арна жасаңыз", + "Get started on your channel": "Арнаңыздан бастаңыз", + "Create your first messenger": "Алғашқы хабаршы жіберіңіз", + "Welcome": "Қош келдіңіз", + "Nothing inserted": "Ештеңе салынбаған", + "Empty emails": "Бос электрондық пошталар", + "Initial setup": "Бастапқы орнату", + "Add another": "Басқасын қосыңыз", + "Don't show again": "Басқа көрсетпеңіз", + "No other pipeline": "Басқа құбыр жоқ", + "No other boards": "Басқа тақталар жоқ", + "I'm ready to get started": "Мен бастауға дайынмын", + "Welcome paragraph": "Біз сіздерге қуаныштымыз. Сізді орнатуға бір сәт уақыт бөлейік", + "Get notified and notify others to keep everything up to date": "Барлығын жаңартып отыру үшін хабардар етіңіз және басқаларға хабарлаңыз", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Егер сіздің командаңыз сіздің сайтқа жіберген хабарламаңызды алмаған болса, біз оларды электрондық пошта арқылы жібере аламыз", + "Send an email and notify members that they've been invited!": "Электрондық поштаны жіберіп, шақырылған мүшелер туралы хабарлаңыз!", + "January": "Қаңтар", + "February": "Ақпан", + "March": "Наурыз", + "April": "Сәуір", + "May": "Мамыр", + "June": "Маусым", + "July": "Шілде", + "August": "Тамыз", + "September": "Қыркүйек", + "October": "Қазан", + "November": "Қараша", + "December": "Желтоқсан", + "Today": "Бүгін", + "Sales": "Сату", + "Monthly view": "Айлық көрініс", + "Filter by": "Сүзу", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Бренд құру және арналарды қосу арқылы сіз тұтынушыларыңыздың қажеттіліктерін жақсы талдап, олардың мәселелерін шешуге көмектесесіз", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Өз тобыңызға пайдаланушыларды көбейтіңіз және қосыңыз! Тағайындау, тағайындау және оларға ең жақсы нәрсені істеуге мүмкіндік беру", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Клиенттердің әр пікірімен үнемі хабардар болып отырыңыз және одан да мазмұнды әңгімелер жасаңыз", + "Create brand channels that are specifically categorized by type and activity": "Түрі мен қызметі бойынша арнайы санатталған бренд арналарын жасаңыз", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Мұнда қорғасын қосыңыз және оны Messenger виджетінен қараңыз! Кіріс жәшігіңіздегі лидерлерді көру үшін оның арнаңызға қосылғанына көз жеткізіңіз.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Сіз біздің көптеген хабар алмасу интеграцияларымызды таңдап, өз білім базаңызға қоса аласыз. Білім базасы сіздің хабар алмасу виджетіңіздің қойындысында пайда болады. Ол үшін өзіңіздің білім базаңызды жасаңыз және қосыңыз.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "Электрондық пошта қолтаңбасы - бұл тану мен сенімді қалыптастыруға көмектесетін ақпаратпен алмасу мүмкіндігі.", + "Let's start taking care of your customers": "Клиенттеріңізге қамқорлық жасай бастайық", + "Add in your first company!": "Бірінші компанияңызға қосыңыз!", + "Choose from our many integrations and add to your channel": "Біздің көптеген интеграцияларымызды таңдап, арнаңызға қосыңыз", + "Let's get you messaging away!": "Хабарламаны алыстатайық!", + "Whoops! No messages here but you can always start": "Қап! Мұнда хабарламалар жоқ, бірақ сіз әрқашан бастай аласыз", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Мақалалар сіздің тұтынушыларыңыз кез келген мәселелерді шеше алады. Білімдер туралы мақалалардың типтері жалпы мәселелерге, өнімге немесе сипаттамалық құжаттарға, FAQ сұрақтарына және басқаларына арналған шешімдерді қамтуы мүмкін.", + "Oops! No data here": "Қап! Мұнда деректер жоқ", + "Start adding integrations now!": "Қазір интеграцияны қосуды бастаңыз!", + "Add an integration in this Brand": "Осы брендке интеграция қосыңыз", + "Oh dear! You have no imports": "О қымбаттым! Сізде импорт жоқ", + "A strong customer engagement can help to further brand growth and loyalty": "Клиенттердің күшті қатысуы брендтің одан әрі өсуіне және адал болуға көмектеседі", + "Get started on your pipeline": "Құбыр желісіне кірісіңіз", + "Connect to Facebook messages right from your Team Inbox": "Топтық кіріс жәшігінен Facebook хабарламаларына тікелей қосылыңыз", + "Tweet back to your DMs right from your Team Inbox": "DM-ге командалық кіріс жәшігінен тікелей қосылыңыз", + "Connect straight to your Gmail and get those emails going": "Gmail-ке тікелей қосылыңыз және сол электрондық хаттарды жіберіңіз", + "Find your lead forms right here in your Widget": "Виджетіңізде қорғасын формаларын дәл осы жерден табыңыз", + "Get access to your Knowledge Base right in your Widget": "Виджетіңізден білім қорына қол жеткізіңіз", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Көп ұзамай сіз Viber-ді тікелей өзіңіздің топтық жәшігіңізге қосыла аласыз", + "Get a hold of your Whatsapp messages through your Team Inbox": "Топтық кіріс жәшігіңіз арқылы Whatsapp хабарламаларын ұстаңыз", + "Connect with Wechat and start messaging right from your Team Inbox": "Wechat-пен қосылыңыз және топтық кіріс жәшігінен тікелей хабарлама жіберіңіз", + "Find feedback that has been gathered from various customer engagement channels.": "Клиенттерді тартудың әртүрлі арналарынан алынған пікірлерді табыңыз.", + "A report on the total number of customer feedback responses given by team members.": "Топ мүшелері берген клиенттердің жауаптарының жалпы саны туралы есеп.", + "The average time a team member solved a problem based on customer feedback.": "Топ мүшесінің клиенттің пікіріне негізделген мәселені шешкен орташа уақыты.", + "You can find stats that defines the average response time by each team member.": "Әр топ мүшесінің жауаптың орташа уақытын анықтайтын статистиканы таба аласыз.", + "Oh boy, looks like you need to get a head start on your deals": "О, бала, сізге мәмілелер жасауды бастау керек сияқты", + "Open segments and starting add details": "Сегменттерді ашып, мәліметтерді қосуды бастаңыз", + "Now easier to find contacts according to your brand": "Енді брендке сәйкес контактілерді табу оңайырақ", + "Search and filter customers by form": "Клиенттерді форма бойынша іздеу және сүзу", + "There is always a lead!": "Әрқашан қорғасын бар!", + "Calendar": "Күнтізбе", + "Columns": "Бағандар", + "columns": "бағандар", + "Linked Accounts": "Байланыстырылған шоттар", + "Select account": "Есептік жазбаны таңдаңыз", + "Select account ...": "Есептік жазбаны таңдаңыз ...", + "Add Account": "Аккаунт қосу", + "Remove Account": "Тіркелгіні жою", + "You can upload only image file": "Сіз тек .png немесе .jpg кескін файлын жүктей аласыз", + "Permissions": "Рұқсаттар", + "New permission": "Жаңа рұқсат", + "New group": "Жаңа топ", + "Users groups": "Пайдаланушылар топтары", + "Choose the module": "Модульді таңдаңыз", + "Choose the actions": "Әрекеттерді таңдаңыз", + "Choose the users": "Пайдаланушыларды таңдаңыз", + "Choose the groups": "Топтарды таңдаңыз", + "Choose groups": "Топтарды таңдаңыз", + "Allow": "Рұқсат етіңіз", + "Invitation Status": "Шақыру күйі", + "Permission": "Рұқсат", + "data successfully imported": "деректер сәтті импортталды", + "Show result": "Нәтижені көрсету", + "Importing": "Импорттау", + "data": "деректер", + "errors acquired": "алынған қателер", + "There are": "Сонда бар", + "Continue": "Жалғастыру", + "Create brand": "Бренд жасаңыз", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Алғашқы тірі чатты және қолданба ішінде хабар алмасуды жасаңыз. Неғұрлым маңызды өзара әрекеттесу үшін әр клиенттің пікірімен хабардар болыңыз.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Арна барлық брендтер мен оның қосымшаларының барлығын бір жерде толық көрсетеді. Сіз келіп түсетін барлық хабарламаларды топтық кіріс жәшігінде көре аласыз.", + "Hooray and Congratulations! You've completed the initial setup!": "Ура және құттықтаймыз! Сіз бастапқы орнатуды аяқтадыңыз!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Кодты төменге дейін қойыңыз Сіз кез-келген сөйлесулердің пайда болуын қалайтын әр параққа белгілеңіз", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Төмендегі кодты барлық беттердің беткі беті пайда болғанға дейін қойыңыз", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Егер сіздің ағын түріңіз енгізілсе, төменде көрсетілген кодты қойыңыз, содан кейін сізге erxes пайда болуы керек", + "If your flow type is popup paste the code below additionally in your button": "Егер сіздің ағын түріңіз қалқымалы болса, төмендегі кодты батырмаңызға қойыңыз", + "Choose messengers": "Хабарламаларды таңдаңыз", + "erxes allows you to create multiple messengers": "erxes бірнеше хабар алмасушыларды жасауға мүмкіндік береді", + "erxes allows you to create multiple brands": "erxes бірнеше брендтер жасауға мүмкіндік береді", + "erxes allows you to create multiple channels": "erxes бірнеше арнаны құруға мүмкіндік береді", + "Contacts": "Байланыстар", + "Create group": "Топ құру", + "Visitors": "Келушілер", + "Due in the next day": "Келесі күні төленеді", + "Due in the next week": "Келесі аптада төленеді", + "Due in the next month": "Келесі айда төленуі тиіс", + "Has no close date": "Жақын күн жоқ", + "Over due": "Мерзімі аяқталды", + "Clear Filter": "Сүзгіні тазалаңыз", + "Remove this filter": "Осы сүзгіні алыңыз", + "Filtering is on": "Сүзу қосулы", + "Choose products": "Өнімдерді таңдаңыз", + "Choose companies": "Компанияларды таңдаңыз", + "Choose customers": "Клиенттерді таңдаңыз", + "Choose team members": "Топ мүшелерін таңдаңыз", + "erxes Inc": "erxes Inc", + "Get": "Алыңыз", + "Download ios app for free on the App Store": "App Store дүкенінен ios бағдарламасын ақысыз жүктеп алыңыз.", + "Download android app for free on the Google play": "Google Play-де андроид қосымшасын тегін жүктеп алыңыз.", + "Please upgrade your browser to use erxes!": "Қателіктерді пайдалану үшін шолғышты жаңартыңыз!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Өкінішке орай, сіз қателермен толық сәйкес келмейтін шолғышта жұмыс істеп жатырсыз.", + "Please use recommended version": "Ұсынылған нұсқаны қолданыңыз", + "Messenger data": "Messenger деректері", + "Customer field data": "Тұтынушы өрісі туралы мәліметтер", + "Others": "Басқалар", + "Select brand": "Брендті таңдаңыз", + "There is no permissions in this group": "Бұл топта рұқсаттар жоқ.", + "There is no group": "Ешқандай топ жоқ.", + "User groups": "Пайдаланушы топтары", + "What action can do": "Қандай әрекет жасай алады", + "Who can": "Кім алады", + "Grant permission": "Рұқсат беру", + "Check if permission is allowed": "Рұқсаттың бар-жоғын тексеріңіз", + "Then": "Содан кейін", + "Or": "Немесе", + "Auto message description": "Тіркелген пайдаланушыларға олардың брендіне / тегіне / сегментіне негізделген мақсатты электрондық пошта мен чат жіберіңіз. Электрондық пошта немесе сөйлесу уақытын алдын ала жіберуге болады. Чаттың дизайнын кесіп тастауға болады, төсбелгі және толық хабарлама және ол мәтін немесе видео болуы мүмкін.", + "Manual message description": "Тіркелген пайдаланушыларға олардың брендіне / тегіне / сегментіне негізделген мақсатты электрондық пошта мен чат жіберіңіз. Сақтау түймесін басқаннан кейін бірден электрондық пошта немесе чат жіберіледі. Чаттың дизайнын кесіп тастауға болады, төсбелгі және толық хабарлама және ол мәтін немесе видео болуы мүмкін.", + "Visitor auto message description": "Мақсатты чаттарды веб-сайттан шыққан қонақтарға кіру бетіне, қызметіне, тұратын еліне және қаласына қарай жіберіңіз. Чаттың дизайнын кесіп тастауға болады, төсбелгі және толық хабарлама және ол мәтін немесе видео болуы мүмкін.", + "Required field": "Міндетті өріс!", + "Invalid email format! Please enter a valid email address": "Электрондық пошта пішімі жарамсыз! Өтінеміз қолданыстағы электронды пошта адресін енгізіңіз.", + "Invalid link": "Жарамсыз сілтеме!", + "Maximum length is": "Максималды ұзындық", + "characters": "кейіпкерлер!", + "Invalid number format! Please enter a valid number": "Сан пішімі жарамсыз! Жарамды нөмірді енгізіңіз.", + "Insert email template to content": "Мазмұнға электрондық пошта шаблонын салыңыз", + "Logs": "Журналдар", + "There are no logs recorded": "Журналдар тіркелген жоқ", + "Module": "Модуль", + "Unchanged fields": "Өзгермеген өрістер", + "Changed fields": "Өрістер өзгерді", + "Create": "Жасау", + "Update": "Жаңарту", + "Changes": "Өзгерістер", + "Choose start date": "Басталу күнін таңдаңыз", + "Choose end date": "Аяқталу күнін таңдаңыз", + "Permission denied": "Рұқсат беруден бас тартылды", + "Old data": "Ескі деректер", + "New data": "Жаңа деректер", + "Archive": "Мұрағат", + "NetworkError": "Қосылымды қалпына келтіру әрекеті. Қазір енгізілген өзгертулер сақталмауы мүмкін.", + "Email add account description question": "Ортақ электрондық пошта есептік жазбасын қосасыз ба?", + "Email add account description": "Электрондық поштаны сөйлесу жәшігіне қосқан кезде оны ортақ тіркелгі ретінде қосасыз. Ортақ есептік жазбаларға жіберілген хабарларды топтық кіріс жәшігіне кіре алатындардың барлығы көре алады.", + "No connected email": "Қосылған электрондық пошта жоқ", + "Your email will be sent with Erxes email template": "Сіздің электронды поштаңыз Erxes электрондық пошта шаблоны арқылы жіберіледі" +} diff --git a/ui/src/locales/ko.json b/ui/src/locales/ko.json index d793258e014..a79ab5a451f 100644 --- a/ui/src/locales/ko.json +++ b/ui/src/locales/ko.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "확실해?", "Yes, I am": "예, 나는", "No, Cancel": "아니, 취소", diff --git a/ui/src/locales/mn.json b/ui/src/locales/mn.json index 8c49f7f8791..8e8406652bd 100644 --- a/ui/src/locales/mn.json +++ b/ui/src/locales/mn.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "Та энэ үйлдлийг хийхдээ итгэлтэй байна уу? ", "Yes, I am": "Тийм", "No, Cancel": "Үгүй", diff --git a/ui/src/locales/mr.json b/ui/src/locales/mr.json new file mode 100644 index 00000000000..32d985870d2 --- /dev/null +++ b/ui/src/locales/mr.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "तुला खात्री आहे? हे पूर्ववत केले जाऊ शकत नाही.", + "Yes, I am": "हो मी आहे", + "No, Cancel": "नाही, रद्द करा", + "Filter by tags": "टॅगद्वारे फिल्टर करा", + "There is no data": "कोणताही डेटा नाही", + "There is no data.": "कोणताही डेटा नाही.", + "Load more": "लादणे", + "There aren't any activities at the moment.": "याक्षणी कोणतेही क्रियाकलाप नाहीत.", + "Reset your password": "आपला संकेतशब्द पुनर्प्रस्थापित करा", + "Email me the instruction": "मला सूचना ईमेल करा", + "Sign in": "साइन इन करा", + "Change password": "संकेतशब्द बदला", + "Set your new password": "आपला नवीन संकेतशब्द सेट करा", + "Forgot password?": "संकेतशब्द विसरलात?", + "Photo": "छायाचित्र", + "Name": "नाव", + "Views": "दृश्ये", + "Conversion": "रूपांतरण", + "Go to import": "आयात करा", + "Conversion rate": "रूपांतरण दर", + "Contacts gathered": "संपर्क जमले", + "Create lead": "पॉप अप तयार करा", + "Form title": "फॉर्म शीर्षक", + "Related": "संबंधित", + "Form description": "फॉर्म वर्णन", + "Position": "स्थिती", + "Username": "वापरकर्तानाव", + "Email": "ईमेल", + "sec": "सेकंद", + "Twitter username": "ट्विटर वापरकर्तानाव", + "Inbox": "इनबॉक्स", + "Workflow": "कार्यप्रवाह", + "Watch": "पहा", + "Watching": "पहात आहे", + "Team Inbox": "कार्यसंघ इनबॉक्स", + "Customers": "ग्राहक", + "Companies": "कंपन्या", + "Engage": "व्यस्त रहा", + "Insights": "अंतर्दृष्टी", + "Knowledge Base": "पायाभूत माहिती", + "Settings": "सेटिंग्ज", + "Resolve": "निराकरण करा", + "Send": "पाठवा", + "No company": "कंपनी नाही", + "No customer": "ग्राहक नाही", + "Not tagged yet": "अद्याप टॅग केलेले नाही", + "New note": "नवीन टीप", + "Conversation": "संभाषण", + "Notes": "नोट्स", + "Activity": "क्रियाकलाप", + "Basic info": "मूलभूत माहिती", + "Size": "आकार", + "Other": "इतर", + "Industry": "उद्योग", + "Website": "संकेतस्थळ", + "Plan": "योजना", + "About": "बद्दल", + "Discard": "टाकून द्या", + "Save": "जतन करा", + "Create response template": "प्रतिसाद टेम्पलेट तयार करा", + "Associate": "सहयोगी", + "No tags": "टॅग नाहीत", + "Add customer": "ग्राहक जोडा", + "No segments": "कोणतेही विभाग नाहीत", + "Manage Columns": "स्तंभ व्यवस्थापित करा", + "New customer": "नवीन ग्राहक", + "Add company": "कंपनी जोडा", + "New company": "नवीन कंपनी", + "Choose which column you see": "आपण कोणता स्तंभ पाहता ते निवडा", + "There is no engage message.": "तेथे कोणताही व्यस्त संदेश नाही.", + "Add Knowledge base": "नॉलेज बेस जोडा", + "Add knowledge base.": "ज्ञान बेस जोडा.", + "New Channel": "नवीन चॅनेल", + "Edit": "सुधारणे", + "Edit basic info": "मूलभूत माहिती संपादित करा", + "Manage integration": "एकत्रीकरण व्यवस्थापित करा", + "Manage Integration": "एकत्रीकरण व्यवस्थापित करा", + "Choose new brand": "नवीन ब्रँड निवडा", + "Edit integration": "एकत्रीकरण संपादित करा", + "Integration": "एकत्रीकरण", + "Integration menu": "एकत्रीकरण मेनू", + "New Brand": "नवीन ब्रँड", + "Add facebook page": "फेसबुक पृष्ठ जोडा", + "Add integrations": "एकत्रीकरण जोडा", + "Add messenger": "मेसेंजर जोडा", + "There is no lead.": "आघाडी नाही.", + "New response template": "नवीन प्रतिसाद टेम्पलेट", + "Cancel": "रद्द करा", + "Public": "सार्वजनिक", + "Private": "खाजगी", + "New email template": "नवीन ईमेल टेम्पलेट", + "Local publisher's email template": "स्थानिक प्रकाशकांचे ईमेल टेम्पलेट", + "New user": "नवीन वापरकर्ता", + "Load More": "लादणे", + "Session count": "सत्र संख्या", + "Last seen at": "अंतिम वेळी पाहिले", + "Tags": "टॅग्ज", + "Member": "सभासद", + "Remove": "काढा", + "No companies added yet!": "अद्याप कोणत्याही कंपन्या जोडल्या नाहीत!", + "Merge": "विलीन", + "First Name": "पहिले नाव", + "Last Name": "आडनाव", + "First name": "पहिले नाव", + "Last name": "आडनाव", + "Primary Email": "प्राथमिक इ मेल", + "Phone": "फोन", + "Is user": "वापरकर्ता आहे", + "Save & New": "& नवीन जतन करा", + "Save & Close": "सेव्ह आणि क्लोज", + "Close": "बंद", + "Customer properties": "ग्राहक गुणधर्म", + "Device properties": "डिव्हाइस गुणधर्म", + "Location": "स्थान", + "Browser": "ब्राउझर", + "Platform": "प्लॅटफॉर्म", + "IP Address": "आयपी पत्ता", + "Hostname": "होस्टनाव", + "Language": "इंग्रजी", + "User Agent": "वापरकर्ता एजंट", + "Other properties": "इतर गुणधर्म", + "Facebook": "फेसबुक", + "Facebook profile": "फेसबुक प्रोफाइल", + "Messenger usage": "मेसेंजर वापर", + "Status": "स्थिती", + "Online": "ऑनलाईन", + "Offline": "ऑफलाइन", + "Twitter": "ट्विटर", + "Twitter quote": "ट्विटर कोट", + "Retweet": "रीट्वीट", + "Screen name": "स्क्रीन नाव", + "Don't see the result you're looking for? ": "आपण शोधत असलेला परिणाम दिसत नाही?", + "Merged Info": "विलीन माहिती", + "E-mail": "ई-मेल", + "Integrations": "एकत्रीकरण", + "integration": "एकत्रीकरण", + "Brands": "ब्रँड", + "Start date": "प्रारंभ तारीख", + "End date": "शेवटची तारीख", + "lead": "पॉप अप", + "twitter": "ट्विटर", + "facebook": "फेसबुक", + "messenger": "मेसेंजर", + "Title": "शीर्षक", + "Brand": "ब्रँड", + "Current Password": "सध्याचा गुप्त शब्द", + "Current password": "सध्याचा गुप्त शब्द", + "New Password": "नवीन संकेतशब्द", + "Re-type Password to confirm": "पुष्टी करण्यासाठी संकेतशब्द पुन्हा-टाइप करा", + "Signature": "स्वाक्षरी", + "simple": "सोपे", + "custom": "सानुकूल", + "default": "डीफॉल्ट", + "default language": "डीफॉल्ट भाषा", + "primary": "प्राथमिक", + "Content": "सामग्री", + "Save & draft": "जतन करा आणि मसुदा", + "Save & live": "जतन करा आणि लाइव्ह करा", + "Message:": "संदेशः", + "Email template:": "ईमेल टेम्पलेट:", + "Email subject:": "ईमेल विषय:", + "From": "पासून", + "Message type:": "संदेशाचा प्रकारः", + "Sent as:": "म्हणून पाठविले:", + "Brand:": "ब्रँड:", + "Add rule": "नियम जोडा", + "Last online": "अंतिम ऑनलाइन", + "No Activities": "क्रियाकलाप नाहीत", + "There is no customer.": "कोणताही ग्राहक नाही.", + "Properties": "गुणधर्म", + "Customize ": "सानुकूलित करा", + "Kind": "प्रकार", + "All": "सर्व", + "Auto": "ऑटो", + "Visitor auto": "अभ्यागत ऑटो", + "Manual": "मॅन्युअल", + "Delivered to a user s email inbox": "वापरकर्त्याच्या ईमेल इनबॉक्समध्ये वितरित केले", + "Customize with your own templates": "आपल्या स्वतःच्या टेम्पलेटसह सानुकूलित करा", + "Delivered inside your app": "आपल्या अ‍ॅप मध्ये वितरित", + "Reach active users": "सक्रिय वापरकर्त्यांपर्यंत पोहोचा", + "Channel": "चॅनल", + "Edit columns": "स्तंभ संपादित करा", + "Auto message": "ऑटो संदेश", + "Manual message": "मॅन्युअल संदेश", + "Visitor auto message": "अभ्यागत ऑटो संदेश", + "Actions": "क्रिया", + "Created date": "तयार केलेली तारीख", + "Type": "प्रकार", + "Failed": "अयशस्वी", + "Sent": "पाठविले", + "Total": "एकूण", + "Pause": "विराम द्या", + "Set live": "थेट सेट करा", + "Sending": "पाठवून", + "Delete": "हटवा", + "Choose segment": "विभाग निवडा", + "To:": "प्रतिः", + "Messenger kind:": "मेसेंजर प्रकारः", + "Title:": "शीर्षक", + "Channel:": "चॅनल", + "No items": "आयटम नाहीत", + "New": "नवीन", + "Options:": "पर्यायः", + "Options": "पर्याय", + "Type:": "प्रकार:", + "Add": "जोडा", + "Validation:": "प्रमाणीकरण", + "Date": "तारीख", + "Number": "संख्या", + "Text:": "मजकूर:", + "Description:": "वर्णन:", + "This item is requried": "या आयटमची पुनरावृत्ती आहे", + "Preview": "पूर्वावलोकन", + "Column name": "स्तंभ नाव", + "Visible": "दृश्यमान", + "Visibility": "दृश्यमानता", + "Choose person": "व्यक्ती निवडा", + "Conversation Details": "संभाषण तपशील", + "Opened": "उघडले", + "Conversations": "संभाषणे", + "Channels": "वाहिन्या", + "Select all": "सर्व निवडा", + "Filter by tag": "टॅगद्वारे फिल्टर करा", + "Filter by integrations": "एकत्रीकरणाद्वारे फिल्टर करा", + "Filter by brand": "ब्रँडनुसार फिल्टर करा", + "Filter by channel": "चॅनेलद्वारे फिल्टर करा", + "Filter by status": "स्थितीनुसार फिल्टर करा", + "# Channel": "# चॅनल", + "Unassigned": "निलंबित", + "Participating": "सहभागी होत आहे", + "Resolved": "निराकरण केले", + "View more": "अधिक प i हा", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "ग्राहक ऑफलाइन आहे. संदेश लपविण्यासाठी आणि पाठविण्यासाठी क्लिक करा आणि पुढील वेळी ते ऑनलाईन झाल्यावर त्यांना ते प्राप्त होतील.", + "No templates": "टेम्पलेट नाहीत", + "Save as template": "टेम्पलेट म्हणून जतन करा", + "Daily First Response Resolve Rate": "दररोज प्रथम प्रतिसाद निराकरण दर", + "Daily First Response Resolve Rate by Team Members": "कार्यसंघ सदस्यांद्वारे दररोज प्रथम प्रतिसाद निराकरण दर", + "Daily Response Close Resolve Rate by Team Members": "कार्यसंघ सदस्यांद्वारे दैनिक प्रतिसाद बंद निराकरण दर", + "Volume Report": "खंड अहवाल", + "Feedbacks gathered through various customer engagement channels.": "अभिप्राय विविध ग्राहक प्रतिबद्ध चॅनेलद्वारे जमले.", + "Response Report": "प्रतिसाद अहवाल", + "Total number of response for customer feedbacks, by each staff.": "प्रत्येक फीडबॅकद्वारे ग्राहकांच्या फीडबॅकसाठी एकूण प्रतिसाद.", + "Response Close Report": "प्रतिसाद बंद अहवाल", + "Average time of each staff solving problems that based on customer feedbacks.": "ग्राहकांच्या फीडबॅकवर आधारित समस्येचे निराकरण करणार्‍या प्रत्येक कर्मचार्‍यांचे सरासरी वेळ", + "First Response Report": "प्रथम प्रतिसाद अहवाल", + "Responding time for a single feedback. Stats will define average response time by each staff.": "एकाच अभिप्रायासाठी प्रतिसाद देणारा वेळ आकडेवारी प्रत्येक कर्मचार्यांद्वारे सरासरी प्रतिसाद वेळ निश्चित करते.", + "Daily Response Close Resolve Rate": "दैनिक प्रतिसाद बंद निराकरण दर", + "Daily Response Close Resolve rate by Team Members": "कार्यसंघ सदस्यांद्वारे दैनिक प्रतिसाद बंद निराकरण दर", + "Response Times summary": "प्रतिसाद टाइम्स सारांश", + "Response Trend": "प्रतिसाद ट्रेंड", + "Punch card": "पंच कार्ड", + "Response by team members": "कार्यसंघ सदस्यांचा प्रतिसाद", + "Tag": "टॅग", + "Internal note": "अंतर्गत टीप", + "Manage templates": "टेम्पलेट व्यवस्थापित करा", + "Volume summary": "खंड सारांश", + "Volume Trend": "व्हॉल्यूम ट्रेंड", + "Summary": "सारांश", + "Install code": "कोड स्थापित करा", + "No copyable code": "कॉपी करण्यायोग्य कोड नाही", + "Manage Knowledge Base": "नॉलेज बेस व्यवस्थापित करा", + "Add Category": "श्रेणी जोडा", + "Add Article": "लेख जोडा", + "Customer engagement. REDEFINED.": "ग्राहक प्रतिबद्धता. पुन्हा परिभाषित.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "एर्क्सस एक एआय पूर्ण विक्री, विपणन आणि समर्थनासाठी मुक्त स्रोत संदेशन प्लॅटफॉर्म आहे", + "404. This page is not found.": "404. हे पृष्ठ आढळले नाही.", + "erxes is an open-source messaging platform for customer success": "एरॅक्स ही ग्राहकांच्या यशासाठी एक मुक्त-स्रोत संदेशन व्यासपीठ आहे", + "Notification settings": "सूचना सेटिंग्ज", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "आपल्या व्यवसायात अधिक गुंतलेल्या ग्राहकांना आकर्षित करण्यास मदत करण्यासाठी डिझाइन केलेले विपणन, विक्री आणि ग्राहक सेवा प्लॅटफॉर्म. हबस्पॉटला मिशन आणि समुदाय-चालित पर्यावरणातील बदला.", + "Mark Page Read": "पृष्ठ वाचन चिन्हांकित करा", + "Mark All Read": "सर्व वाचलेले चिन्हांकित करा", + "Coming soon": "लवकरच येत आहे", + "Looks like you are all caught up": "आपण सर्व जण पकडल्यासारखे दिसते आहे", + "AI": "एआय", + "See all": "सर्व पाहा", + "Select a field": "एक फील्ड निवडा", + "Add condition": "अट जोडा", + "Parent segment conditions": "मूळ विभाग अटी", + "Filter by segments": "विभागांनुसार फिल्टर करा", + "New segment": "नवीन विभाग", + "Manage segments": "विभाग व्यवस्थापित करा", + "Users who match": "वापरकर्ते जे जुळतात", + "any": "कोणत्याही", + "all": "सर्व", + "of the below conditions": "खालील अटींचे", + "Sub segment of": "चा उपखंड", + "Color": "रंग", + "Filters": "फिल्टर", + "User(s) will recieve this message": "वापरकर्ता संदेश पाठवेल", + "Color code": "रंग कोड", + "Engage Message": "संदेश गुंतवा", + "Item counts": "आयटम गणना", + "Appearance": "स्वरूप", + "Hours, Availability & Other configs": "तास, उपलब्धता आणि इतर कॉन्फिगरेशन", + "There is no brand": "कोणताही ब्रँड नाही", + "There is no integration in this channel.": "या चॅनेलमध्ये कोणतेही एकत्रीकरण नाही.", + "Template markup": "टेम्पलेट मार्कअप", + "Use html template here": "येथे HTML टेम्पलेट वापरा", + "Choose your email template type": "आपला ईमेल टेम्पलेट प्रकार निवडा", + "Email signatures": "ईमेल स्वाक्षर्‍या", + "Personal Settings": "वैयक्तिक सेटिंग्ज", + "Account Settings": "खाते सेटिंग्ज", + "Profile": "प्रोफाइल", + "Get notification by email": "ईमेलद्वारे सूचना मिळवा", + "Admin": "प्रशासन", + "Contributor": "हातभार लावणारा", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "आम्ही तुम्हाला एरक्ससचे हार्दिक स्वागत करतो आणि आमच्याबरोबर दीर्घकालीन निरोगी कार्यरत असण्याची आशा करतो.", + "Hi, any questions?": "हाय, काही प्रश्न आहेत?", + "1 hour ago": "1 तासापूर्वी", + "We need your help!": "आम्हाला आपल्या मदतीची आवश्यकता आहे!", + "6 minutes ago": "6 मिनिटांपूर्वी", + "Write a reply ...": "उत्तर लिहा ...", + "App": "अॅप", + "From email": "ईमेल वरून", + "User email title": "वापरकर्ता ईमेल शीर्षक", + "User email content": "वापरकर्ता ईमेल सामग्री", + "Admin emails": "प्रशासन ईमेल", + "Admin email title": "प्रशासन ईमेल शीर्षक", + "Admin email content": "प्रशासन ईमेल सामग्री", + "Redirect url": "पुनर्निर्देशित url", + "On success": "यशावर", + "Load": "लोड", + "Success": "यश", + "Thank content": "सामग्री धन्यवाद", + "Choose a custom color": "सानुकूल रंग निवडा", + "Choose a wallpaper": "वॉलपेपर निवडा", + "Choose a logo": "लोगो निवडा", + "Visible online to visitor or customer": "अभ्यागत किंवा ग्राहकांसाठी ऑनलाइन दृश्यमान", + "Online messaging": "ऑनलाइन संदेशन", + "Welcome message": "स्वागत संदेश", + "Offline messaging": "ऑफलाइन संदेशन", + "Away message": "दूर संदेश", + "Thank you message": "धन्यवाद संदेश", + "Hours & Availability": "तास आणि उपलब्धता", + "Turn online/offline manually": "ऑनलाइन / ऑफलाइन व्यक्तिचलितपणे चालू करा", + "Set to follow your schedule": "आपले वेळापत्रक अनुसरण करण्यासाठी सेट करा", + "Other configs": "इतर कॉन्फिगरेशन", + "Notify customer": "ग्राहकांना सूचित करा", + "Online hours": "ऑनलाइन तास", + "Add another time": "आणखी एक वेळ जोडा", + "Time zone": "वेळ क्षेत्र", + "Messenger": "मेसेंजर", + "Knowledge base": "पायाभूत माहिती", + "Notification": "सूचना", + "Notifications": "अधिसूचना", + "Show unread": "न वाचलेले दर्शवा", + "Unread": "न वाचलेले", + "Recent": "अलीकडील", + "Mark all as read": "वाचलेले म्हणून चिन्हांकित करा", + "Email Appearance": "ईमेल स्वरूप", + "Team Members": "संघ सदस्य", + "Account default": "खाते डीफॉल्ट", + "Team members": "संघ सदस्य", + "Full name": "पूर्ण नाव", + "Leads": "पॉप अप", + "Email Signature": "ईमेल स्वाक्षरी", + "Response Template": "प्रतिसाद टेम्पलेट", + "Email Template": "ईमेल टेम्पलेट", + "Response templates": "प्रतिसाद टेम्पलेट्स", + "Email templates": "ईमेल टेम्पलेट्स", + "Brand Name": "ब्रँड नाव", + "Current template": "वर्तमान टेम्पलेट", + "Created at": "येथे तयार केले", + "Manage Fields": "फील्ड्स व्यवस्थापित करा", + "Duplicate": "नक्कल", + "Code": "कोड", + "Profile settings": "प्रोफाइल सेटिंग्ज", + "Change Password": "संकेतशब्द बदला", + "Signatures are only included in response emails.": "स्वाक्षर्‍या केवळ प्रतिसाद ईमेलमध्ये समाविष्ट केल्या आहेत.", + "Signature template": "स्वाक्षरी टेम्पलेट", + "You can use Markdown to format your signature.": "आपण आपली स्वाक्षरी स्वरूपित करण्यासाठी मार्कडाउन वापरू शकता.", + "Password": "संकेतशब्द", + "Password confirmation": "संकेतशब्द पुष्टीकरण", + "Choose the channels": "चॅनेल निवडा", + "Simple": "सोपे", + "Custom": "सानुकूल", + "Create a new Company": "एक नवीन कंपनी तयार करा", + "New Company": "नवीन कंपनी", + "Edit name": "नाव संपादित करा", + "Customer": "ग्राहक", + "Add tag": "टॅग जोडा", + "Company": "कंपनी", + "New message ": "नवीन संदेश", + "There aren’t any activities at the moment.": "याक्षणी कोणतेही क्रियाकलाप नाहीत.", + "This item is required": "हा आयटम आवश्यक आहे", + "Manage fields": "फील्ड व्यवस्थापित करा", + "Add integrations ": "एकत्रीकरण जोडा", + "Form": "फॉर्म", + "Create a new Customer": "नवीन ग्राहक तयार करा", + "New Customer": "नवीन ग्राहक", + "Segments": "विभाग", + "Add a condition": "अट जोडा", + "Open": "उघडा", + "Choose channel": "चॅनेल निवडा", + "Who is this message for?": "हा संदेश कोणासाठी आहे?", + "Compose your message": "आपला संदेश लिहा", + "No items added": "कोणतेही आयटम जोडले नाहीत", + "Submit": "प्रस्तुत करणे", + "Next": "पुढे", + "Save & Draft": "सेव्ह अँड ड्राफ्ट", + "Save & Live": "जतन करा आणि लाइव्ह करा", + "From:": "कडून:", + "Pages": "पृष्ठे", + "Links": "दुवे", + "Enter your password to Confirm": "पुष्टी करण्यासाठी आपला संकेतशब्द प्रविष्ट करा", + "Number of visits": "भेटींची संख्या", + "Written By": "यांनी लिहिलेले", + "Icon": "चिन्ह", + "draft": "मसुदा", + "Twitter Username": "ट्विटर वापरकर्तानाव", + "LinkedIn": "लिंक्डइन", + "Youtube": "YouTube", + "Github": "गीथब", + "Edit response": "प्रतिसाद संपादित करा", + "To send your message press Enter and Shift + Enter to add a new line": "आपला संदेश पाठविण्यासाठी नवीन ओळ जोडण्यासाठी एंटर आणि Shift + enter दाबा", + "To send your note press Enter and Shift + Enter to add a new line": "आपली टीप पाठविण्यासाठी नवीन ओळ जोडण्यासाठी एन्टर आणि Shift + enter दाबा", + "Please enter an unit price. It should be a number": "कृपया युनिट किंमत प्रविष्ट करा. ती संख्या असावी", + "Type to search": "शोधण्यासाठी टाइप करा", + "Members": "सभासद", + "Choose integrations": "एकत्रीकरण निवडा", + "Choose brands": "ब्रँड निवडा", + "Select a date": "एक तारीख निवडा", + "Click to select a date": "तारीख निवडण्यासाठी क्लिक करा", + "Choose users": "वापरकर्ते निवडा", + "Select Brand": "ब्रँड निवडा", + "Write here Welcome message.": "येथे स्वागत संदेश लिहा.", + "Write here Away message.": "येथे संदेश संदेश लिहा.", + "Write here Thank you message.": "येथे लिहा धन्यवाद संदेश.", + "Select app": "अ‍ॅप निवडा", + "Enter new password": "नवीन पासवर्ड टाका", + "Choose channels": "चॅनेल निवडा", + "Select": "निवडा", + "select": "निवडा", + "Choose members": "सदस्य निवडा", + "Search": "शोधा", + "your@email.com": "your@email.com", + "password": "संकेतशब्द", + "registered@email.com": "नोंदणीकृत @ ईमेल. com", + "new password": "नवीन संकेतशब्द", + "Start typing to leave a note": "एक टीप सोडण्यासाठी टाइप करणे प्रारंभ करा", + "Re-type password": "पासवर्ड पुन्हा टाईप करा", + "Name:": "नाव:", + "Size:": "आकारः", + "Website:": "संकेतस्थळ:", + "Industry:": "उद्योग:", + "Plan:": "योजना:", + "There arent't any groups and fields": "कोणतेही गट आणि फील्ड नाहीत", + "Please add property Group first": "कृपया प्रथम मालमत्ता गट जोडा", + "Add group": "गट जोडा", + "Add Property": "प्रॉपर्टी जोडा", + "Add Group & Field ": "गट आणि फील्ड जोडा", + "Add Group": "गट जोडा", + "Edit Property": "मालमत्ता संपादित करा", + "Group:": "गट:", + "There arent't any fields in this group": "या गटात कोणतीही फील्ड नाहीत", + "Customer Properties": "ग्राहक गुणधर्म", + "Company Properties": "कंपनीचे गुणधर्म", + "Add an option": "एक पर्याय जोडा", + "Copy to clipboard": "क्लिपबोर्डवर कॉपी करा", + "Go to home page": "मुख्यपृष्ठावर जा", + "Assign to": "नियुक्त करा", + "Remove assignee": "Assignee काढा", + "Account settings": "खाते सेटिंग्ज", + "General Settings": "सामान्य सेटिंग्ज", + "Integration Settings": "एकत्रीकरण सेटिंग्ज", + "Personal settings": "वैयक्तिक सेटिंग्ज", + "Add category": "श्रेणी जोडा", + "Filter": "फिल्टर करा", + "Live": "राहतात", + "Draft": "मसुदा", + "Paused": "विराम दिला", + "Your messages": "आपले संदेश", + "Delivered inside your app Reach active users": "आपल्या अ‍ॅपमध्ये वितरित सक्रिय वापरकर्त्यांपर्यंत पोहोच", + "Delivered to a user s email inbox Customize with your own templates": "वापरकर्त्याच्या ईमेल इनबॉक्समध्ये वितरित केले आपल्या स्वत: च्या टेम्पलेटसह सानुकूलित", + "email": "ईमेल", + "Create segment": "विभाग तयार करा", + "customers": "ग्राहक", + "has any value": "काही मूल्य आहे", + "is unknown": "अज्ञात आहे", + "is not": "नाही", + "is": "आहे", + "Less than": "पेक्षा कमी", + "City": "शहर", + "Greater than": "या पेक्षा मोठे", + "Country": "देश", + "Current page url": "वर्तमान पृष्ठ url", + "Browser language": "ब्राउझर भाषा", + "conversation": "संभाषण", + "engageMessage": "एनगेजमेसेज", + "customer": "ग्राहक", + "company": "कंपनी", + "starts with": "ने सुरू होते", + "ends with": "सह समाप्त होते", + "contains": "समाविष्टीत", + "does not contain": "नसते", + "Basic Info": "मूलभूत माहिती", + "Add Phone": "फोन जोडा", + "Add Email": "ईमेल जोडा", + "Choose your tags": "आपले टॅग निवडा", + "Manage tags": "टॅग व्यवस्थापित करा", + "Edit Profile": "प्रोफाईल संपादित करा", + "Sign out": "साइन आउट करा", + "Last Updated By": "द्वारा अंतिम अद्यतनित", + "There is no channel": "कोणतेही चॅनेल नाही", + "Facebook page": "फेसबुक पेज", + "plan": "योजना", + "Edit segment": "विभाग संपादित करा", + "New message": "नवीन संदेश", + "Message": "संदेश", + "Merge Customers": "ग्राहक विलीन करा", + "Assign": "नियुक्त करा", + "There is no message.": "कोणताही संदेश नाही.", + "per page": "प्रति पृष्ठ", + "[view]": "[पहा]", + "Go to twitter": "ट्विटर वर जा", + "Build": "बांधा", + "`s integration": "चे एकत्रीकरण", + "Created": "तयार केले", + "Email templates:": "ईमेल टेम्पलेट्स:", + "Content:": "सामग्री:", + "Response Templates": "प्रतिसाद टेम्पलेट्स", + "Merge Companies": "कंपन्या विलीन करा", + "Response template": "प्रतिसाद टेम्पलेट", + "Attach file": "फाईल जोडा", + "Upload": "अपलोड करा", + "ShoutBox": "ShoutBox", + "Popup": "पॉपअप", + "Embedded": "एम्बेड केलेले", + "Choose a flow type": "एक प्रवाह प्रकार निवडा", + "CallOut": "कॉलआउट", + "Callout title": "कॉलआउट शीर्षक", + "Callout body": "कॉलआऊट बॉडी", + "Callout button text": "कॉलआउट बटण मजकूर", + "Skip callOut": "कॉलआऊट वगळा", + "Form button text": "फॉर्म बटण मजकूर", + "Theme color": "थीम रंग", + "Featured image": "वैशिष्ट्यीकृत प्रतिमा", + "Full Preview": "पूर्ण पूर्वावलोकन", + "Try some of these colors:": "यातील काही रंग वापरून पहा:", + "Included fields": "समाविष्ट फील्ड", + "Deal": "विक्री पाईपलाईन", + "Deals": "विक्री पाईप्स", + "New Product & Service": "नवीन उत्पादन आणि सेवा", + "No product or services": "कोणतेही उत्पादन किंवा सेवा नाहीत", + "UOM": "यूओएम", + "Quantity": "प्रमाण", + "Unit price": "युनिट किंमत", + "Discount": "सवलत", + "Tax": "कर", + "Ticket": "तिकिट", + "Task": "कार्य", + "Select company": "कंपनी निवडा", + "Select customer": "ग्राहक निवडा", + "Note": "टीप", + "Assigned to": "नियुक्त", + "Move": "हलवा", + "Move deal": "हलवा सौदा", + "Copy": "कॉपी करा", + "Close date": "बंद तारीख", + "Choose product & service": "उत्पादन आणि सेवा निवडा", + "Select product & service": "उत्पादन आणि सेवा निवडा", + "Please, select a close date": "कृपया, जवळची तारीख निवडा", + "Create a new Product": "नवीन उत्पादन तयार करा", + "New Product": "नवीन उत्पादन", + "SKU": "एसकेयू", + "Choose a company": "कंपनी निवडा", + "Choose a customer": "ग्राहक निवडा", + "Choose a board": "एक बोर्ड निवडा", + "Choose a pipeline": "एक पाइपलाइन निवडा", + "Manage Board & Pipeline": "बोर्ड आणि पाइपलाइन व्यवस्थापित करा", + "Choose a stage": "एक स्टेज निवडा", + "Deal Settings": "विक्री पाइपलाइन सेटिंग्ज", + "Ticket Settings": "तिकीट सेटिंग्ज", + "Task Settings": "कार्य सेटिंग्ज", + "Boards & Pipelines": "बोर्ड आणि पाइपलाइन", + "Product & Service": "उत्पादन आणि सेवा", + "There is no pipeline in this board.": "या बोर्डात पाइपलाइन नाही.", + "There is no board": "बोर्ड नाही", + "New Board": "नवीन बोर्ड", + "Add pipeline": "पाइपलाइन जोडा", + "Create one": "एक बनव", + "Edit pipeline": "पाइपलाइन संपादित करा", + "Add stage": "स्टेज जोडा", + "Board": "बोर्ड", + "Pipeline": "पाइपलाइन", + "Stage": "स्टेज", + "Stage name": "स्टेज नाव", + "Add a deal": "एक करार जोडा", + "Add a task": "एक कार्य जोडा", + "Add a ticket": "तिकिट जोडा", + "Priority": "प्राधान्य", + "Critical": "गंभीर", + "High": "उंच", + "Normal": "सामान्य", + "Low": "कमी", + "Attachments": "जोड", + "Source": "स्त्रोत", + "Select a source": "स्त्रोत निवडा", + "Upload an attachment": "संलग्नक अपलोड करा", + "Description": "वर्णन", + "Select a priority": "प्राधान्य निवडा", + "Edit deal": "डील संपादित करा", + "Edit task": "कार्य संपादित करा", + "Edit ticket": "तिकीट संपादित करा", + "Add Product / Service": "उत्पादन / सेवा जोडा", + "Reply tweet": "पुन्हा ट्विट करा", + "Tweet": "ट्विट", + "Details": "तपशील", + "View Profile": "प्रोफाइल पहा", + "Empty Notes": "रिक्त नोट्स", + "Mini-resume": "मिनी-रेझ्युमे", + "You cannot update this property": "आपण ही मालमत्ता अद्यतनित करू शकत नाही", + "Desktop": "डेस्कटॉप", + "Mobile": "मोबाईल", + "Tablet": "टॅब्लेट", + "Amount": "रक्कम", + "Owner": "मालक", + "Department": "विभाग", + "Lead Status": "पॉप अप स्थिती", + "Lifecycle State": "लाइफसायकल राज्य", + "Has Authority": "प्राधिकरण आहे", + "Do not disturb": "व्यत्यय आणू नका", + "Parent Company": "मूळ कंपनी", + "Business Type": "व्यवसाय प्रकार", + "Employees count": "कर्मचारी मोजणी", + "Yes": "होय", + "No": "नाही", + "Copied": "कॉपी केले", + "General": "सामान्य", + "Currency": "चलन", + "Unit of measurement": "मोजण्याचे एकक", + "Create another board": "दुसरा बोर्ड तयार करा", + "No pipeline": "पाइपलाइन नाही", + "No stage": "स्टेज नाही", + "No deal": "डील नाही", + "Background": "पार्श्वभूमी", + "Choose": "निवडा", + "Successfully saved.": "यशस्वीरित्या जतन केले.", + "Successfully moved.": "यशस्वीरित्या हलविले.", + "Successfully selected.": "यशस्वीरित्या निवडले.", + "Body description here": "शरीराचे वर्णन येथे", + "Thank you.": "धन्यवाद.", + "Choose a brand": "एक ब्रँड निवडा", + "Write a title": "शीर्षक लिहा", + "Contact": "संपर्क", + "Created by": "ने निर्मित", + "Manage": "व्यवस्थापित करा", + "Dropdown": "ड्रॉपडाउन", + "Slide-in Left": "स्लाइड-इन डावीकडे", + "Slide-in Right": "स्लाइड-इन राइट", + "Enter name": "नाव प्रविष्ट करा", + "Delivered": "वितरित", + "Clicked": "क्लिक केले", + "Complaint": "तक्रार", + "Bounce": "बाउन्स", + "Rendering Failure": "प्रस्तुत अयशस्वी", + "Rejected": "नाकारले", + "Action": "कृती", + "Please select one to merge": "विलीन करण्यासाठी कृपया एक निवडा", + "Filter by date": "तारखेनुसार फिल्टर करा", + "Total conversations": "एकूण संभाषणे", + "Filter by form": "फॉर्मद्वारे फिल्टर करा", + "Supporters": "समर्थक", + "Import histories": "इतिहास आयात करा", + "Imported Date": "आयात केलेली तारीख", + "Imported User": "आयात केलेला वापरकर्ता", + "Export customers": "ग्राहक निर्यात करा", + "Import customers": "ग्राहक आयात करा", + "Export companies": "कंपन्या निर्यात करा", + "Import companies": "आयात कंपन्या", + "All customers imported successfully": "सर्व ग्राहक यशस्वीरित्या आयात केले", + "There aren't any imports": "कोणतीही आयात नाही", + "Successfully Removed all customers": "यशस्वीरित्या सर्व ग्राहकांना काढले", + "You can only import max 600 at a time": "आपण एका वेळी केवळ जास्तीत जास्त 600 आयात करू शकता", + "Invalid import type": "अवैध आयात प्रकार", + "Last updated": "शेवटचे अद्यावत", + "Filter by lead status": "पॉप अप स्थितीनुसार फिल्टर करा", + "No lead status chosen": "कोणतीही आघाडी स्थिती निवडली नाही", + "Schedule:": "वेळापत्रकः", + "Every Day": "रोज", + "Every Month": "दर महिन्याला", + "Every Year": "प्रत्येक वर्षी", + "Every Monday": "प्रत्येक सोमवारी", + "Every Tuesday": "दर मंगळवारी", + "Every Wednesday": "प्रत्येक बुधवार", + "Every Thursday": "प्रत्येक गुरुवार", + "Every Friday": "प्रत्येक शुक्रवारी", + "Every Saturday": "दर शनिवारी", + "Every Sunday": "दर रविवारी", + "Choose a schedule day": "वेळापत्रक ठरवा", + "Choose a schedule time": "शेड्यूल वेळ निवडा", + "Won": "जिंकला", + "Lost": "हरवले", + "App store": "अॅप स्टोअर", + "App store menu": "अ‍ॅप स्टोअर मेनू", + "In Progress": "प्रगतीपथावर", + "It`s size exceeds the limit 10mb": "याचा आकार 10mb मर्यादेपेक्षा जास्त आहे", + "Congrats! Your email sent successfully!": "अभिनंदन! आपले ईमेल यशस्वीरित्या पाठविले!", + "Works with messenger": "मेसेंजरसह कार्य करते", + "Knowledge base topic": "ज्ञान आधार विषय", + "Package version": "पॅकेज आवृत्ती", + "Branch name": "शाखेचे नाव", + "Abbreviated": "संक्षिप्त", + "User": "वापरकर्ता", + "Recent conversations": "अलीकडील संभाषणे", + "Start new conversation": "नवीन संभाषण सुरू करा", + "Talk with support staff": "सहाय्यक कर्मचार्‍यांशी बोला", + "Send a message": "एक संदेश पाठवा", + "Volume Report By Customer": "ग्राहकाद्वारे खंड अहवाल", + "Export Report": "निर्यात अहवाल", + "We`re ready to help you.": "आम्ही आपल्याला मदत करण्यास तयार आहोत.", + "Please choose a product": "कृपया एखादे उत्पादन निवडा", + "Please choose a currency": "कृपया चलन निवडा", + "No board": "बोर्ड नाही", + "Empty": "रिक्त", + "There is no account.": "कोणतेही खाते नाही.", + "There is no tag.": "टॅग नाही.", + "Skip for now": "आता वगळा", + "Go to Inbox": "इनबॉक्स वर जा", + "Messenger Language": "मेसेंजर भाषा", + "Messenger name": "मेसेंजर नाव", + "Skip": "वगळा", + "Finish": "समाप्त", + "Show": "दाखवा", + "Hide": "लपवा", + "Previous": "मागील", + "Users": "वापरकर्ते", + "users": "वापरकर्ते", + "brands": "ब्रँड", + "messengers": "मेसेंजर", + "channels": "वाहिन्या", + "Emails": "ईमेल", + "Messengers": "मेसेंजर", + "You already have": "तुमच्याकडे आधीच आहे", + "There is another": "अजून एक आहे", + "Let's create your brand": "चला आपला ब्रँड तयार करूया", + "Invite users": "वापरकर्त्यांना आमंत्रित करा", + "Let's grow your team": "चला आपली टीम वाढवूया", + "Invite": "आमंत्रित करा", + "Let's start": "आपण सुरु करू", + "Start messaging now!": "आता संदेशन प्रारंभ करा!", + "Create channel": "चॅनेल तयार करा", + "Get started on your channel": "आपल्या चॅनेलवर प्रारंभ करा", + "Create your first messenger": "आपला पहिला मेसेंजर तयार करा", + "Welcome": "स्वागत आहे", + "Nothing inserted": "काहीही घातले नाही", + "Empty emails": "रिक्त ईमेल", + "Initial setup": "प्राथमिक आस्थापना", + "Add another": "आणखी एक जोडा", + "Don't show again": "पुन्हा दर्शवू नका", + "No other pipeline": "इतर कोणतीही पाइपलाइन नाही", + "No other boards": "इतर कोणतेही बोर्ड नाहीत", + "I'm ready to get started": "मी प्रारंभ करण्यास तयार आहे", + "Welcome paragraph": "आम्ही आपल्यास आनंदात आहोत. आपण सेट अप करण्यासाठी थोडा वेळ घेऊया", + "Get notified and notify others to keep everything up to date": "सर्व काही अद्ययावत ठेवण्यासाठी सूचित करा आणि इतरांना सूचित करा", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "आपण आपल्या साइटवर पाठविलेले संदेश आपल्या कार्यसंघाला प्राप्त झाले नाहीत तर आम्ही त्यांना ईमेलद्वारे पाठवू शकतो", + "Send an email and notify members that they've been invited!": "ईमेल पाठवा आणि सदस्यांना आमंत्रित करण्यात आल्याची सूचना द्या!", + "January": "जानेवारी", + "February": "फेब्रुवारी", + "March": "मार्च", + "April": "एप्रिल", + "May": "मे", + "June": "जून", + "July": "जुलै", + "August": "ऑगस्ट", + "September": "सप्टेंबर", + "October": "ऑक्टोबर", + "November": "नोव्हेंबर", + "December": "डिसेंबर", + "Today": "आज", + "Sales": "विक्री", + "Monthly view": "मासिक दृश्य", + "Filter by": "द्वारे फिल्टर करा", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "एक ब्रँड तयार करणे आणि चॅनेल जोडून आपण आपल्या ग्राहकांच्या गरजा चांगल्या प्रकारे विश्लेषित करण्यास आणि त्यांच्या समस्या सोडविण्यात मदत करण्यास सक्षम आहात", + "Grow and add users to your team! Assign, designate and let them do what they do best": "आपल्या कार्यसंघामध्ये वापरकर्त्यांना वाढवा आणि जोडा! नियुक्त करा, नियुक्त करा आणि जे चांगले करतात त्यांना ते करू द्या", + "Stay up to date with every single customer feedback and create more meaningful conversations": "प्रत्येक ग्राहकांच्या अभिप्रायासह अद्ययावत रहा आणि अधिक अर्थपूर्ण संभाषणे तयार करा", + "Create brand channels that are specifically categorized by type and activity": "प्रकार आणि क्रियाकलापानुसार विशिष्ट वर्गीकृत असे ब्रँड चॅनेल तयार करा", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "येथे एक लीड जोडा आणि आपल्या मेसेंजर विजेटवर पहा! आपल्या इनबॉक्समध्ये लीड्स पाहण्यासाठी, कृपया आपल्या चॅनेलमध्ये हे जोडले गेले असल्याचे सुनिश्चित करा.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "आपण आमच्या बर्‍याच मेसेंजर एकात्मतामधून निवडू शकता आणि आपल्या ज्ञान बेसमध्ये जोडू शकता. ज्ञान संदेश आपल्या मेसेंजर विजेटच्या टॅबमध्ये दिसून येईल. हे करण्यासाठी, कृपया तयार करा आणि आपला ज्ञान बेस जोडा.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "ईमेल स्वाक्षरी ही अशी माहिती सामायिक करण्याची संधी आहे जी ओळख आणि विश्वास वाढविण्यात मदत करते.", + "Let's start taking care of your customers": "चला आपल्या ग्राहकांची काळजी घेऊया", + "Add in your first company!": "आपल्या पहिल्या कंपनीत जोडा!", + "Choose from our many integrations and add to your channel": "आमच्या बर्‍याच एकत्रीकरणामधून निवडा आणि आपल्या चॅनेलमध्ये जोडा", + "Let's get you messaging away!": "चला आपणास संदेश काढून टाका!", + "Whoops! No messages here but you can always start": "अरेरे! येथे कोणतेही संदेश नाहीत परंतु आपण नेहमी प्रारंभ करू शकता", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "आपल्या ग्राहकांना भेडसावणा issues्या कितीही अडचणींवर लेख लिहू शकतात. ज्ञान लेखाच्या प्रकारांमध्ये सामान्य समस्यांचे निराकरण, उत्पादन किंवा वैशिष्ट्य दस्तऐवजीकरण, सामान्य प्रश्न आणि बरेच काही असू शकते.", + "Oops! No data here": "अरेरे! येथे कोणताही डेटा नाही", + "Start adding integrations now!": "आता एकत्रीकरण जोडणे प्रारंभ करा!", + "Add an integration in this Brand": "या ब्रँडमध्ये एकत्रीकरण जोडा", + "Oh dear! You have no imports": "अरे प्रिय! आपल्याकडे कोणतीही आयात नाही", + "A strong customer engagement can help to further brand growth and loyalty": "मजबूत ग्राहक गुंतवणूकीमुळे ब्रँडची वाढ आणि निष्ठा वाढू शकते", + "Get started on your pipeline": "आपल्या पाइपलाइनवर प्रारंभ करा", + "Connect to Facebook messages right from your Team Inbox": "तुमच्या टीम इनबॉक्समधूनच फेसबुक संदेशांशी कनेक्ट व्हा", + "Tweet back to your DMs right from your Team Inbox": "तुमच्या टीम इनबॉक्समधून तुमच्या डीएमवर परत ट्विट करा", + "Connect straight to your Gmail and get those emails going": "थेट आपल्या जीमेलशी कनेक्ट व्हा आणि त्या ईमेलमध्ये जा", + "Find your lead forms right here in your Widget": "येथे आपल्या विजेटमध्ये आपले आघाडीचे फॉर्म शोधा", + "Get access to your Knowledge Base right in your Widget": "तुमच्या विजेटमध्येच तुमच्या नॉलेज बेसवर प्रवेश मिळवा", + "Soon you'll be able to connect Viber straight to your Team Inbox": "लवकरच आपण व्हाईबरला थेट आपल्या कार्यसंघाच्या इनबॉक्सशी कनेक्ट करण्यात सक्षम व्हाल", + "Get a hold of your Whatsapp messages through your Team Inbox": "आपल्या टीम इनबॉक्सद्वारे आपले व्हॉट्सअॅप संदेश पकडण्यासाठी मिळवा", + "Connect with Wechat and start messaging right from your Team Inbox": "वेचॅटशी कनेक्ट व्हा आणि थेट आपल्या कार्यसंघाच्या इनबॉक्समधून संदेशन प्रारंभ करा", + "Find feedback that has been gathered from various customer engagement channels.": "विविध ग्राहक गुंतवणूकी चॅनेल वरून गोळा केलेला अभिप्राय मिळवा.", + "A report on the total number of customer feedback responses given by team members.": "कार्यसंघ सदस्यांनी दिलेल्या ग्राहकांच्या प्रतिक्रियांच्या एकूण संख्येचा अहवाल.", + "The average time a team member solved a problem based on customer feedback.": "कार्यसंघाच्या सदस्याने ग्राहकांच्या अभिप्रायाच्या आधारावर समस्या सोडवण्याची सरासरी वेळ.", + "You can find stats that defines the average response time by each team member.": "प्रत्येक कार्यसंघा सदस्याने दिलेल्या सरासरी प्रतिसादाची वेळ निश्चित करणारी आकडेवारी आपणास आढळेल.", + "Oh boy, looks like you need to get a head start on your deals": "अरे मुला, तुला आपल्या सौद्यांची सुरूवात करणे आवश्यक आहे असे दिसते", + "Open segments and starting add details": "विभाग उघडा आणि तपशील जोडा प्रारंभ करा", + "Now easier to find contacts according to your brand": "आपल्या ब्रँडनुसार संपर्क शोधणे आता सोपे आहे", + "Search and filter customers by form": "फॉर्मद्वारे ग्राहकांना शोधा आणि फिल्टर करा", + "There is always a lead!": "एक आघाडी नेहमीच असते!", + "Calendar": "कॅलेंडर", + "Columns": "स्तंभ", + "columns": "स्तंभ", + "Linked Accounts": "दुवा साधलेली खाती", + "Select account": "खाते निवडा", + "Select account ...": "खाते निवडा ...", + "Add Account": "खाते जोडा", + "Remove Account": "खाते काढा", + "You can upload only image file": "आपण केवळ .png किंवा .jpg प्रतिमा फाइल अपलोड करू शकता", + "Permissions": "परवानग्या", + "New permission": "नवीन परवानगी", + "New group": "नवीन गट", + "Users groups": "वापरकर्त्यांचे गट", + "Choose the module": "मॉड्यूल निवडा", + "Choose the actions": "कृती निवडा", + "Choose the users": "वापरकर्ते निवडा", + "Choose the groups": "गट निवडा", + "Choose groups": "गट निवडा", + "Allow": "परवानगी द्या", + "Invitation Status": "आमंत्रणाची स्थिती", + "Permission": "परवानगी", + "data successfully imported": "डेटा यशस्वीरित्या आयात केला", + "Show result": "परिणाम दर्शवा", + "Importing": "आयात करीत आहे", + "data": "डेटा", + "errors acquired": "चुका विकत घेतल्या", + "There are": "आहेत", + "Continue": "सुरू", + "Create brand": "ब्रँड तयार करा", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "आपले प्रथम थेट चॅट आणि अॅप-मधील संदेश तयार करा. अधिक अर्थपूर्ण संवादासाठी प्रत्येक ग्राहक अभिप्रायसह अद्ययावत रहा.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "चॅनेल सर्व ब्रांड आणि त्याचे अनुप्रयोगांचे सर्व एकाच ठिकाणी संपूर्ण दृश्य देते. आपण आपल्या कार्यसंघाच्या इनबॉक्समध्ये येणारे सर्व संदेश पाहू शकता.", + "Hooray and Congratulations! You've completed the initial setup!": "हुर्रे आणि अभिनंदन! आपण प्रारंभिक सेटअप पूर्ण केला आहे!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "आधी कोड खाली पेस्ट करा आपल्याला अर्क्स गप्पा दिसू इच्छित असलेल्या प्रत्येक पृष्ठावर टॅग करा.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "आपल्याला अर्क्सस लीड दिसू इच्छित असलेल्या प्रत्येक पृष्ठावर बॉडी टॅग देण्यापूर्वी खाली कोड पेस्ट करा", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "जर आपला प्रवाह प्रकार एम्बेड केला असेल तर खाली असलेला कोड पेस्ट करा तसेच आपल्याला एरक्सस लीड दिसू इच्छित आहे", + "If your flow type is popup paste the code below additionally in your button": "जर आपला फ्लो प्रकार पॉपअप असेल तर खाली आपल्या बटणावर खाली कोड पेस्ट करा", + "Choose messengers": "मेसेंजर निवडा", + "erxes allows you to create multiple messengers": "एरॅक्स आपल्याला एकाधिक मेसेंजर तयार करण्याची परवानगी देते", + "erxes allows you to create multiple brands": "एरॅक्स आपल्याला एकाधिक ब्रँड तयार करण्याची परवानगी देते", + "erxes allows you to create multiple channels": "एरॅक्स आपल्याला एकाधिक चॅनेल तयार करण्याची परवानगी देते", + "Contacts": "संपर्क", + "Create group": "गट तयार करा", + "Visitors": "अभ्यागतांना", + "Due in the next day": "दुसर्‍या दिवशी मुदत", + "Due in the next week": "पुढील आठवड्यात देय", + "Due in the next month": "पुढील महिन्यात देय", + "Has no close date": "कोणतीही जवळची तारीख नाही", + "Over due": "थकीत", + "Clear Filter": "फिल्टर साफ करा", + "Remove this filter": "हा फिल्टर काढा", + "Filtering is on": "फिल्टरिंग चालू आहे", + "Choose products": "उत्पादने निवडा", + "Choose companies": "कंपन्या निवडा", + "Choose customers": "ग्राहक निवडा", + "Choose team members": "कार्यसंघ सदस्य निवडा", + "erxes Inc": "erxes Inc", + "Get": "मिळवा", + "Download ios app for free on the App Store": "अ‍ॅप स्टोअरवर आयओएस अॅप विनामूल्य डाउनलोड करा.", + "Download android app for free on the Google play": "गूगल प्लेवर Android अ‍ॅप विनामूल्य डाउनलोड करा.", + "Please upgrade your browser to use erxes!": "कृपया एरॅक्स वापरण्यासाठी आपला ब्राउझर श्रेणीसुधारित करा!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "दुर्दैवाने, आपण अशा ब्राउझरवर चालत आहात जो कदाचित एरॅक्ससह पूर्णपणे सुसंगत नसेल.", + "Please use recommended version": "कृपया शिफारस केलेली आवृत्ती वापरा", + "Messenger data": "मेसेंजर डेटा", + "Customer field data": "ग्राहक फील्ड डेटा", + "Others": "इतर", + "Select brand": "ब्रँड निवडा", + "There is no permissions in this group": "या गटात कोणत्याही परवानग्या नाहीत.", + "There is no group": "कोणताही गट नाही.", + "User groups": "वापरकर्ता गट", + "What action can do": "काय क्रिया करू शकते", + "Who can": "कोण करू शकेल", + "Grant permission": "परवानगी द्या", + "Check if permission is allowed": "परवानगी आहे का ते तपासा", + "Then": "मग", + "Or": "किंवा", + "Auto message description": "लॉग इन केलेल्या वापरकर्त्यांना त्यांच्या ब्रांड / टॅग / विभागाच्या आधारावर लक्ष्यित ईमेल आणि गप्पा पाठवा. आपण ईमेल पाठविण्यासाठी आपला वेळ सेट करू शकता किंवा आगाऊ गप्पा मारू शकता. चॅट डिझाइन स्निप, बॅज आणि संपूर्ण संदेश असू शकते आणि ते मजकूर किंवा व्हिडिओ असू शकते.", + "Manual message description": "लॉग इन केलेल्या वापरकर्त्यांना त्यांच्या ब्रांड / टॅग / विभागाच्या आधारावर लक्ष्यित ईमेल आणि गप्पा पाठवा. आपण जतन बटणावर क्लिक केल्यानंतर ईमेल किंवा गप्पा त्वरित पाठविली जातील. चॅट डिझाइन स्निप, बॅज आणि संपूर्ण संदेश असू शकते आणि ते मजकूर किंवा व्हिडिओ असू शकते.", + "Visitor auto message description": "वेबसाइटवर लॉग-आउट केलेल्या अभ्यागतांना त्यांच्या भेट देणार्‍या पृष्ठ, क्रियाकलाप, त्यांचे निवासस्थान आणि शहराच्या आधारे लक्ष्यित गप्पा पाठवा. चॅट डिझाइन स्निप, बॅज आणि संपूर्ण संदेश असू शकते आणि ते मजकूर किंवा व्हिडिओ असू शकते.", + "Required field": "आवश्यक फील्ड!", + "Invalid email format! Please enter a valid email address": "अवैध ईमेल स्वरूप! कृपया वैध ईमेल पत्ता प्रविष्ट करा.", + "Invalid link": "अवैध दुवा!", + "Maximum length is": "जास्तीत जास्त लांबी आहे", + "characters": "वर्ण!", + "Invalid number format! Please enter a valid number": "अवैध संख्या स्वरूप! कृपया एक वैध क्रमांक प्रविष्ट करा.", + "Insert email template to content": "सामग्रीवर ईमेल टेम्पलेट घाला", + "Logs": "नोंदी", + "There are no logs recorded": "कोणतेही नोंदी रेकॉर्ड केलेले नाहीत", + "Module": "मॉड्यूल", + "Unchanged fields": "न बदललेली फील्ड", + "Changed fields": "बदललेली फील्ड", + "Create": "तयार करा", + "Update": "अद्यतनित करा", + "Changes": "बदल", + "Choose start date": "प्रारंभ तारीख निवडा", + "Choose end date": "समाप्ती तारीख निवडा", + "Permission denied": "परवानगी नाकारली", + "Old data": "जुना डेटा", + "New data": "नवीन डेटा", + "Archive": "संग्रह", + "NetworkError": "कनेक्शन पुनर्संचयित करण्याचा प्रयत्न करीत आहे. आता केलेले बदल जतन होणार नाहीत.", + "Email add account description question": "आपण सामायिक केलेले ईमेल खाते कनेक्ट करत आहात?", + "Email add account description": "आपण आपल्या संभाषण इनबॉक्समध्ये ईमेल कनेक्ट करता तेव्हा आपण ते सामायिक खाते म्हणून कनेक्ट करत आहात. सामायिक केलेल्या खात्यांना पाठविलेले संदेश आपल्या कार्यसंघाच्या इनबॉक्समध्ये प्रवेश केलेल्या प्रत्येकाद्वारे पाहिले जाऊ शकतात.", + "No connected email": "कनेक्ट केलेला ईमेल नाही", + "Your email will be sent with Erxes email template": "आपला ईमेल एरॅक्स ईमेल टेम्पलेटसह पाठविला जाईल" +} diff --git a/ui/src/locales/pa.json b/ui/src/locales/pa.json new file mode 100644 index 00000000000..80fe6b55e2c --- /dev/null +++ b/ui/src/locales/pa.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "ਤੁਹਾਨੂੰ ਪੂਰਾ ਵਿਸ਼ਵਾਸ ਹੈ? ਇਸ ਨੂੰ ਵਾਪਸ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ.", + "Yes, I am": "ਹਾਂ ਮੈਂ ਹਾਂ", + "No, Cancel": "ਨਹੀਂ, ਰੱਦ ਕਰੋ", + "Filter by tags": "ਟੈਗਸ ਦੁਆਰਾ ਫਿਲਟਰ ਕਰੋ", + "There is no data": "ਕੋਈ ਡਾਟਾ ਨਹੀਂ ਹੈ", + "There is no data.": "ਕੋਈ ਡਾਟਾ ਨਹੀਂ ਹੈ.", + "Load more": "ਹੋਰ ਲੋਡ ਕਰ", + "There aren't any activities at the moment.": "ਇਸ ਸਮੇਂ ਇੱਥੇ ਕੋਈ ਗਤੀਵਿਧੀਆਂ ਨਹੀਂ ਹਨ.", + "Reset your password": "ਆਪਣਾ ਪਾਸਵਰਡ ਰੀਸੈਟ ਕਰੋ", + "Email me the instruction": "ਮੈਨੂੰ ਹਦਾਇਤ ਈਮੇਲ ਕਰੋ", + "Sign in": "ਸਾਈਨ - ਇਨ", + "Change password": "ਪਾਸਵਰਡ ਬਦਲੋ", + "Set your new password": "ਆਪਣਾ ਨਵਾਂ ਪਾਸਵਰਡ ਸੈੱਟ ਕਰੋ", + "Forgot password?": "ਪਾਸਵਰਡ ਭੁੱਲ ਗਏ?", + "Photo": "ਤਸਵੀਰ", + "Name": "ਨਾਮ", + "Views": "ਵਿਚਾਰ", + "Conversion": "ਤਬਦੀਲੀ", + "Go to import": "ਆਯਾਤ ਕਰਨ ਲਈ ਜਾਓ", + "Conversion rate": "ਤਬਦੀਲੀ ਦੀ ਦਰ", + "Contacts gathered": "ਸੰਪਰਕ ਇਕੱਠੇ ਹੋਏ", + "Create lead": "ਪੌਪ ਅਪਸ ਬਣਾਓ", + "Form title": "ਫਾਰਮ ਦਾ ਸਿਰਲੇਖ", + "Related": "ਸੰਬੰਧਿਤ", + "Form description": "ਫਾਰਮ ਵੇਰਵਾ", + "Position": "ਸਥਿਤੀ", + "Username": "ਉਪਯੋਗਕਰਤਾ ਨਾਮ", + "Email": "ਈ - ਮੇਲ", + "sec": "ਸਕਿੰਟ", + "Twitter username": "ਟਵਿੱਟਰ ਯੂਜ਼ਰ", + "Inbox": "ਇਨਬਾਕਸ", + "Workflow": "ਵਰਕਫਲੋ", + "Watch": "ਦੇਖੋ", + "Watching": "ਵੇਖ ਰਿਹਾ ਹੈ", + "Team Inbox": "ਟੀਮ ਇਨਬਾਕਸ", + "Customers": "ਗਾਹਕ", + "Companies": "ਕੰਪਨੀਆਂ", + "Engage": "ਰੁੱਝੇ ਹੋਏ", + "Insights": "ਇਨਸਾਈਟਸ", + "Knowledge Base": "ਗਿਆਨ ਅਧਾਰ", + "Settings": "ਸੈਟਿੰਗਜ਼", + "Resolve": "ਨੂੰ ਹੱਲ", + "Send": "ਭੇਜੋ", + "No company": "ਕੋਈ ਕੰਪਨੀ ਨਹੀਂ", + "No customer": "ਕੋਈ ਗਾਹਕ ਨਹੀਂ", + "Not tagged yet": "ਅਜੇ ਟੈਗ ਨਹੀਂ ਕੀਤਾ ਗਿਆ", + "New note": "ਨਵਾਂ ਨੋਟ", + "Conversation": "ਗੱਲਬਾਤ", + "Notes": "ਨੋਟ", + "Activity": "ਸਰਗਰਮੀ", + "Basic info": "ਮੁੱ .ਲੀ ਜਾਣਕਾਰੀ", + "Size": "ਆਕਾਰ", + "Other": "ਹੋਰ", + "Industry": "ਉਦਯੋਗ", + "Website": "ਵੈੱਬਸਾਈਟ", + "Plan": "ਯੋਜਨਾ", + "About": "ਬਾਰੇ", + "Discard": "ਬਰਖਾਸਤ ਕਰੋ", + "Save": "ਸੇਵ", + "Create response template": "ਜਵਾਬ ਟੈਂਪਲੇਟ ਬਣਾਓ", + "Associate": "ਸਹਿਯੋਗੀ", + "No tags": "ਕੋਈ ਟੈਗ ਨਹੀਂ", + "Add customer": "ਗਾਹਕ ਸ਼ਾਮਲ ਕਰੋ", + "No segments": "ਕੋਈ ਖੰਡ ਨਹੀਂ", + "Manage Columns": "ਕਾਲਮ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "New customer": "ਨਵਾਂ ਗਾਹਕ", + "Add company": "ਕੰਪਨੀ ਸ਼ਾਮਲ ਕਰੋ", + "New company": "ਨਵੀਂ ਕੰਪਨੀ", + "Choose which column you see": "ਚੁਣੋ ਕਿ ਤੁਸੀਂ ਕਿਹੜਾ ਕਾਲਮ ਵੇਖਦੇ ਹੋ", + "There is no engage message.": "ਕੋਈ ਸ਼ਮੂਲੀਅਤ ਦਾ ਸੰਦੇਸ਼ ਨਹੀਂ ਹੈ.", + "Add Knowledge base": "ਗਿਆਨ ਅਧਾਰ ਸ਼ਾਮਲ ਕਰੋ", + "Add knowledge base.": "ਗਿਆਨ ਅਧਾਰ ਸ਼ਾਮਲ ਕਰੋ.", + "New Channel": "ਨਵਾਂ ਚੈਨਲ", + "Edit": "ਸੰਪਾਦਿਤ ਕਰੋ", + "Edit basic info": "ਮੁ basicਲੀ ਜਾਣਕਾਰੀ ਨੂੰ ਸੋਧੋ", + "Manage integration": "ਏਕੀਕਰਣ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Manage Integration": "ਏਕੀਕਰਣ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Choose new brand": "ਨਵਾਂ ਬ੍ਰਾਂਡ ਚੁਣੋ", + "Edit integration": "ਏਕੀਕਰਣ ਨੂੰ ਸੋਧੋ", + "Integration": "ਏਕੀਕਰਣ", + "Integration menu": "ਏਕੀਕਰਣ ਮੀਨੂੰ", + "New Brand": "ਨਵਾਂ ਬ੍ਰਾਂਡ", + "Add facebook page": "ਫੇਸਬੁੱਕ ਪੇਜ ਸ਼ਾਮਲ ਕਰੋ", + "Add integrations": "ਏਕੀਕਰਣ ਸ਼ਾਮਲ ਕਰੋ", + "Add messenger": "ਮੈਸੇਂਜਰ ਸ਼ਾਮਲ ਕਰੋ", + "There is no lead.": "ਕੋਈ ਲੀਡ ਨਹੀਂ ਹੈ.", + "New response template": "ਨਵਾਂ ਜਵਾਬ ਟੈਂਪਲੇਟ", + "Cancel": "ਰੱਦ ਕਰੋ", + "Public": "ਜਨਤਕ", + "Private": "ਨਿਜੀ", + "New email template": "ਨਵਾਂ ਈਮੇਲ ਟੈਂਪਲੇਟ", + "Local publisher's email template": "ਸਥਾਨਕ ਪ੍ਰਕਾਸ਼ਕ ਦਾ ਈਮੇਲ ਟੈਂਪਲੇਟ", + "New user": "ਨਵਾਂ ਯੂਜ਼ਰ", + "Load More": "ਹੋਰ ਲੋਡ ਕਰ", + "Session count": "ਸੈਸ਼ਨ ਗਿਣਤੀ", + "Last seen at": "ਆਖਰੀ ਵਾਰ ਵੇਖਿਆ ਗਿਆ", + "Tags": "ਟੈਗਸ", + "Member": "ਸਦੱਸ", + "Remove": "ਹਟਾਓ", + "No companies added yet!": "ਅਜੇ ਕੋਈ ਕੰਪਨੀ ਸ਼ਾਮਲ ਨਹੀਂ ਕੀਤੀ ਗਈ!", + "Merge": "ਮਿਲਾਓ", + "First Name": "ਪਹਿਲਾ ਨਾਂ", + "Last Name": "ਆਖੀਰਲਾ ਨਾਂਮ", + "First name": "ਪਹਿਲਾ ਨਾਂ", + "Last name": "ਆਖੀਰਲਾ ਨਾਂਮ", + "Primary Email": "ਪ੍ਰਾਇਮਰੀ ਈਮੇਲ", + "Phone": "ਫੋਨ", + "Is user": "ਉਪਭੋਗਤਾ ਹੈ", + "Save & New": "ਸੰਭਾਲੋ ਅਤੇ ਨਵਾਂ", + "Save & Close": "ਸੰਭਾਲੋ ਅਤੇ ਬੰਦ ਕਰੋ", + "Close": "ਬੰਦ ਕਰੋ", + "Customer properties": "ਗਾਹਕ ਦੀਆਂ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ", + "Device properties": "ਡਿਵਾਈਸ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ", + "Location": "ਟਿਕਾਣਾ", + "Browser": "ਬ੍ਰਾ .ਜ਼ਰ", + "Platform": "ਪਲੇਟਫਾਰਮ", + "IP Address": "IP ਪਤਾ", + "Hostname": "ਹੋਸਟ-ਨਾਮ", + "Language": "ਭਾਸ਼ਾ", + "User Agent": "ਉਪਭੋਗਤਾ ਏਜੰਟ", + "Other properties": "ਹੋਰ ਗੁਣ", + "Facebook": "ਫੇਸਬੁੱਕ", + "Facebook profile": "ਫੇਸਬੁੱਕ ਪ੍ਰੋਫਾਈਲ", + "Messenger usage": "ਮੈਸੇਂਜਰ ਦੀ ਵਰਤੋਂ", + "Status": "ਸਥਿਤੀ", + "Online": "ਨਲਾਈਨ", + "Offline": "Lineਫਲਾਈਨ", + "Twitter": "ਟਵਿੱਟਰ", + "Twitter quote": "ਟਵਿੱਟਰ ਦਾ ਹਵਾਲਾ", + "Retweet": "ਰੀਵੀਟ", + "Screen name": "ਸਕ੍ਰੀਨ ਨਾਮ", + "Don't see the result you're looking for? ": "ਉਹ ਨਤੀਜਾ ਨਹੀਂ ਦੇਖ ਰਿਹਾ ਜਿਸ ਦੀ ਤੁਸੀਂ ਭਾਲ ਕਰ ਰਹੇ ਹੋ?", + "Merged Info": "ਮਰਜ ਕੀਤੀ ਜਾਣਕਾਰੀ", + "E-mail": "ਈ - ਮੇਲ", + "Integrations": "ਏਕੀਕਰਣ", + "integration": "ਏਕੀਕਰਣ", + "Brands": "ਬ੍ਰਾਂਡ", + "Start date": "ਤਾਰੀਖ ਸ਼ੁਰੂ", + "End date": "ਅੰਤ ਦੀ ਮਿਤੀ", + "lead": "ਪੌਪ ਅੱਪ", + "twitter": "ਟਵਿੱਟਰ", + "facebook": "ਫੇਸਬੁੱਕ", + "messenger": "ਮੈਸੇਂਜਰ", + "Title": "ਸਿਰਲੇਖ", + "Brand": "ਬ੍ਰਾਂਡ", + "Current Password": "ਵਰਤਮਾਨ ਪਾਸਵਰਡ", + "Current password": "ਵਰਤਮਾਨ ਪਾਸਵਰਡ", + "New Password": "ਨਵਾਂ ਪਾਸਵਰਡ", + "Re-type Password to confirm": "ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ ਪਾਸਵਰਡ ਦੁਬਾਰਾ ਟਾਈਪ ਕਰੋ", + "Signature": "ਦਸਤਖਤ", + "simple": "ਆਸਾਨ", + "custom": "ਪ੍ਰਥਾ", + "default": "ਮੂਲ", + "default language": "ਮੂਲ ਭਾਸ਼ਾ", + "primary": "ਪ੍ਰਾਇਮਰੀ", + "Content": "ਸਮੱਗਰੀ", + "Save & draft": "ਸੰਭਾਲੋ ਅਤੇ ਡਰਾਫਟ", + "Save & live": "ਸੇਵ ਅਤੇ ਲਾਈਵ", + "Message:": "ਸੁਨੇਹਾ:", + "Email template:": "ਈਮੇਲ ਟੈਂਪਲੇਟ:", + "Email subject:": "ਈਮੇਲ ਦਾ ਵਿਸ਼ਾ:", + "From": "ਤੋਂ", + "Message type:": "ਸੁਨੇਹਾ ਪ੍ਰਕਾਰ:", + "Sent as:": "ਇਸ ਤਰਾਂ ਭੇਜਿਆ ਗਿਆ:", + "Brand:": "ਬ੍ਰਾਂਡ:", + "Add rule": "ਨਿਯਮ ਸ਼ਾਮਲ ਕਰੋ", + "Last online": "ਆਖਰੀ ਆੱਨਲਾਈਨ", + "No Activities": "ਕੋਈ ਗਤੀਵਿਧੀਆਂ ਨਹੀਂ", + "There is no customer.": "ਕੋਈ ਗਾਹਕ ਨਹੀਂ ਹੈ.", + "Properties": "ਗੁਣ", + "Customize ": "ਅਨੁਕੂਲਿਤ ਕਰੋ", + "Kind": "ਕਿਸਮ", + "All": "ਸਾਰੇ", + "Auto": "ਆਟੋ", + "Visitor auto": "ਵਿਜ਼ਿਟਰ ਆਟੋ", + "Manual": "ਮੈਨੂਅਲ", + "Delivered to a user s email inbox": "ਇੱਕ ਉਪਭੋਗਤਾ ਦੇ ਈਮੇਲ ਇਨਬਾਕਸ ਵਿੱਚ ਦਿੱਤਾ ਗਿਆ", + "Customize with your own templates": "ਆਪਣੇ ਖੁਦ ਦੇ ਟੈਂਪਲੇਟਸ ਨਾਲ ਅਨੁਕੂਲਿਤ ਕਰੋ", + "Delivered inside your app": "ਤੁਹਾਡੀ ਐਪ ਦੇ ਅੰਦਰ ਪ੍ਰਦਾਨ ਕੀਤਾ ਗਿਆ", + "Reach active users": "ਕਿਰਿਆਸ਼ੀਲ ਉਪਭੋਗਤਾਵਾਂ ਤੱਕ ਪਹੁੰਚੋ", + "Channel": "ਚੈਨਲ", + "Edit columns": "ਕਾਲਮ ਸੰਪਾਦਿਤ ਕਰੋ", + "Auto message": "ਆਟੋ ਸੁਨੇਹਾ", + "Manual message": "ਹੱਥੀਂ ਸੁਨੇਹਾ", + "Visitor auto message": "ਵਿਜ਼ਟਰ ਆਟੋ ਸੁਨੇਹਾ", + "Actions": "ਕਾਰਵਾਈਆਂ", + "Created date": "ਬਣਾਈ ਗਈ ਤਾਰੀਖ", + "Type": "ਕਿਸਮ", + "Failed": "ਅਸਫਲ", + "Sent": "ਭੇਜਿਆ", + "Total": "ਕੁੱਲ", + "Pause": "ਰੋਕੋ", + "Set live": "ਲਾਈਵ ਸੈਟ ਕਰੋ", + "Sending": "ਭੇਜ ਰਿਹਾ ਹੈ", + "Delete": "ਮਿਟਾਓ", + "Choose segment": "ਖੰਡ ਚੁਣੋ", + "To:": "ਨੂੰ:", + "Messenger kind:": "ਮੈਸੇਂਜਰ ਦੀ ਕਿਸਮ:", + "Title:": "ਸਿਰਲੇਖ", + "Channel:": "ਚੈਨਲ", + "No items": "ਕੋਈ ਚੀਜ਼ਾਂ ਨਹੀਂ", + "New": "ਨਵਾਂ", + "Options:": "ਵਿਕਲਪ:", + "Options": "ਚੋਣਾਂ", + "Type:": "ਕਿਸਮ:", + "Add": "ਸ਼ਾਮਲ ਕਰੋ", + "Validation:": "ਪ੍ਰਮਾਣਿਕਤਾ", + "Date": "ਤਾਰੀਖ਼", + "Number": "ਗਿਣਤੀ", + "Text:": "ਟੈਕਸਟ:", + "Description:": "ਵੇਰਵਾ:", + "This item is requried": "ਇਸ ਵਸਤੂ ਦੀ ਪੁਸ਼ਟੀ ਕੀਤੀ ਗਈ ਹੈ", + "Preview": "ਝਲਕ", + "Column name": "ਕਾਲਮ ਦਾ ਨਾਮ", + "Visible": "ਵੇਖਣਯੋਗ", + "Visibility": "ਦਿੱਖ", + "Choose person": "ਵਿਅਕਤੀ ਨੂੰ ਚੁਣੋ", + "Conversation Details": "ਗੱਲਬਾਤ ਵੇਰਵਾ", + "Opened": "ਖੁੱਲ੍ਹਿਆ", + "Conversations": "ਗੱਲਬਾਤ", + "Channels": "ਚੈਨਲ", + "Select all": "ਸਾਰਿਆ ਨੂੰ ਚੁਣੋ", + "Filter by tag": "ਟੈਗ ਦੁਆਰਾ ਫਿਲਟਰ", + "Filter by integrations": "ਏਕੀਕਰਣ ਦੁਆਰਾ ਫਿਲਟਰ", + "Filter by brand": "ਬ੍ਰਾਂਡ ਦੁਆਰਾ ਫਿਲਟਰ", + "Filter by channel": "ਚੈਨਲ ਦੁਆਰਾ ਫਿਲਟਰ ਕਰੋ", + "Filter by status": "ਸਥਿਤੀ ਅਨੁਸਾਰ ਫਿਲਟਰ", + "# Channel": "# ਚੈਨਲ", + "Unassigned": "ਬਿਨ੍ਹਾਂ ਸੌਂਪਿਆ ਗਿਆ", + "Participating": "ਹਿੱਸਾ ਲੈ ਰਿਹਾ ਹੈ", + "Resolved": "ਹੱਲ ਹੋ ਗਿਆ", + "View more": "ਹੋਰ ਵੇਖੋ", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "ਗਾਹਕ offlineਫਲਾਈਨ ਹੈ. ਸੁਨੇਹਿਆਂ ਨੂੰ ਲੁਕਾਉਣ ਅਤੇ ਭੇਜਣ ਲਈ ਕਲਿਕ ਕਰੋ ਅਤੇ ਅਗਲੀ ਵਾਰ ਜਦੋਂ ਉਹ areਨਲਾਈਨ ਹੋਣਗੇ ਤਾਂ ਉਹ ਉਨ੍ਹਾਂ ਨੂੰ ਪ੍ਰਾਪਤ ਕਰਨਗੇ.", + "No templates": "ਕੋਈ ਟੈਂਪਲੇਟ ਨਹੀਂ", + "Save as template": "ਨਮੂਨੇ ਵਜੋਂ ਸੰਭਾਲੋ", + "Daily First Response Resolve Rate": "ਰੋਜ਼ਾਨਾ ਪਹਿਲਾਂ ਜਵਾਬ ਹੱਲ ਕਰਨ ਦੀ ਦਰ", + "Daily First Response Resolve Rate by Team Members": "ਟੀਮ ਦੇ ਮੈਂਬਰਾਂ ਦੁਆਰਾ ਰੋਜ਼ਾਨਾ ਪਹਿਲਾ ਜਵਾਬ ਹੱਲ ਕਰਨ ਦੀ ਦਰ", + "Daily Response Close Resolve Rate by Team Members": "ਟੀਮ ਦੇ ਮੈਂਬਰਾਂ ਦੁਆਰਾ ਰੋਜ਼ਾਨਾ ਜੁਆਬ ਬੰਦ ਕਰਨ ਦਾ ਹੱਲ ਰੇਟ", + "Volume Report": "ਵਾਲੀਅਮ ਰਿਪੋਰਟ", + "Feedbacks gathered through various customer engagement channels.": "ਫੀਡਬੈਕ ਵੱਖ ਵੱਖ ਗਾਹਕ ਸ਼ਮੂਲੀਅਤ ਚੈਨਲਾਂ ਦੁਆਰਾ ਇਕੱਠੇ ਕੀਤੇ.", + "Response Report": "ਜਵਾਬ ਰਿਪੋਰਟ", + "Total number of response for customer feedbacks, by each staff.": "ਹਰੇਕ ਫੀਡ ਦੁਆਰਾ ਗਾਹਕ ਫੀਡਬੈਕ ਲਈ ਪ੍ਰਤੀਕ੍ਰਿਆ ਦੀ ਕੁੱਲ ਸੰਖਿਆ.", + "Response Close Report": "ਜਵਾਬ ਬੰਦ ਕਰਨ ਦੀ ਰਿਪੋਰਟ", + "Average time of each staff solving problems that based on customer feedbacks.": "ਮੁਸ਼ਕਲਾਂ ਨੂੰ ਹੱਲ ਕਰਨ ਵਾਲੇ ਹਰੇਕ ਸਟਾਫ ਦਾ timeਸਤਨ ਸਮਾਂ ਜੋ ਕਿ ਗਾਹਕ ਫੀਡਬੈਕ ਦੇ ਅਧਾਰ ਤੇ.", + "First Response Report": "ਪਹਿਲੀ ਜਵਾਬ ਰਿਪੋਰਟ", + "Responding time for a single feedback. Stats will define average response time by each staff.": "ਇੱਕ ਇੱਕਲੇ ਫੀਡਬੈਕ ਲਈ ਜਵਾਬ ਦੇਣਾ ਸਮਾਂ. ਅੰਕੜੇ ਹਰੇਕ ਅਮਲੇ ਦੁਆਰਾ ਪ੍ਰਤੀਕ੍ਰਿਆ ਦਾ timeਸਤਨ ਸਮਾਂ ਨਿਰਧਾਰਤ ਕਰਦੇ ਹਨ.", + "Daily Response Close Resolve Rate": "ਰੋਜ਼ਾਨਾ ਜਵਾਬ ਬੰਦ ਕਰਨ ਦਾ ਹੱਲ ਰੇਟ", + "Daily Response Close Resolve rate by Team Members": "ਟੀਮ ਦੇ ਮੈਂਬਰਾਂ ਦੁਆਰਾ ਰੋਜ਼ਾਨਾ ਜੁਆਬ ਬੰਦ ਕਰੋ ਹੱਲ ਦੀ ਦਰ", + "Response Times summary": "ਜਵਾਬ ਟਾਈਮਜ਼ ਸੰਖੇਪ", + "Response Trend": "ਜਵਾਬ ਦਾ ਰੁਝਾਨ", + "Punch card": "ਪੰਚ ਕਾਰਡ", + "Response by team members": "ਟੀਮ ਦੇ ਮੈਂਬਰਾਂ ਦੁਆਰਾ ਜਵਾਬ", + "Tag": "ਟੈਗ", + "Internal note": "ਅੰਦਰੂਨੀ ਨੋਟ", + "Manage templates": "ਟੈਂਪਲੇਟਸ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Volume summary": "ਵਾਲੀਅਮ ਦਾ ਸਾਰ", + "Volume Trend": "ਵਾਲੀਅਮ ਰੁਝਾਨ", + "Summary": "ਸਾਰ", + "Install code": "ਕੋਡ ਸਥਾਪਿਤ ਕਰੋ", + "No copyable code": "ਕੋਈ ਕਾੱਪੀ ਕਰਨ ਯੋਗ ਕੋਡ ਨਹੀਂ", + "Manage Knowledge Base": "ਗਿਆਨ ਅਧਾਰ ਨੂੰ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Add Category": "ਸ਼੍ਰੇਣੀ ਸ਼ਾਮਲ ਕਰੋ", + "Add Article": "ਲੇਖ ਸ਼ਾਮਲ ਕਰੋ", + "Customer engagement. REDEFINED.": "ਗਾਹਕ ਦੀ ਸ਼ਮੂਲੀਅਤ. ਮੁੜ ਪ੍ਰਭਾਸ਼ਿਤ", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "ਐਰਕਸ ਇਕ ਏਆਈ ਵਿਕਰੀ, ਮਾਰਕੀਟਿੰਗ ਅਤੇ ਸਹਾਇਤਾ ਲਈ ਓਪਨ ਸੋਰਸ ਮੈਸੇਜਿੰਗ ਪਲੇਟਫਾਰਮ ਹੈ", + "404. This page is not found.": "404. ਇਹ ਪੰਨਾ ਨਹੀਂ ਮਿਲਿਆ.", + "erxes is an open-source messaging platform for customer success": "ਐਰਕਸਸ ਗਾਹਕ ਦੀ ਸਫਲਤਾ ਲਈ ਇੱਕ ਓਪਨ ਸੋਰਸ ਮੈਸੇਜਿੰਗ ਪਲੇਟਫਾਰਮ ਹੈ", + "Notification settings": "ਸੂਚਨਾ ਸੈਟਿੰਗਜ਼", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "ਤੁਹਾਡੇ ਕਾਰੋਬਾਰ ਨੂੰ ਵਧੇਰੇ ਰੁਝੇਵੇਂ ਵਾਲੇ ਗਾਹਕਾਂ ਨੂੰ ਆਕਰਸ਼ਤ ਕਰਨ ਵਿੱਚ ਸਹਾਇਤਾ ਲਈ ਤਿਆਰ ਕੀਤਾ ਗਿਆ ਮਾਰਕੀਟਿੰਗ, ਵਿਕਰੀ ਅਤੇ ਗਾਹਕ ਸੇਵਾ ਪਲੇਟਫਾਰਮ. ਹੱਬਸਪੋਟ ਨੂੰ ਮਿਸ਼ਨ ਅਤੇ ਕਮਿ communityਨਿਟੀ ਦੁਆਰਾ ਸੰਚਾਲਿਤ ਈਕੋਸਿਸਟਮ ਨਾਲ ਬਦਲੋ.", + "Mark Page Read": "ਮਾਰਕ ਪੇਜ", + "Mark All Read": "ਸਾਰੇ ਪੜ੍ਹੋ ਤੇ ਮਾਰਕ ਕਰੋ", + "Coming soon": "ਆਨ ਵਾਲੀ", + "Looks like you are all caught up": "ਲਗਦਾ ਹੈ ਕਿ ਤੁਸੀਂ ਸਾਰੇ ਫਸ ਗਏ ਹੋ", + "AI": "ਏ", + "See all": "ਸਭ ਦੇਖੋ", + "Select a field": "ਇੱਕ ਖੇਤਰ ਚੁਣੋ", + "Add condition": "ਸ਼ਰਤ ਸ਼ਾਮਲ ਕਰੋ", + "Parent segment conditions": "ਮਾਪਿਆਂ ਦੇ ਹਿੱਸੇ ਦੀਆਂ ਸਥਿਤੀਆਂ", + "Filter by segments": "ਖੰਡਾਂ ਅਨੁਸਾਰ ਫਿਲਟਰ ਕਰੋ", + "New segment": "ਨਵਾਂ ਖੰਡ", + "Manage segments": "ਹਿੱਸੇ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Users who match": "ਉਪਭੋਗਤਾ ਜੋ ਮੈਚ ਕਰਦੇ ਹਨ", + "any": "ਕੋਈ ਵੀ", + "all": "ਸਭ", + "of the below conditions": "ਹੇਠ ਦਿੱਤੇ ਹਾਲਾਤ ਦੇ", + "Sub segment of": "ਦਾ ਸਬ ਖੰਡ", + "Color": "ਰੰਗ", + "Filters": "ਫਿਲਟਰ", + "User(s) will recieve this message": "ਉਪਭੋਗਤਾ ਇਸ ਸੰਦੇਸ਼ ਨੂੰ ਪ੍ਰਾਪਤ ਕਰਨਗੇ", + "Color code": "ਰੰਗ ਕੋਡ", + "Engage Message": "ਸੰਦੇਸ਼ ਸ਼ਾਮਲ ਕਰੋ", + "Item counts": "ਆਈਟਮ ਦੀ ਗਿਣਤੀ", + "Appearance": "ਦਿੱਖ", + "Hours, Availability & Other configs": "ਘੰਟੇ, ਉਪਲਬਧਤਾ ਅਤੇ ਹੋਰ ਕੌਂਫਿਗਰੇਸ", + "There is no brand": "ਕੋਈ ਬ੍ਰਾਂਡ ਨਹੀਂ ਹੈ", + "There is no integration in this channel.": "ਇਸ ਚੈਨਲ ਵਿੱਚ ਕੋਈ ਏਕੀਕਰਣ ਨਹੀਂ ਹੈ.", + "Template markup": "ਟੈਂਪਲੇਟ ਮਾਰਕਅਪ", + "Use html template here": "ਇੱਥੇ HTML ਟੈਂਪਲੇਟ ਦੀ ਵਰਤੋਂ ਕਰੋ", + "Choose your email template type": "ਆਪਣੀ ਈਮੇਲ ਟੈਂਪਲੇਟ ਕਿਸਮ ਚੁਣੋ", + "Email signatures": "ਈਮੇਲ ਦੇ ਹਸਤਾਖਰ", + "Personal Settings": "ਨਿੱਜੀ ਸੈਟਿੰਗਾਂ", + "Account Settings": "ਖਾਤਾ ਯੋਜਨਾ", + "Profile": "ਪ੍ਰੋਫਾਈਲ", + "Get notification by email": "ਈਮੇਲ ਦੁਆਰਾ ਸੂਚਨਾ ਪ੍ਰਾਪਤ ਕਰੋ", + "Admin": "ਐਡਮਿਨ", + "Contributor": "ਯੋਗਦਾਨ ਪਾਉਣ ਵਾਲਾ", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "ਅਸੀਂ ਤੁਹਾਡਾ ਸੱਟ ਮਾਰਦੇ ਹਾਂ ਅਤੇ ਸਾਡੇ ਨਾਲ ਲੰਬੇ ਸਮੇਂ ਲਈ ਸਿਹਤਮੰਦ ਕਾਰਜਸ਼ੀਲਤਾ ਦੀ ਉਮੀਦ ਕਰਦੇ ਹਾਂ.", + "Hi, any questions?": "ਹਾਇ, ਕੋਈ ਪ੍ਰਸ਼ਨ?", + "1 hour ago": "1 ਘੰਟਾ ਪਹਿਲਾਂ", + "We need your help!": "ਸਾਨੂੰ ਤੁਹਾਡੀ ਮਦਦ ਦੀ ਲੋੜ ਹੈ!", + "6 minutes ago": "6 ਮਿੰਟ ਪਹਿਲਾਂ", + "Write a reply ...": "ਜਵਾਬ ਲਿਖੋ ...", + "App": "ਐਪ", + "From email": "ਈਮੇਲ ਤੋਂ", + "User email title": "ਉਪਭੋਗਤਾ ਈਮੇਲ ਦਾ ਸਿਰਲੇਖ", + "User email content": "ਉਪਭੋਗਤਾ ਦੀ ਈਮੇਲ ਸਮੱਗਰੀ", + "Admin emails": "ਐਡਮਿਨ ਈਮੇਲ", + "Admin email title": "ਐਡਮਿਨ ਈਮੇਲ ਦਾ ਸਿਰਲੇਖ", + "Admin email content": "ਪ੍ਰਬੰਧਨ ਈਮੇਲ ਸਮੱਗਰੀ", + "Redirect url": "ਦਿਸ਼ਾ ਨਿਰਦੇਸ਼ url", + "On success": "ਸਫਲਤਾ 'ਤੇ", + "Load": "ਲੋਡ", + "Success": "ਸਫਲਤਾ", + "Thank content": "ਸਮੱਗਰੀ ਦਾ ਧੰਨਵਾਦ", + "Choose a custom color": "ਇੱਕ ਕਸਟਮ ਰੰਗ ਚੁਣੋ", + "Choose a wallpaper": "ਇੱਕ ਵਾਲਪੇਪਰ ਚੁਣੋ", + "Choose a logo": "ਲੋਗੋ ਚੁਣੋ", + "Visible online to visitor or customer": "ਵਿਜ਼ਟਰ ਜਾਂ ਗਾਹਕ ਲਈ Visਨਲਾਈਨ ਵੇਖਣਯੋਗ", + "Online messaging": "Messਨਲਾਈਨ ਮੈਸੇਜਿੰਗ", + "Welcome message": "ਸਵਾਗਤ ਸੰਦੇਸ਼", + "Offline messaging": "Lineਫਲਾਈਨ ਮੈਸੇਜਿੰਗ", + "Away message": "ਦੂਰ ਸੁਨੇਹਾ", + "Thank you message": "ਧੰਨਵਾਦ ਸੁਨੇਹਾ", + "Hours & Availability": "ਘੰਟੇ ਅਤੇ ਉਪਲਬਧਤਾ", + "Turn online/offline manually": "ਹੱਥੀਂ onlineਨਲਾਈਨ / offlineਫਲਾਈਨ ਚਾਲੂ ਕਰੋ", + "Set to follow your schedule": "ਆਪਣੇ ਕਾਰਜਕ੍ਰਮ ਦੀ ਪਾਲਣਾ ਕਰਨ ਲਈ ਸੈਟ ਕਰੋ", + "Other configs": "ਹੋਰ ਸੰਰਚਨਾ", + "Notify customer": "ਗਾਹਕ ਨੂੰ ਸੂਚਿਤ ਕਰੋ", + "Online hours": "Hoursਨਲਾਈਨ ਘੰਟੇ", + "Add another time": "ਇਕ ਹੋਰ ਸਮਾਂ ਸ਼ਾਮਲ ਕਰੋ", + "Time zone": "ਸਮਾਂ ਖੇਤਰ", + "Messenger": "ਮੈਸੇਂਜਰ", + "Knowledge base": "ਗਿਆਨ ਅਧਾਰ", + "Notification": "ਸੂਚਨਾ", + "Notifications": "ਨੋਟੀਫਿਕੇਸ਼ਨ", + "Show unread": "ਨਾ ਪੜ੍ਹੇ", + "Unread": "ਅਨਪੜ੍ਹ", + "Recent": "ਹਾਲ ਹੀ", + "Mark all as read": "ਸਾਰੇ ਪੜ੍ਹੇ ਹੋਏ ਵਜੋਂ ਮਾਰਕ ਕਰੋ", + "Email Appearance": "ਈਮੇਲ ਦਿੱਖ", + "Team Members": "ਟੀਮ ਦੇ ਮੈਂਬਰ", + "Account default": "ਖਾਤਾ ਮੂਲ", + "Team members": "ਟੀਮ ਦੇ ਮੈਂਬਰ", + "Full name": "ਪੂਰਾ ਨਾਂਮ", + "Leads": "ਪੌਪ ਅੱਪ", + "Email Signature": "ਈਮੇਲ ਦਸਤਖਤ", + "Response Template": "ਜਵਾਬ ਟੈਂਪਲੇਟ", + "Email Template": "ਈਮੇਲ ਟੈਪਲੇਟ", + "Response templates": "ਜਵਾਬ ਟੈਂਪਲੇਟਸ", + "Email templates": "ਈਮੇਲ ਟੈਂਪਲੇਟ", + "Brand Name": "ਮਾਰਕਾ", + "Current template": "ਮੌਜੂਦਾ ਨਮੂਨਾ", + "Created at": "'ਤੇ ਬਣਾਇਆ ਗਿਆ", + "Manage Fields": "ਖੇਤਰ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Duplicate": "ਡੁਪਲਿਕੇਟ", + "Code": "ਕੋਡ", + "Profile settings": "ਪ੍ਰੋਫਾਈਲ ਸੈਟਿੰਗਜ਼", + "Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ", + "Signatures are only included in response emails.": "ਦਸਤਖਤ ਸਿਰਫ ਜਵਾਬ ਈਮੇਲ ਵਿੱਚ ਸ਼ਾਮਲ ਹੁੰਦੇ ਹਨ.", + "Signature template": "ਦਸਤਖਤ ਟੈਂਪਲੇਟ", + "You can use Markdown to format your signature.": "ਤੁਸੀਂ ਆਪਣੇ ਦਸਤਖਤ ਨੂੰ ਫਾਰਮੈਟ ਕਰਨ ਲਈ ਮਾਰਕਡਾਉਨ ਦੀ ਵਰਤੋਂ ਕਰ ਸਕਦੇ ਹੋ.", + "Password": "ਪਾਸਵਰਡ", + "Password confirmation": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ", + "Choose the channels": "ਚੈਨਲਾਂ ਦੀ ਚੋਣ ਕਰੋ", + "Simple": "ਆਸਾਨ", + "Custom": "ਪ੍ਰਥਾ", + "Create a new Company": "ਇੱਕ ਨਵੀਂ ਕੰਪਨੀ ਬਣਾਓ", + "New Company": "ਨਵੀਂ ਕੰਪਨੀ", + "Edit name": "ਨਾਮ ਸੋਧੋ", + "Customer": "ਗਾਹਕ", + "Add tag": "ਟੈਗ ਸ਼ਾਮਲ ਕਰੋ", + "Company": "ਕੰਪਨੀ", + "New message ": "ਨਵਾਂ ਸੁਨੇਹਾ", + "There aren’t any activities at the moment.": "ਇਸ ਸਮੇਂ ਇੱਥੇ ਕੋਈ ਗਤੀਵਿਧੀਆਂ ਨਹੀਂ ਹਨ.", + "This item is required": "ਇਹ ਵਸਤੂ ਲੋੜੀਂਦੀ ਹੈ", + "Manage fields": "ਖੇਤਰ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Add integrations ": "ਏਕੀਕਰਣ ਸ਼ਾਮਲ ਕਰੋ", + "Form": "ਫਾਰਮ", + "Create a new Customer": "ਇੱਕ ਨਵਾਂ ਗਾਹਕ ਬਣਾਓ", + "New Customer": "ਨਵਾਂ ਗਾਹਕ", + "Segments": "ਹਿੱਸੇ", + "Add a condition": "ਇੱਕ ਸ਼ਰਤ ਸ਼ਾਮਲ ਕਰੋ", + "Open": "ਖੁੱਲਾ", + "Choose channel": "ਚੈਨਲ ਚੁਣੋ", + "Who is this message for?": "ਇਹ ਸੰਦੇਸ਼ ਕਿਸ ਲਈ ਹੈ?", + "Compose your message": "ਆਪਣਾ ਸੁਨੇਹਾ ਲਿਖੋ", + "No items added": "ਕੋਈ ਆਈਟਮ ਸ਼ਾਮਲ ਨਹੀਂ ਕੀਤੀ ਗਈ", + "Submit": "ਜਮ੍ਹਾਂ ਕਰੋ", + "Next": "ਅਗਲਾ", + "Save & Draft": "ਸੇਵ ਅਤੇ ਡਰਾਫਟ", + "Save & Live": "& ਸੁਰੱਖਿਅਤ ਕਰੋ", + "From:": "ਵੱਲੋਂ:", + "Pages": "ਪੇਜ", + "Links": "ਲਿੰਕ", + "Enter your password to Confirm": "ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ ਆਪਣਾ ਪਾਸਵਰਡ ਦਿਓ", + "Number of visits": "ਮੁਲਾਕਾਤਾਂ ਦੀ ਗਿਣਤੀ", + "Written By": "ਦੁਆਰਾ ਲਿਖਿਆ ਗਿਆ", + "Icon": "ਆਈਕਾਨ", + "draft": "ਡਰਾਫਟ", + "Twitter Username": "ਟਵਿੱਟਰ ਯੂਜ਼ਰਨਾਮ", + "LinkedIn": "ਲਿੰਕਡਇਨ", + "Youtube": "ਯੂਟਿubeਬ", + "Github": "ਗਿਤੁਬ", + "Edit response": "ਜਵਾਬ ਸੋਧੋ", + "To send your message press Enter and Shift + Enter to add a new line": "ਆਪਣਾ ਸੁਨੇਹਾ ਭੇਜਣ ਲਈ ਨਵੀਂ ਲਾਈਨ ਜੋੜਨ ਲਈ ਐਂਟਰ ਅਤੇ ਸ਼ਿਫਟ + ਐਂਟਰ ਦਬਾਓ", + "To send your note press Enter and Shift + Enter to add a new line": "ਆਪਣਾ ਨੋਟ ਭੇਜਣ ਲਈ ਨਵੀਂ ਲਾਈਨ ਜੋੜਨ ਲਈ ਐਂਟਰ ਅਤੇ ਸ਼ਿਫਟ + ਐਂਟਰ ਦਬਾਓ", + "Please enter an unit price. It should be a number": "ਕਿਰਪਾ ਕਰਕੇ ਇਕਾਈ ਦੀ ਕੀਮਤ ਦਾਖਲ ਕਰੋ. ਇਹ ਇੱਕ ਨੰਬਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ", + "Type to search": "ਖੋਜ ਕਰਨ ਲਈ ਟਾਈਪ ਕਰੋ", + "Members": "ਸਦੱਸ", + "Choose integrations": "ਏਕੀਕਰਣ ਦੀ ਚੋਣ ਕਰੋ", + "Choose brands": "ਮਾਰਕਾ ਚੁਣੋ", + "Select a date": "ਇੱਕ ਮਿਤੀ ਦੀ ਚੋਣ ਕਰੋ", + "Click to select a date": "ਤਾਰੀਖ ਚੁਣਨ ਲਈ ਕਲਿਕ ਕਰੋ", + "Choose users": "ਉਪਭੋਗਤਾ ਚੁਣੋ", + "Select Brand": "ਮਾਰਕਾ ਚੁਣੋ", + "Write here Welcome message.": "ਇੱਥੇ ਸਵਾਗਤ ਸੁਨੇਹਾ ਲਿਖੋ.", + "Write here Away message.": "ਇਥੇ ਅੈੱਸ ਮੈਸੇਜ ਲਿਖੋ.", + "Write here Thank you message.": "ਇੱਥੇ ਲਿਖੋ ਧੰਨਵਾਦ ਸੁਨੇਹਾ.", + "Select app": "ਐਪ ਦੀ ਚੋਣ ਕਰੋ", + "Enter new password": "ਨਵਾਂ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ", + "Choose channels": "ਚੈਨਲ ਚੁਣੋ", + "Select": "ਚੁਣੋ", + "select": "ਚੁਣੋ", + "Choose members": "ਮੈਂਬਰਾਂ ਦੀ ਚੋਣ ਕਰੋ", + "Search": "ਖੋਜ", + "your@email.com": "your@email.com", + "password": "ਪਾਸਵਰਡ", + "registered@email.com": "ਰਜਿਸਟਰਡ ਈਮੇਲ. com", + "new password": "ਨਵਾਂ ਪਾਸਵਰਡ", + "Start typing to leave a note": "ਇੱਕ ਨੋਟ ਛੱਡਣ ਲਈ ਟਾਈਪ ਕਰਨਾ ਸ਼ੁਰੂ ਕਰੋ", + "Re-type password": "ਮੁੜ ਪਾਸਵਰਡ ਲਿਖੋ", + "Name:": "ਨਾਮ:", + "Size:": "ਆਕਾਰ:", + "Website:": "ਵੈਬਸਾਈਟ:", + "Industry:": "ਉਦਯੋਗ:", + "Plan:": "ਯੋਜਨਾ:", + "There arent't any groups and fields": "ਇੱਥੇ ਕੋਈ ਸਮੂਹ ਅਤੇ ਖੇਤਰ ਨਹੀਂ ਹਨ", + "Please add property Group first": "ਕਿਰਪਾ ਕਰਕੇ ਪਹਿਲਾਂ ਪ੍ਰਾਪਰਟੀ ਸਮੂਹ ਸ਼ਾਮਲ ਕਰੋ", + "Add group": "ਸਮੂਹ ਸ਼ਾਮਲ ਕਰੋ", + "Add Property": "ਜਾਇਦਾਦ ਸ਼ਾਮਲ ਕਰੋ", + "Add Group & Field ": "ਸਮੂਹ ਅਤੇ ਖੇਤਰ ਸ਼ਾਮਲ ਕਰੋ", + "Add Group": "ਸਮੂਹ ਸ਼ਾਮਲ ਕਰੋ", + "Edit Property": "ਸੰਪਤੀ ਨੂੰ ਸੋਧੋ", + "Group:": "ਸਮੂਹ:", + "There arent't any fields in this group": "ਇਸ ਸਮੂਹ ਵਿੱਚ ਕੋਈ ਖੇਤਰ ਨਹੀਂ ਹਨ", + "Customer Properties": "ਗਾਹਕ ਵਿਸ਼ੇਸ਼ਤਾ", + "Company Properties": "ਕੰਪਨੀ ਦੀਆਂ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ", + "Add an option": "ਇੱਕ ਵਿਕਲਪ ਸ਼ਾਮਲ ਕਰੋ", + "Copy to clipboard": "ਕਲਿੱਪਬੋਰਡ ਵਿੱਚ ਕਾਪੀ ਕਰੋ", + "Go to home page": "ਹੋਮ ਪੇਜ ਤੇ ਜਾਓ", + "Assign to": "ਨੂੰ ਨਿਰਧਾਰਤ ਕਰੋ", + "Remove assignee": "Assignee ਹਟਾਓ", + "Account settings": "ਖਾਤਾ ਯੋਜਨਾ", + "General Settings": "ਆਮ ਸੈਟਿੰਗ", + "Integration Settings": "ਏਕੀਕਰਣ ਸੈਟਿੰਗਜ਼", + "Personal settings": "ਨਿੱਜੀ ਸੈਟਿੰਗਾਂ", + "Add category": "ਸ਼੍ਰੇਣੀ ਸ਼ਾਮਲ ਕਰੋ", + "Filter": "ਫਿਲਟਰ", + "Live": "ਜੀ", + "Draft": "ਡਰਾਫਟ", + "Paused": "ਰੁਕਿਆ", + "Your messages": "ਤੁਹਾਡੇ ਸੁਨੇਹੇ", + "Delivered inside your app Reach active users": "ਤੁਹਾਡੇ ਐਪ ਦੇ ਅੰਦਰ ਸਪੁਰਦ ਕੀਤੇ ਸਰਗਰਮ ਉਪਭੋਗਤਾਵਾਂ ਤੱਕ ਪਹੁੰਚੋ", + "Delivered to a user s email inbox Customize with your own templates": "ਆਪਣੇ ਖੁਦ ਦੇ ਟੈਂਪਲੇਟਸ ਨਾਲ ਉਪਭੋਗਤਾ ਦੇ ਈਮੇਲ ਇਨਬਾਕਸ ਨੂੰ ਅਨੁਕੂਲਿਤ ਕਰੋ", + "email": "ਈ - ਮੇਲ", + "Create segment": "ਖੰਡ ਬਣਾਓ", + "customers": "ਗਾਹਕ", + "has any value": "ਕੋਈ ਮੁੱਲ ਹੈ", + "is unknown": "ਅਣਜਾਣ ਹੈ", + "is not": "ਨਹੀ ਹੈ", + "is": "ਹੈ", + "Less than": "ਉਸ ਤੋਂ ਘਟ", + "City": "ਸ਼ਹਿਰ", + "Greater than": "ਵੱਧ", + "Country": "ਦੇਸ਼", + "Current page url": "ਮੌਜੂਦਾ ਪੇਜ url", + "Browser language": "ਬ੍ਰਾ .ਜ਼ਰ ਭਾਸ਼ਾ", + "conversation": "ਗੱਲਬਾਤ", + "engageMessage": "ਕੁੜਮਾਈ", + "customer": "ਗਾਹਕ", + "company": "ਕੰਪਨੀ", + "starts with": "ਨਾਲ ਸ਼ੁਰੂ ਹੁੰਦਾ ਹੈ", + "ends with": "ਨਾਲ ਖਤਮ ਹੁੰਦਾ ਹੈ", + "contains": "ਸ਼ਾਮਿਲ ਹੈ", + "does not contain": "ਨਹੀਂ ਰੱਖਦਾ", + "Basic Info": "ਮੁੱ Infoਲੀ ਜਾਣਕਾਰੀ", + "Add Phone": "ਫੋਨ ਸ਼ਾਮਲ ਕਰੋ", + "Add Email": "ਈਮੇਲ ਸ਼ਾਮਲ ਕਰੋ", + "Choose your tags": "ਆਪਣੇ ਟੈਗ ਚੁਣੋ", + "Manage tags": "ਟੈਗ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Edit Profile": "ਸੋਧ ਪ੍ਰੋਫ਼ਾਈਲ", + "Sign out": "ਸਾਇਨ ਆਉਟ", + "Last Updated By": "ਆਖਰੀ ਵਾਰ ਅਪਡੇਟ ਕੀਤਾ ਗਿਆ", + "There is no channel": "ਕੋਈ ਚੈਨਲ ਨਹੀਂ ਹੈ", + "Facebook page": "ਫੇਸਬੁੱਕ ਪੇਜ", + "plan": "ਯੋਜਨਾ", + "Edit segment": "ਖੰਡ ਸੰਪਾਦਿਤ ਕਰੋ", + "New message": "ਨਵਾਂ ਸੁਨੇਹਾ", + "Message": "ਸੁਨੇਹਾ", + "Merge Customers": "ਗ੍ਰਾਹਕਾਂ ਨੂੰ ਮਿਲਾਓ", + "Assign": "ਨਿਰਧਾਰਤ ਕਰੋ", + "There is no message.": "ਕੋਈ ਸੁਨੇਹਾ ਨਹੀਂ ਹੈ.", + "per page": "ਪ੍ਰਤੀ ਪੰਨਾ", + "[view]": "[ਵੇਖੋ]", + "Go to twitter": "ਟਵਿੱਟਰ ਤੇ ਜਾਓ", + "Build": "ਬਣਾਉ", + "`s integration": "ਦੀ ਏਕੀਕਰਣ", + "Created": "ਬਣਾਇਆ", + "Email templates:": "ਈਮੇਲ ਟੈਂਪਲੇਟਸ:", + "Content:": "ਸਮੱਗਰੀ:", + "Response Templates": "ਜਵਾਬ ਨਮੂਨੇ", + "Merge Companies": "ਕੰਪਨੀਆਂ ਨੂੰ ਮਿਲਾਓ", + "Response template": "ਜਵਾਬ ਟੈਂਪਲੇਟ", + "Attach file": "ਫਾਈਲ ਅਟੈਚ ਕਰੋ", + "Upload": "ਅਪਲੋਡ ਕਰੋ", + "ShoutBox": "ਸ਼ੌਟਬਾਕਸ", + "Popup": "ਪੋਪ - ਅਪ", + "Embedded": "ਸ਼ਾਮਲ", + "Choose a flow type": "ਫਲੋ ਕਿਸਮ ਚੁਣੋ", + "CallOut": "ਦੂਜਿਆਂ ਦਾ ਧਿਆਨ ਖਿੱਚਣ ਲਈ ਅਵਾਜ ਦੇਣਾ", + "Callout title": "ਕਾਲਆਉਟ ਸਿਰਲੇਖ", + "Callout body": "ਕਾਲਆਉਟ ਬਾਡੀ", + "Callout button text": "ਕਾਲਆਉਟ ਬਟਨ ਟੈਕਸਟ", + "Skip callOut": "ਕਾਲ ਆਉਟ ਛੱਡੋ", + "Form button text": "ਫਾਰਮ ਬਟਨ ਟੈਕਸਟ", + "Theme color": "ਥੀਮ ਰੰਗ", + "Featured image": "ਫੀਚਰਡ ਚਿੱਤਰ", + "Full Preview": "ਪੂਰੀ ਝਲਕ", + "Try some of these colors:": "ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕੁਝ ਰੰਗ ਅਜ਼ਮਾਓ:", + "Included fields": "ਸ਼ਾਮਲ ਖੇਤਰ", + "Deal": "ਵਿਕਰੀ ਪਾਈਪਲਾਈਨ", + "Deals": "ਵਿਕਰੀ ਪਾਈਪਲਾਈਨਜ਼", + "New Product & Service": "ਨਵਾਂ ਉਤਪਾਦ ਅਤੇ ਸੇਵਾ", + "No product or services": "ਕੋਈ ਉਤਪਾਦ ਜਾਂ ਸੇਵਾਵਾਂ ਨਹੀਂ", + "UOM": "UOM", + "Quantity": "ਮਾਤਰਾ", + "Unit price": "ਯੂਨਿਟ ਮੁੱਲ", + "Discount": "ਛੂਟ", + "Tax": "ਟੈਕਸ", + "Ticket": "ਟਿਕਟ", + "Task": "ਕੰਮ", + "Select company": "ਕੰਪਨੀ ਚੁਣੋ", + "Select customer": "ਗਾਹਕ ਦੀ ਚੋਣ ਕਰੋ", + "Note": "ਨੋਟ", + "Assigned to": "ਨੂੰ ਦਿੱਤਾ", + "Move": "ਮੂਵ", + "Move deal": "ਸੌਦਾ ਸੌਦਾ", + "Copy": "ਕਾੱਪੀ", + "Close date": "ਬੰਦ ਹੋਣ ਦੀ ਤਾਰੀਖ", + "Choose product & service": "ਉਤਪਾਦ ਅਤੇ ਸੇਵਾ ਦੀ ਚੋਣ ਕਰੋ", + "Select product & service": "ਉਤਪਾਦ ਅਤੇ ਸੇਵਾ ਦੀ ਚੋਣ ਕਰੋ", + "Please, select a close date": "ਕਿਰਪਾ ਕਰਕੇ ਨੇੜੇ ਦੀ ਮਿਤੀ ਦੀ ਚੋਣ ਕਰੋ", + "Create a new Product": "ਇੱਕ ਨਵਾਂ ਉਤਪਾਦ ਬਣਾਓ", + "New Product": "ਨਵਾਂ ਉਤਪਾਦ", + "SKU": "ਐਸ ਕੇਯੂ", + "Choose a company": "ਕੋਈ ਕੰਪਨੀ ਚੁਣੋ", + "Choose a customer": "ਇੱਕ ਗਾਹਕ ਚੁਣੋ", + "Choose a board": "ਇੱਕ ਬੋਰਡ ਚੁਣੋ", + "Choose a pipeline": "ਇੱਕ ਪਾਈਪਲਾਈਨ ਚੁਣੋ", + "Manage Board & Pipeline": "ਬੋਰਡ ਅਤੇ ਪਾਈਪਲਾਈਨ ਪ੍ਰਬੰਧਿਤ ਕਰੋ", + "Choose a stage": "ਸਟੇਜ ਦੀ ਚੋਣ ਕਰੋ", + "Deal Settings": "ਵਿਕਰੀ ਪਾਈਪਲਾਈਨ ਸੈਟਿੰਗਜ਼", + "Ticket Settings": "ਟਿਕਟ ਸੈਟਿੰਗਜ਼", + "Task Settings": "ਟਾਸਕ ਸੈਟਿੰਗਜ਼", + "Boards & Pipelines": "ਬੋਰਡ ਅਤੇ ਪਾਈਪਲਾਈਨ", + "Product & Service": "ਉਤਪਾਦ ਅਤੇ ਸੇਵਾ", + "There is no pipeline in this board.": "ਇਸ ਬੋਰਡ ਵਿਚ ਕੋਈ ਪਾਈਪ ਲਾਈਨ ਨਹੀਂ ਹੈ.", + "There is no board": "ਕੋਈ ਬੋਰਡ ਨਹੀਂ ਹੈ", + "New Board": "ਨਵਾਂ ਬੋਰਡ", + "Add pipeline": "ਪਾਈਪ ਲਾਈਨ ਸ਼ਾਮਲ ਕਰੋ", + "Create one": "ਇੱਕ ਬਣਾਓ", + "Edit pipeline": "ਪਾਈਪਲਾਈਨ ਸੋਧੋ", + "Add stage": "ਸਟੇਜ ਸ਼ਾਮਲ ਕਰੋ", + "Board": "ਫੱਟੀ", + "Pipeline": "ਪਾਈਪਲਾਈਨ", + "Stage": "ਸਟੇਜ", + "Stage name": "ਸਟੇਜ ਦਾ ਨਾਮ", + "Add a deal": "ਇੱਕ ਸੌਦਾ ਸ਼ਾਮਲ ਕਰੋ", + "Add a task": "ਇੱਕ ਕੰਮ ਸ਼ਾਮਲ ਕਰੋ", + "Add a ticket": "ਇੱਕ ਟਿਕਟ ਸ਼ਾਮਲ ਕਰੋ", + "Priority": "ਤਰਜੀਹ", + "Critical": "ਨਾਜ਼ੁਕ", + "High": "ਉੱਚਾ", + "Normal": "ਸਧਾਰਣ", + "Low": "ਘੱਟ", + "Attachments": "ਨੱਥੀ", + "Source": "ਸਰੋਤ", + "Select a source": "ਇੱਕ ਸਰੋਤ ਦੀ ਚੋਣ ਕਰੋ", + "Upload an attachment": "ਇੱਕ ਲਗਾਵ ਅਪਲੋਡ ਕਰੋ", + "Description": "ਵੇਰਵਾ", + "Select a priority": "ਇੱਕ ਤਰਜੀਹ ਚੁਣੋ", + "Edit deal": "ਸੋਧ ਸੌਦਾ", + "Edit task": "ਕੰਮ ਸੋਧੋ", + "Edit ticket": "ਟਿਕਟ ਸੋਧੋ", + "Add Product / Service": "ਉਤਪਾਦ / ਸੇਵਾ ਸ਼ਾਮਲ ਕਰੋ", + "Reply tweet": "ਟਵੀਟ ਦਾ ਜਵਾਬ", + "Tweet": "ਟਵੀਟ", + "Details": "ਵੇਰਵਾ", + "View Profile": "ਪ੍ਰੋਫਾਈਲ ਵੇਖੋ", + "Empty Notes": "ਖਾਲੀ ਨੋਟ", + "Mini-resume": "ਮਿੰਨੀ-ਰੈਜ਼ਿ .ਮੇ", + "You cannot update this property": "ਤੁਸੀਂ ਇਸ ਵਿਸ਼ੇਸ਼ਤਾ ਨੂੰ ਅਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦੇ", + "Desktop": "ਡੈਸਕਟਾਪ", + "Mobile": "ਮੋਬਾਈਲ", + "Tablet": "ਟੈਬਲੇਟ", + "Amount": "ਦੀ ਰਕਮ", + "Owner": "ਮਾਲਕ", + "Department": "ਵਿਭਾਗ", + "Lead Status": "ਪੌਪ ਅਪਸ ਸਥਿਤੀ", + "Lifecycle State": "ਜੀਵਨਸ਼ੈਲੀ ਸਥਿਤੀ", + "Has Authority": "ਅਥਾਰਟੀ ਹੈ", + "Do not disturb": "ਤੰਗ ਨਾ ਕਰੋ", + "Parent Company": "ਪੇਰੈਂਟ ਕੰਪਨੀ", + "Business Type": "ਵਪਾਰ ਦੀ ਕਿਸਮ", + "Employees count": "ਕਰਮਚਾਰੀ ਗਿਣਦੇ ਹਨ", + "Yes": "ਹਾਂ", + "No": "ਨਹੀਂ", + "Copied": "ਕਾੱਪੀ", + "General": "ਜਨਰਲ", + "Currency": "ਮੁਦਰਾ", + "Unit of measurement": "ਮਾਪ ਦੀ ਇਕਾਈ", + "Create another board": "ਕੋਈ ਹੋਰ ਬੋਰਡ ਬਣਾਓ", + "No pipeline": "ਕੋਈ ਪਾਈਪ ਲਾਈਨ ਨਹੀਂ", + "No stage": "ਕੋਈ ਅਵਸਥਾ ਨਹੀਂ", + "No deal": "ਕੋਈ ਸੌਦਾ ਨਹੀਂ", + "Background": "ਪਿਛੋਕੜ", + "Choose": "ਚੁਣੋ", + "Successfully saved.": "ਸਫਲਤਾਪੂਰਵਕ ਸੁਰੱਖਿਅਤ ਕੀਤਾ ਗਿਆ.", + "Successfully moved.": "ਸਫਲਤਾਪੂਰਵਕ ਚਲੇ ਗਏ.", + "Successfully selected.": "ਸਫਲਤਾਪੂਰਵਕ ਚੁਣਿਆ ਗਿਆ.", + "Body description here": "ਸਰੀਰ ਦਾ ਵੇਰਵਾ ਇੱਥੇ", + "Thank you.": "ਤੁਹਾਡਾ ਧੰਨਵਾਦ.", + "Choose a brand": "ਇੱਕ ਬ੍ਰਾਂਡ ਚੁਣੋ", + "Write a title": "ਸਿਰਲੇਖ ਲਿਖੋ", + "Contact": "ਸੰਪਰਕ", + "Created by": "ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ", + "Manage": "ਪ੍ਰਬੰਧ ਕਰਨਾ, ਕਾਬੂ ਕਰਨਾ", + "Dropdown": "ਡਰਾਪ ਡਾਉਨ", + "Slide-in Left": "ਸਲਾਈਡ-ਇਨ ਖੱਬੇ", + "Slide-in Right": "ਸਲਾਈਡ-ਇਨ ਸੱਜਾ", + "Enter name": "ਨਾਮ ਦਰਜ ਕਰੋ", + "Delivered": "ਦਿੱਤਾ ਗਿਆ", + "Clicked": "ਕਲਿਕ ਕੀਤਾ ਗਿਆ", + "Complaint": "ਸ਼ਿਕਾਇਤ", + "Bounce": "ਉਛਾਲ", + "Rendering Failure": "ਰੈਡਰਿੰਗ ਅਸਫਲਤਾ", + "Rejected": "ਅਸਵੀਕਾਰ ਕਰ ਦਿੱਤਾ", + "Action": "ਐਕਸ਼ਨ", + "Please select one to merge": "ਅਭੇਦ ਹੋਣ ਲਈ ਕਿਰਪਾ ਕਰਕੇ ਇੱਕ ਦੀ ਚੋਣ ਕਰੋ", + "Filter by date": "ਤਾਰੀਖ ਅਨੁਸਾਰ ਫਿਲਟਰ", + "Total conversations": "ਕੁੱਲ ਗੱਲਬਾਤ", + "Filter by form": "ਫਾਰਮ ਦੁਆਰਾ ਫਿਲਟਰ ਕਰੋ", + "Supporters": "ਸਮਰਥਕ", + "Import histories": "ਇਤਿਹਾਸ ਅਯਾਤ ਕਰੋ", + "Imported Date": "ਆਯਾਤ ਕੀਤੀ ਮਿਤੀ", + "Imported User": "ਆਯਾਤ ਕੀਤਾ ਉਪਭੋਗਤਾ", + "Export customers": "ਨਿਰਯਾਤ ਗਾਹਕ", + "Import customers": "ਅਯਾਤ ਗਾਹਕ", + "Export companies": "ਨਿਰਯਾਤ ਕੰਪਨੀਆਂ", + "Import companies": "ਆਯਾਤ ਕੰਪਨੀਆਂ", + "All customers imported successfully": "ਸਾਰੇ ਗਾਹਕ ਸਫਲਤਾਪੂਰਵਕ ਆਯਾਤ ਹੋਏ", + "There aren't any imports": "ਇੱਥੇ ਕੋਈ ਆਯਾਤ ਨਹੀਂ ਹਨ", + "Successfully Removed all customers": "ਸਫਲਤਾਪੂਰਵਕ ਸਾਰੇ ਗ੍ਰਾਹਕਾਂ ਨੂੰ ਹਟਾ ਦਿੱਤਾ ਗਿਆ", + "You can only import max 600 at a time": "ਤੁਸੀਂ ਇਕ ਵਾਰ ਵਿਚ ਸਿਰਫ ਵੱਧ ਤੋਂ ਵੱਧ 600 ਆਯਾਤ ਕਰ ਸਕਦੇ ਹੋ", + "Invalid import type": "ਅਵੈਧ ਆਯਾਤ ਪ੍ਰਕਾਰ", + "Last updated": "ਆਖਰੀ ਵਾਰ ਅਪਡੇਟ ਕੀਤਾ ਗਿਆ", + "Filter by lead status": "ਪੌਪ ਅਪਸ ਸਥਿਤੀ ਅਨੁਸਾਰ ਫਿਲਟਰ", + "No lead status chosen": "ਕੋਈ ਲੀਡ ਸਥਿਤੀ ਨਹੀਂ ਚੁਣੀ ਗਈ", + "Schedule:": "ਸਮਾਸੂਚੀ, ਕਾਰਜ - ਕ੍ਰਮ:", + "Every Day": "ਨਿੱਤ", + "Every Month": "ਹਰ ਮਹੀਨੇ", + "Every Year": "ਹਰ ਸਾਲ", + "Every Monday": "ਹਰ ਸੋਮਵਾਰ ਨੂੰ", + "Every Tuesday": "ਹਰ ਮੰਗਲਵਾਰ ਨੂੰ", + "Every Wednesday": "ਹਰ ਬੁੱਧਵਾਰ ਨੂੰ", + "Every Thursday": "ਹਰ ਵੀਰਵਾਰ ਨੂੰ", + "Every Friday": "ਹਰ ਸ਼ੁੱਕਰਵਾਰ ਨੂੰ", + "Every Saturday": "ਹਰ ਸ਼ਨੀਵਾਰ", + "Every Sunday": "ਹਰ ਐਤਵਾਰ ਨੂੰ", + "Choose a schedule day": "ਇੱਕ ਤਹਿ ਸਮਾਂ ਚੁਣੋ", + "Choose a schedule time": "ਇੱਕ ਤਹਿ ਸਮਾਂ ਚੁਣੋ", + "Won": "ਜਿੱਤੀ", + "Lost": "ਗੁੰਮ ਗਿਆ", + "App store": "ਐਪ ਸਟੋਰ", + "App store menu": "ਐਪ ਸਟੋਰ ਮੀਨੂੰ", + "In Progress": "ਤਰੱਕੀ ਹੋ ਰਹੀ ਹੈ", + "It`s size exceeds the limit 10mb": "ਇਸ ਦਾ ਆਕਾਰ 10mb ਦੀ ਸੀਮਾ ਤੋਂ ਵੱਧ ਗਿਆ ਹੈ", + "Congrats! Your email sent successfully!": "ਵਧਾਈਆਂ! ਤੁਹਾਡੀ ਈਮੇਲ ਸਫਲਤਾਪੂਰਵਕ ਭੇਜੀ ਗਈ!", + "Works with messenger": "ਮੈਸੇਂਜਰ ਨਾਲ ਕੰਮ ਕਰਦਾ ਹੈ", + "Knowledge base topic": "ਗਿਆਨ ਅਧਾਰ ਵਿਸ਼ੇ", + "Package version": "ਪੈਕੇਜ ਵਰਜਨ", + "Branch name": "ਸ਼ਾਖਾ ਦਾ ਨਾਮ", + "Abbreviated": "ਸੰਖੇਪ", + "User": "ਯੂਜ਼ਰ", + "Recent conversations": "ਤਾਜ਼ਾ ਗੱਲਬਾਤ", + "Start new conversation": "ਨਵੀਂ ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰੋ", + "Talk with support staff": "ਸਹਾਇਤਾ ਅਮਲੇ ਨਾਲ ਗੱਲ ਕਰੋ", + "Send a message": "ਇੱਕ ਸੁਨੇਹਾ ਭੇਜੋ", + "Volume Report By Customer": "ਗਾਹਕ ਦੁਆਰਾ ਵਾਲੀਅਮ ਰਿਪੋਰਟ", + "Export Report": "ਐਕਸਪੋਰਟ ਰਿਪੋਰਟ", + "We`re ready to help you.": "ਅਸੀਂ ਤੁਹਾਡੀ ਮਦਦ ਲਈ ਤਿਆਰ ਹਾਂ.", + "Please choose a product": "ਕਿਰਪਾ ਕਰਕੇ ਕੋਈ ਉਤਪਾਦ ਚੁਣੋ", + "Please choose a currency": "ਕਿਰਪਾ ਕਰਕੇ ਇੱਕ ਮੁਦਰਾ ਦੀ ਚੋਣ ਕਰੋ", + "No board": "ਕੋਈ ਬੋਰਡ ਨਹੀਂ", + "Empty": "ਖਾਲੀ", + "There is no account.": "ਕੋਈ ਲੇਖਾ ਨਹੀਂ ਹੈ.", + "There is no tag.": "ਕੋਈ ਟੈਗ ਨਹੀਂ ਹੈ.", + "Skip for now": "ਹੁਣੇ ਛੱਡੋ", + "Go to Inbox": "ਇਨਬਾਕਸ ਤੇ ਜਾਓ", + "Messenger Language": "ਮੈਸੇਂਜਰ ਭਾਸ਼ਾ", + "Messenger name": "ਮੈਸੇਂਜਰ ਦਾ ਨਾਮ", + "Skip": "ਛੱਡੋ", + "Finish": "ਮੁਕੰਮਲ", + "Show": "ਦਿਖਾਓ", + "Hide": "ਓਹਲੇ", + "Previous": "ਪਿਛਲਾ", + "Users": "ਉਪਭੋਗਤਾ", + "users": "ਉਪਭੋਗਤਾ", + "brands": "ਮਾਰਕਾ", + "messengers": "ਦੂਤ", + "channels": "ਚੈਨਲ", + "Emails": "ਈਮੇਲਾਂ", + "Messengers": "ਸੰਦੇਸ਼ਵਾਹਕ", + "You already have": "ਤੁਹਾਡੇ ਕੋਲ ਪਹਿਲਾਂ ਹੀ ਹੈ", + "There is another": "ਇਕ ਹੋਰ ਹੈ", + "Let's create your brand": "ਚਲੋ ਤੁਹਾਡਾ ਬ੍ਰਾਂਡ ਬਣਾਈਏ", + "Invite users": "ਉਪਭੋਗਤਾਵਾਂ ਨੂੰ ਸੱਦਾ ਦਿਓ", + "Let's grow your team": "ਚਲੋ ਤੁਹਾਡੀ ਟੀਮ ਨੂੰ ਵਧਾਈਏ", + "Invite": "ਸੱਦਾ", + "Let's start": "ਆਓ ਸ਼ੁਰੂ ਕਰੀਏ", + "Start messaging now!": "ਹੁਣੇ ਸੁਨੇਹਾ ਦੇਣਾ ਸ਼ੁਰੂ ਕਰੋ!", + "Create channel": "ਚੈਨਲ ਬਣਾਓ", + "Get started on your channel": "ਆਪਣੇ ਚੈਨਲ 'ਤੇ ਸ਼ੁਰੂਆਤ ਕਰੋ", + "Create your first messenger": "ਆਪਣਾ ਪਹਿਲਾ ਮੈਸੇਂਜਰ ਬਣਾਓ", + "Welcome": "ਸਵਾਗਤ ਹੈ", + "Nothing inserted": "ਕੁਝ ਵੀ ਨਹੀਂ ਪਾਇਆ ਗਿਆ", + "Empty emails": "ਖਾਲੀ ਈਮੇਲਾਂ", + "Initial setup": "ਸ਼ੁਰੂਆਤੀ ਸੈਟਅਪ", + "Add another": "ਹੋਰ ਸ਼ਾਮਲ ਕਰੋ", + "Don't show again": "ਦੁਬਾਰਾ ਨਾ ਦਿਖਾਓ", + "No other pipeline": "ਕੋਈ ਹੋਰ ਪਾਈਪ ਲਾਈਨ ਨਹੀਂ", + "No other boards": "ਕੋਈ ਹੋਰ ਬੋਰਡ ਨਹੀਂ", + "I'm ready to get started": "ਮੈਂ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਤਿਆਰ ਹਾਂ", + "Welcome paragraph": "ਅਸੀਂ ਤੁਹਾਨੂੰ ਮਿਲ ਕੇ ਬਹੁਤ ਖੁਸ਼ ਹਾਂ. ਆਓ ਤੁਹਾਨੂੰ ਸਥਾਪਤ ਕਰਨ ਲਈ ਇੱਕ ਪਲ ਲਈਏ", + "Get notified and notify others to keep everything up to date": "ਹਰ ਚੀਜ਼ ਨੂੰ ਤਾਜ਼ਾ ਰੱਖਣ ਲਈ ਸੂਚਿਤ ਕਰੋ ਅਤੇ ਦੂਜਿਆਂ ਨੂੰ ਸੂਚਿਤ ਕਰੋ", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "ਜੇ ਤੁਹਾਡੀ ਟੀਮ ਨੂੰ ਉਹ ਸੰਦੇਸ਼ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹੋਏ ਜੋ ਤੁਸੀਂ ਸਾਈਟ 'ਤੇ ਭੇਜੇ ਹਨ, ਤਾਂ ਅਸੀਂ ਉਨ੍ਹਾਂ ਨੂੰ ਈਮੇਲ ਰਾਹੀਂ ਭੇਜ ਸਕਦੇ ਹਾਂ", + "Send an email and notify members that they've been invited!": "ਇੱਕ ਈਮੇਲ ਭੇਜੋ ਅਤੇ ਮੈਂਬਰਾਂ ਨੂੰ ਸੂਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਬੁਲਾਇਆ ਗਿਆ ਹੈ!", + "January": "ਜਨਵਰੀ", + "February": "ਫਰਵਰੀ", + "March": "ਮਾਰਚ", + "April": "ਅਪ੍ਰੈਲ", + "May": "ਮਈ", + "June": "ਜੂਨ", + "July": "ਜੁਲਾਈ", + "August": "ਅਗਸਤ", + "September": "ਸਤੰਬਰ", + "October": "ਅਕਤੂਬਰ", + "November": "ਨਵੰਬਰ", + "December": "ਦਸੰਬਰ", + "Today": "ਅੱਜ", + "Sales": "ਵਿਕਰੀ", + "Monthly view": "ਮਾਸਿਕ ਝਲਕ", + "Filter by": "ਫਿਲਟਰ", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "ਇੱਕ ਬ੍ਰਾਂਡ ਬਣਾਉਣਾ ਅਤੇ ਚੈਨਲ ਸ਼ਾਮਲ ਕਰਕੇ, ਤੁਸੀਂ ਆਪਣੇ ਗਾਹਕਾਂ ਦੀਆਂ ਜ਼ਰੂਰਤਾਂ ਦਾ ਬਿਹਤਰ ਵਿਸ਼ਲੇਸ਼ਣ ਕਰਨ ਦੇ ਯੋਗ ਹੋ ਅਤੇ ਉਨ੍ਹਾਂ ਦੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਹੱਲ ਕਰਨ ਵਿੱਚ ਸਹਾਇਤਾ ਕਰਦੇ ਹੋ", + "Grow and add users to your team! Assign, designate and let them do what they do best": "ਆਪਣੀ ਟੀਮ ਵਿੱਚ ਉਪਭੋਗਤਾਵਾਂ ਨੂੰ ਵਧੋ ਅਤੇ ਸ਼ਾਮਲ ਕਰੋ! ਨਿਰਧਾਰਤ ਕਰੋ, ਨਿਯੁਕਤ ਕਰੋ ਅਤੇ ਉਨ੍ਹਾਂ ਨੂੰ ਉਹ ਕਰਨ ਦਿਓ ਜੋ ਉਹ ਸਭ ਤੋਂ ਵਧੀਆ ਕਰਦੇ ਹਨ", + "Stay up to date with every single customer feedback and create more meaningful conversations": "ਹਰੇਕ ਗਾਹਕ ਪ੍ਰਤੀਕਰਮ ਦੇ ਨਾਲ ਨਵੀਨਤਮ ਰਹੋ ਅਤੇ ਵਧੇਰੇ ਅਰਥਪੂਰਨ ਗੱਲਬਾਤ ਕਰੋ", + "Create brand channels that are specifically categorized by type and activity": "ਉਹ ਬ੍ਰਾਂਡ ਚੈਨਲ ਬਣਾਉ ਜੋ ਵਿਸ਼ੇਸ਼ ਤੌਰ 'ਤੇ ਕਿਸਮ ਅਤੇ ਗਤੀਵਿਧੀ ਅਨੁਸਾਰ ਸ਼੍ਰੇਣੀਬੱਧ ਕੀਤੇ ਗਏ ਹੋਣ", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "ਇੱਥੇ ਇੱਕ ਲੀਡ ਸ਼ਾਮਲ ਕਰੋ ਅਤੇ ਇਸਨੂੰ ਆਪਣੇ ਮੈਸੇਂਜਰ ਵਿਜੇਟ ਤੇ ਦੇਖੋ! ਤੁਹਾਡੇ ਇਨਬਾਕਸ ਵਿੱਚ ਲੀਡ ਵੇਖਣ ਲਈ, ਕਿਰਪਾ ਕਰਕੇ ਇਹ ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਇਹ ਤੁਹਾਡੇ ਚੈਨਲ ਵਿੱਚ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "ਤੁਸੀਂ ਸਾਡੇ ਬਹੁਤ ਸਾਰੇ ਮੈਸੇਂਜਰ ਏਕੀਕਰਣ ਵਿੱਚੋਂ ਚੁਣ ਸਕਦੇ ਹੋ ਅਤੇ ਆਪਣੇ ਗਿਆਨ ਅਧਾਰ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰ ਸਕਦੇ ਹੋ. ਗਿਆਨ ਦਾ ਅਧਾਰ ਤੁਹਾਡੇ ਮੈਸੇਂਜਰ ਵਿਜੇਟ ਦੀ ਟੈਬ ਵਿੱਚ ਦਿਖਾਈ ਦੇਵੇਗਾ. ਅਜਿਹਾ ਕਰਨ ਲਈ, ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ ਗਿਆਨ ਅਧਾਰ ਨੂੰ ਬਣਾਓ ਅਤੇ ਸ਼ਾਮਲ ਕਰੋ.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "ਇੱਕ ਈਮੇਲ ਦਸਤਖਤ ਉਹ ਜਾਣਕਾਰੀ ਸਾਂਝੀ ਕਰਨ ਦਾ ਇੱਕ ਅਵਸਰ ਹੁੰਦਾ ਹੈ ਜੋ ਪਛਾਣ ਅਤੇ ਵਿਸ਼ਵਾਸ ਬਣਾਉਣ ਵਿੱਚ ਸਹਾਇਤਾ ਕਰਦਾ ਹੈ.", + "Let's start taking care of your customers": "ਆਓ ਆਪਣੇ ਗਾਹਕਾਂ ਦੀ ਦੇਖਭਾਲ ਕਰਨਾ ਸ਼ੁਰੂ ਕਰੀਏ", + "Add in your first company!": "ਆਪਣੀ ਪਹਿਲੀ ਕੰਪਨੀ ਵਿਚ ਸ਼ਾਮਲ ਕਰੋ!", + "Choose from our many integrations and add to your channel": "ਸਾਡੇ ਬਹੁਤ ਸਾਰੇ ਏਕੀਕਰਣ ਤੋਂ ਚੁਣੋ ਅਤੇ ਆਪਣੇ ਚੈਨਲ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰੋ", + "Let's get you messaging away!": "ਆਓ ਤੁਹਾਨੂੰ ਮੈਸੇਜ ਕਰਾਉਣ ਲਈ ਦੂਰ ਕਰੀਏ!", + "Whoops! No messages here but you can always start": "ਓਹ ਹੋ! ਇੱਥੇ ਕੋਈ ਸੁਨੇਹੇ ਨਹੀਂ ਪਰ ਤੁਸੀਂ ਹਮੇਸ਼ਾਂ ਅਰੰਭ ਕਰ ਸਕਦੇ ਹੋ", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "ਲੇਖ ਤੁਹਾਡੇ ਗਾਹਕਾਂ ਦੇ ਆਉਣ ਵਾਲੇ ਕਈ ਮੁੱਦਿਆਂ ਨੂੰ ਸੰਬੋਧਿਤ ਕਰ ਸਕਦੇ ਹਨ. ਗਿਆਨ ਦੇ ਲੇਖਾਂ ਦੀਆਂ ਕਿਸਮਾਂ ਵਿੱਚ ਆਮ ਮੁੱਦਿਆਂ, ਉਤਪਾਦਾਂ ਜਾਂ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਦੇ ਦਸਤਾਵੇਜ਼ਾਂ, ਅਕਸਰ ਪੁੱਛੇ ਜਾਂਦੇ ਸਵਾਲ ਅਤੇ ਹੋਰ ਵੀ ਸ਼ਾਮਲ ਹੋ ਸਕਦੇ ਹਨ.", + "Oops! No data here": "ਓਹ ਹੋ! ਇੱਥੇ ਕੋਈ ਡਾਟਾ ਨਹੀਂ ਹੈ", + "Start adding integrations now!": "ਹੁਣ ਏਕੀਕਰਣ ਜੋੜਨਾ ਅਰੰਭ ਕਰੋ!", + "Add an integration in this Brand": "ਇਸ ਬ੍ਰਾਂਡ ਵਿਚ ਏਕੀਕਰਣ ਸ਼ਾਮਲ ਕਰੋ", + "Oh dear! You have no imports": "ਉਹ ਪਿਆਰੇ! ਤੁਹਾਡੀ ਕੋਈ ਆਯਾਤ ਨਹੀਂ ਹੈ", + "A strong customer engagement can help to further brand growth and loyalty": "ਗਾਹਕ ਦੀ ਇੱਕ ਮਜ਼ਬੂਤ ਸ਼ਮੂਲੀਅਤ ਬ੍ਰਾਂਡ ਦੇ ਵਾਧੇ ਅਤੇ ਵਫ਼ਾਦਾਰੀ ਨੂੰ ਅੱਗੇ ਵਧਾਉਣ ਵਿੱਚ ਸਹਾਇਤਾ ਕਰ ਸਕਦੀ ਹੈ", + "Get started on your pipeline": "ਆਪਣੀ ਪਾਈਪਲਾਈਨ 'ਤੇ ਸ਼ੁਰੂਆਤ ਕਰੋ", + "Connect to Facebook messages right from your Team Inbox": "ਆਪਣੇ ਟੀਮ ਇਨਬੌਕਸ ਦੇ ਫੇਸਬੁੱਕ ਸੰਦੇਸ਼ਾਂ ਨਾਲ ਜੁੜੋ", + "Tweet back to your DMs right from your Team Inbox": "ਆਪਣੀ ਟੀਮ ਇਨਬੌਕਸ ਤੋਂ ਤੁਰੰਤ ਆਪਣੇ ਡੀਐਮਜ਼ ਤੇ ਟਵੀਟ ਕਰੋ", + "Connect straight to your Gmail and get those emails going": "ਸਿੱਧਾ ਆਪਣੀ ਜੀਮੇਲ ਨਾਲ ਜੁੜੋ ਅਤੇ ਉਨ੍ਹਾਂ ਈਮੇਲਾਂ ਨੂੰ ਪ੍ਰਾਪਤ ਕਰੋ", + "Find your lead forms right here in your Widget": "ਆਪਣੇ ਵਿਜੇਟ ਵਿੱਚ ਆਪਣੇ ਲੀਡ ਫਾਰਮ ਇੱਥੇ ਲੱਭੋ", + "Get access to your Knowledge Base right in your Widget": "ਆਪਣੇ ਵਿਜੇਟ ਵਿਚ ਹੀ ਆਪਣੇ ਨੋਲਜ ਬੇਸ ਤਕ ਪਹੁੰਚ ਪ੍ਰਾਪਤ ਕਰੋ", + "Soon you'll be able to connect Viber straight to your Team Inbox": "ਜਲਦੀ ਹੀ ਤੁਸੀਂ ਵਾਈਬਰ ਨੂੰ ਸਿੱਧਾ ਆਪਣੀ ਟੀਮ ਇਨਬੌਕਸ ਨਾਲ ਜੋੜ ਸਕੋਗੇ", + "Get a hold of your Whatsapp messages through your Team Inbox": "ਆਪਣੇ ਟੀਮ ਇਨਬੌਕਸ ਦੁਆਰਾ ਆਪਣੇ Whatsapp ਸੁਨੇਹਿਆਂ ਨੂੰ ਫੜੋ", + "Connect with Wechat and start messaging right from your Team Inbox": "ਵੇਚੈਟ ਨਾਲ ਜੁੜੋ ਅਤੇ ਆਪਣੇ ਟੀਮ ਇਨਬੌਕਸ ਤੋਂ ਮੈਸੇਜ ਕਰਨਾ ਸ਼ੁਰੂ ਕਰੋ", + "Find feedback that has been gathered from various customer engagement channels.": "ਫੀਡਬੈਕ ਲੱਭੋ ਜੋ ਕਿ ਕਈ ਗਾਹਕ ਸ਼ਮੂਲੀਅਤ ਚੈਨਲਾਂ ਤੋਂ ਇਕੱਠੀ ਕੀਤੀ ਗਈ ਹੈ.", + "A report on the total number of customer feedback responses given by team members.": "ਟੀਮ ਦੇ ਮੈਂਬਰਾਂ ਦੁਆਰਾ ਦਿੱਤੀ ਗਈ ਗਾਹਕ ਪ੍ਰਤੀਕਿਰਿਆਵਾਂ ਦੀ ਕੁੱਲ ਸੰਖਿਆ ਬਾਰੇ ਇੱਕ ਰਿਪੋਰਟ.", + "The average time a team member solved a problem based on customer feedback.": "Feedbackਸਤਨ ਸਮੇਂ ਜਦੋਂ ਇੱਕ ਟੀਮ ਮੈਂਬਰ ਨੇ ਗਾਹਕ ਦੇ ਫੀਡਬੈਕ ਦੇ ਅਧਾਰ ਤੇ ਕਿਸੇ ਸਮੱਸਿਆ ਦਾ ਹੱਲ ਕੀਤਾ.", + "You can find stats that defines the average response time by each team member.": "ਤੁਸੀਂ ਅੰਕੜੇ ਪਾ ਸਕਦੇ ਹੋ ਜੋ ਹਰੇਕ ਟੀਮ ਦੇ ਮੈਂਬਰ ਦੁਆਰਾ ਪ੍ਰਤੀਕ੍ਰਿਆ .ਸਤਨ ਸਮੇਂ ਨੂੰ ਪ੍ਰਭਾਸ਼ਿਤ ਕਰਦੇ ਹਨ.", + "Oh boy, looks like you need to get a head start on your deals": "ਹੇ ਮੁੰਡੇ, ਇੰਝ ਜਾਪਦਾ ਹੈ ਕਿ ਤੁਹਾਨੂੰ ਆਪਣੇ ਸੌਦਿਆਂ ਨੂੰ ਸ਼ੁਰੂ ਕਰਨ ਦੀ ਜ਼ਰੂਰਤ ਹੈ", + "Open segments and starting add details": "ਹਿੱਸੇ ਖੋਲ੍ਹੋ ਅਤੇ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰੋ", + "Now easier to find contacts according to your brand": "ਆਪਣੇ ਬ੍ਰਾਂਡ ਦੇ ਅਨੁਸਾਰ ਸੰਪਰਕ ਲੱਭਣਾ ਹੁਣ ਅਸਾਨ ਹੈ", + "Search and filter customers by form": "ਫਾਰਮ ਦੁਆਰਾ ਗ੍ਰਾਹਕਾਂ ਦੀ ਭਾਲ ਅਤੇ ਫਿਲਟਰ ਕਰੋ", + "There is always a lead!": "ਹਮੇਸ਼ਾ ਇੱਕ ਲੀਡ ਹੁੰਦੀ ਹੈ!", + "Calendar": "ਕੈਲੰਡਰ", + "Columns": "ਕਾਲਮ", + "columns": "ਕਾਲਮ", + "Linked Accounts": "ਲਿੰਕਡ ਅਕਾਉਂਟਸ", + "Select account": "ਖਾਤਾ ਚੁਣੋ", + "Select account ...": "ਖਾਤਾ ਚੁਣੋ ...", + "Add Account": "ਖਾਤਾ ਸ਼ਾਮਲ ਕਰੋ", + "Remove Account": "ਖਾਤਾ ਹਟਾਓ", + "You can upload only image file": "ਤੁਸੀਂ ਸਿਰਫ .png ਜਾਂ .jpg ਚਿੱਤਰ ਫਾਈਲ ਨੂੰ ਅਪਲੋਡ ਕਰ ਸਕਦੇ ਹੋ", + "Permissions": "ਅਧਿਕਾਰ", + "New permission": "ਨਵੀਂ ਆਗਿਆ", + "New group": "ਨਵਾਂ ਸਮੂਹ", + "Users groups": "ਉਪਭੋਗਤਾ ਸਮੂਹ", + "Choose the module": "ਮੋਡੀ .ਲ ਦੀ ਚੋਣ ਕਰੋ", + "Choose the actions": "ਕਾਰਜਾਂ ਦੀ ਚੋਣ ਕਰੋ", + "Choose the users": "ਉਪਭੋਗਤਾ ਚੁਣੋ", + "Choose the groups": "ਸਮੂਹਾਂ ਦੀ ਚੋਣ ਕਰੋ", + "Choose groups": "ਸਮੂਹ ਚੁਣੋ", + "Allow": "ਦੀ ਇਜਾਜ਼ਤ", + "Invitation Status": "ਸੱਦਾ ਦੀ ਸਥਿਤੀ", + "Permission": "ਆਗਿਆ", + "data successfully imported": "ਡਾਟਾ ਸਫਲਤਾਪੂਰਵਕ ਇੰਪੋਰਟ ਕੀਤਾ ਗਿਆ", + "Show result": "ਨਤੀਜਾ ਦਿਖਾਓ", + "Importing": "ਆਯਾਤ ਕਰ ਰਿਹਾ ਹੈ", + "data": "ਡਾਟਾ", + "errors acquired": "ਗਲਤੀਆਂ ਹਾਸਲ ਕੀਤੀਆਂ", + "There are": "ਓਥੇ ਹਨ", + "Continue": "ਜਾਰੀ ਰੱਖੋ", + "Create brand": "ਬ੍ਰਾਂਡ ਬਣਾਓ", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "ਆਪਣੀ ਪਹਿਲੀ ਲਾਈਵ ਚੈਟ ਅਤੇ ਇਨ-ਐਪ ਮੈਸੇਜਿੰਗ ਬਣਾਓ. ਵਧੇਰੇ ਅਰਥਪੂਰਣ ਦਖਲਅੰਦਾਜ਼ੀ ਲਈ ਹਰੇਕ ਗਾਹਕ ਪ੍ਰਤੀਕ੍ਰਿਆ ਨਾਲ ਨਵੀਨਤਮ ਰਹੋ.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "ਇੱਕ ਚੈਨਲ ਸਾਰੇ ਬ੍ਰਾਂਡਾਂ ਅਤੇ ਇਸਦੇ ਐਪਲੀਕੇਸ਼ਨਾਂ ਦਾ ਇੱਕ ਜਗ੍ਹਾ ਤੇ ਪੂਰਾ ਵਿਚਾਰ ਦਿੰਦਾ ਹੈ. ਤੁਸੀਂ ਆਪਣੀ ਟੀਮ ਦੇ ਇਨਬਾਕਸ ਵਿਚ ਆਉਣ ਵਾਲੇ ਸਾਰੇ ਸੁਨੇਹੇ ਦੇਖ ਸਕਦੇ ਹੋ.", + "Hooray and Congratulations! You've completed the initial setup!": "ਹੂਰੇ ਅਤੇ ਵਧਾਈਆਂ! ਤੁਸੀਂ ਸ਼ੁਰੂਆਤੀ ਸੈਟਅਪ ਪੂਰਾ ਕਰ ਲਿਆ ਹੈ!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "ਦੇ ਅੱਗੇ ਕੋਡ ਚਿਪਕਾਓ ਹਰ ਪੰਨੇ 'ਤੇ ਟੈਗ ਕਰੋ ਜੋ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ ਕਿ ਐਰਕਸ ਗੇਮਜ਼ ਪ੍ਰਦਰਸ਼ਤ ਹੋਣ.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "ਹਰ ਪੰਨੇ 'ਤੇ ਬਾਡੀ ਟੈਗ ਤੋਂ ਪਹਿਲਾਂ ਹੇਠਾਂ ਦਿੱਤੇ ਕੋਡ ਨੂੰ ਚਿਪਕਾਓ ਜਿਸ ਤਰ੍ਹਾਂ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ ਕ੍ਰਿਸਮਸ ਦੀ ਅਗਵਾਈ ਦਿਖਾਈ ਦੇਵੇ", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "ਜੇ ਤੁਹਾਡੀ ਪ੍ਰਵਾਹ ਦੀ ਕਿਸਮ ਏਮਬੇਡ ਕੀਤੀ ਗਈ ਹੈ ਤਾਂ ਹੇਠਾਂ ਦਿੱਤੇ ਕੋਡ ਨੂੰ ਇਸ ਦੇ ਨਾਲ ਪੇਸਟ ਕਰੋ ਕਿ ਤੁਸੀਂ ਚਾਹੁੰਦੇ ਹੋ ਕਿ ਕ੍ਰਿਸਮਿਸ ਦੀ ਅਗਵਾਈ ਦਿਖਾਈ ਦੇਵੇ", + "If your flow type is popup paste the code below additionally in your button": "ਜੇ ਤੁਹਾਡੀ ਪ੍ਰਵਾਹ ਕਿਸਮ ਪੌਪ-ਅਪ ਹੈ ਤਾਂ ਹੇਠਾਂ ਦਿੱਤੇ ਕੋਡ ਨੂੰ ਆਪਣੇ ਬਟਨ ਵਿਚ ਚਿਪਕਾਓ", + "Choose messengers": "ਸੰਦੇਸ਼ਵਾਹਕ ਚੁਣੋ", + "erxes allows you to create multiple messengers": "ਐਰਕਸ ਤੁਹਾਨੂੰ ਮਲਟੀਪਲ ਮੈਸੇਂਜਰ ਬਣਾਉਣ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ", + "erxes allows you to create multiple brands": "ਐਰਕਸ ਤੁਹਾਨੂੰ ਕਈ ਮਾਰਕਾ ਬਣਾਉਣ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ", + "erxes allows you to create multiple channels": "ਐਰਕਸ ਤੁਹਾਨੂੰ ਮਲਟੀਪਲ ਚੈਨਲ ਬਣਾਉਣ ਦੀ ਆਗਿਆ ਦਿੰਦਾ ਹੈ", + "Contacts": "ਸੰਪਰਕ", + "Create group": "ਸਮੂਹ ਬਣਾਓ", + "Visitors": "ਯਾਤਰੀ", + "Due in the next day": "ਅਗਲੇ ਦਿਨ ਵਿੱਚ", + "Due in the next week": "ਅਗਲੇ ਹਫਤੇ ਵਿੱਚ", + "Due in the next month": "ਅਗਲੇ ਮਹੀਨੇ ਵਿੱਚ", + "Has no close date": "ਕੋਈ ਨਜ਼ਦੀਕੀ ਮਿਤੀ ਨਹੀਂ ਹੈ", + "Over due": "ਵੱਧ ਬਕਾਇਆ", + "Clear Filter": "ਫਿਲਟਰ ਸਾਫ਼ ਕਰੋ", + "Remove this filter": "ਇਸ ਫਿਲਟਰ ਨੂੰ ਹਟਾਓ", + "Filtering is on": "ਫਿਲਟਰਿੰਗ ਜਾਰੀ ਹੈ", + "Choose products": "ਉਤਪਾਦਾਂ ਦੀ ਚੋਣ ਕਰੋ", + "Choose companies": "ਕੰਪਨੀਆਂ ਦੀ ਚੋਣ ਕਰੋ", + "Choose customers": "ਗਾਹਕਾਂ ਦੀ ਚੋਣ ਕਰੋ", + "Choose team members": "ਟੀਮ ਦੇ ਮੈਂਬਰਾਂ ਦੀ ਚੋਣ ਕਰੋ", + "erxes Inc": "erxes Inc", + "Get": "ਲਵੋ", + "Download ios app for free on the App Store": "ਐਪ ਸਟੋਰ 'ਤੇ ਆਈਓਐਸ ਐਪ ਮੁਫਤ ਡਾ Downloadਨਲੋਡ ਕਰੋ.", + "Download android app for free on the Google play": "ਗੂਗਲ ਪਲੇ 'ਤੇ ਮੁਫਤ ਐਂਡਰਾਇਡ ਐਪ ਡਾ Downloadਨਲੋਡ ਕਰੋ.", + "Please upgrade your browser to use erxes!": "ਕਿਰਪਾ ਕਰਕੇ ਐਕਸੈਕਸਜ ਦੀ ਵਰਤੋਂ ਕਰਨ ਲਈ ਆਪਣੇ ਬ੍ਰਾ browserਜ਼ਰ ਨੂੰ ਅਪਗ੍ਰੇਡ ਕਰੋ!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "ਬਦਕਿਸਮਤੀ ਨਾਲ, ਤੁਸੀਂ ਇਕ ਬ੍ਰਾ browserਜ਼ਰ 'ਤੇ ਚੱਲ ਰਹੇ ਹੋ ਜੋ ਐਰਕਸ ਨਾਲ ਪੂਰੀ ਤਰ੍ਹਾਂ ਅਨੁਕੂਲ ਨਹੀਂ ਹੋ ਸਕਦਾ.", + "Please use recommended version": "ਕਿਰਪਾ ਕਰਕੇ ਸਿਫਾਰਸ਼ ਕੀਤੇ ਸੰਸਕਰਣ ਦੀ ਵਰਤੋਂ ਕਰੋ", + "Messenger data": "ਮੈਸੇਂਜਰ ਡੇਟਾ", + "Customer field data": "ਗਾਹਕ ਫੀਲਡ ਡੇਟਾ", + "Others": "ਹੋਰ", + "Select brand": "ਮਾਰਕਾ ਚੁਣੋ", + "There is no permissions in this group": "ਇਸ ਸਮੂਹ ਵਿੱਚ ਕੋਈ ਅਨੁਮਤੀ ਨਹੀਂ ਹੈ.", + "There is no group": "ਕੋਈ ਸਮੂਹ ਨਹੀਂ ਹੈ.", + "User groups": "ਉਪਭੋਗਤਾ ਸਮੂਹ", + "What action can do": "ਕੀ ਕਾਰਵਾਈ ਕਰ ਸਕਦੀ ਹੈ", + "Who can": "ਕੌਣ ਕਰ ਸਕਦਾ ਹੈ", + "Grant permission": "ਆਗਿਆ ਦਿਓ", + "Check if permission is allowed": "ਚੈੱਕ ਕਰੋ ਜੇ ਇਜਾਜ਼ਤ ਹੈ ਜਾਂ ਨਹੀਂ", + "Then": "ਫਿਰ", + "Or": "ਜਾਂ", + "Auto message description": "ਲਕਸ਼-ਇਨ ਕੀਤੇ ਉਪਭੋਗਤਾਵਾਂ ਨੂੰ ਉਨ੍ਹਾਂ ਦੇ ਬ੍ਰਾਂਡ / ਟੈਗ / ਹਿੱਸੇ ਦੇ ਅਧਾਰ ਤੇ ਨਿਸ਼ਾਨਾ ਬਣਾਇਆ ਈਮੇਲ ਅਤੇ ਚੈਟ ਭੇਜੋ. ਤੁਸੀਂ ਪਹਿਲਾਂ ਆਪਣਾ ਈਮੇਲ ਭੇਜਣ ਜਾਂ ਗੱਲਬਾਤ ਕਰਨ ਲਈ ਆਪਣਾ ਸਮਾਂ ਨਿਰਧਾਰਤ ਕਰ ਸਕਦੇ ਹੋ. ਚੈਟ ਡਿਜ਼ਾਈਨ ਨੂੰ ਕੱਟਿਆ ਜਾ ਸਕਦਾ ਹੈ, ਬੈਜ ਅਤੇ ਪੂਰਾ ਸੁਨੇਹਾ ਅਤੇ ਇਹ ਟੈਕਸਟ ਜਾਂ ਵੀਡਿਓ ਹੋ ਸਕਦਾ ਹੈ.", + "Manual message description": "ਲਕਸ਼-ਇਨ ਕੀਤੇ ਉਪਭੋਗਤਾਵਾਂ ਨੂੰ ਉਨ੍ਹਾਂ ਦੇ ਬ੍ਰਾਂਡ / ਟੈਗ / ਹਿੱਸੇ ਦੇ ਅਧਾਰ ਤੇ ਨਿਸ਼ਾਨਾ ਬਣਾਇਆ ਈਮੇਲ ਅਤੇ ਚੈਟ ਭੇਜੋ. ਤੁਹਾਡੇ ਦੁਆਰਾ ਸੇਵ ਬਟਨ ਨੂੰ ਦਬਾਉਣ ਤੋਂ ਤੁਰੰਤ ਬਾਅਦ ਇੱਕ ਈਮੇਲ ਜਾਂ ਚੈਟ ਭੇਜ ਦਿੱਤੀ ਜਾਏਗੀ. ਚੈਟ ਡਿਜ਼ਾਈਨ ਨੂੰ ਕੱਟਿਆ ਜਾ ਸਕਦਾ ਹੈ, ਬੈਜ ਅਤੇ ਪੂਰਾ ਸੁਨੇਹਾ ਅਤੇ ਇਹ ਟੈਕਸਟ ਜਾਂ ਵੀਡਿਓ ਹੋ ਸਕਦਾ ਹੈ.", + "Visitor auto message description": "ਲੌਗ-ਆਉਟ ਕੀਤੇ ਗਏ ਮਹਿਮਾਨਾਂ ਨੂੰ ਵੈਬਸਾਈਟ 'ਤੇ ਉਨ੍ਹਾਂ ਦੇ ਵਿਜ਼ਿਟਿੰਗ ਪੇਜ, ਗਤੀਵਿਧੀ, ਉਨ੍ਹਾਂ ਦੇ ਰਹਿਣ ਵਾਲੇ ਦੇਸ਼ ਅਤੇ ਸ਼ਹਿਰ ਦੇ ਅਧਾਰ' ਤੇ ਨਿਸ਼ਾਨਾ ਲਗਾਓ. ਚੈਟ ਡਿਜ਼ਾਈਨ ਨੂੰ ਕੱਟਿਆ ਜਾ ਸਕਦਾ ਹੈ, ਬੈਜ ਅਤੇ ਪੂਰਾ ਸੁਨੇਹਾ ਅਤੇ ਇਹ ਟੈਕਸਟ ਜਾਂ ਵੀਡਿਓ ਹੋ ਸਕਦਾ ਹੈ.", + "Required field": "ਲਾਜ਼ਮੀ ਖ਼ਾਨਾ!", + "Invalid email format! Please enter a valid email address": "ਗਲਤ ਈਮੇਲ ਫਾਰਮੈਟ! ਇੱਕ ਜਾਇਜ ਈਮੇਲ ਪਤਾ ਦਰਜ ਕਰੋ.", + "Invalid link": "ਗਲਤ ਲਿੰਕ!", + "Maximum length is": "ਅਧਿਕਤਮ ਲੰਬਾਈ ਹੈ", + "characters": "ਅੱਖਰ!", + "Invalid number format! Please enter a valid number": "ਗਲਤ ਨੰਬਰ ਫਾਰਮੈਟ! ਕਿਰਪਾ ਕਰਕੇ ਇੱਕ ਯੋਗ ਨੰਬਰ ਦਾਖਲ ਕਰੋ.", + "Insert email template to content": "ਸਮੱਗਰੀ ਨੂੰ ਈਮੇਲ ਟੈਂਪਲੇਟ ਸ਼ਾਮਲ ਕਰੋ", + "Logs": "ਲਾਗ", + "There are no logs recorded": "ਇੱਥੇ ਕੋਈ ਵੀ ਰਿਕਾਰਡ ਦਰਜ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ", + "Module": "ਮੋਡੀuleਲ", + "Unchanged fields": "ਬਦਲਾਅ ਵਾਲੇ ਖੇਤਰ", + "Changed fields": "ਬਦਲੇ ਖੇਤ", + "Create": "ਬਣਾਓ", + "Update": "ਅਪਡੇਟ", + "Changes": "ਤਬਦੀਲੀਆਂ", + "Choose start date": "ਅਰੰਭ ਮਿਤੀ ਦੀ ਚੋਣ ਕਰੋ", + "Choose end date": "ਅੰਤ ਦੀ ਮਿਤੀ ਦੀ ਚੋਣ ਕਰੋ", + "Permission denied": "ਆਗਿਆ ਤੋਂ ਇਨਕਾਰ", + "Old data": "ਪੁਰਾਣਾ ਡੇਟਾ", + "New data": "ਨਵਾਂ ਡਾਟਾ", + "Archive": "ਪੁਰਾਲੇਖ", + "NetworkError": "ਕੁਨੈਕਸ਼ਨ ਰੀਸਟੋਰ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਿਹਾ ਹੈ. ਹੁਣ ਕੀਤੀਆਂ ਤਬਦੀਲੀਆਂ ਸੰਭਾਲੀਆਂ ਨਹੀਂ ਜਾ ਸਕਦੀਆਂ ਹਨ.", + "Email add account description question": "ਕੀ ਤੁਸੀਂ ਇੱਕ ਸਾਂਝਾ ਈਮੇਲ ਖਾਤਾ ਜੋੜ ਰਹੇ ਹੋ?", + "Email add account description": "ਜਦੋਂ ਤੁਸੀਂ ਕਿਸੇ ਈਮੇਲ ਨੂੰ ਆਪਣੀ ਗੱਲਬਾਤ ਇਨਬਾਕਸ ਨਾਲ ਜੋੜਦੇ ਹੋ, ਤਾਂ ਤੁਸੀਂ ਇਸ ਨੂੰ ਇੱਕ ਸਾਂਝੇ ਖਾਤੇ ਵਜੋਂ ਜੋੜ ਰਹੇ ਹੋ. ਸਾਂਝੇ ਖਾਤਿਆਂ ਨੂੰ ਭੇਜੇ ਸੁਨੇਹੇ ਹਰ ਕੋਈ ਦੇਖ ਸਕਦਾ ਹੈ ਜਿਸਦੀ ਤੁਹਾਡੀ ਟੀਮ ਦੇ ਇਨਬਾਕਸ ਵਿੱਚ ਪਹੁੰਚ ਹੈ.", + "No connected email": "ਕੋਈ ਜੁੜਿਆ ਈਮੇਲ ਨਹੀਂ", + "Your email will be sent with Erxes email template": "ਤੁਹਾਡੀ ਈਮੇਲ ਅਰਕਸ ਈਮੇਲ ਟੈਂਪਲੇਟ ਦੇ ਨਾਲ ਭੇਜੀ ਜਾਏਗੀ" +} diff --git a/ui/src/locales/pl_PL.json b/ui/src/locales/pl_PL.json new file mode 100644 index 00000000000..ca4d0e17c27 --- /dev/null +++ b/ui/src/locales/pl_PL.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Jesteś pewny? Tego nie da się cofnąć.", + "Yes, I am": "Tak, jestem", + "No, Cancel": "Nie, anuluj", + "Filter by tags": "Filtruj według tagów", + "There is no data": "Nie ma danych", + "There is no data.": "Nie ma danych.", + "Load more": "Załaduj więcej", + "There aren't any activities at the moment.": "W tej chwili nie ma żadnych działań.", + "Reset your password": "Zresetuj swoje hasło", + "Email me the instruction": "Wyślij mi instrukcję", + "Sign in": "Zaloguj się", + "Change password": "Zmień hasło", + "Set your new password": "Ustaw nowe hasło", + "Forgot password?": "Zapomniałeś hasła?", + "Photo": "Zdjęcie", + "Name": "Nazwa", + "Views": "Wyświetlenia", + "Conversion": "Konwersja", + "Go to import": "Idź do importu", + "Conversion rate": "Współczynnik konwersji", + "Contacts gathered": "Zebrane kontakty", + "Create lead": "Utwórz wyskakujące okienka", + "Form title": "Tytuł formularza", + "Related": "Związane z", + "Form description": "Opis formularza", + "Position": "Pozycja", + "Username": "Nazwa Użytkownika", + "Email": "E-mail", + "sec": "sec", + "Twitter username": "nazwa użytkownika na Twitterze", + "Inbox": "W pudełku", + "Workflow": "Przepływ pracy", + "Watch": "Zegarek", + "Watching": "Oglądanie", + "Team Inbox": "Skrzynka odbiorcza zespołu", + "Customers": "Klienci", + "Companies": "Firmy", + "Engage": "Angażować", + "Insights": "Spostrzeżenia", + "Knowledge Base": "Baza wiedzy", + "Settings": "Ustawienia", + "Resolve": "Rozwiązać", + "Send": "Wysłać", + "No company": "Brak firmy", + "No customer": "Brak klienta", + "Not tagged yet": "Nie otagowano jeszcze", + "New note": "Nowa notatka", + "Conversation": "Rozmowa", + "Notes": "Notatki", + "Activity": "Czynność", + "Basic info": "Podstawowa informacja", + "Size": "Rozmiar", + "Other": "Inny", + "Industry": "Przemysł", + "Website": "Stronie internetowej", + "Plan": "Plan", + "About": "O", + "Discard": "Odrzucać", + "Save": "Zapisać", + "Create response template": "Utwórz szablon odpowiedzi", + "Associate": "Współpracownik", + "No tags": "Brak tagów", + "Add customer": "Dodaj klienta", + "No segments": "Bez segmentów", + "Manage Columns": "Zarządzaj kolumnami", + "New customer": "Nowy klient", + "Add company": "Dodaj firmę", + "New company": "Nowa firma", + "Choose which column you see": "Wybierz kolumnę, którą widzisz", + "There is no engage message.": "Brak wiadomości angażującej.", + "Add Knowledge base": "Dodaj bazę wiedzy", + "Add knowledge base.": "Dodaj bazę wiedzy.", + "New Channel": "Nowy kanał", + "Edit": "Edytować", + "Edit basic info": "Edytuj podstawowe informacje", + "Manage integration": "Zarządzaj integracją", + "Manage Integration": "Zarządzaj integracją", + "Choose new brand": "Wybierz nową markę", + "Edit integration": "Edytuj integrację", + "Integration": "Integracja", + "Integration menu": "Menu integracji", + "New Brand": "Nowa marka", + "Add facebook page": "Dodaj stronę na Facebooku", + "Add integrations": "Dodaj integracje", + "Add messenger": "Dodaj komunikatora", + "There is no lead.": "Nie ma ołowiu.", + "New response template": "Nowy szablon odpowiedzi", + "Cancel": "Anuluj", + "Public": "Publiczny", + "Private": "Prywatny", + "New email template": "Nowy szablon wiadomości e-mail", + "Local publisher's email template": "Szablon e-maila lokalnego wydawcy", + "New user": "Nowy użytkownik", + "Load More": "Załaduj więcej", + "Session count": "Liczba sesji", + "Last seen at": "ostatnio widziany w", + "Tags": "Tagi", + "Member": "Członek", + "Remove": "Usunąć", + "No companies added yet!": "Nie dodano jeszcze żadnych firm!", + "Merge": "Łączyć", + "First Name": "Imię", + "Last Name": "Nazwisko", + "First name": "Imię", + "Last name": "Nazwisko", + "Primary Email": "Główny email", + "Phone": "Telefon", + "Is user": "Jest użytkownikiem", + "Save & New": "Zapisz i nowe", + "Save & Close": "Zapisz i zamknij", + "Close": "Blisko", + "Customer properties": "Właściwości klienta", + "Device properties": "Właściwości urządzenia", + "Location": "Lokalizacja", + "Browser": "Przeglądarka", + "Platform": "Platforma", + "IP Address": "Adres IP", + "Hostname": "Nazwa hosta", + "Language": "Język", + "User Agent": "Agent użytkownika", + "Other properties": "Inne właściwości", + "Facebook": "Facebook", + "Facebook profile": "profil na Facebooku", + "Messenger usage": "Wykorzystanie komunikatora", + "Status": "Status", + "Online": "online", + "Offline": "Offline", + "Twitter": "Świergot", + "Twitter quote": "Cytat na Twitterze", + "Retweet": "Przesłać dalej", + "Screen name": "Nick", + "Don't see the result you're looking for? ": "Nie widzisz wyniku, którego szukasz?", + "Merged Info": "Połączone informacje", + "E-mail": "E-mail", + "Integrations": "Integracje", + "integration": "integracja", + "Brands": "Marki", + "Start date": "Data rozpoczęcia", + "End date": "Data końcowa", + "lead": "Pop Ups", + "twitter": "świergot", + "facebook": "Facebook", + "messenger": "posłaniec", + "Title": "Tytuł", + "Brand": "Marka", + "Current Password": "Aktualne hasło", + "Current password": "Aktualne hasło", + "New Password": "nowe hasło", + "Re-type Password to confirm": "Wpisz hasło ponownie, aby potwierdzić", + "Signature": "Podpis", + "simple": "prosty", + "custom": "zwyczaj", + "default": "domyślna", + "default language": "domyślny język", + "primary": "podstawowy", + "Content": "Zawartość", + "Save & draft": "Zapisz Projekt", + "Save & live": "Zapisz i żyj", + "Message:": "Wiadomość:", + "Email template:": "Szablon e-maila:", + "Email subject:": "Temat emaila:", + "From": "Od", + "Message type:": "Typ wiadomości:", + "Sent as:": "Wysłane jako:", + "Brand:": "Marka:", + "Add rule": "Dodaj regułę", + "Last online": "Ostatnio online", + "No Activities": "Brak działań", + "There is no customer.": "Nie ma klienta.", + "Properties": "Nieruchomości", + "Customize ": "Dostosuj", + "Kind": "Uprzejmy", + "All": "Wszystko", + "Auto": "Automatyczny", + "Visitor auto": "Auto gości", + "Manual": "podręcznik", + "Delivered to a user s email inbox": "Dostarczone do skrzynki odbiorczej użytkownika", + "Customize with your own templates": "Dostosuj za pomocą własnych szablonów", + "Delivered inside your app": "Dostarczone w Twojej aplikacji", + "Reach active users": "Docieraj do aktywnych użytkowników", + "Channel": "Kanał", + "Edit columns": "Edytuj kolumny", + "Auto message": "Auto wiadomość", + "Manual message": "Komunikat ręczny", + "Visitor auto message": "Automatyczna wiadomość dla gości", + "Actions": "działania", + "Created date": "Stworz Date", + "Type": "Rodzaj", + "Failed": "Nie powiodło się", + "Sent": "Wysłano", + "Total": "Całkowity", + "Pause": "Pauza", + "Set live": "Ustaw na żywo", + "Sending": "Wysyłanie", + "Delete": "Usunąć", + "Choose segment": "Wybierz segment", + "To:": "Do:", + "Messenger kind:": "Rodzaj posłańca:", + "Title:": "Tytuł", + "Channel:": "Kanał", + "No items": "Żadnych przedmiotów", + "New": "Nowy", + "Options:": "Opcje:", + "Options": "Opcje", + "Type:": "Rodzaj:", + "Add": "Dodaj", + "Validation:": "Uprawomocnienie", + "Date": "Data", + "Number": "Numer", + "Text:": "Tekst:", + "Description:": "Opis:", + "This item is requried": "Ten przedmiot jest wymagany", + "Preview": "Zapowiedź", + "Column name": "Nazwa kolumny", + "Visible": "Widoczny", + "Visibility": "Widoczność", + "Choose person": "Wybierz osobę", + "Conversation Details": "Szczegóły rozmowy", + "Opened": "Otwierany", + "Conversations": "Rozmowy", + "Channels": "Kanały", + "Select all": "Zaznacz wszystko", + "Filter by tag": "Filtruj według tagu", + "Filter by integrations": "Filtruj według integracji", + "Filter by brand": "Filtruj według marki", + "Filter by channel": "Filtruj według kanału", + "Filter by status": "Filtruj według statusu", + "# Channel": "# Kanał", + "Unassigned": "Nieprzypisany", + "Participating": "Uczestniczyć", + "Resolved": "Zdecydowany", + "View more": "Zobacz więcej", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Klient jest offline. Kliknij, aby ukryć i wysyłać wiadomości, a oni otrzymają je następnym razem, gdy będą w trybie online.", + "No templates": "Brak szablonów", + "Save as template": "Zapisać jako szablon", + "Daily First Response Resolve Rate": "Dzienny współczynnik odpowiedzi pierwszej odpowiedzi", + "Daily First Response Resolve Rate by Team Members": "Współczynnik dziennej pierwszej odpowiedzi dla członków zespołu", + "Daily Response Close Resolve Rate by Team Members": "Dzienna odpowiedź Zamknij Współczynnik rozstrzygania przez członków zespołu", + "Volume Report": "Raport objętościowy", + "Feedbacks gathered through various customer engagement channels.": "Informacje zwrotne zebrane za pośrednictwem różnych kanałów zaangażowania klientów.", + "Response Report": "Raport odpowiedzi", + "Total number of response for customer feedbacks, by each staff.": "Całkowita liczba odpowiedzi na opinie klientów przez każdego pracownika.", + "Response Close Report": "Odpowiedź Zamknij raport", + "Average time of each staff solving problems that based on customer feedbacks.": "Średni czas rozwiązywania problemów przez każdego pracownika w oparciu o informacje zwrotne od klientów.", + "First Response Report": "Raport pierwszej odpowiedzi", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Czas odpowiedzi na pojedyncze sprzężenie zwrotne. Statystyki określą średni czas reakcji każdego personelu.", + "Daily Response Close Resolve Rate": "Dzienna odpowiedź Zamknij szybkość rozwiązywania", + "Daily Response Close Resolve rate by Team Members": "Dzienna odpowiedź Zamknij Współczynnik rozstrzygania przez członków zespołu", + "Response Times summary": "Podsumowanie czasów odpowiedzi", + "Response Trend": "Trend odpowiedzi", + "Punch card": "Karta dziurkacza", + "Response by team members": "Odpowiedź członków zespołu", + "Tag": "Etykietka", + "Internal note": "Notatka wewnętrzna", + "Manage templates": "Zarządzaj szablonami", + "Volume summary": "Podsumowanie wolumenu", + "Volume Trend": "Trend objętościowy", + "Summary": "streszczenie", + "Install code": "Zainstaluj kod", + "No copyable code": "Brak kodu do skopiowania", + "Manage Knowledge Base": "Zarządzaj bazą wiedzy", + "Add Category": "Dodaj kategorię", + "Add Article": "Dodaj artykuł", + "Customer engagement. REDEFINED.": "Zaangażowanie klienta. Zredefiniowane.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes to sztuczna inteligencja, która spotyka platformę komunikacyjną typu open source w zakresie sprzedaży, marketingu i wsparcia", + "404. This page is not found.": "404. Nie znaleziono tej strony.", + "erxes is an open-source messaging platform for customer success": "erxes to platforma komunikacyjna typu open source zapewniająca sukces klientom", + "Notification settings": "Ustawienia powiadomień", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Platforma marketingu, sprzedaży i obsługi klienta zaprojektowana, aby pomóc Twojej firmie przyciągnąć bardziej zaangażowanych klientów. Zastąp Hubspot misją i ekosystemem napędzanym przez społeczność.", + "Mark Page Read": "Oznacz stronę jako przeczytaną", + "Mark All Read": "Oznacz wszystko jako przeczytane", + "Coming soon": "Wkrótce", + "Looks like you are all caught up": "Wygląda na to, że wszyscy jesteście złapani", + "AI": "AI", + "See all": "Widzieć wszystko", + "Select a field": "Wybierz pole", + "Add condition": "Dodaj warunek", + "Parent segment conditions": "Warunki segmentu macierzystego", + "Filter by segments": "Filtruj według segmentów", + "New segment": "Nowy segment", + "Manage segments": "Zarządzaj segmentami", + "Users who match": "Użytkownicy, którzy pasują", + "any": "każdy", + "all": "wszystko", + "of the below conditions": "poniższych warunków", + "Sub segment of": "Podsegment", + "Color": "Kolor", + "Filters": "Filtry", + "User(s) will recieve this message": "Użytkownik (użytkownicy) otrzymają tę wiadomość", + "Color code": "Kod koloru", + "Engage Message": "Zaangażuj wiadomość", + "Item counts": "Liczy się pozycja", + "Appearance": "Wygląd", + "Hours, Availability & Other configs": "Godziny, dostępność i inne konfiguracje", + "There is no brand": "Nie ma marki", + "There is no integration in this channel.": "Brak integracji w tym kanale.", + "Template markup": "Znaczniki szablonów", + "Use html template here": "Użyj szablonu HTML tutaj", + "Choose your email template type": "Wybierz typ szablonu wiadomości e-mail", + "Email signatures": "Podpisy e-mail", + "Personal Settings": "Ustawienia osobiste", + "Account Settings": "Ustawienia konta", + "Profile": "Profil", + "Get notification by email": "Otrzymuj powiadomienia przez e-mail", + "Admin": "Administrator", + "Contributor": "Współpracownik", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Serdecznie witamy w erxes i czekamy na długoterminowe zdrowe nawiązywanie współpracy z nami.", + "Hi, any questions?": "Cześć, jakieś pytania?", + "1 hour ago": "1 godzinę temu", + "We need your help!": "Potrzebujemy Twojej pomocy!", + "6 minutes ago": "6 minut temu", + "Write a reply ...": "Napisz odpowiedź ...", + "App": "App", + "From email": "Z emaila", + "User email title": "Tytuł e-maila użytkownika", + "User email content": "Treść e-maila użytkownika", + "Admin emails": "Adresy e-mail administratora", + "Admin email title": "Tytuł e-maila administratora", + "Admin email content": "Administruj treścią e-maila", + "Redirect url": "Przekieruj adres URL", + "On success": "Na sukces", + "Load": "Załaduj", + "Success": "Sukces", + "Thank content": "Dziękuję treści", + "Choose a custom color": "Wybierz kolor niestandardowy", + "Choose a wallpaper": "Wybierz tapetę", + "Choose a logo": "Wybierz logo", + "Visible online to visitor or customer": "Widoczny online dla odwiedzającego lub klienta", + "Online messaging": "Wiadomości online", + "Welcome message": "Wiadomość powitalna", + "Offline messaging": "Wiadomości offline", + "Away message": "Wiadomość o nieobecności", + "Thank you message": "Dziękuję wiadomość", + "Hours & Availability": "Godziny i dostępność", + "Turn online/offline manually": "Przełącz ręcznie online / offline", + "Set to follow your schedule": "Ustaw, aby postępować zgodnie z harmonogramem", + "Other configs": "Inne konfiguracje", + "Notify customer": "Powiadom klienta", + "Online hours": "Godziny online", + "Add another time": "Dodaj kolejny raz", + "Time zone": "Strefa czasowa", + "Messenger": "Posłaniec", + "Knowledge base": "Baza wiedzy", + "Notification": "Powiadomienie", + "Notifications": "Powiadomienia", + "Show unread": "Pokaż nieprzeczytane", + "Unread": "nieprzeczytane", + "Recent": "Niedawny", + "Mark all as read": "Oznacz wszystkie jako przeczytane", + "Email Appearance": "Wygląd e-maila", + "Team Members": "Członkowie drużyny", + "Account default": "Konto domyślne", + "Team members": "Członkowie drużyny", + "Full name": "Pełne imię i nazwisko", + "Leads": "Pop Ups", + "Email Signature": "Podpis E-mail", + "Response Template": "Szablon odpowiedzi", + "Email Template": "Szablon e-maila", + "Response templates": "Szablony odpowiedzi", + "Email templates": "Szablony wiadomości", + "Brand Name": "Nazwa handlowa", + "Current template": "Aktualny szablon", + "Created at": "Utworzono w", + "Manage Fields": "Zarządzaj polami", + "Duplicate": "Duplikować", + "Code": "Kod", + "Profile settings": "Ustawienia profilu", + "Change Password": "Zmień hasło", + "Signatures are only included in response emails.": "Podpisy są uwzględniane tylko w wiadomościach e-mail z odpowiedzią.", + "Signature template": "Szablon podpisu", + "You can use Markdown to format your signature.": "Możesz użyć Markdown, aby sformatować swój podpis.", + "Password": "Hasło", + "Password confirmation": "Potwierdzenie hasła", + "Choose the channels": "Wybierz kanały", + "Simple": "Prosty", + "Custom": "Zwyczaj", + "Create a new Company": "Utwórz nową firmę", + "New Company": "Nowa firma", + "Edit name": "Zmień imię", + "Customer": "Klient", + "Add tag": "Dodaj tag", + "Company": "Firma", + "New message ": "Nowa wiadomość", + "There aren’t any activities at the moment.": "W tej chwili nie ma żadnych działań.", + "This item is required": "Ten przedmiot jest wymagany", + "Manage fields": "Zarządzaj polami", + "Add integrations ": "Dodaj integracje", + "Form": "Formularz", + "Create a new Customer": "Utwórz nowego klienta", + "New Customer": "Nowy klient", + "Segments": "Segmenty", + "Add a condition": "Dodaj warunek", + "Open": "otwarty", + "Choose channel": "Wybierz kanał", + "Who is this message for?": "Dla kogo jest ta wiadomość?", + "Compose your message": "Skomponuj swoją wiadomość", + "No items added": "Brak dodanych elementów", + "Submit": "Zatwierdź", + "Next": "Kolejny", + "Save & Draft": "Zapisz Projekt", + "Save & Live": "Zapisz i żyj", + "From:": "Od:", + "Pages": "Strony", + "Links": "Spinki do mankietów", + "Enter your password to Confirm": "Wprowadź hasło, aby potwierdzić", + "Number of visits": "Liczba odwiedzin", + "Written By": "Scenariusz", + "Icon": "Ikona", + "draft": "wersja robocza", + "Twitter Username": "Nazwa użytkownika na Twitterze", + "LinkedIn": "LinkedIn", + "Youtube": "youtube", + "Github": "Github", + "Edit response": "Edytuj odpowiedź", + "To send your message press Enter and Shift + Enter to add a new line": "Aby wysłać wiadomość, naciśnij Enter i Shift + Enter, aby dodać nowy wiersz", + "To send your note press Enter and Shift + Enter to add a new line": "Aby wysłać notatkę, naciśnij Enter i Shift + Enter, aby dodać nowy wiersz", + "Please enter an unit price. It should be a number": "Proszę podać cenę jednostkową. To powinna być liczba", + "Type to search": "Wpisz aby wyszukać", + "Members": "Członkowie", + "Choose integrations": "Wybierz integracje", + "Choose brands": "Wybierz marki", + "Select a date": "Wybierz datę", + "Click to select a date": "Kliknij, aby wybrać datę", + "Choose users": "Wybierz użytkowników", + "Select Brand": "Wybierz markę", + "Write here Welcome message.": "Napisz tutaj Wiadomość powitalna.", + "Write here Away message.": "Napisz tutaj Wiadomość o nieobecności.", + "Write here Thank you message.": "Napisz tutaj Dziękuję wiadomość.", + "Select app": "Wybierz aplikację", + "Enter new password": "Wprowadź nowe hasło", + "Choose channels": "Wybierz kanały", + "Select": "Wybierz", + "select": "Wybierz", + "Choose members": "Wybierz członków", + "Search": "Szukaj", + "your@email.com": "twoja@email.com", + "password": "hasło", + "registered@email.com": "zarejestrowany@email.com", + "new password": "nowe hasło", + "Start typing to leave a note": "Zacznij pisać, aby zostawić notatkę", + "Re-type password": "Wpisz ponownie hasło", + "Name:": "Nazwa:", + "Size:": "Rozmiar:", + "Website:": "Stronie internetowej:", + "Industry:": "Przemysł:", + "Plan:": "Plan:", + "There arent't any groups and fields": "Nie ma żadnych grup i pól", + "Please add property Group first": "Najpierw dodaj grupę właściwości", + "Add group": "Dodaj grupę", + "Add Property": "Dodaj właściwość", + "Add Group & Field ": "Dodaj grupę i pole", + "Add Group": "Dodaj grupę", + "Edit Property": "Edytuj właściwość", + "Group:": "Grupa:", + "There arent't any fields in this group": "W tej grupie nie ma żadnych pól", + "Customer Properties": "Właściwości klienta", + "Company Properties": "Właściwości firmy", + "Add an option": "Dodaj opcję", + "Copy to clipboard": "Skopiuj do schowka", + "Go to home page": "Wróć do strony głównej", + "Assign to": "Przypisać do", + "Remove assignee": "Usuń cesjonariusza", + "Account settings": "Ustawienia konta", + "General Settings": "Ustawienia główne", + "Integration Settings": "Ustawienia integracji", + "Personal settings": "Ustawienia osobiste", + "Add category": "Dodaj kategorię", + "Filter": "Filtr", + "Live": "Relacja na żywo", + "Draft": "Wersja robocza", + "Paused": "Wstrzymany", + "Your messages": "Twoje wiadomości", + "Delivered inside your app Reach active users": "Dostarczone w Twojej aplikacji Dotrzyj do aktywnych użytkowników", + "Delivered to a user s email inbox Customize with your own templates": "Dostarczone do skrzynki odbiorczej użytkownika Dostosuj za pomocą własnych szablonów", + "email": "e-mail", + "Create segment": "Utwórz segment", + "customers": "klienci", + "has any value": "ma dowolną wartość", + "is unknown": "jest nieznany", + "is not": "nie jest", + "is": "jest", + "Less than": "Mniej niż", + "City": "Miasto", + "Greater than": "Lepszy niż", + "Country": "Kraj", + "Current page url": "Aktualny adres strony", + "Browser language": "Język przeglądarki", + "conversation": "rozmowa", + "engageMessage": "engageMessage", + "customer": "klient", + "company": "firma", + "starts with": "zaczynać z", + "ends with": "kończy się na", + "contains": "zawiera", + "does not contain": "nie zawiera", + "Basic Info": "Podstawowa informacja", + "Add Phone": "Dodaj telefon", + "Add Email": "Dodaj adres e-mail", + "Choose your tags": "Wybierz swoje tagi", + "Manage tags": "Zarządzaj tagami", + "Edit Profile": "Edytuj profil", + "Sign out": "Wyloguj się", + "Last Updated By": "Ostatnia aktualizacja przez", + "There is no channel": "Nie ma kanału", + "Facebook page": "Strona na Facebooku", + "plan": "plan", + "Edit segment": "Edytuj segment", + "New message": "Nowa wiadomość", + "Message": "Wiadomość", + "Merge Customers": "Scal klientów", + "Assign": "Przydzielać", + "There is no message.": "Brak wiadomości.", + "per page": "na stronę", + "[view]": "[widok]", + "Go to twitter": "Idź do Twittera", + "Build": "Budować", + "`s integration": "integracja", + "Created": "Utworzony", + "Email templates:": "Szablony wiadomości:", + "Content:": "Zawartość:", + "Response Templates": "Szablony odpowiedzi", + "Merge Companies": "Połącz firmy", + "Response template": "Szablon odpowiedzi", + "Attach file": "Załącz plik", + "Upload": "Przekazać plik", + "ShoutBox": "ShoutBox", + "Popup": "Popup", + "Embedded": "Osadzone", + "Choose a flow type": "Wybierz typ przepływu", + "CallOut": "Zawołać", + "Callout title": "Tytuł objaśnienia", + "Callout body": "Objaśnienie ciała", + "Callout button text": "Tekst przycisku objaśnienia", + "Skip callOut": "Pomiń połączenie", + "Form button text": "Tekst przycisku formularza", + "Theme color": "Kolor motywu", + "Featured image": "Przedstawiony obraz", + "Full Preview": "Pełny podgląd", + "Try some of these colors:": "Wypróbuj niektóre z tych kolorów:", + "Included fields": "Zawarte pola", + "Deal": "Rurociąg sprzedaży", + "Deals": "Rurociągi sprzedażowe", + "New Product & Service": "Nowy produkt i usługa", + "No product or services": "Brak produktu lub usługi", + "UOM": "UOM", + "Quantity": "Ilość", + "Unit price": "Cena jednostkowa", + "Discount": "Zniżka", + "Tax": "Podatek", + "Ticket": "Bilet", + "Task": "Zadanie", + "Select company": "Wybierz firmę", + "Select customer": "Wybierz klienta", + "Note": "Uwaga", + "Assigned to": "Przypisane do", + "Move": "Ruszaj się", + "Move deal": "Przenieś ofertę", + "Copy": "Kopiuj", + "Close date": "Data zamknięcia", + "Choose product & service": "Wybierz produkt i usługę", + "Select product & service": "Wybierz produkt i usługę", + "Please, select a close date": "Wybierz datę zamknięcia", + "Create a new Product": "Utwórz nowy produkt", + "New Product": "Nowy produkt", + "SKU": "SKU", + "Choose a company": "Wybierz firmę", + "Choose a customer": "Wybierz klienta", + "Choose a board": "Wybierz tablicę", + "Choose a pipeline": "Wybierz rurociąg", + "Manage Board & Pipeline": "Zarządzaj tablicą i rurociągiem", + "Choose a stage": "Wybierz etap", + "Deal Settings": "Ustawienia potoku sprzedaży", + "Ticket Settings": "Ustawienia biletów", + "Task Settings": "Ustawienia zadania", + "Boards & Pipelines": "Deski i rurociągi", + "Product & Service": "Produkt i usługa", + "There is no pipeline in this board.": "Na tym pokładzie nie ma rurociągu.", + "There is no board": "Nie ma zarządu", + "New Board": "Nowa tablica", + "Add pipeline": "Dodaj rurociąg", + "Create one": "Stworzyć jeden", + "Edit pipeline": "Edytuj potok", + "Add stage": "Dodaj etap", + "Board": "Tablica", + "Pipeline": "Rurociąg", + "Stage": "Etap", + "Stage name": "Pseudonim sceniczny", + "Add a deal": "Dodaj ofertę", + "Add a task": "Dodaj zadanie", + "Add a ticket": "Dodaj bilet", + "Priority": "Priorytet", + "Critical": "Krytyczny", + "High": "Wysoki", + "Normal": "Normalna", + "Low": "Niska", + "Attachments": "Załączniki", + "Source": "Źródło", + "Select a source": "Wybierz źródło", + "Upload an attachment": "Prześlij załącznik", + "Description": "Opis", + "Select a priority": "Wybierz priorytet", + "Edit deal": "Edytuj ofertę", + "Edit task": "Edytuj zadanie", + "Edit ticket": "Edytuj bilet", + "Add Product / Service": "Dodaj produkt / usługę", + "Reply tweet": "Odpowiedz tweet", + "Tweet": "Ćwierkać", + "Details": "Detale", + "View Profile": "Zobacz profil", + "Empty Notes": "Puste notatki", + "Mini-resume": "Mini-wznowienie", + "You cannot update this property": "Nie możesz zaktualizować tej właściwości", + "Desktop": "Pulpit", + "Mobile": "mobilny", + "Tablet": "Tablet", + "Amount": "Ilość", + "Owner": "Właściciel", + "Department": "Departament", + "Lead Status": "Status Pop Ups", + "Lifecycle State": "Stan cyklu życia", + "Has Authority": "Ma autorytet", + "Do not disturb": "Nie przeszkadzać", + "Parent Company": "Przedsiębiorstwo macierzyste", + "Business Type": "Rodzaj działalności", + "Employees count": "Pracownicy się liczą", + "Yes": "tak", + "No": "Nie", + "Copied": "Skopiowano", + "General": "Generał", + "Currency": "Waluta", + "Unit of measurement": "Jednostka miary", + "Create another board": "Utwórz kolejną tablicę", + "No pipeline": "Brak rurociągu", + "No stage": "Bez sceny", + "No deal": "Brak zgody", + "Background": "tło", + "Choose": "Wybierać", + "Successfully saved.": "Pomyślnie zapisano.", + "Successfully moved.": "Pomyślnie przeniesiony.", + "Successfully selected.": "Pomyślnie wybrano.", + "Body description here": "Opis ciała tutaj", + "Thank you.": "Dziękuję Ci.", + "Choose a brand": "Wybierz markę", + "Write a title": "Napisz tytuł", + "Contact": "Kontakt", + "Created by": "Stworzone przez", + "Manage": "Zarządzać", + "Dropdown": "Upuścić", + "Slide-in Left": "Wsuń w lewo", + "Slide-in Right": "Wsuń w prawo", + "Enter name": "Wprowadź imię", + "Delivered": "Dostarczone", + "Clicked": "Kliknięty", + "Complaint": "Skarga", + "Bounce": "Odbić się", + "Rendering Failure": "Błąd renderowania", + "Rejected": "Odrzucony", + "Action": "Akcja", + "Please select one to merge": "Wybierz jeden do scalenia", + "Filter by date": "Filtruj według daty", + "Total conversations": "Łączna liczba rozmów", + "Filter by form": "Filtruj według formularza", + "Supporters": "Kibice", + "Import histories": "Importuj historie", + "Imported Date": "Data importu", + "Imported User": "Importowany użytkownik", + "Export customers": "Klienci eksportowi", + "Import customers": "Importuj klientów", + "Export companies": "Firmy eksportowe", + "Import companies": "Importuj firmy", + "All customers imported successfully": "Wszyscy klienci zostali pomyślnie zaimportowani", + "There aren't any imports": "Nie ma żadnego importu", + "Successfully Removed all customers": "Pomyślnie usunięto wszystkich klientów", + "You can only import max 600 at a time": "Jednorazowo możesz zaimportować maksymalnie 600", + "Invalid import type": "Nieprawidłowy typ importu", + "Last updated": "Ostatnio zaktualizowany", + "Filter by lead status": "Filtruj według statusu Pop Ups", + "No lead status chosen": "Nie wybrano statusu potencjalnego klienta", + "Schedule:": "Harmonogram:", + "Every Day": "Codzienny", + "Every Month": "Każdego miesiąca", + "Every Year": "Każdego roku", + "Every Monday": "Każdy poniedziałek", + "Every Tuesday": "Każdego wtorku", + "Every Wednesday": "W każdą środę", + "Every Thursday": "Każdego czwartku", + "Every Friday": "Co piątek", + "Every Saturday": "W każdą sobotę", + "Every Sunday": "W każdą niedzielę", + "Choose a schedule day": "Wybierz harmonogram dnia", + "Choose a schedule time": "Wybierz harmonogram", + "Won": "Wygrała", + "Lost": "Stracony", + "App store": "Sklep z aplikacjami", + "App store menu": "Menu App Store", + "In Progress": "W trakcie", + "It`s size exceeds the limit 10mb": "Jego rozmiar przekracza limit 10mb", + "Congrats! Your email sent successfully!": "Gratulacje! Twój e-mail został wysłany pomyślnie!", + "Works with messenger": "Działa z komunikatorem", + "Knowledge base topic": "Temat bazy wiedzy", + "Package version": "Wersja pakietu", + "Branch name": "Nazwa filii", + "Abbreviated": "W skrócie", + "User": "Użytkownik", + "Recent conversations": "Najnowsze rozmowy", + "Start new conversation": "Rozpocznij nową rozmowę", + "Talk with support staff": "Porozmawiaj z pracownikami pomocy technicznej", + "Send a message": "Wysłać wiadomość", + "Volume Report By Customer": "Raport objętości według klienta", + "Export Report": "Raport eksportowy", + "We`re ready to help you.": "Jesteśmy gotowi Ci pomóc.", + "Please choose a product": "Proszę wybrać produkt", + "Please choose a currency": "Proszę wybrać walutę", + "No board": "Bez wyżywienia", + "Empty": "Pusty", + "There is no account.": "Nie ma konta", + "There is no tag.": "Nie ma tagu.", + "Skip for now": "Pomiń to na razie", + "Go to Inbox": "Idź do skrzynki odbiorczej", + "Messenger Language": "Język komunikatora", + "Messenger name": "Nazwa posłańca", + "Skip": "Pominąć", + "Finish": "koniec", + "Show": "Pokazać", + "Hide": "Ukryć", + "Previous": "Poprzedni", + "Users": "Użytkownicy", + "users": "użytkownicy", + "brands": "marki", + "messengers": "posłańcy", + "channels": "kanały", + "Emails": "E-maile", + "Messengers": "Posłańcy", + "You already have": "Już masz", + "There is another": "Tam jest inny", + "Let's create your brand": "Stwórzmy twoją markę", + "Invite users": "Zaproś użytkowników", + "Let's grow your team": "Rozwijajmy swój zespół", + "Invite": "Zapraszam", + "Let's start": "Zaczynajmy", + "Start messaging now!": "Zacznij komunikator już teraz!", + "Create channel": "Utwórz kanał", + "Get started on your channel": "Rozpocznij na swoim kanale", + "Create your first messenger": "Stwórz pierwszego komunikatora", + "Welcome": "Witamy", + "Nothing inserted": "Nic nie włożono", + "Empty emails": "Puste e-maile", + "Initial setup": "Początkowe ustawienia", + "Add another": "Dodaj inny", + "Don't show again": "Nie pokazuj więcej", + "No other pipeline": "Żadnego innego rurociągu", + "No other boards": "Brak innych tablic", + "I'm ready to get started": "Jestem gotowy, aby zacząć", + "Welcome paragraph": "Cieszymy się, że cię mamy. Poświęć chwilę na przygotowanie się", + "Get notified and notify others to keep everything up to date": "Otrzymuj powiadomienia i powiadamiaj innych, aby aktualizowali wszystko", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Jeśli Twój zespół nie otrzymał wiadomości wysłanych przez Ciebie na stronie, możemy wysłać mu wiadomość e-mail", + "Send an email and notify members that they've been invited!": "Wyślij e-mail i powiadom członków, że zostali zaproszeni!", + "January": "styczeń", + "February": "luty", + "March": "Marsz", + "April": "kwiecień", + "May": "Może", + "June": "czerwiec", + "July": "lipiec", + "August": "sierpień", + "September": "wrzesień", + "October": "październik", + "November": "listopad", + "December": "grudzień", + "Today": "Dzisiaj", + "Sales": "Obroty", + "Monthly view": "Widok miesięczny", + "Filter by": "Filtruj według", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Tworząc markę i dodając kanały, możesz lepiej analizować potrzeby klientów i pomagać w rozwiązywaniu ich problemów", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Rozwijaj i dodawaj użytkowników do swojego zespołu! Przypisuj, wyznaczaj i pozwól im robić to, co robią najlepiej", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Bądź na bieżąco z opiniami każdego klienta i twórz bardziej znaczące rozmowy", + "Create brand channels that are specifically categorized by type and activity": "Twórz kanały firmowe, które są podzielone na kategorie według rodzaju i aktywności", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Dodaj Lead tutaj i zobacz go w swoim Widżecie Messenger! Aby zobaczyć Leady w skrzynce odbiorczej, upewnij się, że zostały dodane na swoim kanale.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Możesz wybierać spośród wielu naszych integracji komunikatorów i powiększać swoją bazę wiedzy. Baza wiedzy pojawi się na karcie widgetu komunikatora. Aby to zrobić, utwórz bazę wiedzy i dodaj ją.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "Podpis e-mail to okazja do wymiany informacji, które pomagają budować uznanie i zaufanie.", + "Let's start taking care of your customers": "Zacznijmy dbać o swoich klientów", + "Add in your first company!": "Dodaj swoją pierwszą firmę!", + "Choose from our many integrations and add to your channel": "Wybierz jedną z naszych wielu integracji i dodaj do swojego kanału", + "Let's get you messaging away!": "Dajmy ci wiadomość!", + "Whoops! No messages here but you can always start": "Ups! Brak wiadomości tutaj, ale zawsze możesz zacząć", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Artykuły mogą dotyczyć dowolnej liczby problemów napotykanych przez klientów. Typy artykułów merytorycznych mogą obejmować rozwiązania typowych problemów, dokumentację produktu lub funkcji, często zadawane pytania i wiele więcej.", + "Oops! No data here": "Ups! Brak danych tutaj", + "Start adding integrations now!": "Zacznij dodawać integracje już teraz!", + "Add an integration in this Brand": "Dodaj integrację z tą marką", + "Oh dear! You have no imports": "O jej! Nie masz importu", + "A strong customer engagement can help to further brand growth and loyalty": "Silne zaangażowanie klientów może pomóc w dalszym rozwoju marki i lojalności", + "Get started on your pipeline": "Rozpocznij w przygotowaniu", + "Connect to Facebook messages right from your Team Inbox": "Połącz się z wiadomościami na Facebooku bezpośrednio ze skrzynki odbiorczej zespołu", + "Tweet back to your DMs right from your Team Inbox": "Tweetuj z powrotem do swoich DM bezpośrednio ze skrzynki odbiorczej zespołu", + "Connect straight to your Gmail and get those emails going": "Połącz się bezpośrednio z Gmailem i uruchom te e-maile", + "Find your lead forms right here in your Widget": "Znajdź swoje formularze potencjalnych klientów tutaj w Widżecie", + "Get access to your Knowledge Base right in your Widget": "Uzyskaj dostęp do swojej bazy wiedzy bezpośrednio w widżecie", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Wkrótce będziesz mógł podłączyć Viber bezpośrednio do skrzynki odbiorczej zespołu", + "Get a hold of your Whatsapp messages through your Team Inbox": "Zdobądź wiadomości Whatsapp za pośrednictwem skrzynki odbiorczej zespołu", + "Connect with Wechat and start messaging right from your Team Inbox": "Połącz się z Wechat i zacznij wysyłać wiadomości bezpośrednio ze skrzynki odbiorczej zespołu", + "Find feedback that has been gathered from various customer engagement channels.": "Znajdź opinie zebrane z różnych kanałów zaangażowania klientów.", + "A report on the total number of customer feedback responses given by team members.": "Raport o całkowitej liczbie odpowiedzi zwrotnych od klientów udzielonych przez członków zespołu.", + "The average time a team member solved a problem based on customer feedback.": "Średni czas, w którym członek zespołu rozwiązał problem na podstawie opinii klientów.", + "You can find stats that defines the average response time by each team member.": "Możesz znaleźć statystyki, które określają średni czas reakcji każdego członka zespołu.", + "Oh boy, looks like you need to get a head start on your deals": "O rany, wygląda na to, że musisz mieć przewagę w swoich ofertach", + "Open segments and starting add details": "Otwórz segmenty i rozpocznij dodawanie szczegółów", + "Now easier to find contacts according to your brand": "Teraz łatwiej znaleźć kontakty według marki", + "Search and filter customers by form": "Wyszukaj i filtruj klientów według formularza", + "There is always a lead!": "Zawsze jest trop!", + "Calendar": "Kalendarz", + "Columns": "Kolumny", + "columns": "kolumny", + "Linked Accounts": "Połączone konta", + "Select account": "Wybierz konto", + "Select account ...": "Wybierz konto ...", + "Add Account": "Dodaj konto", + "Remove Account": "Usuń konto", + "You can upload only image file": "Możesz przesłać tylko plik obrazu .png lub .jpg", + "Permissions": "Uprawnienia", + "New permission": "Nowe pozwolenie", + "New group": "Nowa grupa", + "Users groups": "Grupy użytkowników", + "Choose the module": "Wybierz moduł", + "Choose the actions": "Wybierz działania", + "Choose the users": "Wybierz użytkowników", + "Choose the groups": "Wybierz grupy", + "Choose groups": "Wybierz grupy", + "Allow": "Dopuszczać", + "Invitation Status": "Status zaproszenia", + "Permission": "Pozwolenie", + "data successfully imported": "dane pomyślnie zaimportowane", + "Show result": "Pokaż wynik", + "Importing": "Importowanie", + "data": "dane", + "errors acquired": "wykryte błędy", + "There are": "Tam są", + "Continue": "Kontyntynuj", + "Create brand": "Utwórz markę", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Utwórz swój pierwszy czat na żywo i wiadomości w aplikacji. Bądź na bieżąco z informacjami zwrotnymi od każdego klienta, aby uzyskać bardziej znaczące interakcje.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Kanał daje pełny obraz wszystkich marek i ich aplikacji w jednym miejscu. Możesz zobaczyć wszystkie nadchodzące wiadomości w skrzynce odbiorczej zespołu.", + "Hooray and Congratulations! You've completed the initial setup!": "Brawo i gratulacje! Zakończyłeś wstępną konfigurację!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Wklej poniższy kod przed otaguj na każdej stronie, na której chcesz wyświetlać czat erxes.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Wklej poniższy kod przed tagiem body na każdej stronie, na której mają pojawiać się erxy", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Jeśli Twój typ przepływu jest osadzony, wklej dodatkowo poniższy kod, aby chcesz, aby pojawiały się błędy erx", + "If your flow type is popup paste the code below additionally in your button": "Jeśli Twój typ przepływu jest wyskakujący, wklej dodatkowo poniższy kod do przycisku", + "Choose messengers": "Wybierz komunikatory", + "erxes allows you to create multiple messengers": "erxes umożliwia tworzenie wielu komunikatorów", + "erxes allows you to create multiple brands": "erxes pozwala tworzyć wiele marek", + "erxes allows you to create multiple channels": "erxes pozwala tworzyć wiele kanałów", + "Contacts": "Łączność", + "Create group": "Stworzyć grupę", + "Visitors": "goście", + "Due in the next day": "Termin następnego dnia", + "Due in the next week": "Termin na następny tydzień", + "Due in the next month": "Termin na następny miesiąc", + "Has no close date": "Nie ma daty zamknięcia", + "Over due": "Przekroczony termin", + "Clear Filter": "Czysty filtr", + "Remove this filter": "Usuń ten filtr", + "Filtering is on": "Filtrowanie jest włączone", + "Choose products": "Wybierz produkty", + "Choose companies": "Wybierz firmy", + "Choose customers": "Wybierz klientów", + "Choose team members": "Wybierz członków zespołu", + "erxes Inc": "erxes Inc", + "Get": "Otrzymać", + "Download ios app for free on the App Store": "Pobierz aplikację ios za darmo z App Store.", + "Download android app for free on the Google play": "Pobierz aplikację na Androida za darmo w Google Play.", + "Please upgrade your browser to use erxes!": "Zaktualizuj przeglądarkę, aby korzystać z erxes!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Niestety działasz w przeglądarce, która może nie być w pełni kompatybilna z erxes.", + "Please use recommended version": "Użyj zalecanej wersji", + "Messenger data": "Dane z komunikatora", + "Customer field data": "Dane pola klienta", + "Others": "Inne", + "Select brand": "Wybierz markę", + "There is no permissions in this group": "Brak uprawnień w tej grupie.", + "There is no group": "Nie ma grupy.", + "User groups": "Grupy użytkowników", + "What action can do": "Co można zrobić", + "Who can": "Kto może", + "Grant permission": "Dać pozwolenie", + "Check if permission is allowed": "Sprawdź, czy pozwolenie jest dozwolone", + "Then": "Następnie", + "Or": "Lub", + "Auto message description": "Wysyłaj ukierunkowane wiadomości e-mail i czat do zalogowanych użytkowników na podstawie ich marki / tagu / segmentu. Możesz wcześniej ustawić czas wysłania wiadomości e-mail lub czatu. Projekt czatu można wyciąć, odznakę i pełną wiadomość. Może to być tekst lub wideo.", + "Manual message description": "Wysyłaj ukierunkowane wiadomości e-mail i czat do zalogowanych użytkowników na podstawie ich marki / tagu / segmentu. E-mail lub czat zostanie wysłany natychmiast po kliknięciu przycisku Zapisz. Projekt czatu można wyciąć, odznakę i pełną wiadomość. Może to być tekst lub wideo.", + "Visitor auto message description": "Wysyłaj ukierunkowane czaty do wylogowanych użytkowników na stronie internetowej na podstawie ich strony odwiedzającej, aktywności, kraju zamieszkania i miasta. Projekt czatu można wyciąć, odznakę i pełną wiadomość. Może to być tekst lub wideo.", + "Required field": "Pole wymagane!", + "Invalid email format! Please enter a valid email address": "Niewłaściwy format wiadomości email! Proszę wpisać aktualny adres e-mail.", + "Invalid link": "Niepoprawny link!", + "Maximum length is": "Maksymalna długość to", + "characters": "postacie!", + "Invalid number format! Please enter a valid number": "Niepoprawny format liczbowy! Proszę wprowadzić poprawny numer.", + "Insert email template to content": "Wstaw szablon wiadomości e-mail do treści", + "Logs": "Kłody", + "There are no logs recorded": "Nie ma zapisanych dzienników", + "Module": "Moduł", + "Unchanged fields": "Niezmienione pola", + "Changed fields": "Zmienione pola", + "Create": "Stwórz", + "Update": "Aktualizacja", + "Changes": "Zmiany", + "Choose start date": "Wybierz datę rozpoczęcia", + "Choose end date": "Wybierz datę zakończenia", + "Permission denied": "Odmowa zezwolenia", + "Old data": "Stare dane", + "New data": "Nowe dane", + "Archive": "Archiwum", + "NetworkError": "Próba przywrócenia połączenia. Zmiany wprowadzone teraz mogą nie zostać zapisane.", + "Email add account description question": "Czy łączysz wspólne konto e-mail?", + "Email add account description": "Podłączając wiadomość e-mail do skrzynki odbiorczej rozmów, łączysz ją jako konto udostępnione. Wiadomości wysłane na wspólne konta mogą być przeglądane przez wszystkich, którzy mają dostęp do skrzynki odbiorczej Twojego zespołu.", + "No connected email": "Brak połączonego adresu e-mail", + "Your email will be sent with Erxes email template": "Twój e-mail zostanie wysłany z szablonem wiadomości Erxes" +} diff --git a/ui/src/locales/pt-br.json b/ui/src/locales/pt-br.json index 7f4c2cb0a96..e18fc3e1049 100644 --- a/ui/src/locales/pt-br.json +++ b/ui/src/locales/pt-br.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "Você tem certeza?", "Yes, I am": "Sim, eu tenho", "No, Cancel": "Não, cancelar", diff --git a/ui/src/locales/pt_BR.json b/ui/src/locales/pt_BR.json new file mode 100644 index 00000000000..7fad0c2deab --- /dev/null +++ b/ui/src/locales/pt_BR.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Você tem certeza?", + "Yes, I am": "Sim, eu tenho", + "No, Cancel": "Não, cancelar", + "Filter by tags": "Filter by tags", + "There is no data": "Não há dados", + "There is no data.": "Não há dados.", + "Load more": "Carregar mais", + "There aren't any activities at the moment.": "Não há atividades no momento.", + "Reset your password": "Redefinir sua senha", + "Email me the instruction": "Me envie um e-mail com as instruções", + "Sign in": "Inscreva-se", + "Change password": "Mudar a senha", + "Set your new password": "Defina sua nova senha", + "Forgot password?": "Esqueceu sua senha?", + "Photo": "Foto", + "Name": "Nome", + "Views": "Visualizações", + "Conversion": "Conversion", + "Go to import": "Go to import", + "Conversion rate": "Taxa de conversão", + "Contacts gathered": "Contatos reunidos", + "Create lead": "Criar lead", + "Form title": "Título do formulário", + "Related": "Related", + "Form description": "Descrição do formulário", + "Position": "Cargo", + "Username": "Usuário", + "Email": "E-mail", + "sec": "sec", + "Twitter username": "Usuário do Twitter", + "Inbox": "Caixa de entrada", + "Workflow": "Workflow", + "Watch": "Watch", + "Watching": "Watching", + "Team Inbox": "Team Inbox", + "Customers": "Clientes", + "Companies": "Empresas", + "Engage": "Engajar", + "Insights": "Intuições", + "Knowledge Base": "Base de Conhecimento", + "Settings": "Configurações", + "Resolve": "Resolver", + "Send": "Enviar", + "No company": "Nenhuma empresa", + "No customer": "Nenhum cliente", + "Not tagged yet": "Ainda não foi marcado", + "New note": "Nova nota", + "Conversation": "Conversa", + "Notes": "Notas", + "Activity": "Atividade", + "Basic info": "Informações básicas", + "Size": "Tamanho", + "Other": "Outro", + "Industry": "Indústria", + "Website": "Site", + "Plan": "Plano", + "About": "Sobre", + "Discard": "Discartar", + "Save": "Salvar", + "Create response template": "Criar padrão de resposta", + "Associate": "Associado", + "No tags": "Sem marcações", + "Add customer": "Adicionar cliente", + "No segments": "Sem segmentos", + "Manage Columns": "Gerenciar colunas", + "New customer": "Novo cliente", + "Add company": "Adicionar empresa", + "New company": "Nova empresa", + "Choose which column you see": "Escolha qual coluna você vê", + "There is no engage message.": "Não há mensagens de engajamento.", + "Add Knowledge base": "Adicionar base de conhecimento", + "Add knowledge base.": "Adicionar base de conhecimento.", + "New Channel": "Novo canal", + "Edit": "Editar", + "Edit basic info": "Editar informações básicas", + "Manage integration": "Gerenciar integração", + "Manage Integration": "Gerenciar Integração", + "Choose new brand": "Escolha uma nova marca", + "Edit integration": "Editar integração", + "Integration": "Integração", + "Integration menu": "Menu de integração", + "New Brand": "Nova marca", + "Add facebook page": "Adicionar página do Facebook", + "Add integrations": "Adicionar integrações", + "Add messenger": "Adicionar mensageiro", + "There is no lead.": "Não há leads.", + "New response template": "Novo modelo de resposta", + "Cancel": "Cancelar", + "Public": "Public", + "Private": "Private", + "New email template": "Novo modelo de e-mail", + "Local publisher's email template": "Modelo de e-mail dos publicadores locais", + "New user": "Novo usuário", + "Load More": "Carregar mais", + "Session count": "Contador de sessão", + "Last seen at": "Visto por último em", + "Tags": "Marcações", + "Member": "Membro", + "Remove": "Remover", + "No companies added yet!": "Não há empresas cadastradas ainda!", + "Merge": "Mesclar", + "First Name": "Nome", + "Last Name": "Sobrenome", + "First name": "Nome", + "Last name": "Sobrenome", + "Primary Email": "E-mail primário", + "Phone": "Telefone", + "Is user": "É usuário", + "Save & New": "Salvar & Novo", + "Save & Close": "Salvar & Fechar", + "Close": "Fechar", + "Customer properties": "Propriedades do cliente", + "Device properties": "Propriedades do dispositivo", + "Location": "Localização", + "Browser": "Navegador", + "Platform": "Plataforma", + "IP Address": "Endereço de IP", + "Hostname": "Hostname", + "Language": "Linguagem", + "User Agent": "User Agent", + "Other properties": "Outras propriedades", + "Facebook": "Facebook", + "Facebook profile": "Perfil do Facebook", + "Messenger usage": "Uso do mensageiro", + "Status": "Status", + "Online": "Online", + "Offline": "Offline", + "Twitter": "Twitter", + "Twitter quote": "Citação do Twitter", + "Retweet": "Retweet", + "Screen name": "Nome da tela", + "Don't see the result you're looking for? ": "Não encontrou os resultados que você estava procurando? ", + "Merged Info": "Informações mescladas", + "E-mail": "E-mail", + "Integrations": "Integrações", + "integration": "integração", + "Brands": "Marcas", + "Start date": "Data de início", + "End date": "Data de fim", + "lead": "Lead", + "twitter": "twitter", + "facebook": "facebook", + "messenger": "messenger", + "Title": "Título", + "Brand": "Marca", + "Current Password": "Senha Atual", + "Current password": "Senha atual", + "New Password": "Nova Senha", + "Re-type Password to confirm": "Digite novamente a senha para confirmar", + "Signature": "Assinatura", + "simple": "simples", + "custom": "customizado", + "default": "padrão", + "default language": "default language", + "primary": "primário", + "Content": "Conteúdo", + "Save & draft": "Salvar & rascunho", + "Save & live": "Salvar & continuar", + "Message:": "Mensagem:", + "Email template:": "Modelo de e-mail:", + "Email subject:": "Assunto do e-mail:", + "From": "De", + "Message type:": "Tipo de mensagem:", + "Sent as:": "Enviado como:", + "Brand:": "Marca:", + "Add rule": "Adicionar regra", + "Last online": "Última vez online", + "No Activities": "Sem atividades", + "There is no customer.": "Não há cliente.", + "Properties": "Propriedades", + "Customize ": "Customizar ", + "Kind": "Espécie", + "All": "Todas", + "Auto": "Automático", + "Visitor auto": "Visitante automático", + "Manual": "Manual", + "Delivered to a user s email inbox": "Entregue para o e-mail do usuário", + "Customize with your own templates": "Pesonalize com seus próprios modelos", + "Delivered inside your app": "Entregue dentro do seu aplicativo", + "Reach active users": "Alcançar usuários ativos", + "Channel": "Canal", + "Edit columns": "Editar colunas", + "Auto message": "Mensagem automática", + "Manual message": "Mensagem manual", + "Visitor auto message": "Mensagem de visitante automática", + "Actions": "Ações", + "Created date": "Data de criação", + "Type": "Tipo", + "Failed": "Falha", + "Sent": "Enviado", + "Total": "Total", + "Pause": "Pausar", + "Set live": "Continuar", + "Sending": "Enviando", + "Delete": "Deletar", + "Choose segment": "Selecione o segmento", + "To:": "Para:", + "Messenger kind:": "Tipo de mensageiro:", + "Title:": "Título", + "Channel:": "Canal", + "No items": "Sem itens", + "New": "Novo", + "Options:": "Opções:", + "Options": "Opções", + "Type:": "Tipo:", + "Add": "Adicionar", + "Validation:": "Validação:", + "Date": "Data", + "Number": "Número", + "Text:": "Texto:", + "Description:": "Descrição:", + "This item is requried": "Esse item é obrigatório", + "Preview": "Visualizar", + "Column name": "Nome da coluna", + "Visible": "Visível", + "Visibility": "Visibility", + "Choose person": "Escolher pessoa", + "Conversation Details": "Detalhes da Conversa", + "Opened": "Aberto", + "Conversations": "Conversas", + "Channels": "Canais", + "Select all": "Escolher todos", + "Filter by tag": "Filtrar por marcação", + "Filter by integrations": "Filtrar por integração", + "Filter by brand": "Filtrar por marca", + "Filter by channel": "Filtrar por canal", + "Filter by status": "Filtrar por status", + "# Channel": "# Canal", + "Unassigned": "Não atribuído", + "Participating": "Participando", + "Resolved": "Resolvido", + "View more": "Ver mais", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "O cliente está offline. Clique para ocultar e enviar mensagens e elas serão recebidas na próxima vez que estiverem online.", + "No templates": "Sem modelos", + "Save as template": "Salvar como um modelo", + "Daily First Response Resolve Rate": "Taxa De Resolução Diária de Primeira Resposta", + "Daily First Response Resolve Rate by Team Members": "Taxa De Resolução Diária De Primeira Resposta Por Membros Da Equipe", + "Daily Response Close Resolve Rate by Team Members": "Taxa De Resolução Aproximada De Resposta Diária Por Membros Da Equipe", + "Volume Report": "Relatório de volume", + "Feedbacks gathered through various customer engagement channels.": "Feedbacks reunidos através de vários canais de envolvimento do cliente.", + "Response Report": "Relatório de respostas", + "Total number of response for customer feedbacks, by each staff.": "Número total de respostas para feedbacks de clientes, por cada equipe.", + "Response Close Report": "Relatório de resposta de perto", + "Average time of each staff solving problems that based on customer feedbacks.": "Tempo médio de cada equipe resolvendo problemas com base nos feedbacks dos clientes.", + "First Response Report": "Primeiro Relatório de Resposta", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Tempo de resposta para um único feedback. As estatísticas definirão o tempo médio de resposta de cada equipe.", + "Daily Response Close Resolve Rate": "Taxa De Resolução Aproximada De Resposta Diária", + "Daily Response Close Resolve rate by Team Members": "Taxa De Resolução Aproximada De Resposta Diária Por Membros Da Equipe", + "Response Times summary": "Resumo Dos Tempos De Resposta", + "Response Trend": "Tendência de Resposta", + "Punch card": "Cartão perfurado", + "Response by team members": "Resposta por membros da equipe", + "Tag": "Marcação", + "Internal note": "Nota interna", + "Manage templates": "Gerencie seus modelos", + "Volume summary": "Resumo de Volume", + "Volume Trend": "Tendência do Volume", + "Summary": "Resumo", + "Install code": "Código de instalação", + "No copyable code": "Nenhum código copiável", + "Manage Knowledge Base": "Gerenciar Base de Conhecimento", + "Add Category": "Adicionar Categoria", + "Add Article": "Adicionar Artigo", + "Customer engagement. REDEFINED.": "Envolvimento do cliente. REDEFINIDO.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes é uma Inteligência Aritificial que atende a plataforma de mensagens de código aberto para vendas, marketing e suporte", + "404. This page is not found.": "404. Página não encontrada.", + "erxes is an open-source messaging platform for customer success": "erxes é uma plataforma de mensagens de código aberto para o sucesso do cliente", + "Notification settings": "Configuração de notificações", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Plataforma de marketing, vendas e atendimento ao cliente projetada para ajudar sua empresa a atrair clientes mais engajados. Substitua o Hubspot pelo ecossistema de missão e comunidade.", + "Mark Page Read": "Marcar Página como Lida", + "Mark All Read": "Marcar Todas como Lidas", + "Coming soon": "Em breve", + "Looks like you are all caught up": "Looks like you are all caught up", + "AI": "IA", + "See all": "Ver tudo", + "Select a field": "Selecione um campo", + "Add condition": "Adicionar uma condição", + "Parent segment conditions": "Condições do segmento pai", + "Filter by segments": "Filtrar por segmentos", + "New segment": "Novo segmento", + "Manage segments": "Gerenciar segmentos", + "Users who match": "Usuários que correspondem", + "any": "qualquer", + "all": "todos", + "of the below conditions": "das condições abaixo", + "Sub segment of": "Segmento secundário de", + "Color": "Cor", + "Filters": "Filtros", + "User(s) will recieve this message": "O(s) usuário(s) irão receber essa mensagem.", + "Color code": "Código de cor", + "Engage Message": "Mensagem de engajamento", + "Item counts": "Contador de itens", + "Appearance": "Aparência", + "Hours, Availability & Other configs": "Horas, Disponibilidade & Outras Configurações", + "There is no brand": "Não há marcas", + "There is no integration in this channel.": "Não há integração nesse canal.", + "Template markup": "Marcação de modelo", + "Use html template here": "Use seu modelo HTML aqui", + "Choose your email template type": "Escolha seu tipo de template de e-mail", + "Email signatures": "Assinatura do e-mail", + "Personal Settings": "Configurações pessoais", + "Account Settings": "Configurações da conta", + "Profile": "Perfil", + "Get notification by email": "Receber notificações por e-mail", + "Admin": "Administrador", + "Contributor": "Contribuidor", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Nós lhe damos boas vindas para o erxes e estamos ansiosos para uma associação de trabalho saudável a longo prazo com a gente.", + "Hi, any questions?": "Olá, alguma pergunta?", + "1 hour ago": "Há 1 hora", + "We need your help!": "Nós precisamos de sua ajuda!", + "6 minutes ago": "Há 6 minutos", + "Write a reply ...": "Escreva uma resposta ...", + "App": "Aplicativo", + "From email": "Do e-mail", + "User email title": "Título do e-mail do usuário", + "User email content": "Conteúdo do e-mail do usuário", + "Admin emails": "E-mails administrativos", + "Admin email title": "Título do e-mail de administrador", + "Admin email content": "Conteúdo do e-mail de administrador", + "Redirect url": "URL de redirecionamento", + "On success": "Em caso de sucesso", + "Load": "Carregar", + "Success": "Sucesso", + "Thank content": "Agradecer conteúdo", + "Choose a custom color": "Escolha uma cor personalizada", + "Choose a wallpaper": "Escolha um papel de parede", + "Choose a logo": "Escolha um logotipo", + "Visible online to visitor or customer": "Online visível para visitante ou cliente", + "Online messaging": "Mensagem online", + "Welcome message": "Mensagem de boas-vindas", + "Offline messaging": "Mensagem offline", + "Away message": "Mensagem de ausente", + "Thank you message": "Mensagem de agradecimento", + "Hours & Availability": "Horas & Disponibilidade", + "Turn online/offline manually": "Ligar online/offline manualmente", + "Set to follow your schedule": "Definir para seguir o seu calendário", + "Other configs": "Outras configurações", + "Notify customer": "Notificar cliente", + "Online hours": "Horas online", + "Add another time": "Adicionar outra hora", + "Time zone": "Fuso horário", + "Messenger": "Mensageiro", + "Knowledge base": "Base de conhecimento", + "Notification": "Notificação", + "Notifications": "Notificações", + "Show unread": "Show unread", + "Unread": "Unread", + "Recent": "Recent", + "Mark all as read": "Mark all as read", + "Email Appearance": "Aparência do e-mail", + "Team Members": "Membros do Time", + "Account default": "Conta padrão", + "Team members": "Membros do time", + "Full name": "Nome completo", + "Leads": "Leads", + "Email Signature": "Assinatura do e-mail", + "Response Template": "Padrão de Resposta", + "Email Template": "Padrão de E-mail", + "Response templates": "Padrão de resposta", + "Email templates": "Padrão de e-mail", + "Brand Name": "Nome da Marcar", + "Current template": "Padrão escolhido", + "Created at": "Criado às", + "Manage Fields": "Gerenciar campos", + "Duplicate": "Duplicado", + "Code": "Código", + "Profile settings": "Configurações de perfil", + "Change Password": "Mudar Senha", + "Signatures are only included in response emails.": "As assinaturas são incluídas apenas nos emails de resposta.", + "Signature template": "Padrão de assinatura", + "You can use Markdown to format your signature.": "Você pode usar o Markdown para formatar sua assinatura.", + "Password": "Senha", + "Password confirmation": "Confirmação de senha", + "Choose the channels": "Escolha os canais", + "Simple": "Simples", + "Custom": "Personalizado", + "Create a new Company": "Criar nova empresa", + "New Company": "Nova Empresa", + "Edit name": "Editar nome", + "Customer": "Cliente", + "Add tag": "Adicionar marcação", + "Company": "Empresa", + "New message ": "Nova mensagem ", + "There aren’t any activities at the moment.": "Não há atividades no momento", + "This item is required": "Esse item é obrigatório", + "Manage fields": "Gerenciar campos", + "Add integrations ": "Adicionar integrações ", + "Form": "Formulário", + "Create a new Customer": "Criar um novo Cliente", + "New Customer": "Novo Cliente", + "Segments": "Segmentos", + "Add a condition": "Adicionar uma condição", + "Open": "Abrir", + "Choose channel": "Escolher canais", + "Who is this message for?": "Para quem é esta mensagem?", + "Compose your message": "Crie sua mensagem", + "No items added": "Não há itens adicionados", + "Submit": "Submeter", + "Next": "Próximo", + "Save & Draft": "Salvar & Rascunho", + "Save & Live": "Salvar & Continuar", + "From:": "De:", + "Pages": "Páginas", + "Links": "Links", + "Enter your password to Confirm": "Insira sua senha para confirmar", + "Number of visits": "Número de visitas", + "Written By": "Escrito por", + "Icon": "Ícone", + "draft": "rascunho", + "Twitter Username": "Usuário do Twitter", + "LinkedIn": "LinkedIn", + "Youtube": "Youtube", + "Github": "Github", + "Edit response": "Editar resposta", + "To send your message press Enter and Shift + Enter to add a new line": "Para enviar sua mensagem pressione Enter e Shift + Enter para adicionar uma nova linha", + "To send your note press Enter and Shift + Enter to add a new line": "Para enviar sua nota pressione Enter e Shift + Enter para adicionar uma nova linha", + "Please enter an unit price. It should be a number": "Please enter an unit price. It should be a number", + "Type to search": "Digite para procurar", + "Members": "Membros", + "Choose integrations": "Escolher integrações", + "Choose brands": "Escolher marcas", + "Select a date": "Selecione uma data", + "Click to select a date": "Clique para selecionar uma data", + "Choose users": "Escolher usuários", + "Select Brand": "Selecionar uma marca", + "Write here Welcome message.": "Escreva aqui uma mensagem de boas-vindas.", + "Write here Away message.": "Escreva aqui uma mensagem de ausente.", + "Write here Thank you message.": "Escreva aqui uma mensagem de agradecimento.", + "Select app": "Selecione um aplicativo", + "Enter new password": "Digite sua nova senha", + "Choose channels": "Escolher canais", + "Select": "Selecionar", + "select": "selecionar", + "Choose members": "Escolher membros", + "Search": "Procurar", + "your@email.com": "seu@email.com", + "password": "senha", + "registered@email.com": "registrado@email.com", + "new password": "nova senha", + "Start typing to leave a note": "Comece a digitar para deixar uma nota", + "Re-type password": "Digite novamente sua senha", + "Name:": "Nome:", + "Size:": "Tamanho:", + "Website:": "Site:", + "Industry:": "Empresa:", + "Plan:": "Plano:", + "There arent't any groups and fields": "Aqui não há grupos e campos", + "Please add property Group first": "Por favor, primeiro adicione uma propriedade ao grupo", + "Add group": "Adicionar grupo", + "Add Property": "Adicionar propriedade", + "Add Group & Field ": "Adicionar Grupo & Propriedade ", + "Add Group": "Adicionar Grupo", + "Edit Property": "Adicionar Propriedade", + "Group:": "Grupo:", + "There arent't any fields in this group": "Não há campos nesse grupo", + "Customer Properties": "Propriedades do Cliente", + "Company Properties": "Propriedades da Empresa", + "Add an option": "Adicione uma opção", + "Copy to clipboard": "Copiar para área de transferência", + "Go to home page": "Ir para página inicial", + "Assign to": "Atribuir a", + "Remove assignee": "Remover atribuição", + "Account settings": "Configurações de conta", + "General Settings": "Configurações gerais", + "Integration Settings": "Configurações de integração", + "Personal settings": "Configurações pessoais", + "Add category": "Adicionar categoria", + "Filter": "Filtrar", + "Live": "Continuar", + "Draft": "Rascunho", + "Paused": "Pausado", + "Your messages": "Suas mensagens", + "Delivered inside your app Reach active users": "Entregue no seu aplicativo para alcançar usuários ativos", + "Delivered to a user s email inbox Customize with your own templates": "Entregue na caixa de entrada de e-mail de um usuário Personalize com seus próprios modelos", + "email": "e-mail", + "Create segment": "Criar segmento", + "customers": "clientes", + "has any value": "tem algum valor", + "is unknown": "é desconhecido", + "is not": "não é", + "is": "é", + "Less than": "Menor que", + "City": "Cidade", + "Greater than": "Maior que", + "Country": "País", + "Current page url": "URL da página atual", + "Browser language": "Idioma do navegador", + "conversation": "conversação", + "engageMessage": "mensagemEngajamento", + "customer": "cliente", + "company": "empresa", + "starts with": "começa com", + "ends with": "termina com", + "contains": "contém", + "does not contain": "não contém", + "Basic Info": "Informação básica", + "Add Phone": "Adicionar Telefone", + "Add Email": "Adicionar E-mail", + "Choose your tags": "Escolha suas marcações", + "Manage tags": "Gerenciar marcações", + "Edit Profile": "Editar perfil", + "Sign out": "Deslogar", + "Last Updated By": "Última atualização por", + "There is no channel": "Não há canal", + "Facebook page": "Página do Facebook", + "plan": "plano", + "Edit segment": "Editar segmento", + "New message": "Nova mensagem", + "Message": "Mensagem", + "Merge Customers": "Mesclar usuários", + "Assign": "Atribuir", + "There is no message.": "Não há mensagens.", + "per page": "por página", + "[view]": "[view]", + "Go to twitter": "Ir para o Twitter", + "Build": "Construir", + "`s integration": "`s integração", + "Created": "Criado", + "Email templates:": "Modelo de e-mail:", + "Content:": "Conteúdo:", + "Response Templates": "Modelo de Resposta", + "Merge Companies": "Mesclar Empresas", + "Response template": "Modelo de resposta", + "Attach file": "Anexar aquivo", + "Upload": "Enviar", + "ShoutBox": "Caixa de mensagens", + "Popup": "Popup", + "Embedded": "Embutido", + "Choose a flow type": "Escolha um tipo de fluxo", + "CallOut": "Chamada", + "Callout title": "Título da chamada", + "Callout body": "Corpo da chamada", + "Callout button text": "Texto do botão da chamada", + "Skip callOut": "Ignorar chamada", + "Form button text": "Texto do botão do formulário", + "Theme color": "Cor do tema", + "Featured image": "Imagem em destaque", + "Full Preview": "Visualização completa", + "Try some of these colors:": "Escolha alguma dessas cores:", + "Included fields": "Campos incluídos", + "Deal": "Acordo", + "Deals": "Acordos", + "New Product & Service": "Novo Produto & Serviço", + "No product or services": "Sem produto ou serviços", + "UOM": "UOM", + "Quantity": "Quantidade", + "Unit price": "Preço unitário", + "Discount": "Desconto", + "Tax": "Imposto", + "Ticket": "Ticket", + "Task": "Task", + "Select company": "Selecionar empresa", + "Select customer": "Selecionar cliente", + "Note": "Nota", + "Assigned to": "Destinar para", + "Move": "Mover", + "Move deal": "Mover acordo", + "Copy": "Copiar", + "Close date": "Fechar data", + "Choose product & service": "Escolher produto & serviço", + "Select product & service": "Por favor, selecione produto & serviço", + "Please, select a close date": "Por favor, selecione uma data próxima", + "Create a new Product": "Criar um novo Produto", + "New Product": "Novo Produto", + "SKU": "SKU", + "Choose a company": "Selecionar uma empresa", + "Choose a customer": "Selecionar um cliente", + "Choose a board": "Selecionar um quadro", + "Choose a pipeline": "Selecionar um pipeline", + "Manage Board & Pipeline": "Gerenciar Quadros & Pipelines", + "Choose a stage": "Selecione um estágio", + "Deal Settings": "Configurações de acordos", + "Ticket Settings": "Ticket Settings", + "Task Settings": "Task Settings", + "Boards & Pipelines": "Quadros & Pipelines", + "Product & Service": "Produto & Serviço", + "There is no pipeline in this board.": "Não há pipelines nesse quadro.", + "There is no board": "Não há quadros", + "New Board": "Novo quadro", + "Add pipeline": "Adicionar pipeline", + "Create one": "Criar um", + "Edit pipeline": "Editar pipeline", + "Add stage": "Adicionar estágio", + "Board": "Quadro", + "Pipeline": "Pipeline", + "Stage": "Estágio", + "Stage name": "Stage name", + "Add a deal": "Adicionar negócio", + "Add a task": "Add a task", + "Add a ticket": "Add a ticket", + "Priority": "Priority", + "Critical": "Critical", + "High": "High", + "Normal": "Normal", + "Low": "Low", + "Attachments": "Attachments", + "Source": "Source", + "Select a source": "Select a source", + "Upload an attachment": "Upload an attachment", + "Description": "Descrição", + "Select a priority": "Select a priority", + "Edit deal": "Editar negócio", + "Edit task": "Edit task", + "Edit ticket": "Edit ticket", + "Add Product / Service": "Adicionar Produto / Serviço", + "Reply tweet": "Responder tweet", + "Tweet": "Tweet", + "Details": "Detalhes", + "View Profile": "Ver Perfil", + "Empty Notes": "Notas vazias", + "Mini-resume": "Mini-currículo", + "You cannot update this property": "Você não pode atualizar essa propriedade", + "Desktop": "Desktop", + "Mobile": "Celular", + "Tablet": "Tablet", + "Amount": "Quantia", + "Owner": "Proprietário", + "Department": "Departamento", + "Lead Status": "Status do Lead", + "Lifecycle State": "Estado do ciclo de vida", + "Has Authority": "Tem autoridade", + "Do not disturb": "Não incomode", + "Parent Company": "Matriz", + "Business Type": "Tipo de negócio", + "Employees count": "Número de empregados", + "Yes": "Sim", + "No": "Não", + "Copied": "Copiado", + "General": "Geral", + "Currency": "Moeda", + "Unit of measurement": "Unidade de medida", + "Create another board": "Criar outro quadro", + "No pipeline": "No pipeline", + "No stage": "Sem palco", + "No deal": "Sem acordo", + "Background": "Background", + "Choose": "Escolha", + "Successfully saved.": "Salvo com sucesso.", + "Successfully moved.": "Movido com sucesso.", + "Successfully selected.": "Selecionado com sucesso.", + "Body description here": "Descrição do corpo aqui", + "Thank you.": "Obrigado.", + "Choose a brand": "Escolha a marca", + "Write a title": "Escreva o título", + "Contact": "Contato", + "Created by": "Creado por", + "Manage": "Administrar", + "Dropdown": "Suspenso", + "Slide-in Left": "Deslize para esquerda", + "Slide-in Right": "Deslize para direita", + "Enter name": "Entre com o nome", + "Delivered": "Entregue", + "Clicked": "Clicado", + "Complaint": "Reclamação", + "Bounce": "Evidenciar", + "Rendering Failure": "Falha de renderização", + "Rejected": "Rejeitado", + "Action": "Ação", + "Please select one to merge": "Por favor, selecione um para mesclar", + "Filter by date": "Filtrar pela data", + "Total conversations": "Total de conversas", + "Filter by form": "Filtrar pelo formulário", + "Supporters": "Apoiadores", + "Import histories": "Histórias importadas", + "Imported Date": "Data importada", + "Imported User": "Usuário importado", + "Export customers": "Exportar clientes", + "Import customers": "Importar clientes", + "Export companies": "Exportar empresas", + "Import companies": "Importar empresas", + "All customers imported successfully": "Todos os clientes foram importados com sucesso", + "There aren't any imports": "Não há importações", + "Successfully Removed all customers": "Todos os clientes removidos com sucesso", + "You can only import max 600 at a time": "Você pdoe importar no máximo 600 por vez", + "Invalid import type": "Tipo de importação inválido", + "Last updated": "Ultima atualização", + "Filter by lead status": "Filtrar pelo status da Lead", + "No lead status chosen": "Status da Lead não escolhido", + "Schedule:": "Cronograma:", + "Every Day": "Todo dia", + "Every Month": "Todo mês", + "Every Year": "Todo ano", + "Every Monday": "Toda segunda-feira", + "Every Tuesday": "Toda terça-feira", + "Every Wednesday": "Toda quarta-feira", + "Every Thursday": "Toda quinta-feira", + "Every Friday": "Toda sexta-feira", + "Every Saturday": "Todo sábado", + "Every Sunday": "Todo domingo", + "Choose a schedule day": "Selecione o tipo de agendamento", + "Choose a schedule time": "Selecione o horário do agendamento", + "Won": "Ganhou", + "Lost": "Perdido", + "App store": "App store", + "App store menu": "App store menu", + "In Progress": "Em progresso", + "It`s size exceeds the limit 10mb": "It`s size exceeds the limit 10mb", + "Congrats! Your email sent successfully!": "Congrats! Your email sent successfully!", + "Works with messenger": "Works with messenger", + "Knowledge base topic": "Knowledge base topic", + "Package version": "Package version", + "Branch name": "Branch name", + "Abbreviated": "Abbreviated", + "User": "User", + "Recent conversations": "Recent conversations", + "Start new conversation": "Start new conversation", + "Talk with support staff": "Talk with support staff", + "Send a message": "Send a message", + "Volume Report By Customer": "Volume Report By Customer", + "Export Report": "Export Report", + "We`re ready to help you.": "We`re ready to help you.", + "Please choose a product": "Please choose a product", + "Please choose a currency": "Please choose a currency", + "No board": "No board", + "Empty": "Empty", + "There is no account.": "There is no account.", + "There is no tag.": "There is no tag.", + "Skip for now": "Skip for now", + "Go to Inbox": "Go to Inbox", + "Messenger Language": "Messenger Language", + "Messenger name": "Messenger name", + "Skip": "Skip", + "Finish": "Finish", + "Show": "Show", + "Hide": "Hide", + "Previous": "Previous", + "Users": "Users", + "users": "users", + "brands": "brands", + "messengers": "messengers", + "channels": "channels", + "Emails": "Emails", + "Messengers": "Messengers", + "You already have": "You already have", + "There is another": "There is another", + "Let's create your brand": "Let's create your brand", + "Invite users": "Invite users", + "Let's grow your team": "Let's grow your team", + "Invite": "Invite", + "Let's start": "Let's start", + "Start messaging now!": "Start messaging now!", + "Create channel": "Create channel", + "Get started on your channel": "Get started on your channel", + "Create your first messenger": "Create your first messenger", + "Welcome": "Welcome", + "Nothing inserted": "Nothing inserted", + "Empty emails": "Empty emails", + "Initial setup": "Initial setup", + "Add another": "Add another", + "Don't show again": "Don't show again", + "No other pipeline": "No other pipeline", + "No other boards": "No other boards", + "I'm ready to get started": "I'm ready to get started", + "Welcome paragraph": "We're so happy to have you. Let's take a moment to get you set up", + "Get notified and notify others to keep everything up to date": "Get notified and notify others to keep everything up to date", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "If your team hasn't received messages that you sent on the site, we can send it to them via email", + "Send an email and notify members that they've been invited!": "Send an email and notify members that they've been invited!", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Today": "Today", + "Sales": "Sales", + "Monthly view": "Monthly view", + "Filter by": "Filter by", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Grow and add users to your team! Assign, designate and let them do what they do best", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Stay up to date with every single customer feedback and create more meaningful conversations", + "Create brand channels that are specifically categorized by type and activity": "Create brand channels that are specifically categorized by type and activity", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "An email signature is an opportunity to share information that helps build recognition and trust.", + "Let's start taking care of your customers": "Let's start taking care of your customers", + "Add in your first company!": "Add in your first company!", + "Choose from our many integrations and add to your channel": "Choose from our many integrations and add to your channel", + "Let's get you messaging away!": "Let's get you messaging away!", + "Whoops! No messages here but you can always start": "Whoops! No messages here but you can always start", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.", + "Oops! No data here": "Oops! No data here", + "Start adding integrations now!": "Start adding integrations now!", + "Add an integration in this Brand": "Add an integration in this Brand", + "Oh dear! You have no imports": "Oh dear! You have no imports", + "A strong customer engagement can help to further brand growth and loyalty": "A strong customer engagement can help to further brand growth and loyalty", + "Get started on your pipeline": "Get started on your pipeline", + "Connect to Facebook messages right from your Team Inbox": "Connect to Facebook messages right from your Team Inbox", + "Tweet back to your DMs right from your Team Inbox": "Tweet back to your DMs right from your Team Inbox", + "Connect straight to your Gmail and get those emails going": "Connect straight to your Gmail and get those emails going", + "Find your lead forms right here in your Widget": "Find your lead forms right here in your Widget", + "Get access to your Knowledge Base right in your Widget": "Get access to your Knowledge Base right in your Widget", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Soon you'll be able to connect Viber straight to your Team Inbox", + "Get a hold of your Whatsapp messages through your Team Inbox": "Get a hold of your Whatsapp messages through your Team Inbox", + "Connect with Wechat and start messaging right from your Team Inbox": "Connect with Wechat and start messaging right from your Team Inbox", + "Find feedback that has been gathered from various customer engagement channels.": "Find feedback that has been gathered from various customer engagement channels.", + "A report on the total number of customer feedback responses given by team members.": "A report on the total number of customer feedback responses given by team members.", + "The average time a team member solved a problem based on customer feedback.": "The average time a team member solved a problem based on the customer feedback.", + "You can find stats that defines the average response time by each team member.": "You can find stats that defines the average response time by each team member.", + "Oh boy, looks like you need to get a head start on your deals": "Oh boy, looks like you need to get a head start on your deals", + "Open segments and starting add details": "Open segments and starting add details", + "Now easier to find contacts according to your brand": "Now easier to find contacts according to your brand", + "Search and filter customers by form": "Search and filter customers by form", + "There is always a lead!": "There is always a lead!", + "Calendar": "Calendar", + "Columns": "Columns", + "columns": "columns", + "Linked Accounts": "Linked Accounts", + "Select account": "Select account", + "Select account ...": "Select account ...", + "Add Account": "Add Account", + "Remove Account": "Remove Account", + "You can upload only image file": "You can upload only .png or .jpg image file", + "Permissions": "Permissions", + "New permission": "New permission", + "New group": "New group", + "Users groups": "Users groups", + "Choose the module": "Choose the module", + "Choose the actions": "Choose the actions", + "Choose the users": "Choose the users", + "Choose the groups": "Choose the groups", + "Choose groups": "Choose groups", + "Allow": "Allow", + "Invitation Status": "Invitation Status", + "Permission": "Permission", + "data successfully imported": "data successfully imported", + "Show result": "Show result", + "Importing": "Importing", + "data": "data", + "errors acquired": "errors acquired", + "There are": "There are", + "Continue": "Continue", + "Create brand": "Create brand", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Create your first live chat and in-app messaging. Stay up to date with every single customer feedback for more meaningful interactions.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "A channel gives a full view of all the brands and its applications all in one place. You can see all in-coming messages in your team inbox.", + "Hooray and Congratulations! You've completed the initial setup!": "Hooray and Congratulations! You've completed the initial setup!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Paste the code below before the tag on every page you want erxes chat to appear.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Paste the code below before the body tag on every page you want erxes lead to appear", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "If your flow type is embedded paste the code below additionally that you want erxes lead to appear", + "If your flow type is popup paste the code below additionally in your button": "If your flow type is popup paste the code below additionally in your button", + "Choose messengers": "Choose messengers", + "erxes allows you to create multiple messengers": "erxes allows you to create multiple messengers", + "erxes allows you to create multiple brands": "erxes allows you to create multiple brands", + "erxes allows you to create multiple channels": "erxes allows you to create multiple channels", + "Contacts": "Contacts", + "Create group": "Create group", + "Visitors": "Visitors", + "Due in the next day": "Due in the next day", + "Due in the next week": "Due in the next week", + "Due in the next month": "Due in the next month", + "Has no close date": "Has no close date", + "Over due": "Over due", + "Clear Filter": "Clear Filter", + "Remove this filter": "Remove this filter", + "Filtering is on": "Filtering is on", + "Choose products": "Choose products", + "Choose companies": "Choose companies", + "Choose customers": "Choose customers", + "Choose team members": "Choose team members", + "erxes Inc": "erxes Inc", + "Get": "Get", + "Download ios app for free on the App Store": "Download ios app for free on the App Store.", + "Download android app for free on the Google play": "Download android app for free on the Google play.", + "Please upgrade your browser to use erxes!": "Please upgrade your browser to use erxes!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Unfortunately, You are running on a browser that may not be fully compatible with erxes.", + "Please use recommended version": "Please use recommended version", + "Messenger data": "Messenger data", + "Customer field data": "Customer field data", + "Others": "Others", + "Select brand": "Select brand", + "There is no permissions in this group": "There is no permissions in this group.", + "There is no group": "There is no group.", + "User groups": "User groups", + "What action can do": "What action can do", + "Who can": "Who can", + "Grant permission": "Grant permission", + "Check if permission is allowed": "Check if permission is allowed", + "Then": "Then", + "Or": "Or", + "Auto message description": "Send targeted email and chat to logged-in users based on their brand/tag/segment. You can set your time to send an email or chat in advance. Chat design can be snipped, badge and full message and it can be a text or video.", + "Manual message description": "Send targeted email and chat to logged-in users based on their brand/tag/segment. An email or chat will be sent out immediately after you click save button. Chat design can be snipped, badge and full message and it can be a text or video.", + "Visitor auto message description": "Send targeted chats to logged-out visitors on website based on their visiting page, activity, their country of residence and city. Chat design can be snipped, badge and full message and it can be a text or video.", + "Required field": "Required field!", + "Invalid email format! Please enter a valid email address": "Invalid email format! Please enter a valid email address.", + "Invalid link": "Invalid link!", + "Maximum length is": "Maximum length is", + "characters": "characters!", + "Invalid number format! Please enter a valid number": "Invalid number format! Please enter a valid number.", + "Insert email template to content": "Insert email template to content", + "Logs": "Logs", + "There are no logs recorded": "There are no logs recorded", + "Module": "Module", + "Unchanged fields": "Unchanged fields", + "Changed fields": "Changed fields", + "Create": "Create", + "Update": "Update", + "Changes": "Changes", + "Choose start date": "Choose start date", + "Choose end date": "Choose end date", + "Permission denied": "Permission denied", + "Old data": "Old data", + "New data": "New data", + "Archive": "Archive", + "NetworkError": "Attempting to restore connection. Changes made now may not be saved.", + "Email add account description question": "Are you connecting a shared email account?", + "Email add account description": "When you connect an email to your conversations inbox, you're connecting it as a shared account. Messages sent to shared accounts can be viewed by everyone who has access to your team inbox.", + "No connected email": "No connected email", + "Your email will be sent with Erxes email template": "Your email will be sent with Erxes email template" +} diff --git a/ui/src/locales/ru.json b/ui/src/locales/ru.json index 22944144ca9..d208023d10a 100644 --- a/ui/src/locales/ru.json +++ b/ui/src/locales/ru.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "Уверены ли вы?", "Yes, I am": "Да, я", "No, Cancel": "Нет, Отменить", diff --git a/ui/src/locales/sq.json b/ui/src/locales/sq.json new file mode 100644 index 00000000000..3e91f8f7dcb --- /dev/null +++ b/ui/src/locales/sq.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "A je i sigurt? Kjo nuk mund të zhbëhet.", + "Yes, I am": "Po unë jam", + "No, Cancel": "Jo, Anulo", + "Filter by tags": "Filtro sipas etiketave", + "There is no data": "Nuk ka të dhëna", + "There is no data.": "Nuk ka të dhëna.", + "Load more": "Ngarko më shumë", + "There aren't any activities at the moment.": "Nuk ka asnjë aktivitet për momentin.", + "Reset your password": "Rivendosni fjalëkalimin tuaj", + "Email me the instruction": "Më dërgoni me email udhëzimin", + "Sign in": "Hyni", + "Change password": "Ndrysho fjalekalimin", + "Set your new password": "Vendosni fjalëkalimin tuaj të ri", + "Forgot password?": "keni harruar fjalëkalimin?", + "Photo": "Foto", + "Name": "emër", + "Views": "Views", + "Conversion": "konvertimit", + "Go to import": "Shkoni për të importuar", + "Conversion rate": "Shkalla e konvertimit", + "Contacts gathered": "Kontaktet u mblodhën", + "Create lead": "Krijoni shtesa pop", + "Form title": "Titulli i formës", + "Related": "Faqet", + "Form description": "Përshkrimi i formës", + "Position": "pozitë", + "Username": "Emri i përdoruesit", + "Email": "Email", + "sec": "sec", + "Twitter username": "Emri i përdoruesit në Twitter", + "Inbox": "Inbox", + "Workflow": "Workflow", + "Watch": "Shikojnë", + "Watching": "Watching", + "Team Inbox": "Inbox i ekipit", + "Customers": "Klientët", + "Companies": "Kompanitë", + "Engage": "angazhoj", + "Insights": "Vështrime", + "Knowledge Base": "Njohuri baze", + "Settings": "Cilësimet", + "Resolve": "vendosmëria", + "Send": "Send", + "No company": "Asnjë kompani", + "No customer": "Asnjë klient", + "Not tagged yet": "Ende nuk u etiketua", + "New note": "Shënim i ri", + "Conversation": "bisedë", + "Notes": "Shënime", + "Activity": "aktivitet", + "Basic info": "Informacioni bazë", + "Size": "madhësi", + "Other": "tjetër", + "Industry": "industri", + "Website": "Faqja e internetit", + "Plan": "plan", + "About": "për", + "Discard": "Hedh", + "Save": "Save", + "Create response template": "Krijoni një model përgjigjeje", + "Associate": "koleg", + "No tags": "Nuk ka etiketa", + "Add customer": "Shto klient", + "No segments": "Asnjë segment", + "Manage Columns": "Menaxhoni kolonat", + "New customer": "Klient i ri", + "Add company": "Shtoni kompani", + "New company": "Ndërmarrje e re", + "Choose which column you see": "Zgjidhni cilën kolonë që shihni", + "There is no engage message.": "Nuk ka asnjë mesazh angazhimi.", + "Add Knowledge base": "Shtoni bazën e njohurive", + "Add knowledge base.": "Shtoni bazën e njohurive.", + "New Channel": "Kanali i Ri", + "Edit": "redaktoj", + "Edit basic info": "Redaktoni informacionin bazë", + "Manage integration": "Menaxhoni integrimin", + "Manage Integration": "Menaxhoni integrimin", + "Choose new brand": "Zgjidhni markë të re", + "Edit integration": "Redaktoni integrimin", + "Integration": "integrim", + "Integration menu": "Menyja e integrimit", + "New Brand": "Markë e re", + "Add facebook page": "Shtoni faqen e facebook-ut", + "Add integrations": "Shtoni integrime", + "Add messenger": "Shtoni të dërguarin", + "There is no lead.": "Nuk ka asnjë plumb.", + "New response template": "Model i ri përgjigjeje", + "Cancel": "anuloj", + "Public": "publik", + "Private": "privat", + "New email template": "Model i ri i postës elektronike", + "Local publisher's email template": "Modeli i postës elektronike të botuesit lokal", + "New user": "Perdorues i ri", + "Load More": "Ngarko më shumë", + "Session count": "Numërimi i sesionit", + "Last seen at": "Për herë të fundit tek", + "Tags": "Tags", + "Member": "anëtar", + "Remove": "Hiq", + "No companies added yet!": "Asnjë kompani nuk u shtua ende!", + "Merge": "Shkrihet", + "First Name": "Emri", + "Last Name": "Mbiemri", + "First name": "Emri", + "Last name": "Mbiemri", + "Primary Email": "E-maili kryesor", + "Phone": "telefon", + "Is user": "Usershtë përdorues", + "Save & New": "Kurseni dhe reja", + "Save & Close": "Ruani dhe Mbylle", + "Close": "afër", + "Customer properties": "Karakteristikat e klientit", + "Device properties": "Karakteristikat e pajisjes", + "Location": "vend", + "Browser": "Browser", + "Platform": "platformë", + "IP Address": "Adresa IP", + "Hostname": "hostname", + "Language": "Gjuhe", + "User Agent": "Agjenti i përdoruesit", + "Other properties": "Prona të tjera", + "Facebook": "Facebook", + "Facebook profile": "Profili i Facebook-ut", + "Messenger usage": "Përdorimi i të dërguarit", + "Status": "status", + "Online": "online", + "Offline": "Offline", + "Twitter": "Cicëroj", + "Twitter quote": "Citim në Twitter", + "Retweet": "Retweet", + "Screen name": "Emri në Ekran", + "Don't see the result you're looking for? ": "A nuk shihni rezultatin që ju po kërkoni?", + "Merged Info": "Informacion i bashkuar", + "E-mail": "E-mail", + "Integrations": "integrimet", + "integration": "integrim", + "Brands": "Marka", + "Start date": "Data e fillimit", + "End date": "Data e përfundimit", + "lead": "Pop ups", + "twitter": "Cicëroj", + "facebook": "facebook", + "messenger": "lajmëtar", + "Title": "titull", + "Brand": "markë", + "Current Password": "Fjalëkalimi aktual", + "Current password": "Fjalëkalimi aktual", + "New Password": "Fjalëkalim i ri", + "Re-type Password to confirm": "Shtypni përsëri fjalëkalimin për të konfirmuar", + "Signature": "nënshkrim", + "simple": "i thjeshtë", + "custom": "me porosi", + "default": "parazgjedhur", + "default language": "gjuha e paracaktuar", + "primary": "kryesor", + "Content": "përmbajtje", + "Save & draft": "Ruaj draftin", + "Save & live": "Ruani dhe jetoni", + "Message:": "mesazh:", + "Email template:": "Modeli i postës elektronike:", + "Email subject:": "Subjekti i postës elektronike:", + "From": "nga", + "Message type:": "Lloji i mesazhit:", + "Sent as:": "Dërguar si:", + "Brand:": "markë:", + "Add rule": "Shtoni rregull", + "Last online": "E fundit në internet", + "No Activities": "Pa aktivitete", + "There is no customer.": "Nuk ka klient.", + "Properties": "Vetitë", + "Customize ": "Customize", + "Kind": "lloj", + "All": "të gjithë", + "Auto": "Auto", + "Visitor auto": "Vizitor automatik", + "Manual": "udhëzues", + "Delivered to a user s email inbox": "Dorëzohet në kutinë elektronike të një përdoruesi", + "Customize with your own templates": "Rregulloje me shabllonet e tua", + "Delivered inside your app": "Dorëzuar brenda aplikacionit tuaj", + "Reach active users": "Arrijnë përdoruesit aktivë", + "Channel": "kanal", + "Edit columns": "Redaktoni kolonat", + "Auto message": "Mesazh automatik", + "Manual message": "Mesazh manual", + "Visitor auto message": "Mesazh automatik i vizitorëve", + "Actions": "veprimet", + "Created date": "Data e krijuar", + "Type": "lloj", + "Failed": "i dështuar", + "Sent": "Sent", + "Total": "Total", + "Pause": "pushim", + "Set live": "Vendos live", + "Sending": "dërgim", + "Delete": "fshini", + "Choose segment": "Zgjidhni segmentin", + "To:": "për:", + "Messenger kind:": "Lloji i të dërguarit:", + "Title:": "titull", + "Channel:": "kanal", + "No items": "Asnjë send", + "New": "I ri", + "Options:": "Opsione:", + "Options": "Opsione", + "Type:": "lloji:", + "Add": "shtoj", + "Validation:": "sanksionim", + "Date": "data", + "Number": "numër", + "Text:": "Tekst:", + "Description:": "Përshkrim:", + "This item is requried": "Ky artikull është i riparuar", + "Preview": "inspektim", + "Column name": "Emri i kolonës", + "Visible": "i dukshëm", + "Visibility": "dukshmëri", + "Choose person": "Zgjidhni personin", + "Conversation Details": "Detajet e bisedës", + "Opened": "Hapur", + "Conversations": "bisedat", + "Channels": "kanalet", + "Select all": "Selektoj të gjitha", + "Filter by tag": "Filtro sipas etiketave", + "Filter by integrations": "Filtro sipas integrimeve", + "Filter by brand": "Filtër sipas markës", + "Filter by channel": "Filtri sipas kanalit", + "Filter by status": "Filtri sipas statusit", + "# Channel": "# Kanali", + "Unassigned": "pacaktuara", + "Participating": "pjesëmarrëse", + "Resolved": "i vendosur", + "View more": "Shiko më shumë", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Klienti nuk është në linjë Klikoni për të fshehur dhe dërguar mesazhe dhe ata do t'i marrin ato herën tjetër kur janë në internet.", + "No templates": "Nuk ka shabllone", + "Save as template": "Ruani si shabllon", + "Daily First Response Resolve Rate": "Shkalla e zgjidhjes së përgjigjes së parë ditore", + "Daily First Response Resolve Rate by Team Members": "Përgjigja e Parë ditore e Zgjidhjes së Vlerësimit nga anëtarët e ekipit", + "Daily Response Close Resolve Rate by Team Members": "Përgjigja ditore Mbyll Vlerësimi i Vlerësimit nga Anëtarët e Ekipit", + "Volume Report": "Raporti i vëllimit", + "Feedbacks gathered through various customer engagement channels.": "Reagimet u mblodhën përmes kanaleve të ndryshme të angazhimit të klientit.", + "Response Report": "Raporti i përgjigjes", + "Total number of response for customer feedbacks, by each staff.": "Numri i përgjithshëm i përgjigjeve për reagimet ndaj klientit, nga secili personel.", + "Response Close Report": "Raporti i Mbylljes së Përgjigjes", + "Average time of each staff solving problems that based on customer feedbacks.": "Koha mesatare e secilit personel që zgjidh problemet që bazohen në reagimet e klientëve.", + "First Response Report": "Raporti i Parë i Përgjigjes", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Koha e përgjigjes për një reagim të vetëm. Statistikat do të përcaktojnë kohën mesatare të përgjigjes nga secili person.", + "Daily Response Close Resolve Rate": "Përgjigja ditore Mbyll Shkalla e zgjidhjes", + "Daily Response Close Resolve rate by Team Members": "Përgjigja ditore Mbyll Shkallën e zgjidhjes nga anëtarët e ekipit", + "Response Times summary": "Përmbledhje e Përgjigjeve Times", + "Response Trend": "Tendenca e reagimit", + "Punch card": "Kartë grushti", + "Response by team members": "Përgjigja nga anëtarët e ekipit", + "Tag": "etiketë", + "Internal note": "Shënim i brendshëm", + "Manage templates": "Menaxhoni shabllonet", + "Volume summary": "Përmbledhje vëllimi", + "Volume Trend": "Trendi i vëllimit", + "Summary": "përmbledhje", + "Install code": "Instaloni kodin", + "No copyable code": "Asnjë kod i kopjueshëm", + "Manage Knowledge Base": "Menaxhoni bazën e njohurive", + "Add Category": "Shto Kategorinë", + "Add Article": "Shtoni artikullin", + "Customer engagement. REDEFINED.": "Angazhimi i klientit. Ripërcaktuar.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes është një AI që plotëson platformën e mesazheve me burim të hapur për shitje, marketing dhe mbështetje", + "404. This page is not found.": "404. Kjo faqe nuk është gjetur.", + "erxes is an open-source messaging platform for customer success": "erxes është një platformë e mesazheve me burim të hapur për suksesin e klientit", + "Notification settings": "Cilësimet e njoftimit", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Marketingu, shitjet dhe platforma e shërbimit të klientit të dizajnuar për të ndihmuar biznesin tuaj të tërheqë klientë më të angazhuar. Zëvendësoni Hubspot me misionin dhe ekosistemin e drejtuar nga komuniteti.", + "Mark Page Read": "Shëno faqen e lexuar", + "Mark All Read": "Shëno të gjitha të lexuara", + "Coming soon": "Vjen së shpejti", + "Looks like you are all caught up": "Duket sikur të gjithë jeni kapur", + "AI": "AI", + "See all": "Shiko gjithcka", + "Select a field": "Zgjidhni një fushë", + "Add condition": "Shtoni gjendjen", + "Parent segment conditions": "Kushtet e segmentit prindëror", + "Filter by segments": "Filtro sipas segmenteve", + "New segment": "Segment i ri", + "Manage segments": "Menaxhoni segmentet", + "Users who match": "Përdoruesit që përputhen", + "any": "ndonjë", + "all": "të gjithë", + "of the below conditions": "të kushteve të mëposhtme", + "Sub segment of": "Nënseksioni i", + "Color": "Ngjyrë", + "Filters": "Filters", + "User(s) will recieve this message": "Përdoruesi (et) do të marrin këtë mesazh", + "Color code": "Kodi i ngjyrave", + "Engage Message": "Angazhoni mesazhin", + "Item counts": "Numrat e sendeve", + "Appearance": "shfaqje", + "Hours, Availability & Other configs": "Orë, Disponueshmëri dhe konfigurime të tjera", + "There is no brand": "Nuk ka markë", + "There is no integration in this channel.": "Nuk ka integrim në këtë kanal.", + "Template markup": "Shënimi i shabllonit", + "Use html template here": "Përdorni modelin HTML këtu", + "Choose your email template type": "Zgjidhni llojin e modelit tuaj të postës elektronike", + "Email signatures": "Nënshkrime të postës elektronike", + "Personal Settings": "Cilësimet personale", + "Account Settings": "Cilësimet e llogarisë", + "Profile": "Profile", + "Get notification by email": "Merrni njoftimin me email", + "Admin": "admin", + "Contributor": "kontribues", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Ne ju mirëpresim ngrohtësisht për erxes dhe shpresojmë që të keni një shoqatë pune afatgjatë të shëndetshme me ne.", + "Hi, any questions?": "Përshëndetje, ndonjë pyetje?", + "1 hour ago": "1 orë më parë", + "We need your help!": "Na duhet ndihma jote!", + "6 minutes ago": "6 minuta më parë", + "Write a reply ...": "Shkruaj një përgjigje ...", + "App": "App", + "From email": "Nga emaili", + "User email title": "Titulli i emailit të përdoruesit", + "User email content": "Përmbajtja e postës elektronike të përdoruesit", + "Admin emails": "E-mail të administratorit", + "Admin email title": "Titulli i emailit të administratorit", + "Admin email content": "Përmbajtja e postës elektronike të administratorit", + "Redirect url": "Urdhëroni url", + "On success": "Në suksesin", + "Load": "ngarkesë", + "Success": "Sukses", + "Thank content": "Faleminderit për përmbajtjen", + "Choose a custom color": "Zgjidhni një ngjyrë të personalizuar", + "Choose a wallpaper": "Zgjidhni një letër-muri", + "Choose a logo": "Zgjidhni një logo", + "Visible online to visitor or customer": "Dukshme në internet për vizitorin ose klientin", + "Online messaging": "Mesazhe në internet", + "Welcome message": "Mesazhi i mirëseardhjes", + "Offline messaging": "Mesazheve offline", + "Away message": "Mesazh larg", + "Thank you message": "Faleminderit mesazh", + "Hours & Availability": "Orari & Disponueshmëria", + "Turn online/offline manually": "Kthejeni online / offline me dorë", + "Set to follow your schedule": "Vendosni të ndiqni orarin tuaj", + "Other configs": "Konfigurime të tjera", + "Notify customer": "Njoftoni klientin", + "Online hours": "Orët në internet", + "Add another time": "Shtoni një herë tjetër", + "Time zone": "Zona kohore", + "Messenger": "lajmëtar", + "Knowledge base": "Njohuri baze", + "Notification": "Njoftim", + "Notifications": "Njoftime", + "Show unread": "Trego të palexuar", + "Unread": "i palexuar", + "Recent": "i fundit", + "Mark all as read": "Shënoni të gjitha si të lexuara", + "Email Appearance": "Paraqitja e postës elektronike", + "Team Members": "Anëtarët e ekipit", + "Account default": "Default llogari", + "Team members": "Anëtarët e ekipit", + "Full name": "Emri i plotë", + "Leads": "Pop ups", + "Email Signature": "Nënshkrimi i postës elektronike", + "Response Template": "Modeli i përgjigjes", + "Email Template": "Modeli i postës elektronike", + "Response templates": "Modelet e reagimit", + "Email templates": "Modelet e postës elektronike", + "Brand Name": "Emri i markës", + "Current template": "Shablloni aktual", + "Created at": "Krijuar në", + "Manage Fields": "Menaxhoni fushat", + "Duplicate": "Duplicate", + "Code": "kod", + "Profile settings": "Cilësimet e profilit", + "Change Password": "Ndrysho fjalekalimin", + "Signatures are only included in response emails.": "Nënshkrimet përfshihen vetëm në postat elektronike të përgjigjes.", + "Signature template": "Modeli i nënshkrimit", + "You can use Markdown to format your signature.": "Ju mund të përdorni Markdown për të formatuar nënshkrimin tuaj.", + "Password": "fjalëkalim", + "Password confirmation": "konfirmimi i fjalëkalimit", + "Choose the channels": "Zgjidhni kanalet", + "Simple": "i thjeshtë", + "Custom": "me porosi", + "Create a new Company": "Krijoni një kompani të re", + "New Company": "Ndërmarrja e Re", + "Edit name": "Ndrysho emrin", + "Customer": "klient", + "Add tag": "Shtoni etiketë", + "Company": "kompani", + "New message ": "Mesazh i ri", + "There aren’t any activities at the moment.": "Nuk ka asnjë aktivitet për momentin.", + "This item is required": "Ky artikull kërkohet", + "Manage fields": "Menaxhoni fushat", + "Add integrations ": "Shtoni integrime", + "Form": "formë", + "Create a new Customer": "Krijoni një Klient të ri", + "New Customer": "Klient i ri", + "Segments": "segmentet", + "Add a condition": "Shtoni një kusht", + "Open": "hapur", + "Choose channel": "Zgjidhni kanalin", + "Who is this message for?": "Për kë është ky mesazh?", + "Compose your message": "Hartoni mesazhin tuaj", + "No items added": "Asnjë artikull i shtuar", + "Submit": "paraqes", + "Next": "tjetër", + "Save & Draft": "Ruaj draftin", + "Save & Live": "Ruani dhe jetoni", + "From:": "From:", + "Pages": "Faqet", + "Links": "Lidhjet", + "Enter your password to Confirm": "Vendosni fjalëkalimin tuaj për të konfirmuar", + "Number of visits": "Numri i vizitave", + "Written By": "Shkruar nga", + "Icon": "ikonë", + "draft": "draft", + "Twitter Username": "Emri i Twitter-it", + "LinkedIn": "LinkedIn", + "Youtube": "YouTube", + "Github": "Github", + "Edit response": "Ndryshoni përgjigjen", + "To send your message press Enter and Shift + Enter to add a new line": "Për të dërguar mesazhin tuaj shtypni Enter dhe Shift + Enter për të shtuar një rresht të ri", + "To send your note press Enter and Shift + Enter to add a new line": "Për të dërguar shënimin tuaj shtypni Enter dhe Shift + Enter për të shtuar një rresht të ri", + "Please enter an unit price. It should be a number": "Ju lutemi shkruani një çmim njësie. Duhet të jetë një numër", + "Type to search": "Tipi për të kërkuar", + "Members": "Anëtarët", + "Choose integrations": "Zgjidhni integrimet", + "Choose brands": "Zgjidhni markat", + "Select a date": "Zgjidhni një datë", + "Click to select a date": "Klikoni për të zgjedhur një datë", + "Choose users": "Zgjidhni përdoruesit", + "Select Brand": "Zgjidhni markën", + "Write here Welcome message.": "Shkruaj këtu mesazhin e mirëseardhjes.", + "Write here Away message.": "Shkruaj këtu mesazhin larg.", + "Write here Thank you message.": "Shkruaj këtu mesazh faleminderit.", + "Select app": "Zgjidhni aplikacionin", + "Enter new password": "Vendosni fjalëkalimin e ri", + "Choose channels": "Zgjidhni kanalet", + "Select": "zgjedh", + "select": "zgjedh", + "Choose members": "Zgjidhni anëtarët", + "Search": "Kërko", + "your@email.com": "your@email.com", + "password": "fjalëkalim", + "registered@email.com": "registered@email.com", + "new password": "fjalëkalim i ri", + "Start typing to leave a note": "Filloni të shtypni për të lënë një shënim", + "Re-type password": "Rishkruaje fjalëkalimin", + "Name:": "Emri:", + "Size:": "Size:", + "Website:": "Faqja e internetit:", + "Industry:": "Industria:", + "Plan:": "plan:", + "There arent't any groups and fields": "Nuk ka grupe dhe fusha", + "Please add property Group first": "Ju lutemi shtoni së pari Grupin e Pronë", + "Add group": "Shtoni grup", + "Add Property": "Shtoni pronën", + "Add Group & Field ": "Shtoni Grupin & Fushën", + "Add Group": "Shtoni grupin", + "Edit Property": "Redakto pronën", + "Group:": "Grupi:", + "There arent't any fields in this group": "Nuk ka asnjë fushë në këtë grup", + "Customer Properties": "Karakteristikat e klientit", + "Company Properties": "Prona të Kompanisë", + "Add an option": "Shtoni një mundësi", + "Copy to clipboard": "Kopjoni në klipin e klipit", + "Go to home page": "Shko tek faqja kryesore", + "Assign to": "Cakto për", + "Remove assignee": "Hiq caktuesin", + "Account settings": "Cilësimet e llogarisë", + "General Settings": "Cilësimet e përgjithshme", + "Integration Settings": "Cilësimet e integrimit", + "Personal settings": "Cilësimet personale", + "Add category": "Shto kategorinë", + "Filter": "filtër", + "Live": "jetojnë", + "Draft": "draft", + "Paused": "Paused", + "Your messages": "Mesazhet e tua", + "Delivered inside your app Reach active users": "Dorëzuar brenda aplikacionit tuaj Arritni përdoruesit aktivë", + "Delivered to a user s email inbox Customize with your own templates": "Dorëzuar në kutinë e postës elektronike të një përdoruesi Rregulloje me shabllonet e tua", + "email": "email", + "Create segment": "Krijoni segment", + "customers": "klientët", + "has any value": "ka ndonjë vlerë", + "is unknown": "nuk dihet", + "is not": "nuk eshte", + "is": "është", + "Less than": "Më pak se", + "City": "qytet", + "Greater than": "Më e madhe se", + "Country": "vend", + "Current page url": "Urla e faqes aktuale", + "Browser language": "Gjuha e shfletuesit", + "conversation": "bisedë", + "engageMessage": "engageMessage", + "customer": "klient", + "company": "kompani", + "starts with": "fillon me", + "ends with": "mbaron me", + "contains": "përmban", + "does not contain": "nuk permban", + "Basic Info": "Informacioni bazë", + "Add Phone": "Shtoni Telefon", + "Add Email": "Shtoni Email", + "Choose your tags": "Zgjidhni etiketat tuaja", + "Manage tags": "Menaxhoni etiketat", + "Edit Profile": "Ndrysho Profilin", + "Sign out": "Shenja", + "Last Updated By": "Përditësuar për herë të fundit nga", + "There is no channel": "Nuk ka asnjë kanal", + "Facebook page": "Faqe në Facebook", + "plan": "plan", + "Edit segment": "Redaktoni segmentin", + "New message": "Mesazh i ri", + "Message": "mesazh", + "Merge Customers": "Bashkoni Konsumatorët", + "Assign": "Cakto", + "There is no message.": "Nuk ka asnjë mesazh.", + "per page": "per faqe", + "[view]": "[pamje]", + "Go to twitter": "Shkoni në eksitim", + "Build": "Build", + "`s integration": "integrimi", + "Created": "krijuar", + "Email templates:": "Modelet e postës elektronike:", + "Content:": "përmbajtja:", + "Response Templates": "Modelet e reagimit", + "Merge Companies": "Bashkoni Kompanitë", + "Response template": "Modeli i përgjigjes", + "Attach file": "Bashkangjit skedarin", + "Upload": "Ngarkoni", + "ShoutBox": "ShoutBox", + "Popup": "Shfaqem", + "Embedded": "Embedded", + "Choose a flow type": "Zgjidhni një lloj fluksi", + "CallOut": "callout", + "Callout title": "Titulli i thirrjes", + "Callout body": "Trupi i thirrjes", + "Callout button text": "Teksti i butonit të thirrjes", + "Skip callOut": "Kalo thirrjen", + "Form button text": "Teksti i butonit të formularit", + "Theme color": "Ngjyra e temës", + "Featured image": "Imazhi i veçuar", + "Full Preview": "Paraprakisht e plotë", + "Try some of these colors:": "Provoni disa nga këto ngjyra:", + "Included fields": "Fushat e përfshira", + "Deal": "Tubacioni i shitjeve", + "Deals": "Tubacionet e shitjeve", + "New Product & Service": "Produkt dhe shërbim i ri", + "No product or services": "Asnjë produkt apo shërbim", + "UOM": "UOM", + "Quantity": "sasi", + "Unit price": "Mimi i njësisë", + "Discount": "zbritje", + "Tax": "taksë", + "Ticket": "biletë", + "Task": "detyrë", + "Select company": "Zgjidhni kompaninë", + "Select customer": "Zgjidhni klientin", + "Note": "shënim", + "Assigned to": "Caktuar për", + "Move": "veprim", + "Move deal": "Leviz marrëveshje", + "Copy": "kopje", + "Close date": "Data e mbylljes", + "Choose product & service": "Zgjidhni produktin dhe shërbimin", + "Select product & service": "Zgjidhni produktin dhe shërbimin", + "Please, select a close date": "Ju lutemi, zgjidhni një datë të afërt", + "Create a new Product": "Krijoni një Produkt të ri", + "New Product": "Produkt i ri", + "SKU": "SKU", + "Choose a company": "Zgjidhni një kompani", + "Choose a customer": "Zgjidhni një klient", + "Choose a board": "Zgjidhni një tabelë", + "Choose a pipeline": "Zgjidhni një tubacion", + "Manage Board & Pipeline": "Menaxhoni bordin dhe tubacionin", + "Choose a stage": "Zgjidhni një fazë", + "Deal Settings": "Cilësimet e tubacionit të shitjeve", + "Ticket Settings": "Cilësimet e biletave", + "Task Settings": "Cilësimet e detyrës", + "Boards & Pipelines": "Bordet dhe tubacionet", + "Product & Service": "Produkti dhe shërbimi", + "There is no pipeline in this board.": "Nuk ka tubacion në këtë bord.", + "There is no board": "Nuk ka bord", + "New Board": "Bordi i ri", + "Add pipeline": "Shtoni tubacionin", + "Create one": "Krijo nje", + "Edit pipeline": "Redaktoni tubacionin", + "Add stage": "Shtoni fazën", + "Board": "dërrasë", + "Pipeline": "gazsjellës", + "Stage": "Fazë", + "Stage name": "Emri i skenës", + "Add a deal": "Shtoni një marrëveshje", + "Add a task": "Shtoni një detyrë", + "Add a ticket": "Shtoni një biletë", + "Priority": "prioritet", + "Critical": "kritik", + "High": "i lartë", + "Normal": "normal", + "Low": "ulët", + "Attachments": "attachments", + "Source": "burim", + "Select a source": "Zgjidhni një burim", + "Upload an attachment": "Ngarko një shtojcë", + "Description": "Përshkrim", + "Select a priority": "Zgjidhni një përparësi", + "Edit deal": "Ndrysho marrëveshjen", + "Edit task": "Redaktoni detyrën", + "Edit ticket": "Redaktoni biletën", + "Add Product / Service": "Shtoni Produktin / Shërbimin", + "Reply tweet": "Përgjigju cicërimë", + "Tweet": "cicërimë", + "Details": "detalet", + "View Profile": "Shiko Profilin", + "Empty Notes": "Shënime bosh", + "Mini-resume": "Mini-rinisë", + "You cannot update this property": "Ju nuk mund të azhurnoni këtë pronë", + "Desktop": "Desktop", + "Mobile": "i lëvizshëm", + "Tablet": "tabletë", + "Amount": "sasi", + "Owner": "pronar", + "Department": "repart", + "Lead Status": "Statusi i pop-upve", + "Lifecycle State": "Gjendja e ciklit jetësor", + "Has Authority": "Ka autorizim", + "Do not disturb": "Mos shqeteso", + "Parent Company": "Kompania e prindërve", + "Business Type": "Lloji i biznesit", + "Employees count": "Numri i punonjësve", + "Yes": "po", + "No": "jo", + "Copied": "kopjuar", + "General": "i përgjithshëm", + "Currency": "monedhë", + "Unit of measurement": "Njësia e matjes", + "Create another board": "Krijoni një bord tjetër", + "No pipeline": "Asnjë tubacion", + "No stage": "Asnjë fazë", + "No deal": "Asnjë marrëveshje", + "Background": "sfond", + "Choose": "zgjedh", + "Successfully saved.": "Shpëtuar me sukses.", + "Successfully moved.": "Lëvizi me sukses.", + "Successfully selected.": "Zgjedhur me sukses.", + "Body description here": "Përshkrimi i trupit këtu", + "Thank you.": "Faleminderit.", + "Choose a brand": "Zgjidhni një markë", + "Write a title": "Shkruaj një titull", + "Contact": "kontakt", + "Created by": "Krijuar nga", + "Manage": "Menaxho", + "Dropdown": "dropdown", + "Slide-in Left": "Rrëshqitje në të majtë", + "Slide-in Right": "Rrëshqitje në të djathtë", + "Enter name": "Shkruani emrin", + "Delivered": "dorëzuar", + "Clicked": "klikuar", + "Complaint": "ankim", + "Bounce": "fryrje", + "Rendering Failure": "Dështimi i renditjes", + "Rejected": "refuzuar", + "Action": "veprim", + "Please select one to merge": "Ju lutemi zgjidhni një për t'u bashkuar", + "Filter by date": "Filtri sipas datës", + "Total conversations": "Biseda totale", + "Filter by form": "Filtri sipas formës", + "Supporters": "përkrahësit", + "Import histories": "Importoni histori", + "Imported Date": "Data e importuar", + "Imported User": "Përdoruesi i importuar", + "Export customers": "Eksportojnë klientët", + "Import customers": "Importoni klientët", + "Export companies": "Kompanitë eksportuese", + "Import companies": "Kompanitë e importit", + "All customers imported successfully": "Të gjithë klientët importuan me sukses", + "There aren't any imports": "Nuk ka asnjë import", + "Successfully Removed all customers": "Me sukses u larguan të gjithë klientët", + "You can only import max 600 at a time": "Mund të importoni vetëm max 600 në të njëjtën kohë", + "Invalid import type": "Lloji i pavlefshëm i importit", + "Last updated": "Përditësuar së fundmi", + "Filter by lead status": "Filter sipas statusit të Pop Ups", + "No lead status chosen": "Nuk është zgjedhur statusi i plumbit", + "Schedule:": "Orari:", + "Every Day": "Çdo ditë", + "Every Month": "Cdo muaj", + "Every Year": "Çdo vit", + "Every Monday": "Çdo të hënë", + "Every Tuesday": "Cdo te marte", + "Every Wednesday": "Wednesdaydo të mërkurë", + "Every Thursday": "Thursdaydo të enjte", + "Every Friday": "Cdo te premte", + "Every Saturday": "Çdo e shtunë", + "Every Sunday": "Çdo të dielë", + "Choose a schedule day": "Zgjidhni një ditë orari", + "Choose a schedule time": "Zgjidhni një kohë orari", + "Won": "Fitoi", + "Lost": "i humbur", + "App store": "Dyqani i Aplikacioneve", + "App store menu": "Menyja e dyqanit të aplikacioneve", + "In Progress": "Në progres", + "It`s size exceeds the limit 10mb": "Madhësia e saj tejkalon kufirin 10mb", + "Congrats! Your email sent successfully!": "Urime! E-maili juaj u dërgua me sukses!", + "Works with messenger": "Punon me të dërguarin", + "Knowledge base topic": "Tema e bazës së njohurive", + "Package version": "Versioni i paketës", + "Branch name": "Emri i degës", + "Abbreviated": "i shkurtuar", + "User": "përdorues", + "Recent conversations": "Bisedat e fundit", + "Start new conversation": "Filloni bisedën e re", + "Talk with support staff": "Bisedoni me stafin mbështetës", + "Send a message": "Dergo nje mesazh", + "Volume Report By Customer": "Raporti i vëllimit nga klienti", + "Export Report": "Raporti i eksportit", + "We`re ready to help you.": "Ne jemi gati për t'ju ndihmuar.", + "Please choose a product": "Ju lutemi zgjidhni një produkt", + "Please choose a currency": "Ju lutemi zgjidhni një monedhë", + "No board": "Asnjë bord", + "Empty": "bosh", + "There is no account.": "Nuk ka llogari.", + "There is no tag.": "Nuk ka asnjë etiketë.", + "Skip for now": "Kalo tani", + "Go to Inbox": "Shko te kutia postare", + "Messenger Language": "Gjuha e të dërguarit", + "Messenger name": "Emri i të dërguarit", + "Skip": "Skip", + "Finish": "finish", + "Show": "Shfaqje", + "Hide": "Hide", + "Previous": "i mëparshëm", + "Users": "përdoruesit", + "users": "përdoruesit", + "brands": "Marka", + "messengers": "dërguarit", + "channels": "kanalet", + "Emails": "Emails", + "Messengers": "Lajmëtarët", + "You already have": "Ju tashmë keni", + "There is another": "Shtë një tjetër", + "Let's create your brand": "Le të krijojmë markën tuaj", + "Invite users": "Ftoni përdoruesit", + "Let's grow your team": "Le të rritemi ekipi juaj", + "Invite": "ftoj", + "Let's start": "Le të fillojmë", + "Start messaging now!": "Filloni mesazheve tani!", + "Create channel": "Krijoni kanalin", + "Get started on your channel": "Filloni në kanalin tuaj", + "Create your first messenger": "Krijoni të dërguarin tuaj të parë", + "Welcome": "i mirëpritur", + "Nothing inserted": "Asgjë e futur", + "Empty emails": "E-mail bosh", + "Initial setup": "Vendosja fillestare", + "Add another": "Shto një tjetër", + "Don't show again": "Mos u shfaq përsëri", + "No other pipeline": "Asnjë tubacion tjetër", + "No other boards": "Asnjë bord tjetër", + "I'm ready to get started": "Unë jam gati për të filluar", + "Welcome paragraph": "Ne jemi shumë të lumtur që ju kemi. Le të bëjmë një moment për të të vendosur", + "Get notified and notify others to keep everything up to date": "Njoftohuni dhe njoftoni të tjerët që të mbajnë gjithçka të azhurnuar", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Nëse ekipi juaj nuk ka marrë mesazhe që keni dërguar në faqe, ne mund t'i dërgojmë ato me email", + "Send an email and notify members that they've been invited!": "Dërgoni një email dhe njoftoni anëtarët që ata janë ftuar!", + "January": "janar", + "February": "shkurt", + "March": "marsh", + "April": "prill", + "May": "Mund", + "June": "qershor", + "July": "korrik", + "August": "gusht", + "September": "shtator", + "October": "tetor", + "November": "nëntor", + "December": "dhjetor", + "Today": "sot", + "Sales": "Sales", + "Monthly view": "Pamje mujore", + "Filter by": "Filtro nga", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Krijimi i një marke dhe duke shtuar kanale, ju jeni në gjendje të analizoni më mirë nevojat e klientëve tuaj dhe të ndihmoni në zgjidhjen e problemeve të tyre", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Rriteni dhe shtoni përdoruesit në ekipin tuaj! Cakto, cakto dhe lërini të bëjnë atë që bëjnë më së miri", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Qëndroni të azhurnuar me çdo reagim të vetëm të klientit dhe krijoni biseda më kuptimplote", + "Create brand channels that are specifically categorized by type and activity": "Krijoni kanale të markave që kategorizohen posaçërisht sipas llojit dhe veprimtarisë", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Shtoni një Udhëheqje këtu dhe shikojeni atë në Widget-in tuaj të të Dërguarit! Për të parë Drejtimet në kutinë tuaj, sigurohuni që të shtohet në kanalin tuaj.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Ju mund të zgjidhni nga integrimet tona të shumë të dërguarve dhe të shtoni bazën tuaj të njohurive. Baza e njohurive do të shfaqet në skedën e widget-it tuaj të të dërguarit. Për ta bërë këtë, ju lutemi krijoni dhe shtoni bazën tuaj të njohurive.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "Një nënshkrim me email është një mundësi për të shkëmbyer informacione që ndihmojnë në ndërtimin e njohjes dhe besimit.", + "Let's start taking care of your customers": "Le të fillojmë të kujdesemi për klientët tuaj", + "Add in your first company!": "Shtoni në kompaninë tuaj të parë!", + "Choose from our many integrations and add to your channel": "Zgjidhni nga shumë integrimet tona dhe shtoni në kanalin tuaj", + "Let's get you messaging away!": "Le t'ju largojmë nga mesazhet!", + "Whoops! No messages here but you can always start": "Uh! Asnjë mesazh këtu, por gjithmonë mund të filloni", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Artikujt mund të adresojnë çdo numër problemesh që hasin klientët tuaj. Llojet e artikujve të njohurive mund të përfshijnë zgjidhje për çështje të zakonshme, dokumentacionin e produktit ose tipareve, FAQ dhe shumë më tepër.", + "Oops! No data here": "Oops! Asnjë të dhënë këtu", + "Start adding integrations now!": "Filloni të shtoni integrimet tani!", + "Add an integration in this Brand": "Shtoni një integrim në këtë Markë", + "Oh dear! You have no imports": "Oh e dashur! Ju nuk keni importe", + "A strong customer engagement can help to further brand growth and loyalty": "Një angazhim i fortë i klientit mund të ndihmojë në rritjen e mëtejshme të markës dhe besnikërinë", + "Get started on your pipeline": "Filloni në tubacionin tuaj", + "Connect to Facebook messages right from your Team Inbox": "Lidhuni me mesazhet në Facebook menjëherë nga Kutia juaj e Ekipit", + "Tweet back to your DMs right from your Team Inbox": "Kthehu në Tweet në DM-të tuaj menjëherë nga kutia e ekipit", + "Connect straight to your Gmail and get those emails going": "Lidheni drejtpërdrejt me Gmail-in tuaj dhe shkoni të shkoni ato email", + "Find your lead forms right here in your Widget": "Gjeni format tuaja kryesore drejtuar këtu në Widget tuaj", + "Get access to your Knowledge Base right in your Widget": "Merrni mundësinë e përdorimit të bazës së njohurive menjëherë në Widget tuaj", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Së shpejti do të keni mundësi të lidhni Viber drejtpërdrejt me kutinë tuaj të ekipit", + "Get a hold of your Whatsapp messages through your Team Inbox": "Merrni një mesazh të mesazheve tuaja në Whatsapp përmes kutisë tuaj të ekipit", + "Connect with Wechat and start messaging right from your Team Inbox": "Lidhu me Wechat dhe fillo mesazhet menjëherë nga kutia e skuadrës suaj", + "Find feedback that has been gathered from various customer engagement channels.": "Gjeni feedback që është mbledhur nga kanale të ndryshme të angazhimit të klientit.", + "A report on the total number of customer feedback responses given by team members.": "Një raport mbi numrin e përgjithshëm të përgjigjeve të reagimeve të klientëve të dhëna nga anëtarët e ekipit.", + "The average time a team member solved a problem based on customer feedback.": "Koha mesatare që një anëtar i ekipit zgjidhte një problem bazuar në reagimet e klientit.", + "You can find stats that defines the average response time by each team member.": "Ju mund të gjeni statistika që përcakton kohën mesatare të përgjigjes nga secili anëtar i ekipit.", + "Oh boy, looks like you need to get a head start on your deals": "O djalë, duket sikur duhet të fillosh në marrëveshjet e tua", + "Open segments and starting add details": "Hapni segmente dhe filloni të shtoni detaje", + "Now easier to find contacts according to your brand": "Tani më lehtë të gjesh kontakte sipas markës suaj", + "Search and filter customers by form": "Kërkoni dhe filtroni klientët sipas formës", + "There is always a lead!": "Gjithmonë ka një plumb!", + "Calendar": "kalendar", + "Columns": "Columns", + "columns": "kolona", + "Linked Accounts": "Llogaritë e lidhura", + "Select account": "Zgjidhni llogarinë", + "Select account ...": "Zgjidhni llogarinë ...", + "Add Account": "Shtoni Llogari", + "Remove Account": "Hiq Llogarinë", + "You can upload only image file": "Mund të ngarkoni vetëm skedarin e figurës .png ose .jpg", + "Permissions": "Permissions", + "New permission": "Leje e re", + "New group": "Grup i ri", + "Users groups": "Grupet e përdoruesve", + "Choose the module": "Zgjidhni modulin", + "Choose the actions": "Zgjidhni veprimet", + "Choose the users": "Zgjidhni përdoruesit", + "Choose the groups": "Zgjidhni grupet", + "Choose groups": "Zgjidhni grupe", + "Allow": "lejoj", + "Invitation Status": "Statusi i Ftesës", + "Permission": "leje", + "data successfully imported": "të dhënat e importuara me sukses", + "Show result": "Trego rezultatin", + "Importing": "Importimi", + "data": "të dhëna", + "errors acquired": "gabimet e fituara", + "There are": "Atje jane", + "Continue": "vazhdoj", + "Create brand": "Krijoni markë", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Krijoni mesazhin tuaj të parë në chat dhe mesazhet brenda aplikacionit. Qëndroni të azhurnuar me çdo reagim të klientit të vetëm për ndërveprime më kuptimplote.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Një kanal jep një pamje të plotë të të gjitha markave dhe aplikacioneve të tij të gjitha në një vend. Ju mund t'i shihni të gjitha mesazhet që vijnë në kutinë e ekipit tuaj.", + "Hooray and Congratulations! You've completed the initial setup!": "Hooray dhe Urime! Ju keni përfunduar konfigurimin fillestar!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Vendosni kodin më poshtë para shënoni në çdo faqe ku dëshironi të shfaqet chat erxes.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Vendosni kodin më poshtë para etiketës së trupit në çdo faqe që dëshironi të shfaqen erxetë", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Nëse lloji juaj i rrjedhës është ngulitur, ngjitni edhe kodin më poshtë që dëshironi të shfaqen erxhet", + "If your flow type is popup paste the code below additionally in your button": "Nëse lloji juaj i rrjedhës është shfaqur, ngjitni kodin më poshtë në butonin tuaj", + "Choose messengers": "Zgjidhni lajmëtarët", + "erxes allows you to create multiple messengers": "erxes ju lejon të krijoni mesazhe të shumta", + "erxes allows you to create multiple brands": "erxes ju lejon të krijoni marka të shumta", + "erxes allows you to create multiple channels": "erxes ju lejon të krijoni kanale të shumta", + "Contacts": "Kontaktet", + "Create group": "Krijoni grup", + "Visitors": "vizitorët", + "Due in the next day": "Për shkak të ditës tjetër", + "Due in the next week": "Për shkak të javës tjetër", + "Due in the next month": "Detyrimi në muajin tjetër", + "Has no close date": "Nuk ka asnjë datë të afërt", + "Over due": "Për shkak", + "Clear Filter": "Filtër i qartë", + "Remove this filter": "Hiq këtë filtër", + "Filtering is on": "Filtrimi është i ndezur", + "Choose products": "Zgjidhni produkte", + "Choose companies": "Zgjidhni kompanitë", + "Choose customers": "Zgjidhni klientët", + "Choose team members": "Zgjidhni anëtarët e ekipit", + "erxes Inc": "erxes Inc", + "Get": "Marr", + "Download ios app for free on the App Store": "Shkarkoni falas aplikacionin ios në App Store.", + "Download android app for free on the Google play": "Shkarkoni aplikacionin android falas në lojën Google.", + "Please upgrade your browser to use erxes!": "Ju lutemi përditësoni shfletuesin tuaj për të përdorur erxes!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Për fat të keq, Ju jeni duke ekzekutuar në një shfletues që mund të mos jetë plotësisht në përputhje me erxes.", + "Please use recommended version": "Ju lutemi përdorni versionin e rekomanduar", + "Messenger data": "Të dhënat e të dërguarit", + "Customer field data": "Të dhënat e fushës së klientit", + "Others": "Të tjerët", + "Select brand": "Zgjidhni markën", + "There is no permissions in this group": "Nuk ka leje në këtë grup.", + "There is no group": "Nuk ka asnjë grup.", + "User groups": "Grupet e përdoruesve", + "What action can do": "Actionfarë veprimi mund të bëjë", + "Who can": "Kush mund", + "Grant permission": "Leje për leje", + "Check if permission is allowed": "Kontrolloni nëse leja është e lejuar", + "Then": "atëherë", + "Or": "ose", + "Auto message description": "Dërgoni e-mail të synuar dhe chat për përdoruesit e regjistruar bazuar në markën / etiketën / segmentin e tyre. Mund të caktoni kohën tuaj për të dërguar një email ose bisedë paraprakisht. Dizajni i bisedës mund të shihet, distinktiv dhe mesazh i plotë dhe ai mund të jetë një tekst ose video.", + "Manual message description": "Dërgoni e-mail të synuar dhe chat për përdoruesit e regjistruar bazuar në markën / etiketën / segmentin e tyre. Një email ose chat do të dërgohen menjëherë pasi të klikoni butonin ruaj. Dizajni i bisedës mund të shihet, distinktiv dhe mesazh i plotë dhe ai mund të jetë një tekst ose video.", + "Visitor auto message description": "Dërgoni biseda të synuara për vizitorët e loguar në uebfaqe bazuar në faqen e tyre të vizitës, aktivitetin, vendin e tyre të vendbanimit dhe qytetin. Dizajni i bisedës mund të shihet, distinktiv dhe mesazh i plotë dhe ai mund të jetë një tekst ose video.", + "Required field": "Fusha e kërkuar!", + "Invalid email format! Please enter a valid email address": "Formati i pavlefshëm i emailit! Ju lutemi shkruani një adresë të vlefshme emaili.", + "Invalid link": "Lidhje e pavlefshme!", + "Maximum length is": "Gjatësia maksimale është", + "characters": "karaktere!", + "Invalid number format! Please enter a valid number": "Formati i numrit të pavlefshëm! Ju lutemi shkruani një numër të vlefshëm.", + "Insert email template to content": "Vendosni modelin e postës elektronike në përmbajtje", + "Logs": "Shkrime", + "There are no logs recorded": "Nuk ka asnjë regjistër të regjistruar", + "Module": "modul", + "Unchanged fields": "Fushat e pandryshuara", + "Changed fields": "Fushat e ndryshuara", + "Create": "krijoj", + "Update": "Update", + "Changes": "ndryshimet", + "Choose start date": "Zgjidhni datën e fillimit", + "Choose end date": "Zgjidhni datën e mbarimit", + "Permission denied": "Leja u mohua", + "Old data": "Të dhëna të vjetra", + "New data": "Të dhëna të reja", + "Archive": "Arkivi", + "NetworkError": "Përpjekja për të rivendosur lidhjen. Ndryshimet e bëra tani mund të mos ruhen.", + "Email add account description question": "A po lidhni një llogari të përbashkët me email?", + "Email add account description": "Kur e lidhni një email me kutinë e bisedave, po e lidh si një llogari të përbashkët. Mesazhet e dërguara në llogaritë e përbashkëta mund të shihen nga të gjithë ata që kanë qasje në kutinë e ekipit tuaj.", + "No connected email": "Asnjë email i lidhur", + "Your email will be sent with Erxes email template": "Emaili juaj do të dërgohet me modelin e-mail të Erxes" +} diff --git a/ui/src/locales/ta.json b/ui/src/locales/ta.json new file mode 100644 index 00000000000..4d4b3b2cad5 --- /dev/null +++ b/ui/src/locales/ta.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "நீ சொல்வது உறுதியா? இதை முடிக்காமல் விட கூடாது.", + "Yes, I am": "ஆமாம் நான்தான்", + "No, Cancel": "இல்லை, ரத்துசெய்", + "Filter by tags": "குறிச்சொற்களால் வடிகட்டவும்", + "There is no data": "தரவு இல்லை", + "There is no data.": "தரவு இல்லை.", + "Load more": "அதிகமாக ஏற்று", + "There aren't any activities at the moment.": "தற்போது எந்த நடவடிக்கைகளும் இல்லை.", + "Reset your password": "உங்கள் கடவுச்சொல்லை மீட்டமைக்க", + "Email me the instruction": "அறிவுறுத்தலை எனக்கு மின்னஞ்சல் செய்யவும்", + "Sign in": "உள்நுழைக", + "Change password": "கடவுச்சொல்லை மாற்று", + "Set your new password": "உங்கள் புதிய கடவுச்சொல்லை அமைக்கவும்", + "Forgot password?": "கடவுச்சொல்லை மறந்துவிட்டீர்களா?", + "Photo": "புகைப்பட", + "Name": "பெயர்", + "Views": "பார்வைகள்", + "Conversion": "மாற்றம்", + "Go to import": "இறக்குமதி செய்யச் செல்லவும்", + "Conversion rate": "மாற்று விகிதம்", + "Contacts gathered": "தொடர்புகள் சேகரிக்கப்பட்டன", + "Create lead": "பாப் அப்களை உருவாக்கவும்", + "Form title": "படிவத்தின் தலைப்பு", + "Related": "Related", + "Form description": "படிவ விளக்கம்", + "Position": "நிலை", + "Username": "பயனர்பெயர்", + "Email": "மின்னஞ்சல்", + "sec": "நொடி", + "Twitter username": "ட்விட்டர் பயனர்பெயர்", + "Inbox": "உட்பெட்டி", + "Workflow": "பணியோட்ட", + "Watch": "வாட்ச்", + "Watching": "கவனித்தல்", + "Team Inbox": "குழு இன்பாக்ஸ்", + "Customers": "வாடிக்கையாளர்கள்", + "Companies": "நிறுவனங்கள்", + "Engage": "ஈடுபடுங்கள்", + "Insights": "உள்ளுணர்வை", + "Knowledge Base": "அறிவு சார்ந்த", + "Settings": "அமைப்புகள்", + "Resolve": "தீர்", + "Send": "அனுப்புக", + "No company": "எந்த நிறுவனமும் இல்லை", + "No customer": "வாடிக்கையாளர் இல்லை", + "Not tagged yet": "இதுவரை குறிக்கப்படவில்லை", + "New note": "புதிய குறிப்பு", + "Conversation": "உரையாடல்", + "Notes": "குறிப்புக்கள்", + "Activity": "நடவடிக்கை", + "Basic info": "அடிப்படை தகவல்", + "Size": "அளவு", + "Other": "மற்ற", + "Industry": "தொழில்", + "Website": "இணையதளம்", + "Plan": "திட்டம்", + "About": "பற்றி", + "Discard": "நிராகரி", + "Save": "சேமி", + "Create response template": "மறுமொழி வார்ப்புருவை உருவாக்கவும்", + "Associate": "இணை", + "No tags": "குறிச்சொற்கள் இல்லை", + "Add customer": "வாடிக்கையாளரைச் சேர்க்கவும்", + "No segments": "பகுதிகள் இல்லை", + "Manage Columns": "நெடுவரிசைகளை நிர்வகிக்கவும்", + "New customer": "புதிய வாடிக்கையாளர்", + "Add company": "நிறுவனத்தைச் சேர்க்கவும்", + "New company": "புதிய நிறுவனம்", + "Choose which column you see": "நீங்கள் பார்க்கும் நெடுவரிசையைத் தேர்வுசெய்க", + "There is no engage message.": "ஈடுபாட்டு செய்தி இல்லை.", + "Add Knowledge base": "அறிவுத் தளத்தைச் சேர்க்கவும்", + "Add knowledge base.": "அறிவுத் தளத்தைச் சேர்க்கவும்.", + "New Channel": "புதிய சேனல்", + "Edit": "தொகு", + "Edit basic info": "அடிப்படை தகவலைத் திருத்தவும்", + "Manage integration": "ஒருங்கிணைப்பை நிர்வகிக்கவும்", + "Manage Integration": "ஒருங்கிணைப்பை நிர்வகிக்கவும்", + "Choose new brand": "புதிய பிராண்டைத் தேர்வுசெய்க", + "Edit integration": "ஒருங்கிணைப்பைத் திருத்து", + "Integration": "ஒருங்கிணைப்பு", + "Integration menu": "ஒருங்கிணைப்பு மெனு", + "New Brand": "புதிய பிராண்ட்", + "Add facebook page": "ஃபேஸ்புக் பக்கத்தைச் சேர்க்கவும்", + "Add integrations": "ஒருங்கிணைப்புகளைச் சேர்க்கவும்", + "Add messenger": "தூதரைச் சேர்க்கவும்", + "There is no lead.": "ஈயம் இல்லை.", + "New response template": "புதிய பதில் வார்ப்புரு", + "Cancel": "ரத்து", + "Public": "பொது", + "Private": "தனியார்", + "New email template": "புதிய மின்னஞ்சல் டெம்ப்ளேட்", + "Local publisher's email template": "உள்ளூர் வெளியீட்டாளரின் மின்னஞ்சல் வார்ப்புரு", + "New user": "புதிய பயனர்", + "Load More": "அதிகமாக ஏற்று", + "Session count": "அமர்வு எண்ணிக்கை", + "Last seen at": "கடைசியாக பார்த்தது", + "Tags": "குறிச்சொற்கள்", + "Member": "உறுப்பினர்", + "Remove": "அகற்று", + "No companies added yet!": "எந்த நிறுவனங்களும் இதுவரை சேர்க்கப்படவில்லை!", + "Merge": "ஒன்றிணைப்பு", + "First Name": "முதல் பெயர்", + "Last Name": "கடைசி பெயர்", + "First name": "முதல் பெயர்", + "Last name": "கடைசி பெயர்", + "Primary Email": "முதன்மை மின்னஞ்சல்", + "Phone": "தொலைபேசி", + "Is user": "பயனர்", + "Save & New": "சேமி & புதியது", + "Save & Close": "சேமி & மூடு", + "Close": "நெருக்கமான", + "Customer properties": "வாடிக்கையாளர் பண்புகள்", + "Device properties": "சாதன பண்புகள்", + "Location": "இருப்பிடம்", + "Browser": "உலாவி", + "Platform": "நடைமேடை", + "IP Address": "ஐபி முகவரி", + "Hostname": "ஹோஸ்ட்பெயர்", + "Language": "மொழி", + "User Agent": "பயனர் முகவர்", + "Other properties": "பிற பண்புகள்", + "Facebook": "முகநூல்", + "Facebook profile": "பேஸ்புக் சுயவிவரம்", + "Messenger usage": "தூதர் பயன்பாடு", + "Status": "நிலைமை", + "Online": "நிகழ்நிலை", + "Offline": "ஆஃப்லைன்", + "Twitter": "ட்விட்டர்", + "Twitter quote": "ட்விட்டர் மேற்கோள்", + "Retweet": "மறு ட்வீட் செய்க", + "Screen name": "திரை பெயர்", + "Don't see the result you're looking for? ": "நீங்கள் தேடும் முடிவைக் காணவில்லையா?", + "Merged Info": "இணைக்கப்பட்ட தகவல்", + "E-mail": "மின்னஞ்சல்", + "Integrations": "ஒருங்கிணைவுகளையும்-", + "integration": "ஒருங்கிணைப்பு", + "Brands": "பிராண்ட்ஸ்", + "Start date": "தொடக்க தேதி", + "End date": "கடைசி தேதி", + "lead": "பாப் அப்கள்", + "twitter": "ட்விட்டர்", + "facebook": "முகநூல்", + "messenger": "தூதுவர்", + "Title": "தலைப்பு", + "Brand": "பிராண்ட்", + "Current Password": "தற்போதைய கடவுச்சொல்", + "Current password": "தற்போதைய கடவுச்சொல்", + "New Password": "புதிய கடவுச்சொல்", + "Re-type Password to confirm": "உறுதிப்படுத்த கடவுச்சொல்லை மீண்டும் தட்டச்சு செய்க", + "Signature": "கையொப்பம்", + "simple": "எளிய", + "custom": "விருப்ப", + "default": "இயல்புநிலை", + "default language": "இயல்புநிலை மொழி", + "primary": "முதன்மை", + "Content": "உள்ளடக்கம்", + "Save & draft": "சேமி & வரைவு", + "Save & live": "சேமி & வாழ", + "Message:": "செய்தி:", + "Email template:": "மின்னஞ்சல் வார்ப்புரு:", + "Email subject:": "மின்னஞ்சல் பொருள்:", + "From": "இருந்து", + "Message type:": "செய்தி வகை:", + "Sent as:": "அனுப்பியது:", + "Brand:": "பிராண்ட்:", + "Add rule": "விதியைச் சேர்க்கவும்", + "Last online": "கடைசியாக ஆன்லைனில்", + "No Activities": "செயல்பாடுகள் இல்லை", + "There is no customer.": "வாடிக்கையாளர் இல்லை.", + "Properties": "பண்புகள்", + "Customize ": "தனிப்பயனாக்கலாம்", + "Kind": "கருணை", + "All": "அனைத்து", + "Auto": "ஆட்டோ", + "Visitor auto": "பார்வையாளர் ஆட்டோ", + "Manual": "கையேடு", + "Delivered to a user s email inbox": "பயனரின் மின்னஞ்சல் இன்பாக்ஸிற்கு வழங்கப்பட்டது", + "Customize with your own templates": "உங்கள் சொந்த வார்ப்புருக்கள் மூலம் தனிப்பயனாக்கவும்", + "Delivered inside your app": "உங்கள் பயன்பாட்டிற்குள் வழங்கப்பட்டது", + "Reach active users": "செயலில் உள்ள பயனர்களை அடையவும்", + "Channel": "சேனல்", + "Edit columns": "நெடுவரிசைகளைத் திருத்து", + "Auto message": "தானியங்கு செய்தி", + "Manual message": "கையேடு செய்தி", + "Visitor auto message": "பார்வையாளர் தானியங்கு செய்தி", + "Actions": "செயல்கள்", + "Created date": "உருவாக்கிய தேதி", + "Type": "வகை", + "Failed": "தோல்வி", + "Sent": "அனுப்பப்பட்டது", + "Total": "மொத்தம்", + "Pause": "இடைநிறுத்தம்", + "Set live": "நேரலை அமைக்கவும்", + "Sending": "அனுப்புதல்", + "Delete": "அழி", + "Choose segment": "பிரிவைத் தேர்வுசெய்க", + "To:": "பெறுநர்:", + "Messenger kind:": "தூதர் வகை:", + "Title:": "தலைப்பு", + "Channel:": "சேனல்", + "No items": "உருப்படிகள் இல்லை", + "New": "புதிய", + "Options:": "விருப்பங்கள்:", + "Options": "விருப்பங்கள்", + "Type:": "தட்டச்சு:", + "Add": "கூட்டு", + "Validation:": "சரிபார்த்தல்", + "Date": "தேதி", + "Number": "எண்", + "Text:": "உரை:", + "Description:": "விளக்கம்:", + "This item is requried": "இந்த உருப்படி மறுபரிசீலனை செய்யப்படுகிறது", + "Preview": "முன்னோட்ட", + "Column name": "நெடுவரிசை பெயர்", + "Visible": "தெரியும்", + "Visibility": "தன்மை", + "Choose person": "நபரைத் தேர்வுசெய்க", + "Conversation Details": "உரையாடல் விவரங்கள்", + "Opened": "திறக்கப்பட்ட", + "Conversations": "உரையாடல்கள்", + "Channels": "சேனல்கள்", + "Select all": "அனைத்தையும் தெரிவுசெய்", + "Filter by tag": "குறிச்சொல் மூலம் வடிகட்டவும்", + "Filter by integrations": "ஒருங்கிணைப்புகளால் வடிகட்டவும்", + "Filter by brand": "பிராண்ட் மூலம் வடிகட்டவும்", + "Filter by channel": "சேனல் மூலம் வடிகட்டவும்", + "Filter by status": "நிலை மூலம் வடிகட்டவும்", + "# Channel": "# சேனல்", + "Unassigned": "ஒதுக்கப்படாத", + "Participating": "பங்குபெறும்", + "Resolved": "தீர்க்கப்பட்ட", + "View more": "மேலும் பார்க்க", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "வாடிக்கையாளர் ஆஃப்லைனில் இருக்கிறார். செய்திகளை மறைக்க மற்றும் அனுப்ப கிளிக் செய்க, அடுத்த முறை அவர்கள் ஆன்லைனில் இருக்கும்போது அவற்றைப் பெறுவார்கள்.", + "No templates": "வார்ப்புருக்கள் இல்லை", + "Save as template": "வார்ப்புருவாக சேமிக்கவும்", + "Daily First Response Resolve Rate": "தினசரி முதல் பதில் விகிதம் தீர்க்க", + "Daily First Response Resolve Rate by Team Members": "குழு உறுப்பினர்களால் தினசரி முதல் பதில் தீர்வு விகிதம்", + "Daily Response Close Resolve Rate by Team Members": "குழு உறுப்பினர்களால் தினசரி பதில் மூடு தீர்வு விகிதம்", + "Volume Report": "தொகுதி அறிக்கை", + "Feedbacks gathered through various customer engagement channels.": "பல்வேறு வாடிக்கையாளர் ஈடுபாட்டு சேனல்கள் மூலம் கருத்துக்கள் சேகரிக்கப்பட்டன.", + "Response Report": "மறுமொழி அறிக்கை", + "Total number of response for customer feedbacks, by each staff.": "ஒவ்வொரு ஊழியர்களிடமிருந்தும் வாடிக்கையாளர் கருத்துக்களுக்கான மொத்த பதில்களின் எண்ணிக்கை.", + "Response Close Report": "பதில் மூடு அறிக்கை", + "Average time of each staff solving problems that based on customer feedbacks.": "வாடிக்கையாளர் பின்னூட்டங்களை அடிப்படையாகக் கொண்ட சிக்கல்களைத் தீர்க்க ஒவ்வொரு ஊழியரின் சராசரி நேரம்.", + "First Response Report": "முதல் பதில் அறிக்கை", + "Responding time for a single feedback. Stats will define average response time by each staff.": "ஒற்றை கருத்துக்கு பதிலளிக்கும் நேரம். புள்ளிவிவரங்கள் ஒவ்வொரு ஊழியரின் சராசரி மறுமொழி நேரத்தை வரையறுக்கும்.", + "Daily Response Close Resolve Rate": "தினசரி பதில் மூடு தீர்க்கும் வீதம்", + "Daily Response Close Resolve rate by Team Members": "குழு உறுப்பினர்களால் தினசரி மறுமொழி மூடு விகிதம்", + "Response Times summary": "மறுமொழி நேரங்களின் சுருக்கம்", + "Response Trend": "மறுமொழி போக்கு", + "Punch card": "பன்ச் கார்ட்", + "Response by team members": "குழு உறுப்பினர்களின் பதில்", + "Tag": "டேக்", + "Internal note": "உள் குறிப்பு", + "Manage templates": "வார்ப்புருக்களை நிர்வகிக்கவும்", + "Volume summary": "தொகுதி சுருக்கம்", + "Volume Trend": "தொகுதி போக்கு", + "Summary": "சுருக்கம்", + "Install code": "குறியீட்டை நிறுவவும்", + "No copyable code": "நகலெடுக்கக்கூடிய குறியீடு இல்லை", + "Manage Knowledge Base": "அறிவுத் தளத்தை நிர்வகிக்கவும்", + "Add Category": "வகையைச் சேர்க்கவும்", + "Add Article": "கட்டுரை சேர்க்கவும்", + "Customer engagement. REDEFINED.": "வாடிக்கையாளரை ஈடுபடுத்துதல். மறுவரையறை செய்தது.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes என்பது ஒரு AI என்பது விற்பனை, சந்தைப்படுத்தல் மற்றும் ஆதரவுக்கான திறந்த மூல செய்தி தளத்தை சந்திக்கிறது", + "404. This page is not found.": "404. இந்தப் பக்கம் காணப்படவில்லை.", + "erxes is an open-source messaging platform for customer success": "erxes என்பது வாடிக்கையாளர் வெற்றிக்கான திறந்த மூல செய்தி தளமாகும்", + "Notification settings": "அறிவிப்பு அமைப்புகள்", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "அதிக ஈடுபாடு கொண்ட வாடிக்கையாளர்களை ஈர்க்க உங்கள் வணிகத்திற்கு உதவும் வகையில் வடிவமைக்கப்பட்ட சந்தைப்படுத்தல், விற்பனை மற்றும் வாடிக்கையாளர் சேவை தளம். ஹப்ஸ்பாட்டை பணி மற்றும் சமூகத்தால் இயக்கப்படும் சுற்றுச்சூழல் அமைப்புடன் மாற்றவும்.", + "Mark Page Read": "பக்கத்தைப் குறிக்கவும்", + "Mark All Read": "அனைத்தையும் படிக்க குறிக்கவும்", + "Coming soon": "விரைவில்", + "Looks like you are all caught up": "நீங்கள் அனைவரும் பிடிபட்டது போல் தெரிகிறது", + "AI": "ஏஐ", + "See all": "அனைத்தையும் பார்", + "Select a field": "ஒரு புலத்தைத் தேர்ந்தெடுக்கவும்", + "Add condition": "நிபந்தனையைச் சேர்க்கவும்", + "Parent segment conditions": "பெற்றோர் பிரிவு நிலைமைகள்", + "Filter by segments": "பிரிவுகளால் வடிகட்டவும்", + "New segment": "புதிய பிரிவு", + "Manage segments": "பிரிவுகளை நிர்வகிக்கவும்", + "Users who match": "பொருந்தும் பயனர்கள்", + "any": "எந்த", + "all": "அனைத்து", + "of the below conditions": "கீழே உள்ள நிபந்தனைகளின்", + "Sub segment of": "இன் துணை பிரிவு", + "Color": "நிறம்", + "Filters": "வடிகட்டிகள்", + "User(s) will recieve this message": "பயனர் (கள்) இந்த செய்தியைப் பெறுவார்கள்", + "Color code": "வண்ண குறியீடு", + "Engage Message": "செய்தியில் ஈடுபடுங்கள்", + "Item counts": "உருப்படி எண்ணிக்கை", + "Appearance": "தோற்றம்", + "Hours, Availability & Other configs": "மணிநேரம், கிடைக்கும் தன்மை மற்றும் பிற கட்டமைப்புகள்", + "There is no brand": "பிராண்ட் இல்லை", + "There is no integration in this channel.": "இந்த சேனலில் எந்த ஒருங்கிணைப்பும் இல்லை.", + "Template markup": "வார்ப்புரு மார்க்அப்", + "Use html template here": "HTML வார்ப்புருவை இங்கே பயன்படுத்தவும்", + "Choose your email template type": "உங்கள் மின்னஞ்சல் வார்ப்புரு வகையைத் தேர்வுசெய்க", + "Email signatures": "மின்னஞ்சல் கையொப்பங்கள்", + "Personal Settings": "தனிப்பட்ட அமைப்புகள்", + "Account Settings": "கணக்கு அமைப்புகள்", + "Profile": "பதிவு செய்தது", + "Get notification by email": "மின்னஞ்சல் மூலம் அறிவிப்பைப் பெறுங்கள்", + "Admin": "நிர்வாகம்", + "Contributor": "பங்களிப்பாளர்", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "நாங்கள் உங்களை அன்போடு வரவேற்கிறோம், எங்களுடன் நீண்ட கால ஆரோக்கியமான உழைக்கும் சங்கத்தை எதிர்பார்க்கிறோம்.", + "Hi, any questions?": "ஹாய், ஏதேனும் கேள்விகள் உள்ளதா?", + "1 hour ago": "1 மணி நேரத்திற்கு முன்பு", + "We need your help!": "உங்களின் உதவி எங்களுக்கு தேவை!", + "6 minutes ago": "6 நிமிடங்களுக்கு முன்பு", + "Write a reply ...": "பதில் எழுதவும் ...", + "App": "செயலி", + "From email": "மின்னஞ்சலில் இருந்து", + "User email title": "பயனர் மின்னஞ்சல் தலைப்பு", + "User email content": "பயனர் மின்னஞ்சல் உள்ளடக்கம்", + "Admin emails": "நிர்வாக மின்னஞ்சல்கள்", + "Admin email title": "நிர்வாக மின்னஞ்சல் தலைப்பு", + "Admin email content": "நிர்வாக மின்னஞ்சல் உள்ளடக்கம்", + "Redirect url": "திருப்பி url", + "On success": "வெற்றியில்", + "Load": "சுமை", + "Success": "வெற்றி", + "Thank content": "உள்ளடக்கத்திற்கு நன்றி", + "Choose a custom color": "தனிப்பயன் வண்ணத்தைத் தேர்வுசெய்க", + "Choose a wallpaper": "வால்பேப்பரைத் தேர்வுசெய்க", + "Choose a logo": "லோகோவைத் தேர்வுசெய்க", + "Visible online to visitor or customer": "பார்வையாளர் அல்லது வாடிக்கையாளருக்கு ஆன்லைனில் தெரியும்", + "Online messaging": "ஆன்லைன் செய்தி", + "Welcome message": "வரவேற்பு செய்தி", + "Offline messaging": "ஆஃப்லைன் செய்தி", + "Away message": "அவே செய்தி", + "Thank you message": "நன்றி செய்தி", + "Hours & Availability": "மணி & கிடைக்கும்", + "Turn online/offline manually": "கைமுறையாக ஆன்லைன் / ஆஃப்லைனை இயக்கவும்", + "Set to follow your schedule": "உங்கள் அட்டவணையைப் பின்பற்ற அமைக்கவும்", + "Other configs": "பிற கட்டமைப்புகள்", + "Notify customer": "வாடிக்கையாளருக்கு அறிவிக்கவும்", + "Online hours": "ஆன்லைன் நேரம்", + "Add another time": "மற்றொரு நேரத்தைச் சேர்க்கவும்", + "Time zone": "நேரம் மண்டலம்", + "Messenger": "தூதர்", + "Knowledge base": "அறிவு சார்ந்த", + "Notification": "அறிவித்தல்", + "Notifications": "அறிவிப்புகள்", + "Show unread": "படிக்காததைக் காட்டு", + "Unread": "படிக்காத", + "Recent": "அண்மையில்", + "Mark all as read": "அனைத்தையும் வாசிக்கப்பட்டதாக அடையாளமிடு", + "Email Appearance": "மின்னஞ்சல் தோற்றம்", + "Team Members": "குழு உறுப்பினர்கள்", + "Account default": "கணக்கு இயல்புநிலை", + "Team members": "குழு உறுப்பினர்கள்", + "Full name": "முழு பெயர்", + "Leads": "பாப் அப்கள்", + "Email Signature": "மின்னஞ்சல் கையொப்பம்", + "Response Template": "பதில் வார்ப்புரு", + "Email Template": "மின்னஞ்சல் வார்ப்புரு", + "Response templates": "பதில் வார்ப்புருக்கள்", + "Email templates": "மின்னஞ்சல் வார்ப்புருக்கள்", + "Brand Name": "பிராண்ட் பெயர்", + "Current template": "தற்போதைய வார்ப்புரு", + "Created at": "இல் உருவாக்கப்பட்டது", + "Manage Fields": "புலங்களை நிர்வகிக்கவும்", + "Duplicate": "பிரதி", + "Code": "குறியீடு", + "Profile settings": "சுயவிவர அமைப்புகள்", + "Change Password": "கடவுச்சொல்லை மாற்று", + "Signatures are only included in response emails.": "பதில்கள் மின்னஞ்சல்களில் மட்டுமே கையொப்பங்கள் சேர்க்கப்பட்டுள்ளன.", + "Signature template": "கையொப்ப வார்ப்புரு", + "You can use Markdown to format your signature.": "உங்கள் கையொப்பத்தை வடிவமைக்க நீங்கள் மார்க் டவுனைப் பயன்படுத்தலாம்.", + "Password": "கடவுச்சொல்", + "Password confirmation": "கடவுச்சொல் உறுதிப்படுத்தல்", + "Choose the channels": "சேனல்களைத் தேர்வுசெய்க", + "Simple": "எளிய", + "Custom": "விருப்ப", + "Create a new Company": "புதிய நிறுவனத்தை உருவாக்கவும்", + "New Company": "புதிய நிறுவனம்", + "Edit name": "பெயரைத் திருத்து", + "Customer": "வாடிக்கையாளர்", + "Add tag": "குறிச்சொல்லைச் சேர்", + "Company": "நிறுவனம்", + "New message ": "புதிய தகவல்", + "There aren’t any activities at the moment.": "தற்போது எந்த நடவடிக்கைகளும் இல்லை.", + "This item is required": "இந்த உருப்படி தேவை", + "Manage fields": "புலங்களை நிர்வகிக்கவும்", + "Add integrations ": "ஒருங்கிணைப்புகளைச் சேர்க்கவும்", + "Form": "படிவம்", + "Create a new Customer": "புதிய வாடிக்கையாளரை உருவாக்கவும்", + "New Customer": "புதிய வாடிக்கையாளர்", + "Segments": "பிரிவுக", + "Add a condition": "ஒரு நிபந்தனையைச் சேர்க்கவும்", + "Open": "திறந்த", + "Choose channel": "சேனலைத் தேர்வுசெய்க", + "Who is this message for?": "இந்த செய்தி யாருக்கானது?", + "Compose your message": "உங்கள் செய்தியை எழுதுங்கள்", + "No items added": "உருப்படிகள் எதுவும் சேர்க்கப்படவில்லை", + "Submit": "சமர்ப்பி", + "Next": "அடுத்தது", + "Save & Draft": "சேமி & வரைவு", + "Save & Live": "சேமி & வாழ", + "From:": "இருந்து:", + "Pages": "பக்கங்கள்", + "Links": "இணைப்புகள்", + "Enter your password to Confirm": "உறுதிப்படுத்த உங்கள் கடவுச்சொல்லை உள்ளிடவும்", + "Number of visits": "வருகைகளின் எண்ணிக்கை", + "Written By": "எழுதியவர்", + "Icon": "ஐகான்", + "draft": "வரைவு", + "Twitter Username": "ட்விட்டர் பயனர்பெயர்", + "LinkedIn": "சென்டர்", + "Youtube": "வலைஒளி", + "Github": "கிட்ஹப்", + "Edit response": "பதிலைத் திருத்து", + "To send your message press Enter and Shift + Enter to add a new line": "உங்கள் செய்தியை அனுப்ப புதிய வரியைச் சேர்க்க Enter மற்றும் Shift + Enter ஐ அழுத்தவும்", + "To send your note press Enter and Shift + Enter to add a new line": "உங்கள் குறிப்பை அனுப்ப புதிய வரியைச் சேர்க்க Enter மற்றும் Shift + Enter ஐ அழுத்தவும்", + "Please enter an unit price. It should be a number": "யூனிட் விலையை உள்ளிடவும். அது ஒரு எண்ணாக இருக்க வேண்டும்", + "Type to search": "தேட தட்டச்சு செய்க", + "Members": "உறுப்பினர்கள்", + "Choose integrations": "ஒருங்கிணைப்புகளைத் தேர்வுசெய்க", + "Choose brands": "பிராண்டுகளைத் தேர்வுசெய்க", + "Select a date": "தேதியைத் தேர்ந்தெடுக்கவும்", + "Click to select a date": "தேதியைத் தேர்ந்தெடுக்க கிளிக் செய்க", + "Choose users": "பயனர்களைத் தேர்வுசெய்க", + "Select Brand": "பிராண்டைத் தேர்ந்தெடுக்கவும்", + "Write here Welcome message.": "இங்கே எழுது வரவேற்பு செய்தி.", + "Write here Away message.": "இங்கே எழுது செய்தி.", + "Write here Thank you message.": "இங்கே எழுது நன்றி செய்தி.", + "Select app": "பயன்பாட்டைத் தேர்ந்தெடுக்கவும்", + "Enter new password": "புதிய கடவுச்சொல்லை உள்ளிடவும்", + "Choose channels": "சேனல்களைத் தேர்வுசெய்க", + "Select": "தேர்வு", + "select": "தேர்வு", + "Choose members": "உறுப்பினர்களைத் தேர்வுசெய்க", + "Search": "தேடல்", + "your@email.com": "your@email.com", + "password": "கடவுச்சொல்", + "registered@email.com": "registered@email.com", + "new password": "புதிய கடவுச்சொல்", + "Start typing to leave a note": "குறிப்பை விட தட்டச்சு செய்யத் தொடங்குங்கள்", + "Re-type password": "கடவுச்சொல்லை மீண்டும் தட்டச்சு செய்க", + "Name:": "பெயர்:", + "Size:": "அளவு:", + "Website:": "இணையதளம்:", + "Industry:": "தொழில்:", + "Plan:": "திட்டம்:", + "There arent't any groups and fields": "எந்த குழுக்களும் புலங்களும் இல்லை", + "Please add property Group first": "முதலில் சொத்து குழுவைச் சேர்க்கவும்", + "Add group": "குழுவைச் சேர்க்கவும்", + "Add Property": "சொத்து சேர்க்க", + "Add Group & Field ": "குழு & புலம் சேர்க்கவும்", + "Add Group": "குழுவைச் சேர்க்கவும்", + "Edit Property": "சொத்தைத் திருத்து", + "Group:": "குழு:", + "There arent't any fields in this group": "இந்த குழுவில் எந்த துறைகளும் இல்லை", + "Customer Properties": "வாடிக்கையாளர் பண்புகள்", + "Company Properties": "நிறுவனத்தின் பண்புகள்", + "Add an option": "ஒரு விருப்பத்தைச் சேர்க்கவும்", + "Copy to clipboard": "கிளிப்போர்டுக்கு நகலெடுக்கவும்", + "Go to home page": "முகப்பு பக்கத்திற்கு செல்லவும்", + "Assign to": "ஒதுக்கு", + "Remove assignee": "ஒதுக்கீட்டாளரை அகற்று", + "Account settings": "கணக்கு அமைப்புகள்", + "General Settings": "பொது அமைப்புகள்", + "Integration Settings": "ஒருங்கிணைப்பு அமைப்புகள்", + "Personal settings": "தனிப்பட்ட அமைப்புகள்", + "Add category": "வகையைச் சேர்க்கவும்", + "Filter": "வடிகட்டி", + "Live": "நேரடி", + "Draft": "வரைவு", + "Paused": "இடைநிறுத்தப்பட்டது", + "Your messages": "உங்கள் செய்திகள்", + "Delivered inside your app Reach active users": "உங்கள் பயன்பாட்டில் வழங்கப்பட்டது செயலில் உள்ள பயனர்களை அடையவும்", + "Delivered to a user s email inbox Customize with your own templates": "பயனரின் மின்னஞ்சல் இன்பாக்ஸிற்கு வழங்கப்பட்டது உங்கள் சொந்த வார்ப்புருக்கள் மூலம் தனிப்பயனாக்கவும்", + "email": "மின்னஞ்சல்", + "Create segment": "பிரிவை உருவாக்கவும்", + "customers": "வாடிக்கையாளர்கள்", + "has any value": "எந்த மதிப்பும் உள்ளது", + "is unknown": "தெரியவில்லை", + "is not": "இல்லை", + "is": "இருக்கிறது", + "Less than": "குறைவாக", + "City": "நகரம்", + "Greater than": "விட பெரியது", + "Country": "நாடு", + "Current page url": "தற்போதைய பக்க url", + "Browser language": "உலாவி மொழி", + "conversation": "உரையாடல்", + "engageMessage": "engageMessage", + "customer": "வாடிக்கையாளர்", + "company": "நிறுவனம்", + "starts with": "தொடங்குகிறது", + "ends with": "உடன் முடிகிறது", + "contains": "கொண்டிருந்தால்", + "does not contain": "கொண்டிருக்கும் இல்லை", + "Basic Info": "அடிப்படை தகவல்", + "Add Phone": "தொலைபேசியைச் சேர்க்கவும்", + "Add Email": "மின்னஞ்சல் சேர்க்கவும்", + "Choose your tags": "உங்கள் குறிச்சொற்களைத் தேர்வுசெய்க", + "Manage tags": "குறிச்சொற்களை நிர்வகிக்கவும்", + "Edit Profile": "சுயவிவரத்தைத் திருத்து", + "Sign out": "வெளியேறு", + "Last Updated By": "கடைசியாக புதுப்பிக்கப்பட்டது", + "There is no channel": "சேனல் இல்லை", + "Facebook page": "பேஸ்புக் பக்கம்", + "plan": "திட்டம்", + "Edit segment": "பிரிவைத் திருத்து", + "New message": "புதிய தகவல்", + "Message": "செய்தி", + "Merge Customers": "வாடிக்கையாளர்களை இணைக்கவும்", + "Assign": "ஒதுக்க", + "There is no message.": "எந்த செய்தியும் இல்லை.", + "per page": "ஒரு பக்கத்திற்கு", + "[view]": "[பார்வை]", + "Go to twitter": "ட்விட்டருக்குச் செல்லுங்கள்", + "Build": "உருவாக்க", + "`s integration": "ஒருங்கிணைப்பு", + "Created": "உருவாக்கப்பட்டது", + "Email templates:": "மின்னஞ்சல் வார்ப்புருக்கள்:", + "Content:": "உள்ளடக்கம்:", + "Response Templates": "பதில் வார்ப்புருக்கள்", + "Merge Companies": "நிறுவனங்களை ஒன்றிணைத்தல்", + "Response template": "பதில் வார்ப்புரு", + "Attach file": "கோப்பினை இணைக்கவும்", + "Upload": "பதிவேற்றம்", + "ShoutBox": "சவுட்பாக்ஸ்", + "Popup": "மேல்மீட்பு", + "Embedded": "பதிக்கப்பட்ட", + "Choose a flow type": "ஓட்ட வகையைத் தேர்வுசெய்க", + "CallOut": "கூப்பிடு", + "Callout title": "கால்அவுட் தலைப்பு", + "Callout body": "கால்அவுட் உடல்", + "Callout button text": "கால்அவுட் பொத்தான் உரை", + "Skip callOut": "CallOut ஐத் தவிர்", + "Form button text": "படிவம் பொத்தான் உரை", + "Theme color": "தீம் நிறம்", + "Featured image": "சிறப்பு புகைப்படம்", + "Full Preview": "முழு முன்னோட்டம்", + "Try some of these colors:": "இந்த வண்ணங்களில் சிலவற்றை முயற்சிக்கவும்:", + "Included fields": "சேர்க்கப்பட்ட புலங்கள்", + "Deal": "விற்பனை குழாய்", + "Deals": "விற்பனை குழாய்வழிகள்", + "New Product & Service": "புதிய தயாரிப்பு & சேவை", + "No product or services": "தயாரிப்பு அல்லது சேவைகள் இல்லை", + "UOM": "UOM", + "Quantity": "அளவு", + "Unit price": "அலகு விலை", + "Discount": "தள்ளுபடி", + "Tax": "வரி", + "Ticket": "டிக்கட்", + "Task": "டாஸ்க்", + "Select company": "நிறுவனத்தைத் தேர்ந்தெடுக்கவும்", + "Select customer": "வாடிக்கையாளரைத் தேர்ந்தெடுக்கவும்", + "Note": "குறிப்பு", + "Assigned to": "ஒதுக்கப்படும்", + "Move": "நகர்வு", + "Move deal": "ஒப்பந்தத்தை நகர்த்தவும்", + "Copy": "நகல்", + "Close date": "இறுதி தேதி", + "Choose product & service": "தயாரிப்பு மற்றும் சேவையைத் தேர்வுசெய்க", + "Select product & service": "தயாரிப்பு மற்றும் சேவையைத் தேர்ந்தெடுக்கவும்", + "Please, select a close date": "தயவுசெய்து, நெருங்கிய தேதியைத் தேர்ந்தெடுக்கவும்", + "Create a new Product": "புதிய தயாரிப்பை உருவாக்கவும்", + "New Product": "புதிய தயாரிப்பு", + "SKU": "எழு", + "Choose a company": "ஒரு நிறுவனத்தைத் தேர்வுசெய்க", + "Choose a customer": "ஒரு வாடிக்கையாளரைத் தேர்வுசெய்க", + "Choose a board": "ஒரு பலகையைத் தேர்வுசெய்க", + "Choose a pipeline": "பைப்லைனைத் தேர்வுசெய்க", + "Manage Board & Pipeline": "வாரியம் மற்றும் பைப்லைனை நிர்வகிக்கவும்", + "Choose a stage": "ஒரு கட்டத்தைத் தேர்வுசெய்க", + "Deal Settings": "விற்பனை பைப்லைன் அமைப்புகள்", + "Ticket Settings": "டிக்கெட் அமைப்புகள்", + "Task Settings": "பணி அமைப்புகள்", + "Boards & Pipelines": "பலகைகள் மற்றும் குழாய்வழிகள்", + "Product & Service": "தயாரிப்பு & சேவை", + "There is no pipeline in this board.": "இந்த குழுவில் குழாய் இல்லை.", + "There is no board": "போர்டு இல்லை", + "New Board": "புதிய வாரியம்", + "Add pipeline": "குழாய் சேர்க்கவும்", + "Create one": "ஒன்றை உருவாக்கவும்", + "Edit pipeline": "பைப்லைனைத் திருத்து", + "Add stage": "மேடை சேர்க்கவும்", + "Board": "வாரியம்", + "Pipeline": "பைப்லைன்", + "Stage": "மேடை", + "Stage name": "மேடை பெயர்", + "Add a deal": "ஒரு ஒப்பந்தத்தைச் சேர்க்கவும்", + "Add a task": "ஒரு பணியைச் சேர்க்கவும்", + "Add a ticket": "டிக்கெட் சேர்க்கவும்", + "Priority": "முன்னுரிமை", + "Critical": "விமர்சன", + "High": "உயர்", + "Normal": "இயல்பான", + "Low": "குறைந்த", + "Attachments": "இணைப்புகள்", + "Source": "மூல", + "Select a source": "ஒரு மூலத்தைத் தேர்ந்தெடுக்கவும்", + "Upload an attachment": "ஒரு இணைப்பைப் பதிவேற்றுக", + "Description": "விளக்கம்", + "Select a priority": "முன்னுரிமையைத் தேர்ந்தெடுக்கவும்", + "Edit deal": "ஒப்பந்தத்தைத் திருத்து", + "Edit task": "பணியைத் திருத்து", + "Edit ticket": "டிக்கெட்டைத் திருத்து", + "Add Product / Service": "தயாரிப்பு / சேவையைச் சேர்க்கவும்", + "Reply tweet": "பதில் ட்வீட்", + "Tweet": "ட்வீட்", + "Details": "விவரங்கள்", + "View Profile": "சுயவிவரம் காண", + "Empty Notes": "வெற்று குறிப்புகள்", + "Mini-resume": "மினி-விண்ணப்பத்தை", + "You cannot update this property": "இந்த சொத்தை நீங்கள் புதுப்பிக்க முடியாது", + "Desktop": "மேசை", + "Mobile": "கைபேசி", + "Tablet": "டேப்லெட்", + "Amount": "தொகை", + "Owner": "உரிமையாளர்", + "Department": "துறை", + "Lead Status": "பாப் அப்ஸ் நிலை", + "Lifecycle State": "வாழ்க்கை சுழற்சி நிலை", + "Has Authority": "அதிகாரம் உள்ளது", + "Do not disturb": "தொந்தரவு செய்யாதீர்", + "Parent Company": "பெற்றோர் நிறுவனம்", + "Business Type": "தொழில் வகை", + "Employees count": "ஊழியர்கள் எண்ணிக்கை", + "Yes": "ஆம்", + "No": "இல்லை", + "Copied": "நகலெடுக்கப்பட்டன", + "General": "பொது", + "Currency": "நாணய", + "Unit of measurement": "அளவீட்டு அலகு", + "Create another board": "மற்றொரு பலகையை உருவாக்கவும்", + "No pipeline": "குழாய் இல்லை", + "No stage": "மேடை இல்லை", + "No deal": "ஒப்பந்தம் இல்லை", + "Background": "பின்னணி", + "Choose": "தேர்வு", + "Successfully saved.": "வெற்றிகரமாக சேமிக்கப்பட்டது.", + "Successfully moved.": "வெற்றிகரமாக நகர்த்தப்பட்டது.", + "Successfully selected.": "வெற்றிகரமாக தேர்ந்தெடுக்கப்பட்டது.", + "Body description here": "உடல் விளக்கம் இங்கே", + "Thank you.": "நன்றி.", + "Choose a brand": "ஒரு பிராண்டைத் தேர்வுசெய்க", + "Write a title": "ஒரு தலைப்பை எழுதுங்கள்", + "Contact": "தொடர்பு", + "Created by": "உருவாக்கியது", + "Manage": "நிர்வகிக்கவும்", + "Dropdown": "கீழே போடு", + "Slide-in Left": "ஸ்லைடு-இன் இடது", + "Slide-in Right": "ஸ்லைடு-இன் வலது", + "Enter name": "பெயரை உள்ளிடுக", + "Delivered": "டெலிவரி செய்யப்பட்டது", + "Clicked": "கிளிக்செய்யப்பட்டுள்ளது", + "Complaint": "புகார்", + "Bounce": "பவுன்ஸ்", + "Rendering Failure": "ரெண்டரிங் தோல்வி", + "Rejected": "நிராகரிக்கப்பட்டது", + "Action": "அதிரடி", + "Please select one to merge": "ஒன்றிணைக்க தயவுசெய்து ஒன்றைத் தேர்ந்தெடுக்கவும்", + "Filter by date": "தேதி வாரியாக வடிகட்டவும்", + "Total conversations": "மொத்த உரையாடல்கள்", + "Filter by form": "படிவத்தால் வடிகட்டவும்", + "Supporters": "ஆதரவாளர்கள்", + "Import histories": "வரலாறுகளை இறக்குமதி செய்க", + "Imported Date": "இறக்குமதி செய்யப்பட்ட தேதி", + "Imported User": "இறக்குமதி செய்யப்பட்ட பயனர்", + "Export customers": "வாடிக்கையாளர்களை ஏற்றுமதி செய்யுங்கள்", + "Import customers": "வாடிக்கையாளர்களை இறக்குமதி செய்க", + "Export companies": "ஏற்றுமதி நிறுவனங்கள்", + "Import companies": "நிறுவனங்களை இறக்குமதி செய்க", + "All customers imported successfully": "அனைத்து வாடிக்கையாளர்களும் வெற்றிகரமாக இறக்குமதி செய்யப்பட்டனர்", + "There aren't any imports": "எந்த இறக்குமதியும் இல்லை", + "Successfully Removed all customers": "அனைத்து வாடிக்கையாளர்களையும் வெற்றிகரமாக நீக்கியது", + "You can only import max 600 at a time": "நீங்கள் ஒரு நேரத்தில் அதிகபட்சம் 600 ஐ மட்டுமே இறக்குமதி செய்ய முடியும்", + "Invalid import type": "தவறான இறக்குமதி வகை", + "Last updated": "கடைசியாக புதுப்பிக்கப்பட்டது", + "Filter by lead status": "பாப் அப்ஸ் நிலை மூலம் வடிகட்டவும்", + "No lead status chosen": "முன்னணி நிலை எதுவும் தேர்ந்தெடுக்கப்படவில்லை", + "Schedule:": "அட்டவணை:", + "Every Day": "தினமும்", + "Every Month": "ஒவ்வொரு மாதமும்", + "Every Year": "ஒவ்வொரு வருடமும்", + "Every Monday": "ஒவ்வொரு திங்கட்கிழமையும்", + "Every Tuesday": "பிரதி செவ்வாய்தோறும்", + "Every Wednesday": "ஒவ்வொரு புதன்கிழமையும்", + "Every Thursday": "ஒவ்வொரு வியாழக்கிழமை", + "Every Friday": "ஒவ்வொரு வெள்ளிக்கிழமையும்", + "Every Saturday": "ஒவ்வொரு ஞாயிற்றுக்கிழமையும்", + "Every Sunday": "ஒவ்வொரு ஞாயிறு", + "Choose a schedule day": "ஒரு அட்டவணை நாளைத் தேர்வுசெய்க", + "Choose a schedule time": "அட்டவணை நேரத்தைத் தேர்வுசெய்க", + "Won": "வென்றது", + "Lost": "லாஸ்ட்", + "App store": "ஆப் ஸ்டோர்", + "App store menu": "பயன்பாட்டு அங்காடி மெனு", + "In Progress": "முன்னேற்றத்தில் உள்ளது", + "It`s size exceeds the limit 10mb": "இதன் அளவு 10mb வரம்பை மீறுகிறது", + "Congrats! Your email sent successfully!": "வாழ்த்துக்கள்! உங்கள் மின்னஞ்சல் வெற்றிகரமாக அனுப்பப்பட்டது!", + "Works with messenger": "தூதருடன் வேலை செய்கிறது", + "Knowledge base topic": "அறிவு அடிப்படை தலைப்பு", + "Package version": "தொகுப்பு பதிப்பு", + "Branch name": "கிளை பெயர்", + "Abbreviated": "சுருக்கப்பட்ட", + "User": "பயனர்", + "Recent conversations": "சமீபத்திய உரையாடல்கள்", + "Start new conversation": "புதிய உரையாடலைத் தொடங்கவும்", + "Talk with support staff": "ஆதரவு ஊழியர்களுடன் பேசுங்கள்", + "Send a message": "செய்தி அனுப்புங்கள்", + "Volume Report By Customer": "வாடிக்கையாளர் தொகுதி அறிக்கை", + "Export Report": "ஏற்றுமதி அறிக்கை", + "We`re ready to help you.": "உங்களுக்கு உதவ நாங்கள் தயாராக உள்ளோம்.", + "Please choose a product": "ஒரு தயாரிப்பு தேர்வு செய்யவும்", + "Please choose a currency": "தயவுசெய்து நாணயத்தைத் தேர்வுசெய்க", + "No board": "பலகை இல்லை", + "Empty": "காலியாக", + "There is no account.": "கணக்கு இல்லை.", + "There is no tag.": "குறிச்சொல் இல்லை.", + "Skip for now": "இப்போதைக்கு தவிர்", + "Go to Inbox": "இன்பாக்ஸுக்குச் செல்லவும்", + "Messenger Language": "தூதர் மொழி", + "Messenger name": "தூதரின் பெயர்", + "Skip": "தவிர்", + "Finish": "பினிஷ்", + "Show": "காட்டு", + "Hide": "மறை", + "Previous": "முந்தைய", + "Users": "பயனர்கள்", + "users": "பயனர்கள்", + "brands": "பிராண்டுகள்", + "messengers": "தூதுவர்கள்", + "channels": "சேனல்கள்", + "Emails": "மின்னஞ்சல்கள்", + "Messengers": "தூதர்கள்", + "You already have": "உங்களிடம் ஏற்கனவே உள்ளது", + "There is another": "இன்னொன்று இருக்கிறது", + "Let's create your brand": "உங்கள் பிராண்டை உருவாக்குவோம்", + "Invite users": "பயனர்களை அழைக்கவும்", + "Let's grow your team": "உங்கள் அணியை வளர்ப்போம்", + "Invite": "அழைக்கவும்", + "Let's start": "ஆரம்பிக்கலாம்", + "Start messaging now!": "இப்போது செய்தி அனுப்பத் தொடங்குங்கள்!", + "Create channel": "சேனலை உருவாக்கவும்", + "Get started on your channel": "உங்கள் சேனலில் தொடங்கவும்", + "Create your first messenger": "உங்கள் முதல் தூதரை உருவாக்கவும்", + "Welcome": "வரவேற்பு", + "Nothing inserted": "எதுவும் செருகப்படவில்லை", + "Empty emails": "வெற்று மின்னஞ்சல்கள்", + "Initial setup": "ஆரம்ப அமைப்பு", + "Add another": "இன்னொன்றை சேர்", + "Don't show again": "மீண்டும் காட்ட வேண்டாம்", + "No other pipeline": "வேறு குழாய் இல்லை", + "No other boards": "வேறு பலகைகள் இல்லை", + "I'm ready to get started": "தொடங்குவதற்கு நான் தயாராக இருக்கிறேன்", + "Welcome paragraph": "உங்களைப் பெற்றதில் நாங்கள் மிகவும் மகிழ்ச்சியடைகிறோம். நீங்கள் அமைக்க சிறிது நேரம் ஒதுக்குவோம்", + "Get notified and notify others to keep everything up to date": "எல்லாவற்றையும் புதுப்பித்த நிலையில் வைத்திருக்க மற்றவர்களுக்கு அறிவிக்கவும்", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "தளத்தில் நீங்கள் அனுப்பிய செய்திகளை உங்கள் குழு பெறவில்லை என்றால், நாங்கள் அதை அவர்களுக்கு மின்னஞ்சல் வழியாக அனுப்பலாம்", + "Send an email and notify members that they've been invited!": "ஒரு மின்னஞ்சல் அனுப்பவும், உறுப்பினர்கள் அழைக்கப்பட்டுள்ளதை அவர்களுக்கு தெரிவிக்கவும்!", + "January": "ஜனவரி", + "February": "பிப்ரவரி", + "March": "மார்ச்", + "April": "ஏப்ரல்", + "May": "மே", + "June": "ஜூன்", + "July": "ஜூலை", + "August": "ஆகஸ்ட்", + "September": "செப்டம்பர்", + "October": "அக்டோபர்", + "November": "நவம்பர்", + "December": "டிசம்பர்", + "Today": "இன்று", + "Sales": "விற்பனை", + "Monthly view": "மாதாந்திர பார்வை", + "Filter by": "மூலம் வடிகட்டவும்", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "ஒரு பிராண்டை உருவாக்குவது மற்றும் சேனல்களைச் சேர்ப்பதன் மூலம், உங்கள் வாடிக்கையாளர்களின் தேவைகளை சிறப்பாக ஆராய்ந்து அவர்களின் பிரச்சினைகளைத் தீர்க்க உதவ முடியும்", + "Grow and add users to your team! Assign, designate and let them do what they do best": "வளர்ந்து உங்கள் அணியில் பயனர்களைச் சேர்க்கவும்! நியமிக்கவும், நியமிக்கவும், அவர்கள் சிறந்ததைச் செய்யட்டும்", + "Stay up to date with every single customer feedback and create more meaningful conversations": "ஒவ்வொரு வாடிக்கையாளர் பின்னூட்டங்களுடனும் புதுப்பித்த நிலையில் இருங்கள், மேலும் அர்த்தமுள்ள உரையாடல்களை உருவாக்கவும்", + "Create brand channels that are specifically categorized by type and activity": "வகை மற்றும் செயல்பாட்டின் அடிப்படையில் குறிப்பாக வகைப்படுத்தப்பட்ட பிராண்ட் சேனல்களை உருவாக்கவும்", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "இங்கே ஒரு லீட் சேர்த்து உங்கள் மெசஞ்சர் விட்ஜெட்டில் பார்க்கவும்! உங்கள் இன்பாக்ஸில் வழிநடத்தல்களைக் காண, இது உங்கள் சேனலில் சேர்க்கப்பட்டுள்ளதா என்பதை உறுதிப்படுத்தவும்.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "எங்கள் பல தூதர் ஒருங்கிணைப்புகளிலிருந்து நீங்கள் தேர்வுசெய்து உங்கள் அறிவுத் தளத்தில் சேர்க்கலாம். உங்கள் தூதர் விட்ஜெட்டின் தாவலில் அறிவுத் தளம் தோன்றும். இதைச் செய்ய, தயவுசெய்து உங்கள் அறிவுத் தளத்தை உருவாக்கி சேர்க்கவும்.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "மின்னஞ்சல் கையொப்பம் என்பது அங்கீகாரத்தையும் நம்பிக்கையையும் உருவாக்க உதவும் தகவல்களைப் பகிர ஒரு வாய்ப்பாகும்.", + "Let's start taking care of your customers": "உங்கள் வாடிக்கையாளர்களை கவனித்துக்கொள்வோம்", + "Add in your first company!": "உங்கள் முதல் நிறுவனத்தில் சேர்!", + "Choose from our many integrations and add to your channel": "எங்கள் பல ஒருங்கிணைப்புகளிலிருந்து தேர்ந்தெடுத்து உங்கள் சேனலில் சேர்க்கவும்", + "Let's get you messaging away!": "உங்களுக்கு செய்தி அனுப்புவோம்!", + "Whoops! No messages here but you can always start": "அச்சச்சோ! இங்கே செய்திகள் எதுவும் இல்லை, ஆனால் நீங்கள் எப்போதும் தொடங்கலாம்", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "உங்கள் வாடிக்கையாளர்கள் எதிர்கொள்ளும் எத்தனை பிரச்சினைகளையும் கட்டுரைகள் தீர்க்க முடியும். அறிவு கட்டுரைகளின் வகைகளில் பொதுவான சிக்கல்கள், தயாரிப்பு அல்லது அம்ச ஆவணங்கள், கேள்விகள் மற்றும் பலவற்றிற்கான தீர்வுகள் அடங்கும்.", + "Oops! No data here": "அச்சச்சோ! இங்கே தரவு இல்லை", + "Start adding integrations now!": "ஒருங்கிணைப்புகளை இப்போது சேர்க்கத் தொடங்குங்கள்!", + "Add an integration in this Brand": "இந்த பிராண்டில் ஒரு ஒருங்கிணைப்பைச் சேர்க்கவும்", + "Oh dear! You have no imports": "அன்பே! உங்களிடம் இறக்குமதி எதுவும் இல்லை", + "A strong customer engagement can help to further brand growth and loyalty": "ஒரு வலுவான வாடிக்கையாளர் ஈடுபாடு மேலும் பிராண்ட் வளர்ச்சி மற்றும் விசுவாசத்திற்கு உதவும்", + "Get started on your pipeline": "உங்கள் குழாய்த்திட்டத்தில் தொடங்கவும்", + "Connect to Facebook messages right from your Team Inbox": "உங்கள் குழு இன்பாக்ஸிலிருந்து பேஸ்புக் செய்திகளுடன் இணைக்கவும்", + "Tweet back to your DMs right from your Team Inbox": "உங்கள் குழு இன்பாக்ஸிலிருந்து உங்கள் டிஎம்களுக்கு மீண்டும் ட்வீட் செய்யவும்", + "Connect straight to your Gmail and get those emails going": "உங்கள் ஜிமெயிலுடன் நேராக இணைத்து அந்த மின்னஞ்சல்களைப் பெறுங்கள்", + "Find your lead forms right here in your Widget": "உங்கள் முன்னணி படிவங்களை உங்கள் விட்ஜெட்டில் இங்கே காணலாம்", + "Get access to your Knowledge Base right in your Widget": "உங்கள் விட்ஜெட்டில் உங்கள் அறிவுத் தளத்தை அணுகவும்", + "Soon you'll be able to connect Viber straight to your Team Inbox": "விரைவில் நீங்கள் உங்கள் குழு இன்பாக்ஸுடன் Viber ஐ நேரடியாக இணைக்க முடியும்", + "Get a hold of your Whatsapp messages through your Team Inbox": "உங்கள் குழு இன்பாக்ஸ் மூலம் உங்கள் வாட்ஸ்அப் செய்திகளைப் பிடிக்கவும்", + "Connect with Wechat and start messaging right from your Team Inbox": "வெச்சாட் உடன் இணைத்து, உங்கள் குழு இன்பாக்ஸிலிருந்து செய்தியைத் தொடங்கவும்", + "Find feedback that has been gathered from various customer engagement channels.": "பல்வேறு வாடிக்கையாளர் ஈடுபாட்டு சேனல்களிலிருந்து சேகரிக்கப்பட்ட கருத்துகளைக் கண்டறியவும்.", + "A report on the total number of customer feedback responses given by team members.": "குழு உறுப்பினர்கள் வழங்கிய வாடிக்கையாளர் கருத்து பதில்களின் மொத்த எண்ணிக்கை குறித்த அறிக்கை.", + "The average time a team member solved a problem based on customer feedback.": "வாடிக்கையாளர் பின்னூட்டத்தின் அடிப்படையில் ஒரு குழு உறுப்பினர் ஒரு சிக்கலை தீர்க்கும் சராசரி நேரம்.", + "You can find stats that defines the average response time by each team member.": "ஒவ்வொரு குழு உறுப்பினரின் சராசரி மறுமொழி நேரத்தை வரையறுக்கும் புள்ளிவிவரங்களை நீங்கள் காணலாம்.", + "Oh boy, looks like you need to get a head start on your deals": "ஓ பையன், உங்கள் ஒப்பந்தங்களைத் தொடங்க வேண்டும் என்று தெரிகிறது", + "Open segments and starting add details": "பிரிவுகளைத் திறந்து விவரங்களைச் சேர்க்கத் தொடங்குங்கள்", + "Now easier to find contacts according to your brand": "உங்கள் பிராண்டின் படி தொடர்புகளைக் கண்டறிவது இப்போது எளிதானது", + "Search and filter customers by form": "படிவத்தின் மூலம் வாடிக்கையாளர்களைத் தேடி வடிகட்டவும்", + "There is always a lead!": "எப்போதும் ஒரு முன்னணி இருக்கிறது!", + "Calendar": "நாட்காட்டி", + "Columns": "பத்திகள்", + "columns": "பத்திகள்", + "Linked Accounts": "இணைக்கப்பட்ட கணக்குகள்", + "Select account": "கணக்கைத் தேர்ந்தெடுக்கவும்", + "Select account ...": "கணக்கைத் தேர்ந்தெடுக்கவும் ...", + "Add Account": "கணக்கு சேர்க்க", + "Remove Account": "கணக்கை அகற்று", + "You can upload only image file": "நீங்கள் .png அல்லது .jpg படக் கோப்பை மட்டுமே பதிவேற்ற முடியும்", + "Permissions": "அனுமதிகள்", + "New permission": "புதிய அனுமதி", + "New group": "புதிய குழு", + "Users groups": "பயனர்கள் குழுக்கள்", + "Choose the module": "தொகுதியைத் தேர்வுசெய்க", + "Choose the actions": "செயல்களைத் தேர்வுசெய்க", + "Choose the users": "பயனர்களைத் தேர்வுசெய்க", + "Choose the groups": "குழுக்களைத் தேர்வுசெய்க", + "Choose groups": "குழுக்களைத் தேர்வுசெய்க", + "Allow": "அனுமதி", + "Invitation Status": "அழைப்பிதழ் நிலை", + "Permission": "அனுமதி", + "data successfully imported": "தரவு வெற்றிகரமாக இறக்குமதி செய்யப்பட்டது", + "Show result": "முடிவைக் காட்டு", + "Importing": "இறக்குமதி", + "data": "தகவல்கள்", + "errors acquired": "பிழைகள் பெறப்பட்டன", + "There are": "உள்ளன", + "Continue": "தொடர்ந்து", + "Create brand": "பிராண்டை உருவாக்கவும்", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "உங்கள் முதல் நேரடி அரட்டை மற்றும் பயன்பாட்டு செய்தியிடலை உருவாக்கவும். மேலும் அர்த்தமுள்ள தொடர்புகளுக்காக ஒவ்வொரு வாடிக்கையாளர் கருத்தையும் புதுப்பித்த நிலையில் வைத்திருங்கள்.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "ஒரு சேனல் அனைத்து பிராண்டுகள் மற்றும் அதன் பயன்பாடுகள் அனைத்தையும் ஒரே இடத்தில் வழங்குகிறது. உங்கள் குழு இன்பாக்ஸில் வரவிருக்கும் அனைத்து செய்திகளையும் நீங்கள் காணலாம்.", + "Hooray and Congratulations! You've completed the initial setup!": "ஹூரே மற்றும் வாழ்த்துக்கள்! ஆரம்ப அமைப்பை முடித்துவிட்டீர்கள்!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "கீழே உள்ள குறியீட்டை ஒட்டவும் erxes அரட்டை தோன்ற விரும்பும் ஒவ்வொரு பக்கத்திலும் குறிக்கவும்.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "எர்க்சுகள் தோன்றும் ஒவ்வொரு பக்கத்திலும் உடல் குறிச்சொல்லுக்கு முன் கீழே உள்ள குறியீட்டை ஒட்டவும்", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "உங்கள் ஓட்ட வகை உட்பொதிக்கப்பட்டிருந்தால், கீழே உள்ள குறியீட்டை ஒட்டவும்", + "If your flow type is popup paste the code below additionally in your button": "உங்கள் ஓட்ட வகை பாப்அப் என்றால் கீழே உள்ள குறியீட்டை கூடுதலாக உங்கள் பொத்தானில் ஒட்டவும்", + "Choose messengers": "தூதர்களைத் தேர்வுசெய்க", + "erxes allows you to create multiple messengers": "பல தூதர்களை உருவாக்க erxes உங்களை அனுமதிக்கிறது", + "erxes allows you to create multiple brands": "பல பிராண்டுகளை உருவாக்க erxes உங்களை அனுமதிக்கிறது", + "erxes allows you to create multiple channels": "பல சேனல்களை உருவாக்க erxes உங்களை அனுமதிக்கிறது", + "Contacts": "தொடர்புகள்", + "Create group": "குழுவை உருவாக்கவும்", + "Visitors": "பார்வையாளர்கள்", + "Due in the next day": "அடுத்த நாளில் செலுத்த வேண்டும்", + "Due in the next week": "அடுத்த வாரத்தில்", + "Due in the next month": "அடுத்த மாதத்தில் செலுத்தப்பட உள்ளது", + "Has no close date": "நெருங்கிய தேதி இல்லை", + "Over due": "காரணமாக", + "Clear Filter": "வடிகட்டியை அழி", + "Remove this filter": "இந்த வடிப்பானை அகற்று", + "Filtering is on": "வடிகட்டுதல் இயக்கத்தில் உள்ளது", + "Choose products": "தயாரிப்புகளைத் தேர்வுசெய்க", + "Choose companies": "நிறுவனங்களைத் தேர்வுசெய்க", + "Choose customers": "வாடிக்கையாளர்களைத் தேர்வுசெய்க", + "Choose team members": "குழு உறுப்பினர்களைத் தேர்வுசெய்க", + "erxes Inc": "erxes இன்க்", + "Get": "பெறு", + "Download ios app for free on the App Store": "ஆப் ஸ்டோரில் ios பயன்பாட்டை இலவசமாக பதிவிறக்கவும்.", + "Download android app for free on the Google play": "Google Play இல் Android பயன்பாட்டை இலவசமாக பதிவிறக்கவும்.", + "Please upgrade your browser to use erxes!": "Erxes ஐப் பயன்படுத்த உங்கள் உலாவியை மேம்படுத்தவும்!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "துரதிர்ஷ்டவசமாக, நீங்கள் ஒரு உலாவியில் இயங்குகிறீர்கள், அது எர்க்சுகளுடன் முழுமையாக பொருந்தாது.", + "Please use recommended version": "பரிந்துரைக்கப்பட்ட பதிப்பைப் பயன்படுத்தவும்", + "Messenger data": "மெசஞ்சர் தரவு", + "Customer field data": "வாடிக்கையாளர் புலம் தரவு", + "Others": "மற்றவைகள்", + "Select brand": "பிராண்டைத் தேர்ந்தெடுக்கவும்", + "There is no permissions in this group": "இந்த குழுவில் எந்த அனுமதியும் இல்லை.", + "There is no group": "எந்தக் குழுவும் இல்லை.", + "User groups": "பயனர் குழுக்கள்", + "What action can do": "என்ன நடவடிக்கை செய்ய முடியும்", + "Who can": "யாரால் முடியும்", + "Grant permission": "அனுமதி வழங்கவும்", + "Check if permission is allowed": "அனுமதி அனுமதிக்கப்பட்டுள்ளதா என சரிபார்க்கவும்", + "Then": "பிறகு", + "Or": "அல்லது", + "Auto message description": "உள்நுழைந்த பயனர்களுக்கு அவர்களின் பிராண்ட் / குறிச்சொல் / பிரிவின் அடிப்படையில் இலக்கு மின்னஞ்சல் மற்றும் அரட்டை அனுப்பவும். ஒரு மின்னஞ்சல் அனுப்ப அல்லது அரட்டையடிக்க உங்கள் நேரத்தை நீங்கள் அமைக்கலாம். அரட்டை வடிவமைப்பைத் துண்டிக்கலாம், பேட்ஜ் மற்றும் முழு செய்தியாக இருக்கலாம், அது உரை அல்லது வீடியோவாக இருக்கலாம்.", + "Manual message description": "உள்நுழைந்த பயனர்களுக்கு அவர்களின் பிராண்ட் / குறிச்சொல் / பிரிவின் அடிப்படையில் இலக்கு மின்னஞ்சல் மற்றும் அரட்டை அனுப்பவும். நீங்கள் சேமி பொத்தானைக் கிளிக் செய்தவுடன் உடனடியாக ஒரு மின்னஞ்சல் அல்லது அரட்டை அனுப்பப்படும். அரட்டை வடிவமைப்பைத் துண்டிக்கலாம், பேட்ஜ் மற்றும் முழு செய்தியாக இருக்கலாம், அது உரை அல்லது வீடியோவாக இருக்கலாம்.", + "Visitor auto message description": "பார்வையிட்ட பக்கம், செயல்பாடு, அவர்கள் வசிக்கும் நாடு மற்றும் நகரத்தின் அடிப்படையில் இணையதளத்தில் வெளியேறிய பார்வையாளர்களுக்கு இலக்கு அரட்டைகளை அனுப்பவும். அரட்டை வடிவமைப்பைத் துண்டிக்கலாம், பேட்ஜ் மற்றும் முழு செய்தியாக இருக்கலாம், அது உரை அல்லது வீடியோவாக இருக்கலாம்.", + "Required field": "தேவையான புலம்!", + "Invalid email format! Please enter a valid email address": "தவறான மின்னஞ்சல் வடிவம்! செல்லுபடியாகும் மின்னஞ்சல் முகவரியை உள்ளிடவும்.", + "Invalid link": "தவறான இணைப்பு!", + "Maximum length is": "அதிகபட்ச நீளம்", + "characters": "பாத்திரங்கள்!", + "Invalid number format! Please enter a valid number": "தவறான எண் வடிவம்! சரியான எண்ணை உள்ளிடவும்.", + "Insert email template to content": "உள்ளடக்கத்திற்கு மின்னஞ்சல் வார்ப்புருவைச் செருகவும்", + "Logs": "பதிவுகள்", + "There are no logs recorded": "பதிவுகள் எதுவும் பதிவு செய்யப்படவில்லை", + "Module": "தொகுதி", + "Unchanged fields": "மாறாத புலங்கள்", + "Changed fields": "மாற்றப்பட்ட புலங்கள்", + "Create": "உருவாக்கவும்", + "Update": "புதுப்பிக்கப்பட்டது", + "Changes": "மாற்றங்கள்", + "Choose start date": "தொடக்க தேதியைத் தேர்வுசெய்க", + "Choose end date": "இறுதித் தேதியைத் தேர்வுசெய்க", + "Permission denied": "அனுமதி மறுக்கப்பட்டது", + "Old data": "பழைய தரவு", + "New data": "புதிய தரவு", + "Archive": "காப்பகம்", + "NetworkError": "இணைப்பை மீட்டெடுக்க முயற்சிக்கிறது. இப்போது செய்யப்பட்ட மாற்றங்கள் சேமிக்கப்படாமல் போகலாம்.", + "Email add account description question": "பகிரப்பட்ட மின்னஞ்சல் கணக்கை இணைக்கிறீர்களா?", + "Email add account description": "உங்கள் உரையாடல் இன்பாக்ஸுடன் மின்னஞ்சலை இணைக்கும்போது, அதை பகிரப்பட்ட கணக்காக இணைக்கிறீர்கள். பகிரப்பட்ட கணக்குகளுக்கு அனுப்பப்படும் செய்திகளை உங்கள் குழு இன்பாக்ஸிற்கு அணுகக்கூடிய அனைவராலும் பார்க்க முடியும்.", + "No connected email": "இணைக்கப்பட்ட மின்னஞ்சல் இல்லை", + "Your email will be sent with Erxes email template": "உங்கள் மின்னஞ்சல் எர்க்செஸ் மின்னஞ்சல் வார்ப்புருவுடன் அனுப்பப்படும்" +} diff --git a/ui/src/locales/te.json b/ui/src/locales/te.json new file mode 100644 index 00000000000..0bda4c334ae --- /dev/null +++ b/ui/src/locales/te.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "మీరు చెప్పేది నిజమా? దీన్ని రద్దు చేయలేము.", + "Yes, I am": "అవును నేనే", + "No, Cancel": "లేదు, రద్దు చేయండి", + "Filter by tags": "ట్యాగ్‌ల ద్వారా ఫిల్టర్ చేయండి", + "There is no data": "డేటా లేదు", + "There is no data.": "డేటా లేదు.", + "Load more": "మరింత లోడ్ చేయండి", + "There aren't any activities at the moment.": "ప్రస్తుతం ఎటువంటి కార్యకలాపాలు లేవు.", + "Reset your password": "మీ సాంకేతిక పదము మార్చండి", + "Email me the instruction": "సూచనలను నాకు ఇమెయిల్ చేయండి", + "Sign in": "సైన్ ఇన్ చేయండి", + "Change password": "పాస్వర్డ్ మార్చండి", + "Set your new password": "మీ క్రొత్త పాస్‌వర్డ్‌ను సెట్ చేయండి", + "Forgot password?": "పాస్‌వర్డ్ మర్చిపోయారా?", + "Photo": "ఫోటో", + "Name": "పేరు", + "Views": "అభిప్రాయాలు", + "Conversion": "మార్పిడి", + "Go to import": "దిగుమతికి వెళ్ళండి", + "Conversion rate": "మారకపు ధర", + "Contacts gathered": "పరిచయాలు సేకరించబడ్డాయి", + "Create lead": "పాప్ అప్‌లను సృష్టించండి", + "Form title": "ఫారం శీర్షిక", + "Related": "సంబంధిత", + "Form description": "ఫారం వివరణ", + "Position": "స్థానం", + "Username": "యూజర్ పేరు", + "Email": "ఇమెయిల్", + "sec": "క్షణ", + "Twitter username": "ట్విట్టర్ ఖాతా పేరు", + "Inbox": "ఇన్బాక్స్", + "Workflow": "వర్క్ఫ్లో", + "Watch": "వాచ్", + "Watching": "వాచింగ్", + "Team Inbox": "జట్టు ఇన్‌బాక్స్", + "Customers": "వినియోగదారుడు", + "Companies": "కంపెనీలు", + "Engage": "పాల్గొనండి", + "Insights": "ఇన్సైట్స్", + "Knowledge Base": "నాలెడ్జ్ బేస్", + "Settings": "సెట్టింగులు", + "Resolve": "తీర్మానం", + "Send": "పంపు", + "No company": "కంపెనీ లేదు", + "No customer": "కస్టమర్ లేదు", + "Not tagged yet": "ఇంకా ట్యాగ్ చేయబడలేదు", + "New note": "క్రొత్త గమనిక", + "Conversation": "సంభాషణ", + "Notes": "గమనికలు", + "Activity": "కార్యాచరణ", + "Basic info": "ప్రాథమిక సమాచారం", + "Size": "పరిమాణం", + "Other": "ఇతర", + "Industry": "ఇండస్ట్రీ", + "Website": "వెబ్సైట్", + "Plan": "ప్రణాళిక", + "About": "గురించి", + "Discard": "విస్మ", + "Save": "సేవ్", + "Create response template": "ప్రతిస్పందన టెంప్లేట్‌ను సృష్టించండి", + "Associate": "అసోసియేట్", + "No tags": "ట్యాగ్‌లు లేవు", + "Add customer": "కస్టమర్‌ను జోడించండి", + "No segments": "విభాగాలు లేవు", + "Manage Columns": "నిలువు వరుసలను నిర్వహించండి", + "New customer": "కొత్త కస్టమర్", + "Add company": "సంస్థను జోడించండి", + "New company": "కొత్త సంస్థ", + "Choose which column you see": "మీరు చూసే కాలమ్‌ను ఎంచుకోండి", + "There is no engage message.": "ఎంగేజ్ సందేశం లేదు.", + "Add Knowledge base": "నాలెడ్జ్ బేస్ జోడించండి", + "Add knowledge base.": "నాలెడ్జ్ బేస్ జోడించండి.", + "New Channel": "క్రొత్త ఛానెల్", + "Edit": "మార్చు", + "Edit basic info": "ప్రాథమిక సమాచారాన్ని సవరించండి", + "Manage integration": "ఏకీకరణను నిర్వహించండి", + "Manage Integration": "ఇంటిగ్రేషన్‌ను నిర్వహించండి", + "Choose new brand": "క్రొత్త బ్రాండ్‌ను ఎంచుకోండి", + "Edit integration": "ఏకీకరణను సవరించండి", + "Integration": "అనుసంధానం", + "Integration menu": "ఇంటిగ్రేషన్ మెను", + "New Brand": "కొత్త బ్రాండ్", + "Add facebook page": "ఫేస్బుక్ పేజీని జోడించండి", + "Add integrations": "అనుసంధానాలను జోడించండి", + "Add messenger": "మెసెంజర్ జోడించండి", + "There is no lead.": "సీసం లేదు.", + "New response template": "క్రొత్త ప్రతిస్పందన టెంప్లేట్", + "Cancel": "రద్దు చేయండి", + "Public": "ప్రజా", + "Private": "ప్రైవేట్", + "New email template": "క్రొత్త ఇమెయిల్ టెంప్లేట్", + "Local publisher's email template": "స్థానిక ప్రచురణకర్త యొక్క ఇమెయిల్ టెంప్లేట్", + "New user": "క్రొత్త వినియోగదారు", + "Load More": "మరిన్ని లోడ్ చేయండి", + "Session count": "సెషన్ లెక్కింపు", + "Last seen at": "వద్ద చివరిగా చూసింది", + "Tags": "టాగ్లు", + "Member": "సభ్యుడు", + "Remove": "తొలగించు", + "No companies added yet!": "ఇంకా కంపెనీలు జోడించబడలేదు!", + "Merge": "విలీనం", + "First Name": "మొదటి పేరు", + "Last Name": "చివరి పేరు", + "First name": "మొదటి పేరు", + "Last name": "చివరి పేరు", + "Primary Email": "ప్రాథమిక ఇమెయిల్", + "Phone": "ఫోన్", + "Is user": "వినియోగదారు", + "Save & New": "సేవ్ & క్రొత్తది", + "Save & Close": "సేవ్ & మూసివేయి", + "Close": "దగ్గరగా", + "Customer properties": "కస్టమర్ లక్షణాలు", + "Device properties": "పరికర లక్షణాలు", + "Location": "స్థానం", + "Browser": "బ్రౌజర్", + "Platform": "వేదిక", + "IP Address": "IP చిరునామా", + "Hostname": "హోస్టునామము", + "Language": "భాషా", + "User Agent": "వినియోగదారు ఏజెంట్", + "Other properties": "ఇతర లక్షణాలు", + "Facebook": "ఫేస్బుక్", + "Facebook profile": "ఫేస్బుక్ ప్రొఫైల్", + "Messenger usage": "మెసెంజర్ వాడకం", + "Status": "స్థితి", + "Online": "ఆన్లైన్", + "Offline": "ఆఫ్లైన్", + "Twitter": "ట్విట్టర్", + "Twitter quote": "ట్విట్టర్ కోట్", + "Retweet": "మళ్ళీ ట్వీట్", + "Screen name": "స్క్రీన్ పేరు", + "Don't see the result you're looking for? ": "మీరు వెతుకుతున్న ఫలితం కనిపించలేదా?", + "Merged Info": "విలీన సమాచారం", + "E-mail": "ఇ-మెయిల్", + "Integrations": "విలీనాలు", + "integration": "అనుసంధానం", + "Brands": "బ్రాండ్స్", + "Start date": "ప్రారంబపు తేది", + "End date": "చివరి తేది", + "lead": "ఉప ప్రకటనలు", + "twitter": "ట్విట్టర్", + "facebook": "ఫేస్బుక్", + "messenger": "దూత", + "Title": "శీర్షిక", + "Brand": "బ్రాండ్", + "Current Password": "ప్రస్తుత పాస్వర్డ్", + "Current password": "ప్రస్తుత పాస్వర్డ్", + "New Password": "కొత్త పాస్వర్డ్", + "Re-type Password to confirm": "నిర్ధారించడానికి పాస్‌వర్డ్‌ను తిరిగి టైప్ చేయండి", + "Signature": "సంతకం", + "simple": "సాధారణ", + "custom": "కస్టమ్", + "default": "డిఫాల్ట్", + "default language": "డిఫాల్ట్ భాష", + "primary": "ప్రాథమిక", + "Content": "విషయము", + "Save & draft": "రాసినది భద్రపరచు", + "Save & live": "సేవ్ & లైవ్", + "Message:": "సందేశం:", + "Email template:": "ఇమెయిల్ టెంప్లేట్:", + "Email subject:": "ఇమెయిల్ విషయం:", + "From": "నుండి", + "Message type:": "సందేశ రకం:", + "Sent as:": "ఇలా పంపబడింది:", + "Brand:": "బ్రాండ్:", + "Add rule": "నియమాన్ని జోడించండి", + "Last online": "చివరి ఆన్‌లైన్", + "No Activities": "చర్యలు లేవు", + "There is no customer.": "కస్టమర్ లేదు.", + "Properties": "గుణాలు", + "Customize ": "అనుకూలపరచండి", + "Kind": "రకం", + "All": "అన్ని", + "Auto": "దానంతట అదే", + "Visitor auto": "సందర్శకుల ఆటో", + "Manual": "మాన్యువల్", + "Delivered to a user s email inbox": "వినియోగదారు ఇమెయిల్ ఇన్‌బాక్స్‌కు పంపబడింది", + "Customize with your own templates": "మీ స్వంత టెంప్లేట్‌లతో అనుకూలీకరించండి", + "Delivered inside your app": "మీ అనువర్తనం లోపల పంపిణీ చేయబడింది", + "Reach active users": "క్రియాశీల వినియోగదారులను చేరుకోండి", + "Channel": "ఛానల్", + "Edit columns": "నిలువు వరుసలను సవరించండి", + "Auto message": "ఆటో సందేశం", + "Manual message": "మాన్యువల్ సందేశం", + "Visitor auto message": "సందర్శకుల ఆటో సందేశం", + "Actions": "చర్యలు", + "Created date": "తేదీ సృష్టించబడింది", + "Type": "రకం", + "Failed": "విఫలమైంది", + "Sent": "పంపిన", + "Total": "మొత్తం", + "Pause": "పాజ్", + "Set live": "ప్రత్యక్ష ప్రసారం చేయండి", + "Sending": "పంపుతోంది", + "Delete": "తొలగించు", + "Choose segment": "విభాగాన్ని ఎంచుకోండి", + "To:": "కు:", + "Messenger kind:": "మెసెంజర్ రకం:", + "Title:": "శీర్షిక", + "Channel:": "ఛానల్", + "No items": "అంశాలు లేవు", + "New": "న్యూ", + "Options:": "ఎంపికలు:", + "Options": "ఎంపికలు", + "Type:": "టైప్:", + "Add": "చేర్చు", + "Validation:": "క్రమబద్దీకరణకు", + "Date": "తేదీ", + "Number": "సంఖ్య", + "Text:": "టెక్స్ట్:", + "Description:": "వివరణ:", + "This item is requried": "ఈ అంశం అవసరం", + "Preview": "ప్రివ్యూ", + "Column name": "కాలమ్ పేరు", + "Visible": "కనిపించే", + "Visibility": "దృష్టి గోచరత", + "Choose person": "వ్యక్తిని ఎంచుకోండి", + "Conversation Details": "సంభాషణ వివరాలు", + "Opened": "తెరిచింది", + "Conversations": "సంభాషణలు", + "Channels": "ఛానెల్లు", + "Select all": "అన్ని ఎంచుకోండి", + "Filter by tag": "ట్యాగ్ ద్వారా ఫిల్టర్ చేయండి", + "Filter by integrations": "ఇంటిగ్రేషన్ల ద్వారా ఫిల్టర్ చేయండి", + "Filter by brand": "బ్రాండ్ ద్వారా ఫిల్టర్ చేయండి", + "Filter by channel": "ఛానెల్ ద్వారా ఫిల్టర్ చేయండి", + "Filter by status": "స్థితి వారీగా ఫిల్టర్ చేయండి", + "# Channel": "# ఛానెల్", + "Unassigned": "కేటాయించలేదు", + "Participating": "పాల్గొంటూ", + "Resolved": "పరిష్కరించిన", + "View more": "మరిన్ని చూడండి", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "కస్టమర్ ఆఫ్‌లైన్‌లో ఉన్నారు. సందేశాలను దాచడానికి మరియు పంపడానికి క్లిక్ చేయండి మరియు వారు ఆన్‌లైన్‌లో ఉన్నప్పుడు తదుపరిసారి వాటిని స్వీకరిస్తారు.", + "No templates": "టెంప్లేట్లు లేవు", + "Save as template": "టెంప్లేట్‌గా సేవ్ చేయండి", + "Daily First Response Resolve Rate": "రోజువారీ మొదటి ప్రతిస్పందన రేటును పరిష్కరించండి", + "Daily First Response Resolve Rate by Team Members": "జట్టు సభ్యులచే రోజువారీ మొదటి ప్రతిస్పందన రేటును పరిష్కరించండి", + "Daily Response Close Resolve Rate by Team Members": "రోజువారీ సభ్యుల బృందం సభ్యులచే రేటును పరిష్కరించండి", + "Volume Report": "వాల్యూమ్ రిపోర్ట్", + "Feedbacks gathered through various customer engagement channels.": "వివిధ కస్టమర్ ఎంగేజ్‌మెంట్ ఛానెల్‌ల ద్వారా అభిప్రాయాలు సేకరించబడ్డాయి.", + "Response Report": "ప్రతిస్పందన నివేదిక", + "Total number of response for customer feedbacks, by each staff.": "ప్రతి సిబ్బంది కస్టమర్ ఫీడ్‌బ్యాక్‌ల కోసం మొత్తం ప్రతిస్పందన సంఖ్య.", + "Response Close Report": "ప్రతిస్పందన నివేదికను మూసివేయండి", + "Average time of each staff solving problems that based on customer feedbacks.": "కస్టమర్ ఫీడ్‌బ్యాక్‌ల ఆధారంగా సమస్యలను పరిష్కరించే ప్రతి సిబ్బంది సగటు సమయం.", + "First Response Report": "మొదటి ప్రతిస్పందన నివేదిక", + "Responding time for a single feedback. Stats will define average response time by each staff.": "ఒకే అభిప్రాయానికి ప్రతిస్పందన సమయం. గణాంకాలు ప్రతి సిబ్బంది సగటు ప్రతిస్పందన సమయాన్ని నిర్వచిస్తాయి.", + "Daily Response Close Resolve Rate": "డైలీ రెస్పాన్స్ క్లోజ్ రిసల్వ్ రేట్", + "Daily Response Close Resolve rate by Team Members": "రోజువారీ ప్రతిస్పందన క్లోజ్ జట్టు సభ్యుల రేటును పరిష్కరించండి", + "Response Times summary": "ప్రతిస్పందన టైమ్స్ సారాంశం", + "Response Trend": "ప్రతిస్పందన ధోరణి", + "Punch card": "పంచ్ కార్డు", + "Response by team members": "జట్టు సభ్యుల స్పందన", + "Tag": "ట్యాగ్", + "Internal note": "అంతర్గత గమనిక", + "Manage templates": "టెంప్లేట్‌లను నిర్వహించండి", + "Volume summary": "వాల్యూమ్ సారాంశం", + "Volume Trend": "వాల్యూమ్ ట్రెండ్", + "Summary": "సారాంశం", + "Install code": "కోడ్‌ను ఇన్‌స్టాల్ చేయండి", + "No copyable code": "కాపీ చేయదగిన కోడ్ లేదు", + "Manage Knowledge Base": "నాలెడ్జ్ బేస్ నిర్వహించండి", + "Add Category": "వర్గాన్ని జోడించండి", + "Add Article": "వ్యాసం జోడించండి", + "Customer engagement. REDEFINED.": "కస్టమర్ నిశ్చితార్థం. సరిక్రొత్తగా.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes అనేది AI అమ్మకాలు, మార్కెటింగ్ మరియు మద్దతు కోసం ఓపెన్ సోర్స్ మెసేజింగ్ ప్లాట్‌ఫామ్‌ను కలుస్తుంది", + "404. This page is not found.": "404. ఈ పేజీ కనుగొనబడలేదు.", + "erxes is an open-source messaging platform for customer success": "erxes అనేది కస్టమర్ విజయానికి ఓపెన్ సోర్స్ సందేశ వేదిక", + "Notification settings": "నోటిఫికేషన్ సెట్టింగులు", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "మార్కెటింగ్, అమ్మకాలు మరియు కస్టమర్ సేవా ప్లాట్‌ఫాం మీ వ్యాపారానికి మరింత నిశ్చితార్థం ఉన్న కస్టమర్లను ఆకర్షించడంలో సహాయపడతాయి. హబ్‌స్పాట్‌ను మిషన్ మరియు కమ్యూనిటీ నడిచే పర్యావరణ వ్యవస్థతో భర్తీ చేయండి.", + "Mark Page Read": "పేజీని చదవండి", + "Mark All Read": "అన్నీ చదవండి", + "Coming soon": "త్వరలో", + "Looks like you are all caught up": "మీరంతా పట్టుబడినట్లు కనిపిస్తోంది", + "AI": "AI", + "See all": "అన్నింటిని చూడు", + "Select a field": "ఫీల్డ్‌ను ఎంచుకోండి", + "Add condition": "షరతును జోడించండి", + "Parent segment conditions": "తల్లిదండ్రుల విభాగం పరిస్థితులు", + "Filter by segments": "విభాగాల వారీగా ఫిల్టర్ చేయండి", + "New segment": "కొత్త విభాగం", + "Manage segments": "విభాగాలను నిర్వహించండి", + "Users who match": "సరిపోయే వినియోగదారులు", + "any": "ఏ", + "all": "అన్ని", + "of the below conditions": "క్రింది పరిస్థితులలో", + "Sub segment of": "యొక్క ఉప విభాగం", + "Color": "రంగు", + "Filters": "వడపోతలు", + "User(s) will recieve this message": "వినియోగదారు (లు) ఈ సందేశాన్ని స్వీకరిస్తారు", + "Color code": "రంగు కోడ్", + "Engage Message": "సందేశంలో పాల్గొనండి", + "Item counts": "అంశం గణనలు", + "Appearance": "స్వరూపం", + "Hours, Availability & Other configs": "గంటలు, లభ్యత & ఇతర కాన్ఫిగ్‌లు", + "There is no brand": "బ్రాండ్ లేదు", + "There is no integration in this channel.": "ఈ ఛానెల్‌లో ఏకీకరణ లేదు.", + "Template markup": "మూస మార్కప్", + "Use html template here": "Html టెంప్లేట్‌ను ఇక్కడ ఉపయోగించండి", + "Choose your email template type": "మీ ఇమెయిల్ టెంప్లేట్ రకాన్ని ఎంచుకోండి", + "Email signatures": "ఇమెయిల్ సంతకాలు", + "Personal Settings": "వ్యక్తిగత సెట్టింగులు", + "Account Settings": "ఖాతా సెట్టింగులు", + "Profile": "ప్రొఫైల్", + "Get notification by email": "ఇమెయిల్ ద్వారా నోటిఫికేషన్ పొందండి", + "Admin": "అడ్మిన్", + "Contributor": "కంట్రిబ్యూటర్", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "మేము మిమ్మల్ని ఎర్క్స్‌కు హృదయపూర్వకంగా స్వాగతిస్తున్నాము మరియు మాతో దీర్ఘకాలిక ఆరోగ్యకరమైన పని సంఘం కోసం ఎదురుచూస్తున్నాము.", + "Hi, any questions?": "హాయ్, ఏదైనా ప్రశ్నలు ఉన్నాయా?", + "1 hour ago": "1 గంట క్రితం", + "We need your help!": "మాకు మీ సహాయం కావాలి!", + "6 minutes ago": "6 నిమిషాల క్రితం", + "Write a reply ...": "ప్రత్యుత్తరం రాయండి ...", + "App": "App", + "From email": "ఇమెయిల్ నుండి", + "User email title": "వినియోగదారు ఇమెయిల్ శీర్షిక", + "User email content": "వినియోగదారు ఇమెయిల్ కంటెంట్", + "Admin emails": "నిర్వాహక ఇమెయిల్‌లు", + "Admin email title": "నిర్వాహక ఇమెయిల్ శీర్షిక", + "Admin email content": "నిర్వాహక ఇమెయిల్ కంటెంట్", + "Redirect url": "దారిమార్పు url", + "On success": "విజయంపై", + "Load": "లోడ్", + "Success": "విజయం", + "Thank content": "కంటెంట్‌కి ధన్యవాదాలు", + "Choose a custom color": "అనుకూల రంగును ఎంచుకోండి", + "Choose a wallpaper": "వాల్‌పేపర్‌ను ఎంచుకోండి", + "Choose a logo": "లోగోను ఎంచుకోండి", + "Visible online to visitor or customer": "సందర్శకుడికి లేదా కస్టమర్‌కు ఆన్‌లైన్‌లో కనిపిస్తుంది", + "Online messaging": "ఆన్‌లైన్ సందేశం", + "Welcome message": "స్వాగతం సందేశం", + "Offline messaging": "ఆఫ్‌లైన్ సందేశం", + "Away message": "దూరంగా సందేశం", + "Thank you message": "ధన్యవాదాలు సందేశం", + "Hours & Availability": "గంటలు & లభ్యత", + "Turn online/offline manually": "మానవీయంగా ఆన్‌లైన్ / ఆఫ్‌లైన్‌లో తిరగండి", + "Set to follow your schedule": "మీ షెడ్యూల్‌ను అనుసరించడానికి సెట్ చేయండి", + "Other configs": "ఇతర కాన్ఫిగ్‌లు", + "Notify customer": "కస్టమర్‌కు తెలియజేయండి", + "Online hours": "ఆన్‌లైన్ గంటలు", + "Add another time": "మరొక సమయం జోడించండి", + "Time zone": "సమయమండలం", + "Messenger": "దూత", + "Knowledge base": "నాలెడ్జ్ బేస్", + "Notification": "నోటిఫికేషన్", + "Notifications": "ప్రకటనలు", + "Show unread": "చదవని చూపించు", + "Unread": "చదవని", + "Recent": "ఇటీవలి", + "Mark all as read": "అన్నీచదివినట్లుగా సూచించు", + "Email Appearance": "ఇమెయిల్ స్వరూపం", + "Team Members": "జట్టు సభ్యులు", + "Account default": "ఖాతా డిఫాల్ట్", + "Team members": "జట్టు సభ్యులు", + "Full name": "పూర్తి పేరు", + "Leads": "ఉప ప్రకటనలు", + "Email Signature": "ఇమెయిల్ సంతకం", + "Response Template": "ప్రతిస్పందన మూస", + "Email Template": "ఇమెయిల్ మూస", + "Response templates": "ప్రతిస్పందన టెంప్లేట్లు", + "Email templates": "ఇమెయిల్ టెంప్లేట్లు", + "Brand Name": "బ్రాండ్ పేరు", + "Current template": "ప్రస్తుత టెంప్లేట్", + "Created at": "వద్ద సృష్టించబడింది", + "Manage Fields": "ఫీల్డ్‌లను నిర్వహించండి", + "Duplicate": "నకిలీ", + "Code": "కోడ్", + "Profile settings": "ప్రొఫైల్ సెట్టింగులు", + "Change Password": "పాస్వర్డ్ మార్చండి", + "Signatures are only included in response emails.": "సంతకాలు ప్రతిస్పందన ఇమెయిల్‌లలో మాత్రమే చేర్చబడతాయి.", + "Signature template": "సంతకం టెంప్లేట్", + "You can use Markdown to format your signature.": "మీ సంతకాన్ని ఫార్మాట్ చేయడానికి మీరు మార్క్‌డౌన్ ఉపయోగించవచ్చు.", + "Password": "పాస్వర్డ్", + "Password confirmation": "పాస్వర్డ్ నిర్ధారణ", + "Choose the channels": "ఛానెల్‌లను ఎంచుకోండి", + "Simple": "సాధారణ", + "Custom": "కస్టమ్", + "Create a new Company": "క్రొత్త కంపెనీని సృష్టించండి", + "New Company": "కొత్త కంపెనీ", + "Edit name": "పేరును సవరించండి", + "Customer": "కస్టమర్", + "Add tag": "ట్యాగ్‌ను జోడించండి", + "Company": "కంపెనీ", + "New message ": "కొత్త సందేశం", + "There aren’t any activities at the moment.": "ప్రస్తుతం ఎటువంటి కార్యకలాపాలు లేవు.", + "This item is required": "ఈ అంశం అవసరం", + "Manage fields": "ఫీల్డ్‌లను నిర్వహించండి", + "Add integrations ": "అనుసంధానాలను జోడించండి", + "Form": "ఫారం", + "Create a new Customer": "క్రొత్త కస్టమర్‌ను సృష్టించండి", + "New Customer": "క్రొత్త కస్టమర్", + "Segments": "సెగ్మెంట్స్", + "Add a condition": "షరతు జోడించండి", + "Open": "ఓపెన్", + "Choose channel": "ఛానెల్ ఎంచుకోండి", + "Who is this message for?": "ఈ సందేశం ఎవరి కోసం?", + "Compose your message": "మీ సందేశాన్ని కంపోజ్ చేయండి", + "No items added": "అంశాలు జోడించబడలేదు", + "Submit": "సమర్పించండి", + "Next": "తరువాత", + "Save & Draft": "రాసినది భద్రపరచు", + "Save & Live": "సేవ్ & లైవ్", + "From:": "నుండి:", + "Pages": "పేజీలు", + "Links": "లింకులు", + "Enter your password to Confirm": "నిర్ధారించడానికి మీ పాస్‌వర్డ్‌ను నమోదు చేయండి", + "Number of visits": "సందర్శనల సంఖ్య", + "Written By": "వ్రాసిన వారు", + "Icon": "ఐకాన్", + "draft": "డ్రాఫ్ట్", + "Twitter Username": "ట్విట్టర్ ఖాతా పేరు", + "LinkedIn": "లింక్డ్ఇన్", + "Youtube": "Youtube", + "Github": "Github", + "Edit response": "ప్రతిస్పందనను సవరించండి", + "To send your message press Enter and Shift + Enter to add a new line": "మీ సందేశాన్ని పంపడానికి కొత్త పంక్తిని జోడించడానికి ఎంటర్ మరియు షిఫ్ట్ + ఎంటర్ నొక్కండి", + "To send your note press Enter and Shift + Enter to add a new line": "మీ గమనికను పంపడానికి కొత్త పంక్తిని జోడించడానికి ఎంటర్ మరియు షిఫ్ట్ + ఎంటర్ నొక్కండి", + "Please enter an unit price. It should be a number": "దయచేసి యూనిట్ ధరను నమోదు చేయండి. ఇది ఒక సంఖ్య అయి ఉండాలి", + "Type to search": "శోధించడానికి టైప్ చేయండి", + "Members": "సభ్యులు", + "Choose integrations": "ఇంటిగ్రేషన్లను ఎంచుకోండి", + "Choose brands": "బ్రాండ్లను ఎంచుకోండి", + "Select a date": "తేదీని ఎంచుకోండి", + "Click to select a date": "తేదీని ఎంచుకోవడానికి క్లిక్ చేయండి", + "Choose users": "వినియోగదారులను ఎంచుకోండి", + "Select Brand": "బ్రాండ్ ఎంచుకోండి", + "Write here Welcome message.": "ఇక్కడ వ్రాయండి స్వాగతం సందేశం.", + "Write here Away message.": "సందేశాన్ని దూరంగా రాయండి.", + "Write here Thank you message.": "ఇక్కడ వ్రాయండి ధన్యవాదాలు సందేశం.", + "Select app": "అనువర్తనాన్ని ఎంచుకోండి", + "Enter new password": "క్రొత్త పాస్‌వర్డ్‌ను నమోదు చేయండి", + "Choose channels": "ఛానెల్‌లను ఎంచుకోండి", + "Select": "ఎంచుకోండి", + "select": "ఎంచుకోండి", + "Choose members": "సభ్యులను ఎంచుకోండి", + "Search": "వెతకండి", + "your@email.com": "your@email.com", + "password": "పాస్వర్డ్", + "registered@email.com": "registered@email.com", + "new password": "కొత్త పాస్వర్డ్", + "Start typing to leave a note": "గమనికను ఉంచడానికి టైప్ చేయడం ప్రారంభించండి", + "Re-type password": "పాస్వర్డ్ తిరిగి టైప్ చెయ్యండి", + "Name:": "పేరు:", + "Size:": "పరిమాణం:", + "Website:": "వెబ్సైట్:", + "Industry:": "పరిశ్రమ:", + "Plan:": "ప్లాన్:", + "There arent't any groups and fields": "సమూహాలు మరియు ఫీల్డ్‌లు లేవు", + "Please add property Group first": "దయచేసి మొదట ఆస్తి సమూహాన్ని జోడించండి", + "Add group": "సమూహాన్ని జోడించండి", + "Add Property": "ఆస్తిని జోడించండి", + "Add Group & Field ": "సమూహం & ఫీల్డ్‌ను జోడించండి", + "Add Group": "సమూహాన్ని జోడించండి", + "Edit Property": "ఆస్తిని సవరించండి", + "Group:": "గ్రూప్:", + "There arent't any fields in this group": "ఈ గుంపులో ఏ ఫీల్డ్‌లు లేవు", + "Customer Properties": "కస్టమర్ ప్రాపర్టీస్", + "Company Properties": "కంపెనీ గుణాలు", + "Add an option": "ఒక ఎంపికను జోడించండి", + "Copy to clipboard": "క్లిప్‌బోర్డ్‌కు కాపీ చేయండి", + "Go to home page": "హోమ్ పేజీకి వెళ్ళండి", + "Assign to": "కేటాయించిన", + "Remove assignee": "అసైన్‌ని తొలగించండి", + "Account settings": "ఖాతా సెట్టింగులు", + "General Settings": "సాధారణ సెట్టింగులు", + "Integration Settings": "ఇంటిగ్రేషన్ సెట్టింగులు", + "Personal settings": "వ్యక్తిగత సెట్టింగులు", + "Add category": "వర్గాన్ని జోడించండి", + "Filter": "వడపోత", + "Live": "Live", + "Draft": "డ్రాఫ్ట్", + "Paused": "పాజ్", + "Your messages": "మీ సందేశాలు", + "Delivered inside your app Reach active users": "మీ అనువర్తనం లోపల పంపిణీ చేయబడింది క్రియాశీల వినియోగదారులను చేరుకోండి", + "Delivered to a user s email inbox Customize with your own templates": "వినియోగదారు ఇమెయిల్ ఇన్‌బాక్స్‌కు పంపబడింది మీ స్వంత టెంప్లేట్‌లతో అనుకూలీకరించండి", + "email": "ఇమెయిల్", + "Create segment": "విభాగాన్ని సృష్టించండి", + "customers": "వినియోగదారులు", + "has any value": "ఏదైనా విలువ ఉంది", + "is unknown": "తెలియదు", + "is not": "కాదు", + "is": "ఉంది", + "Less than": "కంటే తక్కువ", + "City": "నగరం", + "Greater than": "అంతకన్నా ఎక్కువ", + "Country": "దేశం", + "Current page url": "ప్రస్తుత పేజీ url", + "Browser language": "బ్రౌజర్ భాష", + "conversation": "సంభాషణ", + "engageMessage": "engageMessage", + "customer": "కస్టమర్", + "company": "కంపెనీ", + "starts with": "తో మొదలవుతుంది", + "ends with": "తో ముగుస్తుంది", + "contains": "కలిగి", + "does not contain": "దింట్లో ఉండదు", + "Basic Info": "ప్రాథమిక సమాచారం", + "Add Phone": "ఫోన్‌ను జోడించండి", + "Add Email": "ఇమెయిల్ జోడించండి", + "Choose your tags": "మీ ట్యాగ్‌లను ఎంచుకోండి", + "Manage tags": "ట్యాగ్‌లను నిర్వహించండి", + "Edit Profile": "ప్రొఫైల్‌ను సవరించండి", + "Sign out": "సైన్ అవుట్ చేయండి", + "Last Updated By": "చివరిగా నవీకరించబడింది", + "There is no channel": "ఛానెల్ లేదు", + "Facebook page": "ఫేస్బుక్ పేజీ", + "plan": "ప్రణాళిక", + "Edit segment": "విభాగాన్ని సవరించండి", + "New message": "కొత్త సందేశం", + "Message": "సందేశం", + "Merge Customers": "కస్టమర్లను విలీనం చేయండి", + "Assign": "కేటాయించవచ్చు", + "There is no message.": "సందేశం లేదు.", + "per page": "ప్రతి పేజీకి", + "[view]": "[వీక్షణ]", + "Go to twitter": "ట్విట్టర్‌కు వెళ్లండి", + "Build": "బిల్డ్", + "`s integration": "ఏకీకరణ", + "Created": "రూపొందించబడింది", + "Email templates:": "ఇమెయిల్ టెంప్లేట్లు:", + "Content:": "విషయము:", + "Response Templates": "ప్రతిస్పందన టెంప్లేట్లు", + "Merge Companies": "కంపెనీలను విలీనం చేయండి", + "Response template": "ప్రతిస్పందన టెంప్లేట్", + "Attach file": "ఫైలు జత చేయుము", + "Upload": "అప్లోడ్", + "ShoutBox": "shoutbox", + "Popup": "పాప్అప్", + "Embedded": "పొందుపరిచిన", + "Choose a flow type": "ప్రవాహ రకాన్ని ఎంచుకోండి", + "CallOut": "కాల్", + "Callout title": "కాల్అవుట్ శీర్షిక", + "Callout body": "కాల్ అవుట్ బాడీ", + "Callout button text": "కాల్అవుట్ బటన్ టెక్స్ట్", + "Skip callOut": "కాల్ అవుట్ దాటవేయి", + "Form button text": "ఫారం బటన్ టెక్స్ట్", + "Theme color": "థీమ్ రంగు", + "Featured image": "ఫీచర్ చేసిన చిత్రం", + "Full Preview": "పూర్తి పరిదృశ్యం", + "Try some of these colors:": "ఈ రంగులలో కొన్నింటిని ప్రయత్నించండి:", + "Included fields": "చేర్చబడిన ఫీల్డ్‌లు", + "Deal": "సేల్స్ పైప్‌లైన్", + "Deals": "అమ్మకాల పైప్‌లైన్‌లు", + "New Product & Service": "క్రొత్త ఉత్పత్తి & సేవ", + "No product or services": "ఉత్పత్తి లేదా సేవలు లేవు", + "UOM": "UoM", + "Quantity": "మొత్తము", + "Unit price": "యూనిట్ ధర", + "Discount": "డిస్కౌంట్", + "Tax": "పన్ను", + "Ticket": "టికెట్", + "Task": "టాస్క్", + "Select company": "సంస్థను ఎంచుకోండి", + "Select customer": "కస్టమర్‌ను ఎంచుకోండి", + "Note": "గమనిక", + "Assigned to": "కేటాయించిన", + "Move": "కదలిక", + "Move deal": "ఒప్పందాన్ని తరలించండి", + "Copy": "కాపీ", + "Close date": "ముగింపు తేదీ", + "Choose product & service": "ఉత్పత్తి & సేవను ఎంచుకోండి", + "Select product & service": "ఉత్పత్తి & సేవను ఎంచుకోండి", + "Please, select a close date": "దయచేసి, ముగింపు తేదీని ఎంచుకోండి", + "Create a new Product": "క్రొత్త ఉత్పత్తిని సృష్టించండి", + "New Product": "కొత్త ఉత్పత్తి", + "SKU": "SKU", + "Choose a company": "సంస్థను ఎంచుకోండి", + "Choose a customer": "కస్టమర్‌ను ఎంచుకోండి", + "Choose a board": "బోర్డుని ఎంచుకోండి", + "Choose a pipeline": "పైప్‌లైన్‌ను ఎంచుకోండి", + "Manage Board & Pipeline": "బోర్డు & పైప్‌లైన్‌ను నిర్వహించండి", + "Choose a stage": "ఒక దశను ఎంచుకోండి", + "Deal Settings": "అమ్మకాల పైప్‌లైన్ సెట్టింగ్‌లు", + "Ticket Settings": "టికెట్ సెట్టింగులు", + "Task Settings": "టాస్క్ సెట్టింగులు", + "Boards & Pipelines": "బోర్డులు & పైప్‌లైన్‌లు", + "Product & Service": "ఉత్పత్తి & సేవ", + "There is no pipeline in this board.": "ఈ బోర్డులో పైప్‌లైన్ లేదు.", + "There is no board": "బోర్డు లేదు", + "New Board": "కొత్త బోర్డు", + "Add pipeline": "పైప్‌లైన్ జోడించండి", + "Create one": "ఒకటి సృష్టించు", + "Edit pipeline": "పైప్‌లైన్‌ను సవరించండి", + "Add stage": "దశను జోడించండి", + "Board": "బోర్డు", + "Pipeline": "పైప్లైన్", + "Stage": "స్టేజ్", + "Stage name": "రంగస్థల పేరు", + "Add a deal": "ఒప్పందాన్ని జోడించండి", + "Add a task": "ఒక పనిని జోడించండి", + "Add a ticket": "టికెట్ జోడించండి", + "Priority": "ప్రాధాన్యత", + "Critical": "క్రిటికల్", + "High": "అధిక", + "Normal": "సాధారణ", + "Low": "తక్కువ", + "Attachments": "అటాచ్మెంట్లు", + "Source": "మూల", + "Select a source": "మూలాన్ని ఎంచుకోండి", + "Upload an attachment": "జోడింపును అప్‌లోడ్ చేయండి", + "Description": "వివరణ", + "Select a priority": "ప్రాధాన్యతను ఎంచుకోండి", + "Edit deal": "ఒప్పందాన్ని సవరించండి", + "Edit task": "విధిని సవరించండి", + "Edit ticket": "టికెట్ సవరించండి", + "Add Product / Service": "ఉత్పత్తి / సేవను జోడించండి", + "Reply tweet": "ట్వీట్ ప్రత్యుత్తరం ఇవ్వండి", + "Tweet": "ట్వీట్", + "Details": "వివరాలు", + "View Profile": "ప్రొఫైల్ చూడు", + "Empty Notes": "ఖాళీ గమనికలు", + "Mini-resume": "మినీ-పునఃప్రారంభం", + "You cannot update this property": "మీరు ఈ ఆస్తిని నవీకరించలేరు", + "Desktop": "డెస్క్టాప్", + "Mobile": "మొబైల్", + "Tablet": "టాబ్లెట్", + "Amount": "మొత్తం", + "Owner": "యజమాని", + "Department": "శాఖ", + "Lead Status": "పాప్ అప్స్ స్థితి", + "Lifecycle State": "లైఫ్‌సైకిల్ స్టేట్", + "Has Authority": "అధికారం ఉంది", + "Do not disturb": "డిస్టర్బ్ చేయకు", + "Parent Company": "మాతృ సంస్థ", + "Business Type": "వ్యాపార రకం", + "Employees count": "ఉద్యోగుల సంఖ్య", + "Yes": "అవును", + "No": "తోబుట్టువుల", + "Copied": "కాపీ చెయ్యబడ్డాయి", + "General": "జనరల్", + "Currency": "కరెన్సీ", + "Unit of measurement": "కొలత యూనిట్", + "Create another board": "మరొక బోర్డుని సృష్టించండి", + "No pipeline": "పైప్‌లైన్ లేదు", + "No stage": "వేదిక లేదు", + "No deal": "ఒప్పందం లేదు", + "Background": "నేపథ్య", + "Choose": "ఎంచుకోండి", + "Successfully saved.": "విజయవంతంగా సేవ్ చేయబడింది.", + "Successfully moved.": "విజయవంతంగా తరలించబడింది.", + "Successfully selected.": "విజయవంతంగా ఎంపిక చేయబడింది.", + "Body description here": "శరీర వివరణ ఇక్కడ", + "Thank you.": "ధన్యవాదాలు.", + "Choose a brand": "బ్రాండ్‌ను ఎంచుకోండి", + "Write a title": "శీర్షిక రాయండి", + "Contact": "సంప్రదించండి", + "Created by": "సృష్టికర్త", + "Manage": "నిర్వహించడానికి", + "Dropdown": "కింద పడేయి", + "Slide-in Left": "స్లయిడ్-ఇన్ ఎడమ", + "Slide-in Right": "స్లయిడ్-ఇన్ కుడి", + "Enter name": "పేరు నమోదు చేయండి", + "Delivered": "పంపిణీ", + "Clicked": "క్లిక్", + "Complaint": "ఫిర్యాదు", + "Bounce": "బౌన్స్", + "Rendering Failure": "రెండరింగ్ వైఫల్యం", + "Rejected": "తిరస్కరించబడిన", + "Action": "యాక్షన్", + "Please select one to merge": "దయచేసి విలీనం చేయడానికి ఒకదాన్ని ఎంచుకోండి", + "Filter by date": "తేదీ వారీగా ఫిల్టర్ చేయండి", + "Total conversations": "మొత్తం సంభాషణలు", + "Filter by form": "రూపం వడపోత", + "Supporters": "సపోర్టర్స్", + "Import histories": "చరిత్రలను దిగుమతి చేయండి", + "Imported Date": "దిగుమతి చేసిన తేదీ", + "Imported User": "దిగుమతి చేసుకున్న వినియోగదారు", + "Export customers": "వినియోగదారులను ఎగుమతి చేయండి", + "Import customers": "వినియోగదారులను దిగుమతి చేయండి", + "Export companies": "ఎగుమతి సంస్థలు", + "Import companies": "కంపెనీలను దిగుమతి చేసుకోండి", + "All customers imported successfully": "వినియోగదారులందరూ విజయవంతంగా దిగుమతి చేసుకున్నారు", + "There aren't any imports": "దిగుమతులు లేవు", + "Successfully Removed all customers": "వినియోగదారులందరినీ విజయవంతంగా తొలగించారు", + "You can only import max 600 at a time": "మీరు ఒకేసారి గరిష్టంగా 600 ను మాత్రమే దిగుమతి చేసుకోవచ్చు", + "Invalid import type": "చెల్లని దిగుమతి రకం", + "Last updated": "చివరిగా నవీకరించబడింది", + "Filter by lead status": "పాప్ అప్స్ స్థితి ద్వారా ఫిల్టర్ చేయండి", + "No lead status chosen": "ప్రధాన స్థితి ఎంచుకోబడలేదు", + "Schedule:": "షెడ్యూల్:", + "Every Day": "ప్రతి రోజు", + "Every Month": "ప్రతి నెల", + "Every Year": "ప్రతి సంవత్సరం", + "Every Monday": "ప్రతి సోమవారం", + "Every Tuesday": "ప్రతి మంగళవారం", + "Every Wednesday": "ప్రతి బుధవారం", + "Every Thursday": "ప్రతి గురువారం", + "Every Friday": "ప్రతి శుక్రవారం", + "Every Saturday": "ప్రతి శనివారం", + "Every Sunday": "ప్రతి ఆదివారం", + "Choose a schedule day": "షెడ్యూల్ రోజును ఎంచుకోండి", + "Choose a schedule time": "షెడ్యూల్ సమయాన్ని ఎంచుకోండి", + "Won": "గెలుపు", + "Lost": "కోల్పోయిన", + "App store": "యాప్ స్టోర్", + "App store menu": "అనువర్తన స్టోర్ మెను", + "In Progress": "పురోగతిలో ఉంది", + "It`s size exceeds the limit 10mb": "దీని పరిమాణం 10mb పరిమితిని మించిపోయింది", + "Congrats! Your email sent successfully!": "అభినందనలు! మీ ఇమెయిల్ విజయవంతంగా పంపబడింది!", + "Works with messenger": "మెసెంజర్‌తో పనిచేస్తుంది", + "Knowledge base topic": "నాలెడ్జ్ బేస్ టాపిక్", + "Package version": "ప్యాకేజీ వెర్షన్", + "Branch name": "శాఖ పేరు", + "Abbreviated": "సంక్షిప్తంగా", + "User": "వాడుకరి", + "Recent conversations": "ఇటీవలి సంభాషణలు", + "Start new conversation": "క్రొత్త సంభాషణను ప్రారంభించండి", + "Talk with support staff": "సహాయక సిబ్బందితో మాట్లాడండి", + "Send a message": "సందేశం పంపండి", + "Volume Report By Customer": "కస్టమర్ ద్వారా వాల్యూమ్ రిపోర్ట్", + "Export Report": "ఎగుమతి నివేదిక", + "We`re ready to help you.": "మేము మీకు సహాయం చేయడానికి సిద్ధంగా ఉన్నాము.", + "Please choose a product": "దయచేసి ఉత్పత్తిని ఎంచుకోండి", + "Please choose a currency": "దయచేసి కరెన్సీని ఎంచుకోండి", + "No board": "బోర్డు లేదు", + "Empty": "ఖాళీ", + "There is no account.": "ఖాతా లేదు.", + "There is no tag.": "ట్యాగ్ లేదు.", + "Skip for now": "ప్రస్తుతానికి దాటవేయి", + "Go to Inbox": "ఇన్‌బాక్స్‌కు వెళ్లండి", + "Messenger Language": "మెసెంజర్ భాష", + "Messenger name": "మెసెంజర్ పేరు", + "Skip": "స్కిప్", + "Finish": "ముగించు", + "Show": "షో", + "Hide": "దాచు", + "Previous": "మునుపటి", + "Users": "వినియోగదారులు", + "users": "వినియోగదారులు", + "brands": "బ్రాండ్లు", + "messengers": "దూతలు", + "channels": "చానెల్స్", + "Emails": "ఇమెయిళ్ళు", + "Messengers": "దూతలు", + "You already have": "మీకు ఇప్పటికే ఉంది", + "There is another": "మరొకటి ఉంది", + "Let's create your brand": "మీ బ్రాండ్‌ను క్రియేట్ చేద్దాం", + "Invite users": "వినియోగదారులను ఆహ్వానించండి", + "Let's grow your team": "మీ బృందాన్ని పెంచుకుందాం", + "Invite": "ఆహ్వానించండి", + "Let's start": "మొదలు పెడదాం", + "Start messaging now!": "ఇప్పుడే సందేశాన్ని ప్రారంభించండి!", + "Create channel": "ఛానెల్ సృష్టించండి", + "Get started on your channel": "మీ ఛానెల్‌లో ప్రారంభించండి", + "Create your first messenger": "మీ మొదటి దూతను సృష్టించండి", + "Welcome": "స్వాగతం", + "Nothing inserted": "ఏమీ చేర్చబడలేదు", + "Empty emails": "ఖాళీ ఇమెయిల్‌లు", + "Initial setup": "మొదటి ఏర్పాటు", + "Add another": "మరొకదాన్ని జోడించండి", + "Don't show again": "మళ్ళీ చూపించవద్దు", + "No other pipeline": "ఇతర పైప్‌లైన్ లేదు", + "No other boards": "ఇతర బోర్డులు లేవు", + "I'm ready to get started": "నేను ప్రారంభించడానికి సిద్ధంగా ఉన్నాను", + "Welcome paragraph": "మిమ్మల్ని కలిగి ఉన్నందుకు మాకు చాలా సంతోషంగా ఉంది. మీరు సెటప్ చేయడానికి కొంత సమయం తీసుకుందాం", + "Get notified and notify others to keep everything up to date": "ప్రతిదీ తాజాగా ఉంచడానికి తెలియజేయండి మరియు ఇతరులకు తెలియజేయండి", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "మీరు సైట్‌లో పంపిన సందేశాలను మీ బృందానికి అందకపోతే, మేము వారికి ఇమెయిల్ ద్వారా పంపవచ్చు", + "Send an email and notify members that they've been invited!": "ఒక ఇమెయిల్ పంపండి మరియు సభ్యులను ఆహ్వానించినట్లు వారికి తెలియజేయండి!", + "January": "జనవరి", + "February": "ఫిబ్రవరి", + "March": "మార్చి", + "April": "ఏప్రిల్", + "May": "మే", + "June": "జూన్", + "July": "జూలై", + "August": "ఆగస్టు", + "September": "సెప్టెంబర్", + "October": "అక్టోబర్", + "November": "నవంబర్", + "December": "డిసెంబర్", + "Today": "నేడు", + "Sales": "అమ్మకాలు", + "Monthly view": "నెలవారీ వీక్షణ", + "Filter by": "ద్వారా వడపోత", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "బ్రాండ్‌ను సృష్టించడం మరియు ఛానెల్‌లను జోడించడం ద్వారా, మీరు మీ కస్టమర్ల అవసరాలను బాగా విశ్లేషించగలరు మరియు వారి సమస్యలను పరిష్కరించడంలో సహాయపడగలరు", + "Grow and add users to your team! Assign, designate and let them do what they do best": "మీ బృందానికి వినియోగదారులను పెంచుకోండి మరియు జోడించండి! కేటాయించండి, నియమించండి మరియు వారు ఉత్తమంగా చేయనివ్వండి", + "Stay up to date with every single customer feedback and create more meaningful conversations": "ప్రతి కస్టమర్ ఫీడ్‌బ్యాక్‌తో తాజాగా ఉండండి మరియు మరింత అర్ధవంతమైన సంభాషణలను సృష్టించండి", + "Create brand channels that are specifically categorized by type and activity": "రకం మరియు కార్యాచరణల ద్వారా ప్రత్యేకంగా వర్గీకరించబడిన బ్రాండ్ ఛానెల్‌లను సృష్టించండి", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "ఇక్కడ ఒక లీడ్‌ను జోడించి మీ మెసెంజర్ విడ్జెట్‌లో చూడండి! మీ ఇన్‌బాక్స్‌లో లీడ్స్‌ను చూడటానికి, దయచేసి ఇది మీ ఛానెల్‌లో జోడించబడిందని నిర్ధారించుకోండి.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "మీరు మా అనేక మెసెంజర్ ఇంటిగ్రేషన్ల నుండి ఎంచుకోవచ్చు మరియు మీ జ్ఞాన స్థావరాన్ని జోడించవచ్చు. మీ మెసెంజర్ విడ్జెట్ యొక్క ట్యాబ్‌లో నాలెడ్జ్ బేస్ కనిపిస్తుంది. దీన్ని చేయడానికి, దయచేసి మీ జ్ఞాన స్థావరాన్ని సృష్టించండి మరియు జోడించండి.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "గుర్తింపు మరియు నమ్మకాన్ని పెంపొందించడానికి సహాయపడే సమాచారాన్ని పంచుకునే అవకాశం ఇమెయిల్ సంతకం.", + "Let's start taking care of your customers": "మీ కస్టమర్లను జాగ్రత్తగా చూసుకుందాం", + "Add in your first company!": "మీ మొదటి కంపెనీలో చేర్చండి!", + "Choose from our many integrations and add to your channel": "మా అనేక ఇంటిగ్రేషన్ల నుండి ఎంచుకోండి మరియు మీ ఛానెల్‌కు జోడించండి", + "Let's get you messaging away!": "మీకు సందేశం పంపండి.", + "Whoops! No messages here but you can always start": "అయ్యో! ఇక్కడ సందేశాలు లేవు కానీ మీరు ఎల్లప్పుడూ ప్రారంభించవచ్చు", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "వ్యాసాలు మీ కస్టమర్‌లు ఎదుర్కొనే ఎన్ని సమస్యలను అయినా పరిష్కరించగలవు. జ్ఞాన వ్యాసాల రకాలు సాధారణ సమస్యలు, ఉత్పత్తి లేదా ఫీచర్ డాక్యుమెంటేషన్, తరచుగా అడిగే ప్రశ్నలు మరియు మరెన్నో పరిష్కారాలను కలిగి ఉంటాయి.", + "Oops! No data here": "అయ్యో! ఇక్కడ డేటా లేదు", + "Start adding integrations now!": "ఇంటిగ్రేషన్లను జోడించడం ప్రారంభించండి!", + "Add an integration in this Brand": "ఈ బ్రాండ్‌లో ఇంటిగ్రేషన్‌ను జోడించండి", + "Oh dear! You have no imports": "ఓ ప్రియా! మీకు దిగుమతులు లేవు", + "A strong customer engagement can help to further brand growth and loyalty": "బలమైన కస్టమర్ నిశ్చితార్థం మరింత బ్రాండ్ వృద్ధికి మరియు విధేయతకు సహాయపడుతుంది", + "Get started on your pipeline": "మీ పైప్‌లైన్‌లో ప్రారంభించండి", + "Connect to Facebook messages right from your Team Inbox": "మీ టీమ్ ఇన్‌బాక్స్ నుండే ఫేస్‌బుక్ సందేశాలకు కనెక్ట్ అవ్వండి", + "Tweet back to your DMs right from your Team Inbox": "మీ టీమ్ ఇన్‌బాక్స్ నుండే మీ DM లకు తిరిగి ట్వీట్ చేయండి", + "Connect straight to your Gmail and get those emails going": "మీ Gmail కి నేరుగా కనెక్ట్ అవ్వండి మరియు ఆ ఇమెయిల్‌లను పొందండి", + "Find your lead forms right here in your Widget": "మీ విడ్జెట్‌లోనే మీ ప్రధాన రూపాలను కనుగొనండి", + "Get access to your Knowledge Base right in your Widget": "మీ విడ్జెట్‌లోనే మీ నాలెడ్జ్ బేస్‌కు ప్రాప్యత పొందండి", + "Soon you'll be able to connect Viber straight to your Team Inbox": "త్వరలో మీరు వైబర్‌ను మీ టీమ్ ఇన్‌బాక్స్‌కు నేరుగా కనెక్ట్ చేయగలరు", + "Get a hold of your Whatsapp messages through your Team Inbox": "మీ టీమ్ ఇన్‌బాక్స్ ద్వారా మీ వాట్సాప్ సందేశాలను పట్టుకోండి", + "Connect with Wechat and start messaging right from your Team Inbox": "Wechat తో కనెక్ట్ అవ్వండి మరియు మీ టీమ్ ఇన్‌బాక్స్ నుండే సందేశాన్ని పంపండి", + "Find feedback that has been gathered from various customer engagement channels.": "వివిధ కస్టమర్ ఎంగేజ్‌మెంట్ ఛానెల్‌ల నుండి సేకరించిన అభిప్రాయాన్ని కనుగొనండి.", + "A report on the total number of customer feedback responses given by team members.": "జట్టు సభ్యులు ఇచ్చిన మొత్తం కస్టమర్ ఫీడ్‌బ్యాక్ ప్రతిస్పందనలపై నివేదిక.", + "The average time a team member solved a problem based on customer feedback.": "కస్టమర్ ఫీడ్‌బ్యాక్ ఆధారంగా జట్టు సభ్యుడు సమస్యను పరిష్కరించిన సగటు సమయం.", + "You can find stats that defines the average response time by each team member.": "ప్రతి జట్టు సభ్యుడి సగటు ప్రతిస్పందన సమయాన్ని నిర్వచించే గణాంకాలను మీరు కనుగొనవచ్చు.", + "Oh boy, looks like you need to get a head start on your deals": "ఓహ్ బాయ్, మీరు మీ ఒప్పందాలను ప్రారంభించాల్సిన అవసరం ఉన్నట్లు కనిపిస్తోంది", + "Open segments and starting add details": "విభాగాలను తెరిచి, వివరాలను జోడించడం ప్రారంభించండి", + "Now easier to find contacts according to your brand": "మీ బ్రాండ్ ప్రకారం పరిచయాలను కనుగొనడం ఇప్పుడు సులభం", + "Search and filter customers by form": "ఫారమ్ ద్వారా కస్టమర్లను శోధించండి మరియు ఫిల్టర్ చేయండి", + "There is always a lead!": "ఎల్లప్పుడూ ఒక సీసం ఉంది!", + "Calendar": "క్యాలెండర్", + "Columns": "లు", + "columns": "నిలువు", + "Linked Accounts": "లింక్డ్ ఖాతాలు", + "Select account": "ఖాతాను ఎంచుకోండి", + "Select account ...": "ఖాతాను ఎంచుకోండి ...", + "Add Account": "ఖాతా జోడించండి", + "Remove Account": "ఖాతాను తొలగించండి", + "You can upload only image file": "మీరు .png లేదా .jpg ఇమేజ్ ఫైల్‌ను మాత్రమే అప్‌లోడ్ చేయవచ్చు", + "Permissions": "అనుమతులు", + "New permission": "క్రొత్త అనుమతి", + "New group": "క్రొత్త సమూహం", + "Users groups": "వినియోగదారుల సమూహాలు", + "Choose the module": "మాడ్యూల్ ఎంచుకోండి", + "Choose the actions": "చర్యలను ఎంచుకోండి", + "Choose the users": "వినియోగదారులను ఎంచుకోండి", + "Choose the groups": "సమూహాలను ఎంచుకోండి", + "Choose groups": "సమూహాలను ఎంచుకోండి", + "Allow": "అనుమతించు", + "Invitation Status": "ఆహ్వాన స్థితి", + "Permission": "అనుమతి", + "data successfully imported": "డేటా విజయవంతంగా దిగుమతి చేయబడింది", + "Show result": "ఫలితాన్ని చూపించు", + "Importing": "దిగుమతి", + "data": "సమాచారం", + "errors acquired": "లోపాలు సంపాదించబడ్డాయి", + "There are": "ఉన్నాయి", + "Continue": "కొనసాగించు", + "Create brand": "బ్రాండ్‌ను సృష్టించండి", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "మీ మొదటి ప్రత్యక్ష చాట్ మరియు అనువర్తన సందేశాలను సృష్టించండి. మరింత అర్ధవంతమైన పరస్పర చర్యల కోసం ప్రతి కస్టమర్ ఫీడ్‌బ్యాక్‌తో తాజాగా ఉండండి.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "ఒక ఛానెల్ అన్ని బ్రాండ్లు మరియు దాని అనువర్తనాల యొక్క పూర్తి వీక్షణను ఒకే చోట ఇస్తుంది. మీరు మీ బృందం ఇన్‌బాక్స్‌లో రాబోయే అన్ని సందేశాలను చూడవచ్చు.", + "Hooray and Congratulations! You've completed the initial setup!": "హుర్రే మరియు అభినందనలు! మీరు ప్రారంభ సెటప్‌ను పూర్తి చేసారు!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "ముందు కోడ్‌ను అతికించండి ఎర్క్స్ చాట్ కనిపించాలని మీరు కోరుకునే ప్రతి పేజీలో ట్యాగ్ చేయండి.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "ప్రతి పేజీలో బాడీ ట్యాగ్‌కు ముందు దిగువ కోడ్‌ను అతికించండి", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "మీ ప్రవాహ రకం పొందుపరచబడితే, దిగువ కోడ్‌ను అతికించండి", + "If your flow type is popup paste the code below additionally in your button": "మీ ప్రవాహ రకం పాపప్ అయితే క్రింద ఉన్న కోడ్‌ను మీ బటన్‌లో అతికించండి", + "Choose messengers": "దూతలను ఎంచుకోండి", + "erxes allows you to create multiple messengers": "బహుళ సందేశాలను సృష్టించడానికి erxes మిమ్మల్ని అనుమతిస్తుంది", + "erxes allows you to create multiple brands": "erxes బహుళ బ్రాండ్లను సృష్టించడానికి మిమ్మల్ని అనుమతిస్తుంది", + "erxes allows you to create multiple channels": "erxes బహుళ ఛానెల్‌లను సృష్టించడానికి మిమ్మల్ని అనుమతిస్తుంది", + "Contacts": "కాంటాక్ట్స్", + "Create group": "సమూహాన్ని సృష్టించండి", + "Visitors": "సందర్శకులు", + "Due in the next day": "మరుసటి రోజు డ్యూ", + "Due in the next week": "వచ్చే వారంలో డ్యూ", + "Due in the next month": "వచ్చే నెలలో డ్యూ", + "Has no close date": "ముగింపు తేదీ లేదు", + "Over due": "మీరిన", + "Clear Filter": "ఫిల్టర్ క్లియర్", + "Remove this filter": "ఈ ఫిల్టర్‌ను తొలగించండి", + "Filtering is on": "ఫిల్టరింగ్ ఆన్‌లో ఉంది", + "Choose products": "ఉత్పత్తులను ఎంచుకోండి", + "Choose companies": "కంపెనీలను ఎంచుకోండి", + "Choose customers": "కస్టమర్లను ఎంచుకోండి", + "Choose team members": "జట్టు సభ్యులను ఎంచుకోండి", + "erxes Inc": "erxes ఇంక్", + "Get": "పొందండి", + "Download ios app for free on the App Store": "యాప్ స్టోర్‌లో ఉచితంగా ఐఓఎస్ యాప్‌ను డౌన్‌లోడ్ చేసుకోండి.", + "Download android app for free on the Google play": "Google ప్లేలో Android అనువర్తనాన్ని ఉచితంగా డౌన్‌లోడ్ చేయండి.", + "Please upgrade your browser to use erxes!": "Erxes ఉపయోగించడానికి దయచేసి మీ బ్రౌజర్‌ను అప్‌గ్రేడ్ చేయండి!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "దురదృష్టవశాత్తు, మీరు ఎర్సెస్‌తో పూర్తిగా అనుకూలంగా ఉండని బ్రౌజర్‌లో నడుస్తున్నారు.", + "Please use recommended version": "దయచేసి సిఫార్సు చేసిన సంస్కరణను ఉపయోగించండి", + "Messenger data": "మెసెంజర్ డేటా", + "Customer field data": "కస్టమర్ ఫీల్డ్ డేటా", + "Others": "ఇతరులు", + "Select brand": "బ్రాండ్‌ను ఎంచుకోండి", + "There is no permissions in this group": "ఈ గుంపులో అనుమతులు లేవు.", + "There is no group": "సమూహం లేదు.", + "User groups": "వినియోగదారు సమూహాలు", + "What action can do": "ఏ చర్య చేయగలదు", + "Who can": "ఎవరు చేయగలరు", + "Grant permission": "అనుమతి ఇవ్వండి", + "Check if permission is allowed": "అనుమతి అనుమతించబడిందో లేదో తనిఖీ చేయండి", + "Then": "అప్పుడు", + "Or": "లేదా", + "Auto message description": "వారి బ్రాండ్ / ట్యాగ్ / సెగ్మెంట్ ఆధారంగా లాగిన్ అయిన వినియోగదారులకు లక్ష్య ఇమెయిల్ మరియు చాట్ పంపండి. మీరు ముందుగానే ఇమెయిల్ పంపడానికి లేదా చాట్ చేయడానికి మీ సమయాన్ని సెట్ చేసుకోవచ్చు. చాట్ డిజైన్ స్నిప్ చేయవచ్చు, బ్యాడ్జ్ మరియు పూర్తి సందేశం మరియు ఇది టెక్స్ట్ లేదా వీడియో కావచ్చు.", + "Manual message description": "వారి బ్రాండ్ / ట్యాగ్ / సెగ్మెంట్ ఆధారంగా లాగిన్ అయిన వినియోగదారులకు లక్ష్య ఇమెయిల్ మరియు చాట్ పంపండి. మీరు సేవ్ బటన్ క్లిక్ చేసిన వెంటనే ఇమెయిల్ లేదా చాట్ పంపబడుతుంది. చాట్ డిజైన్ స్నిప్ చేయవచ్చు, బ్యాడ్జ్ మరియు పూర్తి సందేశం మరియు ఇది టెక్స్ట్ లేదా వీడియో కావచ్చు.", + "Visitor auto message description": "వారి సందర్శన పేజీ, కార్యాచరణ, వారి నివాస దేశం మరియు నగరం ఆధారంగా వెబ్‌సైట్‌లో లాగ్-అవుట్ చేసిన సందర్శకులకు లక్ష్య చాట్‌లను పంపండి. చాట్ డిజైన్ స్నిప్ చేయవచ్చు, బ్యాడ్జ్ మరియు పూర్తి సందేశం మరియు ఇది టెక్స్ట్ లేదా వీడియో కావచ్చు.", + "Required field": "కావలసిన సమాచారం!", + "Invalid email format! Please enter a valid email address": "చెల్లని ఇమెయిల్ ఫార్మాట్! దయచేసి చెల్లుబాటు అయ్యే ఇమెయిల్ చిరునామాను నమోదు చేయండి.", + "Invalid link": "చెల్లని లింక్!", + "Maximum length is": "గరిష్ట పొడవు", + "characters": "అక్షరాలు!", + "Invalid number format! Please enter a valid number": "చెల్లని సంఖ్య ఆకృతి! దయచేసి చెల్లుబాటు అయ్యే సంఖ్యను నమోదు చేయండి.", + "Insert email template to content": "కంటెంట్‌కు ఇమెయిల్ టెంప్లేట్‌ను చొప్పించండి", + "Logs": "చిట్టాలు", + "There are no logs recorded": "లాగ్‌లు నమోదు చేయబడలేదు", + "Module": "మాడ్యూల్", + "Unchanged fields": "మారని క్షేత్రాలు", + "Changed fields": "ఫీల్డ్‌లు మార్చబడ్డాయి", + "Create": "సృష్టించు", + "Update": "నవీకరణ", + "Changes": "మార్పులు", + "Choose start date": "ప్రారంభ తేదీని ఎంచుకోండి", + "Choose end date": "ముగింపు తేదీని ఎంచుకోండి", + "Permission denied": "అనుమతి నిరాకరించబడింది", + "Old data": "పాత డేటా", + "New data": "క్రొత్త డేటా", + "Archive": "ఆర్కైవ్", + "NetworkError": "కనెక్షన్‌ను పునరుద్ధరించడానికి ప్రయత్నిస్తున్నారు. ఇప్పుడు చేసిన మార్పులు సేవ్ చేయబడకపోవచ్చు.", + "Email add account description question": "మీరు భాగస్వామ్య ఇమెయిల్ ఖాతాను కనెక్ట్ చేస్తున్నారా?", + "Email add account description": "మీరు మీ సంభాషణల ఇన్‌బాక్స్‌కు ఇమెయిల్‌ను కనెక్ట్ చేసినప్పుడు, మీరు దీన్ని భాగస్వామ్య ఖాతాగా కనెక్ట్ చేస్తున్నారు. భాగస్వామ్య ఖాతాలకు పంపిన సందేశాలను మీ బృందం ఇన్‌బాక్స్‌కు ప్రాప్యత ఉన్న ప్రతి ఒక్కరూ చూడవచ్చు.", + "No connected email": "కనెక్ట్ చేయబడిన ఇమెయిల్ లేదు", + "Your email will be sent with Erxes email template": "మీ ఇమెయిల్ ఎర్క్స్ ఇమెయిల్ టెంప్లేట్‌తో పంపబడుతుంది" +} diff --git a/ui/src/locales/tr_TR.json b/ui/src/locales/tr_TR.json new file mode 100644 index 00000000000..f9a83b6eedf --- /dev/null +++ b/ui/src/locales/tr_TR.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Emin misiniz? Bu geri alınamaz.", + "Yes, I am": "Evet benim", + "No, Cancel": "Hayır, İptal", + "Filter by tags": "Etikete göre filtrele", + "There is no data": "Veri yok", + "There is no data.": "Veri yok.", + "Load more": "Daha fazla yükle", + "There aren't any activities at the moment.": "Şu anda herhangi bir etkinlik yok.", + "Reset your password": "Şifrenizi sıfırlayın", + "Email me the instruction": "Talimatı bana e-posta ile gönder", + "Sign in": "oturum aç", + "Change password": "Şifre değiştir", + "Set your new password": "Yeni şifrenizi belirleyin", + "Forgot password?": "Parolanızı mı unuttunuz?", + "Photo": "Fotoğraf", + "Name": "ad", + "Views": "Görüntüleme", + "Conversion": "Dönüştürmek", + "Go to import": "İçe aktarmaya git", + "Conversion rate": "Dönüşüm oranı", + "Contacts gathered": "Toplanan kişiler", + "Create lead": "Açılır Pencereler Oluştur", + "Form title": "Form başlığı", + "Related": "İlişkili", + "Form description": "Form açıklaması", + "Position": "Durum", + "Username": "Kullanıcı adı", + "Email": "E-posta", + "sec": "sek", + "Twitter username": "Twitter kullanıcı adı", + "Inbox": "Gelen kutusu", + "Workflow": "İş Akışı", + "Watch": "İzlemek", + "Watching": "Seyretme", + "Team Inbox": "Ekip Gelen Kutusu", + "Customers": "Müşteriler", + "Companies": "şirketler", + "Engage": "Tut", + "Insights": "Insights", + "Knowledge Base": "Bilgi tabanı", + "Settings": "Ayarlar", + "Resolve": "çözmek", + "Send": "Gönder", + "No company": "Şirket yok", + "No customer": "müşteri yok", + "Not tagged yet": "Henüz etiketlenmedi", + "New note": "Yeni not", + "Conversation": "konuşma", + "Notes": "notlar", + "Activity": "Aktivite", + "Basic info": "Temel bilgi", + "Size": "Boyut", + "Other": "Diğer", + "Industry": "sanayi", + "Website": "İnternet sitesi", + "Plan": "Plan", + "About": "hakkında", + "Discard": "Sil", + "Save": "Kayıt etmek", + "Create response template": "Yanıt şablonu oluştur", + "Associate": "ortak", + "No tags": "Etiketsiz", + "Add customer": "Müşteri ekle", + "No segments": "Segment yok", + "Manage Columns": "Sütunları Yönet", + "New customer": "Yeni müşteri", + "Add company": "Şirket ekle", + "New company": "Yeni şirket", + "Choose which column you see": "Göreceğiniz sütunu seçin", + "There is no engage message.": "Etkileşim mesajı yok.", + "Add Knowledge base": "Bilgi tabanı ekle", + "Add knowledge base.": "Bilgi tabanı ekleyin.", + "New Channel": "Yeni Kanal", + "Edit": "Düzenle", + "Edit basic info": "Temel bilgileri düzenleyin", + "Manage integration": "Entegrasyonu yönet", + "Manage Integration": "Entegrasyonu Yönet", + "Choose new brand": "Yeni marka seçin", + "Edit integration": "Entegrasyonu düzenle", + "Integration": "bütünleşme", + "Integration menu": "Entegrasyon menüsü", + "New Brand": "Yeni marka", + "Add facebook page": "Facebook sayfası ekle", + "Add integrations": "Entegrasyon ekleyin", + "Add messenger": "Messenger ekle", + "There is no lead.": "Hiç ipucu yok.", + "New response template": "Yeni yanıt şablonu", + "Cancel": "İptal etmek", + "Public": "halka açık", + "Private": "Özel", + "New email template": "Yeni e-posta şablonu", + "Local publisher's email template": "Yerel yayıncının e-posta şablonu", + "New user": "Yeni kullanıcı", + "Load More": "Daha fazla yükle", + "Session count": "Oturum sayısı", + "Last seen at": "Son görülme tarihi", + "Tags": "Etiketler", + "Member": "üye", + "Remove": "Kaldırmak", + "No companies added yet!": "Henüz şirket eklenmedi!", + "Merge": "Birleştirmek", + "First Name": "İsim", + "Last Name": "Soyadı", + "First name": "İsim", + "Last name": "Soyadı", + "Primary Email": "Öncelikli E-posta", + "Phone": "Telefon", + "Is user": "Kullanıcı", + "Save & New": "Kaydet ve Yeni", + "Save & Close": "Kaydet kapat", + "Close": "Kapat", + "Customer properties": "Müşteri özellikleri", + "Device properties": "Cihaz özellikleri", + "Location": "yer", + "Browser": "Tarayıcı", + "Platform": "platform", + "IP Address": "IP adresi", + "Hostname": "Hostadı", + "Language": "Dil", + "User Agent": "Kullanıcı Aracısı", + "Other properties": "Diğer özellikler", + "Facebook": "Facebook", + "Facebook profile": "Facebook kimliği", + "Messenger usage": "Messenger kullanımı", + "Status": "durum", + "Online": "İnternet üzerinden", + "Offline": "Çevrim", + "Twitter": "heyecan", + "Twitter quote": "Twitter teklifi", + "Retweet": "Retweet", + "Screen name": "Ekran Adı", + "Don't see the result you're looking for? ": "Aradığınız sonucu görmüyor musunuz?", + "Merged Info": "Birleştirilmiş Bilgi", + "E-mail": "E-mail", + "Integrations": "Entegrasyonları", + "integration": "bütünleşme", + "Brands": "Markalar", + "Start date": "Başlangıç tarihi", + "End date": "Bitiş tarihi", + "lead": "Açılır pencereler", + "twitter": "heyecan", + "facebook": "Facebook", + "messenger": "haberci", + "Title": "Başlık", + "Brand": "Marka", + "Current Password": "Şimdiki Şifre", + "Current password": "Şimdiki Şifre", + "New Password": "Yeni Şifre", + "Re-type Password to confirm": "Onaylamak için Şifreyi tekrar yazın", + "Signature": "İmza", + "simple": "basit", + "custom": "görenek", + "default": "varsayılan", + "default language": "varsayılan dil", + "primary": "birincil", + "Content": "içerik", + "Save & draft": "Taslağı kaydet", + "Save & live": "Kaydet ve yaşa", + "Message:": "İleti:", + "Email template:": "E-posta şablonu:", + "Email subject:": "E-posta konu:", + "From": "itibaren", + "Message type:": "Mesaj tipi:", + "Sent as:": "Olarak gönderildi:", + "Brand:": "Marka:", + "Add rule": "Kural ekle", + "Last online": "Son çevrimiçi", + "No Activities": "Etkinlik Yok", + "There is no customer.": "Müşteri yok.", + "Properties": "Özellikleri", + "Customize ": "Özelleştirmek", + "Kind": "tür", + "All": "Herşey", + "Auto": "Oto", + "Visitor auto": "Ziyaretçi aracı", + "Manual": "Manuel", + "Delivered to a user s email inbox": "Bir kullanıcının e-posta gelen kutusuna teslim edildi", + "Customize with your own templates": "Kendi şablonlarınızla özelleştirin", + "Delivered inside your app": "Uygulamanızın içinde teslim edildi", + "Reach active users": "Aktif kullanıcılara ulaşın", + "Channel": "Kanal", + "Edit columns": "Sütunları düzenle", + "Auto message": "Otomatik mesaj", + "Manual message": "Manuel mesaj", + "Visitor auto message": "Ziyaretçi otomatik mesajı", + "Actions": "Hareketler", + "Created date": "Oluşturma tarihi", + "Type": "tip", + "Failed": "Başarısız oldu", + "Sent": "Gönderilen", + "Total": "Toplam", + "Pause": "Duraklat", + "Set live": "Yayına ayarla", + "Sending": "gönderme", + "Delete": "Sil", + "Choose segment": "Segment seçin", + "To:": "Kime:", + "Messenger kind:": "Messenger türü:", + "Title:": "Başlık", + "Channel:": "Kanal", + "No items": "Öğe yok", + "New": "Yeni", + "Options:": "Seçenekler:", + "Options": "Seçenekler", + "Type:": "Tür:", + "Add": "Ekle", + "Validation:": "onaylama", + "Date": "tarih", + "Number": "Numara", + "Text:": "Metin:", + "Description:": "Açıklama:", + "This item is requried": "Bu ürün gerekli", + "Preview": "Ön izleme", + "Column name": "Sütun adı", + "Visible": "Gözle görülür", + "Visibility": "görünürlük", + "Choose person": "Kişi seçin", + "Conversation Details": "sohbet detayları", + "Opened": "Açıldı", + "Conversations": "Konuşmalar", + "Channels": "Kanallar", + "Select all": "Hepsini seç", + "Filter by tag": "Etikete göre filtrele", + "Filter by integrations": "Entegrasyonlara göre filtrele", + "Filter by brand": "Markaya göre filtre", + "Filter by channel": "Kanala göre filtrele", + "Filter by status": "Duruma göre filtrele", + "# Channel": "# Kanal", + "Unassigned": "Atanmayanlar", + "Participating": "katılan", + "Resolved": "kararlı", + "View more": "Daha fazla göster", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Müşteri çevrimdışı. Mesajları gizlemek ve göndermek için tıklayın; bir dahaki sefere çevrimiçi olduklarında mesajlar alacaktır.", + "No templates": "Şablon yok", + "Save as template": "Şablon olarak kaydet", + "Daily First Response Resolve Rate": "Günlük İlk Müdahale Çözme Oranı", + "Daily First Response Resolve Rate by Team Members": "Ekip Üyelerinin Günlük İlk Yanıt Çözüm Oranı", + "Daily Response Close Resolve Rate by Team Members": "Günlük Yanıt Kapat Ekip Üyelerinin Çözme Oranı", + "Volume Report": "Hacim Raporu", + "Feedbacks gathered through various customer engagement channels.": "Çeşitli müşteri katılım kanalları aracılığıyla geri bildirimler toplandı.", + "Response Report": "Yanıt Raporu", + "Total number of response for customer feedbacks, by each staff.": "Her personel tarafından müşteri geri bildirimleri için toplam yanıt sayısı.", + "Response Close Report": "Yanıt Kapat Raporu", + "Average time of each staff solving problems that based on customer feedbacks.": "Her bir personelin ortalama müşteri geri bildirimlerine dayalı problem çözme süresi.", + "First Response Report": "İlk Yanıt Raporu", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Tek bir geri bildirim için yanıt süresi. İstatistikler, her bir personel tarafından ortalama yanıt süresini tanımlayacaktır.", + "Daily Response Close Resolve Rate": "Günlük Yanıt Kapat Çözümleme Oranı", + "Daily Response Close Resolve rate by Team Members": "Günlük Yanıt Kapat Ekip Üyelerinin Çözme Oranı", + "Response Times summary": "Tepki Süreleri özeti", + "Response Trend": "Yanıt Eğilimi", + "Punch card": "Delikli kart", + "Response by team members": "Ekip üyeleri tarafından verilen yanıt", + "Tag": "Etiket", + "Internal note": "Dahili not", + "Manage templates": "Şablonları yönet", + "Volume summary": "Cilt özeti", + "Volume Trend": "Hacim Eğilimi", + "Summary": "özet", + "Install code": "Yükleme kodu", + "No copyable code": "Kopyalanabilir kod yok", + "Manage Knowledge Base": "Bilgi Tabanını Yönet", + "Add Category": "Kategori ekle", + "Add Article": "Makale Ekle", + "Customer engagement. REDEFINED.": "Müşteri etkileşimi. Yeniden tanımlandı.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes bir AI, satış, pazarlama ve destek için açık kaynaklı mesajlaşma platformuyla buluşuyor", + "404. This page is not found.": "404. Bu sayfa bulunamadı.", + "erxes is an open-source messaging platform for customer success": "erxes, müşteri başarısı için açık kaynaklı bir mesajlaşma platformudur", + "Notification settings": "Bildirim ayarları", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "İşletmenizin daha fazla etkileşimli müşteri çekmesine yardımcı olmak için tasarlanmış pazarlama, satış ve müşteri hizmetleri platformu. Hubspot'u görev ve topluluk güdümlü ekosistemle değiştirin.", + "Mark Page Read": "Sayfa Okumasını İşaretle", + "Mark All Read": "Tümünü Okundu Olarak İşaretle", + "Coming soon": "Çok yakında", + "Looks like you are all caught up": "Görünüşe göre hepiniz yakalandınız", + "AI": "AI", + "See all": "Tümünü Gör", + "Select a field": "Bir alan seçin", + "Add condition": "Koşul ekle", + "Parent segment conditions": "Üst segment koşulları", + "Filter by segments": "Segmentlere göre filtrele", + "New segment": "Yeni segment", + "Manage segments": "Segmentleri yönet", + "Users who match": "Eşleşen kullanıcılar", + "any": "hiç", + "all": "herşey", + "of the below conditions": "aşağıdaki koşulların", + "Sub segment of": "Alt bölümü", + "Color": "Renk", + "Filters": "Filtreler", + "User(s) will recieve this message": "Kullanıcılar bu mesajı alacak", + "Color code": "Renk kodu", + "Engage Message": "İletiyi meşgul et", + "Item counts": "Ürün sayıları", + "Appearance": "Görünüm", + "Hours, Availability & Other configs": "Saatler, Kullanılabilirlik ve Diğer yapılandırmalar", + "There is no brand": "Marka yok", + "There is no integration in this channel.": "Bu kanalda entegrasyon yok.", + "Template markup": "Şablon işaretleme", + "Use html template here": "Burada html şablonunu kullan", + "Choose your email template type": "E-posta şablonu türünüzü seçin", + "Email signatures": "E-posta imzaları", + "Personal Settings": "Kişisel ayarlar", + "Account Settings": "Hesap ayarları", + "Profile": "Profil", + "Get notification by email": "E-posta ile bildirim alın", + "Admin": "yönetim", + "Contributor": "iştirakçi", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Biz sizi erxes sıcak karşılama ve bizimle uzun vadeli sağlıklı bir çalışma dernek için sabırsızlanıyoruz.", + "Hi, any questions?": "Merhaba, sorularınız mı var?", + "1 hour ago": "1 saat önce", + "We need your help!": "Yardımına ihtiyacımız var!", + "6 minutes ago": "6 dakika önce", + "Write a reply ...": "Bir cevap yaz ...", + "App": "Uygulama", + "From email": "E-postadan", + "User email title": "Kullanıcı e-posta başlığı", + "User email content": "Kullanıcı e-posta içeriği", + "Admin emails": "Yönetici e-postaları", + "Admin email title": "Yönetici e-posta başlığı", + "Admin email content": "Yönetici e-posta içeriği", + "Redirect url": "Yönlendirme bağlantısı", + "On success": "Başarı üzerine", + "Load": "Yük", + "Success": "başarı", + "Thank content": "Teşekkür içeriği", + "Choose a custom color": "Özel bir renk seçin", + "Choose a wallpaper": "Bir duvar kağıdı seçin", + "Choose a logo": "Bir logo seçin", + "Visible online to visitor or customer": "Ziyaretçiye veya müşteriye çevrimiçi olarak görünür", + "Online messaging": "Çevrimiçi mesajlaşma", + "Welcome message": "Karşılama mesajı", + "Offline messaging": "Çevrimdışı mesajlaşma", + "Away message": "Uzak mesaj", + "Thank you message": "Teşekkür mesajı", + "Hours & Availability": "Çalışma Saatleri", + "Turn online/offline manually": "Çevrimiçi / çevrimdışı manuel olarak çevirme", + "Set to follow your schedule": "Programınıza uymak için ayarlayın", + "Other configs": "Diğer yapılandırmalar", + "Notify customer": "Müşteriye bildir", + "Online hours": "Çevrimiçi saatler", + "Add another time": "Başka bir zaman ekle", + "Time zone": "Saat dilimi", + "Messenger": "haberci", + "Knowledge base": "Bilgi tabanı", + "Notification": "Bildirim", + "Notifications": "Bildirimler", + "Show unread": "Okunmamışları göster", + "Unread": "Okunmamış", + "Recent": "Son", + "Mark all as read": "Tümünü okundu olarak işaretle", + "Email Appearance": "E-posta Görünümü", + "Team Members": "Takım üyeleri", + "Account default": "Hesap varsayılanı", + "Team members": "Takım üyeleri", + "Full name": "Ad Soyad", + "Leads": "Açılır pencereler", + "Email Signature": "E-posta İmzası", + "Response Template": "Yanıt Şablonu", + "Email Template": "E-posta şablonu", + "Response templates": "Yanıt şablonları", + "Email templates": "E-posta Şablonları", + "Brand Name": "Marka adı", + "Current template": "Geçerli şablon", + "Created at": "Oluşturma tarihi", + "Manage Fields": "Alanları Yönet", + "Duplicate": "Çiftleme", + "Code": "kod", + "Profile settings": "Profil ayarları", + "Change Password": "Şifre değiştir", + "Signatures are only included in response emails.": "İmzalar yalnızca yanıt e-postalarına dahil edilir.", + "Signature template": "İmza şablonu", + "You can use Markdown to format your signature.": "İmzanızı biçimlendirmek için Markdown'u kullanabilirsiniz.", + "Password": "Parola", + "Password confirmation": "Şifre onayı", + "Choose the channels": "Kanalları seçin", + "Simple": "Basit", + "Custom": "görenek", + "Create a new Company": "Yeni bir Şirket oluşturun", + "New Company": "Yeni Şirket", + "Edit name": "Adı düzenle", + "Customer": "Müşteri", + "Add tag": "Etiket ekle", + "Company": "şirket", + "New message ": "Yeni Mesaj", + "There aren’t any activities at the moment.": "Şu anda herhangi bir etkinlik yok.", + "This item is required": "Bu öğe gerekli", + "Manage fields": "Alanları yönet", + "Add integrations ": "Entegrasyon ekleyin", + "Form": "Form", + "Create a new Customer": "Yeni bir Müşteri oluşturun", + "New Customer": "Yeni müşteri", + "Segments": "Bölümleri", + "Add a condition": "Koşul ekle", + "Open": "Açık", + "Choose channel": "Kanal seç", + "Who is this message for?": "Bu mesaj kimler içindir?", + "Compose your message": "Mesajınızı yazın", + "No items added": "Hiçbir öğe eklenmedi", + "Submit": "Sunmak", + "Next": "Sonraki", + "Save & Draft": "Taslağı kaydet", + "Save & Live": "Kaydet ve Canlı", + "From:": "Gönderen:", + "Pages": "Sayfalar", + "Links": "Bağlantılar", + "Enter your password to Confirm": "Onaylamak için şifrenizi girin", + "Number of visits": "Ziyaret sayısı", + "Written By": "Tarafından yazılmıştır", + "Icon": "ikon", + "draft": "taslak", + "Twitter Username": "Twitter kullanıcı adı", + "LinkedIn": "LinkedIn", + "Youtube": "Youtube", + "Github": "Github", + "Edit response": "Yanıtı düzenle", + "To send your message press Enter and Shift + Enter to add a new line": "Mesajınızı göndermek için Enter tuşuna basın ve yeni bir satır eklemek için Shift + Enter tuşlarına basın", + "To send your note press Enter and Shift + Enter to add a new line": "Notunuzu göndermek için Enter tuşuna basın ve yeni bir satır eklemek için Shift + Enter tuşlarına basın", + "Please enter an unit price. It should be a number": "Lütfen birim fiyat girin. Bir sayı olmalı", + "Type to search": "Aramak için yazın", + "Members": "Üyeler", + "Choose integrations": "Entegrasyonları seçin", + "Choose brands": "Marka seçin", + "Select a date": "Bir tarih seçin", + "Click to select a date": "Bir tarih seçmek için tıklayın", + "Choose users": "Kullanıcıları seçin", + "Select Brand": "Marka Seçin", + "Write here Welcome message.": "Buraya yaz Hoşgeldiniz mesajı.", + "Write here Away message.": "Buraya yazın mesaj.", + "Write here Thank you message.": "Buraya yazın Teşekkür ederim mesajı.", + "Select app": "Uygulama seçin", + "Enter new password": "Yeni şifre girin", + "Choose channels": "Kanal seçin", + "Select": "seçmek", + "select": "seçmek", + "Choose members": "Üye seçin", + "Search": "Arama", + "your@email.com": "your@email.com", + "password": "parola", + "registered@email.com": "registered@email.com", + "new password": "Yeni Şifre", + "Start typing to leave a note": "Not bırakmak için yazmaya başlayın", + "Re-type password": "Şifrenizi yeniden yazın", + "Name:": "Ad:", + "Size:": "Boyut:", + "Website:": "İnternet sitesi:", + "Industry:": "Endüstri:", + "Plan:": "Plan:", + "There arent't any groups and fields": "Herhangi bir grup ve alan yok", + "Please add property Group first": "Lütfen önce Mülk Grubu'nu ekleyin", + "Add group": "Grup ekle", + "Add Property": "Mülk Ekle", + "Add Group & Field ": "Grup ve Alan Ekle", + "Add Group": "Grup ekle", + "Edit Property": "Mülkü Düzenle", + "Group:": "Grup:", + "There arent't any fields in this group": "Bu grupta hiç alan yok", + "Customer Properties": "Müşteri Özellikleri", + "Company Properties": "Şirket Özellikleri", + "Add an option": "Seçenek ekle", + "Copy to clipboard": "Panoya kopyala", + "Go to home page": "Ana sayfaya git", + "Assign to": "Atamak", + "Remove assignee": "Atananı kaldır", + "Account settings": "Hesap ayarları", + "General Settings": "Genel Ayarlar", + "Integration Settings": "Entegrasyon ayarları", + "Personal settings": "Kişisel ayarlar", + "Add category": "Kategori ekle", + "Filter": "filtre", + "Live": "Canlı", + "Draft": "taslak", + "Paused": "Durduruldu", + "Your messages": "Mesajların", + "Delivered inside your app Reach active users": "Uygulamanızın içinde teslim edildi Etkin kullanıcılara ulaşın", + "Delivered to a user s email inbox Customize with your own templates": "Bir kullanıcının e-posta gelen kutusuna teslim edilir Kendi şablonlarınızla özelleştirin", + "email": "E-posta", + "Create segment": "Segment oluştur", + "customers": "müşteriler", + "has any value": "herhangi bir değeri var", + "is unknown": "bilinmeyen", + "is not": "değil", + "is": "dır-dir", + "Less than": "Daha az", + "City": "Kent", + "Greater than": "Daha büyük", + "Country": "ülke", + "Current page url": "Geçerli sayfa URL'si", + "Browser language": "Tarayıcı dili", + "conversation": "konuşma", + "engageMessage": "engageMessage", + "customer": "müşteri", + "company": "şirket", + "starts with": "ile başlar", + "ends with": "ile biter", + "contains": "içeren", + "does not contain": "içermiyor", + "Basic Info": "Temel bilgi", + "Add Phone": "Telefon Ekle", + "Add Email": "E-posta Ekle", + "Choose your tags": "Etiketlerinizi seçin", + "Manage tags": "Etiketleri yönet", + "Edit Profile": "Profili Düzenle", + "Sign out": "oturumu Kapat", + "Last Updated By": "Son Güncelleme Tarihi", + "There is no channel": "Kanal yok", + "Facebook page": "Facebook Sayfası", + "plan": "plan", + "Edit segment": "Segmenti düzenle", + "New message": "Yeni Mesaj", + "Message": "İleti", + "Merge Customers": "Müşterileri Birleştir", + "Assign": "Atamak", + "There is no message.": "Mesaj yok.", + "per page": "Sayfa başına", + "[view]": "[görünüm]", + "Go to twitter": "Twitter'a git", + "Build": "İnşa etmek", + "`s integration": "`ın entegrasyonu", + "Created": "düzenlendi", + "Email templates:": "E-posta Şablonları:", + "Content:": "İçerik:", + "Response Templates": "Yanıt Şablonları", + "Merge Companies": "Şirketleri Birleştir", + "Response template": "Yanıt şablonu", + "Attach file": "Dosya eki", + "Upload": "Yükleme", + "ShoutBox": "ShoutBox", + "Popup": "Açılır", + "Embedded": "Gömülü", + "Choose a flow type": "Bir akış türü seçin", + "CallOut": "Çağırmak", + "Callout title": "Ek bilgi başlığı", + "Callout body": "Ek bilgi gövdesi", + "Callout button text": "Ek bilgi düğmesi metni", + "Skip callOut": "Aramayı atla", + "Form button text": "Form düğmesi metni", + "Theme color": "Tema rengi", + "Featured image": "Özellikli resim", + "Full Preview": "Tam Önizleme", + "Try some of these colors:": "Bu renklerden bazılarını deneyin:", + "Included fields": "Dahil edilen alanlar", + "Deal": "Satış Hattı", + "Deals": "Satış Boru Hatları", + "New Product & Service": "Yeni Ürün ve Hizmet", + "No product or services": "Ürün veya hizmet yok", + "UOM": "UoM", + "Quantity": "miktar", + "Unit price": "Birim fiyat", + "Discount": "İndirim", + "Tax": "Vergi", + "Ticket": "Bilet", + "Task": "Görev", + "Select company": "Şirket seçin", + "Select customer": "Müşteri seçin", + "Note": "Not", + "Assigned to": "Atandı", + "Move": "Hareket", + "Move deal": "Fırsatı taşı", + "Copy": "kopya", + "Close date": "Yakın tarih", + "Choose product & service": "Ürün ve hizmet seçin", + "Select product & service": "Ürün ve hizmeti seçin", + "Please, select a close date": "Lütfen bir kapanış tarihi seçin", + "Create a new Product": "Yeni bir Ürün oluşturun", + "New Product": "Yeni ürün", + "SKU": "SKU", + "Choose a company": "Bir şirket seçin", + "Choose a customer": "Bir müşteri seçin", + "Choose a board": "Bir tahta seçin", + "Choose a pipeline": "Bir boru hattı seçin", + "Manage Board & Pipeline": "Pano ve Boru Hattını Yönet", + "Choose a stage": "Bir sahne seçin", + "Deal Settings": "Satış Hattı Ayarları", + "Ticket Settings": "Bilet Ayarları", + "Task Settings": "Görev Ayarları", + "Boards & Pipelines": "Panoları ve Boru Hatları", + "Product & Service": "Ürün ve Hizmet", + "There is no pipeline in this board.": "Bu tahtada boru hattı yok.", + "There is no board": "Tahta yok", + "New Board": "Yeni tahta", + "Add pipeline": "Boru hattı ekle", + "Create one": "Bir tane yarat", + "Edit pipeline": "Boru hattını düzenle", + "Add stage": "Sahne ekle", + "Board": "Yazı tahtası", + "Pipeline": "Boru hattı", + "Stage": "Sahne", + "Stage name": "Sahne adı", + "Add a deal": "Fırsat ekle", + "Add a task": "Görev ekle", + "Add a ticket": "Bilet ekle", + "Priority": "öncelik", + "Critical": "kritik", + "High": "Yüksek", + "Normal": "Normal", + "Low": "Düşük", + "Attachments": "Ekler", + "Source": "Kaynak", + "Select a source": "Bir kaynak seçin", + "Upload an attachment": "Bir ek yükleyin", + "Description": "Açıklama", + "Select a priority": "Bir öncelik seçin", + "Edit deal": "Fırsatı düzenle", + "Edit task": "Görevi düzenle", + "Edit ticket": "Bileti düzenle", + "Add Product / Service": "Ürün / Hizmet Ekle", + "Reply tweet": "Yanıtla tweet", + "Tweet": "Cıvıldamak", + "Details": "ayrıntılar", + "View Profile": "Profili Görüntüle", + "Empty Notes": "Boş Notlar", + "Mini-resume": "Mini özgeçmiş", + "You cannot update this property": "Bu mülkü güncelleyemezsiniz", + "Desktop": "Masaüstü", + "Mobile": "seyyar", + "Tablet": "Tablet", + "Amount": "Miktar", + "Owner": "Sahip", + "Department": "Bölüm", + "Lead Status": "Pop Up durumu", + "Lifecycle State": "Yaşam Döngüsü Durumu", + "Has Authority": "Yetkisi Var", + "Do not disturb": "Rahatsız etmeyin", + "Parent Company": "Ana Şirket", + "Business Type": "İş Tipi", + "Employees count": "Çalışan sayısı", + "Yes": "Evet", + "No": "Hayır", + "Copied": "Kopyalanan", + "General": "Genel", + "Currency": "Para birimi", + "Unit of measurement": "Ölçü birimi", + "Create another board": "Başka bir pano oluştur", + "No pipeline": "Boru hattı yok", + "No stage": "Sahne yok", + "No deal": "Olacak iş değil", + "Background": "Arka fon", + "Choose": "Seç", + "Successfully saved.": "Başarıyla kaydedildi.", + "Successfully moved.": "Başarıyla taşındı.", + "Successfully selected.": "Başarıyla seçildi.", + "Body description here": "Gövde açıklaması burada", + "Thank you.": "Teşekkür ederim.", + "Choose a brand": "Bir marka seçin", + "Write a title": "Bir başlık yazın", + "Contact": "İletişim", + "Created by": "Tarafından yaratıldı", + "Manage": "yönetme", + "Dropdown": "Yıkılmak", + "Slide-in Left": "İçeri Sola Kaydır", + "Slide-in Right": "Sağa Kaydır", + "Enter name": "İsim giriniz", + "Delivered": "teslim", + "Clicked": "Tıklanan", + "Complaint": "şikâyet", + "Bounce": "Sıçrama", + "Rendering Failure": "Görüntü Oluşturma Hatası", + "Rejected": "Reddedildi", + "Action": "Aksiyon", + "Please select one to merge": "Lütfen birleştirilecek birini seçin", + "Filter by date": "Tarihe göre filtrele", + "Total conversations": "Toplam ileti dizisi", + "Filter by form": "Forma göre filtrele", + "Supporters": "Destekçiler", + "Import histories": "İthalat geçmişleri", + "Imported Date": "İçe Aktarma Tarihi", + "Imported User": "İçe Aktarılan Kullanıcı", + "Export customers": "Müşterileri dışa aktar", + "Import customers": "Müşterileri içe aktarma", + "Export companies": "İhracat şirketleri", + "Import companies": "İthalat şirketleri", + "All customers imported successfully": "Tüm müşteriler başarıyla içe aktarıldı", + "There aren't any imports": "Herhangi bir ithalat yok", + "Successfully Removed all customers": "Tüm müşteriler başarıyla kaldırıldı", + "You can only import max 600 at a time": "Bir seferde en fazla 600 içe aktarabilirsiniz", + "Invalid import type": "Geçersiz içe aktarma türü", + "Last updated": "Son güncelleme", + "Filter by lead status": "Açılır Pencereler durumuna göre filtrele", + "No lead status chosen": "Hiçbir olası satış durumu seçilmedi", + "Schedule:": "Program:", + "Every Day": "Her gün", + "Every Month": "Her ay", + "Every Year": "Her yıl", + "Every Monday": "Her pazartesi", + "Every Tuesday": "Her salı", + "Every Wednesday": "Her çarşamba", + "Every Thursday": "Her Perşembe", + "Every Friday": "Her Cuma", + "Every Saturday": "Her cumartesi", + "Every Sunday": "Her pazar", + "Choose a schedule day": "Bir program günü seçin", + "Choose a schedule time": "Bir program zamanı seçin", + "Won": "Kazandı", + "Lost": "Kayıp", + "App store": "Uygulama mağazası", + "App store menu": "Uygulama mağazası menüsü", + "In Progress": "Devam etmekte", + "It`s size exceeds the limit 10mb": "Boyutu 10mb sınırını aşıyor", + "Congrats! Your email sent successfully!": "Tebrikler! E-postanız başarıyla gönderildi!", + "Works with messenger": "Messenger ile çalışır", + "Knowledge base topic": "Bilgi tabanı konusu", + "Package version": "Paket sürümü", + "Branch name": "Şube adı", + "Abbreviated": "kısaltılmış", + "User": "kullanıcı", + "Recent conversations": "Son görüşmeler", + "Start new conversation": "Yeni sohbet başlat", + "Talk with support staff": "Destek personeli ile konuşun", + "Send a message": "Bir mesaj göndermek", + "Volume Report By Customer": "Müşteri Tarafından Hacim Raporu", + "Export Report": "İhracat raporu", + "We`re ready to help you.": "Size yardım etmeye hazırız.", + "Please choose a product": "Lütfen bir ürün seçin", + "Please choose a currency": "Lütfen bir para birimi seçin", + "No board": "Tahta yok", + "Empty": "Boş", + "There is no account.": "Hesap yok.", + "There is no tag.": "Etiket yok.", + "Skip for now": "Şimdilik geç", + "Go to Inbox": "Gelen Kutusuna git", + "Messenger Language": "Messenger Dili", + "Messenger name": "Messenger adı", + "Skip": "Atla", + "Finish": "Bitiş", + "Show": "Göstermek", + "Hide": "Saklamak", + "Previous": "Önceki", + "Users": "Kullanıcılar", + "users": "kullanıcılar", + "brands": "markalar", + "messengers": "haberciler", + "channels": "kanallar", + "Emails": "E-postalar", + "Messengers": "Haberciler", + "You already have": "Zaten sahipsin", + "There is another": "Başka var", + "Let's create your brand": "Markanızı yaratalım", + "Invite users": "Kullanıcıları davet et", + "Let's grow your team": "Takımını büyütelim", + "Invite": "Davet et", + "Let's start": "Hadi başlayalım", + "Start messaging now!": "Şimdi mesajlaşmaya başlayın!", + "Create channel": "Kanal oluştur", + "Get started on your channel": "Kanalınıza başlayın", + "Create your first messenger": "İlk elçinizi oluşturun", + "Welcome": "Hoşgeldiniz", + "Nothing inserted": "Hiçbir şey eklenmedi", + "Empty emails": "Boş e-postalar", + "Initial setup": "İlk kurulum", + "Add another": "Başka birtane ekle", + "Don't show again": "Bir daha gösterme", + "No other pipeline": "Başka boru hattı yok", + "No other boards": "Başka pano yok", + "I'm ready to get started": "Başlamaya hazırım", + "Welcome paragraph": "Size sahip olduğumuz için çok mutluyuz. Kuruluma başlamak için biraz zaman ayıralım", + "Get notified and notify others to keep everything up to date": "Her şeyi güncel tutmak için bildirim alın ve diğerlerine haber verin", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Ekibiniz siteye gönderdiğiniz mesajları almadıysa, e-postayla onlara gönderebiliriz", + "Send an email and notify members that they've been invited!": "Bir e-posta gönderin ve üyelere davet edildiğini bildirin!", + "January": "Ocak", + "February": "Şubat", + "March": "Mart", + "April": "Nisan", + "May": "Mayıs", + "June": "Haziran", + "July": "Temmuz", + "August": "Ağustos", + "September": "Eylül", + "October": "Ekim", + "November": "Kasım", + "December": "Aralık", + "Today": "Bugün", + "Sales": "Satış", + "Monthly view": "Aylık görünüm", + "Filter by": "Tarafından filtre", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Marka oluşturma ve kanal ekleyerek müşterilerinizin ihtiyaçlarını daha iyi analiz edebilir ve sorunlarını çözmenize yardımcı olabilirsiniz", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Büyüyün ve ekibinize kullanıcılar ekleyin! Atama, atama ve en iyi yaptıklarını yapmalarına izin verme", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Her müşteri geri bildirimi ile güncel kalın ve daha anlamlı sohbetler oluşturun", + "Create brand channels that are specifically categorized by type and activity": "Özellikle tür ve etkinliğe göre kategorilere ayrılmış marka kanalları oluşturun", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Buraya bir Müşteri Adayı ekleyin ve Messenger Widget'ınızda görün! Gelen kutunuzda Potansiyel Müşterileri görmek için lütfen kanalınıza eklendiğinden emin olun.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Birçok haberci entegrasyonumuzdan birini seçebilir ve bilgi tabanınıza ekleyebilirsiniz. Bilgi tabanı, haberci widget'ınızın sekmesinde görünür. Bunu yapmak için lütfen bilgi tabanınızı oluşturun ve ekleyin.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "E-posta imzası, tanıma ve güven oluşturmaya yardımcı olan bilgileri paylaşma fırsatıdır.", + "Let's start taking care of your customers": "Müşterilerinize özen göstermeye başlayalım", + "Add in your first company!": "İlk şirketinize ekleyin!", + "Choose from our many integrations and add to your channel": "Birçok entegrasyonumuzdan birini seçin ve kanalınıza ekleyin", + "Let's get you messaging away!": "Hadi mesajlaşmayı bırakalım!", + "Whoops! No messages here but you can always start": "Tüh! Burada mesaj yok ama her zaman başlayabilirsiniz", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Makaleler, müşterilerinizin karşılaştığı herhangi bir sayıdaki sorunu ele alabilir. Bilgi makalelerinin türleri arasında ortak sorunlara yönelik çözümler, ürün veya özellik belgeleri, SSS'ler ve çok daha fazlası bulunabilir.", + "Oops! No data here": "Hata! Burada veri yok", + "Start adding integrations now!": "Şimdi entegrasyon eklemeye başlayın!", + "Add an integration in this Brand": "Bu Markaya bir entegrasyon ekleyin", + "Oh dear! You have no imports": "Ah hayatım! İthalatınız yok", + "A strong customer engagement can help to further brand growth and loyalty": "Güçlü bir müşteri katılımı, marka büyümesinin ve bağlılığının artırılmasına yardımcı olabilir", + "Get started on your pipeline": "Boru hattınıza başlayın", + "Connect to Facebook messages right from your Team Inbox": "Facebook iletilerine doğrudan Ekip Gelen Kutunuzdan bağlanın", + "Tweet back to your DMs right from your Team Inbox": "Doğrudan Ekip Gelen Kutunuzdan DM'lerinize geri tweet atın", + "Connect straight to your Gmail and get those emails going": "Doğrudan Gmail'inize bağlanın ve bu e-postaları hazırlayın", + "Find your lead forms right here in your Widget": "Olası satış formlarınızı Widget'ınızda bulabilirsiniz", + "Get access to your Knowledge Base right in your Widget": "Bilgi Tabanınıza doğrudan Widget'ınızdan erişin", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Yakında Viber'i doğrudan Ekip Gelen Kutunuza bağlayabileceksiniz", + "Get a hold of your Whatsapp messages through your Team Inbox": "Ekip Gelen Kutunuz aracılığıyla Whatsapp mesajlarınızı tutun", + "Connect with Wechat and start messaging right from your Team Inbox": "Wechat ile bağlanın ve doğrudan Team Inbox'ınızdan mesajlaşmaya başlayın", + "Find feedback that has been gathered from various customer engagement channels.": "Çeşitli müşteri etkileşimi kanallarından toplanan geri bildirimleri bulun.", + "A report on the total number of customer feedback responses given by team members.": "Ekip üyeleri tarafından verilen toplam müşteri geribildirimi yanıtı sayısı.", + "The average time a team member solved a problem based on customer feedback.": "Bir ekip üyesinin müşteri geri bildirimlerine dayanarak bir sorunu çözdüğü ortalama süre.", + "You can find stats that defines the average response time by each team member.": "Her ekip üyesinin ortalama yanıt süresini tanımlayan istatistikleri bulabilirsiniz.", + "Oh boy, looks like you need to get a head start on your deals": "Oh oğlum, anlaşmaya başlamanız gerekiyor gibi görünüyor", + "Open segments and starting add details": "Segmentleri aç ve ekleme ayrıntıları", + "Now easier to find contacts according to your brand": "Markanıza göre kişi bulmak artık daha kolay", + "Search and filter customers by form": "Müşterileri forma göre arayın ve filtreleyin", + "There is always a lead!": "Her zaman bir ipucu vardır!", + "Calendar": "Takvim", + "Columns": "Sütunlar", + "columns": "sütunlar", + "Linked Accounts": "Bağlı Hesaplar", + "Select account": "Hesap seçin", + "Select account ...": "Hesap seçin ...", + "Add Account": "Hesap eklemek", + "Remove Account": "Hesabı kaldır", + "You can upload only image file": "Yalnızca .png veya .jpg resim dosyasını yükleyebilirsiniz", + "Permissions": "İzinler", + "New permission": "Yeni izin", + "New group": "Yeni Grup", + "Users groups": "Kullanıcı grupları", + "Choose the module": "Modülü seçin", + "Choose the actions": "Eylemleri seçin", + "Choose the users": "Kullanıcıları seçin", + "Choose the groups": "Grupları seçin", + "Choose groups": "Grup seçin", + "Allow": "İzin vermek", + "Invitation Status": "Davetiye Durumu", + "Permission": "izin", + "data successfully imported": "veriler başarıyla içe aktarıldı", + "Show result": "Sonucu göster", + "Importing": "içe", + "data": "veri", + "errors acquired": "edinilen hatalar", + "There are": "Var", + "Continue": "Devam et", + "Create brand": "Marka oluştur", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "İlk canlı sohbetinizi ve uygulama içi mesajınızı oluşturun. Daha anlamlı etkileşimler için her müşteri geri bildirimi ile güncel kalın.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Kanal, tüm markaları ve uygulamalarını tek bir yerde tam olarak görmenizi sağlar. Gelen tüm iletileri ekip gelen kutunuzda görebilirsiniz.", + "Hooray and Congratulations! You've completed the initial setup!": "Yaşasın ve Tebrikler! İlk kurulumu tamamladınız!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Aşağıdaki kodu erxes chat'in görünmesini istediğiniz her sayfada etiketleyin.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Erxes'in yol açmasını istediğiniz her sayfaya gövde etiketinden önce aşağıdaki kodu yapıştırın", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Akış türünüz katıştırılmışsa, erxes öğesinin görünmesini istediğiniz ek olarak aşağıdaki kodu da yapıştırın", + "If your flow type is popup paste the code below additionally in your button": "Akış türünüz pop-up ise aşağıdaki kodu ek olarak düğmenize yapıştırın", + "Choose messengers": "Haberci seçin", + "erxes allows you to create multiple messengers": "erxes birden fazla mesajlaşma oluşturmanıza izin verir", + "erxes allows you to create multiple brands": "erxes, birden fazla marka oluşturmanıza olanak tanır", + "erxes allows you to create multiple channels": "erxes birden fazla kanal oluşturmanıza olanak tanır", + "Contacts": "İletişim", + "Create group": "Grup oluştur", + "Visitors": "Ziyaretçi", + "Due in the next day": "Ertesi gün vadesi gelecek", + "Due in the next week": "Gelecek hafta vadesi gelecek", + "Due in the next month": "Gelecek ay vadesi gelecek", + "Has no close date": "Yakın tarihi yok", + "Over due": "Süresi dolmuş", + "Clear Filter": "Temiz filtre", + "Remove this filter": "Bu filtreyi kaldır", + "Filtering is on": "Filtreleme açık", + "Choose products": "Ürünleri seçin", + "Choose companies": "Şirket seçin", + "Choose customers": "Müşteri seçin", + "Choose team members": "Ekip üyelerini seçin", + "erxes Inc": "erxes Inc", + "Get": "Almak", + "Download ios app for free on the App Store": "App Store'dan ios uygulamasını ücretsiz indirin.", + "Download android app for free on the Google play": "Google Play'de android uygulamasını ücretsiz indirin.", + "Please upgrade your browser to use erxes!": "Lütfen erxes kullanmak için tarayıcınızı yükseltin!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Ne yazık ki, erxes ile tam olarak uyumlu olmayan bir tarayıcıda çalışıyorsunuz.", + "Please use recommended version": "Lütfen önerilen sürümü kullanın", + "Messenger data": "Messenger verileri", + "Customer field data": "Müşteri alanı verileri", + "Others": "Diğerleri", + "Select brand": "Marka seçin", + "There is no permissions in this group": "Bu grupta izin yok.", + "There is no group": "Grup yok.", + "User groups": "Kullanıcı Grupları", + "What action can do": "Ne yapabilirim", + "Who can": "Kim yapabilir", + "Grant permission": "İzin ver", + "Check if permission is allowed": "İzne izin verilip verilmediğini kontrol edin", + "Then": "Sonra", + "Or": "Veya", + "Auto message description": "Hedeflenmiş e-posta gönderin ve oturum açmış kullanıcılara marka / etiket / segmentlerine göre sohbet edin. Önceden bir e-posta göndermek veya sohbet etmek için zamanınızı ayarlayabilirsiniz. Sohbet tasarımı kesilebilir, rozet ve tam mesaj olabilir ve bir metin veya video olabilir.", + "Manual message description": "Hedeflenmiş e-posta gönderin ve oturum açmış kullanıcılara marka / etiket / segmentlerine göre sohbet edin. Kaydet düğmesine tıkladıktan hemen sonra bir e-posta veya sohbet gönderilir. Sohbet tasarımı kesilebilir, rozet ve tam mesaj olabilir ve bir metin veya video olabilir.", + "Visitor auto message description": "Ziyaret edilen sayfalarına, etkinliklerine, ikamet ettikleri ülkeye ve şehre göre web sitesinden çıkış yapan ziyaretçilere hedeflenmiş sohbetler gönderin. Sohbet tasarımı kesilebilir, rozet ve tam mesaj olabilir ve bir metin veya video olabilir.", + "Required field": "Gerekli alan!", + "Invalid email format! Please enter a valid email address": "Geçersiz e-posta formatı! Geçerli bir e.", + "Invalid link": "Geçersiz link!", + "Maximum length is": "Maksimum uzunluk", + "characters": "karakterler!", + "Invalid number format! Please enter a valid number": "Geçersiz sayı biçimi! Lütfen geçerli bir sayı girin.", + "Insert email template to content": "İçeriğe e-posta şablonu ekle", + "Logs": "Kütükler", + "There are no logs recorded": "Kaydedilmiş günlük yok", + "Module": "modül", + "Unchanged fields": "Değişmeyen alanlar", + "Changed fields": "Değişen alanlar", + "Create": "Oluşturmak", + "Update": "Güncelleme", + "Changes": "değişiklikler", + "Choose start date": "Başlangıç tarihini seçin", + "Choose end date": "Bitiş tarihini seçin", + "Permission denied": "İzin reddedildi", + "Old data": "Eski veriler", + "New data": "Yeni veri", + "Archive": "Arşiv", + "NetworkError": "Bağlantı yeniden kurulmaya çalışılıyor. Şimdi yapılan değişiklikler kaydedilemeyebilir.", + "Email add account description question": "Paylaşılan bir e-posta hesabı mı bağlıyorsunuz?", + "Email add account description": "İleti dizisi gelen kutunuza bir e-posta bağladığınızda, bunu paylaşılan bir hesap olarak bağlarsınız. Paylaşılan hesaplara gönderilen mesajlar, ekip gelen kutunuza erişimi olan herkes tarafından görüntülenebilir.", + "No connected email": "Bağlı e-posta yok", + "Your email will be sent with Erxes email template": "E-postanız Erxes e-posta şablonu ile gönderilecektir" +} diff --git a/ui/src/locales/uk_UA.json b/ui/src/locales/uk_UA.json new file mode 100644 index 00000000000..2240a9c45f1 --- /dev/null +++ b/ui/src/locales/uk_UA.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "Ти впевнений? Це не може бути скасовано.", + "Yes, I am": "Так я", + "No, Cancel": "Ні, скасувати", + "Filter by tags": "Фільтр за тегами", + "There is no data": "Даних немає", + "There is no data.": "Даних немає.", + "Load more": "Завантажити ще", + "There aren't any activities at the moment.": "На даний момент жодної діяльності немає.", + "Reset your password": "Скинути пароль", + "Email me the instruction": "Надішліть мені електронну інструкцію", + "Sign in": "Увійти", + "Change password": "Змінити пароль", + "Set your new password": "Встановіть новий пароль", + "Forgot password?": "Забули пароль?", + "Photo": "Фото", + "Name": "Ім'я", + "Views": "Перегляди", + "Conversion": "Перетворення", + "Go to import": "Перейдіть на імпорт", + "Conversion rate": "Обмінний курс", + "Contacts gathered": "Зібрано контакти", + "Create lead": "Створіть Поп-Ups", + "Form title": "Назва форми", + "Related": "Пов'язані", + "Form description": "Опис форми", + "Position": "Позиція", + "Username": "Ім'я користувача", + "Email": "Електронна пошта", + "sec": "сек", + "Twitter username": "Ім'я користувача Twitter", + "Inbox": "Вхідні", + "Workflow": "Робочий процес", + "Watch": "Дивіться", + "Watching": "Спостерігаючи", + "Team Inbox": "Вхідні команди", + "Customers": "Клієнти", + "Companies": "Компанії", + "Engage": "Займайся", + "Insights": "Інформація", + "Knowledge Base": "База знань", + "Settings": "Налаштування", + "Resolve": "Вирішіть", + "Send": "Надіслати", + "No company": "Жодної компанії", + "No customer": "Немає замовника", + "Not tagged yet": "Ще не позначено тегами", + "New note": "Нова примітка", + "Conversation": "Бесіда", + "Notes": "Примітки", + "Activity": "Діяльність", + "Basic info": "Основна інформація", + "Size": "Розмір", + "Other": "Інший", + "Industry": "Промисловість", + "Website": "Веб-сайт", + "Plan": "План", + "About": "Про", + "Discard": "Відмовтеся", + "Save": "Зберегти", + "Create response template": "Створіть шаблон відповіді", + "Associate": "Асоційований", + "No tags": "Тегів немає", + "Add customer": "Додати клієнта", + "No segments": "Без сегментів", + "Manage Columns": "Керуйте стовпцями", + "New customer": "Новий клієнт", + "Add company": "Додати компанію", + "New company": "Нова компанія", + "Choose which column you see": "Виберіть, який стовпець ви бачите", + "There is no engage message.": "Немає повідомлення про залучення.", + "Add Knowledge base": "Додайте базу знань", + "Add knowledge base.": "Додайте базу знань.", + "New Channel": "Новий канал", + "Edit": "Редагувати", + "Edit basic info": "Редагувати основну інформацію", + "Manage integration": "Управління інтеграцією", + "Manage Integration": "Управління інтеграцією", + "Choose new brand": "Виберіть новий бренд", + "Edit integration": "Редагувати інтеграцію", + "Integration": "Інтеграція", + "Integration menu": "Інтеграційне меню", + "New Brand": "Новий бренд", + "Add facebook page": "Додати сторінку facebook", + "Add integrations": "Додайте інтеграції", + "Add messenger": "Додати месенджер", + "There is no lead.": "Ведучого немає.", + "New response template": "Новий шаблон відповідей", + "Cancel": "Скасувати", + "Public": "Публічний", + "Private": "Приватний", + "New email template": "Новий шаблон електронної пошти", + "Local publisher's email template": "Шаблон електронної пошти місцевого видавця", + "New user": "Новий користувач", + "Load More": "Завантажити ще", + "Session count": "Кількість сеансів", + "Last seen at": "Востаннє бачив о", + "Tags": "Теги", + "Member": "Член", + "Remove": "Видалити", + "No companies added yet!": "Жодної компанії ще не додано!", + "Merge": "Злиття", + "First Name": "Ім'я", + "Last Name": "Прізвище", + "First name": "Ім'я", + "Last name": "Прізвище", + "Primary Email": "Основна електронна пошта", + "Phone": "Телефон", + "Is user": "Користувач", + "Save & New": "Зберегти та створити нове", + "Save & Close": "Зберегти та закрити", + "Close": "Закрити", + "Customer properties": "Властивості клієнтів", + "Device properties": "Властивості пристрою", + "Location": "Місцезнаходження", + "Browser": "Веб-переглядач", + "Platform": "Платформа", + "IP Address": "IP-адреса", + "Hostname": "Ім'я хоста", + "Language": "Мову", + "User Agent": "Агент користувача", + "Other properties": "Інші властивості", + "Facebook": "Facebook", + "Facebook profile": "Профіль Facebook", + "Messenger usage": "Використання месенджера", + "Status": "Статус", + "Online": "Інтернет", + "Offline": "Офлайн", + "Twitter": "Twitter", + "Twitter quote": "Цитата в Twitter", + "Retweet": "Ретвіт", + "Screen name": "Назва екрана", + "Don't see the result you're looking for? ": "Не бачите результату, який шукаєте?", + "Merged Info": "Об’єднана інформація", + "E-mail": "Електронна пошта", + "Integrations": "Інтеграції", + "integration": "інтеграція", + "Brands": "Бренди", + "Start date": "Дата початку", + "End date": "Дата закінчення", + "lead": "Спливаючі вікна", + "twitter": "щебетати", + "facebook": "facebook", + "messenger": "посланник", + "Title": "Назва", + "Brand": "Бренд", + "Current Password": "Поточний пароль", + "Current password": "Поточний пароль", + "New Password": "Новий пароль", + "Re-type Password to confirm": "Введіть пароль для підтвердження", + "Signature": "Підпис", + "simple": "простий", + "custom": "звичай", + "default": "за замовчуванням", + "default language": "мова за замовчуванням", + "primary": "первинний", + "Content": "Зміст", + "Save & draft": "Зберегти чернетку", + "Save & live": "Зберегти та жити", + "Message:": "Повідомлення:", + "Email template:": "Шаблон електронної пошти:", + "Email subject:": "Тема електронної пошти:", + "From": "З", + "Message type:": "Тип повідомлення:", + "Sent as:": "Надіслано як:", + "Brand:": "Бренд:", + "Add rule": "Додати правило", + "Last online": "Останнє в Інтернеті", + "No Activities": "Ніяких заходів", + "There is no customer.": "Замовника немає.", + "Properties": "Властивості", + "Customize ": "Налаштувати", + "Kind": "Добрий", + "All": "Усі", + "Auto": "Авто", + "Visitor auto": "Авто відвідувачів", + "Manual": "Посібник", + "Delivered to a user s email inbox": "Доставлено до поштової скриньки користувача", + "Customize with your own templates": "Налаштуйте за допомогою власних шаблонів", + "Delivered inside your app": "Поставляється всередині вашого додатка", + "Reach active users": "Досягнення активних користувачів", + "Channel": "Канал", + "Edit columns": "Редагування стовпців", + "Auto message": "Автоматичне повідомлення", + "Manual message": "Повідомлення вручну", + "Visitor auto message": "Автоматичне повідомлення відвідувача", + "Actions": "Дії", + "Created date": "Створена дата", + "Type": "Тип", + "Failed": "Не вдалося", + "Sent": "Надісланий", + "Total": "Всього", + "Pause": "Пауза", + "Set live": "Налаштуйте наживо", + "Sending": "Відправлення", + "Delete": "Видалити", + "Choose segment": "Виберіть сегмент", + "To:": "До:", + "Messenger kind:": "Вид повідомлення:", + "Title:": "Назва", + "Channel:": "Канал", + "No items": "Немає предметів", + "New": "Нові", + "Options:": "Параметри:", + "Options": "Параметри", + "Type:": "Тип:", + "Add": "Додайте", + "Validation:": "Перевірка", + "Date": "Дата", + "Number": "Номер", + "Text:": "Текст:", + "Description:": "Опис:", + "This item is requried": "Цей пункт запитується", + "Preview": "Попередній перегляд", + "Column name": "Назва стовпця", + "Visible": "Видно", + "Visibility": "Видимість", + "Choose person": "Виберіть людину", + "Conversation Details": "Деталі розмови", + "Opened": "Відкрили", + "Conversations": "Бесіди", + "Channels": "Канали", + "Select all": "Вибрати все", + "Filter by tag": "Фільтр за тегом", + "Filter by integrations": "Фільтр за інтеграціями", + "Filter by brand": "Фільтр за маркою", + "Filter by channel": "Фільтр за каналом", + "Filter by status": "Фільтр за статусом", + "# Channel": "# Канал", + "Unassigned": "Непризначений", + "Participating": "Участь", + "Resolved": "Вирішено", + "View more": "Дивитись більше", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "Клієнт офлайн. Клацніть, щоб приховати та надіслати повідомлення, і вони отримають їх наступного разу, коли вони будуть в Інтернеті.", + "No templates": "Без шаблонів", + "Save as template": "Зберегти як шаблон", + "Daily First Response Resolve Rate": "Щоденна швидкість вирішення першого відповіді", + "Daily First Response Resolve Rate by Team Members": "Щоденний коефіцієнт вирішення першої відповіді учасниками команди", + "Daily Response Close Resolve Rate by Team Members": "Щоденна відповідь Закрити показник вирішення учасниками команди", + "Volume Report": "Звіт про обсяг", + "Feedbacks gathered through various customer engagement channels.": "Відгуки, зібрані через різні канали залучення клієнтів.", + "Response Report": "Звіт про реагування", + "Total number of response for customer feedbacks, by each staff.": "Загальна кількість відповідей на відгуки клієнтів від кожного персоналу.", + "Response Close Report": "Звіт про закриття відповіді", + "Average time of each staff solving problems that based on customer feedbacks.": "Середній час роботи кожного персоналу на вирішення проблем, що базуються на відгуках клієнтів.", + "First Response Report": "Перший звіт про відповіді", + "Responding time for a single feedback. Stats will define average response time by each staff.": "Час відповіді на єдиний зворотній зв'язок. Статистика визначає середній час відгуку кожного персоналу.", + "Daily Response Close Resolve Rate": "Щоденна відповідь", + "Daily Response Close Resolve rate by Team Members": "Щоденна відповідь Закрити рівень вирішення учасниками команди", + "Response Times summary": "Підсумок "Час реакції"", + "Response Trend": "Тенденція реагування", + "Punch card": "Панч-карта", + "Response by team members": "Відповідь членів команди", + "Tag": "Тег", + "Internal note": "Внутрішня примітка", + "Manage templates": "Управління шаблонами", + "Volume summary": "Підсумок обсягу", + "Volume Trend": "Тенденція обсягу", + "Summary": "Підсумок", + "Install code": "Встановити код", + "No copyable code": "Немає копіюваного коду", + "Manage Knowledge Base": "Управління базою знань", + "Add Category": "Додати категорію", + "Add Article": "Додати статтю", + "Customer engagement. REDEFINED.": "Залучення клієнтів. ВИЗНАЧЕНО.", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes - AI відповідає платформі обміну повідомленнями з відкритим кодом для продажу, маркетингу та підтримки", + "404. This page is not found.": "404. Цю сторінку не знайдено.", + "erxes is an open-source messaging platform for customer success": "erxes - платформа обміну повідомленнями з відкритим кодом для успіху клієнтів", + "Notification settings": "Налаштування сповіщень", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Платформа маркетингу, продажів та обслуговування клієнтів, розроблена для того, щоб допомогти вашому бізнесу залучити більше зайнятих клієнтів. Замініть Hubspot місією та екосистемою, керованою громадою.", + "Mark Page Read": "Позначити сторінку як прочитану", + "Mark All Read": "Позначити все прочитаним", + "Coming soon": "Незабаром", + "Looks like you are all caught up": "Схоже, вас усіх наздогнали", + "AI": "AI", + "See all": "Бачити все", + "Select a field": "Виберіть поле", + "Add condition": "Додати умову", + "Parent segment conditions": "Умови батьківського сегмента", + "Filter by segments": "Фільтр по сегментах", + "New segment": "Новий сегмент", + "Manage segments": "Управління сегментами", + "Users who match": "Користувачі, які відповідають", + "any": "будь-який", + "all": "всі", + "of the below conditions": "з наведених нижче умов", + "Sub segment of": "Підсегмент", + "Color": "Колір", + "Filters": "Фільтри", + "User(s) will recieve this message": "Користувач (и) отримає це повідомлення", + "Color code": "Код кольору", + "Engage Message": "Залучити повідомлення", + "Item counts": "Кількість елементів", + "Appearance": "Зовнішній вигляд", + "Hours, Availability & Other configs": "Години, доступність та інші налаштування", + "There is no brand": "Немає торгової марки", + "There is no integration in this channel.": "У цьому каналі немає інтеграції.", + "Template markup": "Розмітка шаблону", + "Use html template here": "Використовуйте тут шаблон HTML", + "Choose your email template type": "Виберіть тип шаблону електронної пошти", + "Email signatures": "Підписи електронною поштою", + "Personal Settings": "Особисті налаштування", + "Account Settings": "Налаштування аккаунта", + "Profile": "Профіль", + "Get notification by email": "Отримуйте сповіщення електронною поштою", + "Admin": "Адміністратор", + "Contributor": "Вкладник", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Ми щиро вітаємо вас з erxes та сподіваємось на довготривалу здорову робочу асоціацію з нами.", + "Hi, any questions?": "Привіт, якісь питання?", + "1 hour ago": "1 годину тому", + "We need your help!": "Нам потрібна ваша допомога!", + "6 minutes ago": "6 хвилин тому", + "Write a reply ...": "Написати відповідь ...", + "App": "Додаток", + "From email": "З електронної пошти", + "User email title": "Назва електронної пошти користувача", + "User email content": "Вміст електронної пошти користувача", + "Admin emails": "Електронні листи адміністратора", + "Admin email title": "Назва електронної пошти адміністратора", + "Admin email content": "Вміст електронної пошти адміністратора", + "Redirect url": "URL-адреса перенаправлення", + "On success": "На успіх", + "Load": "Навантаження", + "Success": "Успіх", + "Thank content": "Вдячний вміст", + "Choose a custom color": "Виберіть спеціальний колір", + "Choose a wallpaper": "Виберіть шпалери", + "Choose a logo": "Виберіть логотип", + "Visible online to visitor or customer": "Видимий в Інтернеті для відвідувача або клієнта", + "Online messaging": "Інтернет обмін повідомленнями", + "Welcome message": "Привітання", + "Offline messaging": "Офлайн-повідомлення", + "Away message": "У гостях повідомлення", + "Thank you message": "Подячне повідомлення", + "Hours & Availability": "Години та доступність", + "Turn online/offline manually": "Увімкніть онлайн / офлайн вручну", + "Set to follow your schedule": "Встановіть, щоб дотримуватися вашого графіка", + "Other configs": "Інші конфігурації", + "Notify customer": "Повідомте замовника", + "Online hours": "Онлайн години", + "Add another time": "Додайте інший раз", + "Time zone": "Часовий пояс", + "Messenger": "Месенджер", + "Knowledge base": "База знань", + "Notification": "Повідомлення", + "Notifications": "Сповіщення", + "Show unread": "Показати непрочитані", + "Unread": "Непрочитані", + "Recent": "Останні", + "Mark all as read": "Позначте все як прочитане", + "Email Appearance": "Зовнішній вигляд електронної пошти", + "Team Members": "Члени команди", + "Account default": "Типовий обліковий запис", + "Team members": "Члени команди", + "Full name": "Повне ім'я", + "Leads": "Спливаючі вікна", + "Email Signature": "Підпис електронною поштою", + "Response Template": "Шаблон відповіді", + "Email Template": "Шаблон електронної пошти", + "Response templates": "Шаблони відповідей", + "Email templates": "Шаблони електронної пошти", + "Brand Name": "Назва бренду", + "Current template": "Поточний шаблон", + "Created at": "Створено в", + "Manage Fields": "Управління полями", + "Duplicate": "Дублікат", + "Code": "Код", + "Profile settings": "Налаштування профілю", + "Change Password": "Змінити пароль", + "Signatures are only included in response emails.": "Підписи включаються лише у електронні листи-відповіді.", + "Signature template": "Шаблон підпису", + "You can use Markdown to format your signature.": "Ви можете використовувати Markdown для форматування підпису.", + "Password": "Пароль", + "Password confirmation": "Підтвердження паролю", + "Choose the channels": "Виберіть канали", + "Simple": "Простий", + "Custom": "Користувальницькі", + "Create a new Company": "Створіть нову компанію", + "New Company": "Нова компанія", + "Edit name": "Редагувати ім’я", + "Customer": "Замовник", + "Add tag": "Додати тег", + "Company": "Компанія", + "New message ": "Нове повідомлення", + "There aren’t any activities at the moment.": "На даний момент жодної діяльності немає.", + "This item is required": "Цей елемент обов'язковий", + "Manage fields": "Управління полями", + "Add integrations ": "Додайте інтеграції", + "Form": "Форма", + "Create a new Customer": "Створіть нового Клієнта", + "New Customer": "Новий клієнт", + "Segments": "Сегменти", + "Add a condition": "Додайте умову", + "Open": "відчинено", + "Choose channel": "Виберіть канал", + "Who is this message for?": "Для кого це повідомлення?", + "Compose your message": "Складіть своє повідомлення", + "No items added": "Елементів не додано", + "Submit": "Надіслати", + "Next": "Далі", + "Save & Draft": "Зберегти чернетку", + "Save & Live": "Зберегти та жити", + "From:": "Від:", + "Pages": "Сторінки", + "Links": "Посилання", + "Enter your password to Confirm": "Введіть свій пароль для підтвердження", + "Number of visits": "Кількість відвідувань", + "Written By": "Написано", + "Icon": "Значок", + "draft": "чернетка", + "Twitter Username": "Ім'я користувача Twitter", + "LinkedIn": "LinkedIn", + "Youtube": "Youtube", + "Github": "Гітуб", + "Edit response": "Редагувати відповідь", + "To send your message press Enter and Shift + Enter to add a new line": "Щоб надіслати повідомлення, натисніть клавішу Enter та Shift + Enter, щоб додати новий рядок", + "To send your note press Enter and Shift + Enter to add a new line": "Щоб надіслати свою нотатку, натисніть Enter та Shift + Enter, щоб додати новий рядок", + "Please enter an unit price. It should be a number": "Введіть ціну одиниці. Це повинно бути число", + "Type to search": "Введіть для пошуку", + "Members": "Члени", + "Choose integrations": "Виберіть інтеграції", + "Choose brands": "Вибирайте марки", + "Select a date": "Виберіть дату", + "Click to select a date": "Клацніть, щоб вибрати дату", + "Choose users": "Вибирайте користувачів", + "Select Brand": "Виберіть бренд", + "Write here Welcome message.": "Напишіть тут Привітальне повідомлення.", + "Write here Away message.": "Напишіть тут У гостях повідомлення.", + "Write here Thank you message.": "Написати тут Подячне повідомлення", + "Select app": "Виберіть додаток", + "Enter new password": "Введіть новий пароль", + "Choose channels": "Виберіть канали", + "Select": "Виберіть", + "select": "виберіть", + "Choose members": "Вибирайте членів", + "Search": "Пошук", + "your@email.com": "your@email.com", + "password": "пароль", + "registered@email.com": "register@email.com", + "new password": "новий пароль", + "Start typing to leave a note": "Почніть вводити текст, щоб залишити нотатку", + "Re-type password": "Повторно введіть пароль", + "Name:": "Ім'я:", + "Size:": "Розмір:", + "Website:": "Веб-сайт:", + "Industry:": "Промисловість:", + "Plan:": "План:", + "There arent't any groups and fields": "Немає груп і полів", + "Please add property Group first": "Додайте спочатку групу ресурсів", + "Add group": "Додати групу", + "Add Property": "Додати власність", + "Add Group & Field ": "Додати групу та поле", + "Add Group": "Додати групу", + "Edit Property": "Редагувати властивість", + "Group:": "Група:", + "There arent't any fields in this group": "У цій групі немає полів", + "Customer Properties": "Властивості клієнта", + "Company Properties": "Властивості компанії", + "Add an option": "Додати опцію", + "Copy to clipboard": "Копіювати в буфер обміну", + "Go to home page": "Перейти на головну сторінку", + "Assign to": "Призначити", + "Remove assignee": "Вилучити правонаступника", + "Account settings": "Налаштування аккаунта", + "General Settings": "Загальні налаштування", + "Integration Settings": "Налаштування інтеграції", + "Personal settings": "Особисті налаштування", + "Add category": "Додати категорію", + "Filter": "Фільтр", + "Live": "Наживо", + "Draft": "Чернетка", + "Paused": "Призупинено", + "Your messages": "Ваші повідомлення", + "Delivered inside your app Reach active users": "Доступно всередині вашої програми. Охоплення активних користувачів", + "Delivered to a user s email inbox Customize with your own templates": "Доставлено до вхідних повідомлень електронної пошти користувача Налаштуйте за допомогою власних шаблонів", + "email": "електронною поштою", + "Create segment": "Створіть сегмент", + "customers": "замовники", + "has any value": "має будь-яке значення", + "is unknown": "невідомо", + "is not": "не", + "is": "є", + "Less than": "Менше ніж", + "City": "Місто", + "Greater than": "Більш чим", + "Country": "Країна", + "Current page url": "Поточна URL-адреса сторінки", + "Browser language": "Мова браузера", + "conversation": "розмова", + "engageMessage": "займатисямесажем", + "customer": "замовник", + "company": "компанія", + "starts with": "починається з", + "ends with": "закінчується на", + "contains": "містить", + "does not contain": "не містить", + "Basic Info": "Основна інформація", + "Add Phone": "Додати телефон", + "Add Email": "Додати електронну пошту", + "Choose your tags": "Виберіть теги", + "Manage tags": "Управління тегами", + "Edit Profile": "Редагувати профіль", + "Sign out": "Вийти з аккаунта", + "Last Updated By": "Востаннє оновлено", + "There is no channel": "Немає каналу", + "Facebook page": "Сторінка Facebook", + "plan": "план", + "Edit segment": "Редагувати сегмент", + "New message": "Нове повідомлення", + "Message": "повідомлення", + "Merge Customers": "Об’єднати клієнтів", + "Assign": "Призначити", + "There is no message.": "Повідомлення немає.", + "per page": "на сторінку", + "[view]": "[переглянути]", + "Go to twitter": "Перейдіть на щебет", + "Build": "Побудувати", + "`s integration": "інтеграція", + "Created": "Створено", + "Email templates:": "Шаблони електронної пошти:", + "Content:": "Зміст:", + "Response Templates": "Шаблони відповідей", + "Merge Companies": "Злиття компаній", + "Response template": "Шаблон відповіді", + "Attach file": "Прикріпити файл", + "Upload": "Завантажити", + "ShoutBox": "ShoutBox", + "Popup": "Вискочити", + "Embedded": "Вбудований", + "Choose a flow type": "Виберіть тип потоку", + "CallOut": "CallOut", + "Callout title": "Назва опису", + "Callout body": "Виноска тіла", + "Callout button text": "Текст кнопки опису", + "Skip callOut": "Пропустити callOut", + "Form button text": "Текст кнопки форми", + "Theme color": "Колір теми", + "Featured image": "Вибране зображення", + "Full Preview": "Повний попередній перегляд", + "Try some of these colors:": "Спробуйте деякі з цих кольорів:", + "Included fields": "Включені поля", + "Deal": "Трубопровід продажів", + "Deals": "Трубопроводи з продажу", + "New Product & Service": "Новий продукт та послуга", + "No product or services": "Жодного товару чи послуги", + "UOM": "UOM", + "Quantity": "Кількість", + "Unit price": "Ціна за одиницю", + "Discount": "Знижка", + "Tax": "Податок", + "Ticket": "Квиток", + "Task": "Завдання", + "Select company": "Виберіть компанію", + "Select customer": "Виберіть клієнта", + "Note": "Примітка", + "Assigned to": "Присвоєно", + "Move": "Рухатися", + "Move deal": "Переміщення угоди", + "Copy": "Скопіювати", + "Close date": "Дата закриття", + "Choose product & service": "Виберіть продукт та послугу", + "Select product & service": "Виберіть продукт та послугу", + "Please, select a close date": "Виберіть дату завершення", + "Create a new Product": "Створіть новий продукт", + "New Product": "Новий продукт", + "SKU": "SKU", + "Choose a company": "Виберіть компанію", + "Choose a customer": "Виберіть клієнта", + "Choose a board": "Виберіть дошку", + "Choose a pipeline": "Виберіть трубопровід", + "Manage Board & Pipeline": "Управління платою та трубопроводом", + "Choose a stage": "Виберіть етап", + "Deal Settings": "Налаштування конвеєра продажів", + "Ticket Settings": "Налаштування квитків", + "Task Settings": "Налаштування завдань", + "Boards & Pipelines": "Плати та трубопроводи", + "Product & Service": "Продукти та послуги", + "There is no pipeline in this board.": "У цій платі немає трубопроводу.", + "There is no board": "Дошки немає", + "New Board": "Нова рада", + "Add pipeline": "Додайте трубопровід", + "Create one": "Створіть його", + "Edit pipeline": "Редагувати трубопровід", + "Add stage": "Додати етап", + "Board": "Правління", + "Pipeline": "Трубопровід", + "Stage": "Етап", + "Stage name": "Творчий псевдонім", + "Add a deal": "Додати угоду", + "Add a task": "Додайте завдання", + "Add a ticket": "Додайте квиток", + "Priority": "Пріоритет", + "Critical": "Критичний", + "High": "Високий", + "Normal": "Нормальний", + "Low": "Низький", + "Attachments": "Вкладення", + "Source": "Джерело", + "Select a source": "Виберіть джерело", + "Upload an attachment": "Завантажте вкладення", + "Description": "Опис", + "Select a priority": "Виберіть пріоритет", + "Edit deal": "Редагувати угоду", + "Edit task": "Редагувати завдання", + "Edit ticket": "Редагувати квиток", + "Add Product / Service": "Додати товар / послугу", + "Reply tweet": "Відповісти твіт", + "Tweet": "Щебетати", + "Details": "Деталі", + "View Profile": "Перегляд профілю", + "Empty Notes": "Порожні нотатки", + "Mini-resume": "Міні-резюме", + "You cannot update this property": "Ви не можете оновити цю властивість", + "Desktop": "Настільний", + "Mobile": "Мобільний", + "Tablet": "Планшет", + "Amount": "Сума", + "Owner": "Власник", + "Department": "Відділ", + "Lead Status": "Статус Pop Ups", + "Lifecycle State": "Стан життєвого циклу", + "Has Authority": "Має повноваження", + "Do not disturb": "Не турбувати", + "Parent Company": "Материнська компанія", + "Business Type": "Тип бізнесу", + "Employees count": "Кількість працівників", + "Yes": "Так", + "No": "Ні", + "Copied": "Скопійовано", + "General": "Загальні", + "Currency": "Валюта", + "Unit of measurement": "Одиниця виміру", + "Create another board": "Створіть іншу дошку", + "No pipeline": "Немає трубопроводу", + "No stage": "Жодної стадії немає", + "No deal": "Ніякої угоди", + "Background": "Фон", + "Choose": "Виберіть", + "Successfully saved.": "Збережено.", + "Successfully moved.": "Успішно переміщено.", + "Successfully selected.": "Вибрано вдало.", + "Body description here": "Опис тіла тут", + "Thank you.": "Дякую.", + "Choose a brand": "Виберіть бренд", + "Write a title": "Напишіть назву", + "Contact": "Контактна інформація", + "Created by": "Створений", + "Manage": "Управління", + "Dropdown": "Випадання", + "Slide-in Left": "Засув ліворуч", + "Slide-in Right": "Просуньте праворуч", + "Enter name": "Введіть ім’я", + "Delivered": "Доставлено", + "Clicked": "Клацнув", + "Complaint": "Скарга", + "Bounce": "Відмов", + "Rendering Failure": "Помилка надання", + "Rejected": "Відхилено", + "Action": "Дія", + "Please select one to merge": "Виберіть один для об’єднання", + "Filter by date": "Фільтр за датою", + "Total conversations": "Всього бесід", + "Filter by form": "Фільтр за формою", + "Supporters": "Прихильники", + "Import histories": "Історія імпорту", + "Imported Date": "Дата імпорту", + "Imported User": "Імпортований користувач", + "Export customers": "Експортні клієнти", + "Import customers": "Імпорт клієнтів", + "Export companies": "Експортні компанії", + "Import companies": "Імпортні компанії", + "All customers imported successfully": "Усі клієнти успішно імпортували", + "There aren't any imports": "Ніякого імпорту немає", + "Successfully Removed all customers": "Усі клієнти успішно видалені", + "You can only import max 600 at a time": "Можна одночасно імпортувати максимум 600", + "Invalid import type": "Недійсний тип імпорту", + "Last updated": "Останнє оновлення", + "Filter by lead status": "Фільтр за статусом Pop Ups", + "No lead status chosen": "Не обрано статус ведучого", + "Schedule:": "Розклад:", + "Every Day": "Щодня", + "Every Month": "Щомісяця", + "Every Year": "Щороку", + "Every Monday": "Кожного понеділка", + "Every Tuesday": "Кожного вівторка", + "Every Wednesday": "Щосереди", + "Every Thursday": "Щочетверга", + "Every Friday": "Кожної п'ятниці", + "Every Saturday": "Кожну суботу", + "Every Sunday": "Щонеділі", + "Choose a schedule day": "Виберіть день розкладу", + "Choose a schedule time": "Виберіть час розкладу", + "Won": "Виграв", + "Lost": "Втрачено", + "App store": "App Store", + "App store menu": "Меню магазину додатків", + "In Progress": "В процесі", + "It`s size exceeds the limit 10mb": "Її розмір перевищує ліміт 10 Мб", + "Congrats! Your email sent successfully!": "Вітаю! Ваш електронний лист успішно надіслано!", + "Works with messenger": "Працює з месенджером", + "Knowledge base topic": "Тема бази знань", + "Package version": "Версія пакета", + "Branch name": "Назва гілки", + "Abbreviated": "Скорочено", + "User": "Користувач", + "Recent conversations": "Недавні розмови", + "Start new conversation": "Почніть нову розмову", + "Talk with support staff": "Поговоріть із обслуговуючим персоналом", + "Send a message": "Відправити повідомлення", + "Volume Report By Customer": "Звіт про обсяг замовника", + "Export Report": "Експортний звіт", + "We`re ready to help you.": "Ми готові вам допомогти.", + "Please choose a product": "Виберіть товар", + "Please choose a currency": "Виберіть валюту", + "No board": "Немає дошки", + "Empty": "Порожній", + "There is no account.": "Немає рахунку.", + "There is no tag.": "Тега немає.", + "Skip for now": "Пропустити зараз", + "Go to Inbox": "Перейдіть у папку "Вхідні"", + "Messenger Language": "Мова посланця", + "Messenger name": "Ім'я месенджера", + "Skip": "Пропустити", + "Finish": "Закінчити", + "Show": "Показати", + "Hide": "Сховати", + "Previous": "Попередній", + "Users": "Користувачі", + "users": "користувачів", + "brands": "брендів", + "messengers": "посланці", + "channels": "канали", + "Emails": "Електронні листи", + "Messengers": "Месенджери", + "You already have": "Ви вже є", + "There is another": "Є ще одна", + "Let's create your brand": "Давайте створимо ваш бренд", + "Invite users": "Запросіть користувачів", + "Let's grow your team": "Давайте виростимо вашу команду", + "Invite": "Запросити", + "Let's start": "Давайте розпочнемо", + "Start messaging now!": "Почніть обмін повідомленнями вже зараз!", + "Create channel": "Створити канал", + "Get started on your channel": "Почніть роботу на своєму каналі", + "Create your first messenger": "Створіть свій перший месенджер", + "Welcome": "Ласкаво просимо", + "Nothing inserted": "Нічого не вставлено", + "Empty emails": "Порожні електронні листи", + "Initial setup": "Початкові налаштування", + "Add another": "Додайте ще", + "Don't show again": "Більше не показувати", + "No other pipeline": "Жодного іншого трубопроводу немає", + "No other boards": "Жодних інших дощок", + "I'm ready to get started": "Я готовий розпочати роботу", + "Welcome paragraph": "Ми так раді вам. Давайте миттєво налагодимо вас", + "Get notified and notify others to keep everything up to date": "Отримуйте сповіщення та повідомляйте інших про постійне оновлення", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "Якщо ваша команда не отримала повідомлення, яке ви надіслали на сайті, ми можемо надіслати їх електронною поштою", + "Send an email and notify members that they've been invited!": "Надішліть електронний лист та повідомте членів, що їх запросили!", + "January": "Січень", + "February": "Лютий", + "March": "Березень", + "April": "Квітень", + "May": "Може", + "June": "Червень", + "July": "Липень", + "August": "Серпень", + "September": "Вересень", + "October": "Жовтень", + "November": "Листопад", + "December": "Грудень", + "Today": "Сьогодні", + "Sales": "Продажі", + "Monthly view": "Щомісячний перегляд", + "Filter by": "Фільтрувати за", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Створюючи бренд і додаючи канали, ви зможете краще проаналізувати потреби своїх клієнтів та допомогти вирішити їх проблеми", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Розвивайте та додайте користувачів до своєї команди! Призначте, призначте і нехай вони роблять те, що вони найкраще роблять", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Будьте в курсі кожного відгуку клієнтів і створюйте змістовніші розмови", + "Create brand channels that are specifically categorized by type and activity": "Створіть канали бренда, які спеціально класифікуються за типом та діяльністю", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Додайте сюди ведучий і подивіться це у своєму віджеті Messenger! Щоб побачити потенційних клієнтів у своїй папці "Вхідні", переконайтеся, що вони додані у вашому каналі.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "Ви можете вибрати з багатьох наших інтеграційних месенджерів та додати до своєї бази знань. База знань з’явиться на вкладці віджета вашого месенджера. Для цього будь-ласка, створіть і додайте до бази знань.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "Підпис електронною поштою - це можливість ділитися інформацією, яка сприяє формуванню розпізнавання та довіри.", + "Let's start taking care of your customers": "Почнемо піклуватися про ваших клієнтів", + "Add in your first company!": "Додайте свою першу компанію!", + "Choose from our many integrations and add to your channel": "Виберіть із багатьох наших інтеграцій та додайте до свого каналу", + "Let's get you messaging away!": "Давайте відправимо вас у повідомлення!", + "Whoops! No messages here but you can always start": "Ого! Тут немає повідомлень, але ви завжди можете розпочати", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Статті можуть вирішувати будь-яку кількість питань, з якими стикаються ваші клієнти. Типи статей знань можуть включати рішення загальних питань, документацію щодо продукту чи функцій, поширені запитання та багато іншого.", + "Oops! No data here": "На жаль! Тут немає даних", + "Start adding integrations now!": "Почніть додавати інтеграції вже зараз!", + "Add an integration in this Brand": "Додайте інтеграцію в цей бренд", + "Oh dear! You have no imports": "О Боже! У вас немає імпорту", + "A strong customer engagement can help to further brand growth and loyalty": "Сильне залучення клієнтів може допомогти подальшому зростанню бренду та лояльності", + "Get started on your pipeline": "Почніть роботу зі свого трубопроводу", + "Connect to Facebook messages right from your Team Inbox": "Підключіться до повідомлень Facebook прямо з вашої вхідної команди", + "Tweet back to your DMs right from your Team Inbox": "Повертайтеся до своїх DM-файлів прямо з папки "Вхідні"", + "Connect straight to your Gmail and get those emails going": "Підключіться прямо до своєї пошти Gmail і отримайте ці електронні листи", + "Find your lead forms right here in your Widget": "Знайдіть свої ведучі форми прямо тут у своєму Віджеті", + "Get access to your Knowledge Base right in your Widget": "Отримайте доступ до бази знань прямо у своєму віджеті", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Незабаром Ви зможете підключити Viber прямо до папки "Вхідні"", + "Get a hold of your Whatsapp messages through your Team Inbox": "Отримайте ваші повідомлення Whatsapp через папку "Вхідні команди"", + "Connect with Wechat and start messaging right from your Team Inbox": "Підключіться до Wechat і починайте обмін повідомленнями прямо з вашої вхідної команди", + "Find feedback that has been gathered from various customer engagement channels.": "Знайдіть відгуки, зібрані з різних каналів залучення клієнтів.", + "A report on the total number of customer feedback responses given by team members.": "Звіт про загальну кількість відгуків клієнтів, які дають члени команди.", + "The average time a team member solved a problem based on customer feedback.": "Середній час, коли член команди вирішив проблему на основі відгуків клієнтів.", + "You can find stats that defines the average response time by each team member.": "Ви можете знайти статистику, яка визначає середній час відгуку кожного члена команди.", + "Oh boy, looks like you need to get a head start on your deals": "О, хлопче, схоже, що вам потрібно почати головні угоди", + "Open segments and starting add details": "Відкрийте сегменти та почніть додавати деталі", + "Now easier to find contacts according to your brand": "Тепер простіше знайти контакти відповідно до вашого бренду", + "Search and filter customers by form": "Шукайте та фільтруйте клієнтів за формою", + "There is always a lead!": "Завжди є ведучий!", + "Calendar": "Календар", + "Columns": "Стовпці", + "columns": "стовпчики", + "Linked Accounts": "Пов'язані облікові записи", + "Select account": "Виберіть рахунок", + "Select account ...": "Вибрати обліковий запис ...", + "Add Account": "Додати обліковий запис", + "Remove Account": "Видалити рахунок", + "You can upload only image file": "Ви можете завантажувати лише .png або .jpg файл зображення", + "Permissions": "Дозволи", + "New permission": "Новий дозвіл", + "New group": "Нова група", + "Users groups": "Групи користувачів", + "Choose the module": "Виберіть модуль", + "Choose the actions": "Виберіть дії", + "Choose the users": "Вибирайте користувачів", + "Choose the groups": "Виберіть групи", + "Choose groups": "Вибирайте групи", + "Allow": "Дозволити", + "Invitation Status": "Статус запрошення", + "Permission": "Дозвіл", + "data successfully imported": "дані успішно імпортовані", + "Show result": "Показати результат", + "Importing": "Імпорт", + "data": "дані", + "errors acquired": "помилки, набуті", + "There are": "Існує", + "Continue": "Продовжуйте", + "Create brand": "Створити бренд", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Створіть свій перший чат та повідомлення в додатку. Будьте в курсі всіх відгуків клієнтів для більш значущих взаємодій.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "Канал дає повний огляд усіх брендів та його застосувань в одному місці. Ви можете побачити всі вхідні повідомлення у папці "Вхідні" вашої команди.", + "Hooray and Congratulations! You've completed the initial setup!": "Ура та вітаємо! Ви завершили початкову настройку!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Вставте код нижче перед тег на кожній сторінці, на якій потрібно відобразити чат erxes.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Вставте код нижче перед тегом body на кожній сторінці, на якій потрібно відобразити erxes", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "Якщо ваш тип потоку вбудований, вставте код нижче додатково, щоб ви хотіли, щоб з'явилися erxes", + "If your flow type is popup paste the code below additionally in your button": "Якщо тип потоку з'являється, вставте код нижче додатково у вашу кнопку", + "Choose messengers": "Вибирайте месенджерів", + "erxes allows you to create multiple messengers": "erxes дозволяє створювати кілька месенджерів", + "erxes allows you to create multiple brands": "erxes дозволяє створювати кілька брендів", + "erxes allows you to create multiple channels": "erxes дозволяє створювати кілька каналів", + "Contacts": "Контакти", + "Create group": "Створити групу", + "Visitors": "Відвідувачі", + "Due in the next day": "Термін дії в наступний день", + "Due in the next week": "Має бути на наступному тижні", + "Due in the next month": "Термін дії в наступному місяці", + "Has no close date": "Немає близької дати", + "Over due": "Над належним", + "Clear Filter": "Очистити фільтр", + "Remove this filter": "Видаліть цей фільтр", + "Filtering is on": "Фільтрація ввімкнена", + "Choose products": "Вибирайте продукти", + "Choose companies": "Вибирайте компанії", + "Choose customers": "Вибирайте клієнтів", + "Choose team members": "Вибирайте членів команди", + "erxes Inc": "erxes Inc", + "Get": "Отримайте", + "Download ios app for free on the App Store": "Завантажте програму ios безкоштовно на App Store.", + "Download android app for free on the Google play": "Завантажте програму Android безкоштовно на Google play.", + "Please upgrade your browser to use erxes!": "Оновіть веб-переглядач, щоб використовувати erxes!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "На жаль, ви працюєте в браузері, який може бути не повністю сумісним з erxes.", + "Please use recommended version": "Будь ласка, використовуйте рекомендовану версію", + "Messenger data": "Дані месенджера", + "Customer field data": "Дані про клієнта", + "Others": "Інші", + "Select brand": "Виберіть бренд", + "There is no permissions in this group": "У цій групі немає дозволів.", + "There is no group": "Немає групи.", + "User groups": "Групи користувачів", + "What action can do": "Які дії можна зробити", + "Who can": "Хто може", + "Grant permission": "Надати дозвіл", + "Check if permission is allowed": "Перевірте, чи дозволений дозвіл", + "Then": "Потім", + "Or": "Або", + "Auto message description": "Надсилайте націлену електронну пошту та чат користувачам, які ввійшли в систему, залежно від їхньої марки / тегу / сегмента Ви можете встановити час відправки електронного листа чи чату заздалегідь. Дизайн чату може бути фрагментом, значком та повним повідомленням, а це може бути текст чи відео.", + "Manual message description": "Надсилайте націлену електронну пошту та чат користувачам, які ввійшли в систему, залежно від їхньої марки / тегу / сегмента Електронний лист або чат буде надіслано відразу після натискання кнопки "Зберегти". Дизайн чату може бути фрагментом, значком та повним повідомленням, а це може бути текст чи відео.", + "Visitor auto message description": "Надсилайте цільові чати відвіданим відвідувачам на веб-сайті на основі їх відвідувальної сторінки, активності, країни проживання та міста. Дизайн чату може бути фрагментом, значком та повним повідомленням, а це може бути текст чи відео.", + "Required field": "Обов'язкове поле!", + "Invalid email format! Please enter a valid email address": "Недійсний формат електронної пошти! Будь ласка, введіть дійсну адресу електронної пошти.", + "Invalid link": "Недійсне посилання!", + "Maximum length is": "Максимальна довжина -", + "characters": "символи!", + "Invalid number format! Please enter a valid number": "Недійсний формат номера! Введіть дійсне число.", + "Insert email template to content": "Вставте шаблон електронної пошти до вмісту", + "Logs": "Колода", + "There are no logs recorded": "Журнали не записані", + "Module": "Модуль", + "Unchanged fields": "Без змін поля", + "Changed fields": "Змінені поля", + "Create": "Створіть", + "Update": "Оновлення", + "Changes": "Зміни", + "Choose start date": "Виберіть дату початку", + "Choose end date": "Виберіть дату закінчення", + "Permission denied": "У дозволі відмовлено", + "Old data": "Старі дані", + "New data": "Нові дані", + "Archive": "Архів", + "NetworkError": "Спроба відновити з'єднання. Зміни, здійснені зараз, можуть бути збережені.", + "Email add account description question": "Ви підключаєте спільний обліковий запис електронної пошти?", + "Email add account description": "Коли ви підключаєте електронний лист до папки "Вхідні", ви підключаєте його як спільний обліковий запис. Повідомлення, надіслані до спільних облікових записів, можуть переглядати всі, хто має доступ до вхідних повідомлень вашої команди", + "No connected email": "Немає підключеного електронного листа", + "Your email will be sent with Erxes email template": "Ваш електронний лист буде надіслано за допомогою шаблону електронної пошти Erxes" +} diff --git a/ui/src/locales/ur_PK.json b/ui/src/locales/ur_PK.json new file mode 100644 index 00000000000..e661141352f --- /dev/null +++ b/ui/src/locales/ur_PK.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "کیا تمہیں یقین ہے؟ اسے کالعدم نہیں کیا جاسکتا۔", + "Yes, I am": "ہاں میں ہوں", + "No, Cancel": "نہیں ، منسوخ کریں", + "Filter by tags": "ٹیگ کے ذریعہ فلٹر کریں", + "There is no data": "کوئی ڈیٹا نہیں ہے", + "There is no data.": "کوئی ڈیٹا نہیں ہے۔", + "Load more": "مزید لوڈ کریں", + "There aren't any activities at the moment.": "اس وقت کوئی سرگرمیاں نہیں ہیں۔", + "Reset your password": "آپ کا پاس ورڈ دوبارہ ترتیب دیں", + "Email me the instruction": "مجھے ہدایت ای میل کریں", + "Sign in": "سائن ان", + "Change password": "پاس ورڈ تبدیل کریں", + "Set your new password": "اپنا نیا پاس ورڈ سیٹ کریں", + "Forgot password?": "پاسورڈ بھول گے؟", + "Photo": "تصویر", + "Name": "نام", + "Views": "مناظر", + "Conversion": "تبدیلی", + "Go to import": "درآمد پر جائیں", + "Conversion rate": "تبادلوں کی شرح", + "Contacts gathered": "رابطے جمع ہوگئے", + "Create lead": "پاپ اپ بنائیں", + "Form title": "فارم کا عنوان", + "Related": "متعلقہ", + "Form description": "فارم کی تفصیل", + "Position": "پوزیشن", + "Username": "صارف نام", + "Email": "ای میل", + "sec": "سیکنڈ", + "Twitter username": "ٹویٹر صارف کا نام", + "Inbox": "ان باکس", + "Workflow": "ورک فلو", + "Watch": "دیکھو", + "Watching": "دیکھ رہا ہے", + "Team Inbox": "ٹیم ان باکس", + "Customers": "گاہکوں", + "Companies": "کمپنیاں", + "Engage": "مشغول", + "Insights": "بصیرت", + "Knowledge Base": "علم کی بنیاد", + "Settings": "ترتیبات", + "Resolve": "حل کریں", + "Send": "بھیجیں", + "No company": "کوئی کمپنی نہیں", + "No customer": "کوئی گراہک نہیں ہے", + "Not tagged yet": "ابھی تک ٹیگ نہیں ہے", + "New note": "نیا نوٹ", + "Conversation": "گفتگو", + "Notes": "نوٹ", + "Activity": "سرگرمی", + "Basic info": "بنیادی معلومات", + "Size": "سائز", + "Other": "دیگر", + "Industry": "انڈسٹری", + "Website": "ویب سائٹ", + "Plan": "منصوبہ بنائیں", + "About": "کے بارے میں", + "Discard": "خارج کردیں", + "Save": "محفوظ کریں", + "Create response template": "جوابی ٹیمپلیٹ بنائیں", + "Associate": "ایسوسی ایٹ", + "No tags": "کوئی ٹیگ نہیں", + "Add customer": "گاہک شامل کریں", + "No segments": "کوئی طبقہ نہیں", + "Manage Columns": "کالمز کا نظم کریں", + "New customer": "نیا گاہک", + "Add company": "کمپنی شامل کریں", + "New company": "نئی کمپنی", + "Choose which column you see": "منتخب کریں کہ آپ کس کالم کو دیکھ رہے ہیں", + "There is no engage message.": "کوئی منگنی کا پیغام نہیں ہے۔", + "Add Knowledge base": "نالج بیس شامل کریں", + "Add knowledge base.": "علم کی بنیاد شامل کریں۔", + "New Channel": "نیا چینل", + "Edit": "ترمیم", + "Edit basic info": "بنیادی معلومات میں ترمیم کریں", + "Manage integration": "انضمام کا نظم کریں", + "Manage Integration": "انضمام کا نظم کریں", + "Choose new brand": "نیا برانڈ منتخب کریں", + "Edit integration": "انضمام میں ترمیم کریں", + "Integration": "انضمام", + "Integration menu": "انضمام مینو", + "New Brand": "نیا برانڈ", + "Add facebook page": "فیس بک کا صفحہ شامل کریں", + "Add integrations": "انضمام شامل کریں", + "Add messenger": "میسنجر شامل کریں", + "There is no lead.": "کوئی برتری نہیں ہے۔", + "New response template": "جواب کا نیا سانچہ", + "Cancel": "منسوخ کریں", + "Public": "عوام", + "Private": "نجی", + "New email template": "نیا ای میل ٹیمپلیٹ", + "Local publisher's email template": "مقامی پبلشر کا ای میل ٹیمپلیٹ", + "New user": "نیا صارف", + "Load More": "مزید لوڈ کریں", + "Session count": "سیشن کی گنتی", + "Last seen at": "آخری بار دیکھا گیا", + "Tags": "ٹیگز", + "Member": "رکن", + "Remove": "دور", + "No companies added yet!": "ابھی تک کوئی کمپنی شامل نہیں کی گئی!", + "Merge": "ضم", + "First Name": "پہلا نام", + "Last Name": "آخری نام", + "First name": "پہلا نام", + "Last name": "آخری نام", + "Primary Email": "بنیادی ای میل", + "Phone": "فون", + "Is user": "صارف ہے", + "Save & New": "محفوظ کریں اور نیا", + "Save & Close": "محفوظ کریں اور بند کریں", + "Close": "بند کریں", + "Customer properties": "گاہک کی خصوصیات", + "Device properties": "ڈیوائس کی خصوصیات", + "Location": "مقام", + "Browser": "براؤزر", + "Platform": "پلیٹ فارم", + "IP Address": "IP پتہ", + "Hostname": "میزبان کا نام", + "Language": "زبان", + "User Agent": "صارف ایجنٹ", + "Other properties": "دوسری خصوصیات", + "Facebook": "فیس بک", + "Facebook profile": "فیس بک پروفائل", + "Messenger usage": "میسنجر کا استعمال", + "Status": "حالت", + "Online": "آن لائن", + "Offline": "آف لائن", + "Twitter": "ٹویٹر", + "Twitter quote": "ٹویٹر حوالہ", + "Retweet": "ریٹویٹ", + "Screen name": "سکرین نام", + "Don't see the result you're looking for? ": "کیا نتیجہ نہیں دیکھ رہے ہیں؟", + "Merged Info": "ضم شدہ معلومات", + "E-mail": "ای میل", + "Integrations": "انضمام", + "integration": "انضمام", + "Brands": "برانڈز", + "Start date": "شروع کرنے کی تاریخ", + "End date": "آخری تاریخ", + "lead": "پاپ اپ", + "twitter": "ٹویٹر", + "facebook": "فیس بک", + "messenger": "میسنجر", + "Title": "عنوان", + "Brand": "برانڈ", + "Current Password": "موجودہ خفیہ لفظ", + "Current password": "موجودہ خفیہ لفظ", + "New Password": "نیا پاس ورڈ", + "Re-type Password to confirm": "تصدیق کے لئے پاس ورڈ دوبارہ ٹائپ کریں", + "Signature": "دستخط", + "simple": "آسان", + "custom": "اپنی مرضی کے مطابق", + "default": "پہلے سے طے شدہ", + "default language": "پہلے سے طے شدہ زبان", + "primary": "پرائمری", + "Content": "مواد", + "Save & draft": "مسودے کو بچانے کے", + "Save & live": "محفوظ کریں اور زندہ رہیں", + "Message:": "پیغام:", + "Email template:": "ای میل ٹیمپلیٹ:", + "Email subject:": "ای میل کے موضوع:", + "From": "سے", + "Message type:": "پیغام کی قسم:", + "Sent as:": "بطور بھیج دیا گیا:", + "Brand:": "برانڈ:", + "Add rule": "قاعدہ شامل کریں", + "Last online": "آخری آن لائن", + "No Activities": "کوئی سرگرمیاں نہیں", + "There is no customer.": "کوئی گراہک نہیں ہے۔", + "Properties": "پراپرٹیز", + "Customize ": "تخصیص کریں", + "Kind": "قسم", + "All": "سب", + "Auto": "آٹو", + "Visitor auto": "وزٹر آٹو", + "Manual": "دستی", + "Delivered to a user s email inbox": "صارف کے ای میل ان باکس میں پہنچایا گیا", + "Customize with your own templates": "اپنے اپنے ٹیمپلیٹس کے ساتھ تخصیص کریں", + "Delivered inside your app": "آپ کی ایپ کے اندر نجات", + "Reach active users": "فعال صارفین تک پہنچیں", + "Channel": "چینل", + "Edit columns": "کالم میں ترمیم کریں", + "Auto message": "آٹو پیغام", + "Manual message": "دستی پیغام", + "Visitor auto message": "وزٹر آٹو میسیج", + "Actions": "عمل", + "Created date": "تشکیل کی تاریخ", + "Type": "ٹائپ کریں", + "Failed": "ناکام ہوگیا", + "Sent": "بھیجا گیا", + "Total": "کل", + "Pause": "توقف", + "Set live": "براہ راست سیٹ کریں", + "Sending": "بھیجنا", + "Delete": "حذف کریں", + "Choose segment": "طبقہ منتخب کریں", + "To:": "تک:", + "Messenger kind:": "میسنجر قسم:", + "Title:": "عنوان", + "Channel:": "چینل", + "No items": "کوئی اشیاء نہیں", + "New": "نئی", + "Options:": "اختیارات:", + "Options": "اختیارات", + "Type:": "قسم:", + "Add": "شامل کریں", + "Validation:": "توثیق", + "Date": "تاریخ", + "Number": "نمبر", + "Text:": "متن:", + "Description:": "تفصیل:", + "This item is requried": "اس آئٹم کی تصدیق کی گئی ہے", + "Preview": "پیش نظارہ", + "Column name": "کالم کا نام", + "Visible": "مرئی", + "Visibility": "مرئیت", + "Choose person": "شخص کا انتخاب کریں", + "Conversation Details": "گفتگو کی تفصیلات", + "Opened": "کھولی", + "Conversations": "گفتگو", + "Channels": "چینلز", + "Select all": "تمام منتخب کریں", + "Filter by tag": "ٹیگ کے ذریعہ فلٹر کریں", + "Filter by integrations": "انضمام کے ذریعہ فلٹر کریں", + "Filter by brand": "برانڈ کے ذریعہ فلٹر کریں", + "Filter by channel": "چینل کے ذریعہ فلٹر کریں", + "Filter by status": "حیثیت کے مطابق فلٹر کریں", + "# Channel": "# چینل", + "Unassigned": "غیر تفویض", + "Participating": "حصہ لینا", + "Resolved": "حل ہوگیا", + "View more": "مزید دیکھیں", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "کسٹمر آف لائن ہے۔ پیغامات کو چھپانے اور بھیجنے کے لئے کلک کریں اور اگلی بار آن لائن ہونے پر وہ انہیں وصول کریں گے۔", + "No templates": "کوئی ٹیمپلیٹس نہیں", + "Save as template": "ٹیمپلیٹ کے بطور محفوظ کریں", + "Daily First Response Resolve Rate": "روزانہ پہلے رسپانس حل کی شرح", + "Daily First Response Resolve Rate by Team Members": "ڈیلی فرسٹ رسپانس حل کی شرح ٹیم ممبروں کے ذریعہ", + "Daily Response Close Resolve Rate by Team Members": "ڈیلی رسپانس قریب حل حل ٹیم ممبروں کے ذریعہ", + "Volume Report": "جلد کی رپورٹ", + "Feedbacks gathered through various customer engagement channels.": "تاثرات گاہکوں کے مختلف مصروفیات چینلز کے ذریعہ جمع ہوئے۔", + "Response Report": "رسپانس رپورٹ", + "Total number of response for customer feedbacks, by each staff.": "ہر عملے کے ذریعہ ، کسٹمر فیڈ بیکس کے ل response ردعمل کی کل تعداد۔", + "Response Close Report": "جواب بند کریں", + "Average time of each staff solving problems that based on customer feedbacks.": "گاہکوں کی فیڈ بیکس پر مبنی مسائل حل کرنے والے ہر عملے کا اوسط وقت۔", + "First Response Report": "پہلی رسپانس رپورٹ", + "Responding time for a single feedback. Stats will define average response time by each staff.": "ایک آراء کے لئے جوابی وقت اعدادوشمار ہر عملے کے ذریعہ جوابی اوسط وقت کی وضاحت کرے گا۔", + "Daily Response Close Resolve Rate": "ڈیلی رسپانس قریب حل کی شرح", + "Daily Response Close Resolve rate by Team Members": "ڈیلی رسپانس قریب حل حل ٹیم ممبروں کے ذریعہ", + "Response Times summary": "رسپانس ٹائمز کا خلاصہ", + "Response Trend": "رسپانس ٹرینڈ", + "Punch card": "پنچ کارڈ", + "Response by team members": "ٹیم ممبروں کے ذریعہ جواب", + "Tag": "ٹیگ", + "Internal note": "اندرونی نوٹ", + "Manage templates": "ٹیمپلیٹس کا نظم کریں", + "Volume summary": "حجم کا خلاصہ", + "Volume Trend": "حجم کا رجحان", + "Summary": "خلاصہ", + "Install code": "کوڈ انسٹال کریں", + "No copyable code": "کوئی قابل نقل کوڈ نہیں", + "Manage Knowledge Base": "نالج بیس کا انتظام کریں", + "Add Category": "زمرہ شامل کریں", + "Add Article": "آرٹیکل شامل کریں", + "Customer engagement. REDEFINED.": "گاہک کی مصروفیت۔ دوبارہ متعین", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "ایرکسز ایک اے آئی ہے جس کی فروخت ، مارکیٹنگ اور مدد کے لئے اوپن سورس میسجنگ پلیٹ فارم ہے", + "404. This page is not found.": "یہ صفحہ نہیں ملا۔", + "erxes is an open-source messaging platform for customer success": "ایرکسز صارفین کی کامیابی کے لئے ایک اوپن سورس میسیجنگ پلیٹ فارم ہے", + "Notification settings": "اطلاع کی ترتیبات", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "مارکیٹنگ ، فروخت اور کسٹمر سروس پلیٹ فارم جو آپ کے کاروبار میں زیادہ مشغول صارفین کو راغب کرنے میں مدد کے لئے ڈیزائن کیا گیا ہے۔ ہبسپوٹ کو مشن اور کمیونٹی سے چلنے والے ماحولیاتی نظام سے تبدیل کریں۔", + "Mark Page Read": "صفحہ پڑھیں پر نشان لگائیں", + "Mark All Read": "تمام پڑھیں کو نشان زد کریں", + "Coming soon": "جلد آرہا ہے", + "Looks like you are all caught up": "ایسا لگتا ہے کہ آپ سب پکڑے گئے ہیں", + "AI": "عی", + "See all": "تمام دیکھیں", + "Select a field": "ایک فیلڈ منتخب کریں", + "Add condition": "شرط شامل کریں", + "Parent segment conditions": "بنیادی طبقہ کی شرائط", + "Filter by segments": "طبقات کے لحاظ سے فلٹر کریں", + "New segment": "نیا طبقہ", + "Manage segments": "طبقات کا نظم کریں", + "Users who match": "صارف جو میچ کرتے ہیں", + "any": "کوئی", + "all": "سب", + "of the below conditions": "مندرجہ ذیل شرائط میں سے", + "Sub segment of": "کا ذیلی طبقہ", + "Color": "رنگ", + "Filters": "فلٹرز", + "User(s) will recieve this message": "صارف (پیغامات) اس پیغام کو حاصل کریں گے", + "Color code": "رنگین کوڈ", + "Engage Message": "مشغول پیغام", + "Item counts": "آئٹم گنتی", + "Appearance": "ظہور", + "Hours, Availability & Other configs": "اوقات ، دستیابی اور دیگر تشکیلات", + "There is no brand": "کوئی برانڈ نہیں ہے", + "There is no integration in this channel.": "اس چینل میں کوئی انضمام نہیں ہے۔", + "Template markup": "سانچہ مارک اپ", + "Use html template here": "یہاں HTML ٹیمپلیٹ کا استعمال کریں", + "Choose your email template type": "اپنے ای میل ٹیمپلیٹ کی قسم منتخب کریں", + "Email signatures": "ای میل کے دستخط", + "Personal Settings": "ذاتی ترتیبات", + "Account Settings": "اکاؤنٹ کی ترتیبات", + "Profile": "پروفائل", + "Get notification by email": "ای میل کے ذریعہ اطلاع موصول کریں", + "Admin": "ایڈمن", + "Contributor": "معاون", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "ہم ارکسس پر آپ کا پرتپاک استقبال کرتے ہیں اور ہمارے ساتھ طویل مدتی صحت مند ورکنگ ایسوسی ایشن کے منتظر ہیں۔", + "Hi, any questions?": "ہائے ، کوئی سوال ہے؟", + "1 hour ago": "1 گھنٹہ پہلے", + "We need your help!": "ہمیں آپ کی مدد کی ضرورت ہے!", + "6 minutes ago": "6 منٹ پہلے", + "Write a reply ...": "جواب لکھیں ...", + "App": "ایپ", + "From email": "ای میل سے", + "User email title": "صارف کا ای میل عنوان", + "User email content": "صارف کے ای میل کا مواد", + "Admin emails": "ایڈمن ای میلز", + "Admin email title": "ایڈمن ای میل عنوان", + "Admin email content": "ایڈمن ای میل کا مواد", + "Redirect url": "ری ڈائریکٹ یو آر ایل", + "On success": "کامیابی پر", + "Load": "لوڈ", + "Success": "کامیابی", + "Thank content": "مواد کا شکریہ", + "Choose a custom color": "ایک حسب ضرورت رنگ منتخب کریں", + "Choose a wallpaper": "وال پیپر کا انتخاب کریں", + "Choose a logo": "لوگو کا انتخاب کریں", + "Visible online to visitor or customer": "آن لائن زائرین یا گاہک کے لئے مرئی", + "Online messaging": "آن لائن پیغام رسانی", + "Welcome message": "خیرمقدم پیغام", + "Offline messaging": "آف لائن پیغام رسانی", + "Away message": "دور پیغام", + "Thank you message": "شکریہ پیغام", + "Hours & Availability": "اوقات اور دستیابی", + "Turn online/offline manually": "آن لائن / آف لائن دستی طور پر تبدیل کریں", + "Set to follow your schedule": "اپنے نظام الاوقات پر عمل کرنے کے لئے سیٹ کریں", + "Other configs": "دیگر تشکیل", + "Notify customer": "گاہک کو مطلع کریں", + "Online hours": "آن لائن گھنٹے", + "Add another time": "ایک اور وقت کا اضافہ کریں", + "Time zone": "ٹائم زون", + "Messenger": "میسنجر", + "Knowledge base": "علم کی بنیاد", + "Notification": "اطلاع", + "Notifications": "اطلاعات", + "Show unread": "بغیر پڑھے ہوئے دکھائیں", + "Unread": "غیر پڑھے ہوئے", + "Recent": "حالیہ", + "Mark all as read": "سب کو پڑھا ہوا شمار کریں", + "Email Appearance": "ای میل کی ظاہری شکل", + "Team Members": "ٹیم کے افراد", + "Account default": "اکاؤنٹ ڈیفالٹ", + "Team members": "ٹیم کے افراد", + "Full name": "پورا نام", + "Leads": "پاپ اپ", + "Email Signature": "ای میل دستخط", + "Response Template": "رسپانس ٹیمپلیٹ", + "Email Template": "ای میل سانچہ", + "Response templates": "رسپانس ٹیمپلیٹس", + "Email templates": "ای میل کے سانچوں کو", + "Brand Name": "برانڈ کا نام", + "Current template": "موجودہ ٹیمپلیٹ", + "Created at": "پر تشکیل دیا گیا", + "Manage Fields": "فیلڈز کا نظم کریں", + "Duplicate": "ڈپلیکیٹ", + "Code": "کوڈ", + "Profile settings": "پروفائل کی ترتیبات", + "Change Password": "پاس ورڈ تبدیل کریں", + "Signatures are only included in response emails.": "دستخط صرف جوابی ای میلوں میں شامل ہیں۔", + "Signature template": "دستخطی ٹیمپلیٹ", + "You can use Markdown to format your signature.": "آپ اپنے دستخط کو فارمیٹ کرنے کے لئے مارک ڈاؤن کا استعمال کرسکتے ہیں۔", + "Password": "پاس ورڈ", + "Password confirmation": "پاسورڈ کی تو ثیق", + "Choose the channels": "چینلز کا انتخاب کریں", + "Simple": "آسان", + "Custom": "اپنی مرضی کے مطابق", + "Create a new Company": "ایک نئی کمپنی بنائیں", + "New Company": "نئی کمپنی", + "Edit name": "نام میں ترمیم کریں", + "Customer": "صارف", + "Add tag": "ٹیگ شامل کریں", + "Company": "کمپنی", + "New message ": "نیا پیغام", + "There aren’t any activities at the moment.": "اس وقت کوئی سرگرمیاں نہیں ہیں۔", + "This item is required": "اس آئٹم کی ضرورت ہے", + "Manage fields": "فیلڈز کا انتظام کریں", + "Add integrations ": "انضمام شامل کریں", + "Form": "فارم", + "Create a new Customer": "نیا گاہک بنائیں", + "New Customer": "نیا گاہک", + "Segments": "طبقات", + "Add a condition": "ایک شرط شامل کریں", + "Open": "کھولو", + "Choose channel": "چینل کا انتخاب کریں", + "Who is this message for?": "یہ پیغام کس کے لئے ہے؟", + "Compose your message": "اپنا پیغام تحریر کریں", + "No items added": "کوئی اشیاء شامل نہیں کی گئیں", + "Submit": "جمع کرائیں", + "Next": "اگلے", + "Save & Draft": "مسودے کو بچانے کے", + "Save & Live": "محفوظ کریں اور لائیو", + "From:": "منجانب:", + "Pages": "صفحات", + "Links": "لنکس", + "Enter your password to Confirm": "تصدیق کے لئے اپنا پاس ورڈ درج کریں", + "Number of visits": "دوروں کی تعداد", + "Written By": "تصنیف کردہ", + "Icon": "شبیہہ", + "draft": "ڈرافٹ", + "Twitter Username": "ٹویٹر صارف کا نام", + "LinkedIn": "لنکڈ ان", + "Youtube": "یوٹیوب", + "Github": "گتوب", + "Edit response": "جواب میں ترمیم کریں", + "To send your message press Enter and Shift + Enter to add a new line": "اپنا پیغام بھیجنے کے ل Enter ایک نئی لائن شامل کرنے کے لئے enter اور Shift + enter دبائیں", + "To send your note press Enter and Shift + Enter to add a new line": "اپنا نوٹ بھیجنے کے لئے ایک نئی لائن شامل کرنے کے لئے درج کریں اور دبائیں", + "Please enter an unit price. It should be a number": "براہ کرم یونٹ کی قیمت درج کریں۔ یہ ایک نمبر ہونا چاہئے", + "Type to search": "تلاش کرنے کے لئے ٹائپ کریں", + "Members": "ممبران", + "Choose integrations": "انضمام کا انتخاب کریں", + "Choose brands": "برانڈز کا انتخاب کریں", + "Select a date": "ایک تاریخ منتخب کریں", + "Click to select a date": "تاریخ منتخب کرنے کے لئے کلک کریں", + "Choose users": "صارفین کا انتخاب کریں", + "Select Brand": "برانڈ منتخب کریں", + "Write here Welcome message.": "یہاں خوش آمدید پیغام لکھیں۔", + "Write here Away message.": "یہاں پیغام بھیجیں", + "Write here Thank you message.": "یہاں لکھیں شکریہ پیغام۔", + "Select app": "ایپ کو منتخب کریں", + "Enter new password": "نیا پاس ورڈ درج کریں", + "Choose channels": "چینلز کا انتخاب کریں", + "Select": "منتخب کریں", + "select": "منتخب کریں", + "Choose members": "ممبروں کا انتخاب کریں", + "Search": "تلاش کریں", + "your@email.com": "your@email.com", + "password": "پاس ورڈ", + "registered@email.com": "رجسٹرڈ ای میل ڈاٹ کام", + "new password": "نیا پاس ورڈ", + "Start typing to leave a note": "نوٹ چھوڑنے کے لئے ٹائپ کرنا شروع کریں", + "Re-type password": "دوبارہ پاسوورڈ لکھئے", + "Name:": "نام:", + "Size:": "سائز:", + "Website:": "ویب سائٹ:", + "Industry:": "صنعت:", + "Plan:": "منصوبہ:", + "There arent't any groups and fields": "یہاں کوئی گروپس اور فیلڈز نہیں ہیں", + "Please add property Group first": "براہ کرم پہلے پراپرٹی گروپ شامل کریں", + "Add group": "گروپ شامل کریں", + "Add Property": "پراپرٹی شامل کریں", + "Add Group & Field ": "گروپ اور فیلڈ شامل کریں", + "Add Group": "گروپ شامل کریں", + "Edit Property": "پراپرٹی میں ترمیم کریں", + "Group:": "گروپ:", + "There arent't any fields in this group": "اس گروپ میں کوئی فیلڈز نہیں ہیں", + "Customer Properties": "کسٹمر پراپرٹیز", + "Company Properties": "کمپنی کی پراپرٹیز", + "Add an option": "ایک آپشن شامل کریں", + "Copy to clipboard": "کلپ بورڈ پر کاپی کریں", + "Go to home page": "ہوم پیج پر جائیں", + "Assign to": "کو سونپا گیا", + "Remove assignee": "Assignee کو ہٹا دیں", + "Account settings": "اکاؤنٹ کی ترتیبات", + "General Settings": "عام ترتیبات", + "Integration Settings": "انضمام کی ترتیبات", + "Personal settings": "ذاتی ترتیبات", + "Add category": "زمرہ شامل کریں", + "Filter": "فلٹر", + "Live": "جیو", + "Draft": "ڈرافٹ", + "Paused": "رک گیا", + "Your messages": "آپ کے پیغامات", + "Delivered inside your app Reach active users": "آپ کی ایپ کے اندر فراہم کردہ فعال صارفین تک پہنچیں", + "Delivered to a user s email inbox Customize with your own templates": "کسی صارف کے ای میل ان باکس میں پہنچایا گیا", + "email": "ای میل", + "Create segment": "طبقہ بنائیں", + "customers": "گاہکوں", + "has any value": "کوئی قیمت ہے", + "is unknown": "نامعلوم ہے", + "is not": "نہیں ہے", + "is": "ہے", + "Less than": "سے کم", + "City": "شہر", + "Greater than": "اس سے بڑا", + "Country": "ملک", + "Current page url": "موجودہ صفحے یو آر ایل", + "Browser language": "براؤزر کی زبان", + "conversation": "گفتگو", + "engageMessage": "اینگمیسیج", + "customer": "صارف", + "company": "کمپنی", + "starts with": "کے ساتھ شروع ہوتا ہے", + "ends with": "کے ساتھ ختم ہوتا ہے", + "contains": "مشتمل", + "does not contain": "پر مشتمل نہیں ہے", + "Basic Info": "بنیادی معلومات", + "Add Phone": "فون شامل کریں", + "Add Email": "ای میل شامل کریں", + "Choose your tags": "اپنے ٹیگز منتخب کریں", + "Manage tags": "ٹیگ کا نظم کریں", + "Edit Profile": "پروفائل میں ترمیم کریں", + "Sign out": "باہر جائیں", + "Last Updated By": "آخری بار تازہ ترین", + "There is no channel": "کوئی چینل نہیں ہے", + "Facebook page": "فیس بک کا صفحہ", + "plan": "منصوبہ", + "Edit segment": "طبقہ میں ترمیم کریں", + "New message": "نیا پیغام", + "Message": "پیغام", + "Merge Customers": "صارفین کو ضم کریں", + "Assign": "تفویض", + "There is no message.": "کوئی پیغام نہیں ہے۔", + "per page": "فی صفحہ", + "[view]": "[دیکھیں]", + "Go to twitter": "ٹویٹر پر جائیں", + "Build": "بنائیں", + "`s integration": "کا انضمام", + "Created": "بنائی گئی", + "Email templates:": "ای میل کے سانچوں:", + "Content:": "مواد:", + "Response Templates": "رسپانس ٹیمپلیٹس", + "Merge Companies": "کمپنیاں ضم کریں", + "Response template": "رسپانس ٹیمپلیٹ", + "Attach file": "فائل منسلک", + "Upload": "اپ لوڈ کریں", + "ShoutBox": "شور آؤٹ بکس", + "Popup": "پاپ اپ", + "Embedded": "سرایت شدہ", + "Choose a flow type": "ایک بہاؤ کی قسم کا انتخاب کریں", + "CallOut": "کال آؤٹ", + "Callout title": "کال آؤٹ کا عنوان", + "Callout body": "کال آؤٹ باڈی", + "Callout button text": "کال آؤٹ بٹن متن", + "Skip callOut": "کال آؤٹ چھوڑیں", + "Form button text": "فارم بٹن متن", + "Theme color": "تھیم کا رنگ", + "Featured image": "نمایاں تصویر", + "Full Preview": "مکمل پیش نظارہ", + "Try some of these colors:": "ان میں سے کچھ رنگ آزمائیں:", + "Included fields": "شامل فیلڈز", + "Deal": "سیلز پائپ لائن", + "Deals": "سیلز پائپ لائنز", + "New Product & Service": "نیا پروڈکٹ اینڈ سروس", + "No product or services": "کوئی مصنوع یا خدمات نہیں", + "UOM": "UOM", + "Quantity": "مقدار", + "Unit price": "اکائی قیمت", + "Discount": "چھوٹ", + "Tax": "ٹیکس", + "Ticket": "ٹکٹ", + "Task": "ٹاسک", + "Select company": "کمپنی منتخب کریں", + "Select customer": "کسٹمر منتخب کریں", + "Note": "نوٹ", + "Assigned to": "مقرر کیا، مقرر کرنا", + "Move": "اقدام", + "Move deal": "ڈیل منتقل", + "Copy": "کاپی", + "Close date": "قریب تاریخ", + "Choose product & service": "مصنوع اور خدمت کا انتخاب کریں", + "Select product & service": "پروڈکٹ اور سروس کو منتخب کریں", + "Please, select a close date": "براہ کرم ، ایک قریب تاریخ منتخب کریں", + "Create a new Product": "ایک نیا پروڈکٹ بنائیں", + "New Product": "نئی بنائی گئی چیز", + "SKU": "ایس کیو", + "Choose a company": "کمپنی منتخب کریں", + "Choose a customer": "کسٹمر کا انتخاب کریں", + "Choose a board": "بورڈ منتخب کریں", + "Choose a pipeline": "ایک پائپ لائن کا انتخاب کریں", + "Manage Board & Pipeline": "بورڈ اور پائپ لائن کا نظم کریں", + "Choose a stage": "ایک اسٹیج کا انتخاب کریں", + "Deal Settings": "سیلز پائپ لائن کی ترتیبات", + "Ticket Settings": "ٹکٹ کی ترتیبات", + "Task Settings": "ٹاسک کی ترتیبات", + "Boards & Pipelines": "بورڈ اور پائپ لائنز", + "Product & Service": "پروڈکٹ اینڈ سروس", + "There is no pipeline in this board.": "اس بورڈ میں کوئی پائپ لائن نہیں ہے۔", + "There is no board": "کوئی بورڈ نہیں ہے", + "New Board": "نیا بورڈ", + "Add pipeline": "پائپ لائن شامل کریں", + "Create one": "ایک بناؤ", + "Edit pipeline": "پائپ لائن میں ترمیم کریں", + "Add stage": "اسٹیج شامل کریں", + "Board": "بورڈ", + "Pipeline": "پائپ لائن", + "Stage": "اسٹیج", + "Stage name": "اسٹیج کا نام", + "Add a deal": "ایک سودا شامل کریں", + "Add a task": "ایک کام شامل کریں", + "Add a ticket": "ایک ٹکٹ شامل کریں", + "Priority": "ترجیح", + "Critical": "تنقیدی", + "High": "اونچا", + "Normal": "عام", + "Low": "کم", + "Attachments": "اٹیچمنٹ", + "Source": "ذریعہ", + "Select a source": "کوئی ماخذ منتخب کریں", + "Upload an attachment": "ایک منسلکہ اپ لوڈ کریں", + "Description": "تفصیل", + "Select a priority": "ترجیح منتخب کریں", + "Edit deal": "سودا میں ترمیم کریں", + "Edit task": "کام میں ترمیم کریں", + "Edit ticket": "ٹکٹ میں ترمیم کریں", + "Add Product / Service": "پروڈکٹ / سروس شامل کریں", + "Reply tweet": "ٹویٹ کو جواب دیں", + "Tweet": "ٹویٹ", + "Details": "تفصیلات", + "View Profile": "پروفائل کا مشاھدہ کریں", + "Empty Notes": "خالی نوٹ", + "Mini-resume": "منی ریزیومے", + "You cannot update this property": "آپ اس پراپرٹی کو اپ ڈیٹ نہیں کرسکتے ہیں", + "Desktop": "ڈیسک ٹاپ", + "Mobile": "موبائل", + "Tablet": "ٹیبلٹ", + "Amount": "رقم", + "Owner": "مالک", + "Department": "شعبہ", + "Lead Status": "پاپ اپ کی حیثیت", + "Lifecycle State": "لائف سائیکل ریاست", + "Has Authority": "اتھارٹی ہے", + "Do not disturb": "پریشان نہ کرو", + "Parent Company": "پیرنٹ کمپنی", + "Business Type": "کاروبار کی قسم", + "Employees count": "ملازمین گنتی", + "Yes": "جی ہاں", + "No": "نہیں", + "Copied": "کاپی", + "General": "جنرل", + "Currency": "کرنسی", + "Unit of measurement": "پیما ئش کا یونٹ", + "Create another board": "دوسرا بورڈ تشکیل دیں", + "No pipeline": "کوئی پائپ لائن نہیں ہے", + "No stage": "کوئی مرحلہ نہیں", + "No deal": "کوئی سودا نہیں", + "Background": "پس منظر", + "Choose": "منتخب کریں", + "Successfully saved.": "کامیابی کے ساتھ بچایا گیا۔", + "Successfully moved.": "کامیابی کے ساتھ آگے بڑھا۔", + "Successfully selected.": "کامیابی کے ساتھ منتخب کیا گیا۔", + "Body description here": "جسمانی تفصیل یہاں", + "Thank you.": "شکریہ", + "Choose a brand": "ایک برانڈ کا انتخاب کریں", + "Write a title": "ایک عنوان لکھیں", + "Contact": "رابطہ کریں", + "Created by": "بنائی گئی", + "Manage": "انتظام کریں", + "Dropdown": "نیچے گرجانا", + "Slide-in Left": "سلائیڈ ان بائیں", + "Slide-in Right": "دائیں سلائیڈ", + "Enter name": "نام درج کریں", + "Delivered": "نجات", + "Clicked": "کلک کیا گیا", + "Complaint": "شکایت", + "Bounce": "اچھال", + "Rendering Failure": "انجام دینے میں ناکامی", + "Rejected": "مسترد", + "Action": "عمل", + "Please select one to merge": "براہ کرم ضم کرنے کیلئے ایک کو منتخب کریں", + "Filter by date": "تاریخ کے لحاظ سے فلٹر کریں", + "Total conversations": "کل گفتگو", + "Filter by form": "فارم کے لحاظ سے فلٹر کریں", + "Supporters": "حمایتی", + "Import histories": "درآمد کی تاریخ", + "Imported Date": "درآمد شدہ تاریخ", + "Imported User": "امپورٹڈ یوزر", + "Export customers": "صارفین کو برآمد کریں", + "Import customers": "صارفین کو درآمد کریں", + "Export companies": "کمپنیاں برآمد کریں", + "Import companies": "امپورٹ کمپنیاں", + "All customers imported successfully": "تمام صارفین کامیابی کے ساتھ درآمد کیے گئے", + "There aren't any imports": "کوئی درآمد نہیں ہے", + "Successfully Removed all customers": "کامیابی کے ساتھ تمام صارفین کو ہٹا دیا گیا", + "You can only import max 600 at a time": "آپ ایک وقت میں زیادہ سے زیادہ 600 درآمد کرسکتے ہیں", + "Invalid import type": "غلط درآمد کی قسم", + "Last updated": "آخری تازہ کاری", + "Filter by lead status": "پاپ اپ کی حیثیت سے فلٹر کریں", + "No lead status chosen": "لیڈ کی کوئی حیثیت منتخب نہیں کی گئی", + "Schedule:": "نظام الاوقات:", + "Every Day": "ہر روز", + "Every Month": "ہر مہینے", + "Every Year": "ہر سال", + "Every Monday": "ہر سوموار", + "Every Tuesday": "ہر منگل", + "Every Wednesday": "ہر بدھ", + "Every Thursday": "ہر جمعرات", + "Every Friday": "ہر جمعہ کو", + "Every Saturday": "ہر ہفتہ", + "Every Sunday": "ہر اتوار", + "Choose a schedule day": "شیڈول کا دن منتخب کریں", + "Choose a schedule time": "شیڈول کا وقت منتخب کریں", + "Won": "جیتا", + "Lost": "کھو دیا", + "App store": "اپلی کیشن سٹور", + "App store menu": "ایپ اسٹور مینو", + "In Progress": "کام جاری ہے", + "It`s size exceeds the limit 10mb": "اس کا سائز 10 ایم بی سے زیادہ ہے", + "Congrats! Your email sent successfully!": "مبارک ہو! آپ کا ای میل کامیابی کے ساتھ بھیج دیا گیا!", + "Works with messenger": "میسنجر کے ساتھ کام کرتا ہے", + "Knowledge base topic": "علم بیس ٹاپک", + "Package version": "پیکیج ورژن", + "Branch name": "برانچ کا نام", + "Abbreviated": "خلاصہ", + "User": "صارف", + "Recent conversations": "حالیہ گفتگو", + "Start new conversation": "نئی گفتگو شروع کریں", + "Talk with support staff": "معاون عملے سے بات کریں", + "Send a message": "پیغام بھیجو", + "Volume Report By Customer": "حجم کی اطلاع گاہک کے ذریعہ", + "Export Report": "برآمد رپورٹ", + "We`re ready to help you.": "ہم آپ کی مدد کے لئے تیار ہیں۔", + "Please choose a product": "براہ کرم کوئی پروڈکٹ منتخب کریں", + "Please choose a currency": "براہ کرم کوئی کرنسی منتخب کریں", + "No board": "کوئی بورڈ نہیں", + "Empty": "خالی", + "There is no account.": "کوئی اکاؤنٹ نہیں ہے۔", + "There is no tag.": "کوئی ٹیگ نہیں ہے۔", + "Skip for now": "اب کے لئے چھوڑ دیں", + "Go to Inbox": "ان باکس میں جائیں", + "Messenger Language": "میسنجر زبان", + "Messenger name": "میسنجر کا نام", + "Skip": "چھوڑ دو", + "Finish": "ختم", + "Show": "دکھائیں", + "Hide": "چھپائیں", + "Previous": "پچھلا", + "Users": "صارفین", + "users": "صارفین", + "brands": "برانڈز", + "messengers": "میسنجر", + "channels": "چینلز", + "Emails": "ای میلز", + "Messengers": "میسنجر", + "You already have": "آپ کے پاس پہلے ہی ہے", + "There is another": "ایک اور ہے", + "Let's create your brand": "آئیے اپنا برانڈ بنائیں", + "Invite users": "صارفین کو مدعو کریں", + "Let's grow your team": "آئیے اپنی ٹیم کو بڑھاؤ", + "Invite": "مدعو کریں", + "Let's start": "شروع کرتے ہیں", + "Start messaging now!": "ابھی میسج کرنا شروع کریں!", + "Create channel": "چینل بنائیں", + "Get started on your channel": "اپنے چینل پر آغاز کریں", + "Create your first messenger": "اپنا پہلا میسینجر بنائیں", + "Welcome": "خوش آمدید", + "Nothing inserted": "کچھ داخل نہیں کیا گیا", + "Empty emails": "خالی ای میلز", + "Initial setup": "ابتدائی ڈھانچہ", + "Add another": "ایک اور شامل کریں", + "Don't show again": "دوبارہ نہ دکھائیں", + "No other pipeline": "کوئی اور پائپ لائن نہیں ہے", + "No other boards": "کوئی اور بورڈ نہیں", + "I'm ready to get started": "میں شروع کرنے کے لئے تیار ہوں", + "Welcome paragraph": "ہم آپ کو مل کر بہت خوش ہیں۔ آئیے آپ کو ترتیب دینے میں ایک لمحہ لگائیں", + "Get notified and notify others to keep everything up to date": "ہر چیز کو تازہ ترین رکھنے کے لئے مطلع کریں اور دوسروں کو مطلع کریں", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "اگر آپ کی ٹیم کو پیغامات موصول نہیں ہوئے جو آپ نے سائٹ پر بھیجے ہیں ، تو ہم اسے ای میل کے ذریعہ بھیج سکتے ہیں", + "Send an email and notify members that they've been invited!": "ایک ای میل بھیجیں اور ممبروں کو مطلع کریں کہ انہیں مدعو کیا گیا ہے!", + "January": "جنوری", + "February": "فروری", + "March": "مارچ", + "April": "اپریل", + "May": "مئی", + "June": "جون", + "July": "جولائی", + "August": "اگست", + "September": "ستمبر", + "October": "اکتوبر", + "November": "نومبر", + "December": "دسمبر", + "Today": "آج", + "Sales": "فروخت", + "Monthly view": "ماہانہ نظارہ", + "Filter by": "کی طرف سے فلٹر", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "ایک برانڈ تیار کرنا اور چینلز کو شامل کرکے ، آپ اپنے صارفین کی ضروریات کا بہتر تجزیہ کرنے اور ان کے مسائل حل کرنے میں مدد کرسکتے ہیں", + "Grow and add users to your team! Assign, designate and let them do what they do best": "اپنی ٹیم میں صارفین کو بڑھائیں اور شامل کریں! تفویض کریں ، نامزد کریں اور انھیں وہ کرنے دیں جو وہ بہتر کرتے ہیں", + "Stay up to date with every single customer feedback and create more meaningful conversations": "ہر ایک صارف کے آراء کے ساتھ تازہ ترین رہیں اور زیادہ بامعنی گفتگو کریں", + "Create brand channels that are specifically categorized by type and activity": "ایسے برانڈ چینلز بنائیں جو خاص طور پر قسم اور سرگرمی کے لحاظ سے درجہ بند ہوں", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "یہاں لیڈ شامل کریں اور اپنے میسنجر ویجیٹ پر دیکھیں۔ اپنے ان باکس میں لیڈز دیکھنے کے ل please ، براہ کرم یقینی بنائیں کہ یہ آپ کے چینل میں شامل ہے۔", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "آپ ہمارے بہت سارے میسینجر انٹیگریشن میں سے انتخاب کرسکتے ہیں اور اپنے علم کی اساس میں شامل کرسکتے ہیں۔ علم کی بنیاد آپ کے میسنجر ویجیٹ کے ٹیب میں ظاہر ہوگی۔ ایسا کرنے کے لئے ، براہ کرم اپنے علم کی بنیاد بنائیں اور شامل کریں۔", + "An email signature is an opportunity to share information that helps build recognition and trust.": "ایک ای میل دستخط ایک ایسی معلومات کا اشتراک کرنے کا موقع ہوتا ہے جو شناخت اور اعتماد کو بڑھانے میں مدد کرتا ہے۔", + "Let's start taking care of your customers": "آئیے اپنے صارفین کا خیال رکھنا شروع کریں", + "Add in your first company!": "اپنی پہلی کمپنی میں شامل کریں!", + "Choose from our many integrations and add to your channel": "ہماری بہت سی انضماموں میں سے انتخاب کریں اور اپنے چینل میں شامل کریں", + "Let's get you messaging away!": "آئیے آپ کو میسجنگ دور کردیں!", + "Whoops! No messages here but you can always start": "افوہ! یہاں کوئی پیغامات نہیں لیکن آپ ہمیشہ شروع کرسکتے ہیں", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "مضامین آپ کے گاہکوں کو درپیش کسی بھی مسئلے کو حل کرسکتے ہیں۔ علم مضامین کی اقسام میں عام مسائل ، مصنوعات یا خصوصیت کی دستاویزات ، عمومی سوالنامہ اور اس سے بھی زیادہ کے حل شامل ہو سکتے ہیں۔", + "Oops! No data here": "افوہ! یہاں کوئی ڈیٹا نہیں ہے", + "Start adding integrations now!": "ابھی انضمام شامل کرنا شروع کریں!", + "Add an integration in this Brand": "اس برانڈ میں انضمام شامل کریں", + "Oh dear! You have no imports": "اوہ پیارے! آپ کی کوئی درآمد نہیں ہے", + "A strong customer engagement can help to further brand growth and loyalty": "صارفین کی مضبوط شمولیت سے برانڈ کی نمو اور وفاداری میں مزید مدد مل سکتی ہے", + "Get started on your pipeline": "اپنی پائپ لائن پر شروع کریں", + "Connect to Facebook messages right from your Team Inbox": "اپنے ٹیم ان باکس سے ہی فیس بک پیغامات سے مربوط ہوں", + "Tweet back to your DMs right from your Team Inbox": "اپنے ٹیم ان باکس سے ہی اپنے ڈی ایم پر واپس ٹویٹ کریں", + "Connect straight to your Gmail and get those emails going": "سیدھے اپنے جی میل سے جڑیں اور وہ ای میلز چلائیں", + "Find your lead forms right here in your Widget": "اپنے لیجیٹ فارم کو اپنے ویجیٹ میں ہی یہاں تلاش کریں", + "Get access to your Knowledge Base right in your Widget": "اپنے ویجیٹ میں ہی اپنے نالج بیس تک رسائی حاصل کریں", + "Soon you'll be able to connect Viber straight to your Team Inbox": "جلد ہی آپ وائبر کو سیدھے اپنے ٹیم ان باکس سے مربوط کرسکیں گے", + "Get a hold of your Whatsapp messages through your Team Inbox": "اپنے ٹیم ان باکس کے ذریعہ اپنے واٹس ایپ پیغامات کو حاصل کریں", + "Connect with Wechat and start messaging right from your Team Inbox": "ویکیٹ کے ساتھ مربوط ہوں اور اپنے ٹیم ان باکس سے ہی پیغام رسانی شروع کریں", + "Find feedback that has been gathered from various customer engagement channels.": "تاثرات تلاش کریں جو مختلف صارفین کے منگنی چینلز سے جمع کیا گیا ہے۔", + "A report on the total number of customer feedback responses given by team members.": "ٹیم ممبروں کے ذریعہ دیئے گئے کسٹمر کے تاثرات کی کل تعداد پر ایک رپورٹ۔", + "The average time a team member solved a problem based on customer feedback.": "ٹیم کے ممبر نے گاہک کے تاثرات کی بنیاد پر کسی مسئلے کو حل کرنے کا اوسط وقت۔", + "You can find stats that defines the average response time by each team member.": "آپ کو اعدادوشمار مل سکتے ہیں جو ٹیم کے ہر ممبر کے ذریعہ جوابی اوسط وقت کی وضاحت کرتے ہیں۔", + "Oh boy, looks like you need to get a head start on your deals": "اوئے لڑکے ، ایسا لگتا ہے کہ آپ کو اپنے سودوں کا آغاز کرنے کی ضرورت ہے", + "Open segments and starting add details": "طبقات کو کھولیں اور تفصیلات شامل کریں شروع کریں", + "Now easier to find contacts according to your brand": "اب اپنے برانڈ کے مطابق روابط تلاش کرنا آسان ہے", + "Search and filter customers by form": "فارم کے لحاظ سے صارفین کو تلاش اور فلٹر کریں", + "There is always a lead!": "ہمیشہ برتری ہوتی ہے!", + "Calendar": "کیلنڈر", + "Columns": "کالم", + "columns": "کالم", + "Linked Accounts": "لنکڈ اکاؤنٹس", + "Select account": "اکاؤنٹ منتخب کریں", + "Select account ...": "اکاؤنٹ منتخب کریں ...", + "Add Account": "اکاؤنٹ کا اضافہ", + "Remove Account": "اکاؤنٹ کو ہٹا دیں", + "You can upload only image file": "آپ صرف .png یا .jpg تصویری فائل اپ لوڈ کرسکتے ہیں", + "Permissions": "اجازت", + "New permission": "نئی اجازت", + "New group": "نیا گروپ", + "Users groups": "صارفین کے گروپس", + "Choose the module": "ماڈیول کا انتخاب کریں", + "Choose the actions": "اعمال کا انتخاب کریں", + "Choose the users": "صارفین کو منتخب کریں", + "Choose the groups": "گروپوں کا انتخاب کریں", + "Choose groups": "گروپ منتخب کریں", + "Allow": "اجازت دیں", + "Invitation Status": "دعوت نامہ", + "Permission": "اجازت", + "data successfully imported": "ڈیٹا کامیابی کے ساتھ درآمد کیا گیا", + "Show result": "نتیجہ دکھائیں", + "Importing": "درآمد کرنا", + "data": "ڈیٹا", + "errors acquired": "غلطیاں حاصل کی گئیں", + "There are": "وہاں ہے", + "Continue": "جاری رہے", + "Create brand": "برانڈ بنائیں", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "اپنی پہلی براہ راست چیٹ اور ایپ میں پیغام رسانی بنائیں۔ مزید معنی خیز تعامل کے ل customer ہر ایک صارف کے آراء کے ساتھ تازہ ترین رہیں۔", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "ایک چینل تمام برانڈز اور اس کے اطلاق کو ایک جگہ پر ایک مکمل نظارہ دیتا ہے۔ آپ اپنی ٹیم کے ان باکس میں آنے والے تمام پیغامات دیکھ سکتے ہیں۔", + "Hooray and Congratulations! You've completed the initial setup!": "حورے اور مبارک ہو! آپ نے ابتدائی سیٹ اپ مکمل کر لیا ہے!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "کے نیچے ذیل میں کوڈ چسپاں کریں ہر صفحے پر ٹیگ کریں جس پر آپ چاہتے ہیں کہ چیٹ ظاہر ہو۔", + "Paste the code below before the body tag on every page you want erxes lead to appear": "نیچے دیے گئے کوڈ کو ہر اس صفحے پر باڈی ٹیگ سے پہلے چسپاں کریں جس سے آپ چاہتے ہیں کہ شہوات کی نمائش ہو", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "اگر آپ کے بہاؤ کی قسم ایمبیڈڈ ہے تو نیچے کوڈ کو اضافی طور پر پیسٹ کریں کہ آپ چاہتے ہیں کہ غلطی کا مظاہرہ ہوجائے", + "If your flow type is popup paste the code below additionally in your button": "اگر آپ کے بہاؤ کی قسم پاپ اپ ہے تو نیچے دیے گئے کوڈ کو اضافی طور پر اپنے بٹن میں پیسٹ کریں", + "Choose messengers": "میسینجرز کا انتخاب کریں", + "erxes allows you to create multiple messengers": "erxes آپ کو ایک سے زیادہ میسینجر بنانے کی اجازت دیتا ہے", + "erxes allows you to create multiple brands": "ایرکسز آپ کو ایک سے زیادہ برانڈ بنانے کی اجازت دیتا ہے", + "erxes allows you to create multiple channels": "ایرکسز آپ کو ایک سے زیادہ چینلز بنانے کی اجازت دیتا ہے", + "Contacts": "رابطے", + "Create group": "گروپ بنائیں", + "Visitors": "زائرین", + "Due in the next day": "اگلے دن میں مقررہ", + "Due in the next week": "اگلے ہفتے میں مقررہ", + "Due in the next month": "اگلے مہینے میں واجب الادا", + "Has no close date": "کوئی قریب تاریخ ہے", + "Over due": "واجب الادا", + "Clear Filter": "فلٹر صاف کریں", + "Remove this filter": "اس فلٹر کو ہٹا دیں", + "Filtering is on": "فلٹرنگ جاری ہے", + "Choose products": "مصنوعات کا انتخاب کریں", + "Choose companies": "کمپنیوں کا انتخاب کریں", + "Choose customers": "صارفین کا انتخاب کریں", + "Choose team members": "ٹیم کے ممبروں کا انتخاب کریں", + "erxes Inc": "erxes انکا", + "Get": "حاصل کریں", + "Download ios app for free on the App Store": "ایپ اسٹور پر آئی او ایس ایپ مفت میں ڈاؤن لوڈ کریں۔", + "Download android app for free on the Google play": "گوگل پلے پر اینڈروئیڈ ایپ مفت ڈاؤن لوڈ کریں۔", + "Please upgrade your browser to use erxes!": "براہ کرم ارکسس کو استعمال کرنے کے ل your اپنے براؤزر کو اپ گریڈ کریں!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "بدقسمتی سے ، آپ ایسے براؤزر پر چل رہے ہیں جو شائد زلزلے سے پوری طرح مطابقت نہیں رکھتا ہے۔", + "Please use recommended version": "براہ کرم تجویز کردہ ورژن استعمال کریں", + "Messenger data": "میسنجر کا ڈیٹا", + "Customer field data": "کسٹمر فیلڈ کا ڈیٹا", + "Others": "دوسرے", + "Select brand": "برانڈ منتخب کریں", + "There is no permissions in this group": "اس گروپ میں کوئی اجازت نہیں ہے۔", + "There is no group": "کوئی گروپ نہیں ہے۔", + "User groups": "صارف گروپ", + "What action can do": "کارروائی کیا کر سکتی ہے", + "Who can": "جو کر سکتے ہیں", + "Grant permission": "اجازت دیں", + "Check if permission is allowed": "اگر اجازت کی اجازت ہے تو چیک کریں", + "Then": "پھر", + "Or": "یا", + "Auto message description": "ھدف بنائے گئے ای میل اور ان کے برانڈ / ٹیگ / طبقہ کی بنیاد پر لاگ ان صارفین کو چیٹ بھیجیں۔ آپ اپنا ای میل بھیجنے یا پہلے سے چیٹ کرنے کے لئے اپنا وقت مقرر کرسکتے ہیں۔ چیٹ ڈیزائن کو ٹکرایا ، بیج اور پورا پیغام دیا جاسکتا ہے اور یہ متن یا ویڈیو ہوسکتا ہے۔", + "Manual message description": "ھدف بنائے گئے ای میل اور ان کے برانڈ / ٹیگ / طبقہ کی بنیاد پر لاگ ان صارفین کو چیٹ بھیجیں۔ جب آپ محفوظ کریں بٹن پر کلک کرتے ہیں تو فوری طور پر ایک ای میل یا چیٹ بھیج دیا جاتا ہے۔ چیٹ ڈیزائن کو ٹکرایا ، بیج اور پورا پیغام دیا جاسکتا ہے اور یہ متن یا ویڈیو ہوسکتا ہے۔", + "Visitor auto message description": "لاگ آؤٹ زائرین کو ان کے وزٹرز کے صفحے ، سرگرمی ، ان کے رہائشی ملک اور شہر کی بنیاد پر ویب سائٹ پر نشانہ شدہ چیٹس بھیجیں۔ چیٹ ڈیزائن کو ٹکرایا ، بیج اور پورا پیغام دیا جاسکتا ہے اور یہ متن یا ویڈیو ہوسکتا ہے۔", + "Required field": "مطلوب خانہ!", + "Invalid email format! Please enter a valid email address": "غلط ای میل کی شکل! برائے مہربانی قابل قبول ای میل ایڈریس لکھیں.", + "Invalid link": "غلط لنک!", + "Maximum length is": "زیادہ سے زیادہ لمبائی ہے", + "characters": "حروف!", + "Invalid number format! Please enter a valid number": "غلط نمبر کی شکل! براہ مہربانی ایک درست نمبر درج کریں.", + "Insert email template to content": "مواد پر ای میل ٹیمپلیٹ داخل کریں", + "Logs": "نوشتہ جات", + "There are no logs recorded": "کوئی نوشتہ ریکارڈ نہیں کیا گیا ہے", + "Module": "ماڈیول", + "Unchanged fields": "غیر تبدیل شدہ فیلڈز", + "Changed fields": "بدلے ہوئے کھیت", + "Create": "بنانا", + "Update": "اپ ڈیٹ", + "Changes": "تبدیلیاں", + "Choose start date": "شروعات کی تاریخ کا انتخاب کریں", + "Choose end date": "اختتامی تاریخ کا انتخاب کریں", + "Permission denied": "اجازت نہیں دی گئی", + "Old data": "پرانا ڈیٹا", + "New data": "نیا ڈیٹا", + "Archive": "محفوظ شدہ دستاویزات", + "NetworkError": "کنکشن کو بحال کرنے کی کوشش کی جا رہی ہے۔ ممکن ہے کہ اب کی گئی تبدیلیاں محفوظ نہ ہوں۔", + "Email add account description question": "کیا آپ مشترکہ ای میل اکاؤنٹ کو جوڑ رہے ہیں؟", + "Email add account description": "جب آپ کسی ای میل کو اپنے گفتگو انباکس سے مربوط کرتے ہیں تو ، آپ اسے مشترکہ اکاؤنٹ کی طرح جوڑ رہے ہیں۔ مشترکہ اکاؤنٹس کو بھیجے گئے پیغامات ہر وہ شخص دیکھ سکتا ہے جسے آپ کی ٹیم کے ان باکس میں رسائی حاصل ہے۔", + "No connected email": "کوئی مربوط ای میل نہیں ہے", + "Your email will be sent with Erxes email template": "آپ کا ای میل ارکسس ای میل ٹیمپلیٹ کے ساتھ بھیجا جائے گا" +} diff --git a/ui/src/locales/vi.json b/ui/src/locales/vi.json index 414c3060597..49da58ac5a3 100644 --- a/ui/src/locales/vi.json +++ b/ui/src/locales/vi.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "EN": "Vietnamese", "Are you sure?": "Bạn có chắc không?", "Yes, I am": "Đúng là tôi", diff --git a/ui/src/locales/yi.json b/ui/src/locales/yi.json index 3fed2043131..4bc843b69e3 100644 --- a/ui/src/locales/yi.json +++ b/ui/src/locales/yi.json @@ -1,15 +1,16 @@ { + "Homepage link": "https://www.erxes.io", "EN": "Indonesian", "Are you sure?": "Apakah Anda yakin?", "Yes, I am": "Ya, benar", "No, Cancel": "Tidak, Batal", - "Filter by tags": "Filter oleh tag", + "Filter by tags": "Saring berdasarkan tag", "There is no data": "Tidak ada data", "There is no data.": "Tidak ada data.", "Load more": "Muat lebih", "There aren't any activities at the moment.": "Tidak ada kegiatan pada saat ini.", "Reset your password": "Mereset password Anda", - "Email me the instruction": "Email saya instruksi", + "Email me the instruction": "Kirimi saya instruksi melalui email", "Sign in": "Masuk", "Change password": "Ganti kata sandi", "Set your new password": "Set password baru Anda", @@ -20,8 +21,8 @@ "Conversion rate": "Tingkat konversi", "Contacts gathered": "kontak berkumpul", "Create lead": "Buat memimpin", - "Form title": "judul Form", - "Form description": "deskripsi bentuk", + "Form title": "Kolom judul", + "Form description": "Kolom deskripsi", "Position": "Posisi", "Username": "Nama pengguna", "Email": "E-mail", @@ -37,7 +38,7 @@ "Send": "Kirim", "No company": "Tidak ada perusahaan", "No customer": "Tidak ada pelanggan", - "Not tagged yet": "Belum diberi tag", + "Not tagged yet": "Belum diberi tanda", "New note": "catatan baru", "Conversation": "Percakapan", "Notes": "Catatan", @@ -51,7 +52,7 @@ "About": "Tentang", "Discard": "Membuang", "Save": "Menyimpan", - "Create response template": "Buat respon Template", + "Create response template": "Buat balasan template", "Associate": "Rekan", "No tags": "Tidak ada tag", "Add customer": "Tambahkan pelanggan", @@ -98,7 +99,7 @@ "Primary Email": "Email utama", "Phone": "Telepon", "Is user": "Apakah pengguna", - "Save & New": "Simpan & New", + "Save & New": "Simpan & Baru", "Save & Close": "Simpan & Tutup", "Close": "Dekat", "Customer properties": "sifat pelanggan", @@ -117,8 +118,8 @@ "Status": "Status", "Online": "On line", "Offline": "Offline", - "Twitter": "Kericau", - "Twitter quote": "Twitter kutipan", + "Twitter": "Twitter", + "Twitter quote": "kutipan Twitter", "Retweet": "Retweet", "Screen name": "Nama layar", "Don't see the result you're looking for?": "Tidak melihat hasil yang Anda cari?", @@ -139,7 +140,7 @@ "Current Password": "kata sandi saat ini", "Current password": "Kata sandi saat ini", "New Password": "kata sandi baru", - "Re-type Password to confirm": "Re-type Password untuk mengkonfirmasi", + "Re-type Password to confirm": "Masukkan ulang kata sandi untuk mengkonfirmasi", "Signature": "Tanda tangan", "simple": "sederhana", "custom": "adat", @@ -164,7 +165,7 @@ "Customize": "Sesuaikan", "Kind": "Jenis", "All": "Semua", - "Auto": "Mobil", + "Auto": "Otomatis", "Visitor auto": "auto pengunjung", "Manual": "panduan", "Delivered to a user s email inbox": "Dikirim ke kotak masuk email pengguna s", @@ -178,9 +179,9 @@ "Visitor auto message": "Pesan auto Pengunjung", "Actions": "tindakan", "Created date": "tanggal dibuat", - "Type": "Mengetik", + "Type": "Jenis", "Failed": "Gagal", - "Sent": "mengirim", + "Sent": "Terkirim", "Total": "Total", "Pause": "berhenti sebentar", "Set live": "mengatur hidup", @@ -252,20 +253,20 @@ "No copyable code": "Tidak ada kode menyatakan bahwa pihak", "Manage Knowledge Base": "Mengelola Basis Pengetahuan", "Add Category": "Tambahkan kategori", - "Add Article": "Tambah Pasal", + "Add Article": "Tambahkan Artikel", "Customer engagement. REDEFINED.": "Keterlibatan pelanggan. Didefinisikan ulang.", "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes adalah AI memenuhi open source platform pesan untuk penjualan, pemasaran dan dukungan", "404. This page is not found.": "404. Halaman ini tidak ditemukan.", "erxes is an open-source messaging platform for customer success": "erxes adalah sebuah platform messaging open-source untuk keberhasilan pelanggan", "Notification settings": "Pengaturan pemberitahuan", "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "Pemasaran, penjualan, dan platform layanan pelanggan yang dirancang untuk membantu bisnis Anda menarik pelanggan lebih terlibat. Ganti Hubspot dengan misi dan ekosistem berbasis masyarakat.", - "Mark Page Read": "Mark Halaman Baca", - "Mark All Read": "Mark Semua Baca", + "Mark Page Read": "Tandai Halaman terbaca", + "Mark All Read": "Tandai Semua terbaca", "Coming soon": "Segera akan datang", "No notifications": "Tidak ada pemberitahuan", "AI": "AI", "See all": "Lihat semua", - "Select a field": "Pilih field", + "Select a field": "Pilih bidang", "Add condition": "menambahkan kondisi", "Parent segment conditions": "kondisi segmen orang tua", "Filter by segments": "Filter oleh segmen", @@ -281,7 +282,7 @@ "User(s) will recieve this message": "Pengguna (s) akan menerima pesan ini", "Color code": "Kode warna", "Engage Message": "terlibat Pesan", - "Item counts": "jumlah item yang", + "Item counts": "jumlah item", "There is no integration in this Brand": "Tidak ada integrasi di Brand ini", "Appearance": "Penampilan", "Hours, Availability & Other configs": "Jam, Ketersediaan & konfigurasi lain", @@ -298,7 +299,7 @@ "Admin": "Admin", "Contributor": "Penyumbang", "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "Kami menyambut Anda dengan hangat untuk erxes dan berharap untuk hubungan kerja yang sehat jangka panjang dengan kami.", - "Hi, any questions?": "Hi, pertanyaan?", + "Hi, any questions?": "Hi, ada pertanyaan?", "1 hour ago": "1 jam yang lalu", "We need your help!": "Kami membutuhkan bantuan Anda!", "6 minutes ago": "6 menit yang lalu", @@ -312,8 +313,8 @@ "Admin email content": "konten email Admin", "Redirect url": "redirect url", "On success": "pada keberhasilan", - "Load": "Beban", - "Success": "Keberhasilan", + "Load": "Muat", + "Success": "Berhasil", "Thank content": "Terima konten", "Choose a custom color": "Pilih warna kustom", "Choose a wallpaper": "Pilih wallpaper", @@ -428,21 +429,21 @@ "registered@email.com": "registered@email.com", "new password": "kata sandi baru", "Start typing to leave a note": "Mulai mengetik untuk meninggalkan catatan", - "Re-type password": "Re-jenis sandi", + "Re-type password": "Masukkan ulang kata sandi", "Name:": "Nama:", "Size:": "Ukuran:", "Website:": "Situs web:", "Industry:": "Industri:", "Plan:": "Rencana:", - "There arent't any groups and fields": "Ada arent't setiap kelompok dan bidang", + "There arent't any groups and fields": "Tidak ada grup dan bidang apa pun", "Please add property Group first": "Harap menambahkan properti Grup pertama", "Add group": "menambahkan grup", "Add Property": "menambahkan Properti", - "Add Group & Field": "Tambah Grup & Field", + "Add Group & Field": "Tambah Grup & Bidang", "Add Group": "Tambah Grup", "Edit Property": "mengedit Properti", "Group:": "Kelompok:", - "There arent't any fields in this group": "Ada arent't setiap bidang dalam kelompok ini", + "There arent't any fields in this group": "Tidak ada bidang dalam kelompok ini", "Customer Properties": "Properti Pelanggan", "Company Properties": "Properti perusahaan", "Add an option": "Menambahkan opsi", @@ -467,8 +468,8 @@ "customers": "pelanggan", "has any value": "memiliki nilai apapun", "is unknown": "tidak diketahui", - "is not": "tidak", - "is": "aku s", + "is not": "bukan", + "is": "adalah", "Less than": "Kurang dari", "City": "Kota", "Greater than": "Lebih besar dari", @@ -504,7 +505,7 @@ "[view]": "[melihat]", "Go to twitter": "Pergi ke twitter", "Build": "Membangun", - "`s integration": "`Integrasi s", + "`s integration": "`Integrasi", "Created": "dibuat", "Email templates:": "Email template:", "Content:": "konten:", @@ -512,7 +513,7 @@ "Merge Companies": "menggabungkan perusahaan", "Response template": "Template respon", "Attach file": "Lampirkan file", - "Upload": "Upload", + "Upload": "Unggah", "ShoutBox": "ShoutBox", "Popup": "Muncul", "Embedded": "tertanam", @@ -593,7 +594,7 @@ "Parent Company": "Perusahaan utama", "Business Type": "Jenis Bisnis", "Employees count": "karyawan menghitung", - "Yes": "iya nih", + "Yes": "Ya", "No": "Tidak", "Copied": "disalin", "General": "Umum", @@ -604,7 +605,7 @@ "No stage": "Tidak ada panggung", "No deal": "Tidak sepakat", "Choose": "Memilih", - "Successfully saved.": "Berhasil diselamatkan.", + "Successfully saved.": "Berhasil disimpan.", "Successfully deleted.": "Berhasil dihapus.", "Successfully moved.": "Berhasil dipindahkan.", "Successfully selected.": "Berhasil dipilih.", @@ -655,19 +656,19 @@ "Every Wednesday": "Setiap rabu", "Every Thursday": "Setiap Kamis", "Every Friday": "Setiap Jumat", - "Every Saturday": "Setiap hari Sabtu", + "Every Saturday": "Setiap Sabtu", "Every Sunday": "Setiap Minggu", "Choose schedule type": "Pilih jenis jadwal", "Choose schedule time": "Pilih waktu jadwal", "Choose schedule day": "Pilih jadwal hari", "Choose schedule month": "Pilih jadwal bulan", - "Won": "Won", + "Won": "Menang", "Lost": "Kalah", "App store": "Toko aplikasi", - "App store menu": "menu app store", + "App store menu": "menu toko", "In Progress": "Sedang berlangsung", - "It`s size exceeds the limit 10mb": "Ukuran `s melebihi batas 10mb", - "Congrats! Your email sent successfully!": "Congrats! Email Anda berhasil dikirim!", + "It`s size exceeds the limit 10mb": "Ukuran melebihi batas 10mb", + "Congrats! Your email sent successfully!": "Selamat! Email Anda berhasil dikirim!", "Works with messenger": "Bekerja dengan utusan", "Knowledge base topic": "topik basis pengetahuan", "Package version": "versi paket", diff --git a/ui/src/locales/zh-cn.json b/ui/src/locales/zh-cn.json index c420ce2d53f..0111e52d22f 100644 --- a/ui/src/locales/zh-cn.json +++ b/ui/src/locales/zh-cn.json @@ -1,4 +1,5 @@ { + "Homepage link": "https://www.erxes.io", "Are you sure?": "你确定吗?", "Yes, I am": "我是", "No, Cancel": "不,取消", diff --git a/ui/src/locales/zh_CN.json b/ui/src/locales/zh_CN.json new file mode 100644 index 00000000000..1355042494b --- /dev/null +++ b/ui/src/locales/zh_CN.json @@ -0,0 +1,915 @@ +{ + "Are you sure?": "你确定吗?", + "Yes, I am": "我是", + "No, Cancel": "不,取消", + "Filter by tags": "通过标签筛选", + "There is no data": "没有数据", + "There is no data.": "没有数据。", + "Load more": "装载更多", + "There aren't any activities at the moment.": "有没有在目前的任何活动。", + "Reset your password": "重置你的密码", + "Email me the instruction": "给我发电子邮件的指令", + "Sign in": "登入", + "Change password": "更改密码", + "Set your new password": "设置新密码", + "Forgot password?": "忘记密码?", + "Photo": "照片", + "Name": "名称", + "Views": "查看", + "Conversion": "Conversion", + "Go to import": "Go to import", + "Conversion rate": "兑换率", + "Contacts gathered": "联系收集", + "Create lead": "创建铅", + "Form title": "表格标题", + "Related": "Related", + "Form description": "形式描述", + "Position": "位置", + "Username": "用户名", + "Email": "电子邮件", + "sec": "sec", + "Twitter username": "Twitter用户名", + "Inbox": "收件箱", + "Workflow": "Workflow", + "Watch": "Watch", + "Watching": "Watching", + "Team Inbox": "Team Inbox", + "Customers": "顾客", + "Companies": "公司", + "Engage": "从事", + "Insights": "洞察", + "Knowledge Base": "知识库", + "Settings": "设置", + "Resolve": "解决", + "Send": "发送", + "No company": "没有公司", + "No customer": "没有客户", + "Not tagged yet": "没有标签还", + "New note": "新建笔记", + "Conversation": "会话", + "Notes": "笔记", + "Activity": "活动", + "Basic info": "基础信息", + "Size": "尺寸", + "Other": "其他", + "Industry": "行业", + "Website": "网站", + "Plan": "计划", + "About": "关于", + "Discard": "丢弃", + "Save": "保存", + "Create response template": "创建响应模板", + "Associate": "关联", + "No tags": "没有标签", + "Add customer": "添加客户", + "No segments": "无段", + "Manage Columns": "管理列", + "New customer": "新客户", + "Add company": "添加公司", + "New company": "新公司", + "Choose which column you see": "选择您所看到的列", + "There is no engage message.": "有没有搞消息。", + "Add Knowledge base": "添加知识库", + "Add knowledge base.": "添加的知识基础。", + "New Channel": "新航道", + "Edit": "编辑", + "Edit basic info": "编辑基本信息", + "Manage integration": "管理一体化", + "Manage Integration": "Manage Integration", + "Choose new brand": "选择新品牌", + "Edit integration": "编辑整合", + "Integration": "积分", + "Integration menu": "积分菜单", + "New Brand": "新品牌", + "Add facebook page": "加入Facebook页面", + "Add integrations": "添加集成", + "Add messenger": "添加使者", + "There is no lead.": "没有领先。", + "New response template": "新的响应模板", + "Cancel": "取消", + "Public": "Public", + "Private": "Private", + "New email template": "新的电子邮件模板", + "Local publisher's email template": "当地发行商的电子邮件模板", + "New user": "新用户", + "Load More": "Load More", + "Session count": "会话数", + "Last seen at": "最后看时", + "Tags": "标签", + "Member": "会员", + "Remove": "去掉", + "No companies added yet!": "没有企业加入呢!", + "Merge": "合并", + "First Name": "名字", + "Last Name": "姓", + "First name": "First name", + "Last name": "Last name", + "Primary Email": "主要邮箱", + "Phone": "电话", + "Is user": "是用户", + "Save & New": "保存和新", + "Save & Close": "保存并关闭", + "Close": "关", + "Customer properties": "客户性质", + "Device properties": "设备属性", + "Location": "地点", + "Browser": "浏览器", + "Platform": "平台", + "IP Address": "IP地址", + "Hostname": "主机名", + "Language": "语言", + "User Agent": "用户代理", + "Other properties": "其它性能", + "Facebook": "Facebook的", + "Facebook profile": "Facebook的个人资料", + "Messenger usage": "Messenger的使用", + "Status": "状态", + "Online": "线上", + "Offline": "离线", + "Twitter": "推特", + "Twitter quote": "Twitter的报价", + "Retweet": "转推", + "Screen name": "屏幕名称", + "Don't see the result you're looking for? ": "Don't see the result you're looking for? ", + "Merged Info": "合并信息", + "E-mail": "电子邮件", + "Integrations": "集成", + "integration": "integration", + "Brands": "品牌", + "Start date": "开始日期", + "End date": "结束日期", + "lead": "铅", + "twitter": "twitter", + "facebook": "facebook", + "messenger": "信使", + "Title": "标题", + "Brand": "牌", + "Current Password": "当前密码", + "Current password": "Current password", + "New Password": "新密码", + "Re-type Password to confirm": "重新输入密码以确认", + "Signature": "签名", + "simple": "简单", + "custom": "习惯", + "default": "默认", + "default language": "默认语言", + "primary": "主", + "Content": "内容", + "Save & draft": "保存草稿", + "Save & live": "保存和生活", + "Message:": "信息:", + "Email template:": "电子邮件模板:", + "Email subject:": "电子邮件主题:", + "From": "从", + "Message type:": "消息类型:", + "Sent as:": "发送如下:", + "Brand:": "牌:", + "Add rule": "添加规则", + "Last online": "最近在线", + "No Activities": "没有活动", + "There is no customer.": "没有客户。", + "Properties": "属性", + "Customize ": "Customize ", + "Kind": "类", + "All": "所有", + "Auto": "汽车", + "Visitor auto": "参观者汽车", + "Manual": "手册", + "Delivered to a user s email inbox": "交付给用户的电子邮件收件箱", + "Customize with your own templates": "用自己的自定义模板", + "Delivered inside your app": "提供应用内的", + "Reach active users": "达到活跃用户", + "Channel": "渠道", + "Edit columns": "编辑列", + "Auto message": "汽车信息", + "Manual message": "手动消息", + "Visitor auto message": "访问者自动信息", + "Actions": "操作", + "Created date": "创建日期", + "Type": "类型", + "Failed": "失败", + "Sent": "发送", + "Total": "总", + "Pause": "暂停", + "Set live": "现场设置", + "Sending": "发出", + "Delete": "删除", + "Choose segment": "选择部分", + "To:": "至:", + "Messenger kind:": "信使类型:", + "Title:": "标题:", + "Channel:": "渠道:", + "No items": "没有相关产品", + "New": "新", + "Options:": "选项:", + "Options": "选项", + "Type:": "类型:", + "Add": "加", + "Validation:": "验证:", + "Date": "日期", + "Number": "数", + "Text:": "文本:", + "Description:": "描述:", + "This item is requried": "这个项目是requried", + "Preview": "预习", + "Column name": "列名", + "Visible": "可见", + "Visibility": "Visibility", + "Choose person": "选择人", + "Conversation Details": "会话详细信息", + "Opened": "开业", + "Conversations": "对话", + "Channels": "通道", + "Select all": "全选", + "Filter by tag": "通过标签筛选", + "Filter by integrations": "通过集成滤波器", + "Filter by brand": "按品牌筛选", + "Filter by channel": "由信道滤波器", + "Filter by status": "按状态过滤", + "# Channel": "#槽钢", + "Unassigned": "未分配", + "Participating": "参与", + "Resolved": "解决", + "View more": "查看更多", + "Customer is offline. Click to hide and send messages and they will receive them the next time they are online.": "客户处于脱机状态。点击隐藏和发送邮件,他们将接受他们的下一次他们是否在线。", + "No templates": "没有模板", + "Save as template": "另存为模板", + "Daily First Response Resolve Rate": "每日第一反应消退率", + "Daily First Response Resolve Rate by Team Members": "团队成员每天第一反应消退率", + "Daily Response Close Resolve Rate by Team Members": "团队成员每天响应关闭解决率", + "Volume Report": "卷报表", + "Feedbacks gathered through various customer engagement channels.": "反馈收集通过各种客户接触渠道。", + "Response Report": "响应报告", + "Total number of response for customer feedbacks, by each staff.": "总数响应客户反馈,通过每一位员工的。", + "Response Close Report": "回应关闭报告", + "Average time of each staff solving problems that based on customer feedbacks.": "基于客户反馈的每个员工解决问题的平均时间。", + "First Response Report": "第一反应报告", + "Responding time for a single feedback. Stats will define average response time by each staff.": "响应时间为一个单一的反馈。将统计每个员工定义平均响应时间。", + "Daily Response Close Resolve Rate": "每日回应关闭解决率", + "Daily Response Close Resolve rate by Team Members": "Daily Response Close Resolve rate by Team Members", + "Response Times summary": "响应时间汇总", + "Response Trend": "响应倾向", + "Punch card": "打卡", + "Response by team members": "团队成员响应", + "Tag": "标签", + "Internal note": "内部说明", + "Manage templates": "管理模板", + "Volume summary": "卷摘要", + "Volume Trend": "卷趋势", + "Summary": "摘要", + "Install code": "安装代码", + "No copyable code": "没有可复制代码", + "Manage Knowledge Base": "管理知识库", + "Add Category": "添加类别", + "Add Article": "添加文章", + "Customer engagement. REDEFINED.": "客户参与。重新定义。", + "erxes is an AI meets open source messaging platform for sales, marketing and support": "erxes是AI满足销售,营销和支持开放源代码的短信平台", + "404. This page is not found.": "404本页面没有找到。", + "erxes is an open-source messaging platform for customer success": "erxes是为客户的成功的开源通信平台", + "Notification settings": "通知设置", + "Marketing, sales, and customer service platform designed to help your business attract more engaged customers. Replace Hubspot with the mission and community-driven ecosystem.": "市场营销,销售和客户服务平台,旨在帮助您的企业吸引更多的从事客户。与使命和社区驱动的生态系统更换Hubspot。", + "Mark Page Read": "马克页读", + "Mark All Read": "标记为已读", + "Coming soon": "快来了", + "Looks like you are all caught up": "Looks like you are all caught up", + "AI": "AI", + "See all": "查看全部", + "Select a field": "选择一个字段", + "Add condition": "加入条件", + "Parent segment conditions": "父段条件", + "Filter by segments": "由段过滤器", + "New segment": "新段", + "Manage segments": "管理段", + "Users who match": "匹配的用户谁", + "any": "任何", + "all": "all", + "of the below conditions": "的以下条件", + "Sub segment of": "子段", + "Color": "颜色", + "Filters": "过滤器", + "User(s) will recieve this message": "(多个)用户将收到此消息", + "Color code": "色标", + "Engage Message": "从事信息", + "Item counts": "项目计数", + "Appearance": "出现", + "Hours, Availability & Other configs": "时间,可用性和其他CONFIGS", + "There is no brand": "没有品牌", + "There is no integration in this channel.": "有这个频道中没有整合。", + "Template markup": "模板标记", + "Use html template here": "这里使用HTML模板", + "Choose your email template type": "选择你的电子邮件模板类型", + "Email signatures": "电子邮件签名", + "Personal Settings": "个人设置", + "Account Settings": "帐号设定", + "Profile": "轮廓", + "Get notification by email": "通过邮件发送通知", + "Admin": "管理员", + "Contributor": "贡献者", + "We welcome you warmly to erxes and look forward to a long term healthy working association with us.": "我们欢迎您热情地erxes,并期待着与我们的长期健康的工作关系。", + "Hi, any questions?": "嗨,什么问题吗?", + "1 hour ago": "1小时前", + "We need your help!": "我们需要你的帮助!", + "6 minutes ago": "6分钟前", + "Write a reply ...": "写回复...", + "App": "应用", + "From email": "从电子邮件", + "User email title": "用户电子邮件标题", + "User email content": "用户电子邮件内容", + "Admin emails": "联系电子邮件", + "Admin email title": "联系电子邮件标题", + "Admin email content": "联系电子邮件内容", + "Redirect url": "重定向URL", + "On success": "在成功", + "Load": "加载", + "Success": "成功", + "Thank content": "谢谢内容", + "Choose a custom color": "选择自定义颜色", + "Choose a wallpaper": "选择壁纸", + "Choose a logo": "选择一个徽标", + "Visible online to visitor or customer": "可见网上访客或客户", + "Online messaging": "在线消息", + "Welcome message": "欢迎留言", + "Offline messaging": "离线消息", + "Away message": "离开消息", + "Thank you message": "感谢您留言", + "Hours & Availability": "时间和可用性", + "Turn online/offline manually": "在线/离线手动开启", + "Set to follow your schedule": "设置按照你的日程安排", + "Other configs": "其他CONFIGS", + "Notify customer": "通知客户", + "Online hours": "在线时间", + "Add another time": "添加其他时间", + "Time zone": "时区", + "Messenger": "Messenger", + "Knowledge base": "Knowledge base", + "Notification": "通知", + "Notifications": "通知", + "Show unread": "Show unread", + "Unread": "Unread", + "Recent": "Recent", + "Mark all as read": "Mark all as read", + "Email Appearance": "电子邮件外观", + "Team Members": "团队成员", + "Account default": "默认帐户", + "Team members": "Team members", + "Full name": "全名", + "Leads": "信息", + "Email Signature": "电子邮件签名", + "Response Template": "响应模板", + "Email Template": "电子邮件模板", + "Response templates": "响应模板", + "Email templates": "电子邮件模板", + "Brand Name": "品牌", + "Current template": "当前模板", + "Created at": "在创建", + "Manage Fields": "管理域", + "Duplicate": "重复", + "Code": "码", + "Profile settings": "配置文件设置", + "Change Password": "Change Password", + "Signatures are only included in response emails.": "签名只包含在回复电子邮件。", + "Signature template": "签名模板", + "You can use Markdown to format your signature.": "你可以用降价来格式化您的签名。", + "Password": "密码", + "Password confirmation": "确认密码", + "Choose the channels": "选择渠道", + "Simple": "Simple", + "Custom": "Custom", + "Create a new Company": "创建一个新公司", + "New Company": "New Company", + "Edit name": "修改姓名", + "Customer": "顾客", + "Add tag": "添加标签", + "Company": "公司", + "New message ": "New message ", + "There aren’t any activities at the moment.": "有没有在目前的任何活动。", + "This item is required": "该项目需", + "Manage fields": "Manage fields", + "Add integrations ": "Add integrations ", + "Form": "形成", + "Create a new Customer": "创建一个新的客户", + "New Customer": "New Customer", + "Segments": "段", + "Add a condition": "添加条件", + "Open": "打开", + "Choose channel": "选择通道", + "Who is this message for?": "这是谁的消息?", + "Compose your message": "撰写邮件", + "No items added": "没有项目添加", + "Submit": "提交", + "Next": "下一个", + "Save & Draft": "Save & Draft", + "Save & Live": "Save & Live", + "From:": "从:", + "Pages": "网页", + "Links": "链接", + "Enter your password to Confirm": "输入密码以确认", + "Number of visits": "浏览次数", + "Written By": "撰稿", + "Icon": "图标", + "draft": "草案", + "Twitter Username": "Twitter Username", + "LinkedIn": "LinkedIn", + "Youtube": "的Youtube", + "Github": "Github上", + "Edit response": "编辑响应", + "To send your message press Enter and Shift + Enter to add a new line": "要发送邮件按Enter键和Shift + Enter添加一个新行", + "To send your note press Enter and Shift + Enter to add a new line": "要发送您的笔记按Enter键和Shift + Enter添加一个新行", + "Please enter an unit price. It should be a number": "Please enter an unit price. It should be a number", + "Type to search": "键入搜索", + "Members": "会员", + "Choose integrations": "选择集成", + "Choose brands": "选择品牌", + "Select a date": "选择一个日期", + "Click to select a date": "点击选择日期", + "Choose users": "用户选择", + "Select Brand": "选择品牌", + "Write here Welcome message.": "在这里写下欢迎信息。", + "Write here Away message.": "离开这里写消息。", + "Write here Thank you message.": "写到这里谢谢你的消息。", + "Select app": "选择应用", + "Enter new password": "输入新密码", + "Choose channels": "选择渠道", + "Select": "选择", + "select": "select", + "Choose members": "选择成员", + "Search": "搜索", + "your@email.com": "your@email.com", + "password": "password", + "registered@email.com": "registered@email.com", + "new password": "new password", + "Start typing to leave a note": "开始键入留下一张纸条", + "Re-type password": "重新输入密码", + "Name:": "名称:", + "Size:": "尺寸:", + "Website:": "网站:", + "Industry:": "行业:", + "Plan:": "计划:", + "There arent't any groups and fields": "有arent't任何群体和领域", + "Please add property Group first": "请先添加属性组", + "Add group": "添加组", + "Add Property": "添加属性", + "Add Group & Field ": "Add Group & Field ", + "Add Group": "Add Group", + "Edit Property": "编辑属性", + "Group:": "组:", + "There arent't any fields in this group": "有arent't该组中的任何领域", + "Customer Properties": "Customer Properties", + "Company Properties": "公司属性", + "Add an option": "添加选项", + "Copy to clipboard": "复制到剪贴板", + "Go to home page": "去首页", + "Assign to": "分配给", + "Remove assignee": "删除受让人", + "Account settings": "Account settings", + "General Settings": "常规设置", + "Integration Settings": "整合设置", + "Personal settings": "Personal settings", + "Add category": "Add category", + "Filter": "过滤", + "Live": "生活", + "Draft": "Draft", + "Paused": "已暂停", + "Your messages": "您的邮件", + "Delivered inside your app Reach active users": "您的应用程序内提供达到活跃用户", + "Delivered to a user s email inbox Customize with your own templates": "交付给用户的电子邮件收件箱中自定义自己的模板", + "email": "email", + "Create segment": "创建段", + "customers": "customers", + "has any value": "有什么价值", + "is unknown": "不明", + "is not": "不是", + "is": "是", + "Less than": "少于", + "City": "市", + "Greater than": "比...更棒", + "Country": "国家", + "Current page url": "当前网页的网址", + "Browser language": "语言浏览器", + "conversation": "conversation", + "engageMessage": "engageMes​​sage", + "customer": "customer", + "company": "company", + "starts with": "以。。开始", + "ends with": "以。。结束", + "contains": "包含", + "does not contain": "不含", + "Basic Info": "Basic Info", + "Add Phone": "添加电话", + "Add Email": "添加电子邮件", + "Choose your tags": "选择你的标签", + "Manage tags": "管理标签", + "Edit Profile": "编辑个人资料", + "Sign out": "登出", + "Last Updated By": "最近更新通过", + "There is no channel": "没有渠道", + "Facebook page": "Facebook页面", + "plan": "plan", + "Edit segment": "编辑段", + "New message": "新消息", + "Message": "信息", + "Merge Customers": "合并客户", + "Assign": "分配", + "There is no message.": "没有消息。", + "per page": "每页", + "[view]": "[视图]", + "Go to twitter": "转到叽叽喳喳", + "Build": "建立", + "`s integration": "单曲整合", + "Created": "创建", + "Email templates:": "电子邮件模板:", + "Content:": "内容:", + "Response Templates": "Response Templates", + "Merge Companies": "公司合并", + "Response template": "Response template", + "Attach file": "附加文件", + "Upload": "上传", + "ShoutBox": "在线留言板", + "Popup": "弹出", + "Embedded": "嵌入式", + "Choose a flow type": "选择流式", + "CallOut": "大喊", + "Callout title": "标注标题", + "Callout body": "标注体", + "Callout button text": "标注按钮文本", + "Skip callOut": "跳过标注", + "Form button text": "表单按钮文本", + "Theme color": "主题颜色", + "Featured image": "特色图片", + "Full Preview": "全预览", + "Try some of these colors:": "尝试一些颜色:", + "Included fields": "包含的字段", + "Deal": "合同", + "Deals": "交易", + "New Product & Service": "新产品与服务", + "No product or services": "没有产品或服务", + "UOM": "UOM", + "Quantity": "数量", + "Unit price": "单价", + "Discount": "折扣", + "Tax": "税", + "Ticket": "Ticket", + "Task": "Task", + "Select company": "选择公司", + "Select customer": "选择客户", + "Note": "注意", + "Assigned to": "分配给", + "Move": "移动", + "Move deal": "移动交易", + "Copy": "复制", + "Close date": "关闭日期", + "Choose product & service": "选择产品和服务", + "Select product & service": "Select product & service", + "Please, select a close date": "请选择一个结束日期", + "Create a new Product": "创建一个新的产品", + "New Product": "新产品", + "SKU": "SKU", + "Choose a company": "选择公司", + "Choose a customer": "选择客户", + "Choose a board": "选择板", + "Choose a pipeline": "选择一个管道", + "Manage Board & Pipeline": "管理董事会及管道", + "Choose a stage": "选择阶段", + "Deal Settings": "交易设置", + "Ticket Settings": "Ticket Settings", + "Task Settings": "Task Settings", + "Boards & Pipelines": "板和管道", + "Product & Service": "产品与服务", + "There is no pipeline in this board.": "目前在这款主板没有管道。", + "There is no board": "没有板", + "New Board": "新的董事会", + "Add pipeline": "添加管道", + "Create one": "创建一个", + "Edit pipeline": "编辑管道", + "Add stage": "添加阶段", + "Board": "板", + "Pipeline": "管道", + "Stage": "阶段", + "Stage name": "Stage name", + "Add a deal": "添加交易", + "Add a task": "Add a task", + "Add a ticket": "Add a ticket", + "Priority": "Priority", + "Critical": "Critical", + "High": "High", + "Normal": "Normal", + "Low": "Low", + "Attachments": "Attachments", + "Source": "Source", + "Select a source": "Select a source", + "Upload an attachment": "Upload an attachment", + "Description": "描述", + "Select a priority": "Select a priority", + "Edit deal": "修改交易", + "Edit task": "Edit task", + "Edit ticket": "Edit ticket", + "Add Product / Service": "添加产品/服务", + "Reply tweet": "回复鸣叫", + "Tweet": "鸣叫", + "Details": "细节", + "View Profile": "查看资料", + "Empty Notes": "空注意事项", + "Mini-resume": "迷你简历", + "You cannot update this property": "你不能更新该属性", + "Desktop": "桌面", + "Mobile": "移动", + "Tablet": "片剂", + "Amount": "量", + "Owner": "所有者", + "Department": "部门", + "Lead Status": "线索状态", + "Lifecycle State": "生命周期状态", + "Has Authority": "有权", + "Do not disturb": "请勿打扰", + "Parent Company": "母公司", + "Business Type": "业务类型", + "Employees count": "员工数", + "Yes": "是", + "No": "没有", + "Copied": "复制", + "General": "一般", + "Currency": "货币", + "Unit of measurement": "测量单位", + "Create another board": "创建另一个板", + "No pipeline": "无流水线", + "No stage": "没有舞台", + "No deal": "没有成交", + "Background": "Background", + "Choose": "选择", + "Successfully saved.": "保存成功。", + "Successfully moved.": "移动成功。", + "Successfully selected.": "成功入选。", + "Body description here": "这里描述的身体", + "Thank you.": "谢谢。", + "Choose a brand": "Choose a brand", + "Write a title": "Write a title", + "Contact": "联系", + "Created by": "由...制作", + "Manage": "管理", + "Dropdown": "落下", + "Slide-in Left": "滑入左", + "Slide-in Right": "滑入右", + "Enter name": "输入名字", + "Delivered": "交付", + "Clicked": "点击", + "Complaint": "抱怨", + "Bounce": "弹跳", + "Rendering Failure": "渲染失败", + "Rejected": "被拒绝", + "Action": "行动", + "Please select one to merge": "请选择一个合并", + "Filter by date": "按日期过滤", + "Total conversations": "总的对话", + "Filter by form": "按窗体筛选", + "Supporters": "支持者", + "Import histories": "进口历史", + "Imported Date": "进口日期", + "Imported User": "导入的用户", + "Export customers": "出口客户", + "Import customers": "导入客户", + "Export companies": "出口企业", + "Import companies": "公司导入", + "All customers imported successfully": "所有客户成功导入", + "There aren't any imports": "目前还没有任何进口", + "Successfully Removed all customers": "成功删除所有客户", + "You can only import max 600 at a time": "您只能一次导入最多600", + "Invalid import type": "无效的导入类型", + "Last updated": "最近更新时间", + "Filter by lead status": "铅状态筛选", + "No lead status chosen": "无引脚的状态选择", + "Schedule:": "时间表:", + "Every Day": "每天", + "Every Month": "每个月", + "Every Year": "每年", + "Every Monday": "每逢星期一", + "Every Tuesday": "每逢星期二", + "Every Wednesday": "每个星期三", + "Every Thursday": "每个星期四", + "Every Friday": "每周五", + "Every Saturday": "每周六", + "Every Sunday": "每个星期天", + "Choose a schedule day": "Choose a schedule day", + "Choose a schedule time": "Choose a schedule time", + "Won": "韩元", + "Lost": "丢失", + "App store": "应用商店", + "App store menu": "App store的菜单", + "In Progress": "进行中", + "It`s size exceeds the limit 10mb": "它`大小超过10MB的限制", + "Congrats! Your email sent successfully!": "恭喜!您的电子邮件发送成功!", + "Works with messenger": "与信使工程", + "Knowledge base topic": "知识库主题", + "Package version": "包版本", + "Branch name": "分店名称", + "Abbreviated": "简短的", + "User": "用户", + "Recent conversations": "最近的会话", + "Start new conversation": "开始新的对话", + "Talk with support staff": "配有客服人员交谈", + "Send a message": "发送消息", + "Volume Report By Customer": "卷报表按客户", + "Export Report": "导出报告", + "We`re ready to help you.": "我们'重新愿意帮助你", + "Please choose a product": "Please choose a product", + "Please choose a currency": "Please choose a currency", + "No board": "No board", + "Empty": "Empty", + "There is no account.": "There is no account.", + "There is no tag.": "There is no tag.", + "Skip for now": "Skip for now", + "Go to Inbox": "Go to Inbox", + "Messenger Language": "Messenger Language", + "Messenger name": "Messenger name", + "Skip": "Skip", + "Finish": "Finish", + "Show": "Show", + "Hide": "Hide", + "Previous": "Previous", + "Users": "Users", + "users": "users", + "brands": "brands", + "messengers": "messengers", + "channels": "channels", + "Emails": "Emails", + "Messengers": "Messengers", + "You already have": "You already have", + "There is another": "There is another", + "Let's create your brand": "Let's create your brand", + "Invite users": "Invite users", + "Let's grow your team": "Let's grow your team", + "Invite": "Invite", + "Let's start": "Let's start", + "Start messaging now!": "Start messaging now!", + "Create channel": "Create channel", + "Get started on your channel": "Get started on your channel", + "Create your first messenger": "Create your first messenger", + "Welcome": "Welcome", + "Nothing inserted": "Nothing inserted", + "Empty emails": "Empty emails", + "Initial setup": "Initial setup", + "Add another": "Add another", + "Don't show again": "Don't show again", + "No other pipeline": "No other pipeline", + "No other boards": "No other boards", + "I'm ready to get started": "I'm ready to get started", + "Welcome paragraph": "We're so happy to have you. Let's take a moment to get you set up", + "Get notified and notify others to keep everything up to date": "Get notified and notify others to keep everything up to date", + "If your team hasn't received messages that you sent on the site, we can send it to them via email": "If your team hasn't received messages that you sent on the site, we can send it to them via email", + "Send an email and notify members that they've been invited!": "Send an email and notify members that they've been invited!", + "January": "January", + "February": "February", + "March": "March", + "April": "April", + "May": "May", + "June": "June", + "July": "July", + "August": "August", + "September": "September", + "October": "October", + "November": "November", + "December": "December", + "Today": "Today", + "Sales": "Sales", + "Monthly view": "Monthly view", + "Filter by": "Filter by", + "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems": "Creating a brand and by adding channels, you are able to better analyze your customers needs and help solve their problems", + "Grow and add users to your team! Assign, designate and let them do what they do best": "Grow and add users to your team! Assign, designate and let them do what they do best", + "Stay up to date with every single customer feedback and create more meaningful conversations": "Stay up to date with every single customer feedback and create more meaningful conversations", + "Create brand channels that are specifically categorized by type and activity": "Create brand channels that are specifically categorized by type and activity", + "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.": "Add a Lead here and see it on your Messenger Widget! In order to see Leads in your inbox, please make sure it is added in your channel.", + "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.": "You can choose from our many messenger integrations and add to your knowledge base. The knowledge base will appear in the tab of your messenger widget. To do this, please create and add to your knowledge base.", + "An email signature is an opportunity to share information that helps build recognition and trust.": "An email signature is an opportunity to share information that helps build recognition and trust.", + "Let's start taking care of your customers": "Let's start taking care of your customers", + "Add in your first company!": "Add in your first company!", + "Choose from our many integrations and add to your channel": "Choose from our many integrations and add to your channel", + "Let's get you messaging away!": "Let's get you messaging away!", + "Whoops! No messages here but you can always start": "Whoops! No messages here but you can always start", + "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.": "Articles can address any number of issues your customers encounter. Types of knowledge articles can include solutions to common issues, product or feature documentation, FAQ's and much more.", + "Oops! No data here": "Oops! No data here", + "Start adding integrations now!": "Start adding integrations now!", + "Add an integration in this Brand": "Add an integration in this Brand", + "Oh dear! You have no imports": "Oh dear! You have no imports", + "A strong customer engagement can help to further brand growth and loyalty": "A strong customer engagement can help to further brand growth and loyalty", + "Get started on your pipeline": "Get started on your pipeline", + "Connect to Facebook messages right from your Team Inbox": "Connect to Facebook messages right from your Team Inbox", + "Tweet back to your DMs right from your Team Inbox": "Tweet back to your DMs right from your Team Inbox", + "Connect straight to your Gmail and get those emails going": "Connect straight to your Gmail and get those emails going", + "Find your lead forms right here in your Widget": "Find your lead forms right here in your Widget", + "Get access to your Knowledge Base right in your Widget": "Get access to your Knowledge Base right in your Widget", + "Soon you'll be able to connect Viber straight to your Team Inbox": "Soon you'll be able to connect Viber straight to your Team Inbox", + "Get a hold of your Whatsapp messages through your Team Inbox": "Get a hold of your Whatsapp messages through your Team Inbox", + "Connect with Wechat and start messaging right from your Team Inbox": "Connect with Wechat and start messaging right from your Team Inbox", + "Find feedback that has been gathered from various customer engagement channels.": "Find feedback that has been gathered from various customer engagement channels.", + "A report on the total number of customer feedback responses given by team members.": "A report on the total number of customer feedback responses given by team members.", + "The average time a team member solved a problem based on customer feedback.": "The average time a team member solved a problem based on the customer feedback.", + "You can find stats that defines the average response time by each team member.": "You can find stats that defines the average response time by each team member.", + "Oh boy, looks like you need to get a head start on your deals": "Oh boy, looks like you need to get a head start on your deals", + "Open segments and starting add details": "Open segments and starting add details", + "Now easier to find contacts according to your brand": "Now easier to find contacts according to your brand", + "Search and filter customers by form": "Search and filter customers by form", + "There is always a lead!": "There is always a lead!", + "Calendar": "Calendar", + "Columns": "Columns", + "columns": "columns", + "Linked Accounts": "Linked Accounts", + "Select account": "Select account", + "Select account ...": "Select account ...", + "Add Account": "Add Account", + "Remove Account": "Remove Account", + "You can upload only image file": "You can upload only .png or .jpg image file", + "Permissions": "Permissions", + "New permission": "New permission", + "New group": "New group", + "Users groups": "Users groups", + "Choose the module": "Choose the module", + "Choose the actions": "Choose the actions", + "Choose the users": "Choose the users", + "Choose the groups": "Choose the groups", + "Choose groups": "Choose groups", + "Allow": "Allow", + "Invitation Status": "Invitation Status", + "Permission": "Permission", + "data successfully imported": "data successfully imported", + "Show result": "Show result", + "Importing": "Importing", + "data": "data", + "errors acquired": "errors acquired", + "There are": "There are", + "Continue": "Continue", + "Create brand": "Create brand", + "Create your first live chat and in-app messaging Stay up to date with every single customer feedback for more meaningful interactions": "Create your first live chat and in-app messaging. Stay up to date with every single customer feedback for more meaningful interactions.", + "A channel gives a full view of all the brands and its applications all in one place You can see all in-coming messages in your team inbox": "A channel gives a full view of all the brands and its applications all in one place. You can see all in-coming messages in your team inbox.", + "Hooray and Congratulations! You've completed the initial setup!": "Hooray and Congratulations! You've completed the initial setup!", + "Paste the code below before the body tag on every page you want erxes chat to appear": "Paste the code below before the tag on every page you want erxes chat to appear.", + "Paste the code below before the body tag on every page you want erxes lead to appear": "Paste the code below before the body tag on every page you want erxes lead to appear", + "If your flow type is embedded paste the code below additionally that you want erxes lead to appear": "If your flow type is embedded paste the code below additionally that you want erxes lead to appear", + "If your flow type is popup paste the code below additionally in your button": "If your flow type is popup paste the code below additionally in your button", + "Choose messengers": "Choose messengers", + "erxes allows you to create multiple messengers": "erxes allows you to create multiple messengers", + "erxes allows you to create multiple brands": "erxes allows you to create multiple brands", + "erxes allows you to create multiple channels": "erxes allows you to create multiple channels", + "Contacts": "Contacts", + "Create group": "Create group", + "Visitors": "Visitors", + "Due in the next day": "Due in the next day", + "Due in the next week": "Due in the next week", + "Due in the next month": "Due in the next month", + "Has no close date": "Has no close date", + "Over due": "Over due", + "Clear Filter": "Clear Filter", + "Remove this filter": "Remove this filter", + "Filtering is on": "Filtering is on", + "Choose products": "Choose products", + "Choose companies": "Choose companies", + "Choose customers": "Choose customers", + "Choose team members": "Choose team members", + "erxes Inc": "erxes Inc", + "Get": "Get", + "Download ios app for free on the App Store": "Download ios app for free on the App Store.", + "Download android app for free on the Google play": "Download android app for free on the Google play.", + "Please upgrade your browser to use erxes!": "Please upgrade your browser to use erxes!", + "Unfortunately, You are running on a browser that may not be fully compatible with erxes": "Unfortunately, You are running on a browser that may not be fully compatible with erxes.", + "Please use recommended version": "Please use recommended version", + "Messenger data": "Messenger data", + "Customer field data": "Customer field data", + "Others": "Others", + "Select brand": "Select brand", + "There is no permissions in this group": "There is no permissions in this group.", + "There is no group": "There is no group.", + "User groups": "User groups", + "What action can do": "What action can do", + "Who can": "Who can", + "Grant permission": "Grant permission", + "Check if permission is allowed": "Check if permission is allowed", + "Then": "Then", + "Or": "Or", + "Auto message description": "Send targeted email and chat to logged-in users based on their brand/tag/segment. You can set your time to send an email or chat in advance. Chat design can be snipped, badge and full message and it can be a text or video.", + "Manual message description": "Send targeted email and chat to logged-in users based on their brand/tag/segment. An email or chat will be sent out immediately after you click save button. Chat design can be snipped, badge and full message and it can be a text or video.", + "Visitor auto message description": "Send targeted chats to logged-out visitors on website based on their visiting page, activity, their country of residence and city. Chat design can be snipped, badge and full message and it can be a text or video.", + "Required field": "Required field!", + "Invalid email format! Please enter a valid email address": "Invalid email format! Please enter a valid email address.", + "Invalid link": "Invalid link!", + "Maximum length is": "Maximum length is", + "characters": "characters!", + "Invalid number format! Please enter a valid number": "Invalid number format! Please enter a valid number.", + "Insert email template to content": "Insert email template to content", + "Logs": "Logs", + "There are no logs recorded": "There are no logs recorded", + "Module": "Module", + "Unchanged fields": "Unchanged fields", + "Changed fields": "Changed fields", + "Create": "Create", + "Update": "Update", + "Changes": "Changes", + "Choose start date": "Choose start date", + "Choose end date": "Choose end date", + "Permission denied": "Permission denied", + "Old data": "Old data", + "New data": "New data", + "Archive": "Archive", + "NetworkError": "Attempting to restore connection. Changes made now may not be saved.", + "Email add account description question": "Are you connecting a shared email account?", + "Email add account description": "When you connect an email to your conversations inbox, you're connecting it as a shared account. Messages sent to shared accounts can be viewed by everyone who has access to your team inbox.", + "No connected email": "No connected email", + "Your email will be sent with Erxes email template": "Your email will be sent with Erxes email template" +} diff --git a/ui/src/modules/activityLogs/components/ActivityItem.tsx b/ui/src/modules/activityLogs/components/ActivityItem.tsx index 9f1c7d6303a..e114c1e64aa 100644 --- a/ui/src/modules/activityLogs/components/ActivityItem.tsx +++ b/ui/src/modules/activityLogs/components/ActivityItem.tsx @@ -9,6 +9,7 @@ import InternalNote from '../containers/items/InternalNote'; import { ActivityIcon, ActivityRow } from '../styles'; import { IActivityLog } from '../types'; import { formatText, getIconAndColor } from '../utils'; +import ArchiveLog from './items/archive/ArchiveLog'; import AssigneeLog from './items/boardItems/AssigneeLog'; import MovementLog from './items/boardItems/MovementLog'; import ConvertLog from './items/ConvertLog'; @@ -113,6 +114,8 @@ class ActivityItem extends React.Component { 'assignee', ); + case 'archive': + return this.renderDetail('archive', ); default: return
; } diff --git a/ui/src/modules/activityLogs/components/items/archive/ArchiveLog.tsx b/ui/src/modules/activityLogs/components/items/archive/ArchiveLog.tsx new file mode 100644 index 00000000000..80021326355 --- /dev/null +++ b/ui/src/modules/activityLogs/components/items/archive/ArchiveLog.tsx @@ -0,0 +1,52 @@ +import dayjs from 'dayjs'; +import { + ActivityDate, + FlexBody, + FlexCenterContent +} from 'modules/activityLogs/styles'; +import { IActivityLog } from 'modules/activityLogs/types'; +import Tip from 'modules/common/components/Tip'; +import { renderUserFullName } from 'modules/common/utils'; +import React from 'react'; + +type Props = { + activity: IActivityLog; +}; + +class ArchiveLog extends React.Component { + renderContent = () => { + const { activity } = this.props; + const { contentType, createdByDetail, content } = activity; + + let userName = 'Unknown'; + + if (createdByDetail && createdByDetail.type === 'user') { + if (createdByDetail.content.details) { + userName = renderUserFullName(createdByDetail.content); + } + } + + return ( + + {userName} {content} this {contentType} + + ); + }; + + render() { + const { createdAt } = this.props.activity; + + return ( + + {this.renderContent()} + + + {dayjs(createdAt).format('MMM D, h:mm A')} + + + + ); + } +} + +export default ArchiveLog; diff --git a/ui/src/modules/activityLogs/constants.ts b/ui/src/modules/activityLogs/constants.ts index 99253ebb06a..5696feee892 100644 --- a/ui/src/modules/activityLogs/constants.ts +++ b/ui/src/modules/activityLogs/constants.ts @@ -86,5 +86,9 @@ export const ICON_AND_COLOR_TABLE = { checklist: { icon: 'check-square', color: '#6569df' + }, + archive: { + icon: 'archive-alt', + color: '#fdb761' } }; diff --git a/ui/src/modules/auth/containers/SignIn.tsx b/ui/src/modules/auth/containers/SignIn.tsx index 03a80096ced..96518efbee5 100755 --- a/ui/src/modules/auth/containers/SignIn.tsx +++ b/ui/src/modules/auth/containers/SignIn.tsx @@ -14,9 +14,7 @@ const SignInContainer = (props: IRouterProps) => { const callbackResponse = () => { apolloClient.resetStore(); - if (window.location.href.includes('sign-in')) { - history.push('/?signedIn=true'); - } + history.push('/?signedIn=true'); window.location.reload(); }; diff --git a/ui/src/modules/boards/components/editForm/Actions.tsx b/ui/src/modules/boards/components/editForm/Actions.tsx index ec12f6268dd..993f8e8f2ef 100644 --- a/ui/src/modules/boards/components/editForm/Actions.tsx +++ b/ui/src/modules/boards/components/editForm/Actions.tsx @@ -20,6 +20,7 @@ type Props = { saveItem: (doc: { [key: string]: any }, callback?: (item) => void) => void; onUpdate: (item: IItem, prevStageId?: string) => void; sendToBoard?: (item: any) => void; + onChangeStage?: (stageId: string) => void; }; class Actions extends React.Component { @@ -40,7 +41,8 @@ class Actions extends React.Component { options, copyItem, removeItem, - sendToBoard + sendToBoard, + onChangeStage } = this.props; const onLabelChange = labels => saveItem({ labels }); @@ -81,6 +83,7 @@ class Actions extends React.Component { removeItem={removeItem} saveItem={saveItem} sendToBoard={sendToBoard} + onChangeStage={onChangeStage} /> ); diff --git a/ui/src/modules/boards/components/editForm/ArchiveBtn.tsx b/ui/src/modules/boards/components/editForm/ArchiveBtn.tsx index 3fdd5097cbe..00bc9fd0c52 100644 --- a/ui/src/modules/boards/components/editForm/ArchiveBtn.tsx +++ b/ui/src/modules/boards/components/editForm/ArchiveBtn.tsx @@ -10,10 +10,11 @@ interface IProps { item: IItem; saveItem: (doc: { [key: string]: any }, callback?: (item) => void) => void; sendToBoard?: (item: any) => void; + onChangeStage?: (stageId: string) => void; } export const ArchiveBtn = (props: IProps) => { - const { removeItem, item, saveItem, sendToBoard } = props; + const { removeItem, item, saveItem, sendToBoard, onChangeStage } = props; if (item.status === 'archived') { const onRemove = () => removeItem(item._id); @@ -42,6 +43,9 @@ export const ArchiveBtn = (props: IProps) => { const onArchive = () => { saveItem({ status: 'archived' }); + if (onChangeStage) { + onChangeStage(item.stageId); + } }; return ( diff --git a/ui/src/modules/boards/components/editForm/Left.tsx b/ui/src/modules/boards/components/editForm/Left.tsx index 83c5c71e7fd..93a13323f2b 100644 --- a/ui/src/modules/boards/components/editForm/Left.tsx +++ b/ui/src/modules/boards/components/editForm/Left.tsx @@ -69,6 +69,7 @@ type Props = { onUpdate: (item: IItem, prevStageId?: string) => void; addItem: (doc: IItemParams, callback: () => void) => void; sendToBoard?: (item: any) => void; + onChangeStage?: (stageId: string) => void; }; const Left = (props: Props) => { @@ -80,7 +81,8 @@ const Left = (props: Props) => { removeItem, onUpdate, addItem, - sendToBoard + sendToBoard, + onChangeStage } = props; const onChangeAttachment = (files: IAttachment[]) => @@ -99,6 +101,7 @@ const Left = (props: Props) => { saveItem={saveItem} onUpdate={onUpdate} sendToBoard={sendToBoard} + onChangeStage={onChangeStage} /> {item.labels.length > 0 && ( diff --git a/ui/src/modules/boards/components/portable/AddForm.tsx b/ui/src/modules/boards/components/portable/AddForm.tsx index b67981cda8c..8c8bece15e5 100644 --- a/ui/src/modules/boards/components/portable/AddForm.tsx +++ b/ui/src/modules/boards/components/portable/AddForm.tsx @@ -33,10 +33,10 @@ class AddForm extends React.Component { this.state = { disabled: false, - boardId: this.props.boardId || '', - pipelineId: this.props.pipelineId || '', - stageId: this.props.stageId || '', - name: '' + boardId: props.boardId || '', + pipelineId: props.pipelineId || '', + stageId: props.stageId || '', + name: localStorage.getItem(`${props.options.type}Name`) || '' }; } @@ -70,6 +70,8 @@ class AddForm extends React.Component { // after save, enable save button this.setState({ disabled: false }); + localStorage.removeItem(`${this.props.options.type}Name`); + closeModal(); if (callback) { @@ -106,8 +108,13 @@ class AddForm extends React.Component { ); } - onChangeName = e => - this.onChangeField('name', (e.target as HTMLInputElement).value); + onChangeName = e => { + const name = (e.target as HTMLInputElement).value; + + this.onChangeField('name', name); + + localStorage.setItem(`${this.props.options.type}Name`, name); + }; render() { return ( @@ -117,7 +124,11 @@ class AddForm extends React.Component { Name - + diff --git a/ui/src/modules/boards/containers/PipelineContext.tsx b/ui/src/modules/boards/containers/PipelineContext.tsx index 72d515262bf..8f967e4f125 100644 --- a/ui/src/modules/boards/containers/PipelineContext.tsx +++ b/ui/src/modules/boards/containers/PipelineContext.tsx @@ -13,8 +13,8 @@ import { IOptions, IPipeline } from '../types'; -import { invalidateCache } from '../utils'; -import { collectOrders, reorder, reorderItemMap } from '../utils'; +import { invalidateCache, orderHelper } from '../utils'; +import { reorder, reorderItemMap } from '../utils'; type Props = { pipeline: IPipeline; @@ -188,39 +188,67 @@ export class PipelineProvider extends React.Component { // to avoid to refetch current tab sessionStorage.setItem('currentTab', 'true'); - const { itemMap } = reorderItemMap({ + const { itemMap, target } = reorderItemMap({ itemMap: this.state.itemMap, source, destination }); - // update item to database - const itemId = result.draggableId.split('-')[0]; - this.itemChange(itemId, destination.droppableId); - this.setState({ itemMap }); invalidateCache(); - // save orders to database - return this.saveItemOrders(itemMap, [ - source.droppableId, - destination.droppableId - ]); + // saving to database + this.itemChange( + target._id, + destination.droppableId, + target.order, + source.droppableId + ); + }; + + refetchQueryBuild = (stageId: string) => { + const { options, queryParams } = this.props; + + return { + query: gql(queries.stageDetail), + variables: { + _id: stageId, + search: queryParams.search, + customerIds: queryParams.customerIds, + companyIds: queryParams.companyIds, + assignedUserIds: queryParams.assignedUserIds, + extraParams: options.getExtraParams(queryParams), + closeDateType: queryParams.closeDateType, + userIds: queryParams.userIds + } + }; }; - itemChange = (itemId: string, destinationStageId: string) => { + itemChange = ( + itemId: string, + destinationStageId: string, + order: number, + sourceStageId: string = '' + ) => { const { options } = this.props; + const refetchQueries = [this.refetchQueryBuild(destinationStageId)]; + + if (sourceStageId) { + refetchQueries.unshift(this.refetchQueryBuild(sourceStageId)); + } client .mutate({ mutation: gql(options.mutations.changeMutation), variables: { _id: itemId, - destinationStageId - } + destinationStageId, + order + }, + refetchQueries }) .catch((e: Error) => { Alert.error(e.message); @@ -243,41 +271,6 @@ export class PipelineProvider extends React.Component { }); }; - saveItemOrders = (itemMap: IItemMap, stageIds: string[]) => { - const { options, queryParams } = this.props; - - for (const stageId of stageIds) { - const orders = collectOrders(itemMap[stageId]); - - client - .mutate({ - mutation: gql(options.mutations.updateOrderMutation), - variables: { - orders, - stageId - }, - refetchQueries: [ - { - query: gql(queries.stageDetail), - variables: { - _id: stageId, - search: queryParams.search, - customerIds: queryParams.customerIds, - companyIds: queryParams.companyIds, - assignedUserIds: queryParams.assignedUserIds, - extraParams: options.getExtraParams(queryParams), - closeDateType: queryParams.closeDateType, - userIds: queryParams.userIds - } - } - ] - }) - .catch((e: Error) => { - Alert.error(e.message); - }); - } - }; - /* * - Stage container is sending loaded to items * - Storing sent items to global itemsMap @@ -373,11 +366,18 @@ export class PipelineProvider extends React.Component { const { stageId } = item; const { itemMap } = this.state; + // to avoid to refetch current tab + sessionStorage.setItem('currentTab', 'true'); + // Moved to anothor board or pipeline if (!itemMap[stageId] && prevStageId) { return this.onRemoveItem(item._id, prevStageId); } + if (item.status === 'archived') { + return this.onRemoveItem(item._id, item.stageId); + } + // Moved between stages if (prevStageId && stageId !== prevStageId) { // remove from old stage @@ -396,7 +396,12 @@ export class PipelineProvider extends React.Component { }; this.setState({ itemMap: newitemMap }, () => { - this.saveItemOrders(newitemMap, [stageId]); + const afterItem = itemMap[stageId][0]; + item.order = orderHelper({ + prevOrder: 0, + afterOrder: afterItem ? afterItem.order : 0 + }); + this.itemChange(item._id, stageId, item.order, prevStageId); }); } else { const items = [...itemMap[stageId]]; diff --git a/ui/src/modules/boards/containers/editForm/EditForm.tsx b/ui/src/modules/boards/containers/editForm/EditForm.tsx index 54191549eab..3289e4ba385 100644 --- a/ui/src/modules/boards/containers/editForm/EditForm.tsx +++ b/ui/src/modules/boards/containers/editForm/EditForm.tsx @@ -68,7 +68,9 @@ class EditFormContainer extends React.Component { document: gql(options.subscriptions.changeSubscription), variables: { _id: itemId }, updateQuery: () => { - this.props.detailQuery.refetch(); + if (document.querySelectorAll('.modal').length < 2) { + this.props.detailQuery.refetch(); + } } }); } diff --git a/ui/src/modules/boards/containers/withPipeline.tsx b/ui/src/modules/boards/containers/withPipeline.tsx index 5c2b4f26dce..b2199b3029b 100644 --- a/ui/src/modules/boards/containers/withPipeline.tsx +++ b/ui/src/modules/boards/containers/withPipeline.tsx @@ -37,6 +37,11 @@ const withPipeline = Component => { // don't reload current tab if (!currentTab) { + // don't reload when other popups are open + if (document.querySelectorAll('.modal').length >= 2) { + return; + } + const pipelineUpdate = sessionStorage.getItem('pipelineUpdate'); routerUtils.setParams(history, { key: Math.random() }); diff --git a/ui/src/modules/boards/graphql/mutations.ts b/ui/src/modules/boards/graphql/mutations.ts index 1b053e2fe48..54b514a781f 100644 --- a/ui/src/modules/boards/graphql/mutations.ts +++ b/ui/src/modules/boards/graphql/mutations.ts @@ -88,6 +88,7 @@ export const commonFields = ` avatar } } + order `; const stagesUpdateOrder = ` @@ -125,7 +126,7 @@ const pipelineLabelsEdit = ` const pipelineLabelsRemove = ` mutation pipelineLabelsRemove($_id: String!) { - pipelineLabelsRemove(_id: $_id) + pipelineLabelsRemove(_id: $_id) } `; diff --git a/ui/src/modules/boards/utils.tsx b/ui/src/modules/boards/utils.tsx index 1e07221b833..777db760141 100644 --- a/ui/src/modules/boards/utils.tsx +++ b/ui/src/modules/boards/utils.tsx @@ -47,6 +47,55 @@ type ReorderItemMap = { destination: IDraggableLocation; }; +const round = (num: number, fixed: number = 0) => { + return parseFloat(num.toFixed(fixed)); +}; + +export const orderHelper = ({ + prevOrder, + afterOrder +}: { + prevOrder: number; + afterOrder: number; +}) => { + if (!prevOrder && !afterOrder) { + return 1; + } + + if (!afterOrder) { + return round(prevOrder) + 1; + } + + const splitAfter = afterOrder.toString().split('.'); + const fraction = '0.'.concat(splitAfter[1] || '0'); + + if (!prevOrder) { + const afterLen = fraction.length; + const afterDotLen = fraction === '0.0' ? 1 : 0; + const diffIs1Len = afterOrder.toString().substr(-1) === '1' ? 1 : 0; + + return round( + afterOrder - 0.1 ** (afterLen - 2 - afterDotLen + diffIs1Len), + afterLen + diffIs1Len + ); + } + + const prevFraction = '0.'.concat(prevOrder.toString().split('.')[1] || '0'); + const diffLen = + prevFraction.length > fraction.length + ? prevFraction.length + : fraction.length; + + const diff = round(afterOrder - prevOrder, diffLen); + const dotLen = fraction === '0.0' && prevFraction === '0.0' ? 1 : 0; + const is1Len = diff.toString().substr(-1) === '1' ? 1 : 0; + + return round( + afterOrder - 0.1 ** (diffLen - 2 - dotLen + is1Len), + diffLen + is1Len + ); +}; + export const reorderItemMap = ({ itemMap, source, @@ -58,6 +107,12 @@ export const reorderItemMap = ({ const target = current[source.index]; target.modifiedAt = new Date(); + const prevOrder = + destination.index > 0 ? next[destination.index - 1].order : 0; + const afterOrder = + next.length > destination.index ? next[destination.index].order : 0; + target.order = orderHelper({ prevOrder, afterOrder }) || 1; + // moving to same list if (source.droppableId === destination.droppableId) { const reordered = reorder(current, source.index, destination.index); @@ -68,7 +123,8 @@ export const reorderItemMap = ({ }; return { - itemMap: updateditemMap + itemMap: updateditemMap, + target }; } @@ -87,7 +143,8 @@ export const reorderItemMap = ({ }; return { - itemMap: result + itemMap: result, + target }; }; diff --git a/ui/src/modules/common/components/CollapseContent.tsx b/ui/src/modules/common/components/CollapseContent.tsx index 404915b25c8..4587eb36009 100644 --- a/ui/src/modules/common/components/CollapseContent.tsx +++ b/ui/src/modules/common/components/CollapseContent.tsx @@ -1,16 +1,24 @@ import React, { useState } from 'react'; import Collapse from 'react-bootstrap/Collapse'; -import styled from 'styled-components'; +import styled, { css } from 'styled-components'; import styledTS from 'styled-components-ts'; +import { rgba } from '../styles/color'; import colors from '../styles/colors'; import Icon from './Icon'; -const Title = styledTS<{ compact?: boolean }>(styled.div)` +const Title = styledTS<{ + compact?: boolean; + hasImage?: boolean; + background?: string; +}>(styled.a)` padding: ${props => (props.compact ? '10px 20px' : '20px')}; transition: background 0.3s ease; display: flex; align-items: center; justify-content: space-between; + position: relative; + overflow: hidden; + color: ${colors.textPrimary}; h4 { font-weight: 500; @@ -20,54 +28,124 @@ const Title = styledTS<{ compact?: boolean }>(styled.div)` &:hover { cursor: pointer; } + + ${props => + props.hasImage && + css` + &:after { + content: ''; + display: block; + position: absolute; + border-radius: 100% 12%; + width: 300px; + height: 200%; + background-color: ${rgba(props.background, 0.13)}; + right: -40px; + top: -30px; + } + + img { + position: absolute; + right: 0; + top: 0; + bottom: 0; + height: 100%; + max-width: 40%; + padding: 10px 10px 0 10px; + z-index: 2; + } + `}; +`; + +const Left = styled.div` + display: flex; + align-items: center; `; const Container = styledTS<{ open: boolean }>(styled.div)` margin-bottom: 10px; box-shadow: 0 0 6px 1px rgba(0,0,0,0.08); border-radius: 4px; + overflow: hidden; background: ${props => (props.open ? colors.bgLight : colors.colorWhite)}; &:last-child { - margin-bottom: 5px; + margin-bottom: 0; } - ${Title} i { + > ${Title} i { font-size: 20px; transition: transform ease 0.3s; transform: ${props => props.open && 'rotate(180deg)'}; } `; -const Content = styled.div` - padding: 20px; +const Content = styledTS<{ full: boolean }>(styled.div)` + padding: ${props => (props.full ? '0' : '20px')}; border-top: 1px solid ${colors.borderPrimary}; background: ${colors.colorWhite}; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; + + ${Container} { + box-shadow: none; + border-radius: 0; + background: ${colors.colorWhite}; + border-bottom: 1px solid ${colors.borderPrimary}; + margin: 0; + } `; type Props = { + contendId?: string; title: string; children: React.ReactNode; + description?: React.ReactNode; open?: boolean; compact?: boolean; + image?: string; + beforeTitle?: React.ReactNode; + onClick?: () => void; + imageBackground?: string; }; function CollapseContent(props: Props) { const [open, toggleCollapse] = useState(props.open || false); - const onClick = () => toggleCollapse(!open); + const onClick = () => { + toggleCollapse(!open); + if (props.onClick) { + props.onClick(); + } + }; + const hasImage = props.image ? true : false; return ( - - <h4>{props.title}</h4> - <Icon icon="angle-down" /> + <Title + href={props.contendId && `#${props.contendId}`} + id={props.contendId} + onClick={onClick} + compact={props.compact} + hasImage={hasImage} + background={props.imageBackground} + > + <Left> + {props.beforeTitle} + <div> + <h4>{props.title}</h4> + {props.description} + </div> + </Left> + {hasImage ? ( + <img alt="heading" src={props.image} /> + ) : ( + <Icon icon="angle-down" /> + )}
- {props.children} + {props.children}
diff --git a/ui/src/modules/common/components/CommonPortal.tsx b/ui/src/modules/common/components/CommonPortal.tsx new file mode 100644 index 00000000000..de0e6df1a35 --- /dev/null +++ b/ui/src/modules/common/components/CommonPortal.tsx @@ -0,0 +1,26 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; + +class CommonPortal extends React.Component<{ children: React.ReactNode }> { + private el; + + constructor(props) { + super(props); + + this.el = document.createElement('div'); + } + + componentDidMount() { + document.body.appendChild(this.el); + } + + componentWillUnmount() { + document.body.removeChild(this.el); + } + + render() { + return ReactDOM.createPortal(this.props.children, this.el); + } +} + +export default CommonPortal; diff --git a/ui/src/modules/common/components/ConfirmDialog.tsx b/ui/src/modules/common/components/ConfirmDialog.tsx index 63ae697dd5f..6803b79a59f 100644 --- a/ui/src/modules/common/components/ConfirmDialog.tsx +++ b/ui/src/modules/common/components/ConfirmDialog.tsx @@ -1,3 +1,4 @@ +import { __ } from 'modules/common/utils'; import React from 'react'; import Modal from 'react-bootstrap/Modal'; import styled from 'styled-components'; @@ -75,15 +76,13 @@ class ConfirmDialog extends React.Component { } render() { - const { - confirmation = 'Are you sure? This cannot be undone.' - } = this.props; + const { confirmation = 'Are you sure?', options = {} } = this.props; const { okLabel = 'Yes, I am', cancelLabel = 'No, Cancel', enableEscape = true - } = this.props.options || {}; + } = options; return ( { - {confirmation} + {__(confirmation)} ); - }; - - render() { - return this.renderInput(); } } diff --git a/ui/src/modules/common/components/ProgressBar.tsx b/ui/src/modules/common/components/ProgressBar.tsx index f663ea08b7c..42216355731 100644 --- a/ui/src/modules/common/components/ProgressBar.tsx +++ b/ui/src/modules/common/components/ProgressBar.tsx @@ -13,7 +13,7 @@ const ContentContainer = styled.div` const Wrapper = styledTS<{ height?: string }>(styled.div)` position: relative; - padding: 8px 30px; + padding: 0px 30px; background: ${colors.bgMain}; width: 100%; height: ${props => (props.height ? props.height : '36px')}; diff --git a/ui/src/modules/common/components/Tags.tsx b/ui/src/modules/common/components/Tags.tsx index bca0c6ef904..f8c97d98641 100755 --- a/ui/src/modules/common/components/Tags.tsx +++ b/ui/src/modules/common/components/Tags.tsx @@ -28,20 +28,15 @@ function Tags({ tags, limit }: Props) { return ( - {tags.slice(0, limit ? limit : length).map(tag => ( - - ))} + {tags.slice(0, limit ? limit : length).map(tag => { + return ( + + ); + })} {limit && length - limit > 0 && ( -