diff --git a/.gitignore b/.gitignore index 0d037278214..3200b78feb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,30 @@ -/vendor -/resources/vendor +.scannerwork/ /node_modules -/public/storage /persist -Homestead.yaml -Homestead.json -.env -cypress.env.json +/public/css +/public/fonts +/public/hot +/public/js +/public/storage +/public/mix-manifest.json +/resources/vendor +/results /storage/oauth-private.key /storage/oauth-public.key -.DS_Store -npm-debug.log* -/results -.deploy.json -yarn-error.log /tests/cypress/screenshots /tests/cypress/videos -php-extensions-*.tar.bz2 -monicadump.sql -.scannerwork/ -.phpunit.result.cache +/vendor .composer +.env +.deploy.json +.DS_Store .idea +.phpunit.result.cache +.sentry-release +cypress.env.json +Homestead.yaml +Homestead.json +monicadump.sql +npm-debug.log* +php-extensions-*.tar.bz2 +yarn-error.log diff --git a/app.json b/app.json index eabc43a2480..fc8906863e8 100644 --- a/app.json +++ b/app.json @@ -10,6 +10,14 @@ "relationship", "PRM" ], + "buildpacks": [ + { + "url": "heroku/php" + }, + { + "url": "heroku/nodejs" + } + ], "addons": [ { "plan": "jawsdb:kitefin" @@ -23,7 +31,7 @@ }, "env": { "APP_KEY": { - "description": "Please change this to a 32-character string. For example run `pwgen -s 32 1` and copy/paste the value.", + "description": "Please change this to a 32-character string. For example run `echo -n 'base64:'; openssl rand -base64 32` and copy/paste the value.", "value": "change-me-to-a-random-string----" }, "APP_URL": { diff --git a/docs/installation/providers/cpanel.md b/docs/installation/providers/cpanel.md index 9539da95193..916ddb8b13f 100644 --- a/docs/installation/providers/cpanel.md +++ b/docs/installation/providers/cpanel.md @@ -71,6 +71,9 @@ You should check out a tagged version of Monica since `master` branch may not al ```sh cd /var/www/monica +# Get latest tags from GitHub +git fetch +# Clone the desired version git checkout tags/v2.18.0 ``` @@ -97,8 +100,9 @@ Open the cPanel file manager and navigate to the directory in which you want to - set the `APP_ENV` variable to `production`, `local` is only used for the development version. Beware: setting `APP_ENV` to `production` will force HTTPS. Skip this if you're running Monica locally. 3. Log into the cPanel server via SSH and navigate to the directory in which you want to install Monica. 4. Run `composer install --no-interaction --no-dev` to install all packages. -5. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. -6. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. +5. Run `yarn install` to install frontend packages, then `yarn run production` to build the assets (js, css). +6. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. +7. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. The `setup:production` command will run migrations scripts for database, and flush all cache for config, route, and view, as an optimization process. As the configuration of the application is cached, any update on the `.env` file will not be detected after that. You may have to run `php artisan config:cache` manually after every update of `.env` file. diff --git a/docs/installation/providers/debian.md b/docs/installation/providers/debian.md index 39dad9ce2b9..9467d6e3f2f 100644 --- a/docs/installation/providers/debian.md +++ b/docs/installation/providers/debian.md @@ -21,6 +21,8 @@ Monica depends on the following: - [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) - PHP 7.4+ - [Composer](https://getcomposer.org/) +- [Node.js](https://nodejs.org) +- [Yarn](https://yarnpkg.com) - MySQL / MariaDB An editor like vim or nano should be useful too. @@ -53,6 +55,19 @@ sudo apt install -y php php-bcmath php-curl php-gd php-gmp php-imagick \ sudo apt install -y composer ``` +**Node.js:** Install node.js with package manager. + +```sh +curl -fsSL https://deb.nodesource.com/setup_14.x | sudo bash - +sudo apt install -y nodejs +``` + +**Yarn:** Install yarn with npm. + +```sh +sudo npm install --global yarn +``` + **MariaDB:** Install MariaDB. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions: ```sh @@ -77,8 +92,10 @@ Find the latest official version on the [release page](https://github.com/monica ```sh cd /var/www/monica +# Get latest tags from GitHub +sudo git fetch # Clone the desired version -sudo git checkout tags/v1.6.2 +sudo git checkout tags/v2.18.0 ``` ### 2. Setup the database @@ -125,16 +142,17 @@ exit `cd /var/www/monica` then run these steps with `sudo`: 1. `cp .env.example .env` to create your own version of all the environment variables needed for the project to work. -1. Update `.env` to your specific needs +2. Update `.env` to your specific needs - set `DB_USERNAME` and `DB_PASSWORD` with the settings used behind. - configure a [mailserver](/docs/installation/mail.md) for registration & reminders to work correctly. - set the `APP_ENV` variable to `production`, `local` is only used for the development version. Beware: setting `APP_ENV` to `production` will force HTTPS. Skip this if you're running Monica locally. -1. Run `composer install --no-interaction --no-dev` to install all packages. -1. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. -1. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. +3. Run `composer install --no-interaction --no-dev` to install all packages. +4. Run `yarn install` to install frontend packages, then `yarn run production` to build the assets (js, css). +5. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. +6. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. - You can use `email` and `password` parameter to setup a first account directly: `php artisan setup:production --email=your@email.com --password=yourpassword -v` -1. _Optional_: Setup the queues with Redis, Beanstalk or Amazon SQS: see optional instruction of [generic installation](generic.md#setup-queues) -1. _Optional_: Setup the access tokens to use the API follow optional instruction of [generic installation](generic.md#setup-access-tokens) +7. _Optional_: Setup the queues with Redis, Beanstalk or Amazon SQS: see optional instruction of [generic installation](generic.md#setup-queues) +8. _Optional_: Setup the access tokens to use the API follow optional instruction of [generic installation](generic.md#setup-access-tokens) ### 4. Configure cron job diff --git a/docs/installation/providers/generic.md b/docs/installation/providers/generic.md index 96bee0ccf26..d97fda943e4 100644 --- a/docs/installation/providers/generic.md +++ b/docs/installation/providers/generic.md @@ -22,6 +22,8 @@ If you don't want to use Docker, the best way to setup the project is to use the - [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) - PHP 7.4+ - [Composer](https://getcomposer.org/) +- [Node.js](https://nodejs.org) +- [Yarn](https://yarnpkg.com) - [MySQL](https://www.mysql.com/) - Optional: Redis or Beanstalk @@ -55,6 +57,15 @@ php composer-setup.php --install-dir=/usr/local/bin/ --filename=composer php -r "unlink('composer-setup.php');" ``` +**Node.js:** Install node.js 14+ minimum + + +**Yarn:** Install yarn using npm + +```sh +npm install --global yarn +``` + **Mysql:** Install Mysql 5.7+ ### Types of databases @@ -78,6 +89,9 @@ You should check out a tagged version of Monica since `master` branch may not al ```sh cd /var/www/monica +# Get latest tags from GitHub +git fetch +# Clone the desired version git checkout tags/v2.18.0 ``` @@ -130,8 +144,9 @@ exit - configure a [mailserver](/docs/installation/mail.md) for registration & reminders to work correctly. - set the `APP_ENV` variable to `production`, `local` is only used for the development version. Beware: setting `APP_ENV` to `production` will force HTTPS. Skip this if you're running Monica locally. 3. Run `composer install --no-interaction --no-dev` to install all packages. -4. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. -5. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. +4. Run `yarn install` to install frontend packages, then `yarn run production` to build the assets (js, css). +5. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. +6. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. The `setup:production` command will run migrations scripts for database, and flush all cache for config, route, and view, as an optimization process. As the configuration of the application is cached, any update on the `.env` file will not be detected after that. You may have to run `php artisan config:cache` manually after every update of `.env` file. diff --git a/docs/installation/providers/heroku.md b/docs/installation/providers/heroku.md index 3d20cda143d..9a1f866fb02 100644 --- a/docs/installation/providers/heroku.md +++ b/docs/installation/providers/heroku.md @@ -10,6 +10,7 @@ Monica can be deployed on Heroku using the button below: - [Optional: Generate a Password grant client for OAuth access](#optional-generate-a-password-grant-client-for-oauth-access) - [Limitations](#limitations) - [Updating Heroku instance](#updating-heroku-instance) +- [Update from 2.x to 3.x](#update-from-2x-to-3x) ## Installation @@ -126,3 +127,11 @@ You can update your Monica instance to the latest version by cloning the reposit Clone the Monica repository to your local environment by `git clone https://github.com/monicahq/monica`, and add heroku git repository by `heroku git:remote -a (heroku app name)`. Then, push to heroku by `git push heroku master`. Heroku will build and update the repository, automatically. See more information about updating Monica (including Heroku-spcific things) [here](https://github.com/monicahq/monica/blob/master/docs/installation/update.md). + + +## Update from 2.x to 3.x + +If you already deployed a 2.x Monica instance, when you will upgrade to 3.x, you will have to manually add `node.js` as a buildpack: +- Go to `Settings` +- Under `Buildpacks`, add a new buildpack, and select `nodejs` + - `heroku/nodejs` will be selected automatically diff --git a/docs/installation/providers/ubuntu.md b/docs/installation/providers/ubuntu.md index 9684971d804..fe7c818fb76 100644 --- a/docs/installation/providers/ubuntu.md +++ b/docs/installation/providers/ubuntu.md @@ -22,6 +22,8 @@ Monica depends on the following: - [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) - PHP 7.4+ - [Composer](https://getcomposer.org/) +- [Node.js](https://nodejs.org) +- [Yarn](https://yarnpkg.com) - [MySQL](https://support.rackspace.com/how-to/installing-mysql-server-on-ubuntu/) **Apache:** If it doesn't come pre-installed with your server, follow the [instructions here](https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-16-04#step-1-install-apache-and-allow-in-firewall) to setup Apache and config the firewall. @@ -53,9 +55,9 @@ Then install php 7.4 with these extensions: ```sh sudo apt update -sudo apt install -y php7.4 php7.4-bcmath php7.4-cli php7.4-curl php7.4-common php7.4-fpm \ - php7.4-gd php7.4-gmp php7.4-imagick php7.4-intl php7.4-json php7.4-mbstring \ - php7.4-mysql php7.4-opcache php7.4-redis php7.4-xml php7.4-zip +sudo apt install -y php7.4 php7.4-bcmath php7.4-cli php7.4-curl php7.4-common \ + php7.4-fpm php7.4-gd php7.4-gmp php7.4-imagick php7.4-intl php7.4-json \ + php7.4-mbstring php7.4-mysql php7.4-opcache php7.4-redis php7.4-xml php7.4-zip ``` **Composer:** After you're done installing PHP, you'll need the [Composer](https://getcomposer.org/download/) dependency manager. @@ -69,6 +71,19 @@ rm -f composer-setup.php (or you can follow instruction on [getcomposer.org](https://getcomposer.org/download/) page) +**Node.js:** Install node.js with package manager. + +```sh +curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash - +sudo apt install -y nodejs +``` + +**Yarn:** Install yarn with npm. + +```sh +sudo npm install --global yarn +``` + **Mysql:** Install Mysql 5.7. Note that this only installs the package, but does not setup Mysql. This is done later in the instructions: ```sh @@ -97,7 +112,10 @@ You should check out a tagged version of Monica since `master` branch may not al ```sh cd /var/www/monica -git checkout tags/v2.2.1 +# Get latest tags from GitHub +git fetch +# Clone the desired version +git checkout tags/v2.18.0 ``` ### 2. Setup the database @@ -138,16 +156,17 @@ exit `cd /var/www/monica` then run these steps: 1. `cp .env.example .env` to create your own version of all the environment variables needed for the project to work. -1. Update `.env` to your specific needs +2. Update `.env` to your specific needs - set `DB_USERNAME` and `DB_PASSWORD` with the settings used behind. - configure a [mailserver](/docs/installation/mail.md) for registration & reminders to work correctly. - set the `APP_ENV` variable to `production`, `local` is only used for the development version. Beware: setting `APP_ENV` to `production` will force HTTPS. Skip this if you're running Monica locally. -1. Run `composer install --no-interaction --no-dev` to install all packages. -1. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. -1. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. +3. Run `composer install --no-interaction --no-dev` to install all packages. +4. Run `yarn install` to install frontend packages, then `yarn run production` to build the assets (js, css). +5. Run `php artisan key:generate` to generate an application key. This will set `APP_KEY` with the right value automatically. +6. Run `php artisan setup:production -v` to run the migrations, seed the database and symlink folders. - You can use `email` and `password` parameter to setup a first account directly: `php artisan setup:production --email=your@email.com --password=yourpassword -v` -1. _Optional_: Setup the queues with Redis, Beanstalk or Amazon SQS: see optional instruction of [generic installation](generic.md#setup-queues) -1. _Optional_: Setup the access tokens to use the API follow optional instruction of [generic installation](generic.md#setup-access-tokens) +7. _Optional_: Setup the queues with Redis, Beanstalk or Amazon SQS: see optional instruction of [generic installation](generic.md#setup-queues) +8. _Optional_: Setup the access tokens to use the API follow optional instruction of [generic installation](generic.md#setup-access-tokens) ### 4. Configure cron job diff --git a/docs/installation/update.md b/docs/installation/update.md index ad18332cc14..0d65b714e5c 100644 --- a/docs/installation/update.md +++ b/docs/installation/update.md @@ -14,26 +14,27 @@ Monica uses the concept of releases and tries to follow or if you have installed Monica on your own server, you need to follow the steps below to update it, **every single time**, or you will run into problems. 1. Always make a backup of your data before upgrading. -1. Check that your backup is valid. -1. Read the [release notes](https://github.com/monicahq/monica/blob/master/CHANGELOG.md) to check for breaking changes. -1. Update sources: +2. Check that your backup is valid. +3. Read the [release notes](https://github.com/monicahq/monica/blob/master/CHANGELOG.md) to check for breaking changes. +4. Update sources: 1. Consider check out a tagged version of Monica since `master` branch may not always be stable. Find the latest official version on the [release page](https://github.com/monicahq/monica/releases) ```sh # Get latest tags from GitHub git fetch # Clone the desired version - git checkout tags/v1.6.2 + git checkout tags/v2.18.0 ``` - 1. Or check out `master` + 2. Or check out `master` ```sh git pull origin master ``` -1. Update the dependencies of the project: +5. Update the dependencies of the project: ```sh composer install --no-interaction --no-dev ``` -1. Then, run the following command to make the proper update: +6. Run `yarn install` to install frontend packages, then `yarn run production` to build the assets (js, css). +7. Then, run the following command to make the proper update: ```sh php artisan monica:update --force ``` diff --git a/package.json b/package.json index d38d561dc3a..eb80fcdf48f 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "prod": "yarn production", "production": "mix --production", "preproduction": "php artisan lang:generate -vvv", + "heroku-postbuild": "yarn run production", "e2e": "cypress run", "e2e:chrome": "cypress run --browser chrome", "e2e:record": "cypress run --record", @@ -19,12 +20,12 @@ "inst": "yarn install --frozen-lockfile", "lint": "eslint --ext .js,.vue *.js .*.js resources/js/", "lint:cypress": "eslint --ext .js tests/cypress/", - "lint:all": "yarn lint & yarn lint:cypress", - "lint:fix": "yarn lint --fix & yarn lint:cypress --fix", + "lint:all": "yarn run lint & yarn run lint:cypress", + "lint:fix": "yarn run lint --fix & yarn run lint:cypress --fix", "snyk-protect": "snyk protect", "prepublish": "yarn run snyk-protect", "delete:reports": "rm results/cypress/* || true", - "pree2e": "npm run delete:reports", + "pree2e": "yarn run delete:reports", "migrate": "DB_CONNECTION=testing php artisan migrate:fresh && DB_CONNECTION=testing php artisan db:seed", "pretest": "yarn run migrate", "test": "vendor/bin/phpunit", diff --git a/public/css/app-ltr.css b/public/css/app-ltr.css deleted file mode 100644 index 638a87fc869..00000000000 --- a/public/css/app-ltr.css +++ /dev/null @@ -1,29 +0,0 @@ -.rtl{direction:rtl}.vdp-datepicker{position:relative;text-align:left}.vdp-datepicker *{box-sizing:border-box}.vdp-datepicker__calendar{position:absolute;z-index:100;background:#fff;width:300px;border:1px solid #ccc}.vdp-datepicker__calendar header{display:block;line-height:40px}.vdp-datepicker__calendar header span{display:inline-block;text-align:center;width:71.42857142857143%;float:left}.vdp-datepicker__calendar header .next,.vdp-datepicker__calendar header .prev{width:14.285714285714286%;float:left;text-indent:-10000px;position:relative}.vdp-datepicker__calendar header .next:after,.vdp-datepicker__calendar header .prev:after{content:"";position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);border:6px solid transparent}.vdp-datepicker__calendar header .prev:after{border-right:10px solid #000;margin-left:-5px}.vdp-datepicker__calendar header .prev.disabled:after{border-right:10px solid #ddd}.vdp-datepicker__calendar header .next:after{border-left:10px solid #000;margin-left:5px}.vdp-datepicker__calendar header .next.disabled:after{border-left:10px solid #ddd}.vdp-datepicker__calendar header .next:not(.disabled),.vdp-datepicker__calendar header .prev:not(.disabled),.vdp-datepicker__calendar header .up:not(.disabled){cursor:pointer}.vdp-datepicker__calendar header .next:not(.disabled):hover,.vdp-datepicker__calendar header .prev:not(.disabled):hover,.vdp-datepicker__calendar header .up:not(.disabled):hover{background:#eee}.vdp-datepicker__calendar .disabled{color:#ddd;cursor:default}.vdp-datepicker__calendar .flex-rtl{display:flex;width:inherit;flex-wrap:wrap}.vdp-datepicker__calendar .cell{display:inline-block;padding:0 5px;width:14.285714285714286%;height:40px;line-height:40px;text-align:center;vertical-align:middle;border:1px solid transparent}.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year{cursor:pointer}.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month:hover,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year:hover{border:1px solid #4bd}.vdp-datepicker__calendar .cell.selected,.vdp-datepicker__calendar .cell.selected.highlighted,.vdp-datepicker__calendar .cell.selected:hover{background:#4bd}.vdp-datepicker__calendar .cell.highlighted{background:#cae5ed}.vdp-datepicker__calendar .cell.highlighted.disabled{color:#a3a3a3}.vdp-datepicker__calendar .cell.grey{color:#888}.vdp-datepicker__calendar .cell.grey:hover{background:inherit}.vdp-datepicker__calendar .cell.day-header{font-size:75%;white-space:nowrap;cursor:inherit}.vdp-datepicker__calendar .cell.day-header:hover{background:inherit}.vdp-datepicker__calendar .month,.vdp-datepicker__calendar .year{width:33.333%}.vdp-datepicker__calendar-button,.vdp-datepicker__clear-button{cursor:pointer;font-style:normal}.vdp-datepicker__calendar-button.disabled,.vdp-datepicker__clear-button.disabled{color:#999;cursor:default} -.vgt-table.striped tbody tr:nth-of-type(odd){background-color:rgba(51,68,109,.03)}.vgt-right-align{text-align:right}.vgt-left-align{text-align:left}.vgt-center-align{text-align:center}.vgt-pull-left{float:left!important}.vgt-pull-right{float:right!important}.vgt-clearfix:after{display:block;content:"";clear:both}.vgt-responsive{width:100%;overflow-x:auto;position:relative}.vgt-text-disabled{color:#909399}.sr-only{clip:rect(0 0 0 0);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}.vgt-wrap{position:relative}.vgt-fixed-header{position:absolute;z-index:10;overflow-x:auto}table.vgt-table{font-size:16px;border-collapse:collapse;background-color:#fff;width:100%;max-width:100%;table-layout:auto;border:1px solid #dcdfe6}table.vgt-table td{padding:.75em;vertical-align:top;border-bottom:1px solid #dcdfe6;color:#606266}table.vgt-table tr.clickable{cursor:pointer}table.vgt-table tr.clickable:hover{background-color:#f1f5fd}.vgt-table th{padding:.75em 1.5em .75em .75em;vertical-align:middle;position:relative}.vgt-table th.sortable button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;position:absolute;top:0;left:0;width:100%;height:100%}.vgt-table th.sortable button:focus{outline:0}.vgt-table th.sortable button:after{margin-top:-7px;border-bottom:5px solid #606266}.vgt-table th.sortable button:after,.vgt-table th.sortable button:before{content:"";position:absolute;height:0;width:0;right:6px;top:50%;border-left:5px solid transparent;border-right:5px solid transparent}.vgt-table th.sortable button:before{margin-bottom:-7px;border-top:5px solid #606266}.vgt-table th.line-numbers,.vgt-table th.vgt-checkbox-col{padding:0 .75em;color:#606266;border-right:1px solid #dcdfe6;word-wrap:break-word;width:25px;text-align:center;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-table th.filter-th{padding:.75em}.vgt-table th.vgt-row-header{border-bottom:2px solid #dcdfe6;border-top:2px solid #dcdfe6;background-color:#fafafb}.vgt-table th.vgt-row-header .triangle{width:24px;height:24px;border-radius:15%;position:relative;margin:0 8px}.vgt-table th.vgt-row-header .triangle:after{content:"";position:absolute;display:block;left:50%;top:50%;margin-top:-6px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:6px solid #606266;margin-left:-3px;transition:transform .3s ease}.vgt-table th.vgt-row-header .triangle.expand:after{transform:rotate(90deg)}.vgt-table thead th{color:#606266;vertical-align:bottom;border-bottom:1px solid #dcdfe6;padding-right:1.5em;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-table thead th.vgt-checkbox-col{vertical-align:middle}.vgt-table thead th.sorting-asc button:after{border-bottom:5px solid #409eff}.vgt-table thead th.sorting-desc button:before{border-top:5px solid #409eff}.vgt-input,.vgt-select{width:100%;height:32px;line-height:1;display:block;font-size:14px;font-weight:400;padding:6px 12px;color:#606266;border-radius:4px;box-sizing:border-box;background-image:none;background-color:#fff;border:1px solid #dcdfe6;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.vgt-input::-moz-placeholder, .vgt-select::-moz-placeholder{color:#606266;opacity:.3}.vgt-input:-ms-input-placeholder, .vgt-select:-ms-input-placeholder{color:#606266;opacity:.3}.vgt-input::placeholder,.vgt-select::placeholder{color:#606266;opacity:.3}.vgt-input:focus,.vgt-select:focus{outline:0;border-color:#409eff}.vgt-loading{position:absolute;width:100%;z-index:10;margin-top:117px}.vgt-loading__content{background-color:#c0dfff;color:#409eff;padding:7px 30px;border-radius:3px}.vgt-inner-wrap.is-loading{opacity:.5;pointer-events:none}.vgt-table.bordered td,.vgt-table.bordered th{border:1px solid #dcdfe6}.vgt-table.bordered th.vgt-row-header{border-bottom:3px solid #dcdfe6}.vgt-wrap.rtl{direction:rtl}.vgt-wrap.rtl .vgt-table.condensed thead th,.vgt-wrap.rtl .vgt-table thead th{padding-left:1.5em;padding-right:.75em}.vgt-wrap.rtl .vgt-table th.sorting-asc:after,.vgt-wrap.rtl .vgt-table th.sorting:after{margin-right:5px;margin-left:0}.vgt-wrap.rtl .vgt-table th.sortable:after,.vgt-wrap.rtl .vgt-table th.sortable:before{right:inherit;left:6px}.vgt-table.condensed td,.vgt-table.condensed th.vgt-row-header{padding:.4em}@media (max-width:576px){.vgt-compact *{box-sizing:border-box}.vgt-compact tbody,.vgt-compact td,.vgt-compact tr{display:block;width:100%}.vgt-compact thead{display:none}.vgt-compact tr{margin-bottom:15px}.vgt-compact td{text-align:right;position:relative}.vgt-compact td:before{content:attr(data-label);position:relative;float:left;left:0;width:40%;padding-left:10px;font-weight:700;text-align:left}.vgt-compact th.line-numbers{width:100%!important;display:block;padding:.3em 1em!important}}.vgt-global-search{padding:5px 0;display:flex;flex-wrap:nowrap;align-items:stretch;border:1px solid #dcdfe6;border-bottom:0;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-global-search form{display:flex}.vgt-global-search form label{margin-top:3px}.vgt-global-search__input{position:relative;padding-left:40px;flex-grow:1}.vgt-global-search__input .input__icon{position:absolute;left:0;max-width:32px}.vgt-global-search__input .input__icon .magnifying-glass{margin-top:3px;margin-left:8px;display:block;width:16px;height:16px;border:2px solid #494949;position:relative;border-radius:50%}.vgt-global-search__input .input__icon .magnifying-glass:before{content:"";display:block;position:absolute;right:-7px;bottom:-5px;background:#494949;width:8px;height:4px;border-radius:2px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg)}.vgt-global-search__actions{margin-left:10px}.vgt-selection-info-row{background:#fdf9e8;padding:5px 16px;font-size:13px;border-top:1px solid #dcdfe6;border-left:1px solid #dcdfe6;border-right:1px solid #dcdfe6;color:#d3aa3b;font-weight:700}.vgt-selection-info-row a{font-weight:700;display:inline-block;margin-left:10px}.vgt-wrap__actions-footer,.vgt-wrap__footer{border:1px solid #dcdfe6}.vgt-wrap__footer{color:#606266;font-size:1.1rem;padding:1em;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap__footer .footer__row-count__label,.vgt-wrap__footer .footer__row-count__select{display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__row-count__label{font-size:1.1rem}.vgt-wrap__footer .footer__row-count__select{font-size:1.1rem;background-color:transparent;width:auto;border:0;border-radius:0;height:auto;margin-left:8px;color:#606266;font-weight:700;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0 15px 0 5px}.vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap__footer .footer__row-count__select:focus{outline:0;border-color:#409eff}.vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border:6px solid transparent;border-top-color:#606266;border-bottom:none;pointer-events:none}.vgt-wrap__footer .footer__navigation{font-size:1.1rem}.vgt-wrap__footer .footer__navigation>button:first-of-type{margin-right:16px}.vgt-wrap__footer .footer__navigation__info,.vgt-wrap__footer .footer__navigation__page-btn,.vgt-wrap__footer .footer__navigation__page-info{display:inline-block;vertical-align:middle;color:#909399}.vgt-wrap__footer .footer__navigation__page-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;text-decoration:none;color:#606266;font-weight:700;white-space:nowrap;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-btn:hover{cursor:pointer}.vgt-wrap__footer .footer__navigation__page-btn.disabled,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover{opacity:.5;cursor:not-allowed}.vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#606266}.vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#606266}.vgt-wrap__footer .footer__navigation__page-btn span{display:inline-block;vertical-align:middle;font-size:1.1rem}.vgt-wrap__footer .footer__navigation__page-btn .chevron{width:24px;height:24px;border-radius:15%;position:relative;margin:0;display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-btn .chevron:after{content:"";position:absolute;display:block;left:50%;top:50%;margin-top:-6px;border-top:6px solid transparent;border-bottom:6px solid transparent}.vgt-wrap__footer .footer__navigation__page-btn .chevron.left:after{border-right:6px solid #409eff;margin-left:-3px}.vgt-wrap__footer .footer__navigation__page-btn .chevron.right:after{border-left:6px solid #409eff;margin-left:-3px}.vgt-wrap__footer .footer__navigation__info,.vgt-wrap__footer .footer__navigation__page-info{display:inline-block;margin:0 16px}.vgt-wrap__footer .footer__navigation__page-info span{display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-info__current-entry{width:30px;text-align:center;vertical-align:middle;display:inline-block;margin:0 10px;font-weight:700}@media only screen and (max-width:750px){.vgt-wrap__footer .footer__navigation__info{display:none}.vgt-wrap__footer .footer__navigation__page-btn{margin-left:16px}}.vgt-table.nocturnal{border:1px solid #435169;background-color:#324057}.vgt-table.nocturnal tr.clickable:hover{background-color:#445168}.vgt-table.nocturnal td{border-bottom:1px solid #435169;color:#c7ced8}.vgt-table.nocturnal th.line-numbers,.vgt-table.nocturnal th.vgt-checkbox-col{color:#c7ced8;border-right:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-table.nocturnal thead th{color:#c7ced8;border-bottom:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-table.nocturnal thead th.sortable:before{border-top-color:#3e5170}.vgt-table.nocturnal thead th.sortable:after{border-bottom-color:#3e5170}.vgt-table.nocturnal thead th.sortable.sorting-asc{color:#fff}.vgt-table.nocturnal thead th.sortable.sorting-asc:after{border-bottom-color:#409eff}.vgt-table.nocturnal thead th.sortable.sorting-desc{color:#fff}.vgt-table.nocturnal thead th.sortable.sorting-desc:before{border-top-color:#409eff}.vgt-table.nocturnal.bordered td,.vgt-table.nocturnal.bordered th{border:1px solid #435169}.vgt-table.nocturnal .vgt-input,.vgt-table.nocturnal .vgt-select{color:#c7ced8;background-color:#232d3f;border:1px solid #435169}.vgt-table.nocturnal .vgt-input::-moz-placeholder, .vgt-table.nocturnal .vgt-select::-moz-placeholder{color:#c7ced8;opacity:.3}.vgt-table.nocturnal .vgt-input:-ms-input-placeholder, .vgt-table.nocturnal .vgt-select:-ms-input-placeholder{color:#c7ced8;opacity:.3}.vgt-table.nocturnal .vgt-input::placeholder,.vgt-table.nocturnal .vgt-select::placeholder{color:#c7ced8;opacity:.3}.vgt-wrap.nocturnal .vgt-wrap__footer{color:#c7ced8;border:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count{position:relative}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__label{color:#8290a7}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__select{color:#c7ced8;background:#232d3f;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:15px;padding-left:10px;border-radius:3px;text-align:center}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__select:focus{border-color:#409eff}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border:6px solid transparent;border-top-color:#c7ced8;border-bottom:none;pointer-events:none}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn{color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-info{color:#8290a7}.vgt-wrap.nocturnal .vgt-global-search{border:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-wrap.nocturnal .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #3f4c63}.vgt-wrap.nocturnal .vgt-global-search__input .input__icon .magnifying-glass:before{background:#3f4c63}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input,.vgt-wrap.nocturnal .vgt-global-search__input .vgt-select{color:#c7ced8;background-color:#232d3f;border:1px solid #435169}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input::-moz-placeholder, .vgt-wrap.nocturnal .vgt-global-search__input .vgt-select::-moz-placeholder{color:#c7ced8;opacity:.3}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input:-ms-input-placeholder, .vgt-wrap.nocturnal .vgt-global-search__input .vgt-select:-ms-input-placeholder{color:#c7ced8;opacity:.3}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.nocturnal .vgt-global-search__input .vgt-select::placeholder{color:#c7ced8;opacity:.3}.vgt-table.black-rhino{border:1px solid #435169;background-color:#dfe5ee}.vgt-table.black-rhino tr.clickable:hover{background-color:#fff}.vgt-table.black-rhino td{border-bottom:1px solid #bbc5d6;color:#49515e}.vgt-table.black-rhino th.line-numbers,.vgt-table.black-rhino th.vgt-checkbox-col{color:#dae2f0;border-right:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-table.black-rhino thead th{color:#dae2f0;text-shadow:1px 1px #3e5170;border-bottom:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-table.black-rhino thead th.sortable:before{border-top-color:#607498}.vgt-table.black-rhino thead th.sortable:after{border-bottom-color:#607498}.vgt-table.black-rhino thead th.sortable.sorting-asc{color:#fff}.vgt-table.black-rhino thead th.sortable.sorting-asc:after{border-bottom-color:#409eff}.vgt-table.black-rhino thead th.sortable.sorting-desc:before{border-top-color:#409eff}.vgt-table.black-rhino.bordered td{border:1px solid #bbc5d6}.vgt-table.black-rhino.bordered th{border:1px solid #435169}.vgt-table.black-rhino .vgt-input,.vgt-table.black-rhino .vgt-select{color:#dae2f0;background-color:#34445f;border:1px solid transparent}.vgt-table.black-rhino .vgt-input::-moz-placeholder, .vgt-table.black-rhino .vgt-select::-moz-placeholder{color:#dae2f0;opacity:.3}.vgt-table.black-rhino .vgt-input:-ms-input-placeholder, .vgt-table.black-rhino .vgt-select:-ms-input-placeholder{color:#dae2f0;opacity:.3}.vgt-table.black-rhino .vgt-input::placeholder,.vgt-table.black-rhino .vgt-select::placeholder{color:#dae2f0;opacity:.3}.vgt-wrap.black-rhino .vgt-wrap__footer{color:#dae2f0;border:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__label{color:#98a5b9}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select{color:#49515e;background:#34445f;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:15px;padding-left:5px;border-radius:3px}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select:focus{border-color:#409eff}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border:6px solid transparent;border-top-color:#49515e;border-bottom:none;pointer-events:none}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn{color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-info{color:#dae2f0}.vgt-wrap.black-rhino .vgt-global-search{border:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-wrap.black-rhino .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #3f4c63}.vgt-wrap.black-rhino .vgt-global-search__input .input__icon .magnifying-glass:before{background:#3f4c63}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input,.vgt-wrap.black-rhino .vgt-global-search__input .vgt-select{color:#dae2f0;background-color:#44516c;border:1px solid transparent}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input::-moz-placeholder, .vgt-wrap.black-rhino .vgt-global-search__input .vgt-select::-moz-placeholder{color:#dae2f0;opacity:.3}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input:-ms-input-placeholder, .vgt-wrap.black-rhino .vgt-global-search__input .vgt-select:-ms-input-placeholder{color:#dae2f0;opacity:.3}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.black-rhino .vgt-global-search__input .vgt-select::placeholder{color:#dae2f0;opacity:.3}.vgt-inner-wrap{border-radius:.25rem;box-shadow:0 1px 3px 0 rgba(50,50,93,.1),0 1px 2px 0 rgba(50,50,93,.06)}.vgt-table.polar-bear{border-spacing:0;border-collapse:separate;font-size:1rem;background-color:#fff;border:1px solid #e3e8ee;border-bottom:none;border-radius:.25rem}.vgt-table.polar-bear td{padding:1em .75em;border-bottom:1px solid #e4ebf3;color:#525f7f}.vgt-table.polar-bear td.vgt-right-align{text-align:right}.vgt-table.polar-bear th.line-numbers,.vgt-table.polar-bear th.vgt-checkbox-col{color:#394567;border-right:1px solid #e3e8ee;background:#f7fafc}.vgt-table.polar-bear thead th{color:#667b94;font-weight:600;border-bottom:1px solid #e3e8ee;background:#f7fafc}.vgt-table.polar-bear thead th.sorting-asc,.vgt-table.polar-bear thead th.sorting-desc{color:#5e72e4}.vgt-table.polar-bear thead th.sorting-desc:before{border-top:5px solid #7485e8}.vgt-table.polar-bear thead th.sorting-asc:after{border-bottom:5px solid #7485e8}.vgt-table.polar-bear thead th .vgt-input,.vgt-table.polar-bear thead th .vgt-select{height:2.75em;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-table.polar-bear thead th .vgt-input:focus,.vgt-table.polar-bear thead th .vgt-select:focus{outline:0;border-color:#cae0fe}.vgt-table.polar-bear thead tr:first-child th:first-child{border-top-left-radius:.25rem}.vgt-table.polar-bear thead tr:first-child th:last-child{border-top-right-radius:.25rem}.vgt-table.polar-bear.bordered td{border:1px solid #e3e8ee;background:#fff}.vgt-table.polar-bear.bordered th{border:1px solid #e3e8ee}.vgt-wrap.polar-bear .vgt-wrap__footer{color:#394567;border:1px solid #e3e8ee;border-bottom:0;border-top:0;background:linear-gradient(#f7fafc,#f7fafc)}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__label{color:#98a5b9}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select{text-align:center;color:#525f7f;background:#fff;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:5px 30px 5px 5px;border-radius:3px;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select:focus{border-color:#5e72e4}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:15px;top:50%;margin-top:-3px;border:6px solid transparent;border-top-color:#525f7f;border-bottom:none;pointer-events:none}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn{color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-info{color:#394567}.vgt-wrap.polar-bear .vgt-global-search{border:1px solid #e3e8ee;border-bottom:0;border-top-left-radius:3px;border-top-right-radius:3px;background:#f7fafc}.vgt-wrap.polar-bear .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #dde3ea}.vgt-wrap.polar-bear .vgt-global-search__input .input__icon .magnifying-glass:before{background:#dde3ea}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input,.vgt-wrap.polar-bear .vgt-global-search__input .vgt-select{height:2.75em;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input::-moz-placeholder, .vgt-wrap.polar-bear .vgt-global-search__input .vgt-select::-moz-placeholder{color:#394567;opacity:.3}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input:-ms-input-placeholder, .vgt-wrap.polar-bear .vgt-global-search__input .vgt-select:-ms-input-placeholder{color:#394567;opacity:.3}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.polar-bear .vgt-global-search__input .vgt-select::placeholder{color:#394567;opacity:.3} -@charset "UTF-8";html{font-size:14px} - -/*! - * Bootstrap Reboot v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) - */*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;-webkit-tap-highlight-color:rgba(0,0,0,0)}footer,header,main,nav,section{display:block}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}h1,h2,h3,h4,h5{margin-top:0;margin-bottom:.5rem}p{margin-top:0}address,p{margin-bottom:1rem}address{font-style:normal;line-height:inherit}ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}a{color:#007bff;text-decoration:none}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-size:inherit;line-height:inherit}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}[type=search]{-webkit-appearance:none}output{display:inline-block}summary{cursor:pointer}template{display:none}[hidden]{display:none!important} - -/*! - * Bootstrap Grid v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,:after,:before{box-sizing:inherit}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.col-12,.col-md-3,.col-md-4,.col-md-6,.col-md-9,.col-md-auto,.col-sm-3,.col-sm-6,.col-sm-8,.col-sm-9{position:relative;width:100%;padding-right:15px;padding-left:15px}.col-12{flex:0 0 100%;max-width:100%}@media (min-width:576px){.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-9{flex:0 0 75%;max-width:75%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}}.flex-column{flex-direction:column!important}.flex-wrap{flex-wrap:wrap!important}.flex-grow-1{flex-grow:1!important}.mt-2{margin-top:.5rem!important}.mb-4{margin-bottom:1.5rem!important}.table{margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}}.dropdown{position:relative}.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,.15);border-radius:.25rem}.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:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.nav{flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.card,.nav{display:flex}.card{position:relative;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-link{font-weight:700}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.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:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}}@media print{*,:after,:before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}pre{white-space:pre-wrap!important;border:1px solid #adb5bd}img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:992px!important}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}} -/*! Hint.css - v2.6.0 - 2019-04-27 -* http://kushagragour.in/lab/hint/ -* Copyright (c) 2019 Kushagra Gour */ - -/*! TACHYONS v4.12.0 | http://tachyons.io */ -/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}b,strong{font-weight:bolder}code,kbd{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}details{display:block}summary{display:list-item}[hidden],template{display:none}a,body,code,dd,div,dt,fieldset,footer,form,h1,h2,h3,h4,h5,header,html,input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],li,main,nav,ol,p,pre,section,table,td,textarea,th,tr,ul{box-sizing:border-box}img{max-width:100%}.cover{background-size:cover!important}.contain{background-size:contain!important}.bg-center{background-position:50%;background-repeat:no-repeat}.outline-0{outline:0}.ba{border-style:solid;border-width:1px}.bt{border-top-style:solid;border-top-width:1px}.br{border-right-style:solid;border-right-width:1px}.bb{border-bottom-style:solid;border-bottom-width:1px}.bl{border-left-style:solid;border-left-width:1px}.b--moon-gray{border-color:#ccc}.b--light-gray{border-color:#eee}.b--near-white{border-color:#f4f4f4}.b--black-40{border-color:rgba(0,0,0,.4)}.b--black-30{border-color:rgba(0,0,0,.3)}.b--black-20{border-color:rgba(0,0,0,.2)}.b--black-10{border-color:rgba(0,0,0,.1)}.b--yellow{border-color:gold}.b--purple{border-color:#5e2ca5}.br1{border-radius:.125rem}.br2{border-radius:.25rem}.br3{border-radius:.5rem}.br4{border-radius:1rem}.br--bottom{border-top-left-radius:0;border-top-right-radius:0}.br--top{border-bottom-right-radius:0}.br--right,.br--top{border-bottom-left-radius:0}.br--right{border-top-left-radius:0}.br--left{border-top-right-radius:0;border-bottom-right-radius:0}.bw1{border-width:.125rem}.bt-0{border-top-width:0}.br-0{border-right-width:0}.bl-0{border-left-width:0}.pre{overflow-x:auto;overflow-y:hidden;overflow:scroll}.top-0{top:0}.left-0{left:0}.cf:after,.cf:before{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.cl{clear:left}.cr{clear:right}.cb{clear:both}.dn{display:none}.di{display:inline}.db{display:block}.dib{display:inline-block}.dit{display:inline-table}.dt{display:table}.dtc{display:table-cell}.dt-row{display:table-row}.dt--fixed{table-layout:fixed;width:100%}.flex{display:flex}.inline-flex{display:inline-flex}.flex-auto{flex:1 1 auto;min-width:0;min-height:0}.flex-none{flex:none}.flex-column{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.flex-grow-1{flex-grow:1}.fl{float:left}.fl,.fr{_display:inline}.fr{float:right}.sans-serif{font-family:-apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif}.code,code{font-family:Consolas,monaco,monospace}.avenir{font-family:avenir next,avenir,sans-serif}.times{font-family:times,serif}.i{font-style:italic}.normal{font-weight:400}.b{font-weight:700}.fw4{font-weight:400}.fw5{font-weight:500}.fw6{font-weight:600}.h1{height:1rem}.h2{height:2rem}.h3{height:4rem}.h4{height:8rem}.h5{height:16rem}.h-100{height:100%}.min-vh-100{min-height:100vh}.h-auto{height:auto}.lh-title{line-height:1.25}.lh-copy{line-height:1.5}.link{text-decoration:none}.link,.link:active,.link:focus,.link:hover,.link:link,.link:visited{transition:color .15s ease-in}.link:focus{outline:1px dotted currentColor}.list{list-style-type:none}.mw-100{max-width:100%}.mw6{max-width:32rem}.mw7{max-width:48rem}.mw8{max-width:64rem}.mw9{max-width:96rem}.w3{width:4rem}.w-10{width:10%}.w-20{width:20%}.w-30{width:30%}.w-50{width:50%}.w-60{width:60%}.w-70{width:70%}.w-75{width:75%}.w-80{width:80%}.w-90{width:90%}.w-100{width:100%}.w-third{width:33.33333%}.overflow-hidden{overflow:hidden}.overflow-auto{overflow:auto}.overflow-y-scroll{overflow-y:scroll}.static{position:static}.relative{position:relative}.absolute{position:absolute}.o-0{opacity:0}.black-70{color:rgba(0,0,0,.7)}.black-60{color:rgba(0,0,0,.6)}.black-50{color:rgba(0,0,0,.5)}.black{color:#000}.gray{color:#777}.silver{color:#999}.light-silver{color:#aaa}.moon-gray{color:#ccc}.white{color:#fff}.red{color:#ff4136}.orange{color:#ff6300}.green{color:#19a974}.dark-blue{color:#00449e}.blue{color:#357edd}.bg-black-05{background-color:rgba(0,0,0,.05)}.bg-near-white{background-color:#f4f4f4}.bg-white{background-color:#fff}.bg-light-green{background-color:#9eebcf}.bg-washed-yellow{background-color:#fffceb}.pa0{padding:0}.pa1{padding:.25rem}.pa2{padding:.5rem}.pa3{padding:1rem}.pa4{padding:2rem}.pa5{padding:4rem}.pl0{padding-left:0}.pl2{padding-left:.5rem}.pl3{padding-left:1rem}.pl4{padding-left:2rem}.pr1{padding-right:.25rem}.pr2{padding-right:.5rem}.pr3{padding-right:1rem}.pb0{padding-bottom:0}.pb1{padding-bottom:.25rem}.pb2{padding-bottom:.5rem}.pb3{padding-bottom:1rem}.pb4{padding-bottom:2rem}.pt0{padding-top:0}.pt1{padding-top:.25rem}.pt2{padding-top:.5rem}.pt3{padding-top:1rem}.pt4{padding-top:2rem}.pt5{padding-top:4rem}.pv1{padding-top:.25rem;padding-bottom:.25rem}.pv2{padding-top:.5rem;padding-bottom:.5rem}.pv3{padding-top:1rem;padding-bottom:1rem}.pv4{padding-top:2rem;padding-bottom:2rem}.ph2{padding-left:.5rem;padding-right:.5rem}.ph3{padding-left:1rem;padding-right:1rem}.ph4{padding-left:2rem;padding-right:2rem}.ma0{margin:0}.ml1{margin-left:.25rem}.ml2{margin-left:.5rem}.ml3{margin-left:1rem}.ml4{margin-left:2rem}.ml5{margin-left:4rem}.mr1{margin-right:.25rem}.mr2{margin-right:.5rem}.mr3{margin-right:1rem}.mr4{margin-right:2rem}.mr5{margin-right:4rem}.mb0{margin-bottom:0}.mb1{margin-bottom:.25rem}.mb2{margin-bottom:.5rem}.mb3{margin-bottom:1rem}.mb4{margin-bottom:2rem}.mb5{margin-bottom:4rem}.mb6{margin-bottom:8rem}.mt1{margin-top:.25rem}.mt2{margin-top:.5rem}.mt3{margin-top:1rem}.mt4{margin-top:2rem}.mt5{margin-top:4rem}.nt2{margin-top:-.5rem}.collapse{border-collapse:collapse;border-spacing:0}.no-underline{text-decoration:none}.tl{text-align:left}.tr{text-align:right}.tc{text-align:center}.tj{text-align:justify}.ttu{text-transform:uppercase}.f1{font-size:3rem}.f2{font-size:2.25rem}.f3{font-size:1.5rem}.f4{font-size:1.25rem}.f5{font-size:1rem}.f6{font-size:.875rem}.f7{font-size:.75rem}.measure{max-width:30em}.center{margin-left:auto;margin-right:auto}.pre{white-space:pre}.v-mid{vertical-align:middle}.hide-child .child{opacity:0;transition:opacity .15s ease-in}.hide-child:active .child,.hide-child:focus .child,.hide-child:hover .child{opacity:1;transition:opacity .15s ease-in}.pointer:hover{cursor:pointer}.z-3{z-index:3}.z-9999{z-index:9999}.z-max{z-index:2147483647}@media screen and (min-width:30em){.bl-ns{border-left-style:solid;border-left-width:1px}.dn-ns{display:none}.di-ns{display:inline}.dib-ns{display:inline-block}.dt-ns{display:table}.dtc-ns{display:table-cell}.flex-ns{display:flex}.fl-ns{float:left}.fl-ns,.fr-ns{_display:inline}.fr-ns{float:right}.w-20-ns{width:20%}.w-25-ns{width:25%}.w-30-ns{width:30%}.w-40-ns{width:40%}.w-50-ns{width:50%}.w-70-ns{width:70%}.w-75-ns{width:75%}.w-100-ns{width:100%}.w-third-ns{width:33.33333%}.w-auto-ns{width:auto}.absolute-ns{position:absolute}.pa0-ns{padding:0}.pa3-ns{padding:1rem}.pa4-ns{padding:2rem}.pr2-ns{padding-right:.5rem}.pb0-ns{padding-bottom:0}.ph0-ns{padding-left:0;padding-right:0}.ph2-ns{padding-left:.5rem;padding-right:.5rem}.ph4-ns{padding-left:2rem;padding-right:2rem}.ph5-ns{padding-left:4rem;padding-right:4rem}.ml3-ns{margin-left:1rem}.ml4-ns{margin-left:2rem}.mr3-ns{margin-right:1rem}.mb0-ns{margin-bottom:0}.mb3-ns{margin-bottom:1rem}.mb5-ns{margin-bottom:4rem}.mt0-ns{margin-top:0}.mt2-ns{margin-top:.5rem}.mt6-ns{margin-top:8rem}.tc-ns{text-align:center}}@media screen and (min-width:60em){.dn-l{display:none}.dib-l{display:inline-block}.dtc-l{display:table-cell}.w-50-l{width:50%}.w-60-l{width:60%}.tr-l{text-align:right}} - -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?8b43027f47b20503057dfbbaa9401fef);src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?8b43027f47b20503057dfbbaa9401fef) format("embedded-opentype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff2?20fd1704ea223900efa9fd4e869efb08) format("woff2"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff?f691f37e57f04c152e2315ab7dbad881) format("woff"),url(../fonts/vendor/font-awesome/fontawesome-webfont.ttf?1e59d2330b4c6deb84b340635ed36249) format("truetype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.svg?c1e38fd9e0e74ba58f7a2b77ef29fdd3) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857em;text-align:center}.fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}.fa-li.fa-lg{left:-1.8571428571em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.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}.vue-tooltip{background-color:#000;box-sizing:border-box;color:#fff;max-width:320px;padding:6px 10px;border-radius:3px;z-index:100;box-shadow:2px 2px 3px rgba(0,0,0,.4)}.vue-tooltip.vue-tooltip-hidden{transform:translateX(-100000px)!important}.vue-tooltip .vue-tooltip-content{text-align:center}.vue-tooltip .tooltip-arrow{content:"";width:0;height:0;border-style:solid;position:absolute;margin:5px}.vue-tooltip[x-out-of-boundaries]{display:none}.vue-tooltip[x-placement^=bottom]{margin-top:5px}.vue-tooltip[x-placement^=bottom] .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;border-top-color:transparent!important;border-left-color:transparent!important;border-right-color:transparent!important;top:-5px;margin-top:0;margin-bottom:0}.vue-tooltip[x-placement^=top]{margin-bottom:5px}.vue-tooltip[x-placement^=top] .tooltip-arrow{border-width:5px 5px 0;border-top-color:#000;border-bottom-color:transparent!important;border-left-color:transparent!important;border-right-color:transparent!important;bottom:-5px;margin-top:0;margin-bottom:0}.vue-tooltip[x-placement^=right]{margin-left:5px}.vue-tooltip[x-placement^=right] .tooltip-arrow{border-width:5px 5px 5px 0;border-right-color:#000;border-top-color:transparent!important;border-left-color:transparent!important;border-bottom-color:transparent!important;left:-5px;margin-left:0;margin-right:0}.vue-tooltip[x-placement^=left]{margin-right:5px}.vue-tooltip[x-placement^=left] .tooltip-arrow{border-width:5px 0 5px 5px;border-left-color:#000;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important;right:-5px;margin-left:0;margin-right:0}.pretty *{box-sizing:border-box}.pretty input:not([type=checkbox]):not([type=radio]){display:none}.pretty{position:relative;display:inline-block;margin-right:1em;white-space:nowrap;line-height:1}.pretty input{position:absolute;left:0;top:0;min-width:1em;width:100%;height:100%;z-index:2;opacity:0;margin:0;padding:0;cursor:pointer}.pretty .state label{position:static;display:inline-block;font-weight:400;margin:0;text-indent:1.5em;min-width:calc(1em + 2px)}.pretty .state label:after,.pretty .state label:before{content:"";width:calc(1em + 2px);height:calc(1em + 2px);display:block;box-sizing:border-box;border-radius:0;border:1px solid transparent;z-index:0;position:absolute;left:0;top:calc(-108% + 1em);background-color:transparent}.pretty .state label:before{border-color:#bdc3c7}.pretty .state.p-is-hover,.pretty .state.p-is-indeterminate{display:none}@-webkit-keyframes zoom{0%{opacity:0;transform:scale(0)}}@keyframes zoom{0%{opacity:0;transform:scale(0)}}@-webkit-keyframes tada{0%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.5)}72%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}81%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.24)}89%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}95%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.04)}to{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}}@keyframes tada{0%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.5)}72%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}81%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.24)}89%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}95%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.04)}to{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}}@-webkit-keyframes jelly{0%{transform:scaleX(1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}to{transform:scaleX(1)}}@keyframes jelly{0%{transform:scaleX(1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}to{transform:scaleX(1)}}@-webkit-keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}to{opacity:1;transform:translateZ(0) rotate(0)}}@keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}to{opacity:1;transform:translateZ(0) rotate(0)}}.pretty.p-default.p-fill .state label:after{transform:scale(1)}.pretty.p-default .state label:after{transform:scale(.6)}.pretty.p-default input:checked~.state label:after{background-color:#bdc3c7!important}.pretty.p-default.p-thick .state label:after,.pretty.p-default.p-thick .state label:before{border-width:.14286em}.pretty.p-default.p-thick .state label:after{transform:scale(.4)!important}.pretty.p-icon .state .icon{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc(-108% + 1em);border:1px solid transparent;opacity:0}.pretty.p-icon .state .icon:before{margin:0;width:100%;height:100%;text-align:center;display:flex;flex:1;justify-content:center;align-items:center;line-height:1}.pretty.p-icon input:checked~.state .icon{opacity:1}.pretty.p-icon input:checked~.state label:before{border-color:#5a656b}.pretty.p-svg .state .svg{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc(-108% + 1em);border:1px solid transparent;opacity:0}.pretty.p-svg .state svg{margin:0;width:100%;height:100%;text-align:center;display:flex;flex:1;justify-content:center;align-items:center;line-height:1}.pretty.p-svg input:checked~.state .svg{opacity:1}.pretty.p-image .state img{opacity:0;position:absolute;width:calc(1em + 2px);height:calc(1em + 2px);top:0;top:calc(-108% + 1em);left:0;z-index:0;text-align:center;line-height:normal;transform:scale(.8)}.pretty.p-image input:checked~.state img{opacity:1}.pretty.p-switch input{min-width:2em}.pretty.p-switch .state{position:relative}.pretty.p-switch .state:before{content:"";border:1px solid #bdc3c7;border-radius:60px;width:2em;box-sizing:unset;height:calc(1em + 2px);position:absolute;top:0;top:calc(-116% + 1em);z-index:0;transition:all .5s ease}.pretty.p-switch .state label{text-indent:2.5em}.pretty.p-switch .state label:after,.pretty.p-switch .state label:before{transition:all .5s ease;border-radius:100%;left:0;border-color:transparent;transform:scale(.8)}.pretty.p-switch .state label:after{background-color:#bdc3c7!important}.pretty.p-switch input:checked~.state:before{border-color:#5a656b}.pretty.p-switch input:checked~.state label:before{opacity:0}.pretty.p-switch input:checked~.state label:after{background-color:#5a656b!important;left:1em}.pretty.p-switch.p-fill input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-switch.p-fill input:checked~.state label:before{opacity:0}.pretty.p-switch.p-fill input:checked~.state label:after{background-color:#fff!important;left:1em}.pretty.p-switch.p-slim .state:before{height:.1em;background:#bdc3c7!important;top:calc(50% - .1em)}.pretty.p-switch.p-slim input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-has-hover input:hover~.state:not(.p-is-hover){display:none}.pretty.p-has-hover input:hover~.state.p-is-hover,.pretty.p-has-hover input:hover~.state.p-is-hover .icon{display:block}.pretty.p-has-focus input:focus~.state label:before{box-shadow:0 0 3px 0 #bdc3c7}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state:not(.p-is-indeterminate){display:none}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate{display:block}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate .icon{display:block;opacity:1}.pretty.p-toggle .state.p-on{opacity:0;display:none}.pretty.p-toggle .state .icon,.pretty.p-toggle .state.p-off,.pretty.p-toggle .state .svg,.pretty.p-toggle .state img{opacity:1;display:inherit}.pretty.p-toggle .state.p-off .icon{color:#bdc3c7}.pretty.p-toggle input:checked~.state.p-on{opacity:1;display:inherit}.pretty.p-toggle input:checked~.state.p-off{opacity:0;display:none}.pretty.p-plain.p-toggle .state label:before,.pretty.p-plain input:checked~.state label:before{content:none}.pretty.p-plain.p-plain .icon{transform:scale(1.1)}.pretty.p-round .state label:after,.pretty.p-round .state label:before{border-radius:100%}.pretty.p-round.p-icon .state .icon{border-radius:100%;overflow:hidden}.pretty.p-round.p-icon .state .icon:before{transform:scale(.8)}.pretty.p-curve .state label:after,.pretty.p-curve .state label:before{border-radius:20%}.pretty.p-smooth .icon,.pretty.p-smooth .svg,.pretty.p-smooth label:after,.pretty.p-smooth label:before{transition:all .5s ease}.pretty.p-smooth input:checked+.state label:after{transition:all .3s ease}.pretty.p-smooth.p-default input:checked+.state label:after,.pretty.p-smooth input:checked+.state .icon,.pretty.p-smooth input:checked+.state .svg,.pretty.p-smooth input:checked+.state img{-webkit-animation:zoom .2s ease;animation:zoom .2s ease}.pretty.p-smooth.p-plain input:checked+.state label:before{content:"";transform:scale(0);transition:all .5s ease}.pretty.p-tada:not(.p-default) input:checked+.state .icon,.pretty.p-tada:not(.p-default) input:checked+.state .svg,.pretty.p-tada:not(.p-default) input:checked+.state img,.pretty.p-tada:not(.p-default) input:checked+.state label:after,.pretty.p-tada:not(.p-default) input:checked+.state label:before{-webkit-animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state .icon,.pretty.p-jelly:not(.p-default) input:checked+.state .svg,.pretty.p-jelly:not(.p-default) input:checked+.state img,.pretty.p-jelly:not(.p-default) input:checked+.state label:after,.pretty.p-jelly:not(.p-default) input:checked+.state label:before{-webkit-animation:jelly .7s cubic-bezier(.25,.46,.45,.94);animation:jelly .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state label:before{border-color:transparent}.pretty.p-rotate:not(.p-default) input:checked~.state .icon,.pretty.p-rotate:not(.p-default) input:checked~.state .svg,.pretty.p-rotate:not(.p-default) input:checked~.state img,.pretty.p-rotate:not(.p-default) input:checked~.state label:after,.pretty.p-rotate:not(.p-default) input:checked~.state label:before{-webkit-animation:rotate .7s cubic-bezier(.25,.46,.45,.94);animation:rotate .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-rotate:not(.p-default) input:checked~.state label:before{border-color:transparent}.pretty.p-pulse:not(.p-switch) input:checked~.state label:before{-webkit-animation:pulse 1s;animation:pulse 1s}.pretty input[disabled]{cursor:not-allowed;display:none}.pretty input[disabled]~*{opacity:.5}.pretty.p-locked input{display:none;cursor:not-allowed}.pretty.p-toggle .state.p-primary label:after,.pretty input:checked~.state.p-primary label:after{background-color:#428bca!important}.pretty.p-toggle .state.p-primary .icon,.pretty.p-toggle .state.p-primary .svg,.pretty input:checked~.state.p-primary .icon,.pretty input:checked~.state.p-primary .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-primary-o label:before,.pretty input:checked~.state.p-primary-o label:before{border-color:#428bca}.pretty.p-toggle .state.p-primary-o label:after,.pretty input:checked~.state.p-primary-o label:after{background-color:transparent}.pretty.p-toggle .state.p-primary-o .icon,.pretty.p-toggle .state.p-primary-o .svg,.pretty.p-toggle .state.p-primary-o svg,.pretty input:checked~.state.p-primary-o .icon,.pretty input:checked~.state.p-primary-o .svg,.pretty input:checked~.state.p-primary-o svg{color:#428bca;stroke:#428bca}.pretty.p-default:not(.p-fill) input:checked~.state.p-primary-o label:after{background-color:#428bca!important}.pretty.p-switch input:checked~.state.p-primary:before{border-color:#428bca}.pretty.p-switch.p-fill input:checked~.state.p-primary:before{background-color:#428bca!important}.pretty.p-switch.p-slim input:checked~.state.p-primary:before{border-color:#245682;background-color:#245682!important}.pretty.p-toggle .state.p-info label:after,.pretty input:checked~.state.p-info label:after{background-color:#5bc0de!important}.pretty.p-toggle .state.p-info .icon,.pretty.p-toggle .state.p-info .svg,.pretty input:checked~.state.p-info .icon,.pretty input:checked~.state.p-info .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-info-o label:before,.pretty input:checked~.state.p-info-o label:before{border-color:#5bc0de}.pretty.p-toggle .state.p-info-o label:after,.pretty input:checked~.state.p-info-o label:after{background-color:transparent}.pretty.p-toggle .state.p-info-o .icon,.pretty.p-toggle .state.p-info-o .svg,.pretty.p-toggle .state.p-info-o svg,.pretty input:checked~.state.p-info-o .icon,.pretty input:checked~.state.p-info-o .svg,.pretty input:checked~.state.p-info-o svg{color:#5bc0de;stroke:#5bc0de}.pretty.p-default:not(.p-fill) input:checked~.state.p-info-o label:after{background-color:#5bc0de!important}.pretty.p-switch input:checked~.state.p-info:before{border-color:#5bc0de}.pretty.p-switch.p-fill input:checked~.state.p-info:before{background-color:#5bc0de!important}.pretty.p-switch.p-slim input:checked~.state.p-info:before{border-color:#2390b0;background-color:#2390b0!important}.pretty.p-toggle .state.p-success label:after,.pretty input:checked~.state.p-success label:after{background-color:#5cb85c!important}.pretty.p-toggle .state.p-success .icon,.pretty.p-toggle .state.p-success .svg,.pretty input:checked~.state.p-success .icon,.pretty input:checked~.state.p-success .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-success-o label:before,.pretty input:checked~.state.p-success-o label:before{border-color:#5cb85c}.pretty.p-toggle .state.p-success-o label:after,.pretty input:checked~.state.p-success-o label:after{background-color:transparent}.pretty.p-toggle .state.p-success-o .icon,.pretty.p-toggle .state.p-success-o .svg,.pretty.p-toggle .state.p-success-o svg,.pretty input:checked~.state.p-success-o .icon,.pretty input:checked~.state.p-success-o .svg,.pretty input:checked~.state.p-success-o svg{color:#5cb85c;stroke:#5cb85c}.pretty.p-default:not(.p-fill) input:checked~.state.p-success-o label:after{background-color:#5cb85c!important}.pretty.p-switch input:checked~.state.p-success:before{border-color:#5cb85c}.pretty.p-switch.p-fill input:checked~.state.p-success:before{background-color:#5cb85c!important}.pretty.p-switch.p-slim input:checked~.state.p-success:before{border-color:#357935;background-color:#357935!important}.pretty.p-toggle .state.p-warning label:after,.pretty input:checked~.state.p-warning label:after{background-color:#f0ad4e!important}.pretty.p-toggle .state.p-warning .icon,.pretty.p-toggle .state.p-warning .svg,.pretty input:checked~.state.p-warning .icon,.pretty input:checked~.state.p-warning .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-warning-o label:before,.pretty input:checked~.state.p-warning-o label:before{border-color:#f0ad4e}.pretty.p-toggle .state.p-warning-o label:after,.pretty input:checked~.state.p-warning-o label:after{background-color:transparent}.pretty.p-toggle .state.p-warning-o .icon,.pretty.p-toggle .state.p-warning-o .svg,.pretty.p-toggle .state.p-warning-o svg,.pretty input:checked~.state.p-warning-o .icon,.pretty input:checked~.state.p-warning-o .svg,.pretty input:checked~.state.p-warning-o svg{color:#f0ad4e;stroke:#f0ad4e}.pretty.p-default:not(.p-fill) input:checked~.state.p-warning-o label:after{background-color:#f0ad4e!important}.pretty.p-switch input:checked~.state.p-warning:before{border-color:#f0ad4e}.pretty.p-switch.p-fill input:checked~.state.p-warning:before{background-color:#f0ad4e!important}.pretty.p-switch.p-slim input:checked~.state.p-warning:before{border-color:#c77c11;background-color:#c77c11!important}.pretty.p-toggle .state.p-danger label:after,.pretty input:checked~.state.p-danger label:after{background-color:#d9534f!important}.pretty.p-toggle .state.p-danger .icon,.pretty.p-toggle .state.p-danger .svg,.pretty input:checked~.state.p-danger .icon,.pretty input:checked~.state.p-danger .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-danger-o label:before,.pretty input:checked~.state.p-danger-o label:before{border-color:#d9534f}.pretty.p-toggle .state.p-danger-o label:after,.pretty input:checked~.state.p-danger-o label:after{background-color:transparent}.pretty.p-toggle .state.p-danger-o .icon,.pretty.p-toggle .state.p-danger-o .svg,.pretty.p-toggle .state.p-danger-o svg,.pretty input:checked~.state.p-danger-o .icon,.pretty input:checked~.state.p-danger-o .svg,.pretty input:checked~.state.p-danger-o svg{color:#d9534f;stroke:#d9534f}.pretty.p-default:not(.p-fill) input:checked~.state.p-danger-o label:after{background-color:#d9534f!important}.pretty.p-switch input:checked~.state.p-danger:before{border-color:#d9534f}.pretty.p-switch.p-fill input:checked~.state.p-danger:before{background-color:#d9534f!important}.pretty.p-switch.p-slim input:checked~.state.p-danger:before{border-color:#a02622;background-color:#a02622!important}.pretty.p-bigger .icon,.pretty.p-bigger .img,.pretty.p-bigger .svg,.pretty.p-bigger label:after,.pretty.p-bigger label:before{font-size:1.2em!important;top:calc(-135% + 1em)!important}.pretty.p-bigger label{text-indent:1.7em}@media print{.pretty .state .icon,.pretty .state:before,.pretty .state label:after,.pretty .state label:before{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}}.btn{color:#4a4a4a;background-color:#d7e3ec;background-image:linear-gradient(-180deg,#fafafa,#d7e3ec 90%);position:relative;display:inline-block;padding:6px 12px;font-size:14px;font-weight:600;line-height:20px;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-position:-1px -1px;background-size:110% 110%;border:1px solid rgba(27,31,35,.2);border-radius:.25em;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn,.btn:focus,.btn:hover{background-repeat:repeat-x;text-decoration:none}.btn:focus,.btn:hover{background-color:#e5e5e5;background-image:linear-gradient(-180deg,#d7e3ec,#e5e5e5 90%);background-position:0 -.5em;border-color:rgba(27,31,35,.35);color:#0366d5}.btn:active{background-color:#d0d0d0;background-image:none;border-color:rgba(27,31,35,.35);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn:disabled{background-image:linear-gradient(-180deg,#d0d0d0,#d0d0d0 90%)}.btn:focus{outline:none;text-decoration:none}.btn-primary{color:#fff}.btn-primary,.btn-primary:focus,.btn-primary:hover{background-color:#228b22;background-image:linear-gradient(-180deg,#32cd32,#228b22 90%)}.btn-primary:focus,.btn-primary:hover{background-position:0 -.5em;border-color:#228b22;color:#edd077}.btn-danger{color:#900}.btn-danger:focus,.btn-danger:hover{background-color:#b22222;background-image:linear-gradient(#d9534f,#b22222);border-color:#d9534f;color:#fff}.btn-warning{color:#daa520}.btn-warning:focus,.btn-warning:hover{background-color:#daa520;background-image:linear-gradient(#fffacd,#daa520);border-color:#fffacd;color:#fff}.small-btn{background:#fff;color:#4a4a4a;opacity:.8;box-shadow:1px 0 1px rgba(43,45,80,.16),-1px 1px 1px rgba(43,45,80,.16),0 1px 4px rgba(43,45,80,.18);border-radius:11px;font-weight:500}.header-logo,.header-logo:hover,.small-btn{text-decoration:none}.header-logo:hover{background-color:transparent}.header-search{padding:0;position:relative;margin:auto 0}.header-nav{text-align:right}.header-nav-item-link{color:#fff;font-weight:300;padding:3px 11px;text-decoration:none}.header-nav-item-link:hover{background-color:#497193;border-radius:3px;color:#fff;padding:3px 11px;text-decoration:none}.header-nav-item-link svg{position:relative;top:3px}.header-search-input{background:#497193;border-color:#497193;color:#fff}.header-search-input::-moz-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input::placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:focus{background:#fff;color:#323232}@-webkit-keyframes pulse{0%{transform:scale(1.1)}50%{transform:scale(.8)}to{transform:scale(1)}}@keyframes pulse{0%{transform:scale(1.1)}50%{transform:scale(.8)}to{transform:scale(1)}}@media (max-width:767px){.header-search{padding:0;margin:20px 0}.header-search ul{padding-right:26px}}.avatars a{text-decoration:none}.avatars a:hover{background-color:transparent}.people-list .breadcrumb{border-bottom:1px solid #eee}.people-list .main-content{margin-top:20px}.people-list .sidebar .sidebar-cta{margin-bottom:20px;padding:15px;text-align:center;width:100%}.people-list .sidebar li{margin-bottom:7px;padding-left:15px;position:relative}.people-list .sidebar li.selected:before{color:#999;content:">";left:0;position:absolute}.people-list .sidebar li .number-contacts-per-tag{float:right}.people-list .clear-filter,.people-list .list{border:1px solid #eee;border-radius:3px}.people-list .clear-filter{position:relative;padding:6px}.people-list .clear-filter a{position:absolute;right:10px}.people-list .people-list-item{border-bottom:1px solid #eee;padding:10px}.people-list .people-list-item:hover{background-color:#fafafa}.people-list .people-list-item.sorting{background-color:#fafafa;position:relative;padding:10px}.people-list .people-list-item.sorting .options{display:inline;position:absolute;right:10px}.people-list .people-list-item.sorting .options .dropdown-btn:after{content:"";font-family:FontAwesome;margin-left:5px}.people-list .people-list-item.sorting .options .dropdown-item{padding:3px 20px 3px 10px}.people-list .people-list-item.sorting .options .dropdown-item:before{content:"";font-family:FontAwesome;margin-right:5px;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item:hover{background-color:#0366d5;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item.selected:before{color:#999}.people-list .people-list-item a{color:#333;text-decoration:none;display:block}.people-list .people-list-item a:hover{background-color:transparent;color:#333}.blank-people-state{margin-top:30px;text-align:center}.blank-people-state h3{font-weight:400;margin-bottom:30px}.blank-people-state .cta-blank{margin-bottom:30px}.blank-people-state .illustration-blank p{margin-top:30px}.blank-people-state .illustration-blank img{display:block;margin:0 auto 20px}.avatar-header{top:40px;margin-top:-30px}.avatar-header .image-header:after{box-shadow:inset 1px 1px 3px 0 hsla(0,0%,67.8%,.5);border-radius:7px;content:"";display:block;height:100%;position:absolute;top:0;width:100%}.avatar-header .hide-child:hover .child{background:rgba(90,90,90,.96)}.avatar-header .hide-child:hover a:hover{background:transparent;text-decoration:underline}.people-show .main-content{background-color:#fff;padding-bottom:20px;padding-top:40px}.people-show .main-content .section-title{position:relative}.people-show .main-content .section-title h3{border-bottom:1px solid #d0d0d0;font-size:18px;font-weight:400;margin-bottom:20px;padding-bottom:10px;padding-left:23px;padding-top:10px;position:relative}.people-show .main-content .section-title .icon-section{position:absolute;top:14px;width:17px}.people-show .main-content .sidebar .sidebar-cta a{margin-bottom:20px;width:100%}.people-show .profile .sidebar-box{background-color:#f2f4f8;border:1px solid #eee;border-radius:3px;color:#333;margin-bottom:25px;padding:10px;position:relative;font-size:.875rem}.people-show .profile .sidebar-box.edit{background-color:#fffceb;border-color:gold}.people-show .profile .sidebar-box-title{margin-bottom:4px;position:relative}.people-show .profile .sidebar-box-title h3{font-size:12px;font-weight:500;text-transform:uppercase}.people-show .profile .sidebar-box-title a{position:absolute;right:7px}.people-show .profile .sidebar-box-title img{left:-3px;position:relative;width:20px}.people-show .profile .sidebar-box-paragraph:not(:last-child){margin-bottom:9px}.people-show .profile .people-list li{margin-bottom:4px}.people-show .profile .introductions li,.people-show .profile .work li{color:#999;font-size:12px;margin-bottom:10px}.people-show .profile .introductions li:last-child,.people-show .profile .work li:last-child{margin-bottom:0}.people-show .profile .introductions li i,.people-show .profile .work li i{text-align:center;width:17px}.people-show .profile .section{margin-bottom:35px}.people-show .profile .section .section-blank{background-color:#fafafa;border:1px solid #eee;border-radius:3px;padding:15px;text-align:center}.people-show .profile .section .section-blank h3{font-weight:400;font-size:14px}.people-show .gifts .offered{background-color:#32cd32;border-radius:10rem;display:inline-block;font-size:75%;font-weight:400;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;padding:2px .6em}.people-show .gifts .for{font-style:italic;margin-left:10px}.people-show .activities .date,.people-show .debts .date,.people-show .gifts .date,.people-show .reminders .date,.people-show .tasks .date{color:#777;font-size:12px;margin-right:10px;width:100px}.people-show .activities .frequency-type,.people-show .activities .value,.people-show .debts .frequency-type,.people-show .debts .value,.people-show .gifts .frequency-type,.people-show .gifts .value,.people-show .reminders .frequency-type,.people-show .reminders .value,.people-show .tasks .frequency-type,.people-show .tasks .value{background-color:#d7e3ec;border:1px solid #eee;border-radius:3px;display:inline;font-size:12px;padding:0 6px}.people-show .activities .list-actions,.people-show .debts .list-actions,.people-show .gifts .list-actions,.people-show .reminders .list-actions,.people-show .tasks .list-actions{position:relative;text-align:center;width:90px}.people-show .activities .list-actions a:not(:last-child),.people-show .debts .list-actions a:not(:last-child),.people-show .gifts .list-actions a:not(:last-child),.people-show .reminders .list-actions a:not(:last-child),.people-show .tasks .list-actions a:not(:last-child){margin-right:5px}.people-show .activities .list-actions a.edit,.people-show .debts .list-actions a.edit,.people-show .gifts .list-actions a.edit,.people-show .reminders .list-actions a.edit,.people-show .tasks .list-actions a.edit{position:relative;top:1px}.people-show .activities .empty,.people-show .debts .empty,.people-show .gifts .empty,.people-show .reminders .empty,.people-show .tasks .empty{font-style:italic}.people-show .reminders .frequency-type{white-space:nowrap}.people-show .reminders input[type=date]{margin-bottom:20px;width:170px}.people-show .reminders .form-check input[type=number]{display:inline;width:50px}.people-show .debts .debts-list .debt-nature{width:220px}@media (max-width:480px){.people-list{margin-top:20px}.people-show .main-content.modal{margin-top:0}.people-show .main-content.dashboard .sidebar-box{margin-bottom:15px}.people-show .main-content.dashboard .sidebar-cta{margin-top:15px}}.journal-calendar-text{top:19px;line-height:16px;width:62px}.journal-calendar-box{width:62px;margin-right:11px}.journal-calendar-content{width:calc(100% - 73px)}.journal-line{transition:all .2s}.journal-line:hover{border-color:#0366d5}.marketing.register{background-color:#fafafa;padding-top:90px;padding-bottom:40px}.marketing.register .offset-md-3-right{margin-right:25%}.marketing.register .signup-box{background-color:#fff;border:1px solid #e5e5e5;border-radius:5px;padding:50px 20px 20px}.marketing.register .signup-box h1{font-weight:700;text-align:center}.marketing.register .signup-box h2,.marketing.register .signup-box h3{font-weight:300;text-align:center}.marketing.register .signup-box h2{margin-top:20px;margin-bottom:20px}.marketing.register .signup-box h3{font-size:15px;margin-bottom:30px}.marketing.register .signup-box .form-inline label{display:block}.marketing.register .signup-box button{margin-top:10px;width:100%}.marketing.register .signup-box a.action{margin-top:10px;width:100%;text-align:center}.marketing.register .signup-box .help{font-size:13px;text-align:center}.marketing.register .signup-box .checkbox{display:none}.marketing.register .signup-box .links{margin-top:20px}.marketing.register .signup-box .links li{font-size:14px;margin-bottom:5px}.privacy,.releases,.statistics{max-width:750px;margin-left:auto;margin-right:auto;padding:20px 30px 100px;margin-top:50px;background-color:#fff;box-shadow:0 8px 20px #d0d0d0}.privacy h2,.releases h2,.statistics h2{text-align:center}.privacy h3,.releases h3,.statistics h3{font-size:15px;margin-top:30px}.releases ul{list-style-type:disc;margin-left:20px}@media (max-width:480px){.marketing.homepage img{max-width:100%}.marketing.register .signup-box .logo{left:39%;top:-47px}}.settings .breadcrumb{margin-bottom:20px}.settings .sidebar-menu ul{border:1px solid #dee2e6;border-radius:3px}.settings .sidebar-menu li{padding:10px}.settings .sidebar-menu li:not(:last-child){border-bottom:1px solid #dee2e6}.settings .sidebar-menu li.selected{background-color:#fafafa}.settings .sidebar-menu li.selected i{color:green}.settings .sidebar-menu li a{width:100%}.settings .sidebar-menu li i{margin-right:5px;color:#999}.settings .settings-delete,.settings .settings-group,.settings .settings-reset{border:1px solid;padding:10px;margin-top:40px}.settings .settings-delete h2,.settings .settings-group h2,.settings .settings-reset h2{font-weight:400;font-size:16px}.settings .settings-delete h3,.settings .settings-group h3,.settings .settings-reset h3{font-weight:400;font-size:14px}.settings .settings-delete{border-color:#d9534f;border-radius:3px}.settings .settings-reset{border-color:#daa520;border-radius:3px}.settings .settings-group{border-color:#999;border-radius:3px}.settings .warning-zone{margin-bottom:30px;margin-top:30px;padding:10px 10px 5px 15px;border:1px solid #daa520;border-radius:3px;background-color:#fffacd}.settings .users-list h3.with-actions{padding-bottom:13px}.settings .users-list h3.with-actions a{float:right}.settings .users-list .table-cell.actions{text-align:right}.settings .blank-screen{text-align:center}.settings .blank-screen img{margin-bottom:30px;margin-top:30px}.settings .blank-screen h2{font-weight:400;margin-bottom:10px}.settings .blank-screen h3{margin-top:0;border-bottom:0}.settings .blank-screen p{margin:0 auto;width:400px}.settings .blank-screen p.cta{margin-top:40px;margin-bottom:10px}.settings .blank-screen .requires-subscription{margin-top:20px;font-size:13px;color:#999}.settings .subscriptions .downgrade ul{background-color:#fafafa;border:1px solid #dee2e6;border-radius:6px;margin-bottom:20px;padding:25px}.settings .subscriptions .downgrade li{padding-bottom:15px}.settings .subscriptions .downgrade li:not(:last-child){border-bottom:1px solid #dee2e6}.settings .subscriptions .downgrade li:not(:first-child){margin-top:10px}.settings .subscriptions .downgrade li.success .rule-title{text-decoration:line-through}.settings .subscriptions .downgrade li.success .icon:after{font-family:FontAwesome;font-size:17px;color:#47c1bf;content:"";top:10px;position:relative}.settings .subscriptions .downgrade li.fail .icon:after{font-family:FontAwesome;font-size:17px;color:#d9534f;content:"";top:10px;position:relative}.settings .subscriptions .downgrade li .rule-title{font-size:18px;padding-left:5px}.settings .subscriptions .downgrade li .rule-to-succeed{font-size:13px;display:block;padding-left:27px}.settings .report .report-summary{background-color:#fafafa;border:1px solid #dee2e6;border-radius:3px;margin-bottom:30px}.settings .report .report-summary li{padding:5px 10px}.settings .report .report-summary li:not(:last-child){border-bottom:1px solid #dee2e6}.settings .report .report-summary li span{font-weight:600}.settings .report .status{text-align:center;width:95px}.settings .report .reason{font-style:italic}.settings.import .success{color:#32cd32}.settings.import .warning{color:#daa520}.settings.import .date{font-size:13px;margin-left:10px}.settings.import h3.with-actions{padding-bottom:13px}.settings.import h3.with-actions a{float:right}.settings.upload .warning-zone{padding:20px 15px}.settings.upload .warning-zone ul{margin-left:20px;list-style-type:disc}.settings .reminder-info{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.modal h5{font-size:20px;font-weight:500}.modal label{padding-left:0}.modal .close{position:absolute;right:19px;top:14px;font-size:30px}.modal-mask{position:fixed;z-index:9998;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);display:table;transition:opacity .3s ease}.modal-wrapper{display:table-cell;vertical-align:middle}.modal-container{max-width:500px;max-height:80%;margin:0 auto;padding:20px 30px;background-color:#fff;border-radius:2px;box-shadow:0 2px 8px rgba(0,0,0,.33);transition:all .3s ease;font-family:Helvetica,Arial,sans-serif;text-align:center}.modal-container img{max-height:400px}.changelog img{max-width:100%;border:1px solid #d0d0d0;padding:3px}.bg-gray-monica{background-color:#f2f4f8}.bg-blue-monica{background-color:#325776}.b--gray-monica{border-color:#d0d0d0}.bg-hover-monica:hover{background-color:#d7e3ec}.bg-pale-red{background-color:#f4c8b9}.box-shadow{background:#fff;border:1px solid #d0d0d0;box-shadow:1px -1px 4px hsla(0,0%,47.8%,.25);border-radius:11px}.w-5{width:5%}.form-error-message{border-top:1px solid #d9534f;background-color:#f4c8b9;box-shadow:inset 0 3px 0 0 #d9534f,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message{border-top:1px solid #47c1bf;background-color:#d1ecfa;box-shadow:inset 0 3px 0 0 #47c1bf,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message svg{width:20px;fill:#00848e;color:#fff}.border-bottom{border-bottom:1px solid #dee2e6}.border-top{border-top:1px solid #dee2e6}.border-left{border-left:1px solid #dee2e6}.badge{display:inline-block;padding:4px 5px;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge-success{background-color:#32cd32}.badge-danger{background-color:#d9534f}kbd{padding:.1em .6em;border:1px solid #ccc;font-size:11px;font-family:Arial,Helvetica,sans-serif;background-color:#fafafa;color:#333;box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 0 0 2px #fff;border-radius:3px;display:inline-block;margin:0 .1em;text-shadow:0 1px 0 #fff;line-height:1.4;white-space:nowrap}.life-event .life-event-add-row:hover{background-color:#d7e3ec}.life-event .life-event-add-arrow{right:10px;top:12px}.life-event .life-event-add-icon{background-color:#d7e3ec;border-radius:50%;padding:20px;width:65px}.life-event .life-event-add-icon img{width:70px}.chart-activities{display:table;table-layout:fixed;width:100%;max-width:700px;height:200px;background-image:linear-gradient(180deg,rgba(0,0,0,.1) 2%,transparent 0);background-size:100% 50px;background-position:0 0}.chart-activities li{position:relative;display:table-cell;vertical-align:bottom;height:200px}.chart-activities span{margin:0 1em;display:block;background:rgba(209,236,250,.75);-webkit-animation:draw 1s ease-in-out;animation:draw 1s ease-in-out}.chart-activities span:before{position:absolute;left:0;right:0;top:100%;padding:5px 1em 0;display:block;text-align:center;content:attr(title);word-wrap:break-word}@-webkit-keyframes draw{0%{height:0}}@keyframes draw{0%{height:0}}body{color:#4a4a4a}a{color:#0366d5;padding:1px;text-decoration:underline}a:hover{background-color:#0366d5;color:#fff;text-decoration:none}a.action-link{color:#999;font-size:11px;text-decoration:underline;margin-right:5px}a.action-link:hover{background-color:#313436;color:#eee}a[hreflang]:after{content:" (" attr(hreflang) ")"}ul{list-style-type:none;margin:0;padding:0}ul.horizontal li{display:inline}.pretty{white-space:inherit}.pretty.form-check-input{margin-left:0}.pretty .state label{text-indent:0;padding-left:2rem;line-height:1.4em}.pretty .state label:after,.pretty .state label:before{top:0}.markdown ul{list-style-type:disc;margin-left:15px;padding-left:0;margin-top:10px;margin-bottom:10px}.hidden{display:none}input:disabled{background-color:#999}.alert-success{margin:20px 0}.central-form{margin-top:40px}.central-form h2{font-weight:400;margin-bottom:20px;text-align:center}.central-form .offset-sm-3-right{margin-right:25%}.central-form .form-check-inline{margin-right:10px}.central-form .form-group>label:not(:first-child){margin-top:10px}.central-form input[type=radio]{margin-right:5px}.central-form .dates .form-inline{display:inline}.central-form .dates .form-inline input[type=number]{margin:0 10px;width:52px}.central-form .dates .form-inline input[type=date]{margin-left:20px;margin-top:10px}.central-form .form-group:not(:last-child){border-bottom:1px solid #eee;padding-bottom:20px}.central-form .nav{margin-top:40px}.breadcrumb{background-color:#fafafa}.breadcrumb ul{font-size:12px;padding:30px 0 24px}.breadcrumb ul li:not(:last-child):after{content:">";margin-left:5px;margin-right:1px}.table{border-collapse:collapse;display:table;width:100%}.table .table-row{border-left:1px solid #ddd;border-right:1px solid #ddd;border-top:1px solid #ddd;display:table-row}.table .table-row:first-child .table-cell:first-child{border-top-left-radius:3px}.table .table-row:first-child .table-cell:last-child{border-top-right-radius:3px}.table .table-row:last-child{border-bottom:1px solid #ddd}.table .table-row:hover{background-color:#fafafa}.table .table-cell{display:table-cell;padding:8px 10px}.table .table-header{color:#4a4a4a;background-color:#f2f4f8;font-size:1.1rem;font-weight:bolder}.table .audit-log-cell{font-size:.9rem}.full-page-modal{background:#fff;border:1px solid #eee;box-shadow:2px 0 6px rgba(0,0,0,.25);border-radius:12px}.full-page-modal .full-page-modal-year-selector.selected,.full-page-modal .full-page-modal-year-selector:hover{background-color:#fafafa}.full-page-modal-header{background:#fff;border-top-left-radius:12px;border-top-right-radius:12px}.column-list{-moz-column-count:3;column-count:3;-moz-column-gap:20px;column-gap:20px}.dt-row.hover:hover{background-color:#d7e3ec}.profile-edit-contact-button{right:20px;top:20px}table.vgt-table{font-size:14px}table.vgt-table td.vgt-table-date{padding-left:10px;vertical-align:middle;width:110px}table.vgt-table td.vgt-table-action .action-btn{border:1px solid transparent;display:inline;padding:0 8px 4px}table.vgt-table td.vgt-table-action .action-btn:hover{box-shadow:1px 0 1px rgba(43,45,80,.16),-1px 1px 1px rgba(43,45,80,.16),0 1px 4px rgba(43,45,80,.18);border-radius:3px}table.vgt-table th{padding-left:10px;font-size:13px}table.vgt-table td{padding-left:10px;font-size:14px}.vgt-wrap__footer{padding:3px 10px!important;background:linear-gradient(#fff,#fafafa)!important}footer .badge-success{font-size:12px;font-weight:400}footer .show-version{text-align:left}footer .show-version h2{font-size:16px}footer .show-version .note{margin-bottom:20px}footer .show-version .note ul{list-style-type:disc}footer .show-version .note li{display:block;font-size:15px;text-align:left}@media (max-width:480px){.sidebar-box{border:1px solid #dee2e6;border-radius:3px}.sidebar-box li{padding:5px}.column-list{-moz-column-count:1;column-count:1;-moz-column-gap:20px;column-gap:20px}.chart-activities span{margin:0 4px}}svg{vertical-align:baseline!important}.form-group-error{-webkit-animation-name:shake;animation-name:shake;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;z-index:99}.form-group-error .error{border-color:#d9534f!important;color:#f4c8b9}@-webkit-keyframes shake{0%,to{transform:translateX(0)}15%,45%,75%{transform:translateX(.375rem)}30%,60%,90%{transform:translateX(-.375rem)}}@keyframes shake{0%,to{transform:translateX(0)}15%,45%,75%{transform:translateX(.375rem)}30%,60%,90%{transform:translateX(-.375rem)}} diff --git a/public/css/app-rtl.css b/public/css/app-rtl.css deleted file mode 100644 index ab2fc528542..00000000000 --- a/public/css/app-rtl.css +++ /dev/null @@ -1,29 +0,0 @@ -.rtl{direction:rtl}.vdp-datepicker{position:relative;text-align:left}.vdp-datepicker *{box-sizing:border-box}.vdp-datepicker__calendar{position:absolute;z-index:100;background:#fff;width:300px;border:1px solid #ccc}.vdp-datepicker__calendar header{display:block;line-height:40px}.vdp-datepicker__calendar header span{display:inline-block;text-align:center;width:71.42857142857143%;float:left}.vdp-datepicker__calendar header .next,.vdp-datepicker__calendar header .prev{width:14.285714285714286%;float:left;text-indent:-10000px;position:relative}.vdp-datepicker__calendar header .next:after,.vdp-datepicker__calendar header .prev:after{content:"";position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);border:6px solid transparent}.vdp-datepicker__calendar header .prev:after{border-right:10px solid #000;margin-left:-5px}.vdp-datepicker__calendar header .prev.disabled:after{border-right:10px solid #ddd}.vdp-datepicker__calendar header .next:after{border-left:10px solid #000;margin-left:5px}.vdp-datepicker__calendar header .next.disabled:after{border-left:10px solid #ddd}.vdp-datepicker__calendar header .next:not(.disabled),.vdp-datepicker__calendar header .prev:not(.disabled),.vdp-datepicker__calendar header .up:not(.disabled){cursor:pointer}.vdp-datepicker__calendar header .next:not(.disabled):hover,.vdp-datepicker__calendar header .prev:not(.disabled):hover,.vdp-datepicker__calendar header .up:not(.disabled):hover{background:#eee}.vdp-datepicker__calendar .disabled{color:#ddd;cursor:default}.vdp-datepicker__calendar .flex-rtl{display:flex;width:inherit;flex-wrap:wrap}.vdp-datepicker__calendar .cell{display:inline-block;padding:0 5px;width:14.285714285714286%;height:40px;line-height:40px;text-align:center;vertical-align:middle;border:1px solid transparent}.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year{cursor:pointer}.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month:hover,.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year:hover{border:1px solid #4bd}.vdp-datepicker__calendar .cell.selected,.vdp-datepicker__calendar .cell.selected.highlighted,.vdp-datepicker__calendar .cell.selected:hover{background:#4bd}.vdp-datepicker__calendar .cell.highlighted{background:#cae5ed}.vdp-datepicker__calendar .cell.highlighted.disabled{color:#a3a3a3}.vdp-datepicker__calendar .cell.grey{color:#888}.vdp-datepicker__calendar .cell.grey:hover{background:inherit}.vdp-datepicker__calendar .cell.day-header{font-size:75%;white-space:nowrap;cursor:inherit}.vdp-datepicker__calendar .cell.day-header:hover{background:inherit}.vdp-datepicker__calendar .month,.vdp-datepicker__calendar .year{width:33.333%}.vdp-datepicker__calendar-button,.vdp-datepicker__clear-button{cursor:pointer;font-style:normal}.vdp-datepicker__calendar-button.disabled,.vdp-datepicker__clear-button.disabled{color:#999;cursor:default} -.vgt-table.striped tbody tr:nth-of-type(odd){background-color:rgba(51,68,109,.03)}.vgt-right-align{text-align:right}.vgt-left-align{text-align:left}.vgt-center-align{text-align:center}.vgt-pull-left{float:left!important}.vgt-pull-right{float:right!important}.vgt-clearfix:after{display:block;content:"";clear:both}.vgt-responsive{width:100%;overflow-x:auto;position:relative}.vgt-text-disabled{color:#909399}.sr-only{clip:rect(0 0 0 0);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}.vgt-wrap{position:relative}.vgt-fixed-header{position:absolute;z-index:10;overflow-x:auto}table.vgt-table{font-size:16px;border-collapse:collapse;background-color:#fff;width:100%;max-width:100%;table-layout:auto;border:1px solid #dcdfe6}table.vgt-table td{padding:.75em;vertical-align:top;border-bottom:1px solid #dcdfe6;color:#606266}table.vgt-table tr.clickable{cursor:pointer}table.vgt-table tr.clickable:hover{background-color:#f1f5fd}.vgt-table th{padding:.75em 1.5em .75em .75em;vertical-align:middle;position:relative}.vgt-table th.sortable button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;position:absolute;top:0;left:0;width:100%;height:100%}.vgt-table th.sortable button:focus{outline:0}.vgt-table th.sortable button:after{margin-top:-7px;border-bottom:5px solid #606266}.vgt-table th.sortable button:after,.vgt-table th.sortable button:before{content:"";position:absolute;height:0;width:0;right:6px;top:50%;border-left:5px solid transparent;border-right:5px solid transparent}.vgt-table th.sortable button:before{margin-bottom:-7px;border-top:5px solid #606266}.vgt-table th.line-numbers,.vgt-table th.vgt-checkbox-col{padding:0 .75em;color:#606266;border-right:1px solid #dcdfe6;word-wrap:break-word;width:25px;text-align:center;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-table th.filter-th{padding:.75em}.vgt-table th.vgt-row-header{border-bottom:2px solid #dcdfe6;border-top:2px solid #dcdfe6;background-color:#fafafb}.vgt-table th.vgt-row-header .triangle{width:24px;height:24px;border-radius:15%;position:relative;margin:0 8px}.vgt-table th.vgt-row-header .triangle:after{content:"";position:absolute;display:block;left:50%;top:50%;margin-top:-6px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:6px solid #606266;margin-left:-3px;transition:transform .3s ease}.vgt-table th.vgt-row-header .triangle.expand:after{transform:rotate(90deg)}.vgt-table thead th{color:#606266;vertical-align:bottom;border-bottom:1px solid #dcdfe6;padding-right:1.5em;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-table thead th.vgt-checkbox-col{vertical-align:middle}.vgt-table thead th.sorting-asc button:after{border-bottom:5px solid #409eff}.vgt-table thead th.sorting-desc button:before{border-top:5px solid #409eff}.vgt-input,.vgt-select{width:100%;height:32px;line-height:1;display:block;font-size:14px;font-weight:400;padding:6px 12px;color:#606266;border-radius:4px;box-sizing:border-box;background-image:none;background-color:#fff;border:1px solid #dcdfe6;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.vgt-input::-moz-placeholder, .vgt-select::-moz-placeholder{color:#606266;opacity:.3}.vgt-input:-ms-input-placeholder, .vgt-select:-ms-input-placeholder{color:#606266;opacity:.3}.vgt-input::placeholder,.vgt-select::placeholder{color:#606266;opacity:.3}.vgt-input:focus,.vgt-select:focus{outline:0;border-color:#409eff}.vgt-loading{position:absolute;width:100%;z-index:10;margin-top:117px}.vgt-loading__content{background-color:#c0dfff;color:#409eff;padding:7px 30px;border-radius:3px}.vgt-inner-wrap.is-loading{opacity:.5;pointer-events:none}.vgt-table.bordered td,.vgt-table.bordered th{border:1px solid #dcdfe6}.vgt-table.bordered th.vgt-row-header{border-bottom:3px solid #dcdfe6}.vgt-wrap.rtl{direction:rtl}.vgt-wrap.rtl .vgt-table.condensed thead th,.vgt-wrap.rtl .vgt-table thead th{padding-left:1.5em;padding-right:.75em}.vgt-wrap.rtl .vgt-table th.sorting-asc:after,.vgt-wrap.rtl .vgt-table th.sorting:after{margin-right:5px;margin-left:0}.vgt-wrap.rtl .vgt-table th.sortable:after,.vgt-wrap.rtl .vgt-table th.sortable:before{right:inherit;left:6px}.vgt-table.condensed td,.vgt-table.condensed th.vgt-row-header{padding:.4em}@media (max-width:576px){.vgt-compact *{box-sizing:border-box}.vgt-compact tbody,.vgt-compact td,.vgt-compact tr{display:block;width:100%}.vgt-compact thead{display:none}.vgt-compact tr{margin-bottom:15px}.vgt-compact td{text-align:right;position:relative}.vgt-compact td:before{content:attr(data-label);position:relative;float:left;left:0;width:40%;padding-left:10px;font-weight:700;text-align:left}.vgt-compact th.line-numbers{width:100%!important;display:block;padding:.3em 1em!important}}.vgt-global-search{padding:5px 0;display:flex;flex-wrap:nowrap;align-items:stretch;border:1px solid #dcdfe6;border-bottom:0;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-global-search form{display:flex}.vgt-global-search form label{margin-top:3px}.vgt-global-search__input{position:relative;padding-left:40px;flex-grow:1}.vgt-global-search__input .input__icon{position:absolute;left:0;max-width:32px}.vgt-global-search__input .input__icon .magnifying-glass{margin-top:3px;margin-left:8px;display:block;width:16px;height:16px;border:2px solid #494949;position:relative;border-radius:50%}.vgt-global-search__input .input__icon .magnifying-glass:before{content:"";display:block;position:absolute;right:-7px;bottom:-5px;background:#494949;width:8px;height:4px;border-radius:2px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg)}.vgt-global-search__actions{margin-left:10px}.vgt-selection-info-row{background:#fdf9e8;padding:5px 16px;font-size:13px;border-top:1px solid #dcdfe6;border-left:1px solid #dcdfe6;border-right:1px solid #dcdfe6;color:#d3aa3b;font-weight:700}.vgt-selection-info-row a{font-weight:700;display:inline-block;margin-left:10px}.vgt-wrap__actions-footer,.vgt-wrap__footer{border:1px solid #dcdfe6}.vgt-wrap__footer{color:#606266;font-size:1.1rem;padding:1em;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap__footer .footer__row-count__label,.vgt-wrap__footer .footer__row-count__select{display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__row-count__label{font-size:1.1rem}.vgt-wrap__footer .footer__row-count__select{font-size:1.1rem;background-color:transparent;width:auto;border:0;border-radius:0;height:auto;margin-left:8px;color:#606266;font-weight:700;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0 15px 0 5px}.vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap__footer .footer__row-count__select:focus{outline:0;border-color:#409eff}.vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border:6px solid transparent;border-top-color:#606266;border-bottom:none;pointer-events:none}.vgt-wrap__footer .footer__navigation{font-size:1.1rem}.vgt-wrap__footer .footer__navigation>button:first-of-type{margin-right:16px}.vgt-wrap__footer .footer__navigation__info,.vgt-wrap__footer .footer__navigation__page-btn,.vgt-wrap__footer .footer__navigation__page-info{display:inline-block;vertical-align:middle;color:#909399}.vgt-wrap__footer .footer__navigation__page-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;text-decoration:none;color:#606266;font-weight:700;white-space:nowrap;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-btn:hover{cursor:pointer}.vgt-wrap__footer .footer__navigation__page-btn.disabled,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover{opacity:.5;cursor:not-allowed}.vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#606266}.vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#606266}.vgt-wrap__footer .footer__navigation__page-btn span{display:inline-block;vertical-align:middle;font-size:1.1rem}.vgt-wrap__footer .footer__navigation__page-btn .chevron{width:24px;height:24px;border-radius:15%;position:relative;margin:0;display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-btn .chevron:after{content:"";position:absolute;display:block;left:50%;top:50%;margin-top:-6px;border-top:6px solid transparent;border-bottom:6px solid transparent}.vgt-wrap__footer .footer__navigation__page-btn .chevron.left:after{border-right:6px solid #409eff;margin-left:-3px}.vgt-wrap__footer .footer__navigation__page-btn .chevron.right:after{border-left:6px solid #409eff;margin-left:-3px}.vgt-wrap__footer .footer__navigation__info,.vgt-wrap__footer .footer__navigation__page-info{display:inline-block;margin:0 16px}.vgt-wrap__footer .footer__navigation__page-info span{display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-info__current-entry{width:30px;text-align:center;vertical-align:middle;display:inline-block;margin:0 10px;font-weight:700}@media only screen and (max-width:750px){.vgt-wrap__footer .footer__navigation__info{display:none}.vgt-wrap__footer .footer__navigation__page-btn{margin-left:16px}}.vgt-table.nocturnal{border:1px solid #435169;background-color:#324057}.vgt-table.nocturnal tr.clickable:hover{background-color:#445168}.vgt-table.nocturnal td{border-bottom:1px solid #435169;color:#c7ced8}.vgt-table.nocturnal th.line-numbers,.vgt-table.nocturnal th.vgt-checkbox-col{color:#c7ced8;border-right:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-table.nocturnal thead th{color:#c7ced8;border-bottom:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-table.nocturnal thead th.sortable:before{border-top-color:#3e5170}.vgt-table.nocturnal thead th.sortable:after{border-bottom-color:#3e5170}.vgt-table.nocturnal thead th.sortable.sorting-asc{color:#fff}.vgt-table.nocturnal thead th.sortable.sorting-asc:after{border-bottom-color:#409eff}.vgt-table.nocturnal thead th.sortable.sorting-desc{color:#fff}.vgt-table.nocturnal thead th.sortable.sorting-desc:before{border-top-color:#409eff}.vgt-table.nocturnal.bordered td,.vgt-table.nocturnal.bordered th{border:1px solid #435169}.vgt-table.nocturnal .vgt-input,.vgt-table.nocturnal .vgt-select{color:#c7ced8;background-color:#232d3f;border:1px solid #435169}.vgt-table.nocturnal .vgt-input::-moz-placeholder, .vgt-table.nocturnal .vgt-select::-moz-placeholder{color:#c7ced8;opacity:.3}.vgt-table.nocturnal .vgt-input:-ms-input-placeholder, .vgt-table.nocturnal .vgt-select:-ms-input-placeholder{color:#c7ced8;opacity:.3}.vgt-table.nocturnal .vgt-input::placeholder,.vgt-table.nocturnal .vgt-select::placeholder{color:#c7ced8;opacity:.3}.vgt-wrap.nocturnal .vgt-wrap__footer{color:#c7ced8;border:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count{position:relative}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__label{color:#8290a7}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__select{color:#c7ced8;background:#232d3f;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:15px;padding-left:10px;border-radius:3px;text-align:center}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__select:focus{border-color:#409eff}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border:6px solid transparent;border-top-color:#c7ced8;border-bottom:none;pointer-events:none}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn{color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-info{color:#8290a7}.vgt-wrap.nocturnal .vgt-global-search{border:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-wrap.nocturnal .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #3f4c63}.vgt-wrap.nocturnal .vgt-global-search__input .input__icon .magnifying-glass:before{background:#3f4c63}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input,.vgt-wrap.nocturnal .vgt-global-search__input .vgt-select{color:#c7ced8;background-color:#232d3f;border:1px solid #435169}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input::-moz-placeholder, .vgt-wrap.nocturnal .vgt-global-search__input .vgt-select::-moz-placeholder{color:#c7ced8;opacity:.3}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input:-ms-input-placeholder, .vgt-wrap.nocturnal .vgt-global-search__input .vgt-select:-ms-input-placeholder{color:#c7ced8;opacity:.3}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.nocturnal .vgt-global-search__input .vgt-select::placeholder{color:#c7ced8;opacity:.3}.vgt-table.black-rhino{border:1px solid #435169;background-color:#dfe5ee}.vgt-table.black-rhino tr.clickable:hover{background-color:#fff}.vgt-table.black-rhino td{border-bottom:1px solid #bbc5d6;color:#49515e}.vgt-table.black-rhino th.line-numbers,.vgt-table.black-rhino th.vgt-checkbox-col{color:#dae2f0;border-right:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-table.black-rhino thead th{color:#dae2f0;text-shadow:1px 1px #3e5170;border-bottom:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-table.black-rhino thead th.sortable:before{border-top-color:#607498}.vgt-table.black-rhino thead th.sortable:after{border-bottom-color:#607498}.vgt-table.black-rhino thead th.sortable.sorting-asc{color:#fff}.vgt-table.black-rhino thead th.sortable.sorting-asc:after{border-bottom-color:#409eff}.vgt-table.black-rhino thead th.sortable.sorting-desc:before{border-top-color:#409eff}.vgt-table.black-rhino.bordered td{border:1px solid #bbc5d6}.vgt-table.black-rhino.bordered th{border:1px solid #435169}.vgt-table.black-rhino .vgt-input,.vgt-table.black-rhino .vgt-select{color:#dae2f0;background-color:#34445f;border:1px solid transparent}.vgt-table.black-rhino .vgt-input::-moz-placeholder, .vgt-table.black-rhino .vgt-select::-moz-placeholder{color:#dae2f0;opacity:.3}.vgt-table.black-rhino .vgt-input:-ms-input-placeholder, .vgt-table.black-rhino .vgt-select:-ms-input-placeholder{color:#dae2f0;opacity:.3}.vgt-table.black-rhino .vgt-input::placeholder,.vgt-table.black-rhino .vgt-select::placeholder{color:#dae2f0;opacity:.3}.vgt-wrap.black-rhino .vgt-wrap__footer{color:#dae2f0;border:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__label{color:#98a5b9}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select{color:#49515e;background:#34445f;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:15px;padding-left:5px;border-radius:3px}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select:focus{border-color:#409eff}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border:6px solid transparent;border-top-color:#49515e;border-bottom:none;pointer-events:none}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn{color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-info{color:#dae2f0}.vgt-wrap.black-rhino .vgt-global-search{border:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-wrap.black-rhino .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #3f4c63}.vgt-wrap.black-rhino .vgt-global-search__input .input__icon .magnifying-glass:before{background:#3f4c63}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input,.vgt-wrap.black-rhino .vgt-global-search__input .vgt-select{color:#dae2f0;background-color:#44516c;border:1px solid transparent}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input::-moz-placeholder, .vgt-wrap.black-rhino .vgt-global-search__input .vgt-select::-moz-placeholder{color:#dae2f0;opacity:.3}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input:-ms-input-placeholder, .vgt-wrap.black-rhino .vgt-global-search__input .vgt-select:-ms-input-placeholder{color:#dae2f0;opacity:.3}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.black-rhino .vgt-global-search__input .vgt-select::placeholder{color:#dae2f0;opacity:.3}.vgt-inner-wrap{border-radius:.25rem;box-shadow:0 1px 3px 0 rgba(50,50,93,.1),0 1px 2px 0 rgba(50,50,93,.06)}.vgt-table.polar-bear{border-spacing:0;border-collapse:separate;font-size:1rem;background-color:#fff;border:1px solid #e3e8ee;border-bottom:none;border-radius:.25rem}.vgt-table.polar-bear td{padding:1em .75em;border-bottom:1px solid #e4ebf3;color:#525f7f}.vgt-table.polar-bear td.vgt-right-align{text-align:right}.vgt-table.polar-bear th.line-numbers,.vgt-table.polar-bear th.vgt-checkbox-col{color:#394567;border-right:1px solid #e3e8ee;background:#f7fafc}.vgt-table.polar-bear thead th{color:#667b94;font-weight:600;border-bottom:1px solid #e3e8ee;background:#f7fafc}.vgt-table.polar-bear thead th.sorting-asc,.vgt-table.polar-bear thead th.sorting-desc{color:#5e72e4}.vgt-table.polar-bear thead th.sorting-desc:before{border-top:5px solid #7485e8}.vgt-table.polar-bear thead th.sorting-asc:after{border-bottom:5px solid #7485e8}.vgt-table.polar-bear thead th .vgt-input,.vgt-table.polar-bear thead th .vgt-select{height:2.75em;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-table.polar-bear thead th .vgt-input:focus,.vgt-table.polar-bear thead th .vgt-select:focus{outline:0;border-color:#cae0fe}.vgt-table.polar-bear thead tr:first-child th:first-child{border-top-left-radius:.25rem}.vgt-table.polar-bear thead tr:first-child th:last-child{border-top-right-radius:.25rem}.vgt-table.polar-bear.bordered td{border:1px solid #e3e8ee;background:#fff}.vgt-table.polar-bear.bordered th{border:1px solid #e3e8ee}.vgt-wrap.polar-bear .vgt-wrap__footer{color:#394567;border:1px solid #e3e8ee;border-bottom:0;border-top:0;background:linear-gradient(#f7fafc,#f7fafc)}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__label{color:#98a5b9}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select{text-align:center;color:#525f7f;background:#fff;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:5px 30px 5px 5px;border-radius:3px;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select:focus{border-color:#5e72e4}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count:after{content:"";display:block;position:absolute;height:0;width:0;right:15px;top:50%;margin-top:-3px;border:6px solid transparent;border-top-color:#525f7f;border-bottom:none;pointer-events:none}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn{color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-info{color:#394567}.vgt-wrap.polar-bear .vgt-global-search{border:1px solid #e3e8ee;border-bottom:0;border-top-left-radius:3px;border-top-right-radius:3px;background:#f7fafc}.vgt-wrap.polar-bear .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #dde3ea}.vgt-wrap.polar-bear .vgt-global-search__input .input__icon .magnifying-glass:before{background:#dde3ea}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input,.vgt-wrap.polar-bear .vgt-global-search__input .vgt-select{height:2.75em;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input::-moz-placeholder, .vgt-wrap.polar-bear .vgt-global-search__input .vgt-select::-moz-placeholder{color:#394567;opacity:.3}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input:-ms-input-placeholder, .vgt-wrap.polar-bear .vgt-global-search__input .vgt-select:-ms-input-placeholder{color:#394567;opacity:.3}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.polar-bear .vgt-global-search__input .vgt-select::placeholder{color:#394567;opacity:.3} -@charset "UTF-8";html{font-size:14px} - -/*! - * Bootstrap Reboot v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) - */*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;-webkit-tap-highlight-color:rgba(0,0,0,0)}footer,header,main,nav,section{display:block}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}h1,h2,h3,h4,h5{margin-top:0;margin-bottom:.5rem}p{margin-top:0}address,p{margin-bottom:1rem}address{font-style:normal;line-height:inherit}ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}a{color:#007bff;text-decoration:none}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{font-size:inherit;line-height:inherit}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}[type=search]{-webkit-appearance:none}output{display:inline-block}summary{cursor:pointer}template{display:none}[hidden]{display:none!important} - -/*! - * Bootstrap Grid v4.6.0 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,:after,:before{box-sizing:inherit}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.col-12,.col-md-3,.col-md-4,.col-md-6,.col-md-9,.col-md-auto,.col-sm-3,.col-sm-6,.col-sm-8,.col-sm-9{position:relative;width:100%;padding-right:15px;padding-left:15px}.col-12{flex:0 0 100%;max-width:100%}@media (min-width:576px){.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-9{flex:0 0 75%;max-width:75%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}}.flex-column{flex-direction:column!important}.flex-wrap{flex-wrap:wrap!important}.flex-grow-1{flex-grow:1!important}.mt-2{margin-top:.5rem!important}.mb-4{margin-bottom:1.5rem!important}.table{margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}}.dropdown{position:relative}.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,.15);border-radius:.25rem}.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:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.nav{flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.card,.nav{display:flex}.card{position:relative;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-link{font-weight:700}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.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:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}}@media print{*,:after,:before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}pre{white-space:pre-wrap!important;border:1px solid #adb5bd}img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:992px!important}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}} -/*! Hint.css - v2.6.0 - 2019-04-27 -* http://kushagragour.in/lab/hint/ -* Copyright (c) 2019 Kushagra Gour */ - -/*! TACHYONS v4.12.0 | http://tachyons.io */ -/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}b,strong{font-weight:bolder}code,kbd{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}details{display:block}summary{display:list-item}[hidden],template{display:none}a,body,code,dd,div,dt,fieldset,footer,form,h1,h2,h3,h4,h5,header,html,input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],li,main,nav,ol,p,pre,section,table,td,textarea,th,tr,ul{box-sizing:border-box}img{max-width:100%}.cover{background-size:cover!important}.contain{background-size:contain!important}.bg-center{background-position:50%;background-repeat:no-repeat}.outline-0{outline:0}.ba{border-style:solid;border-width:1px}.bt{border-top-style:solid;border-top-width:1px}.br{border-right-style:solid;border-right-width:1px}.bb{border-bottom-style:solid;border-bottom-width:1px}.bl{border-left-style:solid;border-left-width:1px}.b--moon-gray{border-color:#ccc}.b--light-gray{border-color:#eee}.b--near-white{border-color:#f4f4f4}.b--black-40{border-color:rgba(0,0,0,.4)}.b--black-30{border-color:rgba(0,0,0,.3)}.b--black-20{border-color:rgba(0,0,0,.2)}.b--black-10{border-color:rgba(0,0,0,.1)}.b--yellow{border-color:gold}.b--purple{border-color:#5e2ca5}.br1{border-radius:.125rem}.br2{border-radius:.25rem}.br3{border-radius:.5rem}.br4{border-radius:1rem}.br--bottom{border-top-left-radius:0;border-top-right-radius:0}.br--top{border-bottom-right-radius:0}.br--right,.br--top{border-bottom-left-radius:0}.br--right{border-top-left-radius:0}.br--left{border-top-right-radius:0;border-bottom-right-radius:0}.bw1{border-width:.125rem}.bt-0{border-top-width:0}.br-0{border-right-width:0}.bl-0{border-left-width:0}.pre{overflow-x:auto;overflow-y:hidden;overflow:scroll}.top-0{top:0}.left-0{left:0}.cf:after,.cf:before{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.cl{clear:left}.cr{clear:right}.cb{clear:both}.dn{display:none}.di{display:inline}.db{display:block}.dib{display:inline-block}.dit{display:inline-table}.dt{display:table}.dtc{display:table-cell}.dt-row{display:table-row}.dt--fixed{table-layout:fixed;width:100%}.flex{display:flex}.inline-flex{display:inline-flex}.flex-auto{flex:1 1 auto;min-width:0;min-height:0}.flex-none{flex:none}.flex-column{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.flex-grow-1{flex-grow:1}.fl{float:left}.fl,.fr{_display:inline}.fr{float:right}.sans-serif{font-family:-apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif}.code,code{font-family:Consolas,monaco,monospace}.avenir{font-family:avenir next,avenir,sans-serif}.times{font-family:times,serif}.i{font-style:italic}.normal{font-weight:400}.b{font-weight:700}.fw4{font-weight:400}.fw5{font-weight:500}.fw6{font-weight:600}.h1{height:1rem}.h2{height:2rem}.h3{height:4rem}.h4{height:8rem}.h5{height:16rem}.h-100{height:100%}.min-vh-100{min-height:100vh}.h-auto{height:auto}.lh-title{line-height:1.25}.lh-copy{line-height:1.5}.link{text-decoration:none}.link,.link:active,.link:focus,.link:hover,.link:link,.link:visited{transition:color .15s ease-in}.link:focus{outline:1px dotted currentColor}.list{list-style-type:none}.mw-100{max-width:100%}.mw6{max-width:32rem}.mw7{max-width:48rem}.mw8{max-width:64rem}.mw9{max-width:96rem}.w3{width:4rem}.w-10{width:10%}.w-20{width:20%}.w-30{width:30%}.w-50{width:50%}.w-60{width:60%}.w-70{width:70%}.w-75{width:75%}.w-80{width:80%}.w-90{width:90%}.w-100{width:100%}.w-third{width:33.33333%}.overflow-hidden{overflow:hidden}.overflow-auto{overflow:auto}.overflow-y-scroll{overflow-y:scroll}.static{position:static}.relative{position:relative}.absolute{position:absolute}.o-0{opacity:0}.black-70{color:rgba(0,0,0,.7)}.black-60{color:rgba(0,0,0,.6)}.black-50{color:rgba(0,0,0,.5)}.black{color:#000}.gray{color:#777}.silver{color:#999}.light-silver{color:#aaa}.moon-gray{color:#ccc}.white{color:#fff}.red{color:#ff4136}.orange{color:#ff6300}.green{color:#19a974}.dark-blue{color:#00449e}.blue{color:#357edd}.bg-black-05{background-color:rgba(0,0,0,.05)}.bg-near-white{background-color:#f4f4f4}.bg-white{background-color:#fff}.bg-light-green{background-color:#9eebcf}.bg-washed-yellow{background-color:#fffceb}.pa0{padding:0}.pa1{padding:.25rem}.pa2{padding:.5rem}.pa3{padding:1rem}.pa4{padding:2rem}.pa5{padding:4rem}.pl0{padding-left:0}.pl2{padding-left:.5rem}.pl3{padding-left:1rem}.pl4{padding-left:2rem}.pr1{padding-right:.25rem}.pr2{padding-right:.5rem}.pr3{padding-right:1rem}.pb0{padding-bottom:0}.pb1{padding-bottom:.25rem}.pb2{padding-bottom:.5rem}.pb3{padding-bottom:1rem}.pb4{padding-bottom:2rem}.pt0{padding-top:0}.pt1{padding-top:.25rem}.pt2{padding-top:.5rem}.pt3{padding-top:1rem}.pt4{padding-top:2rem}.pt5{padding-top:4rem}.pv1{padding-top:.25rem;padding-bottom:.25rem}.pv2{padding-top:.5rem;padding-bottom:.5rem}.pv3{padding-top:1rem;padding-bottom:1rem}.pv4{padding-top:2rem;padding-bottom:2rem}.ph2{padding-left:.5rem;padding-right:.5rem}.ph3{padding-left:1rem;padding-right:1rem}.ph4{padding-left:2rem;padding-right:2rem}.ma0{margin:0}.ml1{margin-left:.25rem}.ml2{margin-left:.5rem}.ml3{margin-left:1rem}.ml4{margin-left:2rem}.ml5{margin-left:4rem}.mr1{margin-right:.25rem}.mr2{margin-right:.5rem}.mr3{margin-right:1rem}.mr4{margin-right:2rem}.mr5{margin-right:4rem}.mb0{margin-bottom:0}.mb1{margin-bottom:.25rem}.mb2{margin-bottom:.5rem}.mb3{margin-bottom:1rem}.mb4{margin-bottom:2rem}.mb5{margin-bottom:4rem}.mb6{margin-bottom:8rem}.mt1{margin-top:.25rem}.mt2{margin-top:.5rem}.mt3{margin-top:1rem}.mt4{margin-top:2rem}.mt5{margin-top:4rem}.nt2{margin-top:-.5rem}.collapse{border-collapse:collapse;border-spacing:0}.no-underline{text-decoration:none}.tl{text-align:left}.tr{text-align:right}.tc{text-align:center}.tj{text-align:justify}.ttu{text-transform:uppercase}.f1{font-size:3rem}.f2{font-size:2.25rem}.f3{font-size:1.5rem}.f4{font-size:1.25rem}.f5{font-size:1rem}.f6{font-size:.875rem}.f7{font-size:.75rem}.measure{max-width:30em}.center{margin-left:auto;margin-right:auto}.pre{white-space:pre}.v-mid{vertical-align:middle}.hide-child .child{opacity:0;transition:opacity .15s ease-in}.hide-child:active .child,.hide-child:focus .child,.hide-child:hover .child{opacity:1;transition:opacity .15s ease-in}.pointer:hover{cursor:pointer}.z-3{z-index:3}.z-9999{z-index:9999}.z-max{z-index:2147483647}@media screen and (min-width:30em){.bl-ns{border-left-style:solid;border-left-width:1px}.dn-ns{display:none}.di-ns{display:inline}.dib-ns{display:inline-block}.dt-ns{display:table}.dtc-ns{display:table-cell}.flex-ns{display:flex}.fl-ns{float:left}.fl-ns,.fr-ns{_display:inline}.fr-ns{float:right}.w-20-ns{width:20%}.w-25-ns{width:25%}.w-30-ns{width:30%}.w-40-ns{width:40%}.w-50-ns{width:50%}.w-70-ns{width:70%}.w-75-ns{width:75%}.w-100-ns{width:100%}.w-third-ns{width:33.33333%}.w-auto-ns{width:auto}.absolute-ns{position:absolute}.pa0-ns{padding:0}.pa3-ns{padding:1rem}.pa4-ns{padding:2rem}.pr2-ns{padding-right:.5rem}.pb0-ns{padding-bottom:0}.ph0-ns{padding-left:0;padding-right:0}.ph2-ns{padding-left:.5rem;padding-right:.5rem}.ph4-ns{padding-left:2rem;padding-right:2rem}.ph5-ns{padding-left:4rem;padding-right:4rem}.ml3-ns{margin-left:1rem}.ml4-ns{margin-left:2rem}.mr3-ns{margin-right:1rem}.mb0-ns{margin-bottom:0}.mb3-ns{margin-bottom:1rem}.mb5-ns{margin-bottom:4rem}.mt0-ns{margin-top:0}.mt2-ns{margin-top:.5rem}.mt6-ns{margin-top:8rem}.tc-ns{text-align:center}}@media screen and (min-width:60em){.dn-l{display:none}.dib-l{display:inline-block}.dtc-l{display:table-cell}.w-50-l{width:50%}.w-60-l{width:60%}.tr-l{text-align:right}} - -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?8b43027f47b20503057dfbbaa9401fef);src:url(../fonts/vendor/font-awesome/fontawesome-webfont.eot?8b43027f47b20503057dfbbaa9401fef) format("embedded-opentype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff2?20fd1704ea223900efa9fd4e869efb08) format("woff2"),url(../fonts/vendor/font-awesome/fontawesome-webfont.woff?f691f37e57f04c152e2315ab7dbad881) format("woff"),url(../fonts/vendor/font-awesome/fontawesome-webfont.ttf?1e59d2330b4c6deb84b340635ed36249) format("truetype"),url(../fonts/vendor/font-awesome/fontawesome-webfont.svg?c1e38fd9e0e74ba58f7a2b77ef29fdd3) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857em;text-align:center}.fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}.fa-li.fa-lg{left:-1.8571428571em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.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}.vue-tooltip{background-color:#000;box-sizing:border-box;color:#fff;max-width:320px;padding:6px 10px;border-radius:3px;z-index:100;box-shadow:2px 2px 3px rgba(0,0,0,.4)}.vue-tooltip.vue-tooltip-hidden{transform:translateX(-100000px)!important}.vue-tooltip .vue-tooltip-content{text-align:center}.vue-tooltip .tooltip-arrow{content:"";width:0;height:0;border-style:solid;position:absolute;margin:5px}.vue-tooltip[x-out-of-boundaries]{display:none}.vue-tooltip[x-placement^=bottom]{margin-top:5px}.vue-tooltip[x-placement^=bottom] .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;border-top-color:transparent!important;border-left-color:transparent!important;border-right-color:transparent!important;top:-5px;margin-top:0;margin-bottom:0}.vue-tooltip[x-placement^=top]{margin-bottom:5px}.vue-tooltip[x-placement^=top] .tooltip-arrow{border-width:5px 5px 0;border-top-color:#000;border-bottom-color:transparent!important;border-left-color:transparent!important;border-right-color:transparent!important;bottom:-5px;margin-top:0;margin-bottom:0}.vue-tooltip[x-placement^=right]{margin-left:5px}.vue-tooltip[x-placement^=right] .tooltip-arrow{border-width:5px 5px 5px 0;border-right-color:#000;border-top-color:transparent!important;border-left-color:transparent!important;border-bottom-color:transparent!important;left:-5px;margin-left:0;margin-right:0}.vue-tooltip[x-placement^=left]{margin-right:5px}.vue-tooltip[x-placement^=left] .tooltip-arrow{border-width:5px 0 5px 5px;border-left-color:#000;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important;right:-5px;margin-left:0;margin-right:0}.pretty *{box-sizing:border-box}.pretty input:not([type=checkbox]):not([type=radio]){display:none}.pretty{position:relative;display:inline-block;margin-right:1em;white-space:nowrap;line-height:1}.pretty input{position:absolute;left:0;top:0;min-width:1em;width:100%;height:100%;z-index:2;opacity:0;margin:0;padding:0;cursor:pointer}.pretty .state label{position:static;display:inline-block;font-weight:400;margin:0;text-indent:1.5em;min-width:calc(1em + 2px)}.pretty .state label:after,.pretty .state label:before{content:"";width:calc(1em + 2px);height:calc(1em + 2px);display:block;box-sizing:border-box;border-radius:0;border:1px solid transparent;z-index:0;position:absolute;left:0;top:calc(-108% + 1em);background-color:transparent}.pretty .state label:before{border-color:#bdc3c7}.pretty .state.p-is-hover,.pretty .state.p-is-indeterminate{display:none}@-webkit-keyframes zoom{0%{opacity:0;transform:scale(0)}}@keyframes zoom{0%{opacity:0;transform:scale(0)}}@-webkit-keyframes tada{0%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.5)}72%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}81%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.24)}89%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}95%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.04)}to{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}}@keyframes tada{0%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0;transform:scale(7)}38%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:1;transform:scale(1)}55%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.5)}72%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}81%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.24)}89%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}95%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;transform:scale(1.04)}to{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;transform:scale(1)}}@-webkit-keyframes jelly{0%{transform:scaleX(1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}to{transform:scaleX(1)}}@keyframes jelly{0%{transform:scaleX(1)}30%{transform:scale3d(.75,1.25,1)}40%{transform:scale3d(1.25,.75,1)}50%{transform:scale3d(.85,1.15,1)}65%{transform:scale3d(1.05,.95,1)}75%{transform:scale3d(.95,1.05,1)}to{transform:scaleX(1)}}@-webkit-keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}to{opacity:1;transform:translateZ(0) rotate(0)}}@keyframes rotate{0%{opacity:0;transform:translateZ(-200px) rotate(-45deg)}to{opacity:1;transform:translateZ(0) rotate(0)}}.pretty.p-default.p-fill .state label:after{transform:scale(1)}.pretty.p-default .state label:after{transform:scale(.6)}.pretty.p-default input:checked~.state label:after{background-color:#bdc3c7!important}.pretty.p-default.p-thick .state label:after,.pretty.p-default.p-thick .state label:before{border-width:.14286em}.pretty.p-default.p-thick .state label:after{transform:scale(.4)!important}.pretty.p-icon .state .icon{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc(-108% + 1em);border:1px solid transparent;opacity:0}.pretty.p-icon .state .icon:before{margin:0;width:100%;height:100%;text-align:center;display:flex;flex:1;justify-content:center;align-items:center;line-height:1}.pretty.p-icon input:checked~.state .icon{opacity:1}.pretty.p-icon input:checked~.state label:before{border-color:#5a656b}.pretty.p-svg .state .svg{position:absolute;font-size:1em;width:calc(1em + 2px);height:calc(1em + 2px);left:0;z-index:1;text-align:center;line-height:normal;top:calc(-108% + 1em);border:1px solid transparent;opacity:0}.pretty.p-svg .state svg{margin:0;width:100%;height:100%;text-align:center;display:flex;flex:1;justify-content:center;align-items:center;line-height:1}.pretty.p-svg input:checked~.state .svg{opacity:1}.pretty.p-image .state img{opacity:0;position:absolute;width:calc(1em + 2px);height:calc(1em + 2px);top:0;top:calc(-108% + 1em);left:0;z-index:0;text-align:center;line-height:normal;transform:scale(.8)}.pretty.p-image input:checked~.state img{opacity:1}.pretty.p-switch input{min-width:2em}.pretty.p-switch .state{position:relative}.pretty.p-switch .state:before{content:"";border:1px solid #bdc3c7;border-radius:60px;width:2em;box-sizing:unset;height:calc(1em + 2px);position:absolute;top:0;top:calc(-116% + 1em);z-index:0;transition:all .5s ease}.pretty.p-switch .state label{text-indent:2.5em}.pretty.p-switch .state label:after,.pretty.p-switch .state label:before{transition:all .5s ease;border-radius:100%;left:0;border-color:transparent;transform:scale(.8)}.pretty.p-switch .state label:after{background-color:#bdc3c7!important}.pretty.p-switch input:checked~.state:before{border-color:#5a656b}.pretty.p-switch input:checked~.state label:before{opacity:0}.pretty.p-switch input:checked~.state label:after{background-color:#5a656b!important;left:1em}.pretty.p-switch.p-fill input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-switch.p-fill input:checked~.state label:before{opacity:0}.pretty.p-switch.p-fill input:checked~.state label:after{background-color:#fff!important;left:1em}.pretty.p-switch.p-slim .state:before{height:.1em;background:#bdc3c7!important;top:calc(50% - .1em)}.pretty.p-switch.p-slim input:checked~.state:before{border-color:#5a656b;background-color:#5a656b!important}.pretty.p-has-hover input:hover~.state:not(.p-is-hover){display:none}.pretty.p-has-hover input:hover~.state.p-is-hover,.pretty.p-has-hover input:hover~.state.p-is-hover .icon{display:block}.pretty.p-has-focus input:focus~.state label:before{box-shadow:0 0 3px 0 #bdc3c7}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state:not(.p-is-indeterminate){display:none}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate{display:block}.pretty.p-has-indeterminate input[type=checkbox]:indeterminate~.state.p-is-indeterminate .icon{display:block;opacity:1}.pretty.p-toggle .state.p-on{opacity:0;display:none}.pretty.p-toggle .state .icon,.pretty.p-toggle .state.p-off,.pretty.p-toggle .state .svg,.pretty.p-toggle .state img{opacity:1;display:inherit}.pretty.p-toggle .state.p-off .icon{color:#bdc3c7}.pretty.p-toggle input:checked~.state.p-on{opacity:1;display:inherit}.pretty.p-toggle input:checked~.state.p-off{opacity:0;display:none}.pretty.p-plain.p-toggle .state label:before,.pretty.p-plain input:checked~.state label:before{content:none}.pretty.p-plain.p-plain .icon{transform:scale(1.1)}.pretty.p-round .state label:after,.pretty.p-round .state label:before{border-radius:100%}.pretty.p-round.p-icon .state .icon{border-radius:100%;overflow:hidden}.pretty.p-round.p-icon .state .icon:before{transform:scale(.8)}.pretty.p-curve .state label:after,.pretty.p-curve .state label:before{border-radius:20%}.pretty.p-smooth .icon,.pretty.p-smooth .svg,.pretty.p-smooth label:after,.pretty.p-smooth label:before{transition:all .5s ease}.pretty.p-smooth input:checked+.state label:after{transition:all .3s ease}.pretty.p-smooth.p-default input:checked+.state label:after,.pretty.p-smooth input:checked+.state .icon,.pretty.p-smooth input:checked+.state .svg,.pretty.p-smooth input:checked+.state img{-webkit-animation:zoom .2s ease;animation:zoom .2s ease}.pretty.p-smooth.p-plain input:checked+.state label:before{content:"";transform:scale(0);transition:all .5s ease}.pretty.p-tada:not(.p-default) input:checked+.state .icon,.pretty.p-tada:not(.p-default) input:checked+.state .svg,.pretty.p-tada:not(.p-default) input:checked+.state img,.pretty.p-tada:not(.p-default) input:checked+.state label:after,.pretty.p-tada:not(.p-default) input:checked+.state label:before{-webkit-animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;animation:tada .7s cubic-bezier(.25,.46,.45,.94) 1 alternate;opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state .icon,.pretty.p-jelly:not(.p-default) input:checked+.state .svg,.pretty.p-jelly:not(.p-default) input:checked+.state img,.pretty.p-jelly:not(.p-default) input:checked+.state label:after,.pretty.p-jelly:not(.p-default) input:checked+.state label:before{-webkit-animation:jelly .7s cubic-bezier(.25,.46,.45,.94);animation:jelly .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-jelly:not(.p-default) input:checked+.state label:before{border-color:transparent}.pretty.p-rotate:not(.p-default) input:checked~.state .icon,.pretty.p-rotate:not(.p-default) input:checked~.state .svg,.pretty.p-rotate:not(.p-default) input:checked~.state img,.pretty.p-rotate:not(.p-default) input:checked~.state label:after,.pretty.p-rotate:not(.p-default) input:checked~.state label:before{-webkit-animation:rotate .7s cubic-bezier(.25,.46,.45,.94);animation:rotate .7s cubic-bezier(.25,.46,.45,.94);opacity:1}.pretty.p-rotate:not(.p-default) input:checked~.state label:before{border-color:transparent}.pretty.p-pulse:not(.p-switch) input:checked~.state label:before{-webkit-animation:pulse 1s;animation:pulse 1s}.pretty input[disabled]{cursor:not-allowed;display:none}.pretty input[disabled]~*{opacity:.5}.pretty.p-locked input{display:none;cursor:not-allowed}.pretty.p-toggle .state.p-primary label:after,.pretty input:checked~.state.p-primary label:after{background-color:#428bca!important}.pretty.p-toggle .state.p-primary .icon,.pretty.p-toggle .state.p-primary .svg,.pretty input:checked~.state.p-primary .icon,.pretty input:checked~.state.p-primary .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-primary-o label:before,.pretty input:checked~.state.p-primary-o label:before{border-color:#428bca}.pretty.p-toggle .state.p-primary-o label:after,.pretty input:checked~.state.p-primary-o label:after{background-color:transparent}.pretty.p-toggle .state.p-primary-o .icon,.pretty.p-toggle .state.p-primary-o .svg,.pretty.p-toggle .state.p-primary-o svg,.pretty input:checked~.state.p-primary-o .icon,.pretty input:checked~.state.p-primary-o .svg,.pretty input:checked~.state.p-primary-o svg{color:#428bca;stroke:#428bca}.pretty.p-default:not(.p-fill) input:checked~.state.p-primary-o label:after{background-color:#428bca!important}.pretty.p-switch input:checked~.state.p-primary:before{border-color:#428bca}.pretty.p-switch.p-fill input:checked~.state.p-primary:before{background-color:#428bca!important}.pretty.p-switch.p-slim input:checked~.state.p-primary:before{border-color:#245682;background-color:#245682!important}.pretty.p-toggle .state.p-info label:after,.pretty input:checked~.state.p-info label:after{background-color:#5bc0de!important}.pretty.p-toggle .state.p-info .icon,.pretty.p-toggle .state.p-info .svg,.pretty input:checked~.state.p-info .icon,.pretty input:checked~.state.p-info .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-info-o label:before,.pretty input:checked~.state.p-info-o label:before{border-color:#5bc0de}.pretty.p-toggle .state.p-info-o label:after,.pretty input:checked~.state.p-info-o label:after{background-color:transparent}.pretty.p-toggle .state.p-info-o .icon,.pretty.p-toggle .state.p-info-o .svg,.pretty.p-toggle .state.p-info-o svg,.pretty input:checked~.state.p-info-o .icon,.pretty input:checked~.state.p-info-o .svg,.pretty input:checked~.state.p-info-o svg{color:#5bc0de;stroke:#5bc0de}.pretty.p-default:not(.p-fill) input:checked~.state.p-info-o label:after{background-color:#5bc0de!important}.pretty.p-switch input:checked~.state.p-info:before{border-color:#5bc0de}.pretty.p-switch.p-fill input:checked~.state.p-info:before{background-color:#5bc0de!important}.pretty.p-switch.p-slim input:checked~.state.p-info:before{border-color:#2390b0;background-color:#2390b0!important}.pretty.p-toggle .state.p-success label:after,.pretty input:checked~.state.p-success label:after{background-color:#5cb85c!important}.pretty.p-toggle .state.p-success .icon,.pretty.p-toggle .state.p-success .svg,.pretty input:checked~.state.p-success .icon,.pretty input:checked~.state.p-success .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-success-o label:before,.pretty input:checked~.state.p-success-o label:before{border-color:#5cb85c}.pretty.p-toggle .state.p-success-o label:after,.pretty input:checked~.state.p-success-o label:after{background-color:transparent}.pretty.p-toggle .state.p-success-o .icon,.pretty.p-toggle .state.p-success-o .svg,.pretty.p-toggle .state.p-success-o svg,.pretty input:checked~.state.p-success-o .icon,.pretty input:checked~.state.p-success-o .svg,.pretty input:checked~.state.p-success-o svg{color:#5cb85c;stroke:#5cb85c}.pretty.p-default:not(.p-fill) input:checked~.state.p-success-o label:after{background-color:#5cb85c!important}.pretty.p-switch input:checked~.state.p-success:before{border-color:#5cb85c}.pretty.p-switch.p-fill input:checked~.state.p-success:before{background-color:#5cb85c!important}.pretty.p-switch.p-slim input:checked~.state.p-success:before{border-color:#357935;background-color:#357935!important}.pretty.p-toggle .state.p-warning label:after,.pretty input:checked~.state.p-warning label:after{background-color:#f0ad4e!important}.pretty.p-toggle .state.p-warning .icon,.pretty.p-toggle .state.p-warning .svg,.pretty input:checked~.state.p-warning .icon,.pretty input:checked~.state.p-warning .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-warning-o label:before,.pretty input:checked~.state.p-warning-o label:before{border-color:#f0ad4e}.pretty.p-toggle .state.p-warning-o label:after,.pretty input:checked~.state.p-warning-o label:after{background-color:transparent}.pretty.p-toggle .state.p-warning-o .icon,.pretty.p-toggle .state.p-warning-o .svg,.pretty.p-toggle .state.p-warning-o svg,.pretty input:checked~.state.p-warning-o .icon,.pretty input:checked~.state.p-warning-o .svg,.pretty input:checked~.state.p-warning-o svg{color:#f0ad4e;stroke:#f0ad4e}.pretty.p-default:not(.p-fill) input:checked~.state.p-warning-o label:after{background-color:#f0ad4e!important}.pretty.p-switch input:checked~.state.p-warning:before{border-color:#f0ad4e}.pretty.p-switch.p-fill input:checked~.state.p-warning:before{background-color:#f0ad4e!important}.pretty.p-switch.p-slim input:checked~.state.p-warning:before{border-color:#c77c11;background-color:#c77c11!important}.pretty.p-toggle .state.p-danger label:after,.pretty input:checked~.state.p-danger label:after{background-color:#d9534f!important}.pretty.p-toggle .state.p-danger .icon,.pretty.p-toggle .state.p-danger .svg,.pretty input:checked~.state.p-danger .icon,.pretty input:checked~.state.p-danger .svg{color:#fff;stroke:#fff}.pretty.p-toggle .state.p-danger-o label:before,.pretty input:checked~.state.p-danger-o label:before{border-color:#d9534f}.pretty.p-toggle .state.p-danger-o label:after,.pretty input:checked~.state.p-danger-o label:after{background-color:transparent}.pretty.p-toggle .state.p-danger-o .icon,.pretty.p-toggle .state.p-danger-o .svg,.pretty.p-toggle .state.p-danger-o svg,.pretty input:checked~.state.p-danger-o .icon,.pretty input:checked~.state.p-danger-o .svg,.pretty input:checked~.state.p-danger-o svg{color:#d9534f;stroke:#d9534f}.pretty.p-default:not(.p-fill) input:checked~.state.p-danger-o label:after{background-color:#d9534f!important}.pretty.p-switch input:checked~.state.p-danger:before{border-color:#d9534f}.pretty.p-switch.p-fill input:checked~.state.p-danger:before{background-color:#d9534f!important}.pretty.p-switch.p-slim input:checked~.state.p-danger:before{border-color:#a02622;background-color:#a02622!important}.pretty.p-bigger .icon,.pretty.p-bigger .img,.pretty.p-bigger .svg,.pretty.p-bigger label:after,.pretty.p-bigger label:before{font-size:1.2em!important;top:calc(-135% + 1em)!important}.pretty.p-bigger label{text-indent:1.7em}@media print{.pretty .state .icon,.pretty .state:before,.pretty .state label:after,.pretty .state label:before{color-adjust:exact;-webkit-print-color-adjust:exact;print-color-adjust:exact}}.btn{color:#4a4a4a;background-color:#d7e3ec;background-image:linear-gradient(-180deg,#fafafa,#d7e3ec 90%);position:relative;display:inline-block;padding:6px 12px;font-size:14px;font-weight:600;line-height:20px;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-position:-1px -1px;background-size:110% 110%;border:1px solid rgba(27,31,35,.2);border-radius:.25em;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn,.btn:focus,.btn:hover{background-repeat:repeat-x;text-decoration:none}.btn:focus,.btn:hover{background-color:#e5e5e5;background-image:linear-gradient(-180deg,#d7e3ec,#e5e5e5 90%);background-position:0 -.5em;border-color:rgba(27,31,35,.35);color:#0366d5}.btn:active{background-color:#d0d0d0;background-image:none;border-color:rgba(27,31,35,.35);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn:disabled{background-image:linear-gradient(-180deg,#d0d0d0,#d0d0d0 90%)}.btn:focus{outline:none;text-decoration:none}.btn-primary{color:#fff}.btn-primary,.btn-primary:focus,.btn-primary:hover{background-color:#228b22;background-image:linear-gradient(-180deg,#32cd32,#228b22 90%)}.btn-primary:focus,.btn-primary:hover{background-position:0 -.5em;border-color:#228b22;color:#edd077}.btn-danger{color:#900}.btn-danger:focus,.btn-danger:hover{background-color:#b22222;background-image:linear-gradient(#d9534f,#b22222);border-color:#d9534f;color:#fff}.btn-warning{color:#daa520}.btn-warning:focus,.btn-warning:hover{background-color:#daa520;background-image:linear-gradient(#fffacd,#daa520);border-color:#fffacd;color:#fff}.small-btn{background:#fff;color:#4a4a4a;opacity:.8;box-shadow:1px 0 1px rgba(43,45,80,.16),-1px 1px 1px rgba(43,45,80,.16),0 1px 4px rgba(43,45,80,.18);border-radius:11px;font-weight:500}.header-logo,.header-logo:hover,.small-btn{text-decoration:none}.header-logo:hover{background-color:transparent}.header-search{padding:0;position:relative;margin:auto 0}.header-nav{text-align:left}.header-nav-item-link{color:#fff;font-weight:300;padding:3px 11px;text-decoration:none}.header-nav-item-link:hover{background-color:#497193;border-radius:3px;color:#fff;padding:3px 11px;text-decoration:none}.header-nav-item-link svg{position:relative;top:3px}.header-search-input{background:#497193;border-color:#497193;color:#fff}.header-search-input::-moz-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input::placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.4)}.header-search-input:focus{background:#fff;color:#323232}@-webkit-keyframes pulse{0%{transform:scale(1.1)}50%{transform:scale(.8)}to{transform:scale(1)}}@keyframes pulse{0%{transform:scale(1.1)}50%{transform:scale(.8)}to{transform:scale(1)}}@media (max-width:767px){.header-search{padding:0;margin:20px 0}.header-search ul{padding-right:26px}}.avatars a{text-decoration:none}.avatars a:hover{background-color:transparent}.people-list .breadcrumb{border-bottom:1px solid #eee}.people-list .main-content{margin-top:20px}.people-list .sidebar .sidebar-cta{margin-bottom:20px;padding:15px;text-align:center;width:100%}.people-list .sidebar li{margin-bottom:7px;padding-right:15px;position:relative}.people-list .sidebar li.selected:before{color:#999;content:">";left:0;position:absolute}.people-list .sidebar li .number-contacts-per-tag{float:left}.people-list .clear-filter,.people-list .list{border:1px solid #eee;border-radius:3px}.people-list .clear-filter{position:relative;padding:6px}.people-list .clear-filter a{position:absolute;left:10px}.people-list .people-list-item{border-bottom:1px solid #eee;padding:10px}.people-list .people-list-item:hover{background-color:#fafafa}.people-list .people-list-item.sorting{background-color:#fafafa;position:relative;padding:10px}.people-list .people-list-item.sorting .options{display:inline;position:absolute;left:10px}.people-list .people-list-item.sorting .options .dropdown-btn:after{content:"";font-family:FontAwesome;margin-left:5px}.people-list .people-list-item.sorting .options .dropdown-item{padding:3px 20px 3px 10px}.people-list .people-list-item.sorting .options .dropdown-item:before{content:"";font-family:FontAwesome;margin-right:5px;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item:hover{background-color:#0366d5;color:#fff}.people-list .people-list-item.sorting .options .dropdown-item.selected:before{color:#999}.people-list .people-list-item a{color:#333;text-decoration:none;display:block}.people-list .people-list-item a:hover{background-color:transparent;color:#333}.blank-people-state{margin-top:30px;text-align:center}.blank-people-state h3{font-weight:400;margin-bottom:30px}.blank-people-state .cta-blank{margin-bottom:30px}.blank-people-state .illustration-blank p{margin-top:30px}.blank-people-state .illustration-blank img{display:block;margin:0 auto 20px}.avatar-header{top:40px;margin-top:-30px}.avatar-header .image-header:after{box-shadow:inset 1px 1px 3px 0 hsla(0,0%,67.8%,.5);border-radius:7px;content:"";display:block;height:100%;position:absolute;top:0;width:100%}.avatar-header .hide-child:hover .child{background:rgba(90,90,90,.96)}.avatar-header .hide-child:hover a:hover{background:transparent;text-decoration:underline}.people-show .main-content{background-color:#fff;padding-bottom:20px;padding-top:40px}.people-show .main-content .section-title{position:relative}.people-show .main-content .section-title h3{border-bottom:1px solid #d0d0d0;font-size:18px;font-weight:400;margin-bottom:20px;padding-bottom:10px;padding-right:23px;padding-top:10px;position:relative}.people-show .main-content .section-title .icon-section{position:absolute;top:14px;width:17px}.people-show .main-content .sidebar .sidebar-cta a{margin-bottom:20px;width:100%}.people-show .profile .sidebar-box{background-color:#f2f4f8;border:1px solid #eee;border-radius:3px;color:#333;margin-bottom:25px;padding:10px;position:relative;font-size:.875rem}.people-show .profile .sidebar-box.edit{background-color:#fffceb;border-color:gold}.people-show .profile .sidebar-box-title{margin-bottom:4px;position:relative}.people-show .profile .sidebar-box-title h3{font-size:12px;font-weight:500;text-transform:uppercase}.people-show .profile .sidebar-box-title a{position:absolute;right:7px}.people-show .profile .sidebar-box-title img{left:-3px;position:relative;width:20px}.people-show .profile .sidebar-box-paragraph:not(:last-child){margin-bottom:9px}.people-show .profile .people-list li{margin-bottom:4px}.people-show .profile .introductions li,.people-show .profile .work li{color:#999;font-size:12px;margin-bottom:10px}.people-show .profile .introductions li:last-child,.people-show .profile .work li:last-child{margin-bottom:0}.people-show .profile .introductions li i,.people-show .profile .work li i{text-align:center;width:17px}.people-show .profile .section{margin-bottom:35px}.people-show .profile .section .section-blank{background-color:#fafafa;border:1px solid #eee;border-radius:3px;padding:15px;text-align:center}.people-show .profile .section .section-blank h3{font-weight:400;font-size:14px}.people-show .gifts .offered{background-color:#32cd32;border-radius:10rem;display:inline-block;font-size:75%;font-weight:400;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;padding:2px .6em}.people-show .gifts .for{font-style:italic;margin-left:10px}.people-show .activities .date,.people-show .debts .date,.people-show .gifts .date,.people-show .reminders .date,.people-show .tasks .date{color:#777;font-size:12px;margin-right:10px;width:100px}.people-show .activities .frequency-type,.people-show .activities .value,.people-show .debts .frequency-type,.people-show .debts .value,.people-show .gifts .frequency-type,.people-show .gifts .value,.people-show .reminders .frequency-type,.people-show .reminders .value,.people-show .tasks .frequency-type,.people-show .tasks .value{background-color:#d7e3ec;border:1px solid #eee;border-radius:3px;display:inline;font-size:12px;padding:0 6px}.people-show .activities .list-actions,.people-show .debts .list-actions,.people-show .gifts .list-actions,.people-show .reminders .list-actions,.people-show .tasks .list-actions{position:relative;text-align:center;width:90px}.people-show .activities .list-actions a:not(:last-child),.people-show .debts .list-actions a:not(:last-child),.people-show .gifts .list-actions a:not(:last-child),.people-show .reminders .list-actions a:not(:last-child),.people-show .tasks .list-actions a:not(:last-child){margin-left:5px}.people-show .activities .list-actions a.edit,.people-show .debts .list-actions a.edit,.people-show .gifts .list-actions a.edit,.people-show .reminders .list-actions a.edit,.people-show .tasks .list-actions a.edit{position:relative;top:1px}.people-show .activities .empty,.people-show .debts .empty,.people-show .gifts .empty,.people-show .reminders .empty,.people-show .tasks .empty{font-style:italic}.people-show .reminders .frequency-type{white-space:nowrap}.people-show .reminders input[type=date]{margin-bottom:20px;width:170px}.people-show .reminders .form-check input[type=number]{display:inline;width:50px}.people-show .debts .debts-list .debt-nature{width:220px}@media (max-width:480px){.people-list{margin-top:20px}.people-show .main-content.modal{margin-top:0}.people-show .main-content.dashboard .sidebar-box{margin-bottom:15px}.people-show .main-content.dashboard .sidebar-cta{margin-top:15px}}.journal-calendar-text{top:19px;line-height:16px;width:62px}.journal-calendar-box{width:62px;margin-left:11px}.journal-calendar-content{width:calc(100% - 73px)}.journal-line{transition:all .2s}.journal-line:hover{border-color:#0366d5}.marketing.register{background-color:#fafafa;padding-top:90px;padding-bottom:40px}.marketing.register .offset-md-3-right{margin-right:25%}.marketing.register .signup-box{background-color:#fff;border:1px solid #e5e5e5;border-radius:5px;padding:50px 20px 20px}.marketing.register .signup-box h1{font-weight:700;text-align:center}.marketing.register .signup-box h2,.marketing.register .signup-box h3{font-weight:300;text-align:center}.marketing.register .signup-box h2{margin-top:20px;margin-bottom:20px}.marketing.register .signup-box h3{font-size:15px;margin-bottom:30px}.marketing.register .signup-box .form-inline label{display:block}.marketing.register .signup-box button{margin-top:10px;width:100%}.marketing.register .signup-box a.action{margin-top:10px;width:100%;text-align:center}.marketing.register .signup-box .help{font-size:13px;text-align:center}.marketing.register .signup-box .checkbox{display:none}.marketing.register .signup-box .links{margin-top:20px}.marketing.register .signup-box .links li{font-size:14px;margin-bottom:5px}.privacy,.releases,.statistics{max-width:750px;margin-left:auto;margin-right:auto;padding:20px 30px 100px;margin-top:50px;background-color:#fff;box-shadow:0 8px 20px #d0d0d0}.privacy h2,.releases h2,.statistics h2{text-align:center}.privacy h3,.releases h3,.statistics h3{font-size:15px;margin-top:30px}.releases ul{list-style-type:disc;margin-left:20px}@media (max-width:480px){.marketing.homepage img{max-width:100%}.marketing.register .signup-box .logo{left:39%;top:-47px}}.settings .breadcrumb{margin-bottom:20px}.settings .sidebar-menu ul{border:1px solid #dee2e6;border-radius:3px}.settings .sidebar-menu li{padding:10px}.settings .sidebar-menu li:not(:last-child){border-bottom:1px solid #dee2e6}.settings .sidebar-menu li.selected{background-color:#fafafa}.settings .sidebar-menu li.selected i{color:green}.settings .sidebar-menu li a{width:100%}.settings .sidebar-menu li i{margin-left:5px;color:#999}.settings .settings-delete,.settings .settings-group,.settings .settings-reset{border:1px solid;padding:10px;margin-top:40px}.settings .settings-delete h2,.settings .settings-group h2,.settings .settings-reset h2{font-weight:400;font-size:16px}.settings .settings-delete h3,.settings .settings-group h3,.settings .settings-reset h3{font-weight:400;font-size:14px}.settings .settings-delete{border-color:#d9534f;border-radius:3px}.settings .settings-reset{border-color:#daa520;border-radius:3px}.settings .settings-group{border-color:#999;border-radius:3px}.settings .warning-zone{margin-bottom:30px;margin-top:30px;padding:10px 10px 5px 15px;border:1px solid #daa520;border-radius:3px;background-color:#fffacd}.settings .users-list h3.with-actions{padding-bottom:13px}.settings .users-list h3.with-actions a{float:right}.settings .users-list .table-cell.actions{text-align:left}.settings .blank-screen{text-align:center}.settings .blank-screen img{margin-bottom:30px;margin-top:30px}.settings .blank-screen h2{font-weight:400;margin-bottom:10px}.settings .blank-screen h3{margin-top:0;border-bottom:0}.settings .blank-screen p{margin:0 auto;width:400px}.settings .blank-screen p.cta{margin-top:40px;margin-bottom:10px}.settings .blank-screen .requires-subscription{margin-top:20px;font-size:13px;color:#999}.settings .subscriptions .downgrade ul{background-color:#fafafa;border:1px solid #dee2e6;border-radius:6px;margin-bottom:20px;padding:25px}.settings .subscriptions .downgrade li{padding-bottom:15px}.settings .subscriptions .downgrade li:not(:last-child){border-bottom:1px solid #dee2e6}.settings .subscriptions .downgrade li:not(:first-child){margin-top:10px}.settings .subscriptions .downgrade li.success .rule-title{text-decoration:line-through}.settings .subscriptions .downgrade li.success .icon:after{font-family:FontAwesome;font-size:17px;color:#47c1bf;content:"";top:10px;position:relative}.settings .subscriptions .downgrade li.fail .icon:after{font-family:FontAwesome;font-size:17px;color:#d9534f;content:"";top:10px;position:relative}.settings .subscriptions .downgrade li .rule-title{font-size:18px;padding-left:5px}.settings .subscriptions .downgrade li .rule-to-succeed{font-size:13px;display:block;padding-left:27px}.settings .report .report-summary{background-color:#fafafa;border:1px solid #dee2e6;border-radius:3px;margin-bottom:30px}.settings .report .report-summary li{padding:5px 10px}.settings .report .report-summary li:not(:last-child){border-bottom:1px solid #dee2e6}.settings .report .report-summary li span{font-weight:600}.settings .report .status{text-align:center;width:95px}.settings .report .reason{font-style:italic}.settings.import .success{color:#32cd32}.settings.import .warning{color:#daa520}.settings.import .date{font-size:13px;margin-left:10px}.settings.import h3.with-actions{padding-bottom:13px}.settings.import h3.with-actions a{float:right}.settings.upload .warning-zone{padding:20px 15px}.settings.upload .warning-zone ul{margin-right:20px;list-style-type:disc}.settings .reminder-info{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.modal h5{font-size:20px;font-weight:500}.modal label{padding-left:0}.modal .close{position:absolute;left:19px;top:14px;font-size:30px}.modal-mask{position:fixed;z-index:9998;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);display:table;transition:opacity .3s ease}.modal-wrapper{display:table-cell;vertical-align:middle}.modal-container{max-width:500px;max-height:80%;margin:0 auto;padding:20px 30px;background-color:#fff;border-radius:2px;box-shadow:0 2px 8px rgba(0,0,0,.33);transition:all .3s ease;font-family:Helvetica,Arial,sans-serif;text-align:center}.modal-container img{max-height:400px}.changelog img{max-width:100%;border:1px solid #d0d0d0;padding:3px}.bg-gray-monica{background-color:#f2f4f8}.bg-blue-monica{background-color:#325776}.b--gray-monica{border-color:#d0d0d0}.bg-hover-monica:hover{background-color:#d7e3ec}.bg-pale-red{background-color:#f4c8b9}.box-shadow{background:#fff;border:1px solid #d0d0d0;box-shadow:1px -1px 4px hsla(0,0%,47.8%,.25);border-radius:11px}.w-5{width:5%}.form-error-message{border-top:1px solid #d9534f;background-color:#f4c8b9;box-shadow:inset 0 3px 0 0 #d9534f,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message{border-top:1px solid #47c1bf;background-color:#d1ecfa;box-shadow:inset 0 3px 0 0 #47c1bf,inset 0 0 0 0 transparent,0 0 0 1px rgba(63,63,68,.05),0 1px 3px 0 rgba(63,63,68,.15)}.form-information-message svg{width:20px;fill:#00848e;color:#fff}.border-bottom{border-bottom:1px solid #dee2e6}.border-top{border-top:1px solid #dee2e6}.border-left{border-left:1px solid #dee2e6}.badge{display:inline-block;padding:4px 5px;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge-success{background-color:#32cd32}.badge-danger{background-color:#d9534f}kbd{padding:.1em .6em;border:1px solid #ccc;font-size:11px;font-family:Arial,Helvetica,sans-serif;background-color:#fafafa;color:#333;box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 0 0 2px #fff;border-radius:3px;display:inline-block;margin:0 .1em;text-shadow:0 1px 0 #fff;line-height:1.4;white-space:nowrap}.life-event .life-event-add-row:hover{background-color:#d7e3ec}.life-event .life-event-add-arrow{right:10px;top:12px}.life-event .life-event-add-icon{background-color:#d7e3ec;border-radius:50%;padding:20px;width:65px}.life-event .life-event-add-icon img{width:70px}.chart-activities{display:table;table-layout:fixed;width:100%;max-width:700px;height:200px;background-image:linear-gradient(180deg,rgba(0,0,0,.1) 2%,transparent 0);background-size:100% 50px;background-position:0 0}.chart-activities li{position:relative;display:table-cell;vertical-align:bottom;height:200px}.chart-activities span{margin:0 1em;display:block;background:rgba(209,236,250,.75);-webkit-animation:draw 1s ease-in-out;animation:draw 1s ease-in-out}.chart-activities span:before{position:absolute;left:0;right:0;top:100%;padding:5px 1em 0;display:block;text-align:center;content:attr(title);word-wrap:break-word}@-webkit-keyframes draw{0%{height:0}}@keyframes draw{0%{height:0}}body{color:#4a4a4a;text-align:right}a{color:#0366d5;padding:1px;text-decoration:underline}a:hover{background-color:#0366d5;color:#fff;text-decoration:none}a.action-link{color:#999;font-size:11px;text-decoration:underline;margin-right:5px;float:right}a.action-link:hover{background-color:#313436;color:#eee}a[hreflang]:after{content:" (" attr(hreflang) ")"}ul{list-style-type:none;margin:0;padding:0}ul.horizontal li{display:inline}.pretty{white-space:inherit}.pretty.form-check-input{margin-right:0}.pretty .state label{text-indent:0;padding-right:2rem;line-height:1.4em}.pretty .state label:after,.pretty .state label:before{top:0}.markdown ul{list-style-type:disc;margin-left:15px;padding-left:0;margin-top:10px;margin-bottom:10px}.hidden{display:none}input:disabled{background-color:#999}.alert-success{margin:20px 0}.central-form{margin-top:40px}.central-form h2{font-weight:400;margin-bottom:20px;text-align:center}.central-form .offset-sm-3-right{margin-right:25%}.central-form .form-check-inline{margin-right:10px}.central-form .form-group>label:not(:first-child){margin-top:10px}.central-form input[type=radio]{margin-right:5px}.central-form .dates .form-inline{display:inline}.central-form .dates .form-inline input[type=number]{margin:0 10px;width:52px}.central-form .dates .form-inline input[type=date]{margin-left:20px;margin-top:10px}.central-form .form-group:not(:last-child){border-bottom:1px solid #eee;padding-bottom:20px}.central-form .nav{margin-top:40px}.breadcrumb{background-color:#fafafa}.breadcrumb ul{font-size:12px;padding:30px 0 24px}.breadcrumb ul li:not(:last-child):after{content:">";margin-right:5px;margin-left:1px}.table{border-collapse:collapse;display:table;width:100%}.table .table-row{border-left:1px solid #ddd;border-right:1px solid #ddd;border-top:1px solid #ddd;display:table-row}.table .table-row:first-child .table-cell:first-child{border-top-left-radius:3px}.table .table-row:first-child .table-cell:last-child{border-top-right-radius:3px}.table .table-row:last-child{border-bottom:1px solid #ddd}.table .table-row:hover{background-color:#fafafa}.table .table-cell{display:table-cell;padding:8px 10px}.table .table-header{color:#4a4a4a;background-color:#f2f4f8;font-size:1.1rem;font-weight:bolder}.table .audit-log-cell{font-size:.9rem}.full-page-modal{background:#fff;border:1px solid #eee;box-shadow:2px 0 6px rgba(0,0,0,.25);border-radius:12px}.full-page-modal .full-page-modal-year-selector.selected,.full-page-modal .full-page-modal-year-selector:hover{background-color:#fafafa}.full-page-modal-header{background:#fff;border-top-left-radius:12px;border-top-right-radius:12px}.column-list{-moz-column-count:3;column-count:3;-moz-column-gap:20px;column-gap:20px}.dt-row.hover:hover{background-color:#d7e3ec}.profile-edit-contact-button{right:20px;top:20px}table.vgt-table{font-size:14px}table.vgt-table td.vgt-table-date{padding-left:10px;vertical-align:middle;width:110px}table.vgt-table td.vgt-table-action .action-btn{border:1px solid transparent;display:inline;padding:0 8px 4px}table.vgt-table td.vgt-table-action .action-btn:hover{box-shadow:1px 0 1px rgba(43,45,80,.16),-1px 1px 1px rgba(43,45,80,.16),0 1px 4px rgba(43,45,80,.18);border-radius:3px}table.vgt-table th{padding-left:10px;font-size:13px}table.vgt-table td{padding-left:10px;font-size:14px}.vgt-wrap__footer{padding:3px 10px!important;background:linear-gradient(#fff,#fafafa)!important}footer .badge-success{font-size:12px;font-weight:400}footer .show-version{text-align:left}footer .show-version h2{font-size:16px}footer .show-version .note{margin-bottom:20px}footer .show-version .note ul{list-style-type:disc}footer .show-version .note li{display:block;font-size:15px;text-align:left}@media (max-width:480px){.sidebar-box{border:1px solid #dee2e6;border-radius:3px}.sidebar-box li{padding:5px}.column-list{-moz-column-count:1;column-count:1;-moz-column-gap:20px;column-gap:20px}.chart-activities span{margin:0 4px}}svg{vertical-align:baseline!important}.form-group-error{-webkit-animation-name:shake;animation-name:shake;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;z-index:99}.form-group-error .error{border-color:#d9534f!important;color:#f4c8b9}@-webkit-keyframes shake{0%,to{transform:translateX(0)}15%,45%,75%{transform:translateX(.375rem)}30%,60%,90%{transform:translateX(-.375rem)}}@keyframes shake{0%,to{transform:translateX(0)}15%,45%,75%{transform:translateX(.375rem)}30%,60%,90%{transform:translateX(-.375rem)}} diff --git a/public/css/stripe.css b/public/css/stripe.css deleted file mode 100644 index 948b589ac35..00000000000 --- a/public/css/stripe.css +++ /dev/null @@ -1 +0,0 @@ -.StripeElement{background-color:#fff;height:45px;width:100%;padding:13px 12px;border-radius:4px;border:1px solid rgba(0,0,0,.3);transition:box-shadow .15s ease}.StripeElement--focus{box-shadow:0 1px 3px 0 #dcdcdc}.StripeElement--invalid{border-color:#d9534f}.StripeElement--webkit-autofill{background-color:#fffacd!important} diff --git a/public/fonts/vendor/font-awesome/fontawesome-webfont.eot b/public/fonts/vendor/font-awesome/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca953f..00000000000 Binary files a/public/fonts/vendor/font-awesome/fontawesome-webfont.eot and /dev/null differ diff --git a/public/fonts/vendor/font-awesome/fontawesome-webfont.svg b/public/fonts/vendor/font-awesome/fontawesome-webfont.svg deleted file mode 100644 index 855c845e538..00000000000 --- a/public/fonts/vendor/font-awesome/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf b/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa11..00000000000 Binary files a/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf and /dev/null differ diff --git a/public/fonts/vendor/font-awesome/fontawesome-webfont.woff b/public/fonts/vendor/font-awesome/fontawesome-webfont.woff deleted file mode 100644 index 400014a4b06..00000000000 Binary files a/public/fonts/vendor/font-awesome/fontawesome-webfont.woff and /dev/null differ diff --git a/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2 b/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc60404..00000000000 Binary files a/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2 and /dev/null differ diff --git a/public/js/app.js b/public/js/app.js deleted file mode 100644 index a62e14a7223..00000000000 --- a/public/js/app.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see app.js.LICENSE.txt */ -(self.webpackChunk=self.webpackChunk||[]).push([[773],{6099:(t,e,a)=>{"use strict";var i=a(538),s=a(4765),n=a.n(s),o=a(4710),r=a.n(o),l=a(4705),c=a.n(l),d=a(7639);a(9147),window.Vue=i.default,i.default.use(n()),i.default.use(r(),{delay:0}),c().config.autoSetContainer=!0,i.default.use(c()),i.default.use(d.Z),i.default.component("PassportClients",a(1588).Z),i.default.component("PassportAuthorizedClients",a(8776).Z),i.default.component("PassportPersonalAccessTokens",a(309).Z),i.default.component("ContactSelect",a(8287).Z),i.default.component("ContactSearch",a(4502).Z),i.default.component("ContactMultiSearch",a(67).Z),i.default.component("Avatar",a(9235).Z),i.default.component("Confirm",a(4678).Z),i.default.component("FormInput",a(4651).Z),i.default.component("FormSelect",a(2950).Z),i.default.component("FormDate",a(9178).Z),i.default.component("FormCheckbox",a(8993).Z),i.default.component("FormRadio",a(8589).Z),i.default.component("FormTextarea",a(9734).Z),i.default.component("FormToggle",a(7015).Z),i.default.component("FormSpecialdate",a(4639).Z),i.default.component("FormSpecialdeceased",a(1992).Z),i.default.component("DashboardLog",a(6283).Z),i.default.component("Tags",a(5735).Z),i.default.component("ContactAvatar",a(6354).Z),i.default.component("ContactFavorite",a(3147).Z),i.default.component("ContactArchive",a(9406).Z),i.default.component("ContactAddress",a(4882).Z),i.default.component("ContactInformation",a(1590).Z),i.default.component("ContactList",a(7593).Z),i.default.component("ContactTask",a(7503).Z),i.default.component("ContactNote",a(5041).Z),i.default.component("ContactGift",a(4077).Z),i.default.component("Pet",a(6057).Z),i.default.component("MeContact",a(8629).Z),i.default.component("StayInTouch",a(3224).Z),i.default.component("PhoneCallList",a(1642).Z),i.default.component("ConversationList",a(4173).Z),i.default.component("Conversation",a(6509).Z),i.default.component("Message",a(8144).Z),i.default.component("ActivityList",a(2834).Z),i.default.component("DocumentList",a(5960).Z),i.default.component("CreateLifeEvent",a(6271).Z),i.default.component("CreateDefaultLifeEvent",a(8202).Z),i.default.component("LifeEventList",a(1242).Z),i.default.component("PhotoList",a(8212).Z),i.default.component("JournalList",a(9265).Z),i.default.component("JournalRateDay",a(4811).Z),i.default.component("JournalCalendar",a(8949).Z),i.default.component("JournalContentRate",a(5848).Z),i.default.component("JournalContentActivity",a(3457).Z),i.default.component("JournalContentEntry",a(8219).Z),i.default.component("ContactFieldTypes",a(7022).Z),i.default.component("Genders",a(7645).Z),i.default.component("ReminderRules",a(5282).Z),i.default.component("ReminderTime",a(1720).Z),i.default.component("MfaActivate",a(6487).Z),i.default.component("WebauthnConnector",a(5874).Z),i.default.component("RecoveryCodes",a(6922).Z),i.default.component("Modules",a(881).Z),i.default.component("ActivityTypes",a(2642).Z),i.default.component("LifeEventTypes",a(7764).Z),i.default.component("DavResources",a(921).Z),a(2731),a(6880).Z.loadLanguage(window.Laravel.locale,!0).then((function(t){return new i.default({i18n:t,data:{htmldir:window.Laravel.htmldir,timezone:window.Laravel.timezone,locale:t.locale,reminders_frequency:"once",accept_invite_user:!1,date_met_the_contact:"known",global_relationship_form_new_contact:!0,global_profile_default_view:window.Laravel.profileDefaultView},methods:a(4430).Z}).$mount("#app")})),$(document).ready((function(){}))},9147:(t,e,a)=>{window._=a(6486);try{window.Popper=a(8981).default,window.$=window.jQuery=a(9755),a(6801),a(9331),a(3863),a(9872),a(7424),a(8471)}catch(t){}window.axios=a(9669),window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest"},6880:(t,e,a)=>{"use strict";a.d(e,{Z:()=>u});var i=a(9669),s=a.n(i),n=a(7152),o=a(381),r=a.n(o);const l=JSON.parse('{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica – personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use and Privacy Policy. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don’t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name’s contact’s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name’s contacts","dav_tasks":"Tasks","dav_tasks_description":":name’s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Are you sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We’ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We’ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account to be alerted when it’s up again.","error_unauthorized":"You don’t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected…|{count} files selected…","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What’s new","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading…","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name’s best friend","relationship_type_bestfriend_with_name":":name’s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name’s boss","relationship_type_boss_with_name":":name’s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name’s daughter","relationship_type_child_with_name":":name’s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name’s colleague","relationship_type_colleague_with_name":":name’s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name’s cousin","relationship_type_cousin_with_name":":name’s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name’s date","relationship_type_date_with_name":":name’s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name’s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name’s ex-wife","relationship_type_ex_husband_with_name":":name’s ex-husband","relationship_type_ex_with_name":":name’s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name’s friend","relationship_type_friend_with_name":":name’s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name’s godmother","relationship_type_godfather_with_name":":name’s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name’s goddaughter","relationship_type_godson_with_name":":name’s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name’s grand child","relationship_type_grandchild_with_name":":name’s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name’s grand parent","relationship_type_grandparent_with_name":":name’s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name’s secret lover","relationship_type_lovedby_with_name":":name’s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name’s lover","relationship_type_lover_with_name":":name’s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name’s mentor","relationship_type_mentor_with_name":":name’s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name’s niece","relationship_type_nephew_with_name":":name’s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name’s mother","relationship_type_parent_with_name":":name’s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name’s significant other","relationship_type_partner_with_name":":name’s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name’s protege","relationship_type_protege_with_name":":name’s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name’s sister","relationship_type_sibling_with_name":":name’s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name’s spouse","relationship_type_spouse_with_name":":name’s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name’s stepdaughter","relationship_type_stepchild_with_name":":name’s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name’s stepmother","relationship_type_stepparent_with_name":":name’s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name’s subordinate","relationship_type_subordinate_with_name":":name’s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name’s aunt","relationship_type_uncle_with_name":":name’s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","today":"today","type":"Type","unknown":"I don’t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature °C","weather_current_temperature_fahrenheit":":temperature °F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who’ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you’ve read and agree to our Privacy Policy and Terms of use.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Don’t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","use_recovery":"Or you can use a recovery code"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don’t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven’t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven’t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven’t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}…"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you’ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica – Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name’s profile","footer_contact_info2_link":"See :name’s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You’ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica – You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you’re having trouble clicking the \\":actionText\\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica – Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next ❯","previous":"❮ Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you’ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you’ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don’t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you’ve done with {name} in the past, and what you’ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You’ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You’ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you’ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you’ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel…","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family’s family has an allergy. Or doesn’t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn’t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}’s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year…","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name’s personal information","information_edit_unknown":"I do not know this person’s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name","introductions_no_first_met_date":"I don’t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You’ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"Add","people_add_firstname":"First name","people_add_gender":"Gender","people_add_import":"Do you want to import your contacts?","people_add_lastname":"Last name (Optional)","people_add_middlename":"Middle name (Optional)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"Add a new person","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"Delete contact","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current/:limit contacts","people_list_blank_cta":"Add someone","people_list_blank_title":"You don’t have anyone in your account yet","people_list_clear_filter":"Clear filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sort by first name A → Z","people_list_firstnameZA":"Sort by first name Z → A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"Sort by last name A → Z","people_list_lastnameZA":"Sort by last name Z → A","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sort","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"Search your contacts...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo ❯","photo_previous":"❮ Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don’t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted – only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Activities","section_personal_gifts":"Gifts","section_personal_notes":"Notes","section_personal_reminders":"Reminders","section_personal_tasks":"Tasks","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don’t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information updated","work_edit_title":"Update :name’s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you’ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you’ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica’s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application’s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust – as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don’t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account’s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export – please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven’t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You’ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf or .vCard file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can’t undo the upload.","import_upload_rule_format":"We support .vcard and .vcf files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app and Google Contacts.","import_upload_rule_limit":"Files are limited to 10 MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS’s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" – John Doe","name_order_firstname_lastname_nickname":" () – John Doe (Rambo)","name_order_firstname_nickname_lastname":" () – John (Rambo) Doe","name_order_lastname_firstname":" – Doe John","name_order_lastname_firstname_nickname":" () – Doe John (Rambo)","name_order_lastname_nickname_firstname":" () – Doe (Rambo) John","name_order_nickname":" – Rambo","name_order_nickname_firstname_lastname":" ( ) – Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can’t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can’t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender “{name}”?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can’t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica’s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for “power users” who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes…","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit MB. Your current usage is :currentAccountSize MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact.|You currently have :count contacts.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation.|You currently have :count pending invitations.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user in your account.|You currently have :count users in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time – so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself – no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support with a proof of your status and we’ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn’t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts • Unlimited number of users • Reminders by email • Import with vCard • Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45/year","subscriptions_plan_year_cost_save":"you’ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We’ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn’t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who’ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you’ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That’s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It’s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn’t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key — WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}}');function c(t,e){return 0}function d(t,e){var a=Math.abs(t);return a=a%10==1&&a%100!=11?0:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?1:2,Math.min(a,e-1)}const p={ar:function(t,e){var a=Math.abs(t);return a=0==a?0:1==a?1:2==a?2:a%100>=3&&a%100<=10?3:a%100>=11&&a%100<=99?4:5,Math.min(a,e-1)},cs:function(t,e){var a=Math.abs(t);return a=1==a?0:a>=2&&a<=4?1:2,Math.min(a,e-1)},fr:function(t,e){var a=Math.abs(t);return a=0==a||1==a?0:1,Math.min(a,e-1)},he:function(t,e){var a=Math.abs(t);return a=1==a?0:2==a?1:a<10&&a%10==0?2:3,Math.min(a,e-1)},hr:d,ja:c,ru:d,tr:c,uk:d,vi:c,zh:c,"zh-TW":c};Vue.use(n.Z),Vue.filter("formatDate",(function(t){if(t)return r()(String(t)).format("LL")})),window.marked=a(7084);const u={i18n:new n.Z({locale:"en",fallbackLocale:"en",messages:{en:l},pluralizationRules:p}),loadedLanguages:["en"],_setI18nLanguage:function(t){this.i18n.locale=t,s().defaults.headers.common["Accept-Language"]=t,document.querySelector("html").setAttribute("lang",t)},_loadLanguageAsync:function(t){var e=this;return this.i18n.locale===t||this.loadedLanguages.includes(t)?Promise.resolve(this.i18n):s().get("js/langs/".concat(t,".json")).then((function(a){return e.i18n.setLocaleMessage(t,a.data),e.loadedLanguages.push(t),e.i18n}))},loadLanguage:function(t,e){var a=this;return this._loadLanguageAsync(t).then((function(i){return e&&a._setI18nLanguage(t),r().locale("zh"===t?"zh-cn":t),i}))}}},4430:(t,e,a)=>{"use strict";a.d(e,{Z:()=>i});const i={updateDefaultProfileView:function(t){var e=this;axios.post("settings/updateDefaultProfileView",{name:t}).then((function(a){e.global_profile_default_view=t}))},fixAvatarDisplay:function(t){t.srcElement.classList=["hidden"],t.srcElement.nextElementSibling.classList.remove("hidden")}}},2731:()=>{function testingDirective(el,binding,vnode){if("production"!=window.Laravel.env){var value="";try{value=function(expr){return eval(expr)}.call(vnode.context," with(this) { "+binding.expression+" } ")}catch(t){value=binding.value}el.setAttribute(binding.name,value.toString())}}Vue.directive("cy-items",testingDirective),Vue.directive("cy-name",testingDirective)},3184:t=>{"use strict";function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;t&&this.setNotify(t)}e.prototype.register=function(t,e){var a=Object.assign({},t);a.user.id=this._bufferDecode(t.user.id),a.challenge=this._bufferDecode(this._base64Decode(t.challenge)),t.excludeCredentials&&(a.excludeCredentials=this._credentialDecode(t.excludeCredentials));var i=this;navigator.credentials.create({publicKey:a}).then((function(t){i._registerCallback(t,e)}),(function(t){i._notify(t.name,t.message,!1)}))},e.prototype._registerCallback=function(t,e){e({id:t.id,type:t.type,rawId:this._bufferEncode(t.rawId),response:{clientDataJSON:this._bufferEncode(t.response.clientDataJSON),attestationObject:this._bufferEncode(t.response.attestationObject)}})},e.prototype.sign=function(t,e){var a=Object.assign({},t);a.challenge=this._bufferDecode(this._base64Decode(t.challenge)),t.allowCredentials&&(a.allowCredentials=this._credentialDecode(t.allowCredentials));var i=this;navigator.credentials.get({publicKey:a}).then((function(t){i._signCallback(t,e)}),(function(t){i._notify(t.name,t.message,!1)}))},e.prototype._signCallback=function(t,e){e({id:t.id,type:t.type,rawId:this._bufferEncode(t.rawId),response:{authenticatorData:this._bufferEncode(t.response.authenticatorData),clientDataJSON:this._bufferEncode(t.response.clientDataJSON),signature:this._bufferEncode(t.response.signature),userHandle:t.response.userHandle?this._bufferEncode(t.response.userHandle):null}})},e.prototype._bufferEncode=function(t){return window.btoa(String.fromCharCode.apply(null,new Uint8Array(t)))},e.prototype._bufferDecode=function(t){var e=window.atob(t);return Uint8Array.from(e,(function(t){return t.charCodeAt(0)}))},e.prototype._base64Decode=function(t){var e=(t=t.replace(/-/g,"+").replace(/_/g,"/")).length%4;if(e){if(1===e)throw new Error("InvalidLengthError: Input base64url string is the wrong length to determine padding");t+=new Array(5-e).join("=")}return t},e.prototype._credentialDecode=function(t){var e=this;return t.map((function(t){return{id:e._bufferDecode(e._base64Decode(t.id)),type:t.type,transports:t.transports}}))},e.prototype.webAuthnSupport=function(){return!(void 0===window.PublicKeyCredential||"function"!=typeof window.PublicKeyCredential||"function"!=typeof window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable)},e.prototype.notSupportedMessage=function(){return window.isSecureContext||"localhost"===window.location.hostname||"127.0.0.1"===window.location.hostname?"not_supported":"not_secured"},e.prototype._notify=function(t,e){this._notifyCallback&&this._notifyCallback(t,e)},e.prototype.setNotify=function(t){this._notifyCallback=t},t.exports=e},6311:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,"",""]);const n=s},3612:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".selected[data-v-77490e85]{border:2px solid #0981e8;border-radius:50%;padding:2px}",""]);const n=s},2566:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".journal-avatar-small[data-v-066fa32f]{height:25px;width:25px;font-size:13px}",""]);const n=s},6921:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".avatar-padding[data-v-11f06ee2]{padding-top:19%}",""]);const n=s},4245:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".input[data-v-4de0f45a]{transition:all;transition-duration:.2s;border:1px solid #c4cdd5}.input[data-v-4de0f45a]:focus{border:1px solid #5c6ac4}",""]);const n=s},98:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".select[data-v-5dd09e02]{height:34px;transition:all;transition-duration:.2s;border:1px solid #c4cdd5}.select[data-v-5dd09e02]:focus{border:1px solid #5c6ac4}",""]);const n=s},5036:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,"textarea[data-v-71bd12de]{transition:all;transition-duration:.2s;border:1px solid #c4cdd5}textarea[data-v-71bd12de]:focus{border:1px solid #5c6ac4}",""]);const n=s},4442:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".access-key[data-v-559f9b08]{border:1px solid #cacaca;border-radius:3px;padding:10px 10px 0;background-color:#fafafa}pre[data-v-559f9b08]{font-size:12px;word-wrap:break-word;white-space:pre-wrap}",""]);const n=s},1436:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".fa[data-v-3e048805]{top:1px;color:#b1b1b1}",""]);const n=s},5363:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,"table.vgt-table img.avatar-search{border-radius:3px;display:inline-block;height:43px;width:43px}",""]);const n=s},2969:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".emotion-action-menu[data-v-713727fe]{border-radius:3px;box-shadow:1px 0 1px rgba(43,45,80,.16),-1px 1px 1px rgba(43,45,80,.16),0 1px 4px rgba(43,45,80,.18);top:34px;left:0;width:150px}.emotion-action-menu li[data-v-713727fe]:last-child{border-bottom:0}.emotion[data-v-713727fe]{background:#e5f3f9;border-radius:7px}.emotion span[data-v-713727fe]{border-left-color:#a6c8d6}.emotion-add-arrow[data-v-713727fe]{right:10px;top:12px}.emotion-list-line[data-v-713727fe]:hover{background-color:#f1f5fd}",""]);const n=s},1077:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,"div[data-v-862f999e] .avatar-small{height:30px;width:30px;font-size:13px;border-radius:.5rem}",""]);const n=s},4714:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".note[data-v-dcd93e92]:hover{background-color:#f6fbff}",""]);const n=s},643:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".participant[data-v-5942eb35]{background:#e5f3f9;border-radius:7px}.participant-list[data-v-5942eb35]{height:150px}input[type=text][data-v-5942eb35]{background-color:#f5f5f5}input[type=text][data-v-5942eb35]:focus{background-color:#fff}.potential-participant[data-v-5942eb35]:hover{background-color:#f1f5fd}",""]);const n=s},7821:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".error[data-v-674b58d1]{-webkit-animation-name:shakeError;animation-name:shakeError;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.form-group-error[data-v-674b58d1]{display:block;color:#f57f6c}",""]);const n=s},8537:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".autocomplete-results[data-v-1779ed0c]{width:150px}.autocomplete-result.is-active[data-v-1779ed0c],.autocomplete-result[data-v-1779ed0c]:hover{background-color:#4aae9b;color:#fff}",""]);const n=s},8366:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".btn-title[data-v-5d6a812c]{top:-7px}",""]);const n=s},213:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".me[data-v-3644004f]{border-left:10px solid #fff;right:-10px}.me[data-v-3644004f],.other[data-v-3644004f]{width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent;top:120px}.other[data-v-3644004f]{border-right:10px solid #fff;left:-10px}.conversation-block[data-v-3644004f]{background-color:#d8e2e7}",""]);const n=s},4513:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".delete-message-l[data-v-2f7ce6aa]{top:9px;right:16px}.delete-message-r[data-v-2f7ce6aa]{top:9px;left:16px}.btn-secondary[data-v-2f7ce6aa]{font-size:12px;padding:4px 10px}",""]);const n=s},2318:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".document-upload-zone[data-v-085d325b]{background:#fff;border:1px dashed #d6d6d6}.document-type[data-v-085d325b]{width:60px}.document-type-icon[data-v-085d325b]{background:#adf4fe;border-radius:13px;font-size:11px;padding:5px 8px}.document-date[data-v-085d325b]{width:110px}.document-action[data-v-085d325b]{width:50px}.document-action-wrapper[data-v-085d325b]{background:#fff;opacity:.8;border-radius:3px;line-height:18px;padding:2px 5px}.document-action-menu[data-v-085d325b],.document-action-wrapper[data-v-085d325b]:hover{box-shadow:1px 0 1px rgba(43,45,80,.16),-1px 1px 1px rgba(43,45,80,.16),0 1px 4px rgba(43,45,80,.18)}.document-action-menu[data-v-085d325b]{border-radius:3px;right:10px;top:34px}.document-action-menu-item.delete[data-v-085d325b]{color:#cb4066}.document-action-menu-item.delete[data-v-085d325b]:hover{color:#fff}progress[data-v-085d325b]{-webkit-appearance:none;border:none;height:8px;margin-bottom:3px;width:60%}progress[data-v-085d325b]::-webkit-progress-bar{background:#e2e7ee;border-radius:3px}progress[data-v-085d325b]::-webkit-progress-value{border-radius:3px;box-shadow:inset 0 1px 1px 0 hsla(0,0%,100%,.4);background-color:#329ff1}",""]);const n=s},3719:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".photo[data-v-2f014296]{height:200px}",""]);const n=s},384:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".photo[data-v-aeeac96c]{height:200px}.gift-date[data-v-aeeac96c]{float:right}",""]);const n=s},4762:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".life-event-list-icon[data-v-7d4b73cd]{border-radius:50%;background-color:#e6ebf1;width:44px;height:44px;left:-20px}.life-event-list-icon img[data-v-7d4b73cd]{width:22px;max-width:22px;max-height:22px;left:10px;top:10px}.life-event-list-actions[data-v-7d4b73cd]{right:10px;color:#909090;top:25px}.life-event-list-content[data-v-7d4b73cd]{padding-left:40px;padding-right:90px}",""]);const n=s},8116:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".photo[data-v-de44affa]{height:250px}",""]);const n=s},3353:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".url[data-v-c35b6c4c]{width:650px;display:inline-block;margin-bottom:0;vertical-align:middle}",""]);const n=s},9311:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".code[data-v-1804a17e]{margin-bottom:.1em}.used[data-v-1804a17e]{text-decoration:line-through}",""]);const n=s},8816:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".time[data-v-0350a1ab]{color:grey}",""]);const n=s},3469:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,"a[data-v-e150d59a]{text-decoration:none;vertical-align:middle;background:transparent}a[data-v-e150d59a],a[data-v-e150d59a]:hover{color:inherit}a[data-v-e150d59a]:hover{background:inherit}",""]);const n=s},8260:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".autosuggest__results-container{position:relative;width:100%}.autosuggest__results,.autosuggest__results-overflow{position:absolute;width:100%;z-index:100}.autosuggest__results-overflow{overflow:scroll;max-height:361px}.autosuggest__results-item{background:#fff}.autosuggest__results-item--highlighted,.autosuggest__results-item:active,.autosuggest__results-item:focus,.autosuggest__results-item:hover{background:#f5f5f5}",""]);const n=s},9752:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".avatar-new[data-v-bf52d8fa]{background-color:#fdb660}.item-search-result[data-v-bf52d8fa]{position:relative;background:transparent}.item-search-result a[data-v-bf52d8fa]{color:inherit;text-decoration:none;vertical-align:middle;background:transparent}.item-search-result a span[data-v-bf52d8fa]{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1}.item-search-result a[data-v-bf52d8fa]:hover{background:inherit;color:inherit}.item-search-result .avatar[data-v-bf52d8fa]{border-radius:3px;display:inline-block;height:36px;margin:10px;width:36px}.item-search-result .avatar-initials[data-v-bf52d8fa]{text-align:center;padding-top:6px;font-size:15px;color:#fff}.item-search-result[data-v-bf52d8fa]:last-child{border-bottom:initial}",""]);const n=s},3752:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".avatar-new[data-v-f851ad04]{background-color:#fdb660}.item-search-result[data-v-f851ad04]{position:relative;background:transparent;border:1px solid #c4cdd5}.item-search-result .item-search-result-result[data-v-f851ad04]{color:inherit;vertical-align:middle;background:transparent}.item-search-result .item-search-result-result span[data-v-f851ad04]{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1}.item-search-result .avatar[data-v-f851ad04]{border-radius:3px;display:inline-block;height:36px;margin:10px;width:36px}.item-search-result .avatar-initials[data-v-f851ad04]{text-align:center;padding-top:6px;font-size:15px;color:#fff}.item-search-result .avatar-no-results[data-v-f851ad04]{color:#fdb660}.item-search-result[data-v-f851ad04]:first-child{border-top:initial}",""]);const n=s},7969:(t,e,a)=>{"use strict";a.r(e),a.d(e,{default:()=>n});var i=a(3645),s=a.n(i)()((function(t){return t[1]}));s.push([t.id,".photo-upload-zone[data-v-2ea1c912]{background:#fff;border:1px dashed #d6d6d6}progress[data-v-2ea1c912]{-webkit-appearance:none;border:none;height:8px;margin-bottom:3px;width:60%}progress[data-v-2ea1c912]::-webkit-progress-bar{background:#e2e7ee;border-radius:3px}progress[data-v-2ea1c912]::-webkit-progress-value{border-radius:3px;box-shadow:inset 0 1px 1px 0 hsla(0,0%,100%,.4);background-color:#329ff1}",""]);const n=s},7225:()=>{},5807:()=>{},6233:()=>{},595:(t,e,a)=>{var i={"./ar":867,"./ar.js":867,"./de":9740,"./de.js":9740,"./en-gb":2243,"./en-gb.js":2243,"./es":7093,"./es.js":7093,"./fr":4470,"./fr.js":4470,"./he":4206,"./he.js":4206,"./it":626,"./it.js":626,"./nl":3901,"./nl.js":3901,"./sv":8760,"./sv.js":8760,"./tr":2397,"./tr.js":2397,"./zh-cn":3839,"./zh-cn.js":3839,"./zh-tw":4152,"./zh-tw.js":4152};function s(t){var e=n(t);return a(e)}function n(t){if(!a.o(i,t)){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e}return i[t]}s.keys=function(){return Object.keys(i)},s.resolve=n,t.exports=s,s.id=595},6283:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{Avatar:a(9235).Z},props:{defaultActiveTab:{type:String,default:"calls"}},data:function(){return{activeTab:"",callsAlreadyLoaded:!1,notesAlreadyLoaded:!1,debtsAlreadyLoaded:!1,tasksAlreadyLoaded:!1,calls:[],notes:[],debts:[],tasks:[],taskAddMode:!1,contactRelatedTasksView:!0,confirmDestroyTask:0,showTaskAction:0,newTask:{id:0,title:"",description:""}}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.setActiveTab(this.defaultActiveTab)},setActiveTab:function(t){switch(this.activeTab=t,this.saveTab(t),t){case"calls":this.callsAlreadyLoaded||(this.getCalls(),this.callsAlreadyLoaded=!0);break;case"notes":this.notesAlreadyLoaded||(this.getNotes(),this.notesAlreadyLoaded=!0);break;case"debts":this.debtsAlreadyLoaded||(this.getDebts(),this.debtsAlreadyLoaded=!0);break;case"tasks":this.tasksAlreadyLoaded||(this.getTasks(),this.tasksAlreadyLoaded=!0)}},saveTab:function(t){axios.post("dashboard/setTab",{tab:t}).then((function(t){}))},getCalls:function(){var t=this;axios.get("dashboard/calls").then((function(e){t.calls=e.data}))},getNotes:function(){var t=this;axios.get("dashboard/notes").then((function(e){t.notes=e.data}))},getDebts:function(){var t=this;axios.get("dashboard/debts").then((function(e){t.debts=e.data}))},getTasks:function(){var t=this;axios.get("tasks").then((function(e){t.tasks=e.data.data}))},customNotCompleted:function(t){return t.filter((function(t){return null===t.contact&&!1===t.completed}))},customCompleted:function(t){return t.filter((function(t){return null===t.contact&&!0===t.completed}))},contactRelated:function(t){return t.filter((function(t){return null!=t.contact&&!t.completed}))},updateTask:function(t){var e=this;axios.put("tasks/"+t.id,t).then((function(t){e.$notify({group:"main",title:e.$t("app.default_save_success"),text:"",type:"success"})}))},saveTask:function(){var t=this;axios.post("tasks",this.newTask).then((function(e){t.newTask.title="",t.taskAddMode=!1,t.getTasks(),t.$notify({group:"main",title:t.$t("app.default_save_success"),text:"",type:"success"})}))},destroyTask:function(t){var e=this;axios.delete("tasks/"+t.id).then((function(a){e.tasks.splice(e.tasks.indexOf(t),1)}))}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"br3 ba b--gray-monica bg-white mb3"},[a("notifications",{attrs:{group:"main",position:"bottom right",width:"400"}}),t._v(" "),a("div",{staticClass:"pa3 bb b--gray-monica tc"},[a("ul",[a("li",{class:["calls"==t.activeTab?"di pointer mr3 b":"di pointer mr3 black-50"],on:{click:function(e){return e.preventDefault(),t.setActiveTab("calls")}}},[t._v("\n "+t._s(t.$t("dashboard.tab_recent_calls"))+"\n ")]),t._v(" "),a("li",{class:["notes"==t.activeTab?"di pointer mr3 b":"di pointer mr3 black-50"],on:{click:function(e){return e.preventDefault(),t.setActiveTab("notes")}}},[t._v("\n "+t._s(t.$t("dashboard.tab_favorite_notes"))+"\n ")]),t._v(" "),a("li",{class:["debts"==t.activeTab?"di pointer mr3 b":"di pointer mr3 black-50"],on:{click:function(e){return e.preventDefault(),t.setActiveTab("debts")}}},[t._v("\n "+t._s(t.$t("dashboard.tab_debts"))+"\n ")]),t._v(" "),a("li",{class:["tasks"==t.activeTab?"di pointer mr3 b":"di pointer mr3 black-50"],on:{click:function(e){return e.preventDefault(),t.setActiveTab("tasks")}}},[t._v("\n "+t._s(t.$t("dashboard.tab_tasks"))+"\n ")])])]),t._v(" "),a("div",{staticClass:"pa4"},["calls"==t.activeTab?a("div",[0!=t.calls.length?a("ul",t._l(t.calls,(function(e){return a("li",{key:e.id,staticClass:"pb2"},[a("svg",{staticClass:"mr2",staticStyle:{"enable-background":"new 0 0 473.806 473.806"},attrs:{id:"Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",version:"1.1",x:"0px",y:"0px",viewBox:"0 0 473.806 473.806","xml:space":"preserve",width:"15px",height:"15px"}},[a("g",[a("g",[a("path",{attrs:{d:"M374.456,293.506c-9.7-10.1-21.4-15.5-33.8-15.5c-12.3,0-24.1,5.3-34.2,15.4l-31.6,31.5c-2.6-1.4-5.2-2.7-7.7-4 c-3.6-1.8-7-3.5-9.9-5.3c-29.6-18.8-56.5-43.3-82.3-75c-12.5-15.8-20.9-29.1-27-42.6c8.2-7.5,15.8-15.3,23.2-22.8 c2.8-2.8,5.6-5.7,8.4-8.5c21-21,21-48.2,0-69.2l-27.3-27.3c-3.1-3.1-6.3-6.3-9.3-9.5c-6-6.2-12.3-12.6-18.8-18.6 c-9.7-9.6-21.3-14.7-33.5-14.7s-24,5.1-34,14.7c-0.1,0.1-0.1,0.1-0.2,0.2l-34,34.3c-12.8,12.8-20.1,28.4-21.7,46.5 c-2.4,29.2,6.2,56.4,12.8,74.2c16.2,43.7,40.4,84.2,76.5,127.6c43.8,52.3,96.5,93.6,156.7,122.7c23,10.9,53.7,23.8,88,26 c2.1,0.1,4.3,0.2,6.3,0.2c23.1,0,42.5-8.3,57.7-24.8c0.1-0.2,0.3-0.3,0.4-0.5c5.2-6.3,11.2-12,17.5-18.1c4.3-4.1,8.7-8.4,13-12.9 c9.9-10.3,15.1-22.3,15.1-34.6c0-12.4-5.3-24.3-15.4-34.3L374.456,293.506z M410.256,398.806 C410.156,398.806,410.156,398.906,410.256,398.806c-3.9,4.2-7.9,8-12.2,12.2c-6.5,6.2-13.1,12.7-19.3,20 c-10.1,10.8-22,15.9-37.6,15.9c-1.5,0-3.1,0-4.6-0.1c-29.7-1.9-57.3-13.5-78-23.4c-56.6-27.4-106.3-66.3-147.6-115.6 c-34.1-41.1-56.9-79.1-72-119.9c-9.3-24.9-12.7-44.3-11.2-62.6c1-11.7,5.5-21.4,13.8-29.7l34.1-34.1c4.9-4.6,10.1-7.1,15.2-7.1 c6.3,0,11.4,3.8,14.6,7c0.1,0.1,0.2,0.2,0.3,0.3c6.1,5.7,11.9,11.6,18,17.9c3.1,3.2,6.3,6.4,9.5,9.7l27.3,27.3 c10.6,10.6,10.6,20.4,0,31c-2.9,2.9-5.7,5.8-8.6,8.6c-8.4,8.6-16.4,16.6-25.1,24.4c-0.2,0.2-0.4,0.3-0.5,0.5 c-8.6,8.6-7,17-5.2,22.7c0.1,0.3,0.2,0.6,0.3,0.9c7.1,17.2,17.1,33.4,32.3,52.7l0.1,0.1c27.6,34,56.7,60.5,88.8,80.8 c4.1,2.6,8.3,4.7,12.3,6.7c3.6,1.8,7,3.5,9.9,5.3c0.4,0.2,0.8,0.5,1.2,0.7c3.4,1.7,6.6,2.5,9.9,2.5c8.3,0,13.5-5.2,15.2-6.9 l34.2-34.2c3.4-3.4,8.8-7.5,15.1-7.5c6.2,0,11.3,3.9,14.4,7.3c0.1,0.1,0.1,0.1,0.2,0.2l55.1,55.1 C420.456,377.706,420.456,388.206,410.256,398.806z",fill:"#8c8c8c"}}),t._v(" "),a("path",{attrs:{d:"M256.056,112.706c26.2,4.4,50,16.8,69,35.8s31.3,42.8,35.8,69c1.1,6.6,6.8,11.2,13.3,11.2c0.8,0,1.5-0.1,2.3-0.2 c7.4-1.2,12.3-8.2,11.1-15.6c-5.4-31.7-20.4-60.6-43.3-83.5s-51.8-37.9-83.5-43.3c-7.4-1.2-14.3,3.7-15.6,11 S248.656,111.506,256.056,112.706z",fill:"#8c8c8c"}}),t._v(" "),a("path",{attrs:{d:"M473.256,209.006c-8.9-52.2-33.5-99.7-71.3-137.5s-85.3-62.4-137.5-71.3c-7.3-1.3-14.2,3.7-15.5,11 c-1.2,7.4,3.7,14.3,11.1,15.6c46.6,7.9,89.1,30,122.9,63.7c33.8,33.8,55.8,76.3,63.7,122.9c1.1,6.6,6.8,11.2,13.3,11.2 c0.8,0,1.5-0.1,2.3-0.2C469.556,223.306,474.556,216.306,473.256,209.006z",fill:"#8c8c8c"}})])])]),t._v(" "),a("span",{staticClass:"black-50 mr1 f6"},[t._v("\n "+t._s(e.called_at)+"\n ")]),t._v(" "),a("span",{staticClass:"mr1 black-50"},[t._v("\n •\n ")]),t._v(" "),a("a",{attrs:{href:"people/"+e.contact_id}},[t._v("\n "+t._s(e.name)+"\n ")])])})),0):t._e(),t._v(" "),0===t.calls.length?a("div",{staticClass:"tc mt4 mb4"},[a("p",[t._v(t._s(t.$t("dashboard.tab_calls_blank")))])]):t._e()]):"notes"==t.activeTab?a("div",[0!=t.notes.length?t._l(t.notes,(function(e){return a("div",{key:e.id,staticClass:"pb3 cf"},[a("div",{staticClass:"fl w-10"},[a("avatar",{attrs:{contact:e.contact,clickable:!0}})],1),t._v(" "),a("div",{staticClass:"pl3 fl w-90"},[a("svg",{attrs:{id:"Layer_1",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",x:"0px",y:"0px",width:"15px",height:"15px",viewBox:"0 0 512 512","enable-background":"new 0 0 512 512","xml:space":"preserve"}},[a("g",[a("path",{attrs:{fill:"none",d:"M397.997,102.5H383.5v18.686c0,6.921-5.582,12.53-12.5,12.53s-12.5-5.608-12.5-12.53V102.5h-17v18.686\n c0,6.921-5.582,12.53-12.5,12.53c-6.916,0-12.5-5.608-12.5-12.53V102.5h-117v18.686c0,6.921-5.581,12.53-12.5,12.53\n c-6.919,0-12.5-5.608-12.5-12.53V102.5h-17v18.686c0,6.921-5.581,12.53-12.5,12.53s-12.5-5.608-12.5-12.53V102.5h-14.321\n c-4.613,0-10.679,1.544-10.679,6.157v325.76c0,4.612,6.065,11.083,10.679,11.083h279.818c4.613,0,6.503-6.471,6.503-11.083v-325.76\n C404.5,104.044,402.611,102.5,397.997,102.5z M383.5,386.5h-251v-16h251V386.5z M383.5,345.5h-251v-17h251V345.5z M383.5,303.5\n h-251v-17h251V303.5z M383.5,261.5h-251v-17h251V261.5z M383.5,219.5h-251v-17h251V219.5z"}}),t._v(" "),a("rect",{attrs:{x:"132.5",y:"244.5",width:"251",height:"17"}}),t._v(" "),a("rect",{attrs:{x:"132.5",y:"202.5",width:"251",height:"17"}}),t._v(" "),a("rect",{attrs:{x:"132.5",y:"286.5",width:"251",height:"17"}}),t._v(" "),a("rect",{attrs:{x:"132.5",y:"328.5",width:"251",height:"17"}}),t._v(" "),a("rect",{attrs:{x:"132.5",y:"370.5",width:"251",height:"16"}}),t._v(" "),a("path",{attrs:{d:"M397.997,85.5H383.5V62.717c0-6.919-5.582-12.529-12.5-12.529s-12.5,5.61-12.5,12.529V85.5h-17V62.717\n c0-6.919-5.582-12.529-12.5-12.529c-6.916,0-12.5,5.61-12.5,12.529V85.5h-117V62.717c0-6.919-5.581-12.529-12.5-12.529\n c-6.919,0-12.5,5.61-12.5,12.529V85.5h-17V62.717c0-6.919-5.581-12.529-12.5-12.529s-12.5,5.61-12.5,12.529V85.5h-14.321\n c-13.838,0-27.679,9.318-27.679,23.157v325.76c0,13.839,13.84,28.083,27.679,28.083h279.818c13.839,0,23.503-14.244,23.503-28.083\n v-325.76C421.5,94.818,411.836,85.5,397.997,85.5z M404.5,434.417c0,4.612-1.89,11.083-6.503,11.083H118.179\n c-4.613,0-10.679-6.471-10.679-11.083v-325.76c0-4.613,6.065-6.157,10.679-6.157H132.5v18.686c0,6.921,5.581,12.53,12.5,12.53\n s12.5-5.608,12.5-12.53V102.5h17v18.686c0,6.921,5.581,12.53,12.5,12.53c6.919,0,12.5-5.608,12.5-12.53V102.5h117v18.686\n c0,6.921,5.584,12.53,12.5,12.53c6.918,0,12.5-5.608,12.5-12.53V102.5h17v18.686c0,6.921,5.582,12.53,12.5,12.53\n s12.5-5.608,12.5-12.53V102.5h14.497c4.613,0,6.503,1.544,6.503,6.157V434.417z"}})])]),t._v(" "),a("span",{staticClass:"black-50 mr1 f6"},[t._v("\n "+t._s(e.created_at)+"\n ")]),t._v(" "),a("span",{staticClass:"mr1 black-50"},[t._v("\n •\n ")]),t._v(" "),a("a",{attrs:{href:"people/"+e.contact.id}},[t._v("\n "+t._s(e.name)+"\n ")]),t._v(" "),a("p",[t._v("\n "+t._s(e.body)+"\n ")])])])})):t._e(),t._v(" "),0===t.notes.length?a("div",{staticClass:"tc mt4 mb4"},[a("p",[t._v(t._s(t.$t("dashboard.notes_title")))])]):t._e()],2):"debts"==t.activeTab?a("div",[0!=t.debts.length?a("ul",t._l(t.debts,(function(e){return a("li",{key:e.id,staticClass:"pb2"},[a("span",{staticClass:"black-50 mr1 f6"},[t._v("\n "+t._s(t._f("formatDate")(e.created_at))+"\n ")]),t._v(" "),a("span",{staticClass:"mr1 black-50"},[t._v("\n •\n ")]),t._v(" "),a("a",{attrs:{href:"people/"+e.contact.hash_id}},[t._v("\n "+t._s(e.contact.first_name)+"\n ")]),t._v(" "),a("span",{staticClass:"mr1 black-50"},[t._v("\n •\n ")]),t._v("\n "+t._s(e.amount_with_currency)+"\n "),"yes"==e.in_debt?a("span",{staticClass:"black-50 f6"},[a("span",{staticClass:"mr1 black-50"},[t._v("\n •\n ")]),t._v("\n "+t._s(t.$t("dashboard.debts_you_owe"))+"\n ")]):t._e()])})),0):a("div",{staticClass:"tc mt4 mb4"},[a("p",[t._v(t._s(t.$t("dashboard.tab_debts_blank")))])])]):t._e(),t._v(" "),"tasks"==t.activeTab?a("div",[a("ul",{staticClass:"tc mb3"},[a("li",{staticClass:"di mr4"},[a("span",{class:[1==t.contactRelatedTasksView?"b":"pointer"],on:{click:function(e){e.preventDefault(),t.contactRelatedTasksView=!0}}},[t._v("\n "+t._s(t.$t("dashboard.tasks_tab_your_contacts"))+" ("+t._s(t.contactRelated(t.tasks).length)+")\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("span",{class:[1==t.contactRelatedTasksView?"pointer":"b"],on:{click:function(e){e.preventDefault(),t.contactRelatedTasksView=!1}}},[t._v("\n "+t._s(t.$t("dashboard.tasks_tab_your_tasks"))+" ("+t._s(t.customNotCompleted(t.tasks).length)+")\n ")])])]),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:t.taskAddMode,expression:"taskAddMode"}],staticClass:"br3 pa2 ba b--gray-monica mb3"},[a("div",{staticClass:"flex items-center mb2"},[a("input",{staticClass:"di mr2 pb2",attrs:{type:"checkbox",disabled:""}}),t._v(" "),a("input",{directives:[{name:"model",rawName:"v-model",value:t.newTask.title,expression:"newTask.title"}],staticClass:"bt-0 br-0 bl-0 w-100 di bb b--gray-monica pt2 pb2",attrs:{type:"text",placeholder:t.$t("dashboard.tasks_add_task_placeholder")},domProps:{value:t.newTask.title},on:{keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.saveTask()},function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"]))return null;t.taskAddMode=!1}],input:function(e){e.target.composing||t.$set(t.newTask,"title",e.target.value)}}}),t._v(" "),a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.taskAddMode=!1,t.newTask.title=""}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("div",{staticClass:"f7 relative",staticStyle:{left:"20px"}},[a("span",{domProps:{innerHTML:t._s(t.$t("dashboard.tasks_add_note"))}})])]),t._v(" "),0!=t.contactRelated(t.tasks).length&&t.contactRelatedTasksView?a("div",[a("ul",t._l(t.contactRelated(t.tasks),(function(e){return a("li",{key:e.id,staticClass:"pb0 mb2"},[a("form-checkbox",{attrs:{name:"todo",dclass:"mr1"},on:{change:function(a){return t.updateTask(e)}},model:{value:e.completed,callback:function(a){t.$set(e,"completed",a)},expression:"task.completed"}},[t._v("\n "+t._s(e.title)+"\n ")]),t._v(" "),a("span",{staticClass:"black-50 mr1 f7"},[a("a",{attrs:{href:"people/"+e.contact.hash_id}},[t._v("\n "+t._s(e.contact.first_name)+"\n ")])])],1)})),0)]):t._e(),t._v(" "),t.contactRelatedTasksView?t._e():a("div",[0==t.customNotCompleted(t.tasks).length?a("div",{staticClass:"tc mt4 mb4"},[a("p",{staticClass:"mb4"},[a("a",{directives:[{name:"show",rawName:"v-show",value:!t.taskAddMode,expression:"!taskAddMode"}],staticClass:"btn pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.taskAddMode=!0}}},[t._v("\n "+t._s(t.$t("dashboard.task_add_cta"))+"\n ")])]),t._v(" "),a("img",{attrs:{src:"img/dashboard/blank_your_tasks.svg",alt:t.$t("dashboard.tasks_tab_your_tasks")}})]):t._e(),t._v(" "),0!=t.customNotCompleted(t.tasks).length?a("p",[a("a",{directives:[{name:"show",rawName:"v-show",value:!t.taskAddMode,expression:"!taskAddMode"}],staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.taskAddMode=!0}}},[t._v("\n "+t._s(t.$t("dashboard.task_add_cta"))+"\n ")])]):t._e(),t._v(" "),0!=t.customNotCompleted(t.tasks).length?a("ul",t._l(t.customNotCompleted(t.tasks),(function(e){return a("li",{key:e.id,staticClass:"pb0 mb2",on:{mouseover:function(a){t.showTaskAction=e.id},mouseleave:function(e){t.showTaskAction=0,t.confirmDestroyTask=0}}},[a("form-checkbox",{attrs:{name:"todo",dclass:"mr1"},on:{change:function(a){return t.updateTask(e)}},model:{value:e.completed,callback:function(a){t.$set(e,"completed",a)},expression:"task.completed"}},[t._v("\n "+t._s(e.title)+"\n ")]),t._v(" "),a("a",{directives:[{name:"show",rawName:"v-show",value:t.showTaskAction==e.id,expression:"showTaskAction == task.id"}],staticClass:"pointer mr1",attrs:{href:""},on:{click:function(a){a.preventDefault(),t.confirmDestroyTask=e.id}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")]),t._v(" "),a("ul",{directives:[{name:"show",rawName:"v-show",value:t.confirmDestroyTask==e.id,expression:"confirmDestroyTask == task.id"}],staticClass:"di"},[a("li",{staticClass:"di"},[a("a",{staticClass:"pointer mr1",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.confirmDestroyTask=0}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("a",{staticClass:"pointer red",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.destroyTask(e)}}},[t._v("\n "+t._s(t.$t("app.delete_confirm"))+"\n ")])])])],1)})),0):t._e(),t._v(" "),0==t.customCompleted(t.tasks).length||t.contactRelatedTasksView?t._e():a("ul",t._l(t.customCompleted(t.tasks),(function(e){return a("li",{key:e.id,staticClass:"pb0 mb0 f6",on:{mouseover:function(a){t.showTaskAction=e.id},mouseleave:function(e){t.showTaskAction=0,t.confirmDestroyTask=0}}},[a("form-checkbox",{attrs:{name:"todo",dclass:"mb1 mr1"},on:{change:function(a){return t.updateTask(e)}},model:{value:e.completed,callback:function(a){t.$set(e,"completed",a)},expression:"task.completed"}},[t._v("\n "+t._s(e.title)+"\n ")]),t._v(" "),a("a",{directives:[{name:"show",rawName:"v-show",value:t.showTaskAction==e.id,expression:"showTaskAction == task.id"}],staticClass:"pointer mr1",attrs:{href:""},on:{click:function(a){a.preventDefault(),t.confirmDestroyTask=e.id}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")]),t._v(" "),a("ul",{directives:[{name:"show",rawName:"v-show",value:t.confirmDestroyTask==e.id,expression:"confirmDestroyTask == task.id"}],staticClass:"di"},[a("li",{staticClass:"di"},[a("a",{staticClass:"pointer mr1",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.confirmDestroyTask=0}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("a",{staticClass:"pointer red",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.destroyTask(e)}}},[t._v("\n "+t._s(t.$t("app.delete_confirm"))+"\n ")])])])],1)})),0)])]):t._e()])],1)}),[],!1,null,null,null).exports},9265:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});function i(t,e){var a="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!a){if(Array.isArray(t)||(a=function(t,e){if(!t)return;if("string"==typeof t)return s(t,e);var a=Object.prototype.toString.call(t).slice(8,-1);"Object"===a&&t.constructor&&(a=t.constructor.name);if("Map"===a||"Set"===a)return Array.from(t);if("Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a))return s(t,e)}(t))||e&&t&&"number"==typeof t.length){a&&(t=a);var i=0,n=function(){};return{s:n,n:function(){return i>=t.length?{done:!0}:{done:!1,value:t[i++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r=!0,l=!1;return{s:function(){a=a.call(t)},n:function(){var t=a.next();return r=t.done,t},e:function(t){l=!0,o=t},f:function(){try{r||null==a.return||a.return()}finally{if(l)throw o}}}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var a=0,i=new Array(e);a=this.journalEntries.total}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getEntries()},getEntries:function(){var t=this;axios.get("journal/entries").then((function(e){t.journalEntries=e.data,t.journalEntries.current_page=e.data.current_page,t.journalEntries.next_page_url=e.data.next_page_url,t.journalEntries.per_page=e.data.per_page,t.journalEntries.prev_page_url=e.data.prev_page_url,t.journalEntries.total=e.data.total}))},deleteJournalEntry:function(t){this.journalEntries.data.filter((function(e){return e.id==t})),this.journalEntries.data=this.journalEntries.data.filter((function(e){return e.id!==t}))},hasRated:function(t){this.journalEntries.data.unshift(t)},loadMore:function(){var t=this;this.loadingMore=!0,axios.get("journal/entries?page="+(this.journalEntries.current_page+1)).then((function(e){t.journalEntries.current_page=e.data.current_page,t.journalEntries.next_page_url=e.data.next_page_url,t.journalEntries.per_page=e.data.per_page,t.journalEntries.prev_page_url=e.data.prev_page_url,t.journalEntries.total=e.data.total;var a,s=i(e.data.data);try{for(s.s();!(a=s.n()).done;){var n=a.value;t.journalEntries.data.push(n)}}catch(t){s.e(t)}finally{s.f()}t.loadingMore=!1}))}}};a(2831);const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"mw9 center"},[a("div",{staticClass:"w-70-ns w-100 pa2",class:[t.dirltr?"fl":"fr"]},[a("journal-rate-day",{on:{hasRated:t.hasRated}}),t._v(" "),t.journalEntries.data?a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"journal-entries-body",expression:"'journal-entries-body'"},{name:"cy-items",rawName:"v-cy-items",value:t.journalEntries.data.map((function(t){return t.id})),expression:"journalEntries.data.map(j => j.id)"}],attrs:{"cy-object-items":t.journalEntries.data.map((function(t){return t.object.id}))}},t._l(t.journalEntries.data,(function(e){return a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"entry-body-"+e.id,expression:"'entry-body-' + journalEntry.id"}],key:e.id,staticClass:"cf"},["App\\Models\\Journal\\Day"==e.journalable_type?a("journal-content-rate",{attrs:{"journal-entry":e},on:{deleteJournalEntry:t.deleteJournalEntry}}):"App\\Models\\Account\\Activity"==e.journalable_type?a("journal-content-activity",{attrs:{"journal-entry":e}}):"App\\Models\\Journal\\Entry"==e.journalable_type?a("journal-content-entry",{attrs:{"journal-entry":e},on:{deleteJournalEntry:t.deleteJournalEntry}}):t._e()],1)})),0):t._e(),t._v(" "),t.journalEntries.per_page*t.journalEntries.current_page<=t.journalEntries.total?a("div",{staticClass:"br3 ba b--gray-monica bg-white pr3 pb3 pt3 mb3 tc"},[a("p",{staticClass:"mb0 pointer",on:{click:function(e){return t.loadMore()}}},[t.loadingMore?a("span",{staticClass:"black-50"},[t._v("\n "+t._s(t.$t("app.loading"))+"\n ")]):a("span",[t._v("\n "+t._s(t.$t("app.load_more"))+"\n ")])])]):t._e(),t._v(" "),0===t.journalEntries.total?a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"journal-blank-state",expression:"'journal-blank-state'"}],staticClass:"br3 ba b--gray-monica bg-white pr3 pb3 pt3 mb3 tc"},[a("div",{staticClass:"tc mb4"},[a("img",{attrs:{src:"img/journal/blank.svg",alt:t.$t("journal.journal_empty")}})]),t._v(" "),a("h3",[t._v("\n "+t._s(t.$t("journal.journal_blank_cta"))+"\n ")]),t._v(" "),a("p",[t._v(t._s(t.$t("journal.journal_blank_description")))])]):t._e()],1),t._v(" "),a("div",{staticClass:"w-30 pa2",class:[t.dirltr?"fl":"fr"]},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-entry-button",expression:"'add-entry-button'"}],staticClass:"btn btn-primary w-100 mb4",attrs:{href:"journal/add"}},[t._v("\n "+t._s(t.$t("journal.journal_add"))+"\n ")]),t._v(" "),a("p",[t._v(t._s(t.$t("journal.journal_description")))])])])}),[],!1,null,"20f45828",null).exports},4811:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={data:function(){return{day:{rate:"",comment:""},hasRated:"notYet",showSadSmileyColor:!1,showHappySmileyColor:!1}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.hasAlreadyRatedToday()},hasAlreadyRatedToday:function(){var t=this;axios.get("journal/hasRated").then((function(e){t.hasRated=e.data}))},showComment:function(t){this.day.rate=t,this.hasRated="addComment"},dismiss:function(){this.hasRated="notYet",this.day.rate=0,this.day.comment=""},rate:function(){var t=this;this.hasRated="justNow",axios.post("journal/day",this.day).then((function(e){t.showSadSmileyColor=!1,t.showHappySmileyColor=!1,t.$emit("hasRated",e.data)}))}}};a(2249);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return 1!=t.hasRated?a("div",{staticClass:"br3 ba b--gray-monica bg-white pa3 mb4"},[a("transition-group",{attrs:{name:"fade",mode:"out-in"}},["notYet"==t.hasRated||"addComment"==t.hasRated?a("div",{key:"rate"},[a("div",{staticClass:"flex items-center"},[a("div",{staticClass:"fl w-70 f3 pl2"},[t._v("\n "+t._s(t.$t("journal.journal_rate"))+"\n ")]),t._v(" "),a("div",{staticClass:"w-30"},[a("div",{staticClass:"flex items-center h-100"},[a("div",{staticClass:"flex-none w-100",class:[t.dirltr?"tr":"tl"]},[t.showSadSmileyColor?t._e():a("svg",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"sad-reaction-button",expression:"'sad-reaction-button'"}],staticClass:"pointer",class:{selected:1==t.day.rate},attrs:{width:"42px",height:"41px",viewBox:"0 0 42 41",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},on:{click:function(e){return t.showComment(1)},mouseover:function(e){t.showSadSmileyColor=!0}}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-695.000000, -165.000000)"}},[a("g",{attrs:{id:"Group",transform:"translate(695.000000, 165.000000)"}},[a("path",{attrs:{id:"Fill-87",d:"M41.9467391,20.5475529 C41.9467391,31.8129081 32.5673478,40.9454502 20.9978696,40.9454502 C9.42869565,40.9454502 0.0496086957,31.8129081 0.0496086957,20.5475529 C0.0496086957,9.28219757 9.42869565,0.149951854 20.9978696,0.149951854 C32.5673478,0.149951854 41.9467391,9.28219757 41.9467391,20.5475529",fill:"#E5E5E5"}}),t._v(" "),a("path",{attrs:{id:"Fill-88",d:"M36.4447391,28.5705697 C36.4447391,30.1432861 35.1342174,31.4187659 33.5184348,31.4187659 C31.9026522,31.4187659 30.5927391,30.1432861 30.5927391,28.5705697 C30.5927391,26.996668 33.5184348,21.6244798 33.5184348,21.6244798 C33.5184348,21.6244798 36.4447391,26.996668 36.4447391,28.5705697",fill:"#399EAF"}}),t._v(" "),a("path",{attrs:{id:"Fill-89",d:"M32.3226522,15.4969018 L32.6711304,15.4939383 L32.3226522,15.4939383 L32.3226522,15.4969018 L32.6711304,15.4939383 L32.3226522,15.4939383 C32.3226522,15.4942346 32.3220435,15.6601893 32.284913,15.8954892 C32.2575217,16.071816 32.2094348,16.2857789 32.1336522,16.4935185 C32.0767391,16.6496937 32.0043043,16.8014236 31.9184783,16.9350764 C31.7876087,17.1365927 31.6351304,17.2927678 31.4339565,17.4077507 C31.2312609,17.5212518 30.9661739,17.6095634 30.5346087,17.6116378 C30.282913,17.6113414 30.0866087,17.5793359 29.9283478,17.532513 C29.6532174,17.4486467 29.4806522,17.3265515 29.3254348,17.1608932 C29.2113043,17.0367236 29.1136087,16.8844009 29.035087,16.7154828 C28.9163913,16.4629947 28.8448696,16.1761303 28.8095652,15.9470537 C28.7733478,15.717977 28.7715217,15.5481699 28.7718261,15.528611 L28.7636087,15.528611 L28.7718261,15.528611 L28.7636087,15.528611 L28.7718261,15.528611 L28.076087,15.5206096 L28.7715217,15.536316 L28.7718261,15.528611 L28.076087,15.5206096 L28.7715217,15.536316 C28.784913,14.9637726 28.3192609,14.4887274 27.7312609,14.4753918 C27.1429565,14.4623525 26.655087,14.9157643 26.6416957,15.488604 L26.6413913,15.528611 C26.6413913,15.6296655 26.6468696,15.9049723 26.7065217,16.2780739 C26.7515652,16.5581223 26.8267391,16.8935877 26.9612609,17.2533536 C27.0623043,17.5227335 27.1968261,17.8063381 27.3812609,18.0863866 C27.656087,18.5051256 28.0526522,18.9188268 28.5907391,19.2172488 C29.1276087,19.5171525 29.7916957,19.6878486 30.5346087,19.6860706 C30.9835217,19.6860706 31.4026087,19.6256157 31.7836522,19.5094474 C32.4526087,19.3082274 32.9897826,18.9303843 33.368087,18.5045329 C33.6538696,18.1850703 33.8583913,17.8421962 34.0081304,17.5129541 C34.2324348,17.0186464 34.3377391,16.5521954 34.3937391,16.1906514 C34.4491304,15.8291074 34.4527826,15.5706923 34.453087,15.4939383 L34.453087,15.4788246 C34.447913,14.9059848 33.9667391,14.4454607 33.3784348,14.4504986 C32.7901304,14.4555365 32.3174783,14.924062 32.3226522,15.4969018",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-90",d:"M13.2248261,15.4969018 L13.5733043,15.4939383 L13.2248261,15.4939383 L13.2248261,15.4969018 L13.5733043,15.4939383 L13.2248261,15.4939383 C13.2248261,15.4942346 13.2242174,15.6601893 13.187087,15.8954892 C13.1596957,16.071816 13.1116087,16.2857789 13.0358261,16.4935185 C12.978913,16.6496937 12.9064783,16.8014236 12.8206522,16.9350764 C12.6897826,17.1365927 12.5373043,17.2927678 12.3361304,17.4077507 C12.1334348,17.5212518 11.8683478,17.6095634 11.4367826,17.6116378 C11.185087,17.6113414 10.9887826,17.5793359 10.8305217,17.532513 C10.5553913,17.4486467 10.3828261,17.3265515 10.2276087,17.1608932 C10.1134783,17.0367236 10.0157826,16.8844009 9.93726087,16.7154828 C9.81856522,16.4629947 9.74704348,16.1761303 9.71173913,15.9470537 C9.67552174,15.717977 9.67369565,15.5481699 9.674,15.528611 L9.66578261,15.528611 L9.674,15.528611 L9.66578261,15.528611 L9.674,15.528611 L8.97826087,15.5206096 L9.67369565,15.536316 L9.674,15.528611 L8.97826087,15.5206096 L9.67369565,15.536316 C9.68708696,14.9637726 9.22143478,14.4887274 8.63343478,14.4753918 C8.04513043,14.4623525 7.55726087,14.9157643 7.54386957,15.488604 L7.54356522,15.528611 C7.54356522,15.6296655 7.54904348,15.9049723 7.60869565,16.2780739 C7.65373913,16.5581223 7.72891304,16.8935877 7.86343478,17.2533536 C7.96447826,17.5227335 8.099,17.8063381 8.28343478,18.0863866 C8.55826087,18.5051256 8.95482609,18.9188268 9.49291304,19.2172488 C10.0297826,19.5171525 10.6938696,19.6878486 11.4367826,19.6860706 C11.8856957,19.6860706 12.3047826,19.6256157 12.6858261,19.5094474 C13.3547826,19.3082274 13.8919565,18.9303843 14.2702609,18.5045329 C14.5560435,18.1850703 14.7605652,17.8421962 14.9103043,17.5129541 C15.1346087,17.0186464 15.239913,16.5521954 15.295913,16.1906514 C15.3513043,15.8291074 15.3549565,15.5706923 15.3552609,15.4939383 L15.3552609,15.4788246 C15.350087,14.9059848 14.868913,14.4454607 14.2806087,14.4504986 C13.6923043,14.4555365 13.2196522,14.924062 13.2248261,15.4969018",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-91",d:"M14.5152609,28.1364206 L14.4954783,28.13079 L14.5152609,28.1367169 L14.5152609,28.1364206 L14.4954783,28.13079 L14.5152609,28.1367169 C14.5359565,28.0605556 14.9410435,26.8330841 15.946913,25.6951096 C16.4493913,25.1240479 17.0946087,24.5740268 17.9184783,24.1653636 C18.7438696,23.757293 19.7503478,23.4816898 21.0316522,23.4802081 C22.3558696,23.4816898 23.3818261,23.7729994 24.2145217,24.1988509 C24.8381304,24.5192025 25.353087,24.9201608 25.7794783,25.3477903 C26.418913,25.9884936 26.8541304,26.6917263 27.1222609,27.2287081 C27.2564783,27.4969026 27.349,27.7227194 27.4062174,27.8756348 C27.4348261,27.9520924 27.4546087,28.0101765 27.4661739,28.0463309 L27.4780435,28.0836707 L27.4795652,28.089005 L27.9382174,27.9615755 L27.4783478,28.0848561 L27.4795652,28.089005 L27.9382174,27.9615755 L27.4783478,28.0848561 C27.6347826,28.6369516 28.2215652,28.9614521 28.7885652,28.8091295 C29.3555652,28.6568069 29.6885217,28.0857452 29.5323913,27.5333533 C29.505913,27.4509687 29.0932174,25.9884936 27.8265217,24.4703052 C27.1925652,23.7134336 26.3367391,22.9435227 25.2082174,22.3638669 C24.0812174,21.7836184 22.6845652,21.4042936 21.0316522,21.4057753 C19.3775217,21.4042936 17.9766087,21.7868783 16.8444348,22.3709792 C15.9943913,22.8077955 15.2953043,23.3533713 14.7292174,23.9188024 C13.8797826,24.7681345 13.3249565,25.6610296 12.9749565,26.3482595 C12.6255652,27.0357858 12.4806957,27.5200177 12.467,27.5665443 C12.305087,28.117158 12.6328696,28.6911832 13.1983478,28.8488401 C13.7641304,29.0062006 14.3536522,28.6870343 14.5152609,28.1364206",fill:"#36301D"}})])])])]),t._v(" "),t.showSadSmileyColor?a("svg",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"sad-reaction-button",expression:"'sad-reaction-button'"}],staticClass:"pointer",class:{selected:1==t.day.rate},attrs:{width:"42px",height:"41px",viewBox:"0 0 42 41",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},on:{click:function(e){return t.showComment(1)},mouseleave:function(e){t.showSadSmileyColor=!1}}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-695.000000, -345.000000)"}},[a("g",{attrs:{id:"Group",transform:"translate(695.000000, 345.000000)"}},[a("path",{attrs:{id:"Fill-87",d:"M41.9467391,20.5475529 C41.9467391,31.8129081 32.5673478,40.9454502 20.9978696,40.9454502 C9.42869565,40.9454502 0.0496086957,31.8129081 0.0496086957,20.5475529 C0.0496086957,9.28219757 9.42869565,0.149951854 20.9978696,0.149951854 C32.5673478,0.149951854 41.9467391,9.28219757 41.9467391,20.5475529",fill:"#FF7272"}}),t._v(" "),a("path",{attrs:{id:"Fill-88",d:"M36.4447391,28.5705697 C36.4447391,30.1432861 35.1342174,31.4187659 33.5184348,31.4187659 C31.9026522,31.4187659 30.5927391,30.1432861 30.5927391,28.5705697 C30.5927391,26.996668 33.5184348,21.6244798 33.5184348,21.6244798 C33.5184348,21.6244798 36.4447391,26.996668 36.4447391,28.5705697",fill:"#D0021B"}}),t._v(" "),a("path",{attrs:{id:"Fill-89",d:"M32.3226522,15.4969018 L32.6711304,15.4939383 L32.3226522,15.4939383 L32.3226522,15.4969018 L32.6711304,15.4939383 L32.3226522,15.4939383 C32.3226522,15.4942346 32.3220435,15.6601893 32.284913,15.8954892 C32.2575217,16.071816 32.2094348,16.2857789 32.1336522,16.4935185 C32.0767391,16.6496937 32.0043043,16.8014236 31.9184783,16.9350764 C31.7876087,17.1365927 31.6351304,17.2927678 31.4339565,17.4077507 C31.2312609,17.5212518 30.9661739,17.6095634 30.5346087,17.6116378 C30.282913,17.6113414 30.0866087,17.5793359 29.9283478,17.532513 C29.6532174,17.4486467 29.4806522,17.3265515 29.3254348,17.1608932 C29.2113043,17.0367236 29.1136087,16.8844009 29.035087,16.7154828 C28.9163913,16.4629947 28.8448696,16.1761303 28.8095652,15.9470537 C28.7733478,15.717977 28.7715217,15.5481699 28.7718261,15.528611 L28.7636087,15.528611 L28.7718261,15.528611 L28.7636087,15.528611 L28.7718261,15.528611 L28.076087,15.5206096 L28.7715217,15.536316 L28.7718261,15.528611 L28.076087,15.5206096 L28.7715217,15.536316 C28.784913,14.9637726 28.3192609,14.4887274 27.7312609,14.4753918 C27.1429565,14.4623525 26.655087,14.9157643 26.6416957,15.488604 L26.6413913,15.528611 C26.6413913,15.6296655 26.6468696,15.9049723 26.7065217,16.2780739 C26.7515652,16.5581223 26.8267391,16.8935877 26.9612609,17.2533536 C27.0623043,17.5227335 27.1968261,17.8063381 27.3812609,18.0863866 C27.656087,18.5051256 28.0526522,18.9188268 28.5907391,19.2172488 C29.1276087,19.5171525 29.7916957,19.6878486 30.5346087,19.6860706 C30.9835217,19.6860706 31.4026087,19.6256157 31.7836522,19.5094474 C32.4526087,19.3082274 32.9897826,18.9303843 33.368087,18.5045329 C33.6538696,18.1850703 33.8583913,17.8421962 34.0081304,17.5129541 C34.2324348,17.0186464 34.3377391,16.5521954 34.3937391,16.1906514 C34.4491304,15.8291074 34.4527826,15.5706923 34.453087,15.4939383 L34.453087,15.4788246 C34.447913,14.9059848 33.9667391,14.4454607 33.3784348,14.4504986 C32.7901304,14.4555365 32.3174783,14.924062 32.3226522,15.4969018",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-90",d:"M13.2248261,15.4969018 L13.5733043,15.4939383 L13.2248261,15.4939383 L13.2248261,15.4969018 L13.5733043,15.4939383 L13.2248261,15.4939383 C13.2248261,15.4942346 13.2242174,15.6601893 13.187087,15.8954892 C13.1596957,16.071816 13.1116087,16.2857789 13.0358261,16.4935185 C12.978913,16.6496937 12.9064783,16.8014236 12.8206522,16.9350764 C12.6897826,17.1365927 12.5373043,17.2927678 12.3361304,17.4077507 C12.1334348,17.5212518 11.8683478,17.6095634 11.4367826,17.6116378 C11.185087,17.6113414 10.9887826,17.5793359 10.8305217,17.532513 C10.5553913,17.4486467 10.3828261,17.3265515 10.2276087,17.1608932 C10.1134783,17.0367236 10.0157826,16.8844009 9.93726087,16.7154828 C9.81856522,16.4629947 9.74704348,16.1761303 9.71173913,15.9470537 C9.67552174,15.717977 9.67369565,15.5481699 9.674,15.528611 L9.66578261,15.528611 L9.674,15.528611 L9.66578261,15.528611 L9.674,15.528611 L8.97826087,15.5206096 L9.67369565,15.536316 L9.674,15.528611 L8.97826087,15.5206096 L9.67369565,15.536316 C9.68708696,14.9637726 9.22143478,14.4887274 8.63343478,14.4753918 C8.04513043,14.4623525 7.55726087,14.9157643 7.54386957,15.488604 L7.54356522,15.528611 C7.54356522,15.6296655 7.54904348,15.9049723 7.60869565,16.2780739 C7.65373913,16.5581223 7.72891304,16.8935877 7.86343478,17.2533536 C7.96447826,17.5227335 8.099,17.8063381 8.28343478,18.0863866 C8.55826087,18.5051256 8.95482609,18.9188268 9.49291304,19.2172488 C10.0297826,19.5171525 10.6938696,19.6878486 11.4367826,19.6860706 C11.8856957,19.6860706 12.3047826,19.6256157 12.6858261,19.5094474 C13.3547826,19.3082274 13.8919565,18.9303843 14.2702609,18.5045329 C14.5560435,18.1850703 14.7605652,17.8421962 14.9103043,17.5129541 C15.1346087,17.0186464 15.239913,16.5521954 15.295913,16.1906514 C15.3513043,15.8291074 15.3549565,15.5706923 15.3552609,15.4939383 L15.3552609,15.4788246 C15.350087,14.9059848 14.868913,14.4454607 14.2806087,14.4504986 C13.6923043,14.4555365 13.2196522,14.924062 13.2248261,15.4969018",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-91",d:"M14.5152609,28.1364206 L14.4954783,28.13079 L14.5152609,28.1367169 L14.5152609,28.1364206 L14.4954783,28.13079 L14.5152609,28.1367169 C14.5359565,28.0605556 14.9410435,26.8330841 15.946913,25.6951096 C16.4493913,25.1240479 17.0946087,24.5740268 17.9184783,24.1653636 C18.7438696,23.757293 19.7503478,23.4816898 21.0316522,23.4802081 C22.3558696,23.4816898 23.3818261,23.7729994 24.2145217,24.1988509 C24.8381304,24.5192025 25.353087,24.9201608 25.7794783,25.3477903 C26.418913,25.9884936 26.8541304,26.6917263 27.1222609,27.2287081 C27.2564783,27.4969026 27.349,27.7227194 27.4062174,27.8756348 C27.4348261,27.9520924 27.4546087,28.0101765 27.4661739,28.0463309 L27.4780435,28.0836707 L27.4795652,28.089005 L27.9382174,27.9615755 L27.4783478,28.0848561 L27.4795652,28.089005 L27.9382174,27.9615755 L27.4783478,28.0848561 C27.6347826,28.6369516 28.2215652,28.9614521 28.7885652,28.8091295 C29.3555652,28.6568069 29.6885217,28.0857452 29.5323913,27.5333533 C29.505913,27.4509687 29.0932174,25.9884936 27.8265217,24.4703052 C27.1925652,23.7134336 26.3367391,22.9435227 25.2082174,22.3638669 C24.0812174,21.7836184 22.6845652,21.4042936 21.0316522,21.4057753 C19.3775217,21.4042936 17.9766087,21.7868783 16.8444348,22.3709792 C15.9943913,22.8077955 15.2953043,23.3533713 14.7292174,23.9188024 C13.8797826,24.7681345 13.3249565,25.6610296 12.9749565,26.3482595 C12.6255652,27.0357858 12.4806957,27.5200177 12.467,27.5665443 C12.305087,28.117158 12.6328696,28.6911832 13.1983478,28.8488401 C13.7641304,29.0062006 14.3536522,28.6870343 14.5152609,28.1364206",fill:"#36301D"}})])])])]):t._e(),t._v(" "),a("svg",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"medium-reaction-button",expression:"'medium-reaction-button'"}],staticClass:"pointer",class:{selected:2==t.day.rate},attrs:{width:"42px",height:"41px",viewBox:"0 0 42 41",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},on:{click:function(e){return t.showComment(2)}}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-754.000000, -165.000000)"}},[a("g",{attrs:{id:"Group-2",transform:"translate(754.000000, 165.000000)"}},[a("path",{attrs:{id:"Fill-96",d:"M41.8643309,20.5475529 C41.8643309,31.8129081 32.5521151,40.9454502 21.0661727,40.9454502 C9.57992806,40.9454502 0.268618705,31.8129081 0.268618705,20.5475529 C0.268618705,9.28219757 9.57992806,0.149951854 21.0661727,0.149951854 C32.5521151,0.149951854 41.8643309,9.28219757 41.8643309,20.5475529",fill:"#E5E5E5"}}),t._v(" "),a("path",{attrs:{id:"Fill-97",d:"M11.5989496,21.8043628 L11.5989496,21.8043628 C10.7680144,21.8043628 10.0881583,21.1375808 10.0881583,20.3226251 L10.0881583,16.7664546 C10.0881583,15.9514989 10.7680144,15.2847169 11.5989496,15.2847169 C12.4298849,15.2847169 13.109741,15.9514989 13.109741,16.7664546 L13.109741,20.3226251 C13.109741,21.1375808 12.4298849,21.8043628 11.5989496,21.8043628",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-98",d:"M30.534,21.8043628 L30.534,21.8043628 C29.7030647,21.8043628 29.0232086,21.1375808 29.0232086,20.3226251 L29.0232086,16.7664546 C29.0232086,15.9514989 29.7030647,15.2847169 30.534,15.2847169 C31.3649353,15.2847169 32.0447914,15.9514989 32.0447914,16.7664546 L32.0447914,20.3226251 C32.0447914,21.1375808 31.3649353,21.8043628 30.534,21.8043628",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-99",d:"M9.15690647,27.2639734 L32.9760432,27.2639734 C33.4767194,27.2639734 33.882518,26.8659787 33.882518,26.3749308 C33.882518,25.883883 33.4767194,25.4858882 32.9760432,25.4858882 L9.15690647,25.4858882 C8.65623022,25.4858882 8.25043165,25.883883 8.25043165,26.3749308 C8.25043165,26.8659787 8.65623022,27.2639734 9.15690647,27.2639734",fill:"#36301D"}})])])])]),t._v(" "),t.showHappySmileyColor?t._e():a("svg",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"happy-reaction-button",expression:"'happy-reaction-button'"}],staticClass:"pointer",class:{selected:3==t.day.rate},attrs:{width:"42px",height:"42px",viewBox:"0 0 42 42",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},on:{click:function(e){return t.showComment(3)},mouseover:function(e){t.showHappySmileyColor=!0}}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-814.000000, -165.000000)"}},[a("g",{attrs:{id:"Group-3",transform:"translate(814.000000, 165.000000)"}},[a("path",{attrs:{id:"Fill-11",d:"M42,20.5961538 C42,31.9710023 32.5972745,41.1923077 20.9996949,41.1923077 C9.40181023,41.1923077 0,31.9710023 0,20.5961538 C0,9.22130542 9.40181023,0 20.9996949,0 C32.5972745,0 42,9.22130542 42,20.5961538",fill:"#E5E5E5"}}),t._v(" "),a("path",{attrs:{id:"Fill-12",d:"M11.3076923,21 L11.3076923,21 C10.4192308,21 9.69230769,20.3391608 9.69230769,19.5314685 L9.69230769,16.006993 C9.69230769,15.1993007 10.4192308,14.5384615 11.3076923,14.5384615 C12.1961538,14.5384615 12.9230769,15.1993007 12.9230769,16.006993 L12.9230769,19.5314685 C12.9230769,20.3391608 12.1961538,21 11.3076923,21",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-13",d:"M30.6923077,21 L30.6923077,21 C29.8038462,21 29.0769231,20.3391608 29.0769231,19.5314685 L29.0769231,16.006993 C29.0769231,15.1993007 29.8038462,14.5384615 30.6923077,14.5384615 C31.5807692,14.5384615 32.3076923,15.1993007 32.3076923,16.006993 L32.3076923,19.5314685 C32.3076923,20.3391608 31.5807692,21 30.6923077,21",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-14",d:"M27.0720842,24.0517885 L27.6146482,24.3231607 L27.078106,24.0385354 L27.0720842,24.0517885 L27.6146482,24.3231607 L27.078106,24.0385354 L27.0756973,24.0432687 C27.0404698,24.1114273 26.6683226,24.8097374 25.6979098,25.4916389 C24.7250883,26.1716472 23.1440652,26.864593 20.5631224,26.868064 C19.1874426,26.8677485 18.0993036,26.6692681 17.239993,26.3852739 C15.9516293,25.9577049 15.1687955,25.3417531 14.6996974,24.8539142 C14.4660516,24.6096793 14.3127969,24.3966836 14.222771,24.2556332 C14.1776075,24.1852658 14.1484018,24.1325691 14.1330462,24.1035385 L14.1200993,24.0782946 L14.0261593,24.1278358 L14.1210026,24.0801879 L14.1200993,24.0782946 L14.0261593,24.1278358 L14.1210026,24.0801879 L13.4688418,24.4099367 L14.1264222,24.0921788 L14.1210026,24.0801879 L13.4688418,24.4099367 L14.1264222,24.0921788 C13.8828405,23.5383902 13.2565734,23.296364 12.7281606,23.5516432 C12.1997478,23.8069224 11.9688119,24.4629489 12.2123936,25.0170531 C12.2659876,25.1388551 12.7408064,26.1596563 14.0342887,27.154267 C14.6795244,27.6503102 15.5267914,28.1353091 16.6058977,28.491564 C17.6847028,28.84845 18.9935407,29.0772231 20.5631224,29.0769075 C23.7028881,29.0813252 25.8180447,28.1431978 27.1220651,27.1429072 C28.4293976,26.1448255 28.919873,25.1224465 28.9737681,25.0038001 C29.224576,24.4531669 29.0023717,23.7939849 28.4769698,23.5311325 C27.9518689,23.2682801 27.3228921,23.5014709 27.0720842,24.0517885",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-15",d:"M7.26939206,25.8461538 C5.48457391,25.8461538 4.03846154,24.5805233 4.03846154,23.0190896 C4.03846154,21.457656 5.48457391,20.1923077 7.26939206,20.1923077 C9.05324247,20.1923077 10.5,21.457656 10.5,23.0190896 C10.5,24.5805233 9.05324247,25.8461538 7.26939206,25.8461538",fill:"#EB9260"}}),t._v(" "),a("path",{attrs:{id:"Fill-16",d:"M37.1540074,25.8461538 C35.3691893,25.8461538 33.9230769,24.5805233 33.9230769,23.0190896 C33.9230769,21.457656 35.3691893,20.1923077 37.1540074,20.1923077 C38.9381804,20.1923077 40.3846154,21.457656 40.3846154,23.0190896 C40.3846154,24.5805233 38.9381804,25.8461538 37.1540074,25.8461538",fill:"#EB9260"}})])])])]),t._v(" "),t.showHappySmileyColor?a("svg",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"happy-reaction-button",expression:"'happy-reaction-button'"}],staticClass:"pointer",class:{selected:3==t.day.rate},attrs:{width:"42px",height:"42px",viewBox:"0 0 42 42",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},on:{click:function(e){return t.showComment(3)},mouseleave:function(e){t.showHappySmileyColor=!1}}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-814.000000, -345.000000)"}},[a("g",{attrs:{id:"Group-3",transform:"translate(814.000000, 345.000000)"}},[a("path",{attrs:{id:"Fill-11",d:"M42,20.5961538 C42,31.9710023 32.5972745,41.1923077 20.9996949,41.1923077 C9.40181023,41.1923077 0,31.9710023 0,20.5961538 C0,9.22130542 9.40181023,0 20.9996949,0 C32.5972745,0 42,9.22130542 42,20.5961538",fill:"#F9CE32"}}),t._v(" "),a("path",{attrs:{id:"Fill-12",d:"M11.3076923,21 L11.3076923,21 C10.4192308,21 9.69230769,20.3391608 9.69230769,19.5314685 L9.69230769,16.006993 C9.69230769,15.1993007 10.4192308,14.5384615 11.3076923,14.5384615 C12.1961538,14.5384615 12.9230769,15.1993007 12.9230769,16.006993 L12.9230769,19.5314685 C12.9230769,20.3391608 12.1961538,21 11.3076923,21",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-13",d:"M30.6923077,21 L30.6923077,21 C29.8038462,21 29.0769231,20.3391608 29.0769231,19.5314685 L29.0769231,16.006993 C29.0769231,15.1993007 29.8038462,14.5384615 30.6923077,14.5384615 C31.5807692,14.5384615 32.3076923,15.1993007 32.3076923,16.006993 L32.3076923,19.5314685 C32.3076923,20.3391608 31.5807692,21 30.6923077,21",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-14",d:"M27.0720842,24.0517885 L27.6146482,24.3231607 L27.078106,24.0385354 L27.0720842,24.0517885 L27.6146482,24.3231607 L27.078106,24.0385354 L27.0756973,24.0432687 C27.0404698,24.1114273 26.6683226,24.8097374 25.6979098,25.4916389 C24.7250883,26.1716472 23.1440652,26.864593 20.5631224,26.868064 C19.1874426,26.8677485 18.0993036,26.6692681 17.239993,26.3852739 C15.9516293,25.9577049 15.1687955,25.3417531 14.6996974,24.8539142 C14.4660516,24.6096793 14.3127969,24.3966836 14.222771,24.2556332 C14.1776075,24.1852658 14.1484018,24.1325691 14.1330462,24.1035385 L14.1200993,24.0782946 L14.0261593,24.1278358 L14.1210026,24.0801879 L14.1200993,24.0782946 L14.0261593,24.1278358 L14.1210026,24.0801879 L13.4688418,24.4099367 L14.1264222,24.0921788 L14.1210026,24.0801879 L13.4688418,24.4099367 L14.1264222,24.0921788 C13.8828405,23.5383902 13.2565734,23.296364 12.7281606,23.5516432 C12.1997478,23.8069224 11.9688119,24.4629489 12.2123936,25.0170531 C12.2659876,25.1388551 12.7408064,26.1596563 14.0342887,27.154267 C14.6795244,27.6503102 15.5267914,28.1353091 16.6058977,28.491564 C17.6847028,28.84845 18.9935407,29.0772231 20.5631224,29.0769075 C23.7028881,29.0813252 25.8180447,28.1431978 27.1220651,27.1429072 C28.4293976,26.1448255 28.919873,25.1224465 28.9737681,25.0038001 C29.224576,24.4531669 29.0023717,23.7939849 28.4769698,23.5311325 C27.9518689,23.2682801 27.3228921,23.5014709 27.0720842,24.0517885",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-15",d:"M7.26939206,25.8461538 C5.48457391,25.8461538 4.03846154,24.5805233 4.03846154,23.0190896 C4.03846154,21.457656 5.48457391,20.1923077 7.26939206,20.1923077 C9.05324247,20.1923077 10.5,21.457656 10.5,23.0190896 C10.5,24.5805233 9.05324247,25.8461538 7.26939206,25.8461538",fill:"#EB9260"}}),t._v(" "),a("path",{attrs:{id:"Fill-16",d:"M37.1540074,25.8461538 C35.3691893,25.8461538 33.9230769,24.5805233 33.9230769,23.0190896 C33.9230769,21.457656 35.3691893,20.1923077 37.1540074,20.1923077 C38.9381804,20.1923077 40.3846154,21.457656 40.3846154,23.0190896 C40.3846154,24.5805233 38.9381804,25.8461538 37.1540074,25.8461538",fill:"#EB9260"}})])])])]):t._e()])])])]),t._v(" "),"addComment"==t.hasRated?a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"comment",expression:"'comment'"}],key:"comment",staticClass:"pt2"},[a("form-textarea",{attrs:{id:"comment",required:!1,label:t.$t("journal.journal_add_comment"),rows:4,placeholder:t.$t("people.life_event_create_default_description")},model:{value:t.day.comment,callback:function(e){t.$set(t.day,"comment",e)},expression:"day.comment"}}),t._v(" "),a("div",{staticClass:"pv3"},[a("div",{staticClass:"flex-ns justify-between"},[a("div",[a("a",{staticClass:"btn btn-secondary tc w-auto-ns w-100 mb2 pb0-ns",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.dismiss()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("div",[a("button",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"save-entry-button",expression:"'save-entry-button'"}],staticClass:"btn btn-primary w-auto-ns w-100 mb2 pb0-ns",on:{click:function(e){return t.rate()}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])])])],1):t._e()]):t._e(),t._v(" "),"justNow"==t.hasRated?a("div",{key:"comeback",staticClass:"flex items-center"},[a("div",{staticClass:"w-70 f3 pl2"},[t._v("\n "+t._s(t.$t("journal.journal_come_back"))+"\n ")])]):t._e()])],1):t._e()}),[],!1,null,"77490e85",null).exports},8949:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{journalEntry:{type:Object,default:null}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"journal-calendar-box relative",class:[t.dirltr?"fl":"fr"]},[t.journalEntry.show_calendar?[a("div",{staticClass:"journal-calendar-text absolute tc"},[a("span",{staticClass:"db w-100"},[t._v("\n "+t._s(t.journalEntry.object.month_name)+"\n ")]),t._v(" "),a("span",{staticClass:"db w-100"},[t._v("\n "+t._s(t.journalEntry.object.year)+"\n ")])]),t._v(" "),a("div",{staticClass:"journal-calendar-svg"},[a("svg",{attrs:{width:"62px",height:"61px",viewBox:"0 0 62 61",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[a("defs",[a("rect",{attrs:{id:"path-1",x:"0",y:"8",width:"62",height:"53",rx:"4"}}),t._v(" "),a("rect",{attrs:{id:"path-2",x:"0",y:"6",width:"62",height:"53",rx:"4"}}),t._v(" "),a("rect",{attrs:{id:"path-3",x:"0",y:"4",width:"62",height:"53",rx:"4"}}),t._v(" "),a("rect",{attrs:{id:"path-4",x:"12",y:"0",width:"5",height:"12",rx:"2.5"}}),t._v(" "),a("rect",{attrs:{id:"path-5",x:"30",y:"0",width:"5",height:"12",rx:"2.5"}}),t._v(" "),a("rect",{attrs:{id:"path-6",x:"48",y:"0",width:"5",height:"12",rx:"2.5"}})]),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-87.000000, -243.000000)"}},[a("g",{attrs:{id:"Group-6",transform:"translate(87.000000, 243.000000)"}},[a("g",{attrs:{id:"Rectangle"}},[a("use",{attrs:{fill:"#FFFFFF","fill-rule":"evenodd","xlink:href":"#path-1"}}),t._v(" "),a("rect",{attrs:{stroke:"#DDE2E9","stroke-width":"1",x:"0.5",y:"8.5",width:"61",height:"52",rx:"4"}})]),t._v(" "),a("g",{attrs:{id:"Rectangle"}},[a("use",{attrs:{fill:"#FFFFFF","fill-rule":"evenodd","xlink:href":"#path-2"}}),t._v(" "),a("rect",{attrs:{stroke:"#DDE2E9","stroke-width":"1",x:"0.5",y:"6.5",width:"61",height:"52",rx:"4"}})]),t._v(" "),a("g",{attrs:{id:"Rectangle"}},[a("use",{attrs:{fill:"#FFFFFF","fill-rule":"evenodd","xlink:href":"#path-3"}}),t._v(" "),a("rect",{attrs:{stroke:"#DDE2E9","stroke-width":"1",x:"0.5",y:"4.5",width:"61",height:"52",rx:"4"}})]),t._v(" "),a("g",{attrs:{id:"Rectangle-2"}},[a("use",{attrs:{fill:"#DDE2E9","fill-rule":"evenodd","xlink:href":"#path-4"}}),t._v(" "),a("rect",{attrs:{stroke:"#DDE2E9","stroke-width":"1",x:"12.5",y:"0.5",width:"4",height:"11",rx:"2"}})]),t._v(" "),a("g",{attrs:{id:"Rectangle-2"}},[a("use",{attrs:{fill:"#DDE2E9","fill-rule":"evenodd","xlink:href":"#path-5"}}),t._v(" "),a("rect",{attrs:{stroke:"#DDE2E9","stroke-width":"1",x:"30.5",y:"0.5",width:"4",height:"11",rx:"2"}})]),t._v(" "),a("g",{attrs:{id:"Rectangle-2"}},[a("use",{attrs:{fill:"#DDE2E9","fill-rule":"evenodd","xlink:href":"#path-6"}}),t._v(" "),a("rect",{attrs:{stroke:"#DDE2E9","stroke-width":"1",x:"48.5",y:"0.5",width:"4",height:"11",rx:"2"}})])])])])])])]:[t._v("\n  \n ")]],2)}),[],!1,null,null,null).exports},3457:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{journalEntry:{type:Object,default:null}},data:function(){return{showDescription:!1,activity:[]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.activity=this.journalEntry.object},toggleDescription:function(){this.showDescription=!this.showDescription},redirect:function(t){window.location.href="people/"+t.hash_id},compiledMarkdown:function(t){return null!=t?marked(t,{sanitize:!0}):""}}};a(4455);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("journal-calendar",{attrs:{"journal-entry":t.journalEntry}}),t._v(" "),a("div",{staticClass:"journal-calendar-content",class:[t.dirltr?"fl":"fr"]},[a("div",{staticClass:"br3 ba b--gray-monica bg-white mb3 journal-line"},[a("div",{staticClass:"flex pb3 pt3"},[a("div",{staticClass:"flex-none w-10 tc"},[a("h3",{staticClass:"mb0 normal fw5"},[t._v("\n "+t._s(t.activity.day)+"\n ")]),t._v(" "),a("p",{staticClass:"mb0 black-60 f6"},[t._v("\n "+t._s(t.activity.day_name)+"\n ")])]),t._v(" "),a("div",{staticClass:"flex-auto"},[a("p",{staticClass:"mb1"},[a("span",{staticClass:"pr2 f6 avenir"},[t._v("\n "+t._s(t.$t("journal.journal_entry_type_activity"))+": "+t._s(t.activity.activity_type)+"\n ")])]),t._v(" "),a("p",{staticClass:"mb1"},[t._v("\n "+t._s(t.activity.summary)+"\n ")]),t._v(" "),t.showDescription?a("p",{staticClass:"markdown",domProps:{innerHTML:t._s(t.compiledMarkdown(t.activity.description))}}):t._e()]),t._v(" "),t.activity.description?[a("div",{staticClass:"flex-none w-5 pointer",on:{click:function(e){return t.toggleDescription()}}},[a("div",{staticClass:"flex justify-center items-center h-100"},[a("svg",{directives:[{name:"tooltip",rawName:"v-tooltip.top",value:t.$t("journal.journal_show_comment"),expression:"$t('journal.journal_show_comment')",modifiers:{top:!0}}],staticClass:"flex-none",attrs:{width:"16px",height:"13px",viewBox:"0 0 16 13",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd","stroke-linecap":"square"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-839.000000, -279.000000)",stroke:"#979797"}},[a("g",{attrs:{id:"Group-4",transform:"translate(839.000000, 278.000000)"}},[a("path",{attrs:{id:"Line-2",d:"M0.5,1.5 L15.5,1.5"}}),t._v(" "),a("path",{attrs:{id:"Line-2",d:"M0.5,9.5 L15.5,9.5"}}),t._v(" "),a("path",{attrs:{id:"Line-2",d:"M0.5,5.5 L13.5,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line-2",d:"M0.5,13.5 L10.5,13.5"}})])])])])])])]:t._e()],2),t._v(" "),a("div",{staticClass:"flex bt b--gray-monica"},[a("div",{staticClass:"w-10"},[t._v("\n  \n ")]),t._v(" "),a("div",{staticClass:"flex-none w-30 mt2 pt1 pb2"},[a("p",{staticClass:"mb0 f6 gray"},[t._v("\n "+t._s(t.$t("journal.journal_created_automatically"))+"\n ")])]),t._v(" "),a("div",{staticClass:"flex-auto w-60 tr mt2 pa1 pr3 pb2"},[a("span",{staticClass:"f6 gray"},[t._v("\n "+t._s(t.$t("app.with"))+"\n ")]),t._v(" "),t._l(t.activity.attendees,(function(e){return a("div",{key:e.id,staticClass:"dib pointer ml2",on:{click:function(a){return t.redirect(e)}}},[a("img",{directives:[{name:"tooltip",rawName:"v-tooltip.bottom",value:e.complete_name,expression:"attendees.complete_name",modifiers:{bottom:!0}}],staticClass:"br3 journal-avatar-small",attrs:{src:e.information.avatar.url,alt:e.complete_name}})])}))],2)])])])],1)}),[],!1,null,"066fa32f",null).exports},8219:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{Confirm:a(4678).Z},props:{journalEntry:{type:Object,default:null}},data:function(){return{entry:[]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.entry=this.journalEntry.object},trash:function(){var t=this;axios.delete("journal/"+this.entry.id).then((function(e){t.$emit("deleteJournalEntry",t.journalEntry.id)}))},compiledMarkdown:function(t){return null!=t?marked(t,{sanitize:!0}):""}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("journal-calendar",{attrs:{"journal-entry":t.journalEntry}}),t._v(" "),a("div",{staticClass:"journal-calendar-content",class:[t.dirltr?"fl":"fr"]},[a("div",{directives:[{name:"tooltip",rawName:"v-tooltip.top",value:t.$t("journal.journal_created_at",{date:t.entry.created_at}),expression:"$t('journal.journal_created_at', { date: entry.created_at })",modifiers:{top:!0}}],staticClass:"br3 ba b--gray-monica bg-white pr3 pb3 pt3 mb3 journal-line"},[a("div",{staticClass:"flex"},[a("div",{staticClass:"flex-none w-10 tc"},[a("h3",{staticClass:"mb0 normal"},[t._v("\n "+t._s(t.entry.day)+"\n ")]),t._v(" "),a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.entry.day_name)+"\n ")])]),t._v(" "),a("div",{staticClass:"flex-auto"},[a("p",{staticClass:"mb1"},[a("span",{staticClass:"pr2 f6 avenir"},[t._v("\n "+t._s(t.$t("journal.journal_entry_type_journal"))+"\n ")])]),t._v(" "),a("h3",{staticClass:"mb1"},[t._v("\n "+t._s(t.entry.title)+"\n ")]),t._v(" "),a("span",{staticClass:"markdown",attrs:{dir:"auto"},domProps:{innerHTML:t._s(t.compiledMarkdown(t.entry.post))}}),t._v(" "),a("ul",{staticClass:"f7"},[a("li",{staticClass:"di"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"entry-edit-button-"+t.entry.id,expression:"'entry-edit-button-' + entry.id"}],staticClass:"pointer",attrs:{href:"journal/entries/"+t.entry.id+"/edit"}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("confirm",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"entry-delete-button-"+t.entry.id,expression:"'entry-delete-button-' + entry.id"}],attrs:{message:t.$t("journal.delete_confirmation")},on:{confirm:function(e){return t.trash()}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])],1)])])])])])],1)}),[],!1,null,null,null).exports},5848:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{journalEntry:{type:Object,default:null}},data:function(){return{day:[]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.day=this.journalEntry.object},destroy:function(){var t=this;axios.delete("journal/day/"+this.day.id).then((function(e){t.$emit("deleteJournalEntry",t.journalEntry.id)}))}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("journal-calendar",{attrs:{"journal-entry":t.journalEntry}}),t._v(" "),a("div",{staticClass:"journal-calendar-content",class:[t.dirltr?"fl":"fr"]},[a("div",{staticClass:"br3 ba b--gray-monica bg-white mb3 journal-line"},[a("div",{staticClass:"flex pb2 pt3"},[a("div",{staticClass:"flex-none w-10 tc"},[a("h3",{staticClass:"mb0 normal fw5"},[t._v("\n "+t._s(t.day.day)+"\n ")]),t._v(" "),a("p",{staticClass:"mb0 black-60 f6"},[t._v("\n "+t._s(t.day.day_name)+"\n ")])]),t._v(" "),a("div",{staticClass:"flex-auto flex items-center"},[t.day.comment?a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.day.comment)+"\n ")]):t._e(),t._v(" "),t.day.comment?t._e():a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("journal.journal_entry_rate"))+"\n ")])]),t._v(" "),a("div",{staticClass:"flex-none"},[1==t.day.rate?a("svg",{staticClass:"mt1",class:[t.dirltr?"mr3":"ml3"],attrs:{width:"42px",height:"41px",viewBox:"0 0 42 41",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-695.000000, -345.000000)"}},[a("g",{attrs:{id:"Group",transform:"translate(695.000000, 345.000000)"}},[a("path",{attrs:{id:"Fill-87",d:"M41.9467391,20.5475529 C41.9467391,31.8129081 32.5673478,40.9454502 20.9978696,40.9454502 C9.42869565,40.9454502 0.0496086957,31.8129081 0.0496086957,20.5475529 C0.0496086957,9.28219757 9.42869565,0.149951854 20.9978696,0.149951854 C32.5673478,0.149951854 41.9467391,9.28219757 41.9467391,20.5475529",fill:"#FF7272"}}),t._v(" "),a("path",{attrs:{id:"Fill-88",d:"M36.4447391,28.5705697 C36.4447391,30.1432861 35.1342174,31.4187659 33.5184348,31.4187659 C31.9026522,31.4187659 30.5927391,30.1432861 30.5927391,28.5705697 C30.5927391,26.996668 33.5184348,21.6244798 33.5184348,21.6244798 C33.5184348,21.6244798 36.4447391,26.996668 36.4447391,28.5705697",fill:"#D0021B"}}),t._v(" "),a("path",{attrs:{id:"Fill-89",d:"M32.3226522,15.4969018 L32.6711304,15.4939383 L32.3226522,15.4939383 L32.3226522,15.4969018 L32.6711304,15.4939383 L32.3226522,15.4939383 C32.3226522,15.4942346 32.3220435,15.6601893 32.284913,15.8954892 C32.2575217,16.071816 32.2094348,16.2857789 32.1336522,16.4935185 C32.0767391,16.6496937 32.0043043,16.8014236 31.9184783,16.9350764 C31.7876087,17.1365927 31.6351304,17.2927678 31.4339565,17.4077507 C31.2312609,17.5212518 30.9661739,17.6095634 30.5346087,17.6116378 C30.282913,17.6113414 30.0866087,17.5793359 29.9283478,17.532513 C29.6532174,17.4486467 29.4806522,17.3265515 29.3254348,17.1608932 C29.2113043,17.0367236 29.1136087,16.8844009 29.035087,16.7154828 C28.9163913,16.4629947 28.8448696,16.1761303 28.8095652,15.9470537 C28.7733478,15.717977 28.7715217,15.5481699 28.7718261,15.528611 L28.7636087,15.528611 L28.7718261,15.528611 L28.7636087,15.528611 L28.7718261,15.528611 L28.076087,15.5206096 L28.7715217,15.536316 L28.7718261,15.528611 L28.076087,15.5206096 L28.7715217,15.536316 C28.784913,14.9637726 28.3192609,14.4887274 27.7312609,14.4753918 C27.1429565,14.4623525 26.655087,14.9157643 26.6416957,15.488604 L26.6413913,15.528611 C26.6413913,15.6296655 26.6468696,15.9049723 26.7065217,16.2780739 C26.7515652,16.5581223 26.8267391,16.8935877 26.9612609,17.2533536 C27.0623043,17.5227335 27.1968261,17.8063381 27.3812609,18.0863866 C27.656087,18.5051256 28.0526522,18.9188268 28.5907391,19.2172488 C29.1276087,19.5171525 29.7916957,19.6878486 30.5346087,19.6860706 C30.9835217,19.6860706 31.4026087,19.6256157 31.7836522,19.5094474 C32.4526087,19.3082274 32.9897826,18.9303843 33.368087,18.5045329 C33.6538696,18.1850703 33.8583913,17.8421962 34.0081304,17.5129541 C34.2324348,17.0186464 34.3377391,16.5521954 34.3937391,16.1906514 C34.4491304,15.8291074 34.4527826,15.5706923 34.453087,15.4939383 L34.453087,15.4788246 C34.447913,14.9059848 33.9667391,14.4454607 33.3784348,14.4504986 C32.7901304,14.4555365 32.3174783,14.924062 32.3226522,15.4969018",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-90",d:"M13.2248261,15.4969018 L13.5733043,15.4939383 L13.2248261,15.4939383 L13.2248261,15.4969018 L13.5733043,15.4939383 L13.2248261,15.4939383 C13.2248261,15.4942346 13.2242174,15.6601893 13.187087,15.8954892 C13.1596957,16.071816 13.1116087,16.2857789 13.0358261,16.4935185 C12.978913,16.6496937 12.9064783,16.8014236 12.8206522,16.9350764 C12.6897826,17.1365927 12.5373043,17.2927678 12.3361304,17.4077507 C12.1334348,17.5212518 11.8683478,17.6095634 11.4367826,17.6116378 C11.185087,17.6113414 10.9887826,17.5793359 10.8305217,17.532513 C10.5553913,17.4486467 10.3828261,17.3265515 10.2276087,17.1608932 C10.1134783,17.0367236 10.0157826,16.8844009 9.93726087,16.7154828 C9.81856522,16.4629947 9.74704348,16.1761303 9.71173913,15.9470537 C9.67552174,15.717977 9.67369565,15.5481699 9.674,15.528611 L9.66578261,15.528611 L9.674,15.528611 L9.66578261,15.528611 L9.674,15.528611 L8.97826087,15.5206096 L9.67369565,15.536316 L9.674,15.528611 L8.97826087,15.5206096 L9.67369565,15.536316 C9.68708696,14.9637726 9.22143478,14.4887274 8.63343478,14.4753918 C8.04513043,14.4623525 7.55726087,14.9157643 7.54386957,15.488604 L7.54356522,15.528611 C7.54356522,15.6296655 7.54904348,15.9049723 7.60869565,16.2780739 C7.65373913,16.5581223 7.72891304,16.8935877 7.86343478,17.2533536 C7.96447826,17.5227335 8.099,17.8063381 8.28343478,18.0863866 C8.55826087,18.5051256 8.95482609,18.9188268 9.49291304,19.2172488 C10.0297826,19.5171525 10.6938696,19.6878486 11.4367826,19.6860706 C11.8856957,19.6860706 12.3047826,19.6256157 12.6858261,19.5094474 C13.3547826,19.3082274 13.8919565,18.9303843 14.2702609,18.5045329 C14.5560435,18.1850703 14.7605652,17.8421962 14.9103043,17.5129541 C15.1346087,17.0186464 15.239913,16.5521954 15.295913,16.1906514 C15.3513043,15.8291074 15.3549565,15.5706923 15.3552609,15.4939383 L15.3552609,15.4788246 C15.350087,14.9059848 14.868913,14.4454607 14.2806087,14.4504986 C13.6923043,14.4555365 13.2196522,14.924062 13.2248261,15.4969018",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-91",d:"M14.5152609,28.1364206 L14.4954783,28.13079 L14.5152609,28.1367169 L14.5152609,28.1364206 L14.4954783,28.13079 L14.5152609,28.1367169 C14.5359565,28.0605556 14.9410435,26.8330841 15.946913,25.6951096 C16.4493913,25.1240479 17.0946087,24.5740268 17.9184783,24.1653636 C18.7438696,23.757293 19.7503478,23.4816898 21.0316522,23.4802081 C22.3558696,23.4816898 23.3818261,23.7729994 24.2145217,24.1988509 C24.8381304,24.5192025 25.353087,24.9201608 25.7794783,25.3477903 C26.418913,25.9884936 26.8541304,26.6917263 27.1222609,27.2287081 C27.2564783,27.4969026 27.349,27.7227194 27.4062174,27.8756348 C27.4348261,27.9520924 27.4546087,28.0101765 27.4661739,28.0463309 L27.4780435,28.0836707 L27.4795652,28.089005 L27.9382174,27.9615755 L27.4783478,28.0848561 L27.4795652,28.089005 L27.9382174,27.9615755 L27.4783478,28.0848561 C27.6347826,28.6369516 28.2215652,28.9614521 28.7885652,28.8091295 C29.3555652,28.6568069 29.6885217,28.0857452 29.5323913,27.5333533 C29.505913,27.4509687 29.0932174,25.9884936 27.8265217,24.4703052 C27.1925652,23.7134336 26.3367391,22.9435227 25.2082174,22.3638669 C24.0812174,21.7836184 22.6845652,21.4042936 21.0316522,21.4057753 C19.3775217,21.4042936 17.9766087,21.7868783 16.8444348,22.3709792 C15.9943913,22.8077955 15.2953043,23.3533713 14.7292174,23.9188024 C13.8797826,24.7681345 13.3249565,25.6610296 12.9749565,26.3482595 C12.6255652,27.0357858 12.4806957,27.5200177 12.467,27.5665443 C12.305087,28.117158 12.6328696,28.6911832 13.1983478,28.8488401 C13.7641304,29.0062006 14.3536522,28.6870343 14.5152609,28.1364206",fill:"#36301D"}})])])])]):2==t.day.rate?a("svg",{staticClass:"mt1",class:[t.dirltr?"mr3":"ml3"],attrs:{width:"42px",height:"41px",viewBox:"0 0 42 41",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-754.000000, -165.000000)"}},[a("g",{attrs:{id:"Group-2",transform:"translate(754.000000, 165.000000)"}},[a("path",{attrs:{id:"Fill-96",d:"M41.8643309,20.5475529 C41.8643309,31.8129081 32.5521151,40.9454502 21.0661727,40.9454502 C9.57992806,40.9454502 0.268618705,31.8129081 0.268618705,20.5475529 C0.268618705,9.28219757 9.57992806,0.149951854 21.0661727,0.149951854 C32.5521151,0.149951854 41.8643309,9.28219757 41.8643309,20.5475529",fill:"#E5E5E5"}}),t._v(" "),a("path",{attrs:{id:"Fill-97",d:"M11.5989496,21.8043628 L11.5989496,21.8043628 C10.7680144,21.8043628 10.0881583,21.1375808 10.0881583,20.3226251 L10.0881583,16.7664546 C10.0881583,15.9514989 10.7680144,15.2847169 11.5989496,15.2847169 C12.4298849,15.2847169 13.109741,15.9514989 13.109741,16.7664546 L13.109741,20.3226251 C13.109741,21.1375808 12.4298849,21.8043628 11.5989496,21.8043628",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-98",d:"M30.534,21.8043628 L30.534,21.8043628 C29.7030647,21.8043628 29.0232086,21.1375808 29.0232086,20.3226251 L29.0232086,16.7664546 C29.0232086,15.9514989 29.7030647,15.2847169 30.534,15.2847169 C31.3649353,15.2847169 32.0447914,15.9514989 32.0447914,16.7664546 L32.0447914,20.3226251 C32.0447914,21.1375808 31.3649353,21.8043628 30.534,21.8043628",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-99",d:"M9.15690647,27.2639734 L32.9760432,27.2639734 C33.4767194,27.2639734 33.882518,26.8659787 33.882518,26.3749308 C33.882518,25.883883 33.4767194,25.4858882 32.9760432,25.4858882 L9.15690647,25.4858882 C8.65623022,25.4858882 8.25043165,25.883883 8.25043165,26.3749308 C8.25043165,26.8659787 8.65623022,27.2639734 9.15690647,27.2639734",fill:"#36301D"}})])])])]):3==t.day.rate?a("svg",{staticClass:"mt1",class:[t.dirltr?"mr3":"ml3"],attrs:{width:"42px",height:"42px",viewBox:"0 0 42 42",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[a("defs"),t._v(" "),a("g",{attrs:{id:"App",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Desktop",transform:"translate(-814.000000, -345.000000)"}},[a("g",{attrs:{id:"Group-3",transform:"translate(814.000000, 345.000000)"}},[a("path",{attrs:{id:"Fill-11",d:"M42,20.5961538 C42,31.9710023 32.5972745,41.1923077 20.9996949,41.1923077 C9.40181023,41.1923077 0,31.9710023 0,20.5961538 C0,9.22130542 9.40181023,0 20.9996949,0 C32.5972745,0 42,9.22130542 42,20.5961538",fill:"#F9CE32"}}),t._v(" "),a("path",{attrs:{id:"Fill-12",d:"M11.3076923,21 L11.3076923,21 C10.4192308,21 9.69230769,20.3391608 9.69230769,19.5314685 L9.69230769,16.006993 C9.69230769,15.1993007 10.4192308,14.5384615 11.3076923,14.5384615 C12.1961538,14.5384615 12.9230769,15.1993007 12.9230769,16.006993 L12.9230769,19.5314685 C12.9230769,20.3391608 12.1961538,21 11.3076923,21",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-13",d:"M30.6923077,21 L30.6923077,21 C29.8038462,21 29.0769231,20.3391608 29.0769231,19.5314685 L29.0769231,16.006993 C29.0769231,15.1993007 29.8038462,14.5384615 30.6923077,14.5384615 C31.5807692,14.5384615 32.3076923,15.1993007 32.3076923,16.006993 L32.3076923,19.5314685 C32.3076923,20.3391608 31.5807692,21 30.6923077,21",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-14",d:"M27.0720842,24.0517885 L27.6146482,24.3231607 L27.078106,24.0385354 L27.0720842,24.0517885 L27.6146482,24.3231607 L27.078106,24.0385354 L27.0756973,24.0432687 C27.0404698,24.1114273 26.6683226,24.8097374 25.6979098,25.4916389 C24.7250883,26.1716472 23.1440652,26.864593 20.5631224,26.868064 C19.1874426,26.8677485 18.0993036,26.6692681 17.239993,26.3852739 C15.9516293,25.9577049 15.1687955,25.3417531 14.6996974,24.8539142 C14.4660516,24.6096793 14.3127969,24.3966836 14.222771,24.2556332 C14.1776075,24.1852658 14.1484018,24.1325691 14.1330462,24.1035385 L14.1200993,24.0782946 L14.0261593,24.1278358 L14.1210026,24.0801879 L14.1200993,24.0782946 L14.0261593,24.1278358 L14.1210026,24.0801879 L13.4688418,24.4099367 L14.1264222,24.0921788 L14.1210026,24.0801879 L13.4688418,24.4099367 L14.1264222,24.0921788 C13.8828405,23.5383902 13.2565734,23.296364 12.7281606,23.5516432 C12.1997478,23.8069224 11.9688119,24.4629489 12.2123936,25.0170531 C12.2659876,25.1388551 12.7408064,26.1596563 14.0342887,27.154267 C14.6795244,27.6503102 15.5267914,28.1353091 16.6058977,28.491564 C17.6847028,28.84845 18.9935407,29.0772231 20.5631224,29.0769075 C23.7028881,29.0813252 25.8180447,28.1431978 27.1220651,27.1429072 C28.4293976,26.1448255 28.919873,25.1224465 28.9737681,25.0038001 C29.224576,24.4531669 29.0023717,23.7939849 28.4769698,23.5311325 C27.9518689,23.2682801 27.3228921,23.5014709 27.0720842,24.0517885",fill:"#36301D"}}),t._v(" "),a("path",{attrs:{id:"Fill-15",d:"M7.26939206,25.8461538 C5.48457391,25.8461538 4.03846154,24.5805233 4.03846154,23.0190896 C4.03846154,21.457656 5.48457391,20.1923077 7.26939206,20.1923077 C9.05324247,20.1923077 10.5,21.457656 10.5,23.0190896 C10.5,24.5805233 9.05324247,25.8461538 7.26939206,25.8461538",fill:"#EB9260"}}),t._v(" "),a("path",{attrs:{id:"Fill-16",d:"M37.1540074,25.8461538 C35.3691893,25.8461538 33.9230769,24.5805233 33.9230769,23.0190896 C33.9230769,21.457656 35.3691893,20.1923077 37.1540074,20.1923077 C38.9381804,20.1923077 40.3846154,21.457656 40.3846154,23.0190896 C40.3846154,24.5805233 38.9381804,25.8461538 37.1540074,25.8461538",fill:"#EB9260"}})])])])]):t._e()])]),t._v(" "),a("div",{staticClass:"flex bt b--gray-monica"},[a("div",{staticClass:"w-10"},[t._v("\n  \n ")]),t._v(" "),a("div",{staticClass:"flex-none w-90 mt2 pt0 pr3 pb2"},[a("ul",{staticClass:"f7"},[a("li",{staticClass:"di"},[t._v("\n "+t._s(t.$t("journal.journal_entry_rate"))+"\n ")]),t._v(" "),a("li",{staticClass:"di"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"entry-delete-button-"+t.journalEntry.id,expression:"'entry-delete-button-' + journalEntry.id"}],staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.destroy()}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])])])])])],1)}),[],!1,null,null,null).exports},9235:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});const i={props:{contact:{type:Object,default:null},imgclass:{type:String,default:""}},data:function(){return{check:!0}},computed:{avatar_url:function(){return _.isObject(this.contact.information)?this.contact.information.avatar.url:this.contact.avatar_url},default_avatar_color:function(){return _.isObject(this.contact.information)?this.contact.information.avatar.default_avatar_color:this.contact.default_avatar_color}}};a(1317);var s=a(1900);const n={components:{Avatarimg:(0,s.Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("span",[t.check?a("img",{directives:[{name:"tooltip",rawName:"v-tooltip.bottom",value:t.contact.complete_name,expression:"contact.complete_name",modifiers:{bottom:!0}}],class:["br4 h3 w3 dib tc",t.imgclass],attrs:{alt:t.contact.initials,src:t.avatar_url},on:{error:function(e){t.check=!1}}}):a("span",{directives:[{name:"tooltip",rawName:"v-tooltip.bottom",value:t.contact.complete_name,expression:"contact.complete_name",modifiers:{bottom:!0}}],class:["br4 h3 w3 dib tc","white f3 avatar-padding",t.imgclass],style:"background-color: "+t.default_avatar_color},[t._v("\n "+t._s(t.contact.initials)+"\n ")])])}),[],!1,null,"11f06ee2",null).exports},props:{contact:{type:Object,default:null},clickable:{type:Boolean,default:!0},imgclass:{type:String,default:""}},computed:{id:function(){return this.contact.hash_id?this.contact.hash_id:this.contact.id}}};const o=(0,s.Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"avatars"},[1==t.clickable?a("a",{attrs:{href:"people/"+t.id}},[a("avatarimg",{attrs:{contact:t.contact,imgclass:t.imgclass}})],1):a("avatarimg",{attrs:{contact:t.contact,imgclass:t.imgclass}})],1)}),[],!1,null,null,null).exports},4678:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},props:{name:{type:String,default:""},title:{type:String,default:""},message:{type:String,default:""},linkClass:{type:[String,Array],default:""}},computed:{lclass:function(){return""==this.linkClass?"pointer":this.linkClass}},methods:{open:function(){this.$refs.modal.open()},close:function(){this.$refs.modal.close()},confirm:function(t){this.close(),this.$emit("confirm",t)}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"di"},[a("a",{class:t.lclass,attrs:{title:t.title,href:""},on:{click:function(e){return e.preventDefault(),t.open(e)}}},[t._t("default")],2),t._v(" "),a("sweet-modal",{ref:"modal",attrs:{tabindex:"-1",role:"dialog"}},[a("div",[t._v("\n "+t._s(t.message)+"\n ")]),t._v(" "),a("div",{staticClass:"flex-ns justify-between",attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn mt2",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.close(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("button",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"confirm-"+t.name,expression:"'confirm-' + name"}],staticClass:"btn btn-primary w-auto-ns w100 mt2 pb0-ns",on:{click:function(e){return t.confirm(e)}}},[t._v("\n "+t._s(t.$t("app.confirm"))+"\n ")])])])],1)}),[],!1,null,null,null).exports},7254:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{errors:{type:[Array,Object],default:function(){return[]}}},computed:{apierror:function(){return _.isObject(this.errors[0])&&void 0!==this.errors[0].error_code},apimessage:function(){return _.isArray(this.errors[0].message)}},methods:{display:function(t){return _.isObject(t)}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return t.apierror||t.errors.length>0?a("div",{staticClass:"alert alert-danger"},[a("p",[t._v(t._s(t.$t("app.error_title")))]),t._v(" "),t.apierror?[t.apimessage?a("ul",t._l(t.errors[0].message,(function(e){return a("li",{key:e.id},[t._v("\n ▪️ "+t._s(e)+"\n ")])})),0):a("p",[t._v("\n "+t._s(t.errors[0].message)+"\n ")])]:["The given data was invalid."!=t.errors[0]?a("p",[t._v("\n "+t._s(t.errors[0])+"\n ")]):t._e(),t._v(" "),t.display(t.errors[1])?t._l(t.errors[1],(function(e){return a("ul",{key:e.id},t._l(e,(function(e){return a("li",{key:e.id},[t._v("\n ▪️ "+t._s(e)+"\n ")])})),0)})):t._e()]],2):t._e()}),[],!1,null,null,null).exports},4639:(t,e,a)=>{"use strict";a.d(e,{Z:()=>l});var i=a(381),s=a.n(i),n=a(8620),o=a(379);const r={mixins:[n.oE],props:{value:{type:String,default:""},days:{type:Array,default:function(){return[]}},months:{type:Array,default:function(){return[]}},day:{type:Number,default:0},month:{type:Number,default:0},birthdate:{type:String,default:""},age:{type:Number,default:0},reminder:{type:Boolean,default:!1}},data:function(){return{selectedDate:null,selectedOption:null,selectedOptionSave:null,selectedAge:0,selectedMonth:0,selectedDay:0,hasBirthdayReminder:!1}},validations:function(){switch(this.selectedOption){case"approximate":return{selectedAge:{required:o.C1,numeric:o.uR}};case"exact":return{selectedDate:{required:o.C1,before:(t=s()(),o.BM.withParams({type:"before",date:t},(function(e){return!o.BM.req(e)||s()(e).isBefore(t)})))}}}var t;return null},computed:{dirltr:function(){return"ltr"==this.$root.htmldir},locale:function(){return this.$root.locale}},watch:{birthdate:function(t){this.selectedDate=t},value:function(t){this.selectedOption=t},age:function(t){this.selectedAge=t}},mounted:function(){this.selectedDate=this.birthdate,this.selectedOption=""!=this.value?this.value:"unknown",this.selectedOptionSave=this.selectedOption,this.selectedAge=this.age,this.selectedMonth=this.month,this.selectedDay=this.day,this.hasBirthdayReminder=this.reminder},methods:{_focusAge:function(){var t=this;setTimeout((function(){t.$refs.age.focus()}),100)},_focusMonth:function(){var t=this;setTimeout((function(){t.$refs.month.focus()}),100)},_focusBirthday:function(){var t=this;setTimeout((function(){t.$refs.birthday.focus()}),100)},_saveOption:function(){this.selectedOptionSave=this.selectedOption}}};const l=(0,a(1900).Z)(r,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{staticClass:"pa4-ns ph3 pv2 bb b--gray-monica"},[a("div",{staticClass:"mb3 mb0-ns"},[a("form-radio",{attrs:{name:"birthdate",value:"unknown",dclass:"flex mb3",iclass:[t.dirltr?"mr2":"ml2"]},on:{change:function(e){t._saveOption()}},model:{value:t.selectedOption,callback:function(e){t.selectedOption=e},expression:"selectedOption"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.information_edit_unknown"))+"\n ")])],2),t._v(" "),a("form-radio",{attrs:{name:"birthdate",value:"approximate",dclass:"flex mb3",iclass:[t.dirltr?"mr2":"ml2"]},on:{change:function(e){"approximate"!==t.selectedOptionSave&&t._focusAge(),t._saveOption()}},model:{value:t.selectedOption,callback:function(e){t.selectedOption=e},expression:"selectedOption"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.information_edit_probably"))+"\n ")]),t._v(" "),"approximate"==t.selectedOption?a("div",{attrs:{slot:"extra"},slot:"extra"},[a("form-input",{ref:"age",attrs:{id:"age","input-type":"number",width:50,required:!0,validator:t.$v.selectedAge},model:{value:t.selectedAge,callback:function(e){t.selectedAge=e},expression:"selectedAge"}})],1):t._e()],2),t._v(" "),a("form-radio",{attrs:{name:"birthdate",value:"almost",dclass:"flex mb3",iclass:[t.dirltr?"mr2":"ml2"]},on:{change:function(e){"almost"!==t.selectedOptionSave&&t._focusMonth(),t._saveOption()}},model:{value:t.selectedOption,callback:function(e){t.selectedOption=e},expression:"selectedOption"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.information_edit_not_year"))+"\n ")]),t._v(" "),"almost"==t.selectedOption?a("div",{staticClass:"mt2",attrs:{slot:"extra"},slot:"extra"},[a("div",{staticClass:"flex"},[a("form-select",{ref:"month",class:[t.dirltr?"mr3":""],attrs:{id:"month",options:t.months,title:""},model:{value:t.selectedMonth,callback:function(e){t.selectedMonth=e},expression:"selectedMonth"}}),t._v(" "),a("form-select",{class:[t.dirltr?"":"mr3"],attrs:{id:"day",options:t.days,title:""},model:{value:t.selectedDay,callback:function(e){t.selectedDay=e},expression:"selectedDay"}})],1)]):t._e()],2),t._v(" "),a("form-radio",{attrs:{name:"birthdate",value:"exact",dclass:"flex mb3",iclass:[t.dirltr?"mr2":"ml2"]},on:{change:function(e){"exact"!==t.selectedOptionSave&&t._focusBirthday(),t._saveOption()}},model:{value:t.selectedOption,callback:function(e){t.selectedOption=e},expression:"selectedOption"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.information_edit_exact"))+"\n ")]),t._v(" "),"exact"==t.selectedOption?a("div",{staticClass:"mt2",attrs:{slot:"extra"},slot:"extra"},[a("form-date",{ref:"birthday",class:[t.dirltr?"fl":"fr"],attrs:{id:"birthdayDate","show-calendar-on-focus":!0,locale:t.locale,label:t.$t("people.information_edit_birthdate_label"),validator:t.$v.selectedDate},model:{value:t.selectedDate,callback:function(e){t.selectedDate=e},expression:"selectedDate"}})],1):t._e()],2)],1)]),t._v(" "),"exact"==t.selectedOption||"almost"==t.selectedOption?a("div",{staticClass:"pa4-ns ph3 pv2 bb b--gray-monica"},[a("div",{staticClass:"mb2 mb0-ns"},[a("form-checkbox",{attrs:{name:"addReminder",value:"addReminder",dclass:["flex",t.dirltr?"mr2":"ml2"]},model:{value:t.hasBirthdayReminder,callback:function(e){t.hasBirthdayReminder=e},expression:"hasBirthdayReminder"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.people_add_reminder_for_birthday"))+"\n ")])],2)],1)]):t._e()])}),[],!1,null,"5022183e",null).exports},1992:(t,e,a)=>{"use strict";a.d(e,{Z:()=>c});var i=a(381),s=a.n(i),n=a(8620),o=a(379);var r;const l={mixins:[n.oE],props:{value:{type:Boolean,default:!1},date:{type:String,default:""},reminder:{type:Boolean,default:!1}},data:function(){return{deceased:!1,dateKnown:!1,selectedDate:null}},validations:{selectedDate:{required:o.C1,before:(r=s()(),o.BM.withParams({type:"before",date:r},(function(t){return!o.BM.req(t)||s()(t).isBefore(r)})))}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir},locale:function(){return this.$root.locale}},watch:{value:function(t){this.deceased=t},date:function(t){this.selectedDate=t}},mounted:function(){this.deceased=this.value,this.dateKnown=""!=this.date,this.selectedDate=this.date},methods:{_focusDate:function(){var t=this;setTimeout((function(){t.$refs.deaceasedday.focus()}),100)}}};const c=(0,a(1900).Z)(l,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"pa4-ns ph3 pv2 bb b--gray-monica"},[a("div",{staticClass:"mb3 mb0-ns"},[a("form-checkbox",{attrs:{name:"is_deceased",value:!0,dclass:"flex mb2"},model:{value:t.deceased,callback:function(e){t.deceased=e},expression:"deceased"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.deceased_mark_person_deceased"))+"\n ")])],2),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:t.deceased,expression:"deceased"}],class:[t.dirltr?"ml4":"mr4"]},[a("form-checkbox",{attrs:{name:"is_deceased_date_known",value:!0,dclass:"flex mb1"},on:{change:function(e){return t._focusDate()}},model:{value:t.dateKnown,callback:function(e){t.dateKnown=e},expression:"dateKnown"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.deceased_know_date"))+"\n ")])],2),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:t.dateKnown,expression:"dateKnown"}],class:[t.dirltr?"ml4":"mr4"]},[a("form-date",{ref:"deaceasedday",attrs:{id:"deceased_date",label:t.$t("people.deceased_date_label"),"show-calendar-on-focus":!0,locale:t.locale,validator:t.$v.selectedDate},model:{value:t.selectedDate,callback:function(e){t.selectedDate=e},expression:"selectedDate"}}),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:""!=t.selectedDate,expression:"selectedDate != ''"}],staticClass:"mt2"},[a("form-checkbox",{attrs:{name:"add_reminder_deceased",value:!0,model:t.reminder}},[t._v("\n "+t._s(t.$t("people.deceased_add_reminder"))+"\n ")])],1)],1)],1)],1)])}),[],!1,null,"42d10e7f",null).exports},8993:(t,e,a)=>{"use strict";a.d(e,{Z:()=>n});var i=a(9614).Z;const s={name:"checkbox",input_type:"checkbox",input_iclass:"p-curve p-thick",components:i.components,model:i.model,props:i.props,data:i.data,computed:i.computed,watch:i.watch,mounted:i.mounted,methods:i.methods,render:i.render};const n=(0,a(1900).Z)(s,undefined,undefined,!1,null,null,null).exports},9178:(t,e,a)=>{"use strict";a.d(e,{Z:()=>r});var i=a(600),s=a(381),n=a.n(s);const o={components:{Datepicker:i.Z},model:{prop:"value",event:"input"},props:{id:{type:String,default:""},value:{type:String,default:""},label:{type:String,default:""},defaultDate:{type:String,default:""},locale:{type:String,default:""},showCalendarOnFocus:{type:Boolean,default:!1},validator:{type:Object,default:null}},data:function(){return{exchange:"",selectedDate:"",mondayFirst:!1}},computed:{exchangeFormat:function(){return"YYYY-MM-DD"},displayFormat:function(){return"L"},inputClass:function(){var t=["br2 f5 ba b--black-40 pa2 outline-0"];return this.validator&&t.push({error:this.validator.$error}),t},requiredMessage:function(){return this.$t("validation.vue.required",{field:this.label})},beforeMessage:function(){return this.$t("validation.vue.max.numeric",{field:this.label,max:this.displayValue(this.validator.$params.before.date)})}},watch:{value:function(t){this.updateExchange(t)}},mounted:function(){this.updateExchange(""===this.value?this.defaultDate:this.value),this.mondayFirst=1==n().localeData().firstDayOfWeek()},methods:{displayValue:function(t){return""!==t&&null!==t?n()(t).format(this.displayFormat):""},exchangeValue:function(t){return""!==t&&null!==t?n()(t).format(this.exchangeFormat):""},update:function(t){if(""===t||null===t)this.exchange="";else{var e=n()(t);e.isValid()||(e=n()()),this.exchange=e.format(this.exchangeFormat)}},updateExchange:function(t){if(this.exchange=t,""!==this.exchange){var e=n()(this.exchange,this.exchangeFormat);e.isValid()||(e=n()()),this.selectedDate=e.toDate()}this.update(this.selectedDate)},formatTypedValue:function(t){return""!==t&&null!==t?n()(t,this.displayFormat).toDate():""},focus:function(){this.$refs.select.$children[0].$refs.select.focus()},onInput:function(t){this.validator&&this.validator.$touch(),this.$emit("input",this.exchangeValue(t))},onSelected:function(t){this.update(t),this.onInput(t)}}};const r=(0,a(1900).Z)(o,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{class:{"form-group-error":t.validator&&t.validator.$error}},[a("datepicker",{ref:"select",attrs:{"ref-name":"select",value:t.selectedDate,format:t.displayValue,"parse-typed-date":t.formatTypedValue,language:t.locale,"monday-first":t.mondayFirst,"input-class":t.inputClass,typeable:!0,"clear-button":!0,"show-calendar-on-focus":t.showCalendarOnFocus},on:{input:function(e){return t.onInput(e)},selected:function(e){return t.onSelected(e)},clearDate:function(e){return t.onSelected("")}}}),t._v(" "),a("input",{attrs:{name:t.id,type:"hidden"},domProps:{value:t.exchange}}),t._v(" "),t.validator&&t.validator.$error&&void 0!==t.validator.required&&!t.validator.required?a("small",{staticClass:"error"},[t._v("\n "+t._s(t.requiredMessage)+"\n ")]):t._e(),t._v(" "),t.validator&&t.validator.$error&&void 0!==t.validator.before&&!t.validator.before?a("small",{staticClass:"error"},[t._v("\n "+t._s(t.beforeMessage)+"\n ")]):t._e()],1)}),[],!1,null,null,null).exports},4651:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{value:{type:[String,Number],default:""},title:{type:String,default:""},label:{type:String,default:null},id:{type:String,default:""},placeholder:{type:String,default:""},required:{type:Boolean,default:!0},inputType:{type:String,default:""},step:{type:String,default:""},width:{type:Number,default:-1},iclass:{type:[String,Array],default:""},maxlength:{type:Number,default:null},validator:{type:Object,default:null}},computed:{realid:function(){return this.id+this._uid},inputClass:function(){var t=[""!=this.iclass?this.iclass:"br2 f5 w-100 ba b--black-40 pa2 outline-0"];return this.validator&&t.push({error:this.validator.$error}),t.push("input"),t},inputStyle:function(){return this.width>=0?"width:"+this.width+"px":""},field:function(){return this.label&&this.label.length>0?this.label:this.title},requiredMessage:function(){return this.$t("validation.vue.required",{field:this.field})},urlMessage:function(){return this.$t("validation.vue.url",{field:this.field})},maxLengthMessage:function(){switch(this.inputType){case"number":"numeric"}return this.$t("validation.vue.max.".type,{field:this.field,max:this.validator?this.validator.$params.maxLength.max:""})}},methods:{focus:function(){this.$refs.input.focus()},onInput:function(t){this.validator&&void 0!==t.data&&this.validator.$reset(),this.$emit("input",t.target.value)},onSubmit:function(t){this.validator&&this.validator.$touch(),this.$emit("submit",t.target.value)},onBlur:function(t){this.validator&&""!==t.target.value&&this.validator.$touch(),this.$emit("blur",t.target.value)},onChange:function(t){this.validator&&this.validator.$touch(),this.$emit("change",t.target.value)}}};a(3553);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{class:{"form-group-error":t.validator&&t.validator.$error}},[t.title?a("label",{staticClass:"mb2",class:{b:t.required,error:t.validator&&t.validator.$error},attrs:{for:t.realid}},[t._v("\n "+t._s(t.title)+"\n ")]):t._e(),t._v(" "),a("input",{ref:"input",class:t.inputClass,style:t.inputStyle,attrs:{id:t.realid,type:t.inputType,autofocus:"",required:t.required,name:t.id,placeholder:t.placeholder,maxlength:t.maxlength,step:t.step},domProps:{value:t.value},on:{input:function(e){return t.onInput(e)},blur:function(e){return t.onBlur(e)},change:function(e){return t.onChange(e)},keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.onSubmit(e)}}}),t._v(" "),t.validator&&t.validator.$error&&void 0!==t.validator.required&&!t.validator.required?a("small",{staticClass:"error"},[t._v("\n "+t._s(t.requiredMessage)+"\n ")]):t._e(),t._v(" "),t.validator&&t.validator.$error&&void 0!==t.validator.maxLength&&!t.validator.maxLength?a("small",{staticClass:"error"},[t._v("\n "+t._s(t.maxLengthMessage)+"\n ")]):t._e(),t._v(" "),t.validator&&t.validator.$error&&void 0!==t.validator.url&&!t.validator.url?a("small",{staticClass:"error"},[t._v("\n "+t._s(t.urlMessage)+"\n ")]):t._e()])}),[],!1,null,"4de0f45a",null).exports},9614:(t,e,a)=>{"use strict";a.d(e,{Z:()=>n});var i=a(3509);const s={components:{PInput:a.n(i)()},model:{prop:"modelValue",event:"change"},props:{name:{type:String,default:""},value:{type:[String,Boolean],default:""},modelValue:{type:[String,Boolean],default:""},iclass:{type:[String,Array],default:""},fullClass:{type:[String,Array],default:""},dclass:{type:[String,Array],default:""},color:{type:[String,Array],default:""},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1}},data:function(){return{prop:null}},computed:{_type:function(){return this.$options.input_type?this.$options.input_type:"input"},inputClass:function(){return""!=this.fullClass?this.fullClass:[this.iclass,"p-default",this.$options.input_iclass]},inputColor:function(){return""!=this.color?this.color:"primary-o"}},watch:{modelValue:function(t){this.prop=t}},mounted:function(){this.prop=this.modelValue},methods:{select:function(){if(!this.disabled)switch(this._type){case"checkbox":this.$refs.input.$refs.input.checked=!this.$refs.input.$refs.input.checked,this.$emit("change",this.$refs.input.$refs.input.checked);break;case"radio":this.$refs.input.$refs.input.checked=!0,this.$emit("change",this.value)}},hasSlot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default";return!!this.$slots[t]||!!this.$scopedSlots[t]}}};const n=(0,a(1900).Z)(s,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{class:t.dclass},[a("div",[a("p-input",{ref:"input",class:t.inputClass,attrs:{name:t.name,type:t._type,color:t.inputColor,value:t.value,disabled:t.disabled,required:t.required},on:{change:function(e){return t.$emit("change",e)}},model:{value:t.prop,callback:function(e){t.prop=e},expression:"prop"}},[t._t("default"),t._v(" "),t._t("inputextra",null,{slot:"extra"})],2)],1),t._v(" "),a("div",{staticClass:"pointer",on:{click:function(e){return t.select()}}},[t.hasSlot("label")?a("label",{staticClass:"pointer"},[t._t("label")],2):t._e(),t._v(" "),t._t("extra")],2)])}),[],!1,null,null,null).exports},8589:(t,e,a)=>{"use strict";a.d(e,{Z:()=>n});var i=a(9614).Z;const s={name:"radio",input_type:"radio",input_iclass:"p-round p-thick",components:i.components,model:i.model,props:i.props,data:i.data,computed:i.computed,watch:i.watch,mounted:i.mounted,methods:i.methods,render:i.render};const n=(0,a(1900).Z)(s,undefined,undefined,!1,null,null,null).exports},2950:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{value:{type:[String,Number],default:""},options:{type:[Array,Object],default:function(){return[]}},title:{type:String,default:""},label:{type:String,default:null},id:{type:String,default:""},excludedId:{type:Number,default:-1},required:{type:Boolean,default:!0},iclass:{type:String,default:""},validator:{type:Object,default:null}},data:function(){return{selectedOption:null}},computed:{realid:function(){return this.id+this._uid},selectClass:function(){var t=[""!=this.iclass?this.iclass:"br2 f5 w-100 ba b--black-40 pa2 outline-0"];return this.validator&&t.push({error:this.validator.$error}),t.push("select"),t},field:function(){return this.label&&this.label.length>0?this.label:this.title},requiredMessage:function(){return this.$t("validation.vue.required",{field:this.field})}},watch:{value:function(t){this.selectedOption=t}},mounted:function(){this.selectedOption=this.value},methods:{filterExclude:function(t){var e=this;return t.filter((function(t){return t.id!=e.excludedId}))},focus:function(){this.$refs.select.focus()},onInput:function(t){this.validator&&this.validator.$touch(),this.$emit("input",t.target.value)}}};a(8622);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{class:{"form-group-error":t.validator&&t.validator.$error}},[t.title?a("label",{staticClass:"mb2",class:{b:t.required,error:t.validator&&t.validator.$error},attrs:{for:t.realid}},[t._v("\n "+t._s(t.title)+"\n ")]):t._e(),t._v(" "),a("select",{ref:"select",class:t.selectClass,attrs:{id:t.realid,name:t.id,required:t.required},domProps:{value:t.selectedOption},on:{input:t.onInput}},[Array.isArray(t.options)?t._l(t.filterExclude(t.options),(function(e){return a("option",{key:e.id,domProps:{value:e.id}},[t._v("\n "+t._s(e.name)+"\n ")])})):t._l(t.options,(function(e,i){return a("optgroup",{key:i,attrs:{label:e.name}},t._l(t.filterExclude(e.options),(function(e){return a("option",{key:e.id,domProps:{value:e.id}},[t._v("\n "+t._s(e.name)+"\n ")])})),0)}))],2),t._v(" "),t.validator&&t.validator.$error&&void 0!==t.validator.required&&!t.validator.required?a("small",{staticClass:"error"},[t._v("\n "+t._s(t.requiredMessage)+"\n ")]):t._e()])}),[],!1,null,"5dd09e02",null).exports},9734:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{value:{type:String,default:""},label:{type:String,default:""},id:{type:String,default:""},placeholder:{type:String,default:""},required:{type:Boolean,default:!0},width:{type:Number,default:-1},rows:{type:Number,default:0}},data:function(){return{buffer:this.value}},computed:{realid:function(){return this.id+this._uid},textareaStyle:function(){return this.width>=0?"width:"+this.width+"px":""}},watch:{value:function(t){this.buffer=t}},mounted:function(){this.buffer=this.value}};a(5569);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[t.label?a("label",{staticClass:"mb2",class:{b:t.required},attrs:{for:t.realid}},[t._v("\n "+t._s(t.label)+"\n ")]):t._e(),t._v(" "),a("textarea",{directives:[{name:"model",rawName:"v-model",value:t.buffer,expression:"buffer"}],staticClass:"br2 f5 w-100 ba b--black-40 pa2 outline-0",style:t.textareaStyle,attrs:{id:t.realid,autofocus:"",required:t.required,name:t.id,placeholder:t.placeholder,rows:t.rows},domProps:{value:t.buffer},on:{input:[function(e){e.target.composing||(t.buffer=e.target.value)},function(e){return t.$emit("input",t.buffer)}]}})])}),[],!1,null,"71bd12de",null).exports},7015:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{ToggleButton:a(9010).ToggleButton},props:{value:{type:Boolean,default:!1},title:{type:String,default:""},labels:{type:[Boolean,Object],default:!1},id:{type:String,default:""},required:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},iclass:{type:String,default:""}},data:function(){return{selectedOption:null}},computed:{realId:function(){return this.id+this._uid},inputClass:function(){return""!=this.iclass?this.iclass:""}},watch:{value:function(t){this.selectedOption=t}},mounted:function(){this.selectedOption=this.value}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[t.title?a("label",{staticClass:"mb2",class:{b:t.required},attrs:{for:t.realId}},[t._v("\n "+t._s(t.title)+"\n ")]):t._e(),t._v(" "),a("toggle-button",{class:t.inputClass,attrs:{id:t.realId,name:t.id,sync:!0,labels:t.labels,disabled:t.disabled,value:t.selectedOption},on:{input:function(e){return t.$emit("input",e)},change:function(e){return t.$emit("change",e)}}})],1)}),[],!1,null,null,null).exports},8776:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={data:function(){return{tokens:[]}},mounted:function(){this.getTokens()},methods:{getTokens:function(){var t=this;axios.get("oauth/tokens").then((function(e){t.tokens=e.data}))},revoke:function(t){var e=this;axios.delete("oauth/tokens/"+t.id).then((function(t){e.getTokens()}))}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("h3",{staticClass:"mb3"},[t._v("\n "+t._s(t.$t("settings.api_authorized_clients"))+"\n ")]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.api_authorized_clients_desc")))]),t._v(" "),0===t.tokens.length?a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.$t("settings.api_authorized_clients_none"))+"\n ")]):a("div",{staticClass:"dt dt--fixed w-100 collapse br--top br--bottom"},[a("em",[t._v(t._s(t.$t("settings.api_authorized_clients_title")))]),t._v(" "),a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc w-20"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.api_authorized_clients_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc w-20"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.api_authorized_clients_scopes"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_actions"))+"\n ")])])]),t._v(" "),t._l(t.tokens,(function(e){return a("div",{key:e.id,staticClass:"dt-row bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[t._v("\n "+t._s(e.client.name)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[e.scopes.length>0?a("span",[t._v("\n "+t._s(e.scopes.join(", "))+"\n ")]):t._e()])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[a("span",{staticClass:"pointer",on:{click:function(a){return t.revoke(e)}}},[t._v(t._s(t.$t("app.revoke")))])])])])}))],2)])}),[],!1,null,null,null).exports},1588:(t,e,a)=>{"use strict";a.d(e,{Z:()=>c});var i=a(7254),s=a(2369),n=a(8620),o=a(379);function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const l={components:{SweetModal:s.y,Error:i.Z},mixins:[n.oE],data:function(){return{clients:[],form:{errors:[],name:"",redirect:""}}},validations:{form:{name:{required:o.C1},redirect:{required:o.C1,url:o.HQ}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getClients()},_focusInput:function(){var t=this;setTimeout((function(){t.$refs.clientName.focus()}),10)},getClients:function(){var t=this;axios.get("oauth/clients").then((function(e){t.clients=e.data}))},showCreateClientForm:function(){this.resetField(),this.$refs.modalClient.open()},store:function(){if(this.$v.$touch(),!this.$v.$invalid){var t=this.form.id?"put":"post",e=this.form.id?"oauth/clients/"+this.form.id:"oauth/clients";this.persistClient(t,e,this.form)}},edit:function(t){this.form=Object.assign({errors:[]},t),this.$refs.modalClient.open()},persistClient:function(t,e,a){var i=this;a.errors=[],axios[t](e,a).then((function(t){i.getClients(),i.closeModal()})).catch((function(t){"object"===r(t.response.data)?a.errors=_.flatten(_.toArray(t.response.data)):a.errors=[i.$t("app.error_try_again")]}))},destroy:function(t){var e=this;axios.delete("oauth/clients/"+t.id).then((function(t){e.getClients()}))},closeModal:function(){this.resetField(),this.$v.$reset(),this.$refs.form.reset(),this.$refs.modalClient.close()},resetField:function(){this.form={id:"",errors:[],name:"",redirect:""}},copyIntoClipboard:function(t){var e=this;this.$copyText(t).then((function(t){e.notify(e.$t("settings.dav_clipboard_copied"),!0)}))},notify:function(t,e){this.$notify({group:"passport-clients",title:t,text:"",type:e?"success":"error"})}}};const c=(0,a(1900).Z)(l,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"passport-clients",position:"top middle",duration:5e3,width:"400"}}),t._v(" "),a("h3",{staticClass:"mb3"},[t._v("\n "+t._s(t.$t("settings.api_oauth_clients"))+"\n "),a("a",{staticClass:"btn nt2",class:[t.dirltr?"fr":"fl"],attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showCreateClientForm(e)}}},[t._v("\n "+t._s(t.$t("settings.api_oauth_create_new"))+"\n ")])]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.api_oauth_clients_desc")))]),t._v(" "),a("p",{domProps:{innerHTML:t._s(t.$t("settings.api_oauth_clients_desc2",{url:"https://laravel.com/docs/master/passport#requesting-tokens"}))}}),t._v(" "),0===t.clients.length?a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.$t("settings.api_oauth_not_created"))+"\n ")]):a("div",{staticClass:"dt w-100 collapse br--top br--bottom"},[a("em",[t._v(t._s(t.$t("settings.api_oauth_title")))]),t._v(" "),a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc w-20"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.api_oauth_clientid"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc w-20"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.api_oauth_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.api_oauth_secret"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_actions"))+"\n ")])])]),t._v(" "),t._l(t.clients,(function(e){return a("div",{key:e.id,staticClass:"dt-row bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[t._v("\n "+t._s(e.id)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[t._v("\n "+t._s(e.name)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 flex flex-auto"},[a("code",{attrs:{dir:"ltr"}},[t._v(t._s(e.secret))]),t._v(" "),a("em",{staticClass:"fa fa-clipboard pointer",class:[t.dirltr?"ml2":"mr2"],attrs:{title:t.$t("settings.dav_copy_help")},on:{click:function(a){return t.copyIntoClipboard(e.secret)}}})])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[a("em",{staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.edit(e)}}}),t._v(" "),a("em",{staticClass:"fa fa-trash-o pointer",on:{click:function(a){return t.destroy(e)}}})])])])}))],2),t._v(" "),a("sweet-modal",{ref:"modalClient",attrs:{"overlay-theme":"dark",tabindex:"-1",role:"dialog",title:t.form.id?t.$t("settings.api_oauth_edit"):t.$t("settings.api_oauth_create")},on:{open:t._focusInput}},[a("error",{attrs:{errors:t.form.errors}}),t._v(" "),a("form",{ref:"form",staticClass:"form-horizontal",attrs:{role:"form"}},[a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{ref:"clientName",attrs:{id:"client-name",iclass:"br2 f5 w-50 ba b--black-40 pa2 outline-0",required:!0,title:t.$t("settings.api_oauth_name"),validator:t.$v.form.name},on:{submit:t.store},model:{value:t.form.name,callback:function(e){t.$set(t.form,"name",e)},expression:"form.name"}}),t._v(" "),a("span",{staticClass:"help-block"},[t._v("\n "+t._s(t.$t("settings.api_oauth_name_help"))+"\n ")])],1)]),t._v(" "),a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{attrs:{id:"redirect-url",iclass:"br2 f5 w-50 ba b--black-40 pa2 outline-0",required:!0,title:t.$t("settings.api_oauth_redirecturl"),validator:t.$v.form.redirect},on:{submit:t.store},model:{value:t.form.redirect,callback:function(e){t.$set(t.form,"redirect",e)},expression:"form.redirect"}}),t._v(" "),a("span",{staticClass:"help-block"},[t._v("\n "+t._s(t.$t("settings.api_oauth_redirecturl_help"))+"\n ")])],1)])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.close"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.form.id?t.$t("app.save"):t.$t("app.create"))+"\n ")])])],1)],1)}),[],!1,null,null,null).exports},309:(t,e,a)=>{"use strict";a.d(e,{Z:()=>c});var i=a(7254),s=a(2369),n=a(8620),o=a(379);function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const l={components:{SweetModal:s.y,Error:i.Z},mixins:[n.oE],data:function(){return{endpoint:"",accessToken:null,tokens:[],scopes:[],form:{name:"",scopes:[],errors:[]}}},validations:{form:{name:{required:o.C1}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.$refs.modalAccessToken.$refs.content.getElementsByClassName("sweet-content-content")[0].className="flex-auto",this.getTokens(),this.getScopes()},getTokens:function(){var t=this;axios.get("oauth/personal-access-tokens").then((function(e){t.tokens=e.data}))},getScopes:function(){var t=this;axios.get("oauth/scopes").then((function(e){t.scopes=e.data}))},closeModal:function(){this.$refs.form.reset(),this.$v.$reset(),this.$refs.modalCreateToken.close(),this.$refs.modalAccessToken.close()},_focusInput:function(){var t=this;setTimeout((function(){t.$refs.createTokenName.focus()}),10)},showCreateTokenForm:function(){this.$refs.modalCreateToken.open()},store:function(){var t=this;this.$v.$touch(),this.$v.$invalid||(this.accessToken=null,this.form.errors=[],axios.post("oauth/personal-access-tokens",this.form).then((function(e){t.form.name="",t.form.scopes=[],t.form.errors=[],t.tokens.push(e.data.token),t.showAccessToken(e.data.accessToken)})).catch((function(e){"object"===r(e.response.data)?t.form.errors=_.flatten(_.toArray(e.response.data)):t.form.errors=[t.$t("app.error_try_again")]})))},toggleScope:function(t){this.scopeIsAssigned(t)?this.form.scopes=_.reject(this.form.scopes,(function(e){return e==t})):this.form.scopes.push(t)},scopeIsAssigned:function(t){return _.indexOf(this.form.scopes,t)>=0},showAccessToken:function(t){this.$refs.modalCreateToken.close(),this.accessToken=t,this.$refs.modalAccessToken.open()},revoke:function(t){var e=this;axios.delete("oauth/personal-access-tokens/"+t.id).then((function(t){e.getTokens()}))},copyIntoClipboard:function(t){var e=this;this.$copyText(t).then((function(t){e.notify(e.$t("settings.dav_clipboard_copied"),!0)}))},notify:function(t,e){this.$notify({group:"passport-personal-access-token",title:t,text:"",type:e?"success":"error"})}}};a(5944);const c=(0,a(1900).Z)(l,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("h3",{staticClass:"mb3"},[t._v("\n "+t._s(t.$t("settings.api_personal_access_tokens"))+"\n "),a("a",{staticClass:"btn nt2",class:[t.dirltr?"fr":"fl"],attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showCreateTokenForm(e)}}},[t._v("\n "+t._s(t.$t("settings.api_token_create_new"))+"\n ")])]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.api_pao_description")))]),t._v(" "),0===t.tokens.length?a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.$t("settings.api_token_not_created"))+"\n ")]):a("div",{staticClass:"dt w-75 collapse br--top br--bottom"},[a("em",[t._v(t._s(t.$t("settings.api_token_title")))]),t._v(" "),a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.api_token_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_actions"))+"\n ")])])]),t._v(" "),t._l(t.tokens,(function(e){return a("div",{key:e.id,staticClass:"dt-row bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("settings.api_token_expire",{date:e.expires_at}),expression:"$t('settings.api_token_expire', { date: token.expires_at })"}],staticClass:"pa2"},[t._v("\n "+t._s(e.name)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[a("span",{staticClass:"pointer",on:{click:function(a){return t.revoke(e)}}},[t._v(t._s(t.$t("app.delete")))])])])])}))],2),t._v(" "),a("sweet-modal",{ref:"modalCreateToken",attrs:{"overlay-theme":"dark",tabindex:"-1",role:"dialog",title:t.$t("settings.api_token_create")},on:{open:t._focusInput}},[a("error",{attrs:{errors:t.form.errors}}),t._v(" "),a("form",{ref:"form",staticClass:"form-horizontal",attrs:{role:"form"},on:{submit:function(e){return e.preventDefault(),t.store(e)}}},[a("div",{staticClass:"col-md-auto"},[a("form-input",{ref:"createTokenName",attrs:{id:"create-token-name",name:"name",iclass:"br2 f5 w-50 ba b--black-40 pa2 outline-0",required:!0,title:t.$t("settings.api_token_name"),validator:t.$v.form.name},model:{value:t.form.name,callback:function(e){t.$set(t.form,"name",e)},expression:"form.name"}})],1),t._v(" "),t.scopes.length>0?a("div",{staticClass:"form-group"},[a("label",{staticClass:"col-md-4 col-form-label"},[t._v("\n "+t._s(t.$t("settings.api_token_scopes"))+"\n ")]),t._v(" "),a("div",{staticClass:"col-md-auto"},t._l(t.scopes,(function(e){return a("div",{key:e.id},[a("div",{staticClass:"checkbox"},[a("label",[a("input",{attrs:{type:"checkbox"},domProps:{checked:t.scopeIsAssigned(e.id)},on:{click:function(a){return t.toggleScope(e.id)}}}),t._v("\n\n "+t._s(e.id)+"\n ")])])])})),0)]):t._e()]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.close"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("app.create"))+"\n ")])])],1),t._v(" "),a("sweet-modal",{ref:"modalAccessToken",attrs:{"overlay-theme":"dark",tabindex:"-1",role:"dialog",title:t.$t("settings.api_token_title")}},[a("notifications",{attrs:{group:"passport-personal-access-token",position:"middle",duration:5e3,width:"400"}}),t._v(" "),a("p",[t._v(t._s(t.$t("settings.api_token_help")))]),t._v(" "),a("div",{staticClass:"flex-auto access-key overflow-y-scroll",staticStyle:{"max-height":"400px"},on:{click:function(e){return e.preventDefault(),t.copyIntoClipboard(t.accessToken)}}},[a("pre",[a("code",[t._v(t._s(t.accessToken))])])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn btn-primary",attrs:{title:t.$t("settings.dav_copy_help"),href:""},on:{click:function(e){return e.preventDefault(),t.copyIntoClipboard(t.accessToken)}}},[t._v("\n "+t._s(t.$t("app.copy"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.close"))+"\n ")])])],1)],1)}),[],!1,null,"559f9b08",null).exports},4882:(t,e,a)=>{"use strict";a.d(e,{Z:()=>n});function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const s={props:{hash:{type:String,default:""}},data:function(){return{contactAddresses:[],countries:[],editMode:!1,addMode:!1,createForm:{name:"",street:"",city:"",province:"",postal_code:"",country:"",latitude:0,longitude:0},updateForm:{id:"",name:"",street:"",city:"",province:"",postal_code:"",country:"",latitude:0,longitude:0}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getAddresses(),this.getCountries()},getAddresses:function(){var t=this;axios.get("people/"+this.hash+"/addresses").then((function(e){t.contactAddresses=e.data}))},getCountries:function(){var t=this;axios.get("countries").then((function(e){t.countries=_.map(e.data,(function(t){return{id:t.id,name:t.country}}))}))},reinitialize:function(){this.createForm.name="",this.createForm.street="",this.createForm.city="",this.createForm.province="",this.createForm.postal_code="",this.createForm.country="",this.createForm.latitude="",this.createForm.longitude=""},resetState:function(){this.editMode=!1,this.addMode=!1},toggleAdd:function(){this.addMode=!0,this.editMode=!0,this.reinitialize()},toggleEdit:function(t){this.addMode=!1,this.toggleEditExcept(t.id),Vue.set(t,"edit",!t.edit),this.updateForm.id=t.id,this.updateForm.name=t.name,this.updateForm.street=t.street,this.updateForm.city=t.city,this.updateForm.province=t.province,this.updateForm.postal_code=t.postal_code,this.updateForm.country=t.country,this.updateForm.latitude=t.latitude,this.updateForm.longitude=t.longitude},toggleEditExcept:function(t){_.forEach(_.filter(this.contactAddresses,(function(e){return e.id!=t})),(function(t){Vue.set(t,"edit",!1)}))},store:function(){var t=this;this.persistClient("post","people/"+this.hash+"/addresses",this.createForm).then((function(e){t.contactAddresses.push(e.data)})),this.addMode=!1},update:function(t){var e=this;Vue.set(t,"edit",!t.edit),this.persistClient("put","people/"+this.hash+"/addresses/"+t.id,this.updateForm).then((function(t){Vue.set(e.contactAddresses,e.contactAddresses.indexOf(e.contactAddresses.find((function(e){return e.id===t.data.id}))),t.data)}))},trash:function(t){var e=this;this.updateForm.id=t.id,this.persistClient("delete","people/"+this.hash+"/addresses/"+t.id,this.updateForm).then((function(t){!0===t.data.deleted&&e.contactAddresses.splice(e.contactAddresses.indexOf(e.contactAddresses.find((function(e){return e.id===t.data.id}))),1)})),this.contactAddresses.length<=1&&(this.editMode=!1)},persistClient:function(t,e,a){var s=this;return a.errors={},axios[t](e,a).catch((function(t){"object"===i(t.response.data)?a.errors=_.flatten(_.toArray(t.response.data)):a.errors=[s.$t("app.error_try_again")]}))}}};const n=(0,a(1900).Z)(s,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"sidebar-box",class:[t.editMode?"edit":""]},[a("div",{staticClass:"w-100 dt"},[a("div",{staticClass:"sidebar-box-title"},[a("h3",[t._v("\n "+t._s(t.$t("people.contact_address_title"))+"\n ")])]),t._v(" "),t.contactAddresses.length>0?a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[t.editMode?a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.toggleEditExcept(-1),t.resetState()}}},[t._v("\n "+t._s(t.$t("app.done"))+"\n ")]):a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editMode=!0}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])]):t._e()]),t._v(" "),0!=t.contactAddresses.length||t.addMode?t._e():a("p",{staticClass:"mb0"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAdd(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")])]),t._v(" "),t.contactAddresses.length>0?a("ul",[t._l(t.contactAddresses,(function(e,i){return a("li",{key:e.id,staticClass:"mb2"},[a("div",{directives:[{name:"show",rawName:"v-show",value:!e.edit,expression:"!contactAddress.edit"}],staticClass:"w-100 dt"},[a("div",{staticClass:"dtc"},[a("em",{staticClass:"f6 light-silver fa fa-globe pr2"}),t._v(" "),t.editMode?a("span",[t._v("\n "+t._s(e.address)+"\n ")]):a("a",{attrs:{href:e.googleMapAddress,target:"_blank",rel:"noopener noreferrer"}},[t._v("\n "+t._s(e.address)+"\n ")]),t._v(" "),e.name?a("span",{staticClass:"light-silver"},[t._v("\n ("+t._s(e.name)+")\n ")]):t._e(),t._v(" "),e.address?t._e():a("span",[e.latitude?a("a",{attrs:{href:e.googleMapAddressLatitude,target:"_blank",rel:"noopener noreferrer"}},[t._v("\n ("+t._s(e.latitude)+", "+t._s(e.longitude)+")\n ")]):t._e()]),t._v(" "),t.editMode?a("div",{staticClass:"fr"},[a("em",{staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.toggleEdit(e)}}}),t._v(" "),a("em",{staticClass:"fa fa-trash-o pointer",on:{click:function(a){return t.trash(e)}}})]):t._e()])]),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:e.edit,expression:"contactAddress.edit"}],staticClass:"w-100"},[a("form",{staticClass:"measure center",on:{keyup:function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"enter",13,a.key,"Enter")?null:t.update(e)}}},[a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"name"+i,title:t.$t("people.contact_address_form_name"),"input-type":"text",required:!1,iclass:"pa2 db w-100"},model:{value:t.updateForm.name,callback:function(e){t.$set(t.updateForm,"name",e)},expression:"updateForm.name"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"street"+i,title:t.$t("people.contact_address_form_street"),"input-type":"text",required:!1},model:{value:t.updateForm.street,callback:function(e){t.$set(t.updateForm,"street",e)},expression:"updateForm.street"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"city"+i,title:t.$t("people.contact_address_form_city"),"input-type":"text",required:!1},model:{value:t.updateForm.city,callback:function(e){t.$set(t.updateForm,"city",e)},expression:"updateForm.city"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"province"+i,title:t.$t("people.contact_address_form_province"),"input-type":"text",required:!1},model:{value:t.updateForm.province,callback:function(e){t.$set(t.updateForm,"province",e)},expression:"updateForm.province"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"postal_code"+i,title:t.$t("people.contact_address_form_postal_code"),"input-type":"text",required:!1},model:{value:t.updateForm.postal_code,callback:function(e){t.$set(t.updateForm,"postal_code",e)},expression:"updateForm.postal_code"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-select",{attrs:{id:"name"+i,title:t.$t("people.contact_address_form_country"),options:t.countries,required:!1},model:{value:t.updateForm.country,callback:function(e){t.$set(t.updateForm,"country",e)},expression:"updateForm.country"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"latitude"+i,title:t.$t("people.contact_address_form_latitude"),"input-type":"number",step:"0.0000001",required:!1},model:{value:t.updateForm.latitude,callback:function(e){t.$set(t.updateForm,"latitude",e)},expression:"updateForm.latitude"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"longitude"+i,title:t.$t("people.contact_address_form_longitude"),"input-type":"number",step:"0.0000001",required:!1},model:{value:t.updateForm.longitude,callback:function(e){t.$set(t.updateForm,"longitude",e)},expression:"updateForm.longitude"}})],1),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.update(e)}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.toggleEdit(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])])])})),t._v(" "),t.editMode&&!t.addMode?a("li",[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAdd(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")])]):t._e()],2):t._e(),t._v(" "),t.addMode?a("div",[a("form",{staticClass:"measure center",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.store(e)}}},[a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"name",title:t.$t("people.contact_address_form_name"),"input-type":"text",required:!1,iclass:"pa2 db w-100"},model:{value:t.createForm.name,callback:function(e){t.$set(t.createForm,"name",e)},expression:"createForm.name"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"street",title:t.$t("people.contact_address_form_street"),"input-type":"text",required:!1},model:{value:t.createForm.street,callback:function(e){t.$set(t.createForm,"street",e)},expression:"createForm.street"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"city",title:t.$t("people.contact_address_form_city"),"input-type":"text",required:!1},model:{value:t.createForm.city,callback:function(e){t.$set(t.createForm,"city",e)},expression:"createForm.city"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"province",title:t.$t("people.contact_address_form_province"),"input-type":"text",required:!1},model:{value:t.createForm.province,callback:function(e){t.$set(t.createForm,"province",e)},expression:"createForm.province"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"postal_code",title:t.$t("people.contact_address_form_postal_code"),"input-type":"text",required:!1},model:{value:t.createForm.postal_code,callback:function(e){t.$set(t.createForm,"postal_code",e)},expression:"createForm.postal_code"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-select",{attrs:{id:"name",title:t.$t("people.contact_address_form_country"),options:t.countries,required:!1},model:{value:t.createForm.country,callback:function(e){t.$set(t.createForm,"country",e)},expression:"createForm.country"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"latitude",title:t.$t("people.contact_address_form_latitude"),"input-type":"number",step:"0.0000001",required:!1},model:{value:t.createForm.latitude,callback:function(e){t.$set(t.createForm,"latitude",e)},expression:"createForm.latitude"}})],1),t._v(" "),a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"longitude",title:t.$t("people.contact_address_form_longitude"),"input-type":"number",step:"0.0000001",required:!1},model:{value:t.createForm.longitude,callback:function(e){t.$set(t.createForm,"longitude",e)},expression:"createForm.longitude"}})],1),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.resetState(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])]):t._e()])}),[],!1,null,null,null).exports},9406:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{hash:{type:String,default:""},active:{type:Boolean,default:!0}},data:function(){return{isActive:!1}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.isActive=this.active},toggle:function(){var t=this;axios.put("people/"+this.hash+"/archive").then((function(e){t.isActive=e.data.is_active,t.$notify({group:"archive",title:t.$t("app.default_save_success"),text:"",type:"success"})}))}}};a(8270);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"archive",position:"bottom right",duration:5e3,width:"400"}}),t._v(" "),a("a",{staticClass:"pointer",attrs:{title:t.$t("people.contact_archive_help"),href:""},on:{click:function(e){return e.preventDefault(),t.toggle(e)}}},[t._v("\n "+t._s(t.isActive?t.$t("people.contact_archive"):t.$t("people.contact_unarchive"))+"\n ")]),t._v(" "),a("span",{directives:[{name:"tooltip",rawName:"v-tooltip.top",value:t.$t("people.contact_archive_help"),expression:"$t('people.contact_archive_help')",modifiers:{top:!0}}]},[a("em",{staticClass:"fa fa-info-circle relative pointer"})])],1)}),[],!1,null,"3e048805",null).exports},1590:(t,e,a)=>{"use strict";a.d(e,{Z:()=>n});function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const s={props:{hash:{type:String,default:""},contactId:{type:Number,default:-1},sizeLimit:{type:Number,default:26}},data:function(){return{contactInformationData:[],contactFieldTypes:[],editMode:!1,addMode:!1,updateMode:!1,createForm:{contact_field_type_id:"",data:"",errors:[]},updateForm:{id:"",contact_field_type_id:"",data:"",edit:!1,errors:[]}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getContactInformationData(),this.getContactFieldTypes()},getContactInformationData:function(){var t=this;axios.get("people/"+this.hash+"/contactfield").then((function(e){t.contactInformationData=t.formatResponse(e.data)}))},formatResponse:function(t){var e=this;return _.each(t,(function(t){var a=t.data;a.length>e.sizeLimit+1&&(a=e.$t("format.short_text",{text:a.substr(0,e.sizeLimit)})),t.shortenName=a})),t},getContactFieldTypes:function(){var t=this;axios.get("people/"+this.hash+"/contactfieldtypes").then((function(e){t.contactFieldTypes=e.data}))},store:function(){this.persistClient("post","people/"+this.hash+"/contactfield",this.createForm),this.addMode=!1},resetState:function(){this.editMode=!1,this.addMode=!1},toggleAdd:function(){this.addMode=!0,this.editMode=!0,this.createForm.data="",this.createForm.contact_field_type_id=""},toggleEdit:function(t){Vue.set(t,"edit",!t.edit),this.updateForm.id=t.id,this.updateForm.data=t.data,this.updateForm.contact_field_type_id=t.contact_field_type_id},update:function(t){this.persistClient("put","people/"+this.hash+"/contactfield/"+t.id,this.updateForm)},trash:function(t){this.updateForm.id=t.id,this.persistClient("delete","people/"+this.hash+"/contactfield/"+t.id,this.updateForm),this.contactInformationData.length<=1&&(this.editMode=!1)},persistClient:function(t,e,a){var s=this;a.errors=[],axios[t](e,a).then((function(t){s.getContactInformationData()})).catch((function(t){"object"===i(t.response.data)?a.errors=_.flatten(_.toArray(t.response.data)):a.errors=[s.$t("app.error_try_again")]}))}}};const n=(0,a(1900).Z)(s,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"sidebar-box",class:[t.editMode?"edit":""]},[a("div",{staticClass:"w-100 dt"},[a("div",{staticClass:"sidebar-box-title"},[a("h3",[t._v("\n "+t._s(t.$t("people.contact_info_title"))+"\n ")])]),t._v(" "),t.contactInformationData.length>0?a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[t.editMode?a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.resetState(e)}}},[t._v("\n "+t._s(t.$t("app.done"))+"\n ")]):a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editMode=!0}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])]):t._e()]),t._v(" "),0!=t.contactInformationData.length||t.addMode?t._e():a("p",{staticClass:"mb0"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAdd(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")])]),t._v(" "),t.contactInformationData.length>0?a("ul",[t._l(t.contactInformationData,(function(e){return a("li",{key:e.id,staticClass:"mb2"},[a("div",{directives:[{name:"show",rawName:"v-show",value:!e.edit,expression:"!contactInformation.edit"}],staticClass:"w-100 dt"},[a("div",{staticClass:"dtc"},[e.fontawesome_icon?a("em",{staticClass:"pr2 f6 light-silver",class:e.fontawesome_icon}):a("em",{staticClass:"pr2 fa fa-address-card-o f6 gray"}),t._v(" "),e.protocol?a("a",{attrs:{href:e.protocol+e.data}},[t._v("\n "+t._s(e.shortenName)+"\n ")]):-1!==e.data.indexOf("://")?a("a",{attrs:{href:e.data}},[t._v("\n "+t._s(e.shortenName)+"\n ")]):a("span",[t._v("\n "+t._s(e.shortenName)+"\n ")])]),t._v(" "),t.editMode?a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("em",{staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.toggleEdit(e)}}}),t._v(" "),a("em",{staticClass:"fa fa-trash-o pointer",on:{click:function(a){return t.trash(e)}}})]):t._e()]),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:e.edit,expression:"contactInformation.edit"}],staticClass:"w-100"},[a("form",{staticClass:"measure center",on:{submit:function(a){return a.preventDefault(),t.update(e)}}},[a("div",{staticClass:"mt3"},[a("form-input",{attrs:{id:"contact-content",title:t.$t("people.contact_info_form_content"),iclass:"pa2 db w-100","input-type":"text"},model:{value:t.updateForm.data,callback:function(e){t.$set(t.updateForm,"data",e)},expression:"updateForm.data"}})],1),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.update(e)}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.toggleEdit(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])])])})),t._v(" "),t.editMode&&!t.addMode?a("li",[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAdd(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")])]):t._e()],2):t._e(),t._v(" "),t.addMode?a("div",[a("form",{staticClass:"measure center",on:{submit:function(e){return e.preventDefault(),t.store(e)}}},[a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"add-contact-type"}},[t._v("\n "+t._s(t.$t("people.contact_info_form_contact_type"))+" "),a("a",{staticClass:"fr normal",attrs:{href:"settings/personalization",target:"_blank"}},[t._v("\n "+t._s(t.$t("people.contact_info_form_personalize"))+"\n ")])]),t._v(" "),a("select",{directives:[{name:"model",rawName:"v-model",value:t.createForm.contact_field_type_id,expression:"createForm.contact_field_type_id"}],staticClass:"db w-100 h2",attrs:{id:"add-contact-type"},on:{change:function(e){var a=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.$set(t.createForm,"contact_field_type_id",e.target.multiple?a:a[0])}}},t._l(t.contactFieldTypes,(function(e){return a("option",{key:e.id,domProps:{value:e.id}},[t._v("\n "+t._s(e.name)+"\n ")])})),0)]),t._v(" "),a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6"},[t._v("\n "+t._s(t.$t("people.contact_info_form_content"))+"\n ")]),t._v(" "),a("input",{directives:[{name:"model",rawName:"v-model",value:t.createForm.data,expression:"createForm.data"}],staticClass:"pa2 db w-100",attrs:{type:"text"},domProps:{value:t.createForm.data},on:{input:function(e){e.target.composing||t.$set(t.createForm,"data",e.target.value)}}})]),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.resetState(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])]):t._e()])}),[],!1,null,null,null).exports},7593:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{ContactItem:a(8862).Z},props:{showArchived:{type:Boolean,default:!1},debounceWait:{type:Number,default:200}},data:function(){return{contacts:[],searchEntries:null,ready:!1,totalRecords:0,perPageDropdown:[30,50,100],serverParams:{search:"",page:1,perPage:30},columns:[{label:this.$t("app.contact_list_avatar"),field:"avatar",width:"70px",sortable:!1},{label:this.$t("app.contact_list_name"),field:"name"},{label:this.$t("app.contact_list_description"),field:"description"}]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){var t=this;this.searchEntries=_.debounce((function(){t.ready=!1,t.contacts=[],t._loadItems()}),this.debounceWait),this._loadItems()},methods:{onRowClick:function(t){t.event.preventDefault(),t.event.ctrlKey?window.open(t.row.route,"_blank"):window.location.href=t.row.route},updateParams:function(t){this.serverParams=Object.assign({},this.serverParams,t)},onPageChange:function(t){this.updateParams({page:t.currentPage}),this.searchEntries()},onPerPageChange:function(t){this.updateParams({perPage:t.currentPerPage,page:1}),this.searchEntries()},onSearch:function(t){this.updateParams({search:t.searchTerm}),this.searchEntries()},_loadItems:function(){var t=this,e=window.location.search;e+=e?"&":"?",e+="page="+this.serverParams.page,e+="&perPage="+this.serverParams.perPage,e+="&search="+this.serverParams.search,this.showArchived&&(e+="&show_archived=true"),this._loadNewItems(e,(function(e,a){t.contacts=e,t.totalRecords=a,t.ready=!0}))},_loadNewItems:function(t,e){axios.get("people/list"+t).then((function(t){_.isFunction(e)&&e(_.uniqBy(t.data.contacts,(function(t){return _.uniqueId()})),t.data.totalRecords)}))},getRowStyleClass:function(){return"people-list-item bg-white pointer"}}};a(4742),a(2086);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("vue-good-table",{attrs:{mode:"remote",columns:t.columns,rows:t.contacts,"total-rows":t.totalRecords,"row-style-class":t.getRowStyleClass,"style-class":"vgt-table",rtl:!t.dirltr,"sort-options":{enabled:!1},"pagination-options":{enabled:!0,position:"bottom",perPage:t.serverParams.perPage,page:1,perPageDropdown:t.perPageDropdown,mode:"pages",nextLabel:t.$t("people.people_search_next"),prevLabel:t.$t("people.people_search_prev"),rowsPerPageLabel:t.$t("people.people_search_rows_per_page"),ofLabel:t.$t("people.people_search_of"),pageLabel:t.$t("people.people_search_page"),allLabel:t.$t("people.people_search_all")},"search-options":{enabled:!0,placeholder:t.$t("people.people_search")}},on:{"on-page-change":t.onPageChange,"on-per-page-change":t.onPerPageChange,"on-search":t.onSearch,"on-row-click":t.onRowClick},scopedSlots:t._u([{key:"emptystate",fn:function(){return[t.ready?a("div",{staticClass:"vgt-center-align vgt-text-disabled h3"},[t._v("\n "+t._s(t.$t("people.people_search_no_results"))+"\n ")]):a("div",{staticClass:"vgt-center-align vgt-text-disabled h3"},[t._v("\n "+t._s(t.$t("app.loading"))+"\n ")])]},proxy:!0},{key:"table-row",fn:function(e){return["avatar"===e.column.field?[a("contact-item",{attrs:{item:e.row,"with-name":!1,"class-name":"avatar-search"}})]:"name"===e.column.field?[a("a",{attrs:{href:e.row.route}},[e.row.is_starred?[a("span",{class:["ltr"===t.dirltr?"ml3":"mr3"]},[t._v("\n "+t._s(e.row.complete_name)+"\n ")]),t._v(" "),a("svg",{staticClass:"relative",staticStyle:{top:"5px"},attrs:{width:"23",height:"22",viewBox:"0 0 23 22",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M14.6053 7.404L14.7224 7.68675L15.0275 7.7111C16.7206 7.84628 18.1486 7.92359 19.2895 7.98536C19.9026 8.01855 20.4327 8.04725 20.8765 8.07803C21.5288 8.12327 21.9886 8.17235 22.2913 8.24003C22.3371 8.25027 22.3765 8.26035 22.4102 8.27001C22.3896 8.29619 22.3651 8.32572 22.336 8.35877C22.1328 8.58945 21.7914 8.89714 21.2913 9.31475C20.9474 9.60184 20.5299 9.93955 20.0459 10.331C19.1625 11.0455 18.0577 11.9391 16.7762 13.0302L16.543 13.2288L16.614 13.5267C17.0045 15.1663 17.3689 16.5406 17.6601 17.6391C17.819 18.2381 17.956 18.7552 18.0638 19.1886C18.2209 19.8206 18.3149 20.2704 18.3428 20.5768C18.347 20.6222 18.3493 20.6616 18.3505 20.6957C18.3176 20.6838 18.2798 20.6688 18.2367 20.6502C17.9532 20.5277 17.5539 20.2981 17.0014 19.9522C16.6264 19.7175 16.1833 19.4306 15.671 19.099C14.7143 18.4797 13.5162 17.7042 12.0695 16.8199L11.8087 16.6604L11.5478 16.82C10.0753 17.7209 8.86032 18.5085 7.89223 19.136C7.3851 19.4648 6.94572 19.7496 6.57253 19.9838C6.01576 20.3332 5.61353 20.5656 5.32808 20.6899C5.28721 20.7077 5.25111 20.7222 5.21941 20.7339C5.22088 20.7009 5.22355 20.663 5.22783 20.6197C5.25839 20.3111 5.35605 19.8582 5.51781 19.2225C5.62627 18.7962 5.76269 18.2914 5.92018 17.7087C6.22053 16.5972 6.59748 15.2024 7.00309 13.5286L7.07553 13.2297L6.84141 13.0303C5.52399 11.9079 4.39683 10.9982 3.50024 10.2747C3.03915 9.90254 2.63904 9.57963 2.30539 9.30232C1.80195 8.88388 1.45729 8.57562 1.25116 8.34437C1.22315 8.31293 1.19929 8.28466 1.17903 8.25939C1.20999 8.25084 1.24557 8.24198 1.28628 8.233C1.58841 8.1663 2.048 8.11835 2.701 8.07418C3.1353 8.0448 3.65101 8.01744 4.24568 7.98589C5.39523 7.9249 6.83989 7.84824 8.56208 7.71111L8.86638 7.68688L8.98388 7.40514C9.61646 5.88824 10.1238 4.58366 10.5314 3.53571C10.7656 2.93365 10.9668 2.4163 11.1399 1.99205C11.3854 1.39027 11.5751 0.972355 11.7339 0.708729C11.7601 0.66516 11.7838 0.628777 11.8048 0.598565C11.8256 0.628571 11.849 0.664658 11.8748 0.707817C12.0327 0.971308 12.2212 1.38911 12.465 1.99089C12.6368 2.41509 12.8365 2.93242 13.0689 3.53445C13.4735 4.58244 13.9771 5.88709 14.6053 7.404Z",fill:"#F2C94C",stroke:"#DCBB58"}})])]:a("span",[t._v("\n "+t._s(e.row.complete_name)+"\n ")])],2)]:"description"===e.column.field?[a("a",{attrs:{href:e.row.route}},[e.row.description?a("span",{class:["i","ltr"===t.dirltr?"ml3":"mr3"]},[t._v("\n "+t._s(e.row.description)+"\n ")]):t._e()])]:t._e()]}}])},[a("div",{staticClass:"tc",attrs:{slot:"emptystate"},slot:"emptystate"},[t._v("\n "+t._s(t.$t("people.people_search_no_results"))+"\n ")])])],1)}),[],!1,null,"e150d59a",null).exports},67:(t,e,a)=>{"use strict";a.d(e,{Z:()=>l});var i=a(3363);const s={props:{item:{type:Object,required:!0,default:null}},data:function(){return{check:!0}}};a(9850);var n=a(1900);const o=(0,n.Z)(s,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return t.item.id>0?a("div",{staticClass:"item-search-result",attrs:{"data-contact":t.item.id,"data-name":t.item.name}},[a("div",{staticClass:"item-search-result-result pointer"},[t.check?a("img",{staticClass:"avatar",attrs:{src:t.item.information.avatar.url,alt:t.item.complete_name},on:{error:function(e){t.check=!1}}}):a("div",{staticClass:"avatar avatar-initials",style:"background-color: "+t.item.information.avatar.default_avatar_color},[t._v("\n "+t._s(t.item.initials)+"\n ")]),t._v("\n "+t._s(t.item.complete_name)+"\n "),a("span")])]):a("div",{staticClass:"item-search-result"},[a("div",{staticClass:"item-search-result-result pointer"},[a("div",{staticClass:"avatar avatar-initials avatar-no-results"},[t._v("\n .\n ")]),t._v("\n "+t._s(t.$t("people.people_search_no_results"))+"\n "),a("span")])])}),[],!1,null,"f851ad04",null).exports,r={components:{ContactAutosuggest:i.Z},props:{id:{type:String,default:null},title:{type:String,default:null},required:{type:Boolean,default:!0},placeholder:{type:String,default:""},userContactId:{type:Number,default:0},contacts:{type:Array,default:function(){return[]}}},data:function(){return{items:[]}},computed:{componentItem:function(){return o}},mounted:function(){this.items=this.contacts},methods:{filter:function(t){return _.findIndex(this.items,(function(e){return e.id===t.id}))<0},select:function(t){t.item&&t.item.id>0&&this.filter(t.item)&&this.items.push(t.item)},remove:function(t){this.items.splice(this.items.indexOf(t),1)}}};const l=(0,n.Z)(r,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("contact-autosuggest",{ref:"contactauto",attrs:{id:t.id,title:t.title,required:t.required,placeholder:t.placeholder,"component-item":t.componentItem,filter:t.filter,"add-no-result":!1,"input-class":"user-input-search-input",overflow:!0},on:{select:t.select}}),t._v(" "),a("ul",{staticClass:"contacts mt2"},[a("ul",{staticClass:"contacts-list table"},t._l(t.items,(function(e){return a("li",{key:e.id,staticClass:"table-row"},[a("div",{staticClass:"table-cell w-80"},[a("strong",[t._v(t._s(e.complete_name))])]),t._v(" "),a("div",{staticClass:"table-cell actions"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.remove(e)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])]),t._v(" "),a("input",{attrs:{type:"hidden",name:"contacts[]"},domProps:{value:e.id}})])})),0)])],1)}),[],!1,null,null,null).exports},4502:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(3363),s=a(8862);const n={components:{ContactAutosuggest:i.Z},props:{title:{type:String,default:null},required:{type:Boolean,default:!0},placeholder:{type:String,default:""},formNameOrder:{type:String,default:"firstname"}},computed:{componentItem:function(){return s.Z}},methods:{select:function(t){if(t.item.id>0)window.location=t.item.route;else{var e,a,i=t.item.keyword.split(" ").map((function(t){return _.capitalize(t)}));"firstname"==this.formNameOrder?(e=i[0],a=i.slice(1).join(" ")):(e=i.slice(1).join(" "),a=i[0]);var s=new URLSearchParams;e&&s.set("first_name",e),a&&s.set("last_name",a),window.location="people/add"+(""!=s?"?"+s:"")}}}};const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("contact-autosuggest",{attrs:{title:t.title,required:t.required,placeholder:t.placeholder,"component-item":t.componentItem,"input-class":"header-search-input"},on:{select:t.select}})],1)}),[],!1,null,null,null).exports},8287:(t,e,a)=>{"use strict";a.d(e,{Z:()=>l});var i=a(9938),s=a.n(i),n=(a(9744),a(9669)),o=a.n(n);const r={components:{vSelect:s()},props:{value:{type:Object,default:null},name:{type:String,default:""},title:{type:String,default:""},required:{type:Boolean,default:!0},userContactId:{type:Number,default:null},defaultOptions:{type:Array,default:function(){return[]}},placeholder:{type:String,default:""},wait:{type:Number,default:200}},data:function(){return{selected:null,items:[],callUpdateItems:null,cache:[]}},watch:{value:function(t){this.selected=t}},mounted:function(){var t=this;this.selected=this.value,this.callUpdateItems=_.debounce((function(e){t.getContacts(e,t).then((function(a){t.cache[e]=a,t.displayItems(e)}))}),this.wait),this.items=this.defaultOptions},methods:{updateItems:function(t){null!==t&&(t.length{"use strict";a.d(e,{Z:()=>s});const i={props:{initialEmotions:{type:Array,default:function(){return[]}}},data:function(){return{emotions:[],primaryEmotions:[],secondaryEmotions:[],selectedPrimaryEmotionId:0,selectedSecondaryEmotionId:0,chosenEmotions:[],menu:!1,emotionsMenu:"primary"}},mounted:function(){this.prepareComponent(),this.chosenEmotions=this.initialEmotions},created:function(){window.addEventListener("click",this.close)},beforeDestroy:function(){window.removeEventListener("click",this.close)},methods:{prepareComponent:function(){this.getPrimaryEmotions()},close:function(t){this.$el.contains(t.target)||(this.menu=!1)},getPrimaryEmotions:function(){var t=this;axios.get("emotions").then((function(e){t.primaryEmotions=e.data.data}))},getSecondaryEmotions:function(){var t=this;axios.get("emotions/primaries/"+this.selectedPrimaryEmotionId+"/secondaries").then((function(e){t.secondaryEmotions=e.data.data}))},getEmotions:function(t){var e=this;axios.get("emotions/primaries/"+this.selectedPrimaryEmotionId+"/secondaries/"+this.selectedSecondaryEmotionId+"/emotions").then((function(t){e.emotions=t.data.data}))},showSecondary:function(t){this.selectedPrimaryEmotionId=t.id,this.getSecondaryEmotions(),this.emotionsMenu="secondary"},showEmotion:function(t){this.selectedSecondaryEmotionId=t.id,this.getEmotions(),this.emotionsMenu="emotions"},addEmotion:function(t){this.menu=!1,this.chosenEmotions.push(t),this.emotionsMenu="primary",this.$emit("update",this.chosenEmotions)},removeEmotion:function(t){this.chosenEmotions.splice(t,1),this.$emit("update",this.chosenEmotions)}}};a(5254);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{staticClass:"relative"},[a("ul",{directives:[{name:"show",rawName:"v-show",value:0!=t.chosenEmotions.length,expression:"chosenEmotions.length != 0"}],staticClass:"mr2 di"},t._l(t.chosenEmotions,(function(e){return a("li",{key:e.id,staticClass:"dib emotion br5 mr2"},[a("span",{staticClass:"ph2 pv1 dib"},[t._v("\n "+t._s(t.$t("app.emotion_"+e.name))+"\n ")]),t._v(" "),a("span",{staticClass:"bl ph2 pv1 f6 pointer",on:{click:function(a){return a.preventDefault(),t.removeEmotion(e)}}},[t._v("\n ❌\n ")])])})),0),t._v(" "),a("div",{staticClass:"relative dib"},[a("a",{staticClass:"pointer small-btn pa2",on:{click:function(e){e.preventDefault(),t.menu=!0}}},[t._v("\n 😐 "+t._s(t.$t("people.emotion_this_made_me_feel"))+"\n ")]),t._v(" "),a("ul",{directives:[{name:"show",rawName:"v-show",value:t.menu,expression:"menu"}],staticClass:"absolute emotion-action-menu bg-white z-max pv1"},[t._l(t.primaryEmotions,(function(e){return a("li",{directives:[{name:"show",rawName:"v-show",value:"primary"==t.emotionsMenu,expression:"emotionsMenu == 'primary'"}],key:"primary"+e.id,staticClass:"pa2 pointer relative emotion-list-line",on:{click:function(a){return a.preventDefault(),t.showSecondary(e)}}},[t._v("\n "+t._s(t.$t("app.emotion_primary_"+e.name))+"\n\n "),a("svg",{staticClass:"absolute emotion-add-arrow",attrs:{width:"10",height:"13",viewBox:"0 0 10 13",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M8.75071 5.66783C9.34483 6.06361 9.34483 6.93653 8.75072 7.33231L1.80442 11.9598C1.13984 12.4025 0.25 11.9261 0.25 11.1275L0.25 1.87263C0.25 1.07409 1.13984 0.59767 1.80442 1.04039L8.75071 5.66783Z",fill:"#C4C4C4"}})])])})),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:"secondary"==t.emotionsMenu,expression:"emotionsMenu == 'secondary'"}],staticClass:"pa2 pointer bb b--gray-monica"},[a("a",{staticClass:"no-underline",on:{click:function(e){e.preventDefault(),t.emotionsMenu="primary"}}},[t._v("\n ← "+t._s(t.$t("app.back"))+"\n ")])]),t._v(" "),t._l(t.secondaryEmotions,(function(e){return a("li",{directives:[{name:"show",rawName:"v-show",value:"secondary"==t.emotionsMenu,expression:"emotionsMenu == 'secondary'"}],key:"secondary"+e.id,staticClass:"pa2 pointer relative emotion-list-line",on:{click:function(a){return a.preventDefault(),t.showEmotion(e)}}},[t._v("\n "+t._s(t.$t("app.emotion_secondary_"+e.name))+"\n\n "),a("svg",{staticClass:"absolute emotion-add-arrow",attrs:{width:"10",height:"13",viewBox:"0 0 10 13",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M8.75071 5.66783C9.34483 6.06361 9.34483 6.93653 8.75072 7.33231L1.80442 11.9598C1.13984 12.4025 0.25 11.9261 0.25 11.1275L0.25 1.87263C0.25 1.07409 1.13984 0.59767 1.80442 1.04039L8.75071 5.66783Z",fill:"#C4C4C4"}})])])})),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:"emotions"==t.emotionsMenu,expression:"emotionsMenu == 'emotions'"}],staticClass:"pa2 pointer bb b--gray-monica"},[a("a",{staticClass:"no-underline",on:{click:function(e){e.preventDefault(),t.emotionsMenu="secondary"}}},[t._v("\n ← "+t._s(t.$t("app.back"))+"\n ")])]),t._v(" "),t._l(t.emotions,(function(e){return a("li",{directives:[{name:"show",rawName:"v-show",value:"emotions"==t.emotionsMenu,expression:"emotionsMenu == 'emotions'"}],key:e.id,staticClass:"pa2 pointer emotion-list-line",on:{click:function(a){return a.preventDefault(),t.addEmotion(e)}}},[t._v("\n "+t._s(t.$t("app.emotion_"+e.name))+"\n ")])}))],2)])])])}),[],!1,null,"713727fe",null).exports},8629:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},props:{contact:{type:Object,default:null},existingContacts:{type:Array,default:function(){return[]}},limited:{type:Boolean,default:!0}},data:function(){return{meContact:null,newContact:null}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},watch:{contact:function(t){this.newContact=t}},mounted:function(){this.meContact=this.contact,this.newContact=this.contact},methods:{save:function(){var t=this;axios.put("api/me/contact/"+this.newContact.id).then((function(e){t.$emit("change",t.newContact),t.meContact=t.newContact,t.closeModal()}))},remove:function(){var t=this;this.newContact=null,axios.delete("api/me/contact").then((function(e){t.$emit("change",null),t.meContact=null,t.closeModal()}))},openModal:function(){this.$refs.modal.open()},closeModal:function(){this.$refs.modal.close()}}};a(3161);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[t.limited?t._e():a("div",{staticClass:"flex fr"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.openModal(e)}}},[t._v(t._s(t.$t("settings.me_select")))])]),t._v(" "),t.meContact?a("div",{staticClass:"dib pointer ml2 fl collapse"},[a("span",{staticClass:"dt-row"},[a("span",{staticClass:"dtc"},[a("avatar",{attrs:{contact:t.meContact,clickable:!0,imgclass:"avatar-small br1"}})],1),t._v(" "),a("span",{staticClass:"dtc"},[a("a",{staticClass:"avatar-small",class:t.dirltr?"ml1":"mr1",attrs:{href:"people/"+t.meContact.hash_id}},[t._v("\n "+t._s(t.meContact.complete_name)+"\n ")])])])]):a("div",{staticClass:"dib pointer fl"},[t._v("\n "+t._s(t.$t("settings.me_no_contact"))),a("br"),t._v(" "),t.limited?a("div",{domProps:{innerHTML:t._s(t.$t("settings.personalisation_paid_upgrade_vue",{url:"settings/subscriptions"}))}}):a("a",{attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.openModal(e)}}},[t._v(t._s(t.$t("settings.me_select_click")))])]),t._v(" "),a("div",{staticClass:"cb"}),t._v(" "),a("sweet-modal",{ref:"modal",attrs:{"overlay-theme":"dark",title:t.$t("settings.me_select")}},[a("form",[a("contact-select",{attrs:{required:!0,title:t.$t("settings.me_choose"),name:"me_contact_id",placeholder:t.$t("settings.me_choose_placeholder"),"default-options":t.existingContacts},model:{value:t.newContact,callback:function(e){t.newContact=e},expression:"newContact"}})],1),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn fl",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.remove(e)}}},[t._v("\n "+t._s(t.$t("settings.me_remove_contact"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.save(e)}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])])],1)}),[],!1,null,"862f999e",null).exports},5041:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},props:{hash:{type:String,default:""}},data:function(){return{notes:[],addMode:!1,editMode:!1,newNote:{id:0,body:"",is_favorited:0},deleteNote:{id:0}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getNotes()},reinitialize:function(){this.createForm.body=""},favorited:function(t){return t.filter((function(t){return!0===t.is_favorited}))},normal:function(t){return t.filter((function(t){return!1===t.is_favorited}))},toggleEditMode:function(t){Vue.set(t,"edit",!t.edit)},getNotes:function(){var t=this;axios.get("people/"+this.hash+"/notes").then((function(e){t.notes=e.data}))},store:function(){var t=this;axios.post("people/"+this.hash+"/notes",this.newNote).then((function(e){t.newNote.body="",t.getNotes(),t.addMode=!1,t.$notify({group:"main",title:t.$t("people.notes_create_success"),text:"",type:"success"})}))},toggleFavorite:function(t){var e=this;axios.post("people/"+this.hash+"/notes/"+t.id+"/toggle").then((function(t){e.getNotes()}))},update:function(t){var e=this;axios.put("people/"+this.hash+"/notes/"+t.id,t).then((function(a){Vue.set(t,"edit",!1),e.$notify({group:"main",title:e.$t("people.notes_update_success"),text:"",type:"success"})}))},showDelete:function(t){this.deleteNote.id=t.id,this.$refs.modalDeleteNote.open()},closeModal:function(){this.$refs.modalDeleteNote.close()},trash:function(t){var e=this;axios.delete("people/"+this.hash+"/notes/"+t.id).then((function(t){e.getNotes(),e.closeModal(),e.$notify({group:"main",title:e.$t("people.notes_delete_success"),text:"",type:"success"})}))},compiledMarkdown:function(t){return null!=t?marked(t,{sanitize:!0}):""}}};a(1183);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),a("div",[a("div",[a("form",{staticClass:"bg-near-white pa2 br2 mb3"},[a("textarea",{directives:[{name:"model",rawName:"v-model",value:t.newNote.body,expression:"newNote.body"},{name:"cy-name",rawName:"v-cy-name",value:"add-note-textarea",expression:"'add-note-textarea'"}],staticClass:"w-100 br2 pa2 b--light-gray",attrs:{placeholder:t.$t("people.notes_add_cta")},domProps:{value:t.newNote.body},on:{focus:function(e){t.addMode=!0},keyup:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"]))return null;t.addMode=!1},input:function(e){e.target.composing||t.$set(t.newNote,"body",e.target.value)}}}),t._v(" "),t.addMode?a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-note-button",expression:"'add-note-button'"}],staticClass:"pointer btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")]):t._e(),t._v(" "),t.addMode?a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"cancel-note-button",expression:"'cancel-note-button'"}],staticClass:"pointer btn btn-secondary",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.addMode=!1}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]):t._e()])]),t._v(" "),a("ul",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"notes-body",expression:"'notes-body'"},{name:"cy-items",rawName:"v-cy-items",value:t.notes.map((function(t){return t.id})),expression:"notes.map(n => n.id)"}]},t._l(t.notes,(function(e){return a("li",{key:e.id,staticClass:"note"},[a("div",{directives:[{name:"show",rawName:"v-show",value:!e.edit,expression:"!note.edit"},{name:"cy-name",rawName:"v-cy-name",value:"note-body-"+e.id,expression:"'note-body-' + note.id"}],staticClass:"ba br2 b--black-10 br--top w-100 mb2"},[a("div",{staticClass:"pa2 markdown"},[a("span",{attrs:{dir:"auto"},domProps:{innerHTML:t._s(t.compiledMarkdown(e.body))}})]),t._v(" "),a("div",{staticClass:"pa2 cf bt b--black-10 br--bottom f7 lh-copy"},[a("div",{staticClass:"fl w-50"},[a("div",{staticClass:"f5 di mr1"},[a("em",{directives:[{name:"tooltip",rawName:"v-tooltip.top",value:t.$t("people.notes_favorite"),expression:"$t('people.notes_favorite')",modifiers:{top:!0}}],staticClass:"pointer",class:[e.is_favorited?"fa fa-star":"fa fa-star-o"],on:{click:function(a){return t.toggleFavorite(e)}}})]),t._v("\n "+t._s(e.created_at_short)+"\n ")]),t._v(" "),a("div",{staticClass:"fl w-50 tr"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"edit-note-button-"+e.id,expression:"'edit-note-button-' + note.id"}],staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.toggleEditMode(e)}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")]),t._v("\n |\n "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"delete-note-button-"+e.id,expression:"'delete-note-button-' + note.id"}],staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showDelete(e)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])]),t._v(" "),a("form",{directives:[{name:"show",rawName:"v-show",value:e.edit,expression:"note.edit"}],staticClass:"bg-near-white pa2 br2 mt3 mb3"},[a("textarea",{directives:[{name:"model",rawName:"v-model",value:e.body,expression:"note.body"},{name:"cy-name",rawName:"v-cy-name",value:"edit-note-body-"+e.id,expression:"'edit-note-body-' + note.id"}],staticClass:"w-100 br2 pa2 b--light-gray",domProps:{value:e.body},on:{keyup:function(a){if(!a.type.indexOf("key")&&t._k(a.keyCode,"esc",27,a.key,["Esc","Escape"]))return null;e.edit=!1},input:function(a){a.target.composing||t.$set(e,"body",a.target.value)}}}),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"edit-mode-note-button-"+e.id,expression:"'edit-mode-note-button-' + note.id"}],staticClass:"pointer btn btn-primary",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.update(e)}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")])])])})),0)]),t._v(" "),a("sweet-modal",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"modal-delete-note",expression:"'modal-delete-note'"}],ref:"modalDeleteNote",attrs:{"overlay-theme":"dark",title:t.$t("people.notes_delete_title")}},[a("p",[t._v("\n "+t._s(t.$t("people.notes_delete_confirmation"))+"\n ")]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"delete-mode-note-button-"+t.deleteNote.id,expression:"'delete-mode-note-button-' + deleteNote.id"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.trash(t.deleteNote)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],1)}),[],!1,null,"dcd93e92",null).exports},6057:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{hash:{type:String,default:""}},data:function(){return{petCategories:[],pets:[],editMode:!1,addMode:!1,updateMode:!1,createForm:{pet_category_id:"",name:"",errors:[]},updateForm:{id:"",pet_category_id:"",name:"",edit:!1,errors:[]}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getPetCategories(),this.getPets()},getPetCategories:function(){var t=this;axios.get("petcategories").then((function(e){t.petCategories=e.data}))},getPets:function(){var t=this;axios.get("people/"+this.hash+"/pets").then((function(e){t.pets=e.data}))},store:function(){var t=this;axios.post("people/"+this.hash+"/pets",this.createForm).then((function(e){t.addMode=!1,t.pets.push(e.data),t.createForm.name="",t.$notify({group:"main",title:t.$t("people.pets_create_success"),text:"",type:"success"})}))},resetState:function(){this.editMode=!1,this.addMode=!1},toggleAdd:function(){this.addMode=!0,this.editMode=!0,this.createForm.data="",this.createForm.pet_category_id=""},toggleEdit:function(t){Vue.set(t,"edit",!t.edit),this.updateForm.id=t.id,this.updateForm.name=t.name,this.updateForm.pet_category_id=t.pet_category_id},update:function(t){var e=this;axios.put("people/"+this.hash+"/pets/"+t.id,this.updateForm).then((function(a){Vue.set(t,"edit",!t.edit),Vue.set(t,"name",a.data.name),Vue.set(t,"pet_category_id",a.data.pet_category_id),Vue.set(t,"category_name",a.data.category_name),e.$notify({group:"main",title:e.$t("people.pets_update_success"),text:"",type:"success"})}))},trash:function(t){var e=this;axios.delete("people/"+this.hash+"/pets/"+t.id).then((function(t){e.getPets(),e.$notify({group:"main",title:e.$t("people.pets_delete_success"),text:"",type:"success"})})),this.pets.length<=1&&this.resetState()}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"sidebar-box",class:[t.editMode?"edit":""]},[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),a("div",{staticClass:"w-100 dt"},[a("div",{staticClass:"sidebar-box-title"},[a("h3",[t._v(t._s(t.$t("people.pets_title")))])]),t._v(" "),t.pets.length>0?a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[t.editMode?a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.resetState(e)}}},[t._v("\n "+t._s(t.$t("app.done"))+"\n ")]):a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editMode=!0}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])]):t._e()]),t._v(" "),0!=t.pets.length||t.addMode?t._e():a("p",{staticClass:"mb0"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAdd(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")])]),t._v(" "),t.pets.length>0?a("ul",[t._l(t.pets,(function(e,i){return a("li",{key:e.id,staticClass:"mb2"},[a("div",{directives:[{name:"show",rawName:"v-show",value:!e.edit,expression:"!pet.edit"}],staticClass:"w-100 dt"},[a("div",{staticClass:"dtc"},[t._v("\n "+t._s(t.$t("people.pets_"+e.category_name))+"\n "),e.name?a("span",[t._v("\n - "+t._s(e.name)+"\n ")]):t._e()]),t._v(" "),t.editMode?a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("em",{staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.toggleEdit(e)}}}),t._v(" "),a("em",{staticClass:"fa fa-trash-o pointer",on:{click:function(a){return t.trash(e)}}})]):t._e()]),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:e.edit,expression:"pet.edit"}],staticClass:"w-100"},[a("form",{staticClass:"measure center"},[a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"edit-category"+i}},[t._v("\n "+t._s(t.$t("people.pets_kind"))+"\n ")]),t._v(" "),a("select",{directives:[{name:"model",rawName:"v-model",value:t.updateForm.pet_category_id,expression:"updateForm.pet_category_id"}],staticClass:"db w-100 h2",attrs:{id:"edit-category"+i},on:{change:function(e){var a=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.$set(t.updateForm,"pet_category_id",e.target.multiple?a:a[0])}}},t._l(t.petCategories,(function(e){return a("option",{key:e.id,domProps:{value:e.id}},[t._v("\n "+t._s(t.$t("people.pets_"+e.name))+"\n ")])})),0)]),t._v(" "),a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"edit-name"+i}},[t._v("\n "+t._s(t.$t("people.pets_name"))+"\n ")]),t._v(" "),a("input",{directives:[{name:"model",rawName:"v-model",value:t.updateForm.name,expression:"updateForm.name"}],staticClass:"pa2 db w-100",attrs:{id:"edit-name"+i,type:"text"},domProps:{value:t.updateForm.name},on:{keyup:function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"enter",13,a.key,"Enter")?null:t.update(e)},input:function(e){e.target.composing||t.$set(t.updateForm,"name",e.target.value)}}})]),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.update(e)}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.toggleEdit(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])])])})),t._v(" "),t.editMode&&!t.addMode?a("li",[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAdd(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")])]):t._e()],2):t._e(),t._v(" "),t.addMode?a("div",[a("form",{staticClass:"measure center"},[a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"add-category"}},[t._v("\n "+t._s(t.$t("people.pets_kind"))+"\n ")]),t._v(" "),a("select",{directives:[{name:"model",rawName:"v-model",value:t.createForm.pet_category_id,expression:"createForm.pet_category_id"}],staticClass:"db w-100 h2",attrs:{id:"add-category"},on:{change:function(e){var a=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.$set(t.createForm,"pet_category_id",e.target.multiple?a:a[0])}}},t._l(t.petCategories,(function(e){return a("option",{key:e.id,domProps:{value:e.id}},[t._v("\n "+t._s(t.$t("people.pets_"+e.name))+"\n ")])})),0)]),t._v(" "),a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"add-name"}},[t._v("\n "+t._s(t.$t("people.pets_name"))+"\n ")]),t._v(" "),a("input",{directives:[{name:"model",rawName:"v-model",value:t.createForm.name,expression:"createForm.name"}],staticClass:"pa2 db w-100",attrs:{id:"add-name",type:"text"},domProps:{value:t.createForm.name},on:{keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.store(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.resetState(e)}],input:function(e){e.target.composing||t.$set(t.createForm,"name",e.target.value)}}})]),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.resetState(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])]):t._e()],1)}),[],!1,null,null,null).exports},6354:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(5112),s=a(2369);const n={components:{clipperBasic:i.u9,SweetModal:s.y},props:{avatar:{type:String,default:""},defaultUrl:{type:String,default:""},adorableUrl:{type:String,default:""},gravatarUrl:{type:String,default:""},photoUrl:{type:String,default:""},hasReachedAccountStorageLimit:{type:Boolean,default:!1},maxUploadSize:{type:Number,default:1e4}},data:function(){return{selectedAvatar:"",initialAvatar:"",uploadedImgUrl:"",croppedImgUrl:""}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},watch:{avatar:function(t){this.selectedAvatar=t}},mounted:function(){this.initialAvatar=this.avatar,this.selectedAvatar=this.avatar},methods:{uploadImg:function(t){0!==t.target.files.length&&(this.uploadedImgUrl&&URL.revokeObjectURL(this.uploadedImgUrl),this.uploadedImgUrl=window.URL.createObjectURL(t.target.files[0]),this.$refs.cropModal.open())},setCroppedImg:function(){var t=this;this.$refs.clipper.clip().toBlob((function(e){var a=t.$refs.uploadedImg,i=new File([e],a.files[0].name,{type:"image/jpeg"}),s=new DataTransfer;s.items.add(i),a.files=s.files,t.croppedImgUrl=window.URL.createObjectURL(e)}),"image/jpeg",1),this.$refs.cropModal.close()},cancelCrop:function(){var t=new DataTransfer;this.$refs.uploadedImg.files=t.files,this.croppedImgUrl="",this.$refs.cropModal.close()}}};const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"pa4-ns ph3 pv2 bb b--gray-monica"},[a("p",[t._v(t._s(t.$t("people.avatar_question")))]),t._v(" "),a("div",{staticClass:"mb3 mb0-ns"},[a("form-radio",{attrs:{name:"avatar",value:"default",dclass:"flex mb1",iclass:t.dirltr?"mr2":"ml2"},model:{value:t.selectedAvatar,callback:function(e){t.selectedAvatar=e},expression:"selectedAvatar"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.avatar_default_avatar"))+"\n ")]),t._v(" "),a("div",{attrs:{slot:"extra"},slot:"extra"},[a("img",{staticClass:"mb4 pa2 ba b--gray-monica br3",staticStyle:{width:"150px"},attrs:{src:t.defaultUrl,alt:""}})])],2),t._v(" "),a("form-radio",{attrs:{name:"avatar",value:"adorable",dclass:"flex mb1",iclass:t.dirltr?"mr2":"ml2"},model:{value:t.selectedAvatar,callback:function(e){t.selectedAvatar=e},expression:"selectedAvatar"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.avatar_adorable_avatar"))+"\n ")]),t._v(" "),a("div",{attrs:{slot:"extra"},slot:"extra"},[a("img",{staticClass:"mb4 pa2 ba b--gray-monica br3",staticStyle:{width:"150px"},attrs:{src:t.adorableUrl,alt:""}})])],2),t._v(" "),t.gravatarUrl?a("form-radio",{attrs:{name:"avatar",value:"gravatar",dclass:"flex mb1",iclass:t.dirltr?"mr2":"ml2"},model:{value:t.selectedAvatar,callback:function(e){t.selectedAvatar=e},expression:"selectedAvatar"}},[a("template",{slot:"label"},[a("span",{domProps:{innerHTML:t._s(t.$t("people.avatar_gravatar"))}})]),t._v(" "),a("div",{attrs:{slot:"extra"},slot:"extra"},[a("img",{staticClass:"mb4 pa2 ba b--gray-monica br3",staticStyle:{width:"150px"},attrs:{src:t.gravatarUrl,alt:""}})])],2):t._e(),t._v(" "),"photo"===t.initialAvatar?a("form-radio",{attrs:{name:"avatar",value:"photo",dclass:"flex mb1",iclass:t.dirltr?"mr2":"ml2"},model:{value:t.selectedAvatar,callback:function(e){t.selectedAvatar=e},expression:"selectedAvatar"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.avatar_current"))+"\n ")]),t._v(" "),a("div",{attrs:{slot:"extra"},slot:"extra"},[a("img",{staticClass:"mb4 pa2 ba b--gray-monica br3",staticStyle:{width:"150px"},attrs:{src:t.photoUrl,alt:""}})])],2):t._e(),t._v(" "),a("form-radio",{attrs:{name:"avatar",value:"upload",dclass:"flex mb1",iclass:t.dirltr?"mr2":"ml2",disabled:t.hasReachedAccountStorageLimit},model:{value:t.selectedAvatar,callback:function(e){t.selectedAvatar=e},expression:"selectedAvatar"}},[a("template",{slot:"label"},[t._v("\n "+t._s(t.$t("people.avatar_photo"))+"\n "),t.hasReachedAccountStorageLimit?a("span",[a("a",{attrs:{href:"settings/subscriptions"}},[t._v("\n "+t._s(t.$t("app.upgrade"))+"\n ")])]):t._e()]),t._v(" "),a("div",{attrs:{slot:"extra"},slot:"extra"},[a("input",{ref:"uploadedImg",staticClass:"form-control-file",attrs:{type:"file",name:"photo",disabled:t.hasReachedAccountStorageLimit},on:{change:function(e){return t.uploadImg(e)}}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("people.information_edit_max_size2",{size:t.maxUploadSize}))+"\n ")]),t._v(" "),t.croppedImgUrl?a("img",{staticClass:"mb4 pa2 ba b--gray-monica br3",staticStyle:{width:"150px"},attrs:{src:t.croppedImgUrl,alt:""}}):t._e()])],2)],1),t._v(" "),a("sweet-modal",{ref:"cropModal",attrs:{title:t.$t("people.avatar_crop_new_avatar_photo"),blocking:!0,"hide-close-button":!0}},[a("clipper-basic",{ref:"clipper",attrs:{src:t.uploadedImgUrl,ratio:1,"init-width":100,"init-height":100}}),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.cancelCrop(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.setCroppedImg(e)}}},[t._v("\n "+t._s(t.$t("app.done"))+"\n ")])])],1)],1)}),[],!1,null,null,null).exports},3147:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{hash:{type:String,default:""},starred:{type:Boolean,default:!1}},data:function(){return{isFavorite:!1}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.isFavorite=this.starred},store:function(t){var e=this;axios.post("people/"+this.hash+"/favorite",{toggle:t}).then((function(t){e.isFavorite=t.data.is_starred,e.$notify({group:"favorite",title:e.$t("app.default_save_success"),text:"",type:"success"})}))}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"di f5 normal"},[a("notifications",{attrs:{group:"favorite",position:"top middle",width:"400"}}),t._v(" "),t.isFavorite?a("svg",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"unset-favorite",expression:"'unset-favorite'"}],staticClass:"pointer",attrs:{width:"23",height:"22",viewBox:"0 0 23 22",fill:"none",xmlns:"http://www.w3.org/2000/svg"},on:{click:function(e){return t.store(!1)}}},[a("path",{attrs:{d:"M14.6053 7.404L14.7224 7.68675L15.0275 7.7111C16.7206 7.84628 18.1486 7.92359 19.2895 7.98536C19.9026 8.01855 20.4327 8.04725 20.8765 8.07803C21.5288 8.12327 21.9886 8.17235 22.2913 8.24003C22.3371 8.25027 22.3765 8.26035 22.4102 8.27001C22.3896 8.29619 22.3651 8.32572 22.336 8.35877C22.1328 8.58945 21.7914 8.89714 21.2913 9.31475C20.9474 9.60184 20.5299 9.93955 20.0459 10.331C19.1625 11.0455 18.0577 11.9391 16.7762 13.0302L16.543 13.2288L16.614 13.5267C17.0045 15.1663 17.3689 16.5406 17.6601 17.6391C17.819 18.2381 17.956 18.7552 18.0638 19.1886C18.2209 19.8206 18.3149 20.2704 18.3428 20.5768C18.347 20.6222 18.3493 20.6616 18.3505 20.6957C18.3176 20.6838 18.2798 20.6688 18.2367 20.6502C17.9532 20.5277 17.5539 20.2981 17.0014 19.9522C16.6264 19.7175 16.1833 19.4306 15.671 19.099C14.7143 18.4797 13.5162 17.7042 12.0695 16.8199L11.8087 16.6604L11.5478 16.82C10.0753 17.7209 8.86032 18.5085 7.89223 19.136C7.3851 19.4648 6.94572 19.7496 6.57253 19.9838C6.01576 20.3332 5.61353 20.5656 5.32808 20.6899C5.28721 20.7077 5.25111 20.7222 5.21941 20.7339C5.22088 20.7009 5.22355 20.663 5.22783 20.6197C5.25839 20.3111 5.35605 19.8582 5.51781 19.2225C5.62627 18.7962 5.76269 18.2914 5.92018 17.7087C6.22053 16.5972 6.59748 15.2024 7.00309 13.5286L7.07553 13.2297L6.84141 13.0303C5.52399 11.9079 4.39683 10.9982 3.50024 10.2747C3.03915 9.90254 2.63904 9.57963 2.30539 9.30232C1.80195 8.88388 1.45729 8.57562 1.25116 8.34437C1.22315 8.31293 1.19929 8.28466 1.17903 8.25939C1.20999 8.25084 1.24557 8.24198 1.28628 8.233C1.58841 8.1663 2.048 8.11835 2.701 8.07418C3.1353 8.0448 3.65101 8.01744 4.24568 7.98589C5.39523 7.9249 6.83989 7.84824 8.56208 7.71111L8.86638 7.68688L8.98388 7.40514C9.61646 5.88824 10.1238 4.58366 10.5314 3.53571C10.7656 2.93365 10.9668 2.4163 11.1399 1.99205C11.3854 1.39027 11.5751 0.972355 11.7339 0.708729C11.7601 0.66516 11.7838 0.628777 11.8048 0.598565C11.8256 0.628571 11.849 0.664658 11.8748 0.707817C12.0327 0.971308 12.2212 1.38911 12.465 1.99089C12.6368 2.41509 12.8365 2.93242 13.0689 3.53445C13.4735 4.58244 13.9771 5.88709 14.6053 7.404Z",fill:"#F2C94C",stroke:"#DCBB58"}})]):a("svg",{directives:[{name:"tooltip",rawName:"v-tooltip.top",value:t.$t("people.set_favorite"),expression:"$t('people.set_favorite')",modifiers:{top:!0}},{name:"cy-name",rawName:"v-cy-name",value:"set-favorite",expression:"'set-favorite'"}],staticClass:"pointer",attrs:{width:"23",height:"22",viewBox:"0 0 23 22",fill:"none",xmlns:"http://www.w3.org/2000/svg"},on:{click:function(e){return t.store(!0)}}},[a("path",{attrs:{d:"M14.6053 7.404L14.7224 7.68675L15.0275 7.7111C16.7206 7.84628 18.1486 7.92359 19.2895 7.98536C19.9026 8.01855 20.4327 8.04725 20.8765 8.07803C21.5288 8.12327 21.9886 8.17235 22.2913 8.24003C22.3371 8.25027 22.3765 8.26035 22.4102 8.27001C22.3896 8.29619 22.3651 8.32572 22.336 8.35877C22.1328 8.58945 21.7914 8.89714 21.2913 9.31475C20.9474 9.60184 20.5299 9.93955 20.0459 10.331C19.1625 11.0455 18.0577 11.9391 16.7762 13.0302L16.543 13.2288L16.614 13.5267C17.0045 15.1663 17.3689 16.5406 17.6601 17.6391C17.819 18.2381 17.956 18.7552 18.0638 19.1886C18.2209 19.8206 18.3149 20.2704 18.3428 20.5768C18.347 20.6222 18.3493 20.6616 18.3505 20.6957C18.3176 20.6838 18.2798 20.6688 18.2367 20.6502C17.9532 20.5277 17.5539 20.2981 17.0014 19.9522C16.6264 19.7175 16.1833 19.4306 15.671 19.099C14.7143 18.4797 13.5162 17.7042 12.0695 16.8199L11.8087 16.6604L11.5478 16.82C10.0753 17.7209 8.86032 18.5085 7.89223 19.136C7.3851 19.4648 6.94572 19.7496 6.57253 19.9838C6.01576 20.3332 5.61353 20.5656 5.32808 20.6899C5.28721 20.7077 5.25111 20.7222 5.21941 20.7339C5.22088 20.7009 5.22355 20.663 5.22783 20.6197C5.25839 20.3111 5.35605 19.8582 5.51781 19.2225C5.62627 18.7962 5.76269 18.2914 5.92018 17.7087C6.22053 16.5972 6.59748 15.2024 7.00309 13.5286L7.07553 13.2297L6.84141 13.0303C5.52399 11.9079 4.39683 10.9982 3.50024 10.2747C3.03915 9.90254 2.63904 9.57963 2.30539 9.30232C1.80195 8.88388 1.45729 8.57562 1.25116 8.34437C1.22315 8.31293 1.19929 8.28466 1.17903 8.25939C1.20999 8.25084 1.24557 8.24198 1.28628 8.233C1.58841 8.1663 2.048 8.11835 2.701 8.07418C3.1353 8.0448 3.65101 8.01744 4.24568 7.98589C5.39523 7.9249 6.83989 7.84824 8.56208 7.71111L8.86638 7.68688L8.98388 7.40514C9.61646 5.88824 10.1238 4.58366 10.5314 3.53571C10.7656 2.93365 10.9668 2.4163 11.1399 1.99205C11.3854 1.39027 11.5751 0.972355 11.7339 0.708729C11.7601 0.66516 11.7838 0.628777 11.8048 0.598565C11.8256 0.628571 11.849 0.664658 11.8748 0.707817C12.0327 0.971308 12.2212 1.38911 12.465 1.99089C12.6368 2.41509 12.8365 2.93242 13.0689 3.53445C13.4735 4.58244 13.9771 5.88709 14.6053 7.404Z",fill:"#D9D8D8","fill-opacity":"0.25",stroke:"#C6C6C6"}})])],1)}),[],!1,null,null,null).exports},3224:(t,e,a)=>{"use strict";a.d(e,{Z:()=>p});var i=a(2369),s=a(9010),n=a(8620),o=a(379);const r={props:{value:{type:Number,default:0}},render:function(t){var e=this.$tc("people.stay_in_touch_modal_label",this.value,{count:"[slot]"}),a=_.split(e,"[slot]");return t("div",[t("span",a[0]),this.$slots.default,t("span",a[1])])}};var l=a(1900);const c=(0,l.Z)(r,undefined,undefined,!1,null,null,null).exports,d={components:{SweetModal:i.y,ToggleButton:s.ToggleButton,StayInTouchLabel:c},mixins:[n.oE],props:{hash:{type:String,default:""},contact:{type:Object,default:null},limited:{type:Boolean,default:!1}},validations:{frequencyInput:{required:o.C1,numeric:o.uR}},data:function(){return{frequency:0,isActive:!1,errorMessage:"",frequencyInput:0,stateInput:!1}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){null==this.contact.stay_in_touch_frequency?this.frequency=0:this.frequency=parseInt(this.contact.stay_in_touch_frequency),this.isActive=this.frequency>0,this.stateInput=this.isActive,this.frequencyInput=this.frequency},showUpdate:function(){this.errorMessage="",this.$refs.updateModal.open()},closeModal:function(){this.$refs.updateModal.close()},update:function(){var t=this;this.errorMessage="",this.limited?this.errorMessage=this.$t("people.stay_in_touch_premium"):(this.$v.$touch(),this.$v.$invalid||axios.post("people/"+this.hash+"/stayintouch",{frequency:this.frequencyInput,state:this.stateInput}).then((function(e){t.$refs.updateModal.close(),t.isActive=t.stateInput,t.frequency=t.frequencyInput,t.$notify({group:"main",title:t.$t("app.default_save_success"),text:"",width:"500px",type:"success"})})).catch((function(e){t.errorMessage=t.$t("app.error_save")})))},onInput:function(t){this.stateInput=t>0}}};a(9033);const p=(0,l.Z)(d,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"di"},[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),t.isActive?a("div",{staticClass:"di"},[a("span",[t._v("\n "+t._s(t.$tc("people.stay_in_touch_frequency",t.frequency,{count:t.frequency}))+"\n ")]),t._v(" "),a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showUpdate(e)}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])]):a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showUpdate(e)}}},[t._v("\n "+t._s(t.$t("people.stay_in_touch_modal_title"))+"\n ")]),t._v(" "),a("sweet-modal",{ref:"updateModal",attrs:{"overlay-theme":"dark",title:t.$t("people.stay_in_touch_modal_title")}},[a("div",{staticClass:"tc mw-100"},[a("svg",{attrs:{viewBox:"0 0 423 74",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[a("defs"),t._v(" "),a("g",{attrs:{id:"Page-1",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[a("g",{attrs:{id:"Group-6",transform:"translate(2.000000, 2.000000)"}},[a("g",{attrs:{id:"Group-3",transform:"translate(341.519872, 38.183805) rotate(17.000000) translate(-341.519872, -38.183805) translate(324.519872, 20.183805)"}},[a("path",{attrs:{id:"Fill-45",d:"M6.93842857,23.5330169 L2.60464286,22.0075932 C0.662392857,21.3235932 0.394035714,18.6742373 2.15839286,17.6107119 L29.2497143,1.28379661 C31.0863214,0.176949153 33.3461071,1.82745763 32.86525,3.92461017 L27.3171786,28.1343051 C26.9868929,29.5761356 25.466,30.3931525 24.0896071,29.8684068 L13.4160357,25.8010169 L23.88925,10.3942373 L6.93842857,23.5330169",fill:"#BBE2EE"}}),t._v(" "),a("path",{attrs:{id:"Fill-46",d:"M6.93842857,23.5330169 L7.13939286,22.9576271 L2.80560714,21.4315932 C2.39639286,21.2863729 2.10132143,21.0404746 1.89671429,20.7353898 C1.69271429,20.4309153 1.58585714,20.0642034 1.58585714,19.6968814 C1.59071429,19.087322 1.86332143,18.5033898 2.47107143,18.1342373 L29.5617857,1.80671186 C29.8762857,1.61816949 30.1895714,1.53945763 30.4961786,1.53884746 C30.96975,1.53823729 31.4323929,1.73715254 31.7723929,2.06725424 C32.1117857,2.39918644 32.3230714,2.84522034 32.3236786,3.35471186 C32.3236786,3.49322034 32.3078929,3.63783051 32.2732857,3.7879322 L26.7258214,27.9970169 C26.5303214,28.8555254 25.7695714,29.4168814 24.9505357,29.4181017 C24.7374286,29.4181017 24.5206786,29.3802712 24.3045357,29.2978983 L14.35225,25.5050847 L24.3901429,10.7383729 C24.5589286,10.4906441 24.5231071,10.1562712 24.30575,9.9500339 C24.0883929,9.74440678 23.7544643,9.72732203 23.5182857,9.91098305 L6.56807143,23.0497627 L6.93842857,23.5330169 L7.13939286,22.9576271 L6.93842857,23.5330169 L7.30939286,24.0162712 L21.2275357,13.2278644 L12.9145357,25.4568814 C12.8095,25.6112542 12.7803571,25.804678 12.8368214,25.9834576 C12.8926786,26.1622373 13.02625,26.3050169 13.2005,26.3715254 L23.8740714,30.4389153 C24.2280357,30.5737627 24.5935357,30.6384407 24.9505357,30.6384407 C26.3190357,30.6390508 27.5800714,29.7 27.9091429,28.2709831 L33.4566071,4.06128814 C33.51125,3.82271186 33.5379643,3.5859661 33.5379643,3.35471186 C33.5385714,2.49559322 33.1730714,1.72922034 32.6163214,1.18983051 C32.0595714,0.649220339 31.3048929,0.319728814 30.4961786,0.318508475 C29.9758571,0.317898305 29.4355,0.459457627 28.9370357,0.760271186 L1.84632143,17.0871864 C0.8585,17.679661 0.366714286,18.7047458 0.371571429,19.6968814 C0.371571429,20.300339 0.545214286,20.9013559 0.88825,21.4157288 C1.23067857,21.9301017 1.74857143,22.3535593 2.40367857,22.5829831 L6.73807143,24.1090169 C6.93114286,24.1773559 7.14728571,24.1419661 7.30939286,24.0162712 L6.93842857,23.5330169",fill:"#5CBBDE"}}),t._v(" "),a("polyline",{attrs:{id:"Fill-47",fill:"#BBE2EE",points:"12.2703571 34.9425763 13.4160357 25.8010169 23.88925 10.3942373 6.93842857 23.5330169 12.2703571 34.9425763"}}),t._v(" "),a("path",{attrs:{id:"Fill-48",d:"M12.2703571,34.9425763 L12.8726429,35.0188475 L14.0001071,26.0231186 L24.3901429,10.7383729 C24.5589286,10.4906441 24.5231071,10.1562712 24.30575,9.9500339 C24.0883929,9.74440678 23.7544643,9.72732203 23.5182857,9.91098305 L6.56807143,23.0497627 C6.34282143,23.2242712 6.26814286,23.5342373 6.38896429,23.792339 L11.7202857,35.2018983 C11.8350357,35.4471864 12.0985357,35.5875254 12.3650714,35.5448136 C12.631,35.5027119 12.8386429,35.287322 12.8726429,35.0188475 L12.2703571,34.9425763 L12.8198214,34.6832542 L7.69553571,23.7172881 L21.2275357,13.2278644 L12.9145357,25.4568814 C12.8605,25.5362034 12.8252857,25.6289492 12.8131429,25.7247458 L11.6674643,34.8663051 L12.2703571,34.9425763 L12.8198214,34.6832542 L12.2703571,34.9425763",fill:"#5CBBDE"}}),t._v(" "),a("polyline",{attrs:{id:"Fill-49",fill:"#BBE2EE",points:"12.2703571 34.9425763 18.1013571 27.5863729 13.4160357 25.8010169 12.2703571 34.9425763"}}),t._v(" "),a("path",{attrs:{id:"Fill-50",d:"M12.2703571,34.9425763 L12.7451429,35.3227119 L18.5761429,27.9665085 C18.6975714,27.8133559 18.73825,27.6138305 18.6866429,27.424678 C18.6356429,27.2361356 18.4990357,27.0854237 18.3168929,27.0158644 L13.6309643,25.2305085 C13.4567143,25.164 13.2624286,25.1810847 13.10275,25.2781017 C12.9430714,25.3745085 12.8368214,25.5386441 12.8131429,25.7247458 L11.6674643,34.8663051 C11.6334643,35.1366102 11.7840357,35.3989831 12.0341786,35.5045424 C12.2843214,35.6107119 12.57575,35.535661 12.7451429,35.3227119 L12.2703571,34.9425763 L12.8726429,35.0188475 L13.9217857,26.6461017 L17.1080714,27.860339 L11.7949643,34.5624407 L12.2703571,34.9425763 L12.8726429,35.0188475 L12.2703571,34.9425763",fill:"#5CBBDE"}})]),t._v(" "),a("g",{attrs:{id:"Group-2",transform:"translate(275.500000, 38.000000) rotate(-4.000000) translate(-275.500000, -38.000000) translate(256.000000, 20.000000)"}},[a("path",{attrs:{id:"Fill-97",d:"M15.5451562,17.9652 C15.5451562,16.9386 16.3921875,16.1064 17.4342188,16.1064 L30.1275,16.1064 L30.1275,3.1872 C30.1275,1.8618 29.0367188,0.7872 27.69,0.7872 L5.143125,0.7872 C3.79640625,0.7872 2.705625,1.8618 2.705625,3.1872 L2.705625,22.3872 L1.22484375,27.4848 C0.90796875,28.5768 2.169375,29.451 3.1078125,28.791 L8.799375,24.7872 L15.5451562,24.7872 L15.5451562,17.9652",fill:"#F5C894"}}),t._v(" "),a("path",{attrs:{id:"Fill-98",d:"M15.5451562,17.9652 L16.1545312,17.9652 C16.1545312,17.2698 16.7273438,16.7076 17.4342188,16.7058 L30.1275,16.7058 C30.2859375,16.7058 30.444375,16.6422 30.5601563,16.5306 C30.6698437,16.4184 30.736875,16.2642 30.736875,16.1064 L30.736875,3.1872 C30.736875,1.53 29.371875,0.1878 27.69,0.1872 L5.143125,0.1872 C3.46125,0.1878 2.09625,1.53 2.09625,3.1872 L2.09625,22.3032 L0.63984375,27.3198 C0.59109375,27.4896 0.56671875,27.6606 0.56671875,27.828 C0.56671875,28.338 0.7921875,28.794 1.12734375,29.1084 C1.4625,29.4246 1.9134375,29.6184 2.4009375,29.6196 C2.76046875,29.6202 3.13828125,29.5092 3.46125,29.2794 L8.994375,25.3872 L15.5451562,25.3872 C15.7035937,25.3872 15.8620312,25.323 15.9717188,25.2114 C16.0875,25.0998 16.1545312,24.945 16.1545312,24.7872 L16.1545312,17.9652 L14.9357812,17.9652 L14.9357812,24.1872 L8.799375,24.1872 C8.67140625,24.1872 8.54953125,24.2262 8.4459375,24.2988 L2.754375,28.3026 C2.62640625,28.3896 2.51671875,28.4184 2.4009375,28.4196 C2.24859375,28.4202 2.09015625,28.3542 1.974375,28.2432 C1.8525,28.1304 1.78546875,27.99 1.78546875,27.828 C1.78546875,27.774 1.7915625,27.7152 1.8159375,27.6498 L3.290625,22.5516 C3.30890625,22.4976 3.315,22.443 3.315,22.3872 L3.315,3.1872 C3.32109375,2.1936 4.13765625,1.389 5.143125,1.3872 L27.69,1.3872 C28.7015625,1.389 29.518125,2.1936 29.518125,3.1872 L29.518125,15.5058 L17.4342188,15.5064 C16.0509375,15.5064 14.9357812,16.6068 14.9357812,17.9652 L15.5451562,17.9652",fill:"#E5742B"}}),t._v(" "),a("path",{attrs:{id:"Fill-99",d:"M34.9842187,16.1064 L17.4342188,16.1064 C16.3921875,16.1064 15.5451562,16.9386 15.5451562,17.9652 L15.5451562,31.047 C15.5451562,32.0736 16.3921875,32.9058 17.4342188,32.9058 L32.6076562,32.9058 L36.001875,34.9116 C36.9585937,35.4756 38.1164062,34.5876 37.7934375,33.5382 L36.8732812,30.5058 L36.8732812,17.9652 C36.8732812,16.9386 36.02625,16.1064 34.9842187,16.1064",fill:"#BBE2EE"}}),t._v(" "),a("path",{attrs:{id:"Fill-100",d:"M34.9842188,16.1064 L34.9842188,15.5064 L17.4342188,15.5064 C16.0509375,15.5064 14.9357812,16.6068 14.9357812,17.9652 L14.9357812,31.047 C14.9357812,32.4054 16.0509375,33.5058 17.4342188,33.5058 L32.4370313,33.5058 L35.685,35.4264 C35.9835937,35.6022 36.3126562,35.6874 36.6295313,35.6868 C37.123125,35.6862 37.5740625,35.4888 37.903125,35.1708 C38.2382813,34.8534 38.4576563,34.3998 38.4576563,33.894 C38.4576563,33.7206 38.4332812,33.5424 38.3784375,33.366 L37.4826563,30.417 L37.4826563,17.9652 C37.4826563,16.6068 36.3614063,15.5064 34.9842188,15.5064 L34.9842188,16.7058 C35.6910937,16.7076 36.2639063,17.2698 36.2639063,17.9652 L36.2639063,30.5058 C36.2639063,30.5622 36.27,30.624 36.2882812,30.678 L37.2145312,33.7104 C37.2328125,33.7764 37.2389063,33.837 37.2389063,33.894 C37.2389063,34.0542 37.171875,34.197 37.0560937,34.3098 C36.9403125,34.422 36.781875,34.488 36.6295313,34.4868 C36.5259375,34.4862 36.4284375,34.4634 36.3126562,34.3974 L32.9184375,32.3916 C32.8270313,32.3358 32.7173438,32.3058 32.6076563,32.3058 L17.4342188,32.3058 C16.7273438,32.3046 16.1545313,31.7418 16.1545313,31.047 L16.1545313,17.9652 C16.1545313,17.2698 16.7273438,16.7076 17.4342188,16.7058 L34.9842188,16.7058 L34.9842188,16.1064",fill:"#5CBBDE"}}),t._v(" "),a("path",{attrs:{id:"Fill-101",d:"M22.1446875,24.3966 C22.1446875,25.059 21.59625,25.5966 20.9259375,25.5966 C20.2495313,25.5966 19.7071875,25.059 19.7071875,24.3966 C19.7071875,23.7336 20.2495313,23.1966 20.9259375,23.1966 C21.59625,23.1966 22.1446875,23.7336 22.1446875,24.3966",fill:"#FFFFFE"}}),t._v(" "),a("path",{attrs:{id:"Fill-102",d:"M27.6290625,24.3966 C27.6290625,25.059 27.080625,25.5966 26.4103125,25.5966 C25.7339063,25.5966 25.1915625,25.059 25.1915625,24.3966 C25.1915625,23.7336 25.7339063,23.1966 26.4103125,23.1966 C27.080625,23.1966 27.6290625,23.7336 27.6290625,24.3966",fill:"#FFFFFE"}}),t._v(" "),a("path",{attrs:{id:"Fill-103",d:"M33.1134375,24.3966 C33.1134375,25.059 32.565,25.5966 31.8946875,25.5966 C31.2182813,25.5966 30.6759375,25.059 30.6759375,24.3966 C30.6759375,23.7336 31.2182813,23.1966 31.8946875,23.1966 C32.565,23.1966 33.1134375,23.7336 33.1134375,24.3966",fill:"#FFFFFE"}})]),t._v(" "),a("g",{attrs:{id:"Group",transform:"translate(120.210360, 37.580603) rotate(-14.000000) translate(-120.210360, -37.580603) translate(107.210360, 18.580603)"}},[a("path",{attrs:{id:"Fill-130",d:"M22.6586977,37.0813651 L3.30986047,37.0813651 C1.97418605,37.0813651 0.891255814,36.0010794 0.891255814,34.6686667 L0.891255814,3.3035873 C0.891255814,1.9711746 1.97418605,0.890888889 3.30986047,0.890888889 L22.6586977,0.890888889 C23.9943721,0.890888889 25.0773023,1.9711746 25.0773023,3.3035873 L25.0773023,34.6686667 C25.0773023,36.0010794 23.9943721,37.0813651 22.6586977,37.0813651",fill:"#FCE499"}}),t._v(" "),a("path",{attrs:{id:"Fill-131",d:"M22.6586977,37.0813651 L22.6586977,36.4781905 L3.30986047,36.4781905 C2.30795349,36.476381 1.49772093,35.6675238 1.49590698,34.6686667 L1.49590698,3.3035873 C1.49772093,2.30412698 2.30795349,1.49587302 3.30986047,1.49406349 L22.6586977,1.49406349 C23.66,1.49587302 24.4708372,2.30412698 24.4726512,3.3035873 L24.4726512,34.6686667 C24.4708372,35.6675238 23.66,36.476381 22.6586977,36.4781905 L22.6586977,37.6845397 C24.3287442,37.6839365 25.6813488,36.3340317 25.6819535,34.6686667 L25.6819535,3.3035873 C25.6813488,1.63761905 24.3287442,0.287714286 22.6586977,0.287714286 L3.30986047,0.287714286 C1.63981395,0.287714286 0.287209302,1.63761905 0.286604651,3.3035873 L0.286604651,34.6686667 C0.287209302,36.3340317 1.63981395,37.6839365 3.30986047,37.6845397 L22.6586977,37.6845397 L22.6586977,37.0813651",fill:"#F5BB27"}}),t._v(" "),a("path",{attrs:{id:"Fill-132",d:"M5.72846512,26.223619 L5.72846512,6.92203175 C5.72846512,6.25612698 6.26962791,5.71568254 6.93776744,5.71568254 L19.0307907,5.71568254 C19.6989302,5.71568254 20.240093,6.25612698 20.240093,6.92203175 L20.240093,26.223619 C20.240093,26.890127 19.6989302,27.4299683 19.0307907,27.4299683 L6.93776744,27.4299683 C6.26962791,27.4299683 5.72846512,26.890127 5.72846512,26.223619",fill:"#BBE2EE"}}),t._v(" "),a("path",{attrs:{id:"Fill-133",d:"M5.72846512,26.223619 L6.33311628,26.223619 L6.33311628,6.92203175 C6.33372093,6.58907937 6.604,6.31946032 6.93776744,6.31885714 L19.0307907,6.31885714 C19.3645581,6.31946032 19.6348372,6.58907937 19.6354419,6.92203175 L19.6354419,26.223619 C19.6348372,26.5565714 19.3645581,26.8261905 19.0307907,26.8267937 L6.93776744,26.8267937 C6.604,26.8261905 6.33372093,26.5565714 6.33311628,26.223619 L5.12381395,26.223619 C5.1244186,27.2230794 5.93586047,28.0331429 6.93776744,28.0331429 L19.0307907,28.0331429 C20.0326977,28.0331429 20.8441395,27.2230794 20.8447442,26.223619 L20.8447442,6.92203175 C20.8441395,5.92257143 20.0326977,5.11311111 19.0307907,5.11250794 L6.93776744,5.11250794 C5.93586047,5.11311111 5.1244186,5.92257143 5.12381395,6.92203175 L5.12381395,26.223619 L5.72846512,26.223619",fill:"#5CBBDE"}}),t._v(" "),a("path",{attrs:{id:"Fill-134",d:"M16.0075349,33.3615873 L9.96102326,33.3615873 C9.29288372,33.3615873 8.75172093,32.8211429 8.75172093,32.1552381 C8.75172093,31.4887302 9.29288372,30.9488889 9.96102326,30.9488889 L16.0075349,30.9488889 C16.6750698,30.9488889 17.2168372,31.4887302 17.2168372,32.1552381 C17.2168372,32.8211429 16.6750698,33.3615873 16.0075349,33.3615873",fill:"#BBE2EE"}}),t._v(" "),a("path",{attrs:{id:"Fill-135",d:"M16.0075349,33.3615873 L16.0075349,32.7584127 L9.96102326,32.7584127 C9.62725581,32.7578095 9.35697674,32.4881905 9.35637209,32.1552381 C9.35697674,31.8222857 9.62725581,31.5526667 9.96102326,31.5520635 L16.0075349,31.5520635 C16.3406977,31.5526667 16.6115814,31.8222857 16.612186,32.1552381 C16.6115814,32.4881905 16.3406977,32.7578095 16.0075349,32.7584127 L16.0075349,33.9647619 C17.0094419,33.9641587 17.8208837,33.1546984 17.8214884,32.1552381 C17.8208837,31.1557778 17.0094419,30.3463175 16.0075349,30.3457143 L9.96102326,30.3457143 C8.95851163,30.3463175 8.14706977,31.1557778 8.14706977,32.1552381 C8.14706977,33.1546984 8.95851163,33.9641587 9.96102326,33.9647619 L16.0075349,33.9647619 L16.0075349,33.3615873",fill:"#5CBBDE"}})]),t._v(" "),a("g",{attrs:{id:"Group-4",transform:"translate(195.373740, 35.038750) rotate(6.000000) translate(-195.373740, -35.038750) translate(174.873740, 16.038750)"}},[a("path",{attrs:{id:"Fill-186",d:"M38.673403,30.1261587 L31.5039104,20.0615873 C31.0455672,19.4186032 30.2977761,19.0355873 29.5004179,19.0355873 L25.1580896,19.0355873 L25.1580896,15.4165397 C25.1580896,14.7500317 24.609791,14.2101905 23.934209,14.2101905 C23.2580149,14.2101905 22.7103284,14.7500317 22.7103284,15.4165397 L22.7103284,19.0355873 L18.8098209,19.0355873 L18.8098209,15.4165397 C18.8098209,14.7500317 18.2615224,14.2101905 17.5859403,14.2101905 C16.9097463,14.2101905 16.3620597,14.7500317 16.3620597,15.4165397 L16.3620597,19.0355873 L12.0191194,19.0355873 C11.2217612,19.0355873 10.4745821,19.4186032 10.0162388,20.0615873 L2.84613433,30.1261587 C2.55668657,30.5326984 2.40186567,31.0164444 2.40186567,31.5128571 L2.40186567,34.718127 C2.40186567,36.0505397 3.49785075,37.1308254 4.84962687,37.1308254 L36.6705224,37.1308254 C38.0222985,37.1308254 39.1182836,36.0505397 39.1182836,34.718127 L39.1182836,31.5128571 C39.1182836,31.0164444 38.9628507,30.5326984 38.673403,30.1261587",fill:"#BBE2EE"}}),t._v(" "),a("path",{attrs:{id:"Fill-187",d:"M38.673403,30.1261587 L39.1745821,29.7799365 L32.0044776,19.7147619 C31.4317015,18.9107302 30.4972687,18.4324127 29.5004179,18.4324127 L25.1580896,18.4324127 L25.1580896,19.0355873 L25.7700299,19.0355873 L25.7700299,15.4165397 C25.7694179,14.4164762 24.948194,13.6070159 23.934209,13.6070159 C22.9196119,13.6070159 22.0983881,14.4164762 22.0983881,15.4165397 L22.0983881,19.0355873 L22.7103284,19.0355873 L22.7103284,18.4324127 L18.8098209,18.4324127 L18.8098209,19.0355873 L19.4217612,19.0355873 L19.4217612,15.4165397 C19.4211493,14.4164762 18.5999254,13.6070159 17.5859403,13.6070159 C16.5713433,13.6070159 15.7501194,14.4164762 15.7501194,15.4165397 L15.7501194,19.0355873 L16.3620597,19.0355873 L16.3620597,18.4324127 L12.0191194,18.4324127 C11.0222687,18.4324127 10.0878358,18.9107302 9.5150597,19.7153651 L2.34556716,29.7799365 C1.98391045,30.2872063 1.78992537,30.8927937 1.78992537,31.5128571 L1.78992537,34.718127 C1.78992537,36.3840952 3.15944776,37.7333968 4.84962687,37.734 L36.6705224,37.734 C38.3607015,37.7333968 39.7296119,36.3840952 39.7302239,34.718127 L39.7302239,31.5128571 C39.7302239,30.8927937 39.5362388,30.2872063 39.1745821,29.7799365 L38.673403,30.1261587 L38.1728358,30.4729841 C38.3894627,30.7775873 38.5063433,31.1406984 38.5063433,31.5128571 L38.5063433,34.718127 C38.5045075,35.7169841 37.6838955,36.5258413 36.6705224,36.5276508 L4.84962687,36.5276508 C3.83564179,36.5258413 3.01564179,35.7169841 3.01380597,34.718127 L3.01380597,31.5128571 C3.01380597,31.1406984 3.13007463,30.7775873 3.34670149,30.4729841 L10.516806,20.4084127 C10.8607164,19.925873 11.4212537,19.6387619 12.0191194,19.6387619 L16.3620597,19.6387619 C16.523,19.6387619 16.6802687,19.5742222 16.7947015,19.4620317 C16.9085224,19.3498413 16.974,19.1942222 16.974,19.0355873 L16.974,15.4165397 C16.9746119,15.0835873 17.2481493,14.8139683 17.5859403,14.8133651 C17.9231194,14.8139683 18.1972687,15.0835873 18.1978806,15.4165397 L18.1978806,19.0355873 C18.1978806,19.1942222 18.2627463,19.3498413 18.3765672,19.4620317 C18.491,19.5742222 18.6482687,19.6387619 18.8098209,19.6387619 L22.7103284,19.6387619 C22.8712687,19.6387619 23.0291493,19.5742222 23.1429701,19.4620317 C23.256791,19.3498413 23.3222687,19.1942222 23.3222687,19.0355873 L23.3222687,15.4165397 C23.3228806,15.0835873 23.5964179,14.8139683 23.934209,14.8133651 C24.2713881,14.8139683 24.5455373,15.0835873 24.5461493,15.4165397 L24.5461493,19.0355873 C24.5461493,19.1942222 24.6110149,19.3498413 24.7248358,19.4620317 C24.8392687,19.5742222 24.9965373,19.6387619 25.1580896,19.6387619 L29.5004179,19.6387619 C30.0982836,19.6387619 30.6594328,19.925873 31.0027313,20.4084127 L38.1728358,30.4729841 L38.673403,30.1261587",fill:"#5CBBDE"}}),t._v(" "),a("path",{attrs:{id:"Fill-188",d:"M40.3360448,10.8794603 C40.3360448,10.8794603 41.2612985,0.940349206 20.7600746,0.940349206 L20.7594627,0.970507937 L20.7594627,0.940349206 C0.314537313,0.940349206 1.18349254,10.8794603 1.18349254,10.8794603 L1.18349254,13.148 C1.18349254,13.7348889 1.78870149,14.2101905 2.53465672,14.2101905 L7.93808955,14.2101905 C8.68404478,14.2101905 9.28864179,13.7348889 9.28864179,13.148 L9.28864179,8.96980952 C9.28864179,8.96980952 13.919806,7.45765079 20.7594627,7.45765079 C27.5997313,7.45765079 32.2308955,8.96980952 32.2308955,8.96980952 L32.2308955,13.148 C32.2308955,13.7348889 32.8354925,14.2101905 33.5820597,14.2101905 L38.9848806,14.2101905 C39.7314478,14.2101905 40.3360448,13.7348889 40.3360448,13.148 L40.3360448,10.8794603",fill:"#BBE2EE"}}),t._v(" "),a("path",{attrs:{id:"Fill-189",d:"M40.3360448,10.8794603 L40.9455373,10.9343492 C40.9467612,10.9174603 40.9541045,10.8312063 40.9541045,10.6864444 C40.9541045,10.2847302 40.8984179,9.4312381 40.5012687,8.37025397 C39.9089104,6.77847619 38.5247015,4.73190476 35.5108955,3.12866667 C32.4970896,1.52180952 27.8787761,0.337777778 20.7600746,0.337174603 C20.427791,0.337174603 20.1554776,0.60015873 20.1487463,0.92768254 L20.1481343,0.95784127 L20.7594627,0.970507937 L21.371403,0.963873016 L21.371403,0.933714286 C21.3677313,0.602571429 21.0954179,0.337174603 20.7594627,0.337174603 C16.0022388,0.337174603 12.3642537,0.869174603 9.57319403,1.7027619 C5.38752239,2.94952381 3.10008955,4.89657143 1.89456716,6.70247619 C0.687208955,8.50657143 0.566044776,10.1297143 0.566044776,10.705746 C0.566044776,10.8372381 0.572776119,10.9156508 0.574,10.9319365 C0.601537313,11.2437778 0.865895522,11.4826349 1.18349254,11.4826349 L1.18349254,10.8794603 L1.06355224,10.2883492 C0.777164179,10.3444444 0.571552239,10.591746 0.571552239,10.8794603 L0.571552239,13.148 C0.570940299,13.652254 0.836522388,14.0901587 1.19756716,14.3706349 C1.5610597,14.6553333 2.02980597,14.8127619 2.53465672,14.8133651 L7.93808955,14.8133651 C8.4429403,14.8127619 8.91107463,14.6553333 9.27456716,14.3706349 C9.63622388,14.0901587 9.90119403,13.652254 9.90058209,13.148 L9.90058209,8.96980952 L9.28864179,8.96980952 L9.48140299,9.5428254 L9.52668657,9.52834921 C10.0186866,9.37453968 14.4332239,8.06022222 20.7594627,8.0608254 C24.1337015,8.0608254 26.9645373,8.43419048 28.946,8.80634921 C29.9367313,8.99212698 30.7151194,9.17790476 31.2432239,9.31663492 C31.5069701,9.386 31.7082985,9.44330159 31.8429254,9.48250794 C31.9096269,9.5024127 31.959806,9.51809524 31.9928507,9.52834921 L32.0381343,9.5428254 L32.2308955,8.96980952 L31.6189552,8.96980952 L31.6189552,13.148 C31.6183433,13.652254 31.8839254,14.0901587 32.2449701,14.3706349 C32.6084627,14.6553333 33.076597,14.8127619 33.5820597,14.8133651 L38.9848806,14.8133651 C39.4903433,14.8127619 39.9584776,14.6553333 40.3219701,14.3706349 C40.6830149,14.0901587 40.948597,13.652254 40.9479851,13.148 L40.9479851,10.8794603 C40.9479851,10.591746 40.7423731,10.3444444 40.4559851,10.2883492 L40.3360448,10.8794603 L40.3360448,11.4826349 C40.651806,11.4826349 40.9167761,11.244381 40.9455373,10.9343492 L40.3360448,10.8794603 L40.3360448,10.2762857 C40.0221194,10.2762857 39.7577612,10.512127 39.7271642,10.8203492 C39.6959552,11.1279683 39.9082985,11.410254 40.2161045,11.4711746 L40.3360448,10.8794603 L39.7241045,10.8794603 L39.7241045,13.148 C39.7234925,13.2300317 39.6867761,13.3235238 39.5588806,13.4272698 C39.4334328,13.5273968 39.2259851,13.607619 38.9848806,13.6070159 L33.5820597,13.6070159 C33.3403433,13.607619 33.1335075,13.5273968 33.0080597,13.4272698 C32.8801642,13.3235238 32.8434478,13.2306349 32.8428358,13.148 L32.8428358,8.96980952 C32.8428358,8.7092381 32.6739403,8.47942857 32.4230448,8.39739683 C32.380209,8.38412698 27.6915224,6.85507937 20.7594627,6.85447619 C13.8280149,6.85507937 9.13932836,8.38412698 9.09649254,8.39739683 C8.84559701,8.47942857 8.67670149,8.7092381 8.67670149,8.96980952 L8.67670149,13.148 C8.67608955,13.2306349 8.63937313,13.3235238 8.51147761,13.4272698 C8.38602985,13.5273968 8.17919403,13.607619 7.93808955,13.6070159 L2.53465672,13.6070159 C2.29355224,13.607619 2.08610448,13.5273968 1.96065672,13.4272698 C1.83276119,13.3235238 1.79604478,13.2300317 1.79543284,13.148 L1.79543284,10.8794603 L1.18349254,10.8794603 L1.30343284,11.4711746 L1.30404478,11.4711746 C1.61185075,11.410254 1.82358209,11.1279683 1.79298507,10.8203492 C1.76177612,10.512127 1.49741791,10.2762857 1.18349254,10.2762857 L1.18349254,10.8794603 L1.79298507,10.8275873 L1.74770149,10.8312063 L1.79359701,10.8281905 L1.79298507,10.8275873 L1.74770149,10.8312063 L1.79359701,10.8281905 C1.79237313,10.8185397 1.78992537,10.7763175 1.78992537,10.705746 C1.78992537,10.4300952 1.82908955,9.7255873 2.16259701,8.82987302 C2.66683582,7.48660317 3.80932836,5.70301587 6.57591045,4.2107619 C9.34310448,2.72152381 13.7613134,1.54292063 20.7594627,1.54352381 L20.7594627,0.940349206 L20.1475224,0.946984127 L20.1475224,0.977142857 C20.151194,1.30647619 20.4222836,1.57187302 20.756403,1.57368254 C21.0911343,1.57488889 21.3646716,1.31190476 21.371403,0.982571429 L21.3720149,0.953015873 L20.7600746,0.940349206 L20.7600746,1.54352381 C25.4151045,1.54292063 28.9313134,2.06165079 31.5767313,2.84577778 C35.5463881,4.02619048 37.5492687,5.7832381 38.5950746,7.32796825 C39.6384328,8.87390476 39.7302239,10.2479365 39.7302239,10.6864444 L39.7277761,10.8010476 L39.7265522,10.8245714 L39.7338955,10.8251746 L39.7265522,10.8245714 L39.7338955,10.8251746 L39.7265522,10.8245714 L40.3360448,10.8794603 L40.3360448,10.2762857 L40.3360448,10.8794603",fill:"#5CBBDE"}}),t._v(" "),a("path",{attrs:{id:"Fill-190",d:"M26.8794776,25.6705079 C26.8794776,27.335873 24.1398209,28.686381 20.7600746,28.686381 C17.3803284,28.686381 14.6406716,27.335873 14.6406716,25.6705079 C14.6406716,24.0051429 17.3803284,22.6546349 20.7600746,22.6546349 C24.1398209,22.6546349 26.8794776,24.0051429 26.8794776,25.6705079",fill:"#FFFFFE"}}),t._v(" "),a("path",{attrs:{id:"Fill-191",d:"M26.8794776,25.6705079 L26.2675373,25.6705079 C26.2663134,25.919619 26.1702388,26.1729524 25.9309701,26.4546349 C25.5760448,26.8744444 24.8906716,27.3008889 23.9856119,27.5994603 C23.0811642,27.9010476 21.9649851,28.0832063 20.7600746,28.0832063 C19.1531194,28.0844127 17.7028209,27.7568889 16.7065821,27.2634921 C16.2078507,27.0186032 15.826,26.7333016 15.5885672,26.4546349 C15.3492985,26.1729524 15.2532239,25.919619 15.2526119,25.6705079 C15.2532239,25.4213968 15.3492985,25.1680635 15.5885672,24.886381 C15.9434925,24.4665714 16.6288657,24.040127 17.5345373,23.7409524 C18.4383731,23.4399683 19.5545522,23.2578095 20.7600746,23.2578095 C22.3664179,23.256 23.8167164,23.584127 24.8135672,24.0775238 C25.3116866,24.3224127 25.6935373,24.6077143 25.9309701,24.886381 C26.1702388,25.1680635 26.2663134,25.4213968 26.2675373,25.6705079 L27.4914179,25.6705079 C27.4920299,25.0866349 27.2454179,24.5467937 26.865403,24.1070794 C26.2920149,23.4441905 25.4255075,22.9501905 24.3772537,22.5985397 C23.3277761,22.2493016 22.089209,22.0520635 20.7600746,22.0514603 C18.9866716,22.0532698 17.3772687,22.4000952 16.1588955,22.9984444 C15.5506269,23.2994286 15.0359851,23.663746 14.6541343,24.1070794 C14.2741194,24.5467937 14.0275075,25.0866349 14.0287313,25.6705079 C14.0275075,26.254381 14.2741194,26.7942222 14.6541343,27.2339365 C15.2281343,27.8968254 16.0946418,28.3908254 17.1428955,28.7424762 C18.1917612,29.0917143 19.4303284,29.2889524 20.7600746,29.2895556 C22.5328657,29.287746 24.1422687,28.9403175 25.3606418,28.3425714 C25.9695224,28.0415873 26.4841642,27.6772698 26.865403,27.2339365 C27.2454179,26.7942222 27.4920299,26.254381 27.4914179,25.6705079 L26.8794776,25.6705079",fill:"#CCD4D3"}})]),t._v(" "),a("g",{attrs:{id:"Group-5",transform:"translate(67.000000, 43.000000)",stroke:"#F5BB27","stroke-linecap":"square","stroke-width":"3"}},[a("path",{attrs:{id:"Line",d:"M0.277777778,5.5 L9.73854798,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line",d:"M5.5,10.6764706 L5.5,0.323529412"}})]),t._v(" "),a("g",{attrs:{id:"Group-5",transform:"translate(42.000000, 2.000000)",stroke:"#A2B88C","stroke-linecap":"square","stroke-width":"3"}},[a("path",{attrs:{id:"Line",d:"M0.277777778,5.5 L9.73854798,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line",d:"M5.5,10.6764706 L5.5,0.323529412"}})]),t._v(" "),a("g",{attrs:{id:"Group-5",transform:"translate(22.000000, 51.000000)",stroke:"#E5742B","stroke-linecap":"square","stroke-width":"3"}},[a("path",{attrs:{id:"Line",d:"M0.277777778,5.5 L9.73854798,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line",d:"M5.5,10.6764706 L5.5,0.323529412"}})]),t._v(" "),a("g",{attrs:{id:"Group-5",transform:"translate(0.000000, 17.000000)",stroke:"#5CBBDE","stroke-linecap":"square","stroke-width":"3"}},[a("path",{attrs:{id:"Line",d:"M0.277777778,5.5 L9.73854798,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line",d:"M5.5,10.6764706 L5.5,0.323529412"}})]),t._v(" "),a("g",{attrs:{id:"Group-5",transform:"translate(414.000000, 37.500000) scale(-1, -1) translate(-414.000000, -37.500000) translate(409.000000, 32.000000)",stroke:"#F5BB27","stroke-linecap":"square","stroke-width":"3"}},[a("path",{attrs:{id:"Line",d:"M0.277777778,5.5 L9.73854798,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line",d:"M5.5,10.6764706 L5.5,0.323529412"}})]),t._v(" "),a("g",{attrs:{id:"Group-5",transform:"translate(386.000000, 5.500000) scale(-1, -1) translate(-386.000000, -5.500000) translate(381.000000, 0.000000)",stroke:"#A2B88C","stroke-linecap":"square","stroke-width":"3"}},[a("path",{attrs:{id:"Line",d:"M0.277777778,5.5 L9.73854798,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line",d:"M5.5,10.6764706 L5.5,0.323529412"}})]),t._v(" "),a("g",{attrs:{id:"Group-5",transform:"translate(386.000000, 64.500000) scale(-1, -1) translate(-386.000000, -64.500000) translate(381.000000, 59.000000)",stroke:"#E5742B","stroke-linecap":"square","stroke-width":"3"}},[a("path",{attrs:{id:"Line",d:"M0.277777778,5.5 L9.73854798,5.5"}}),t._v(" "),a("path",{attrs:{id:"Line",d:"M5.5,10.6764706 L5.5,0.323529412"}})])])])])]),t._v(" "),a("form",{on:{submit:function(e){return e.preventDefault(),t.update()}}},[a("div",{staticClass:"mb4"},[t.limited?a("div",{staticClass:"mt3 mb3 form-information-message br2"},[a("div",{staticClass:"pa3 flex"},[a("div",{staticClass:"mr3"},[a("svg",{attrs:{viewBox:"0 0 20 20"}},[a("g",{attrs:{"fill-rule":"evenodd"}},[a("circle",{attrs:{cx:"10",cy:"10",r:"9",fill:"currentColor"}}),a("path",{attrs:{d:"M10 0C4.486 0 0 4.486 0 10s4.486 10 10 10 10-4.486 10-10S15.514 0 10 0m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8m1-5v-3a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2v3a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2m-1-5.9a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2"}})])])]),t._v(" "),a("div",{domProps:{innerHTML:t._s(t.$t("settings.personalisation_paid_upgrade_vue",{url:"settings/subscriptions"}))}})])]):t._e(),t._v(" "),a("p",{staticClass:"mt3 b mb3",class:[t.dirltr?"tl":"tr"]},[t._v("\n "+t._s(t.$t("people.stay_in_touch_modal_desc",{firstname:t.contact.first_name}))+"\n ")]),t._v(" "),a("div",{staticClass:"mb2"},[a("toggle-button",{staticClass:"mr2",attrs:{sync:!0,labels:!0,value:t.stateInput},on:{change:function(e){t.stateInput=!t.stateInput}}}),t._v(" "),a("div",{staticClass:"dib relative",staticStyle:{top:"-2px"}},[a("stay-in-touch-label",{class:{"form-group-error":t.$v.frequencyInput.$error},model:{value:t.frequencyInput,callback:function(e){t.frequencyInput=e},expression:"frequencyInput"}},[a("div",{staticClass:"dib"},[a("form-input",{attrs:{id:"frequency","input-type":"number",width:60,required:!0,validator:t.$v.frequencyInput},on:{input:function(e){return t.onInput(e)}},model:{value:t.frequencyInput,callback:function(e){t.frequencyInput=t._n(e)},expression:"frequencyInput"}})],1)])],1)],1),t._v(" "),""!=t.errorMessage?a("div",{staticClass:"form-error-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.errorMessage)+"\n ")])])]):t._e()])]),t._v(" "),a("div",{staticClass:"tc",attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.update()}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])])],1)}),[],!1,null,"674b58d1",null).exports},5735:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(381),s=a.n(i);const n={props:{hash:{type:String,default:""}},data:function(){return{allTags:[],availableTags:[],contactTags:[],editMode:!1,search:"",results:[],isOpen:!1,arrowCounter:0}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent(),document.addEventListener("click",this.handleClickOutside)},destroyed:function(){document.removeEventListener("click",this.handleClickOutside)},methods:{prepareComponent:function(){this.getExistingTags(),this.getContactTags()},getExistingTags:function(){var t=this;axios.get("tags").then((function(e){t.allTags=e.data.data}))},getContactTags:function(){var t=this;axios.get("people/"+this.hash+"/tags").then((function(e){t.contactTags=e.data.data}))},removeTag:function(t){this.contactTags.splice(this.contactTags.indexOf(t),1),this.store()},onChange:function(){this.isOpen=!0,this.filterResults()},onEnter:function(){""!=this.search&&(this.contactTags.push({id:s()().format(),name:this.search}),this.arrowCounter=-1,this.isOpen=!1,this.search=null,this.store())},onArrowDown:function(){this.arrowCounter0&&(this.arrowCounter=this.arrowCounter-1,this.search=this.results[this.arrowCounter].name)},onEscape:function(){this.arrowCounter=-1,this.isOpen=!1,this.search=null},setResult:function(t){this.search=null,this.isOpen=!1,this.contactTags.push(t),this.store()},filterResults:function(){var t=this.contactTags,e=_.toLower(this.search);this.results=this.allTags.filter((function(a){return _.toLower(a.name).indexOf(e)>-1&&_.findIndex(t,(function(t){return t.name==a.name}))<0}))},filterAllTags:function(){var t=this.contactTags;this.availableTags=this.allTags.filter((function(e){return!t.includes(e)}))},store:function(){var t=this;axios.post("people/"+this.hash+"/tags/update",this.contactTags).then((function(e){t.getExistingTags()}))},navigateTo:function(t){window.location.href="people?tag1="+t.name_slug},handleClickOutside:function(t){this.$el.contains(t.target)||(this.isOpen=!1,this.arrowCounter=-1)}}};a(9815);const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"tc"},[a("ul",[t._l(t.contactTags,(function(e){return a("li",{key:e.id,staticClass:"di mr2"},[a("span",{staticClass:"bg-white ph2 pb1 pt0 dib br3 b--light-gray ba mb2"},[a("span",{directives:[{name:"show",rawName:"v-show",value:!t.editMode,expression:"!editMode"}],staticClass:"pointer",on:{click:function(a){return t.navigateTo(e)}}},[t._v("\n "+t._s(e.name)+"\n ")]),t._v(" "),a("span",{directives:[{name:"show",rawName:"v-show",value:t.editMode,expression:"editMode"}]},[t._v("\n "+t._s(e.name)+"\n ")]),t._v(" "),a("span",{directives:[{name:"show",rawName:"v-show",value:t.editMode,expression:"editMode"}],staticClass:"pointer",on:{click:function(a){return t.removeTag(e)}}},[t._v("\n ×\n ")])])])})),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:t.contactTags.length>0,expression:"contactTags.length > 0"}],staticClass:"di"},[a("a",{directives:[{name:"show",rawName:"v-show",value:!t.editMode,expression:"!editMode"}],staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.search="",t.editMode=!0}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:t.editMode,expression:"editMode"}],staticClass:"di mb3"},[a("div",{staticClass:"relative di mr2"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"di br2 f5 ba b--black-40 pa2 outline-0",attrs:{type:"text",placeholder:t.$t("people.tag_add_search")},domProps:{value:t.search},on:{keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?null:t.onArrowDown(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?null:t.onArrowUp(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.onEnter(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.onEscape(e)}],input:[function(e){e.target.composing||(t.search=e.target.value)},t.onChange]}}),t._v(" "),t.results.length>0?a("ul",{directives:[{name:"show",rawName:"v-show",value:t.isOpen,expression:"isOpen"}],staticClass:"autocomplete-results ba b--gray-monica absolute bg-white left-0 z-9999"},t._l(t.results,(function(e,i){return a("li",{key:i,staticClass:"autocomplete-result",class:{"is-active":i===t.arrowCounter},on:{click:function(a){return t.setResult(e)}}},[t._v("\n "+t._s(e.name)+"\n ")])})),0):t._e()]),t._v(" "),a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editMode=!1}}},[t._v("\n "+t._s(t.$t("app.close"))+"\n ")])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:0==t.contactTags.length&&!t.editMode,expression:"contactTags.length == 0 && !editMode"}],staticClass:"di"},[a("span",{staticClass:"i mr2"},[t._v("\n "+t._s(t.$t("people.tag_no_tags"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"show",rawName:"v-show",value:!t.editMode,expression:"!editMode"}],staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editMode=!0}}},[t._v("\n "+t._s(t.$t("people.tag_add"))+"\n ")])])],2)])}),[],!1,null,"1779ed0c",null).exports},7503:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{hash:{type:String,default:""},contactId:{type:Number,default:-1}},data:function(){return{tasks:[],updateMode:!1,addMode:!1,editMode:!1,newTask:{contact_id:0,title:"",description:"",completed:0}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.newTask.contact_id=this.contactId,this.index()},methods:{reinitialize:function(){this.newTask.title="",this.newTask.description=""},completed:function(t){return t.filter((function(t){return!0===t.completed}))},inProgress:function(t){return t.filter((function(t){return!1===t.completed}))},toggleAddMode:function(){this.addMode=!0,this.reinitialize()},toggleEditMode:function(t){Vue.set(t,"edit",!t.edit)},index:function(){var t=this;axios.get("people/"+this.hash+"/tasks").then((function(e){t.tasks=_.map(e.data,(function(t){return _.assign({},t,{disabled:!1})}))}))},store:function(){var t=this;axios.post("tasks",this.newTask).then((function(e){t.addMode=!1,t.reinitialize(),t.tasks.push(e.data),t.$notify({group:"main",title:t.$t("app.default_save_success"),text:"",type:"success"})}))},toggleComplete:function(t){this.updateMode=!0,Vue.set(t,"disabled",!0),this.update(t,!1)},update:function(t,e){var a=this;axios.put("tasks/"+t.id,t).then((function(i){a.updateMode=!1,Vue.set(t,"disabled",!1),Vue.set(t,"completed_at",i.data.completed_at?a.formatDate(i.data.completed_at):null),e&&a.toggleEditMode(t),a.$notify({group:"main",title:a.$t("app.default_save_success"),text:"",type:"success"})}))},formatDate:function(t){var e=a(8);return e.locale(this._i18n.locale),e.tz.setDefault("UTC"),e.tz(e(t),this.$root.timezone).format("ll")},trash:function(t){var e=this;axios.delete("tasks/"+t.id).then((function(a){e.tasks.splice(e.tasks.indexOf(t),1)})),this.tasks.length<=1&&(this.editMode=!1)}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",[a("img",{staticClass:"icon-section icon-tasks",attrs:{src:"img/people/tasks.svg",alt:t.$t("people.tasks_title")}}),t._v(" "),a("h3",[t._v("\n "+t._s(t.$t("people.section_personal_tasks"))+"\n\n "),0!=t.tasks.length?a("span",{staticClass:"f6 pt2",class:[t.dirltr?"fr":"fl"]},[t.editMode?a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"task-toggle-edit-mode",expression:"'task-toggle-edit-mode'"}],staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editMode=!1}}},[t._v("\n "+t._s(t.$t("app.done"))+"\n ")]):a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"task-toggle-edit-mode",expression:"'task-toggle-edit-mode'"}],staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editMode=!0}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])]):t._e()])]),t._v(" "),a("div",{class:[t.editMode?"bg-washed-yellow b--yellow ba pa2":""]},[0!=t.tasks.length||t.addMode?t._e():a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"task-blank-state",expression:"'task-blank-state'"}],staticClass:"tc bg-near-white b--moon-gray pa3"},[a("p",[t._v(t._s(t.$t("people.tasks_blank_title")))]),t._v(" "),a("p",[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-task-button",expression:"'add-task-button'"}],staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAddMode(e)}}},[t._v("\n "+t._s(t.$t("people.tasks_add_task"))+"\n ")])])]),t._v(" "),a("ul",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"tasks-body",expression:"'tasks-body'"},{name:"cy-items",rawName:"v-cy-items",value:t.inProgress(t.tasks).map((function(t){return t.id})),expression:"inProgress(tasks).map(t => t.id)"}]},t._l(t.inProgress(t.tasks),(function(e,i){return a("li",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"task-item-"+e.id,expression:"'task-item-' + task.id"}],key:e.id},[a("form-checkbox",{attrs:{disabled:e.disabled,name:"task",dclass:[t.dirltr?"mr1":"ml1"]},on:{change:function(a){return t.toggleComplete(e)}},model:{value:e.completed,callback:function(a){t.$set(e,"completed",a)},expression:"task.completed"}},[t._v("\n "+t._s(e.title)+"\n "),e.description?a("span",{staticClass:"silver ml3",attrs:{dir:"auto"}},[t._v("\n "+t._s(e.description)+"\n ")]):t._e()]),t._v(" "),t.editMode?a("div",{staticClass:"di"},[a("em",{staticClass:"fa fa-pencil-square-o pointer pr2 ml3 dark-blue",on:{click:function(a){return t.toggleEditMode(e)}}}),t._v(" "),a("em",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"task-delete-button-"+e.id,expression:"'task-delete-button-' + task.id"}],staticClass:"fa fa-trash-o pointer pr2 dark-blue",on:{click:function(a){return t.trash(e)}}})]):t._e(),t._v(" "),a("form",{directives:[{name:"show",rawName:"v-show",value:e.edit,expression:"task.edit"}],staticClass:"bg-near-white pa2 br2 mt3 mb3"},[a("div",[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"edit-title"+i}},[t._v("\n "+t._s(t.$t("people.tasks_form_title"))+"\n ")]),t._v(" "),a("input",{directives:[{name:"model",rawName:"v-model",value:e.title,expression:"task.title"}],staticClass:"pa2 db w-100",attrs:{id:"edit-title"+i,type:"text"},domProps:{value:e.title},on:{keyup:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"]))return null;t.editMode=!1},input:function(a){a.target.composing||t.$set(e,"title",a.target.value)}}})]),t._v(" "),a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"edit-description"+i}},[t._v("\n "+t._s(t.$t("people.tasks_form_description"))+"\n ")]),t._v(" "),a("textarea",{directives:[{name:"model",rawName:"v-model",value:e.description,expression:"task.description"}],staticClass:"pa2 db w-100",attrs:{id:"edit-description"+i,type:"text"},domProps:{value:e.description},on:{keyup:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"]))return null;t.editMode=!1},input:function(a){a.target.composing||t.$set(e,"description",a.target.value)}}})]),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.update(e,!0)}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.toggleEditMode(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])],1)})),0),t._v(" "),t.updateMode||t.addMode||0==t.tasks.length?t._e():a("div",{staticClass:"bg-near-white pa2 br2 mt3 mb3"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.toggleAddMode(e)}}},[t._v("\n "+t._s(t.$t("people.tasks_add_task"))+"\n ")])]),t._v(" "),t.addMode?a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"task-add-view",expression:"'task-add-view'"}]},[a("form",{staticClass:"bg-near-white pa2 br2 mt3 mb3"},[a("div",[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"add-title"}},[t._v("\n "+t._s(t.$t("people.tasks_form_title"))+"\n ")]),t._v(" "),a("input",{directives:[{name:"model",rawName:"v-model",value:t.newTask.title,expression:"newTask.title"},{name:"cy-name",rawName:"v-cy-name",value:"task-add-title",expression:"'task-add-title'"}],staticClass:"pa2 db w-100",attrs:{id:"add-title",type:"text"},domProps:{value:t.newTask.title},on:{keyup:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"]))return null;t.addMode=!1},input:function(e){e.target.composing||t.$set(t.newTask,"title",e.target.value)}}})]),t._v(" "),a("div",{staticClass:"mt3"},[a("label",{staticClass:"db fw6 lh-copy f6",attrs:{for:"add-description"}},[t._v("\n "+t._s(t.$t("people.tasks_form_description"))+"\n ")]),t._v(" "),a("textarea",{directives:[{name:"model",rawName:"v-model",value:t.newTask.description,expression:"newTask.description"}],staticClass:"pa2 db w-100",attrs:{id:"add-description",type:"text"},domProps:{value:t.newTask.description},on:{keyup:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"]))return null;t.addMode=!1},input:function(e){e.target.composing||t.$set(t.newTask,"description",e.target.value)}}})]),t._v(" "),a("div",{staticClass:"lh-copy mt3"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"save-task-button",expression:"'save-task-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.addMode=!1}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])]):t._e(),t._v(" "),a("ul",t._l(t.completed(t.tasks),(function(e){return a("li",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"task-item-completed-"+e.id,expression:"'task-item-completed-' + task.id"}],key:e.id,staticClass:"f6"},[a("form-checkbox",{attrs:{disabled:e.disabled,name:"checkbox",dclass:[t.dirltr?"mr1":"ml1"]},on:{change:function(a){return t.toggleComplete(e)}},model:{value:e.completed,callback:function(a){t.$set(e,"completed",a)},expression:"task.completed"}},[a("span",{staticClass:"light-silver mr1"},[t._v("\n "+t._s(e.completed_at)+"\n ")]),t._v(" "),a("span",{staticClass:"moon-gray",attrs:{dir:"auto"}},[t._v("\n "+t._s(e.title)+"\n ")]),t._v(" "),e.description?a("span",{staticClass:"silver ml3",attrs:{dir:"auto"}},[t._v("\n "+t._s(e.description)+"\n ")]):t._e()]),t._v(" "),t.editMode?a("div",{staticClass:"di"},[a("em",{staticClass:"fa fa-trash-o pointer pr2 ml3 dark-blue",on:{click:function(a){return t.trash(e)}}})]):t._e()],1)})),0)])])}),[],!1,null,null,null).exports},2834:(t,e,a)=>{"use strict";a.d(e,{Z:()=>h});var i=a(381),s=a.n(i);const n={props:{title:{type:String,default:""}},data:function(){return{activityCategories:null}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getActivities()},getActivities:function(){var t=this;axios.get("activityCategories").then((function(e){t.activityCategories=Object.assign({},_.map(e.data,(function(t){return{name:t.name,options:t.types}})))}))}}};var o=a(1900);const r=(0,o.Z)(n,(function(){var t=this,e=t.$createElement;return(t._self._c||e)("form-select",{attrs:{id:"activity-type-list",title:t.title,options:t.activityCategories,iclass:"br2 f5 w-100 ba b--black-40 pa2 outline-0"},on:{input:function(e){return t.$emit("input",e)}}})}),[],!1,null,null,null).exports;var l=a(7733),c=a(7254);const d={props:{initialParticipants:{type:Array,default:function(){return[]}},hash:{type:String,default:""}},data:function(){return{search:"",participants:[],chosenParticipants:[]}},computed:{filteredList:function(){var t=this;return this.participants.filter((function(e){return e.name.toLowerCase().includes(t.search.toLowerCase())&&void 0===t.chosenParticipants.find((function(t){return t.id===e.id}))})).sort((function(t,e){return t.namee.name?1:0}))}},mounted:function(){this.prepareComponent(),this.chosenParticipants=this.initialParticipants},methods:{prepareComponent:function(){this.getParticipants()},getParticipants:function(){var t=this;axios.get("people/"+this.hash+"/activities/contacts").then((function(e){t.participants=_.toArray(e.data)}))},select:function(t){this.chosenParticipants.push(t),this.participants.splice(this.participants.indexOf(t),1),this.$emit("update",this.chosenParticipants)},remove:function(t){this.participants.push(t),this.chosenParticipants.splice(this.chosenParticipants.indexOf(t),1)}}};a(9278);const p=(0,o.Z)(d,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"relative"},[a("ul",{directives:[{name:"show",rawName:"v-show",value:0!=t.chosenParticipants.length,expression:"chosenParticipants.length != 0"}],staticClass:"mr2 mb3"},t._l(t.chosenParticipants,(function(e){return a("li",{key:e.id,staticClass:"dib participant br5 mr2"},[a("span",{staticClass:"ph2 pv1 dib"},[t._v("\n "+t._s(e.name)+"\n ")]),t._v(" "),a("span",{staticClass:"bl ph2 pv1 f6 pointer",on:{click:function(a){return a.preventDefault(),t.remove(e)}}},[t._v("\n ❌\n ")])])})),0),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:0!=t.participants.length,expression:"participants.length != 0"}],staticClass:"ba b--gray-monica"},[a("span",{staticClass:"db bb b--gray-monica pa2"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"br2 f5 w-100 ba b--black-20 pa2 outline-0",attrs:{type:"text",placeholder:t.$t("app.filter")},domProps:{value:t.search},on:{input:function(e){e.target.composing||(t.search=e.target.value)}}})]),t._v(" "),a("ul",{staticClass:"overflow-auto participant-list"},t._l(t.filteredList,(function(e){return a("li",{key:e.id,staticClass:"bb b--gray-monica pa2 pointer potential-participant",on:{click:function(a){return a.preventDefault(),t.select(e)}}},[t._v("\n "+t._s(e.name)+"\n ")])})),0)])])}),[],!1,null,"5942eb35",null).exports;function u(t){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const m={components:{ActivityTypeList:r,Emotion:l.Z,Error:c.Z,Participant:p},filters:{moment:function(t){return s().utc(t).format("LL")}},props:{hash:{type:String,default:""},contactId:{type:Number,default:0},name:{type:String,default:""},activity:{type:Object,default:null}},data:function(){return{displayDescription:!1,displayEmotions:!1,displayCategory:!1,displayParticipants:!1,newActivity:{summary:"",description:"",happened_at:"",emotions:[],activity_type_id:null,contacts:[]},todayDate:"",participants:[],errors:[]}},computed:{locale:function(){return this.$root.locale},dirltr:function(){return"ltr"==this.$root.htmldir}},watch:{participants:function(t){this.newActivity.contacts=_.map(t,(function(t){return t.id}))}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.todayDate=s()().format("YYYY-MM-DD"),this.resetFields()},updateDescription:function(t){this.newActivity.description=t},resetFields:function(){this.activity?(this.initialEmotions=JSON.parse(JSON.stringify(this.activity.emotions)),this.newActivity.summary=this.activity.summary,this.newActivity.description=this.activity.description,this.newActivity.happened_at=this.activity.happened_at,this.updateEmotionsList(this.activity.emotions),this.newActivity.activity_type_id=this.activity.activity_type?this.activity.activity_type.id:null,this.participants=this.activity.attendees.contacts.map((function(t){return{id:t.id,name:t.complete_name}}))):(this.initialEmotions=[],this.newActivity.summary="",this.newActivity.description="",this.newActivity.happened_at=this.todayDate,this.newActivity.emotions=[],this.newActivity.activity_type_id=null,this.participants=[]),this.displayDescription=!!this.newActivity.description&&""!=this.newActivity.description,this.displayEmotions=this.newActivity.emotions&&this.newActivity.emotions.length>0,this.displayCategory=null!==this.newActivity.activity_type_id,this.displayParticipants=this.participants.length>0,this.errors=[]},close:function(){this.resetFields(),this.$emit("cancel")},updateCategory:function(t){this.newActivity.activity_type_id=parseInt(t)},store:function(){var t=this,e=this.activity?"put":"post",a=this.activity?"api/activities/"+this.activity.id:"api/activities";this.newActivity.contacts.includes(this.contactId)||this.newActivity.contacts.push(this.contactId),axios[e](a,this.newActivity).then((function(e){t.resetFields(),t.$emit("update",e.data.data),t.$notify({group:"main",title:t.$t("people.activities_add_success"),text:"",type:"success"})})).catch((function(e){t._errorHandle(e)}))},updateParticipant:function(t){this.participants=t},updateEmotionsList:function(t){this.newActivity.emotions=_.map(t,(function(t){return t.id}))},_errorHandle:function(t){t.response&&"object"===u(t.response.data)?this.errors=_.flatten(_.toArray(t.response.data)):this.errors=[this.$t("app.error_try_again"),t.message]}}};const f={components:{CreateActivity:(0,o.Z)(m,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("transition",{attrs:{name:"fade"}},[a("div",{staticClass:"ba br3 mb3 pa3 b--black-40"},[a("div",{staticClass:"dt dt--fixed pb3 mb3 mb0-ns bb b--gray-monica"},[a("div",{staticClass:"dtc pr2"},[a("form-input",{attrs:{id:"summary","input-type":"text",title:t.$t("people.activities_add_title",{name:t.name}),required:!0},model:{value:t.newActivity.summary,callback:function(e){t.$set(t.newActivity,"summary",e)},expression:"newActivity.summary"}})],1),t._v(" "),a("div",{staticClass:"dtc"},[a("p",{staticClass:"mb2 b"},[t._v("\n "+t._s(t.$t("people.activities_add_date_occured"))+"\n ")]),t._v(" "),a("div",{staticClass:"di"},[a("div",{staticClass:"dib"},[a("form-date",{ref:"date",attrs:{"show-calendar-on-focus":!0,"default-date":t.todayDate,locale:t.locale},model:{value:t.newActivity.happened_at,callback:function(e){t.$set(t.newActivity,"happened_at",e)},expression:"newActivity.happened_at"}})],1)])])]),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:!(t.displayDescription&&t.displayEmotions&&t.displayCategory&&t.displayParticipants),expression:"!displayDescription || !displayEmotions || !displayCategory || !displayParticipants"}],staticClass:"bb b--gray-monica pv3 mb3"},[a("ul",{staticClass:"list"},[a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayDescription,expression:"!displayDescription"}],staticClass:"di pointer mr3"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayDescription=!0}}},[t._v(t._s(t.$t("people.activities_add_more_details")))])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayEmotions,expression:"!displayEmotions"}],staticClass:"di pointer mr3"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayEmotions=!0}}},[t._v(t._s(t.$t("people.activities_add_emotions")))])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayCategory,expression:"!displayCategory"}],staticClass:"di pointer mr3"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activities_add_category",expression:"'activities_add_category'"}],attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayCategory=!0}}},[t._v(t._s(t.$t("people.activities_add_category")))])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayParticipants,expression:"!displayParticipants"}],staticClass:"di pointer"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayParticipants=!0}}},[t._v(t._s(t.$t("people.activities_add_participants_cta")))])])])]),t._v(" "),t.displayDescription?a("div",{staticClass:"bb b--gray-monica pv3 mb3"},[a("form-textarea",{attrs:{required:!0,"no-label":!0,rows:4,title:t.$t("people.activities_summary"),placeholder:t.$t("people.conversation_add_content")},on:{contentChange:function(e){return t.updateDescription(e)}},model:{value:t.newActivity.description,callback:function(e){t.$set(t.newActivity,"description",e)},expression:"newActivity.description"}}),t._v(" "),a("p",{staticClass:"f6"},[t._v("\n "+t._s(t.$t("app.markdown_description"))+" "),a("a",{attrs:{href:"https://guides.github.com/features/mastering-markdown/",rel:"noopener noreferrer",target:"_blank"}},[t._v("\n "+t._s(t.$t("app.markdown_link"))+"\n ")])])],1):t._e(),t._v(" "),t.displayEmotions?a("div",{staticClass:"bb b--gray-monica pb3 mb3"},[a("label",[t._v("\n "+t._s(t.$t("people.activities_add_emotions_title"))+"\n ")]),t._v(" "),a("emotion",{staticClass:"pv2",attrs:{"initial-emotions":t.initialEmotions},on:{update:t.updateEmotionsList}})],1):t._e(),t._v(" "),t.displayCategory?a("div",{staticClass:"bb b--gray-monica pb3 mb3"},[a("activity-type-list",{attrs:{title:t.$t("people.activities_add_pick_activity")},on:{input:function(e){return t.updateCategory(e)}}})],1):t._e(),t._v(" "),t.displayParticipants?a("div",{staticClass:"bb b--gray-monica pb3 mb3"},[a("label",[t._v("\n "+t._s(t.$t("people.activities_add_participants",{name:t.name}))+"\n ")]),t._v(" "),a("participant",{attrs:{hash:t.hash,"initial-participants":t.participants},on:{update:function(e){return t.updateParticipant(e)}}})],1):t._e(),t._v(" "),a("error",{attrs:{errors:t.errors}}),t._v(" "),a("div",{staticClass:"pt3"},[a("div",{staticClass:"flex-ns justify-between"},[a("div",{},[a("a",{staticClass:"btn btn-secondary tc w-auto-ns w-100 mb2 pb0-ns",on:{click:function(e){return e.preventDefault(),t.close()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("div",{},[a("button",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"save-activity-button",expression:"'save-activity-button'"}],staticClass:"btn btn-primary w-auto-ns w-100 mb2 pb0-ns",on:{click:function(e){return e.preventDefault(),t.store()}}},[t._v("\n "+t._s(t.activity?t.$t("app.save"):t.$t("app.add"))+"\n ")])])])])],1)])],1)}),[],!1,null,null,null).exports},filters:{moment:function(t){return s().utc(t).format("LL")}},props:{hash:{type:String,default:""},name:{type:String,default:""},contactId:{type:Number,default:0}},data:function(){return{displayLogActivity:!1,activities:[],emotions:[],displayDescription:!1,displayEmotions:!1,displayCategory:!1,displayParticipants:!1,destroyActivityId:0,errors:[]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getActivities(),this.todayDate=s()().format("YYYY-MM-DD")},compiledMarkdown:function(t){return null!=t?marked(t,{sanitize:!0}):""},getActivities:function(){var t=this;axios.get("api/contacts/"+this.contactId+"/activities").then((function(e){t.activities=e.data.data}))},updateList:function(t){this.displayLogActivity=!1,this.getActivities()},showDestroyActivity:function(t){this.destroyActivityId=t.id},destroyActivity:function(t){var e=this;axios.delete("api/activities/"+t.id).then((function(a){e.activities.splice(e.activities.indexOf(t),1)}))}}};a(7187);const h=(0,o.Z)(f,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{},[a("h3",{staticClass:"mb2"},[t._v("\n 🍿 "+t._s(t.$t("people.activity_title"))+"\n\n "),a("span",{staticClass:"fr relative btn-title"},[0==t.displayLogActivity?a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-activity-button",expression:"'add-activity-button'"}],staticClass:"btn edit-information",on:{click:function(e){t.displayLogActivity=!0}}},[t._v("\n "+t._s(t.$t("people.activities_add_activity"))+"\n ")]):a("a",{staticClass:"btn edit-information",on:{click:function(e){t.displayLogActivity=!1}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])]),t._v(" "),t.displayLogActivity||0!=t.activities.length?t._e():a("div",{staticClass:"w-100"},[a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activities-blank-state",expression:"'activities-blank-state'"}],staticClass:"bg-near-white tc pa3 br2 ba b--light-gray"},[a("p",[t._v(t._s(t.$t("people.activities_blank_title",{name:t.name})))]),t._v(" "),a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayLogActivity=!0}}},[t._v("\n "+t._s(t.$t("people.activities_blank_add_activity"))+"\n ")])])]),t._v(" "),t.displayLogActivity?[a("create-activity",{attrs:{hash:t.hash,"contact-id":t.contactId,name:t.name},on:{update:function(e){return t.updateList(e)},cancel:function(e){t.displayLogActivity=!1}}})]:t._e(),t._v(" "),a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activities-body",expression:"'activities-body'"},{name:"cy-items",rawName:"v-cy-items",value:t.activities.map((function(t){return t.id})),expression:"activities.map(c => c.id)"}]},t._l(t.activities,(function(e){return a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-body-"+e.id,expression:"'activity-body-'+activity.id"}],key:e.id,staticClass:"ba br2 b--black-10 br--top w-100 mb2"},[e.edit?a("create-activity",{attrs:{hash:t.hash,name:t.name,activity:e,"contact-id":t.contactId},on:{update:function(e){return t.updateList(e)},cancel:function(a){t.$set(e,"edit",!1),t.displayLogActivity=!1}}}):[a("h2",{staticClass:"pl2 pr2 pt3 f5"},[t._v("\n "+t._s(e.summary)+"\n ")]),t._v(" "),e.description?a("div",{staticClass:"markdown pl2 pr2 pb3",attrs:{dir:"auto"},domProps:{innerHTML:t._s(t.compiledMarkdown(e.description))}}):t._e(),t._v(" "),a("div",{staticClass:"pa2 cf bt b--black-10 br--bottom f7"},[a("div",{staticClass:"w-70",class:[t.dirltr?"fl":"fr"]},[a("ul",{staticClass:"list"},[a("li",{staticClass:"di",class:[t.dirltr?"mr3":"ml3"]},[t._v("\n "+t._s(t._f("moment")(e.happened_at))+"\n ")]),t._v(" "),e.attendees.total>1?a("li",{staticClass:"di"},[a("ul",{staticClass:"di list",class:[t.dirltr?"mr3":"ml3"]},[a("li",{staticClass:"di"},[t._v("\n "+t._s(t.$t("people.activities_list_participants"))+"\n ")]),t._v(" "),t._l(e.attendees.contacts.filter((function(e){return e.id!==t.contactId})),(function(e){return a("li",{key:e.id,staticClass:"di mr2"},[a("a",{attrs:{href:"people/"+e.hash_id}},[t._v(t._s(e.complete_name))])])}))],2)]):t._e(),t._v(" "),0!=e.emotions.length?a("li",{staticClass:"di"},[a("ul",{staticClass:"di list",class:[t.dirltr?"mr3":"ml3"]},[a("li",{staticClass:"di"},[t._v("\n "+t._s(t.$t("people.activities_list_emotions"))+"\n ")]),t._v(" "),t._l(e.emotions,(function(e){return a("li",{key:e.id,staticClass:"di"},[t._v("\n "+t._s(t.$t("app.emotion_"+e.name))+"\n ")])}))],2)]):t._e(),t._v(" "),e.activity_type?a("li",{staticClass:"di",class:[t.dirltr?"mr3":"ml3"]},[t._v("\n "+t._s(e.activity_type.name)+"\n ")]):t._e()])]),t._v(" "),a("div",{staticClass:"w-30",class:[t.dirltr?"fl tr":"fr tl"]},[a("ul",{staticClass:"list"},[a("li",{staticClass:"di"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"edit-activity-button-"+e.id,expression:"'edit-activity-button-'+activity.id"}],staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.$set(e,"edit",!0)}}},[t._v(t._s(t.$t("app.edit")))]),t._v(" "),a("a",{directives:[{name:"show",rawName:"v-show",value:t.destroyActivityId!=e.id,expression:"destroyActivityId != activity.id"},{name:"cy-name",rawName:"v-cy-name",value:"delete-activity-button-"+e.id,expression:"'delete-activity-button-'+activity.id"}],staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showDestroyActivity(e)}}},[t._v(t._s(t.$t("app.delete")))]),t._v(" "),a("ul",{directives:[{name:"show",rawName:"v-show",value:t.destroyActivityId==e.id,expression:"destroyActivityId == activity.id"}],staticClass:"di"},[a("li",{staticClass:"di"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"confirm-delete-activity",expression:"'confirm-delete-activity'"}],staticClass:"pointer red",on:{click:function(a){return a.preventDefault(),t.destroyActivity(e)}}},[t._v("\n "+t._s(t.$t("app.delete_confirm"))+"\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("a",{staticClass:"pointer mr1",on:{click:function(e){e.preventDefault(),t.destroyActivityId=0}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])])])])])]],2)})),0),t._v(" "),t.activities.length>0?a("p",{staticClass:"tc"},[t._v("\n 📗 "),a("a",{attrs:{href:"people/"+t.hash+"/activities/summary"}},[t._v(t._s(t.$t("people.activities_view_activities_report")))])]):t._e()],2)}),[],!1,null,"5d6a812c",null).exports},1642:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(381),s=a.n(i);const n={components:{Emotion:a(7733).Z},filters:{moment:function(t){return s().utc(t).format("LL")}},props:{hash:{type:String,default:""},name:{type:String,default:""}},data:function(){return{calls:[],displayLogCall:!1,todayDate:"",editCallId:0,destroyCallId:0,chosenEmotions:[],newCall:{content:"",called_at:"",contact_called:!1,emotions:[]},editCall:{content:"",contact_called:!1,emotions:[]}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir},locale:function(){return this.$root.locale}},mounted:function(){this.prepareComponent(this.hash)},methods:{prepareComponent:function(t){this.getCalls(),this.todayDate=s()().format("YYYY-MM-DD"),this.newCall.called_at=this.todayDate},compiledMarkdown:function(t){return null!=t?marked(t,{sanitize:!0}):""},resetFields:function(){this.newCall.content="",this.newCall.called_at=this.todayDate},getCalls:function(){var t=this;axios.get("people/"+this.hash+"/calls").then((function(e){t.calls=e.data.data}))},store:function(){var t=this;axios.post("people/"+this.hash+"/calls",this.newCall).then((function(e){t.getCalls(),t.resetFields(),t.displayLogCall=!1,t.chosenEmotions=[],t.$notify({group:"main",title:t.$t("people.calls_add_success"),text:"",type:"success"})}))},update:function(){var t=this;axios.put("people/"+this.hash+"/calls/"+this.editCallId,this.editCall).then((function(e){t.getCalls(),t.editCallId=0,t.chosenEmotions=[],t.$notify({group:"main",title:t.$t("app.default_save_success"),text:"",type:"success"})}))},showEditBox:function(t){this.editCallId=t.id,this.editCall.content=t.content,this.editCall.contact_called=t.contact_called,this.editCall.called_at=s().utc(t.called_at).format("YYYY-MM-DD")},updateDate:function(t){this.newCall.called_at=t},showDestroyCall:function(t){this.destroyCallId=t.id},destroyCall:function(t){var e=this;axios.delete("people/"+this.hash+"/calls/"+this.destroyCallId).then((function(a){e.calls.splice(e.calls.indexOf(t),1)}))},updateEmotionsList:function(t){this.chosenEmotions=t,this.newCall.emotions=[],this.editCall.emotions=[];for(var e=0;e c.id)"}]},t._l(t.calls,(function(e){return a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"call-body-"+e.id,expression:"'call-body-'+call.id"}],key:e.id,staticClass:"ba br2 b--black-10 br--top w-100 mb2"},[a("div",{directives:[{name:"show",rawName:"v-show",value:t.editCallId!=e.id,expression:"editCallId != call.id"}],staticClass:"pa2"},[e.content?t._e():a("span",[t._v("\n "+t._s(t.$t("people.call_blank_desc",{name:e.contact.first_name}))+"\n ")]),t._v(" "),e.content?a("span",{staticClass:"markdown",attrs:{dir:"auto"},domProps:{innerHTML:t._s(t.compiledMarkdown(e.content))}}):t._e()]),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:t.editCallId==e.id,expression:"editCallId == call.id"}],staticClass:"pa2"},[a("div",[a("form-textarea",{attrs:{label:t.$t("people.modal_call_comment"),rows:4,iclass:"br2 f5 w-100 ba b--black-40 pa2 outline-0"},on:{contentChange:function(e){return t.updateEditCallContent(e)}},model:{value:t.editCall.content,callback:function(e){t.$set(t.editCall,"content",e)},expression:"editCall.content"}}),t._v(" "),a("p",{staticClass:"f6"},[t._v("\n "+t._s(t.$t("app.markdown_description"))+"\n ")])],1),t._v(" "),a("div",{staticClass:"pb3 mb3 mb0-ns"},[a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("people.modal_call_who_called"))+"\n ")]),t._v(" "),a("div",{staticClass:"di mr3"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.editCall.contact_called,expression:"editCall.contact_called"}],staticClass:"mr1",attrs:{id:"you"+e.id,type:"radio",name:"contact_called"+e.id},domProps:{value:!1,checked:t._q(t.editCall.contact_called,!1)},on:{change:function(e){return t.$set(t.editCall,"contact_called",!1)}}}),t._v(" "),a("p",{staticClass:"f6"},[t._v("\n "+t._s(t.$t("app.markdown_description"))+"\n ")])]),t._v(" "),a("div",{staticClass:"pb3 mb3 mb0-ns"},[a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("people.modal_call_who_called"))+"\n ")]),t._v(" "),a("div",{staticClass:"di mr3"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.editCall.contact_called,expression:"editCall.contact_called"}],staticClass:"mr1",attrs:{id:"you"+e.id,type:"radio",name:"contact_called"+e.id},domProps:{value:!1,checked:t._q(t.editCall.contact_called,!1)},on:{change:function(e){return t.$set(t.editCall,"contact_called",!1)}}}),t._v(" "),a("label",{staticClass:"pointer",attrs:{for:"you"+e.id}},[t._v("\n "+t._s(t.$t("people.call_you_called"))+"\n ")])]),t._v(" "),a("div",{staticClass:"di mr3"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.editCall.contact_called,expression:"editCall.contact_called"}],staticClass:"mr1",attrs:{id:"contact"+e.id,type:"radio",name:"contact_called"+e.id},domProps:{value:!0,checked:t._q(t.editCall.contact_called,!0)},on:{change:function(e){return t.$set(t.editCall,"contact_called",!0)}}}),t._v(" "),a("label",{staticClass:"pointer",attrs:{for:"contact"+e.id}},[t._v("\n "+t._s(t.$t("people.call_he_called",{name:t.name}))+"\n ")])])]),t._v(" "),a("div",{staticClass:"bb b--gray-monica pb3 mb3"},[a("label",{staticClass:"b"},[t._v("\n "+t._s(t.$t("people.modal_call_emotion"))+"\n ")]),t._v(" "),a("emotion",{staticClass:"pv2",attrs:{"initial-emotions":e.emotions},on:{update:t.updateEmotionsList}})],1),t._v(" "),a("div",{},[a("div",{staticClass:"flex-ns justify-between"},[a("div",{},[a("a",{staticClass:"btn btn-secondary tc w-auto-ns w-100 mb2 pb0-ns",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.editCallId=0}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("div",{},[a("button",{staticClass:"btn btn-primary w-auto-ns w-100 mb2 pb0-ns",on:{click:function(e){return e.preventDefault(),t.update()}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")])])])])])]),t._v(" "),a("div",{staticClass:"pa2 cf bt b--black-10 br--bottom f7 lh-copy"},[a("div",{staticClass:"w-70",class:[t.dirltr?"fl":"fr"]},[a("span",{class:[t.dirltr?"mr3":"ml3"]},[t._v("\n "+t._s(t._f("moment")(e.called_at))+"\n ")]),t._v(" "),a("span",{class:[t.dirltr?"mr3":"ml3"]},[t._v("\n "+t._s(e.contact_called?t.$t("people.call_he_called",{name:t.name}):t.$t("people.call_you_called"))+"\n ")]),t._v(" "),0!=e.emotions.length?a("span",[a("span",{class:[t.dirltr?"mr2":"ml2"]},[t._v("\n "+t._s(t.$t("people.call_emotions"))+"\n ")]),t._v(" "),a("ul",{staticClass:"di"},t._l(e.emotions,(function(e){return a("li",{key:e.id,staticClass:"di"},[t._v("\n "+t._s(t.$t("app.emotion_"+e.name))+"\n ")])})),0)]):t._e()]),t._v(" "),a("div",{staticClass:"w-30",class:[t.dirltr?"fl tr":"fr tl"]},[a("a",{staticClass:"pointer ",class:[t.dirltr?"mr2":"ml2"],attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showEditBox(e)}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"show",rawName:"v-show",value:t.destroyCallId!=e.id,expression:"destroyCallId != call.id"},{name:"cy-name",rawName:"v-cy-name",value:"delete-call-button-"+e.id,expression:"'delete-call-button-'+call.id"}],staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showDestroyCall(e)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")]),t._v(" "),a("ul",{directives:[{name:"show",rawName:"v-show",value:t.destroyCallId==e.id,expression:"destroyCallId == call.id"}],staticClass:"di"},[a("li",{staticClass:"di"},[a("a",{staticClass:"pointer mr1",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.destroyCallId=0}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"delete-call-confirm-button-"+e.id,expression:"'delete-call-confirm-button-'+call.id"}],staticClass:"pointer red",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.destroyCall(e)}}},[t._v("\n "+t._s(t.$t("app.delete_confirm"))+"\n ")])])])])])])})),0)],1)}),[],!1,null,null,null).exports},6509:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{participantName:{type:String,default:""},existingMessages:{type:Array,default:function(){return[]}}},data:function(){return{messages:[],uid:1,displayTrash:!1}},mounted:function(){if(this.existingMessages.length>0)this.messages=this.existingMessages,this.uid=this.messages[this.messages.length-1].uid+1;else{var t=this;setTimeout((function(){t.addMessage()}),10)}},methods:{addMessage:function(){this.messages.push({uid:this.uid++,content:"",author:"me"}),this.messages.length>1&&(this.displayTrash=!0)},updateAuthor:function(t,e){e.author=t},deleteMessage:function(t,e){this.messages.splice(this.messages.indexOf(this.messages.find((function(e){return e.uid===t}))),1),this.messages.length<=1&&(this.displayTrash=!1)}}};a(8386);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"pa4-ns ph3 pv2 mb3 mb0-ns bb b--gray-monica"},[a("p",{staticClass:"mb2 b"},[t._v("\n "+t._s(t.$t("people.conversation_add_what_was_said"))+"\n ")]),t._v(" "),a("div",{staticClass:"pa3 ba b--gray-monica br3 conversation-block"},[t._l(t.messages,(function(e){return a("div",{key:e.uid,staticClass:"relative"},[a("div",{class:e.author+" absolute"}),t._v(" "),a("message",{class:{"mb3 ml5":"me"==e.author,"mb3 mr5":"other"==e.author},attrs:{author:e.author,uid:e.uid,"participant-name":t.participantName,"display-trash":t.displayTrash},on:{updateAuthor:function(a){return t.updateAuthor(a,e)},deleteMessage:function(a){return t.deleteMessage(a,e)}},model:{value:e.content,callback:function(a){t.$set(e,"content",a)},expression:"message.content"}})],1)})),t._v(" "),a("p",{staticClass:"tc mb0"},[a("a",{staticClass:"btn btn-secondary pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.addMessage(e)}}},[t._v("\n "+t._s(t.$t("people.conversation_add_another"))+"\n ")])]),t._v(" "),a("input",{attrs:{type:"hidden",name:"messages"},domProps:{value:t.messages.map((function(t){return t.uid}))}})],2)])}),[],!1,null,"3644004f",null).exports},4173:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{VueGoodTable:a(5206).K},props:{hash:{type:String,default:""}},data:function(){return{conversations:[],columns:[{label:this.$t("app.date"),field:"happened_at",tdClass:"vgt-table-date"},{label:this.$t("app.type"),field:"contact_field_type",width:"110px"},{label:this.$t("people.conversation_list_table_messages"),field:"message_count",width:"110px"},{label:this.$t("people.conversation_list_table_content"),field:"content"}]}},mounted:function(){this.prepareComponent(this.hash)},methods:{prepareComponent:function(t){var e=this;axios.get("people/"+t+"/conversations").then((function(t){e.conversations=t.data}))},onRowClick:function(t){window.location.href=t.row.route}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("vue-good-table",{attrs:{columns:t.columns,rows:t.conversations,"style-class":"vgt-table","sort-options":{enabled:!1},"pagination-options":{enabled:!0}},on:{"on-row-click":t.onRowClick},scopedSlots:t._u([{key:"table-row",fn:function(e){return["message_count"==e.column.field?a("span",[a("span",[t._v("\n "+t._s(e.row.message_count)+"\n "),a("svg",{attrs:{width:"18",height:"15",viewBox:"0 0 18 15",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M2.29412 14.6014V12.8182H1.69853C0.772058 12.8182 0 12.0839 0 11.2028V6.67133C0 5.79021 0.772058 5.05594 1.69853 5.05594H5.60294C5.82353 5.05594 6.02206 5.22378 6.02206 5.45455C6.02206 5.68531 5.84559 5.85315 5.60294 5.85315H1.69853C1.21323 5.85315 0.816176 6.23077 0.816176 6.69231V11.2238C0.816176 11.6853 1.21323 12.0629 1.69853 12.0629H2.71324C2.93382 12.0629 3.13235 12.2308 3.13235 12.4615V13.6993L4.80882 12.1678C4.875 12.1049 4.9853 12.0629 5.09559 12.0629H9.52941C10.0147 12.0629 10.4118 11.6853 10.4118 11.2238V8.91608C10.4118 8.70629 10.5882 8.51748 10.8309 8.51748C11.0515 8.51748 11.25 8.68532 11.25 8.91608V11.2238C11.25 12.1049 10.4779 12.8392 9.55147 12.8392H5.25L3 14.8951C2.91177 14.958 2.82353 15 2.71324 15C2.66912 15 2.60294 15 2.55882 14.958C2.40441 14.8951 2.29412 14.7482 2.29412 14.6014ZM12.7059 7.84615H8.40441C7.45588 7.84615 6.68382 7.11188 6.68382 6.20979V1.63636C6.68382 0.734263 7.45588 0 8.40441 0H16.2794C17.2279 0 18 0.734263 18 1.63636V6.20979C18 7.11188 17.2279 7.84615 16.2794 7.84615H15.6838V9.62937C15.6838 9.7972 15.5956 9.92307 15.4412 9.98601C15.3971 10.007 15.3309 10.028 15.2868 10.028C15.1765 10.028 15.0882 9.98601 15 9.92307L12.7059 7.84615ZM8.40441 7.06993H12.8603C12.9706 7.06993 13.0588 7.11188 13.1471 7.17482L14.8456 8.72727V7.46853C14.8456 7.25874 15.0221 7.06993 15.2647 7.06993H16.2794C16.7647 7.06993 17.1618 6.6923 17.1618 6.23077V1.65734C17.1618 1.1958 16.7647 0.818181 16.2794 0.818181H8.40441C7.91912 0.818181 7.52206 1.1958 7.52206 1.65734V6.23077C7.52206 6.6923 7.91912 7.06993 8.40441 7.06993ZM12.3529 3.54545C12.0441 3.54545 11.7794 3.7972 11.7794 4.09091C11.7794 4.38462 12.0441 4.63636 12.3529 4.63636C12.6618 4.63636 12.9265 4.38462 12.9265 4.09091C12.9265 3.7972 12.6618 3.54545 12.3529 3.54545ZM14.4926 4.63636C14.8015 4.63636 15.0662 4.38462 15.0662 4.09091C15.0662 3.7972 14.8015 3.54545 14.4926 3.54545C14.1838 3.54545 13.9191 3.7972 13.9191 4.09091C13.9191 4.38462 14.1838 4.63636 14.4926 4.63636ZM10.1912 3.54545C9.88235 3.54545 9.61765 3.7972 9.61765 4.09091C9.61765 4.38462 9.88235 4.63636 10.1912 4.63636C10.5 4.63636 10.7647 4.38462 10.7647 4.09091C10.7647 3.7972 10.5 3.54545 10.1912 3.54545Z",fill:"#67718A"}})])])]):a("span",[t._v("\n "+t._s(e.formattedRow[e.column.field])+"\n ")])]}}])})],1)}),[],!1,null,null,null).exports},8144:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{value:{type:String,default:""},uid:{type:Number,default:0},id:{type:String,default:""},participantName:{type:String,default:""},author:{type:String,default:""},placeholder:{type:String,default:""},required:{type:Boolean,default:!0},displayTrash:{type:Boolean,default:!0}},data:function(){return{buffer:"",updatedAuthor:this.author}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},watch:{value:function(t){this.buffer=t}},mounted:function(){this.buffer=this.value},methods:{deleteMessage:function(){this.$emit("deleteMessage",this.uid)},updateAuthor:function(t){this.updatedOther=t,this.$emit("updateAuthor",t)}}};a(2923);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"bg-white pa3 relative br3"},[t.displayTrash?a("span",{class:[t.dirltr?"absolute delete-message-l":"absolute delete-message-r"]},[a("a",{staticClass:"pointer btn btn-secondary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.deleteMessage(e)}}},[a("svg",{staticClass:"mr1 relative",staticStyle:{top:"1px"},attrs:{width:"9",height:"11",viewBox:"0 0 9 11",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7.27273 0.714286H5.81818C5.81818 0.321429 5.49091 0 5.09091 0H2.90909C2.50909 0 2.18182 0.321429 2.18182 0.714286H0.727273C0.327273 0.714286 0 1.03571 0 1.42857V2.14286C0 2.53571 0.327273 2.85714 0.727273 2.85714V9.28571C0.727273 9.67857 1.05455 10 1.45455 10H6.54545C6.94545 10 7.27273 9.67857 7.27273 9.28571V2.85714C7.67273 2.85714 8 2.53571 8 2.14286V1.42857C8 1.03571 7.67273 0.714286 7.27273 0.714286ZM6.54545 9.28571H1.45455V2.85714H2.18182V8.57143H2.90909V2.85714H3.63636V8.57143H4.36364V2.85714H5.09091V8.57143H5.81818V2.85714H6.54545V9.28571ZM7.27273 2.14286H0.727273V1.42857H7.27273V2.14286Z",fill:"#626262"}})]),t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])]):t._e(),t._v(" "),a("div",{staticClass:"mb3"},[a("span",{staticClass:"di mr3"},[t._v("\n "+t._s(t.$t("people.conversation_add_who_wrote"))+"\n ")]),t._v(" "),a("div",{staticClass:"di mr3"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.updatedAuthor,expression:"updatedAuthor"}],staticClass:"pointer",attrs:{id:"other_"+t.uid,type:"radio",name:"who_wrote_"+t.uid,value:"other"},domProps:{checked:"other"==t.updatedAuthor,checked:t._q(t.updatedAuthor,"other")},on:{click:function(e){return t.updateAuthor("other")},change:function(e){t.updatedAuthor="other"}}}),t._v(" "),a("label",{staticClass:"pointer",attrs:{for:"other_"+t.uid}},[t._v("\n "+t._s(t.participantName)+"\n ")])]),t._v(" "),a("div",{staticClass:"di"},[a("input",{directives:[{name:"model",rawName:"v-model",value:t.updatedAuthor,expression:"updatedAuthor"}],staticClass:"pointer",attrs:{id:"me_"+t.uid,type:"radio",name:"who_wrote_"+t.uid,value:"me"},domProps:{checked:"me"==t.updatedAuthor,checked:t._q(t.updatedAuthor,"me")},on:{click:function(e){return t.updateAuthor("me")},change:function(e){t.updatedAuthor="me"}}}),t._v(" "),a("label",{staticClass:"pointer",attrs:{for:"me_"+t.uid}},[t._v("\n "+t._s(t.$t("people.conversation_add_you"))+"\n ")])])]),t._v(" "),a("form-textarea",{attrs:{id:"content_"+t.uid,required:!0,"no-label":!0,rows:4,placeholder:t.$t("people.conversation_add_content")},model:{value:t.buffer,callback:function(e){t.buffer=e},expression:"buffer"}})],1)}),[],!1,null,"2f7ce6aa",null).exports},5960:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{hash:{type:String,default:""},reachLimit:{type:String,default:""}},data:function(){return{documents:[],displayUploadZone:!1,displayUploadProgress:!1,displayUploadError:!1,file:"",uploadPercentage:0,modalToDisplay:null}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getDocuments()},getDocuments:function(){var t=this;axios.get("people/"+this.hash+"/documents").then((function(e){t.documents=e.data.data}))},showUploadZone:function(){this.displayUploadZone=!0},toggleActionsModal:function(t){this.modalToDisplay==t?this.modalToDisplay=null:this.modalToDisplay=t},handleFileUpload:function(){this.file=this.$refs.file.files[0],this.submitFile()},formatTime:function(t){var e=a(8);return e.locale(this._i18n.locale),e(t).format("ll")},submitFile:function(){var t=this;this.displayUploadZone=!1,this.displayUploadProgress=!0;var e=new FormData;e.append("document",this.file),axios.post("people/"+this.hash+"/documents",e,{headers:{"Content-Type":"multipart/form-data"},onUploadProgress:function(t){this.uploadPercentage=parseInt(Math.round(100*t.loaded/t.total))}.bind(this)}).then((function(e){t.displayUploadProgress=!1,t.documents.push(e.data)})).catch((function(e){t.displayUploadProgress=!1,t.file=null,t.displayUploadError=!0}))},downloadDocument:function(t){window.open(t.link,"_blank"),this.modalToDisplay=null},deleteDocument:function(t){var e=this;axios.delete("people/"+this.hash+"/documents/"+t.id).then((function(a){e.documents.splice(e.documents.indexOf(t),1)})).catch((function(t){}))}}};a(9031);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{},[a("h3",[t._v("\n 📄 "+t._s(t.$t("people.document_list_title"))+"\n\n "),a("span",{directives:[{name:"show",rawName:"v-show",value:"false"==t.reachLimit,expression:"reachLimit == 'false'"}],staticClass:"fr relative",staticStyle:{top:"-7px"}},[0==t.displayUploadZone&&0==t.displayUploadError&&0==t.displayUploadProgress?a("a",{staticClass:"btn edit-information",attrs:{html:""},on:{click:function(e){e.preventDefault(),t.displayUploadZone=!0}}},[t._v("\n "+t._s(t.$t("people.document_list_cta"))+"\n ")]):t._e(),t._v(" "),t.displayUploadZone||t.displayUploadError||t.displayUploadProgress?a("a",{staticClass:"btn edit-information",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayUploadZone=!1,t.displayUploadError=!1,t.displayUploadProgress=!1}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]):t._e()])])]),t._v(" "),a("p",{directives:[{name:"show",rawName:"v-show",value:"true"==t.reachLimit,expression:"reachLimit == 'true'"}]},[t._v("\n "+t._s(t.$t("settings.storage_upgrade_notice"))+"\n ")]),t._v(" "),0==t.displayUploadZone&&0==t.displayUploadError&&0==t.displayUploadProgress&&0==t.documents.length?a("div",{staticClass:"ltr w-100 pt2"},[a("div",{staticClass:"section-blank"},[a("h3",{staticClass:"mb0"},[t._v("\n "+t._s(t.$t("people.document_list_blank_desc"))+"\n ")])])]):t._e(),t._v(" "),a("transition",{attrs:{name:"fade"}},[t.displayUploadZone?a("div",{staticClass:"ba br3 document-upload-zone mb3 pa3"},[a("div",{staticClass:"tc"},[a("svg",{attrs:{width:"120",height:"150",viewBox:"0 0 120 150",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M27.2012 35.9138V101.562H92.7999V18.4375H44.6762L27.2012 35.9138ZM44.1274 21.6388V35.365H30.4024L44.1274 21.6388ZM46.0024 20.3125H90.9249V99.6875H29.0762V37.24H46.0024V20.3125Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M63.9413 42.7338H36.3013V44.6088H63.9413V42.7338Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M63.9413 52.6112H36.3013V54.4862H63.9413V52.6112Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 62.4888H36.3013V64.3638H83.6988V62.4888Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 72.3676H36.3013V74.2426H83.6988V72.3676Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 82.245H36.3013V84.12H83.6988V82.245Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 92.1226H36.3013V93.9976H83.6988V92.1226Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M84.6362 41.585H67.8774V58.3425H84.6362V41.585ZM82.7612 56.4675H69.7524V43.46H82.7612V56.4675Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M35.2864 107.656C33.6551 107.656 32.3276 108.984 32.3276 110.615C32.3276 112.246 33.6551 113.574 35.2864 113.574C36.9176 113.574 38.2451 112.246 38.2451 110.615C38.2451 108.984 36.9176 107.656 35.2864 107.656ZM35.2864 112.636C34.1714 112.636 33.2651 111.729 33.2651 110.615C33.2651 109.501 34.1726 108.594 35.2864 108.594C36.4001 108.594 37.3076 109.501 37.3076 110.615C37.3076 111.729 36.4001 112.636 35.2864 112.636Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M10.6401 41.265L13.3251 42.6762L12.8126 39.6862L14.9851 37.5687L11.9839 37.1325L10.6401 34.4125L9.29764 37.1325L6.29639 37.5687L8.46889 39.6862L7.95639 42.6762L10.6401 41.265ZM8.31014 38.2225L9.92014 37.9887L10.6401 36.53L11.3601 37.9887L12.9701 38.2225L11.8051 39.3587L12.0801 40.9625L10.6401 40.2062L9.20014 40.9625L9.47514 39.3587L8.31014 38.2225Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M36.3237 10.1125L35.365 8.17004L34.405 10.1125L32.2612 10.425L33.8125 11.9375L33.4462 14.0725L35.3637 13.065L37.2812 14.0725L36.9162 11.9375L38.4675 10.425L36.3237 10.1125ZM36.0375 12.36L35.365 12.0063L34.6925 12.36L34.8212 11.61L34.275 11.0788L35.0275 10.97L35.3637 10.2888L35.7 10.97L36.4525 11.0788L35.9075 11.61L36.0375 12.36Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M108.859 87.615L110.776 88.6225L110.41 86.4875L111.961 84.975L109.818 84.6625L108.859 82.72L107.9 84.6625L105.756 84.975L107.308 86.4875L106.941 88.6225L108.859 87.615ZM108.523 85.52L108.859 84.8387L109.195 85.52L109.948 85.6287L109.403 86.16L109.531 86.91L108.859 86.5562L108.186 86.91L108.315 86.16L107.77 85.6287L108.523 85.52Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M108.859 17.1625L107.618 20.9837H103.6L106.849 23.345L105.609 27.165L108.859 24.8037L112.109 27.165L110.868 23.345L114.116 20.9837H110.1L108.859 17.1625ZM109.765 22.9875L110.325 24.71L108.859 23.645L107.391 24.7112L107.951 22.9875L106.485 21.9212H108.299L108.859 20.1975L109.419 21.9212H111.233L109.765 22.9875Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M98.9138 6.42749C97.2826 6.42749 95.9551 7.75499 95.9551 9.38624C95.9551 11.0175 97.2826 12.345 98.9138 12.345C100.545 12.345 101.873 11.0175 101.873 9.38624C101.873 7.75499 100.545 6.42749 98.9138 6.42749ZM98.9138 11.4075C97.7988 11.4075 96.8926 10.5 96.8926 9.38624C96.8926 8.27249 97.8001 7.36499 98.9138 7.36499C100.028 7.36499 100.935 8.27249 100.935 9.38624C100.935 10.5 100.028 11.4075 98.9138 11.4075Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M110.779 58.8438C109.461 58.8438 108.39 59.915 108.39 61.2325C108.39 62.55 109.461 63.6213 110.779 63.6213C112.096 63.6213 113.168 62.55 113.168 61.2325C113.168 59.915 112.096 58.8438 110.779 58.8438ZM110.779 62.6837C109.979 62.6837 109.328 62.0325 109.328 61.2325C109.328 60.4325 109.979 59.7813 110.779 59.7813C111.579 59.7813 112.23 60.4325 112.23 61.2325C112.23 62.0325 111.579 62.6837 110.779 62.6837Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M18.6973 18.3362C16.9836 18.3362 15.5898 19.7299 15.5898 21.4437C15.5898 23.1574 16.9836 24.5512 18.6973 24.5512C20.4111 24.5512 21.8048 23.1574 21.8048 21.4437C21.8048 19.7299 20.4111 18.3362 18.6973 18.3362ZM18.6973 23.6137C17.5011 23.6137 16.5273 22.6399 16.5273 21.4437C16.5273 20.2474 17.5011 19.2737 18.6973 19.2737C19.8936 19.2737 20.8673 20.2474 20.8673 21.4437C20.8673 22.6399 19.8936 23.6137 18.6973 23.6137Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M27.4414 110.794C27.8502 110.898 28.2652 110.99 28.6839 111.074L28.8677 110.155C28.4639 110.074 28.0652 109.984 27.6702 109.885L27.4414 110.794Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M9.64111 94.6313C9.91986 95.4101 10.2424 96.1876 10.5999 96.9413L11.4474 96.5413C11.1036 95.8138 10.7936 95.0663 10.5249 94.3151L9.64111 94.6313Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M11.7773 99.1475C12.2048 99.86 12.6711 100.56 13.1661 101.229L13.9198 100.671C13.4448 100.028 12.9936 99.3525 12.5823 98.6663L11.7773 99.1475Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M22.7339 109.106C23.4851 109.463 24.2639 109.785 25.0464 110.066L25.3626 109.184C24.6076 108.914 23.8589 108.603 23.1351 108.26L22.7339 109.106Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M14.75 103.164C15.305 103.78 15.8988 104.378 16.5163 104.938L17.1475 104.244C16.5538 103.704 15.9813 103.129 15.4463 102.536L14.75 103.164Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M9.08887 86.0649C9.08887 85.6587 9.09887 85.2512 9.11887 84.8412L8.18262 84.7949C8.16137 85.2199 8.15137 85.6424 8.15137 86.0649C8.15137 86.4774 8.16137 86.8887 8.18137 87.2974L9.11762 87.2524C9.09887 86.8574 9.08887 86.4612 9.08887 86.0649Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M9.35279 89.6475L8.42529 89.785C8.54779 90.6062 8.71154 91.4312 8.91404 92.2375L9.82404 92.0087C9.62904 91.2325 9.47029 90.4387 9.35279 89.6475Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M18.4473 106.53C19.116 107.027 19.816 107.496 20.526 107.924L21.0098 107.12C20.326 106.709 19.6523 106.257 19.0073 105.777L18.4473 106.53Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M9.36012 82.425C9.42012 82.0225 9.49012 81.6187 9.57012 81.2162L8.65137 81.0325C8.56762 81.4512 8.49512 81.8687 8.43262 82.2875L9.36012 82.425Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M111.323 96.2138L112.257 96.2988C112.295 95.8763 112.319 95.4488 112.328 95.0176L111.39 94.9976C111.382 95.4076 111.359 95.8126 111.323 96.2138Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M110.009 101.347L110.869 101.721C111.241 100.865 111.546 99.9725 111.779 99.0675L110.87 98.8337C110.651 99.6912 110.361 100.537 110.009 101.347Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M107.156 105.81L107.858 106.433C108.48 105.733 109.049 104.98 109.55 104.196L108.76 103.691C108.284 104.434 107.745 105.146 107.156 105.81Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M98.1226 111.079L98.3176 111.995C99.2288 111.801 100.134 111.531 101.005 111.192L100.666 110.319C99.8413 110.64 98.9851 110.895 98.1226 111.079Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M103.059 109.166L103.531 109.975C104.337 109.505 105.111 108.966 105.834 108.374L105.239 107.649C104.555 108.211 103.821 108.721 103.059 109.166Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M94.2637 111.444L94.2437 112.381C94.3649 112.384 94.4862 112.385 94.6074 112.385C94.9162 112.385 95.2224 112.378 95.5287 112.361L95.4799 111.425C95.0774 111.446 94.6724 111.455 94.2637 111.444Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M111.248 45.4712H110.31V47.9712H111.248V45.4712Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M111.248 40.4712H110.31V42.9712H111.248V40.4712Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M111.248 35.4712H110.31V37.9712H111.248V35.4712Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M111.248 50.4712H110.31V52.9712H111.248V50.4712Z",fill:"#868E99"}})])]),t._v(" "),a("div",{staticClass:"tc dib w-100 relative"},[a("button",{staticClass:"btn"},[t._v("\n "+t._s(t.$t("people.document_upload_zone_cta"))+"\n ")]),t._v(" "),a("input",{ref:"file",staticClass:"absolute o-0 w-100 h-100 pointer",staticStyle:{left:"0"},attrs:{id:"file",type:"file"},on:{change:function(e){return t.handleFileUpload()}}})])]):t._e()]),t._v(" "),t.displayUploadProgress?a("div",{staticClass:"ba br3 document-upload-zone mb3 pa3"},[a("p",{staticClass:"tc mb1"},[t._v("\n "+t._s(t.$t("people.document_upload_zone_progress"))+"\n ")]),t._v(" "),a("div",{staticClass:"tc mb1"},[a("progress",{attrs:{max:"100"},domProps:{value:t.uploadPercentage}})]),t._v(" "),a("p",{staticClass:"tc f6 mb0"},[t._v("\n "+t._s(t.uploadPercentage)+"% uploaded\n ")])]):t._e(),t._v(" "),a("transition",{attrs:{name:"fade"}},[t.displayUploadError?a("div",{staticClass:"ba br3 document-upload-zone mb3 pa3"},[a("div",{staticClass:"tc"},[a("svg",{attrs:{width:"120",height:"150",viewBox:"0 0 120 150",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M27.2012 35.9138V101.562H92.7999V18.4375H44.6762L27.2012 35.9138ZM44.1274 21.6388V35.365H30.4024L44.1274 21.6388ZM46.0024 20.3125H90.9249V99.6875H29.0762V37.24H46.0024V20.3125Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 72.3676H36.3013V74.2426H83.6988V72.3676Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 82.245H36.3013V84.12H83.6988V82.245Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 92.1226H36.3013V93.9976H83.6988V92.1226Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M78.5862 46.875C79.367 46.875 80 46.2314 80 45.4375C80 44.6436 79.367 44 78.5862 44H68.6897C67.9088 44 67.2759 44.6436 67.2759 45.4375C67.2759 47.8192 69.1748 49.75 71.5172 49.75C73.364 49.75 74.935 48.5499 75.5173 46.875H78.5862ZM40.4138 46.875C39.633 46.875 39 46.2314 39 45.4375C39 44.6436 39.633 44 40.4138 44H50.3103C51.0912 44 51.7241 44.6436 51.7241 45.4375C51.7241 47.8192 49.8252 49.75 47.4828 49.75C45.636 49.75 44.065 48.5499 43.4827 46.875H40.4138ZM55.7524 66.3213C55.888 66.0995 56.2309 65.69 56.7753 65.2677C57.698 64.552 58.8279 64.1248 60.2069 64.1248C61.5859 64.1248 62.7158 64.552 63.6385 65.2677C64.1829 65.69 64.5258 66.0995 64.6614 66.3213C65.0736 66.9955 65.9454 67.2023 66.6085 66.7831C67.2716 66.364 67.475 65.4776 67.0628 64.8034C66.7589 64.3064 66.199 63.6378 65.3535 62.9819C63.9596 61.9008 62.2381 61.2499 60.2069 61.2499C58.1757 61.2499 56.4542 61.9008 55.0603 62.9819C54.2148 63.6378 53.6549 64.3064 53.351 64.8034C52.9388 65.4776 53.1422 66.364 53.8053 66.7831C54.4684 67.2023 55.3402 66.9955 55.7524 66.3213Z",fill:"#868E99"}})])]),t._v(" "),a("p",{staticClass:"tc mb3"},[t._v("\n "+t._s(t.$t("people.document_upload_zone_error"))+"\n ")]),t._v(" "),a("p",{staticClass:"tc"},[a("input",{ref:"file",attrs:{id:"file",type:"file"},on:{change:function(e){return t.handleFileUpload()}}})])]):t._e()]),t._v(" "),a("div",{staticClass:"table"},t._l(t.documents,(function(e){return a("div",{key:e.id,staticClass:"table-row"},[a("div",{staticClass:"table-cell document-date f6"},[t._v("\n "+t._s(t.formatTime(e.created_at))+"\n ")]),t._v(" "),a("div",{staticClass:"table-cell document-type tc"},[a("span",{staticClass:"document-type-icon"},[t._v("\n "+t._s(e.type)+"\n ")])]),t._v(" "),a("div",{staticClass:"table-cell"},[t._v("\n "+t._s(e.original_filename)+"\n ")]),t._v(" "),a("div",{staticClass:"table-cell document-action relative"},[a("div",{staticClass:"document-action-wrapper pointer",on:{click:function(a){return t.toggleActionsModal(e.id)}}},[a("svg",{staticClass:"document-action-button",attrs:{width:"24",height:"6",viewBox:"0 0 24 6",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("circle",{attrs:{cx:"4.5",cy:"2.5",r:"2.5",fill:"#505473","fill-opacity":"0.86"}}),t._v(" "),a("circle",{attrs:{cx:"11.5",cy:"2.5",r:"2.5",fill:"#505473","fill-opacity":"0.86"}}),t._v(" "),a("circle",{attrs:{cx:"18.5",cy:"2.5",r:"2.5",fill:"#505473","fill-opacity":"0.86"}})])]),t._v(" "),t.modalToDisplay==e.id?a("ul",{staticClass:"absolute bg-white z-max pv1 document-action-menu"},[a("li",{staticClass:"tc"},[a("a",{staticClass:"pv2 pointer ph3 inline-flex items-center w-100 no-underline document-action-menu-item",attrs:{href:e.link,target:"_blank"},on:{click:function(a){return t.downloadDocument(e)}}},[t._v("\n "+t._s(t.$t("app.download"))+"\n ")])]),t._v(" "),a("li",{staticClass:"tc"},[a("a",{staticClass:"pv2 pointer ph3 inline-flex items-center no-underline w-100 document-action-menu-item delete",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.deleteDocument(e)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])]):t._e()])])})),0)],1)}),[],!1,null,"085d325b",null).exports},4077:(t,e,a)=>{"use strict";a.d(e,{Z:()=>C});var i=a(2369);const s={components:{SweetModal:i.y},props:{gift:{type:Object,default:null}},data:function(){return{comment:!1,showModal:!1,url:""}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},methods:{modalPhoto:function(t){this.url=t.link,this.$refs.modalPhoto.open()},formatDate:function(t){var e=a(8);return e.locale(this._i18n.locale),e.tz.setDefault("UTC"),e.tz(e(t),this.$root.timezone).format("LL")}}};a(4955);var n=a(1900);const o=(0,n.Z)(s,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("p",{staticClass:"mb1 bb b--gray-monica pa2"},[a("span",[t.gift.url?a("a",{attrs:{href:t.gift.url,rel:"noopener noreferrer",target:"_blank"}},[a("strong",[t._v(t._s(t.gift.name))])]):a("strong",[t._v(t._s(t.gift.name))])]),t._v(" "),t.gift.date?a("span",{staticClass:"f7 gift-date"},[t._v(t._s(t.formatDate(t.gift.date)))]):t._e(),t._v(" "),t.gift.recipient&&t.gift.recipient.complete_name?a("span",[a("span",{staticClass:"black-50 mr1 ml1"},[t._v("\n •\n ")]),t._v("\n "+t._s(t.$t("people.gifts_for",{name:t.gift.recipient.complete_name}))+"\n ")]):t._e()]),t._v(" "),void 0!==t.gift.photos&&t.gift.photos.length>0?a("div",{staticClass:"bb b--gray-monica pa1"},[a("div",{staticClass:"flex flex-wrap"},t._l(t.gift.photos,(function(e){return a("div",{key:e.id,staticClass:"w-third-ns w-100"},[a("div",{staticClass:"pa2 mb1 br2 ba b--gray-monica",class:t.dirltr?"mr3":"ml3"},[a("div",{staticClass:"cover bg-center photo w-100 h-auto br2 bb b--gray-monica pb2",style:"background-image: url("+e.link+");",on:{click:function(a){return a.preventDefault(),t.modalPhoto(e)}}})])])})),0)]):t._e(),t._v(" "),t.gift.amount||t.gift.comment?a("div",{staticClass:"f6 pv1 mb1 ph2 pb2 bb b--gray-monica"},[t.gift.amount?a("span",[t._v("\n "+t._s(t.gift.amount_with_currency)+"\n ")]):t._e(),t._v(" "),t.gift.amount&&t.gift.comment?a("span",{staticClass:"black-50 mr1 ml1"},[t._v("\n •\n ")]):t._e(),t._v(" "),t.gift.comment?a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.comment=!t.comment}}},[t._v("\n "+t._s(t.$t("people.gifts_view_comment"))+"\n ")]):t._e(),t._v(" "),t.comment?a("div",{staticClass:"mb1 mt1"},[t._v("\n "+t._s(t.gift.comment)+"\n ")]):t._e()]):t._e(),t._v(" "),a("div",{staticClass:"ph2 pb2 cf f7"},[t._t("default")],2),t._v(" "),a("sweet-modal",{ref:"modalPhoto",attrs:{tabindex:"-1",role:"dialog","enable-mobile-fullscreen":!0,width:"33%"}},[a("img",{staticClass:"mw-90 h-auto mb3",attrs:{src:t.url,alt:t.$t("people.photo_title")}})])],1)}),[],!1,null,"aeeac96c",null).exports;var r=a(7254),l=a(7604),c=a(8620),d=a(379);function p(t){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const u={components:{Error:r.Z,PhotoUpload:l.Z},mixins:[c.oE],model:{prop:"gift",event:"update"},props:{contactId:{type:Number,default:0},gift:{type:Object,default:null},familyContacts:{type:Array,default:function(){return[]}},reachLimit:{type:Boolean,default:!0}},data:function(){return{photos:[],displayComment:!1,displayUrl:!1,displayAmount:!1,displayRecipient:!1,displayUpload:!1,displayDate:!1,newGift:{name:"",status:"idea",comment:null,url:null,amount:null,date:null,recipient_id:null,photo_id:null},hasRecipient:!1,errors:[]}},validations:function(){var t={newGift:{name:{required:d.C1,maxLength:(0,d.BS)(255)}}};return this.hasRecipient&&(t.newGift=Object.assign(t.newGift,{recipient_id:{required:d.C1}})),t},computed:{locale:function(){return this.$root.locale},dirltr:function(){return"ltr"==this.$root.htmldir},displayMenu:function(){return!(this.displayComment&&this.displayUrl&&this.displayAmount&&this.displayDate&&(this.displayRecipient||0==this.familyContacts.length)&&(this.displayUpload||this.reachLimit))}},watch:{gift:function(t){this.newGift=t}},mounted:function(){this.resetFields()},methods:{resetFields:function(){this.newGift.contact_id=this.contactId,this.gift?(this.newGift.contact_id=this.gift.contact.id,this.newGift.name=this.gift.name,this.newGift.comment=this.gift.comment,this.newGift.url=this.gift.url,this.newGift.amount=this.gift.amount,this.newGift.status=this.gift.status,this.newGift.recipient_id=this.gift.recipient?this.gift.recipient.id:null,this.hasRecipient=null!=this.newGift.recipient_id,this.newGift.date=this.gift.date,this.photos=this.gift.photos):(this.newGift.name="",this.newGift.comment=null,this.newGift.url=null,this.newGift.amount=null,this.newGift.status="idea",this.newGift.recipient_id=null,this.newGift.date=null,this.hasRecipient=!1),this.displayComment=!!this.gift&&this.gift.comment,this.displayDate=!!this.gift&&this.gift.date,this.displayUrl=!!this.gift&&this.gift.url,this.displayAmount=!!this.gift&&""!=this.gift.amount,this.displayRecipient=!!this.gift&&(!!this.gift.recipient&&0!==this.gift.recipient.id),this.displayUpload=!!this.gift&&this.gift.photos.length>0,this.errors=[],this.$v.$reset()},close:function(){this.resetFields(),this.$emit("cancel")},store:function(){var t=this;if(this.hasRecipient||(this.newGift.recipient_id=null),this.$v.$touch(),!this.$v.$invalid){var e=this.gift?"put":"post",a=this.gift?"api/gifts/"+this.gift.id:"api/gifts",i=this;axios[e](a,this.newGift).then((function(t){return i.storePhoto(t)})).then((function(t){return i.close(),i.$emit("update",t.data.data),t})).then((function(){t.$notify({group:"main",title:i.$t("people.gifts_add_success"),text:"",type:"success"})})).catch((function(t){i._errorHandle(t)}))}},storePhoto:function(t){var e=this;return this.$refs.upload.forceFileUpload().then((function(e){return void 0!==e&&(axios.put("api/gifts/"+t.data.data.id+"/photo/"+e.id),t.data.data.photos.push(e)),t})).catch((function(a){return e._errorHandle(a),t}))},_errorHandle:function(t){t.response&&"object"===p(t.response.data)?this.errors=_.flatten(_.toArray(t.response.data)):this.errors=[vm.$t("app.error_try_again"),t.message]},deletePhoto:function(t){var e=this;axios.delete("api/photos/"+t.id).then((function(a){e.photos.splice(e.photos.indexOf(t),1),0==e.photos.length&&e.$refs.upload.showUploadZone()}))},handlePhoto:function(t){this.photos.push({id:-1,link:""})}}};a(4059);const m=(0,n.Z)(u,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("transition",{attrs:{name:"fade"}},[a("div",{staticClass:"ba br3 mb3 pa3 b--black-40"},[a("div",{staticClass:"pb3 mb3 flex-ns b--gray-monica"},[a("form-radio",{attrs:{id:"status_idea",name:"status",required:!0,value:"idea",color:"success","full-class":"p-default p-fill p-curve"},model:{value:t.newGift.status,callback:function(e){t.$set(t.newGift,"status",e)},expression:"newGift.status"}},[t._v("\n "+t._s(t.$t("people.gifts_add_gift_idea"))+"\n ")]),t._v(" "),a("form-radio",{attrs:{id:"status_offered",name:"status",required:!0,value:"offered",color:"info","full-class":"p-default p-fill p-curve"},model:{value:t.newGift.status,callback:function(e){t.$set(t.newGift,"status",e)},expression:"newGift.status"}},[t._v("\n "+t._s(t.$t("people.gifts_add_gift_already_offered"))+"\n ")]),t._v(" "),a("form-radio",{attrs:{id:"status_received",name:"status",required:!0,value:"received",color:"warning","full-class":"p-default p-fill p-curve"},model:{value:t.newGift.status,callback:function(e){t.$set(t.newGift,"status",e)},expression:"newGift.status"}},[t._v("\n "+t._s(t.$t("people.gifts_add_gift_received"))+"\n ")])],1),t._v(" "),a("div",{staticClass:"dt dt--fixed pb3 mb3 mb0-ns bb b--gray-monica"},[a("form-input",{class:"dtc pr2",attrs:{id:"name","input-type":"text",maxlength:255,required:!0,title:t.$t("people.gifts_add_gift_name"),validator:t.$v.newGift.name},on:{submit:t.store},model:{value:t.newGift.name,callback:function(e){t.$set(t.newGift,"name",e)},expression:"newGift.name"}})],1),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:t.displayMenu,expression:"displayMenu"}],staticClass:"bb b--gray-monica pv3 mb3"},[a("ul",{staticClass:"list"},[a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayComment,expression:"!displayComment"}],staticClass:"di pointer",class:t.dirltr?"mr3":"ml3"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayComment=!0}}},[t._v(t._s(t.$t("people.gifts_add_comment")))])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayUrl,expression:"!displayUrl"}],staticClass:"di pointer",class:t.dirltr?"mr3":"ml3"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayUrl=!0}}},[t._v(t._s(t.$t("people.gifts_add_link")))])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayAmount,expression:"!displayAmount"}],staticClass:"di pointer",class:t.dirltr?"mr3":"ml3"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayAmount=!0,t.newGift.amount=0}}},[t._v(t._s(t.$t("people.gifts_add_value")))])]),t._v(" "),t.familyContacts.length>0?a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayRecipient,expression:"!displayRecipient"}],staticClass:"di pointer",class:t.dirltr?"mr3":"ml3"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayRecipient=!0}}},[t._v(t._s(t.$t("people.gifts_add_recipient")))])]):t._e(),t._v(" "),t.reachLimit?t._e():a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayUpload,expression:"!displayUpload"}],staticClass:"di pointer",class:t.dirltr?"mr3":"ml3"},[a("a",{attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.displayUpload=!0,void t.$refs.upload.showUploadZone()}}},[t._v(t._s(t.$t("people.gifts_add_photo")))])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:!t.displayDate,expression:"!displayDate"}],staticClass:"di pointer",class:t.dirltr?"mr3":"ml3"},[a("a",{attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayDate=!0}}},[t._v(t._s(t.$t("people.gifts_add_date")))])])])]),t._v(" "),t.displayComment?a("div",{staticClass:"dt dt--fixed pb3 mb3 bb b--gray-monica"},[a("form-input",{class:"dtc pr2",attrs:{id:"comment","input-type":"text",title:t.$t("people.gifts_add_comment")},on:{submit:t.store},model:{value:t.newGift.comment,callback:function(e){t.$set(t.newGift,"comment",e)},expression:"newGift.comment"}})],1):t._e(),t._v(" "),t.displayUrl?a("div",{staticClass:"dt dt--fixed pb3 mb3 bb b--gray-monica"},[a("form-input",{class:"dtc pr2",attrs:{id:"url","input-type":"text",title:t.$t("people.gifts_add_link"),placeholder:"https://"},on:{submit:t.store},model:{value:t.newGift.url,callback:function(e){t.$set(t.newGift,"url",e)},expression:"newGift.url"}})],1):t._e(),t._v(" "),t.displayDate?a("div",{staticClass:"dt dt--fixed pb3 mb3 bb b--gray-monica"},[a("form-date",{class:[t.dirltr?"fl dtc pr2":"fr dtc pr2"],attrs:{id:"date","show-calendar-on-focus":!0,locale:t.locale,label:t.$t("people.gifts_add_date")},on:{submit:t.store},model:{value:t.newGift.date,callback:function(e){t.$set(t.newGift,"date",e)},expression:"newGift.date"}})],1):t._e(),t._v(" "),t.displayAmount?a("div",{staticClass:"dt dt--fixed pb3 mb3 bb b--gray-monica"},[a("form-input",{class:"dtc pr2",attrs:{id:"amount","input-type":"number",title:t.$t("people.gifts_add_value"),required:t.displayAmount,step:".01"},on:{submit:t.store},model:{value:t.newGift.amount,callback:function(e){t.$set(t.newGift,"amount",e)},expression:"newGift.amount"}})],1):t._e(),t._v(" "),t.displayRecipient?a("div",{staticClass:"dt dt--fixed pb3 mb3 bb b--gray-monica"},[a("form-checkbox",{attrs:{name:"has_recipient"},on:{change:function(e){e&&t.$refs.recipient.focus()}},model:{value:t.hasRecipient,callback:function(e){t.hasRecipient=e},expression:"hasRecipient"}},[t._v("\n "+t._s(t.$t("people.gifts_add_someone",{name:""}))+"\n ")]),t._v(" "),a("form-select",{ref:"recipient",attrs:{label:t.$t("people.gifts_add_recipient_field"),options:t.familyContacts,validator:t.$v.newGift.recipient_id},on:{input:function(e){t.hasRecipient=!0}},model:{value:t.newGift.recipient_id,callback:function(e){t.$set(t.newGift,"recipient_id",e)},expression:"newGift.recipient_id"}})],1):t._e(),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:t.displayUpload,expression:"displayUpload"}],staticClass:"dt dt--fixed pb3 mb3 bb b--gray-monica"},[a("span",{staticClass:"mb2 b"},[t._v("\n "+t._s(t.$t("people.gifts_add_photo_title"))+"\n ")]),t._v(" "),a("photo-upload",{directives:[{name:"show",rawName:"v-show",value:0==t.photos.length,expression:"photos.length == 0"}],ref:"upload",attrs:{"contact-id":t.contactId},on:{upload:function(e){return e.stopPropagation(),t.handlePhoto(e)}}}),t._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:t.photos.length>0,expression:"photos.length > 0"}]},[a("div",{staticClass:"flex flex-wrap"},t._l(t.photos,(function(e){return a("div",{key:e.id,staticClass:"w-third-ns w-100"},[e.id>0?a("div",{staticClass:"pa2 mb3 br2 ba b--gray-monica",class:t.dirltr?"mr3":"ml3"},[a("div",{staticClass:"cover bg-center photo w-100 h-100 br2 bb b--gray-monica pb2",style:"background-image: url("+e.link+");"}),t._v(" "),a("div",{staticClass:"pt2"},[a("ul",[a("li",[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.deletePhoto(e)}}},[t._v("\n "+t._s(t.$t("people.photo_delete"))+"\n ")])])])])]):a("div",{staticClass:"ba br3 photo-upload-zone mb3 pa3"},[a("div",{staticClass:"tc dib w-100 relative"},[t._v("\n "+t._s(t.$tc("app.file_selected",t.photos.length,{count:t.photos.length}))+"\n ")])])])})),0)])],1),t._v(" "),a("error",{attrs:{errors:t.errors}}),t._v(" "),a("div",{staticClass:"pt3"},[a("div",{staticClass:"flex-ns justify-between"},[a("div",{},[a("a",{staticClass:"btn btn-secondary tc w-auto-ns w-100 mb2 pb0-ns",on:{click:function(e){return e.preventDefault(),t.close(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("div",{},[a("button",{staticClass:"btn btn-primary w-auto-ns w-100 mb2 pb0-ns",on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.gift?t.$t("app.update"):t.$t("app.add"))+"\n ")])])])])],1)])],1)}),[],!1,null,"2f014296",null).exports;var f=a(381),h=a.n(f);const v={components:{Gift:o,CreateGift:m,SweetModal:i.y},props:{hash:{type:String,default:""},contactId:{type:Number,default:0},giftsActiveTab:{type:String,default:"idea"},familyContacts:{type:Array,default:function(){return[]}},reachLimit:{type:Boolean,default:!0}},data:function(){return{gifts:[],activeTab:"",giftToTrash:"",displayCreateGift:!1}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir},ideas:function(){return this.gifts.filter((function(t){return"idea"==t.status}))},offered:function(){return this.gifts.filter((function(t){return"offered"==t.status}))},received:function(){return this.gifts.filter((function(t){return"received"==t.status}))},filteredGifts:function(){var t=this;return this.gifts.filter((function(e){return e.status==t.activeTab}))}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getGifts(),this.setActiveTab(this.giftsActiveTab)},setActiveTab:function(t){this.activeTab="ideas"===t?"idea":t},getGifts:function(){var t=this;axios.get("api/contacts/"+this.contactId+"/gifts").then((function(e){t.gifts=e.data.data}))},toggle:function(t){"idea"==t.status?(t.status="offered",t.date=h()().format("YYYY-MM-DD")):(t.status="idea",t.date=null),t.contact_id=this.contactId,axios.put("api/gifts/"+t.id,t).then((function(e){Vue.set(t,"status",e.data.data.status),Vue.set(t,"date",e.data.data.date)}))},showDeleteModal:function(t){this.$refs.modal.open(),this.giftToTrash=t},trash:function(t){var e=this;axios.delete("api/gifts/"+t.id).then((function(a){e.gifts.splice(e.gifts.indexOf(t),1),e.closeDeleteModal()}))},updateList:function(t){this.displayCreateGift=!1,this.getGifts()},updateGift:function(t,e){this.$set(t,"edit",!1),this.$set(t,"name",e.name),this.$set(t,"comment",e.comment),this.$set(t,"url",e.url),this.$set(t,"amount",e.amount),this.$set(t,"amount_with_currency",e.amount_with_currency),this.$set(t,"status",e.status),this.$set(t,"recipient",e.recipient),this.$set(t,"date",e.date),this.$set(t,"photos",e.photos),this.$emit("update",e)},closeDeleteModal:function(){this.$refs.modal.close()}}};const C=(0,n.Z)(v,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),a("div",[a("img",{staticClass:"icon-section icon-tasks",attrs:{src:"img/people/gifts.svg",alt:t.$t("people.gifts_title")}}),t._v(" "),a("h3",[t._v("\n "+t._s(t.$t("people.gifts_title"))+"\n "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-gift-button",expression:"'add-gift-button'"}],staticClass:"btn f6 pt2",class:[t.dirltr?"fr":"fl"],attrs:{href:""},on:{click:function(e){e.preventDefault(),t.displayCreateGift=!0}}},[t._v("\n "+t._s(t.$t("people.gifts_add_gift"))+"\n ")])])]),t._v(" "),t.displayCreateGift?[a("create-gift",{attrs:{"contact-id":t.contactId,"family-contacts":t.familyContacts,"reach-limit":t.reachLimit},on:{update:function(e){return t.updateList(e)},cancel:function(e){t.displayCreateGift=!1}}})]:t._e(),t._v(" "),a("div",[a("ul",{staticClass:"mb3"},[a("li",{staticClass:"di"},[a("p",{staticClass:"di pointer",class:["idea"==t.activeTab?"b":"black-50",t.dirltr?"mr3":"ml3"],on:{click:function(e){return e.preventDefault(),t.setActiveTab("idea")}}},[t._v("\n "+t._s(t.$t("people.gifts_ideas"))+" ("+t._s(t.ideas.length)+")\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("p",{staticClass:"di pointer",class:["offered"==t.activeTab?"b":"black-50",t.dirltr?"mr3":"ml3"],on:{click:function(e){return e.preventDefault(),t.setActiveTab("offered")}}},[t._v("\n "+t._s(t.$t("people.gifts_offered"))+" ("+t._s(t.offered.length)+")\n ")])]),t._v(" "),a("li",{staticClass:"di"},[a("p",{staticClass:"di pointer",class:["received"==t.activeTab?"b":"black-50",t.dirltr?"mr3":"ml3"],on:{click:function(e){return e.preventDefault(),t.setActiveTab("received")}}},[t._v("\n "+t._s(t.$t("people.gifts_received"))+" ("+t._s(t.received.length)+")\n ")])])]),t._v(" "),t._l(t.filteredGifts,(function(e){return a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"gift-item-"+e.id,expression:"'gift-item-' + gift.id"}],key:e.id,staticClass:"ba b--gray-monica mb3 br2"},[e.edit?a("create-gift",{attrs:{gift:e,"contact-id":t.contactId,"family-contacts":t.familyContacts,"reach-limit":t.reachLimit},on:{update:function(a){return t.updateGift(e,a)},cancel:function(a){return t.$set(e,"edit",!1)}}}):a("gift",{attrs:{gift:e},on:{update:function(e){t.updateList(e)}}},[a("div",{class:t.dirltr?"fl":"fr"},["idea"==e.status?a("a",{staticClass:"di",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.toggle(e)}}},[t._v("\n "+t._s(t.$t("people.gifts_mark_offered"))+"\n ")]):t._e(),t._v(" "),"offered"==e.status?a("a",{staticClass:"di",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.toggle(e)}}},[t._v("\n "+t._s(t.$t("people.gifts_offered_as_an_idea"))+"\n ")]):t._e()]),t._v(" "),a("div",{class:t.dirltr?"fr":"fl"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"edit-gift-button-"+e.id,expression:"'edit-gift-button-' + gift.id"}],staticClass:"di",class:t.dirltr?"mr1":"ml1",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.$set(e,"edit",!0)}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"delete-gift-button-"+e.id,expression:"'delete-gift-button-' + gift.id"}],staticClass:"di",class:t.dirltr?"mr1":"ml1",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showDeleteModal(e)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],1)}))],2),t._v(" "),a("sweet-modal",{ref:"modal",attrs:{"overlay-theme":"dark",title:t.$t("people.gifts_delete_title")}},[a("form",[a("div",{staticClass:"mb4"},[t._v("\n "+t._s(t.$t("people.gifts_delete_confirmation"))+"\n ")])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDeleteModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"modal-delete-gift-button-"+t.giftToTrash.id,expression:"'modal-delete-gift-button-' + giftToTrash.id"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.trash(t.giftToTrash)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],2)}),[],!1,null,null,null).exports},6271:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(381),s=a.n(i);const n={props:{hash:{type:String,default:""},years:{type:Array,default:function(){return[]}},months:{type:Array,default:function(){return[]}},days:{type:Array,default:function(){return[]}}},data:function(){return{selectedDay:0,selectedMonth:0,selectedYear:0,newLifeEvent:{name:"",note:"",happened_at:"",life_event_type_id:0,happened_at_month_unknown:!1,happened_at_day_unknown:!1,specific_information:"",has_reminder:!1},categories:[],activeCategory:"",activeType:"",types:[],view:"categories"}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getCategories(),this.newLifeEvent.happened_at=s()().format("YYYY-MM-DD"),this.selectedYear=s()().year(),this.selectedMonth=s()().month()+1,this.selectedDay=s()().date()},displayAddScreen:function(t){this.view="add",this.activeType=t,this.newLifeEvent.life_event_type_id=t.id},getCategories:function(){var t=this;axios.get("lifeevents/categories").then((function(e){t.categories=e.data.data}))},getType:function(t){var e=this;axios.get("lifeevents/categories/"+t.id+"/types").then((function(t){e.types=t.data.data})),this.view="types",this.activeCategory=t},updateLifeEventContent:function(t){this.newLifeEvent.note=t.note,this.newLifeEvent.name=t.name,this.newLifeEvent.specific_information=t.specific_information},updateDate:function(){0==this.selectedDay?(this.newLifeEvent.happened_at_day_unknown=!0,this.newLifeEvent.happened_at=this.selectedYear+"-"+this.selectedMonth+"-01"):0==this.selectedMonth?(this.newLifeEvent.happened_at_month_unknown=!0,this.newLifeEvent.happened_at_day_unknown=!0,this.newLifeEvent.happened_at=this.selectedYear+"-01-01",this.selectedDay=0):(this.newLifeEvent.happened_at=this.selectedYear+"-"+this.selectedMonth+"-"+this.selectedDay,this.newLifeEvent.happened_at_month_unknown=!1,this.newLifeEvent.happened_at_day_unknown=!1)},store:function(){var t=this;axios.post("people/"+this.hash+"/lifeevents",this.newLifeEvent).then((function(e){t.$emit("updateLifeEventTimeline",e.data),t.$notify({group:"main",title:t.$t("people.life_event_create_success"),text:"",type:"success"})}))}}};const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("section",{staticClass:"ph3 ph0-ns life-event"},[a("notifications",{attrs:{group:"main",position:"top middle",width:"400"}}),t._v(" "),a("div",{staticClass:"mt4 mw7 center mb3"},["types"==t.view||"add"==t.view?a("ul",{staticClass:"ba b--gray-monica pa2 mb2"},[a("li",{staticClass:"di"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.view="categories"}}},[t._v("\n "+t._s(t.$t("people.life_event_create_category"))+"\n ")])]),t._v(" "),"types"==t.view?a("li",{staticClass:"di"},[t._v("\n > "+t._s(t.$t("people.life_event_category_"+t.activeCategory.default_life_event_category_key))+"\n ")]):"add"==t.view?[a("li",{staticClass:"di"},[t._v("\n > "),a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.view="types"}}},[t._v("\n "+t._s(t.$t("people.life_event_category_"+t.activeCategory.default_life_event_category_key))+"\n ")])]),t._v(" "),a("li",{staticClass:"di"},[t._v("\n > "+t._s(t.$t("people.life_event_create_life_event"))+"\n ")])]:t._e()],2):t._e(),t._v(" "),"add"!=t.view?a("ul",{staticClass:"ba b--gray-monica br2"},["categories"==t.view?t._l(t.categories,(function(e){return a("li",{key:e.id,staticClass:"relative pointer bb b--gray-monica b--gray-monica pa2 life-event-add-row",on:{click:function(a){return t.getType(e)}}},[a("div",{staticClass:"dib mr2"},[a("img",{staticStyle:{"min-width":"12px"},attrs:{src:"img/people/life-events/categories/"+e.default_life_event_category_key+".svg",alt:e.default_life_event_category_key}})]),t._v("\n "+t._s(t.$t("people.life_event_category_"+e.default_life_event_category_key))+"\n\n "),a("svg",{staticClass:"absolute life-event-add-arrow",attrs:{width:"10",height:"13",viewBox:"0 0 10 13",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M8.75071 5.66783C9.34483 6.06361 9.34483 6.93653 8.75072 7.33231L1.80442 11.9598C1.13984 12.4025 0.25 11.9261 0.25 11.1275L0.25 1.87263C0.25 1.07409 1.13984 0.59767 1.80442 1.04039L8.75071 5.66783Z",fill:"#C4C4C4"}})])])})):"types"==t.view?t._l(t.types,(function(e){return a("li",{key:e.id,staticClass:"relative pointer bb b--gray-monica b--gray-monica pa2 life-event-add-row",on:{click:function(a){return t.displayAddScreen(e)}}},[a("div",{staticClass:"dib mr2"},[a("img",{staticStyle:{"min-width":"12px"},attrs:{src:"img/people/life-events/types/"+e.default_life_event_type_key+".svg",alt:e.default_life_event_type_key}})]),t._v(" "),e.name?[t._v("\n "+t._s(e.name)+"\n ")]:[t._v("\n "+t._s(t.$t("people.life_event_sentence_"+e.default_life_event_type_key))+"\n ")],t._v(" "),a("svg",{staticClass:"absolute life-event-add-arrow",attrs:{width:"10",height:"13",viewBox:"0 0 10 13",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M8.75071 5.66783C9.34483 6.06361 9.34483 6.93653 8.75072 7.33231L1.80442 11.9598C1.13984 12.4025 0.25 11.9261 0.25 11.1275L0.25 1.87263C0.25 1.07409 1.13984 0.59767 1.80442 1.04039L8.75071 5.66783Z",fill:"#C4C4C4"}})])],2)})):t._e()],2):a("div",{staticClass:"ba b--gray-monica br2 pt4"},[a("div",{staticClass:"life-event-add-icon tc center"},[a("img",{staticStyle:{"min-width":"17px"},attrs:{src:"img/people/life-events/types/"+t.activeType.default_life_event_type_key+".svg",alt:t.activeType.default_life_event_type_key}})]),t._v(" "),a("h3",{staticClass:"pt3 ph4 f3 fw5 tc"},[t.activeType.name?[t._v("\n "+t._s(t.activeType.name)+"\n ")]:[t._v("\n "+t._s(t.$t("people.life_event_sentence_"+t.activeType.default_life_event_type_key))+"\n ")]],2),t._v(" "),a("div",{staticClass:"ph4 pv3 mb3 mb0-ns bb b--gray-monica"},[a("label",{staticClass:"mr2",attrs:{for:"year"}},[t._v("\n "+t._s(t.$t("people.life_event_date_it_happened"))+"\n ")]),t._v(" "),a("div",{staticClass:"flex mb3"},[a("div",{staticClass:"mr2"},[a("form-select",{class:[t.dirltr?"mr2":""],attrs:{id:"year",options:t.years,title:""},on:{input:t.updateDate},model:{value:t.selectedYear,callback:function(e){t.selectedYear=e},expression:"selectedYear"}})],1),t._v(" "),a("div",{staticClass:"mr2"},[a("form-select",{class:[t.dirltr?"mr2":""],attrs:{id:"month",options:t.months,title:""},on:{input:t.updateDate},model:{value:t.selectedMonth,callback:function(e){t.selectedMonth=e},expression:"selectedMonth"}})],1),t._v(" "),a("div",[a("form-select",{class:[t.dirltr?"":"mr2"],attrs:{id:"day",options:t.days,title:""},on:{input:t.updateDate},model:{value:t.selectedDay,callback:function(e){t.selectedDay=e},expression:"selectedDay"}})],1)]),t._v(" "),a("p",{staticClass:"f6"},[t._v("\n "+t._s(t.$t("people.life_event_create_date"))+"\n ")])]),t._v(" "),a("create-default-life-event",{on:{contentChange:function(e){return t.updateLifeEventContent(e)}}}),t._v(" "),a("div",{staticClass:"ph4 pv3 mb3 mb0-ns bb b--gray-monica"},[a("form-checkbox",{attrs:{name:"addReminder",dclass:[t.dirltr?"mr3":"ml3"]},model:{value:t.newLifeEvent.has_reminder,callback:function(e){t.$set(t.newLifeEvent,"has_reminder",e)},expression:"newLifeEvent.has_reminder"}},[t._v("\n "+t._s(t.$t("people.life_event_create_add_yearly_reminder"))+"\n ")])],1),t._v(" "),a("div",{staticClass:"ph4-ns ph3 pv3 bb b--gray-monica"},[a("div",{staticClass:"flex-ns justify-between"},[a("div",[a("a",{staticClass:"btn btn-secondary tc w-auto-ns w-100 mb2 pb0-ns",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.$emit("dismissModal")}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])]),t._v(" "),a("div",[a("button",{staticClass:"btn btn-primary w-auto-ns w-100 mb2 pb0-ns",on:{click:function(e){return t.store()}}},[t._v("\n "+t._s(t.$t("app.add"))+"\n ")])])])])],1)])],1)}),[],!1,null,null,null).exports},1242:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},props:{hash:{type:String,default:""},years:{type:Array,default:function(){return[]}},months:{type:Array,default:function(){return[]}},days:{type:Array,default:function(){return[]}},contactName:{type:String,default:""}},data:function(){return{lifeEvents:[],lifeEventToDelete:null,showAdd:!1}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getLifeEvents()},getLifeEvents:function(){var t=this;axios.get("people/"+this.hash+"/lifeevents").then((function(e){t.showAdd=!1,t.lifeEvents=e.data}))},updateLifeEventsList:function(t){this.getLifeEvents(),window.location.href="people/"+this.hash+"#lifeEvent"+t.id},destroy:function(t){var e=this;axios.delete("lifeevents/"+t.id).then((function(t){e.closeDeleteModal(),e.getLifeEvents(),e.$notify({group:"main",title:e.$t("people.life_event_delete_success"),text:"",type:"success"})}))},showDeleteModal:function(t){this.$refs.deleteLifeEventModal.open(),this.lifeEventToDelete=t},closeDeleteModal:function(){this.$refs.deleteLifeEventModal.close()}}};a(5460);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),0===t.lifeEvents.length?a("section",{staticClass:"ph3 ph0-ns"},[a("div",{staticClass:"mt4 mw7 center mb3"},[a("div",{staticClass:"tc mb4"},[a("svg",{staticClass:"center",attrs:{width:"337",height:"249",viewBox:"0 0 337 249",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{opacity:"0.1",d:"M192.191 206.296C218.596 206.296 240.002 202.875 240.002 198.656C240.002 194.436 218.596 191.016 192.191 191.016C165.786 191.016 144.38 194.436 144.38 198.656C144.38 202.875 165.786 206.296 192.191 206.296Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M110.408 246.328C136.814 246.328 158.219 244.638 158.219 242.554C158.219 240.469 136.814 238.779 110.408 238.779C84.0029 238.779 62.5972 240.469 62.5972 242.554C62.5972 244.638 84.0029 246.328 110.408 246.328Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M279.186 243.203C284.969 243.203 289.656 242.509 289.656 241.653C289.656 240.797 284.969 240.103 279.186 240.103C273.403 240.103 268.715 240.797 268.715 241.653C268.715 242.509 273.403 243.203 279.186 243.203Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M259.571 228.398C263.79 228.398 267.21 228.05 267.21 227.621C267.21 227.192 263.79 226.844 259.571 226.844C255.353 226.844 251.933 227.192 251.933 227.621C251.933 228.05 255.353 228.398 259.571 228.398Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M215.189 221.999C219.018 221.999 222.122 221.652 222.122 221.223C222.122 220.794 219.018 220.446 215.189 220.446C211.36 220.446 208.256 220.794 208.256 221.223C208.256 221.652 211.36 221.999 215.189 221.999Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M281.315 213.274C285.144 213.274 288.248 212.927 288.248 212.498C288.248 212.069 285.144 211.721 281.315 211.721C277.486 211.721 274.382 212.069 274.382 212.498C274.382 212.927 277.486 213.274 281.315 213.274Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M202.297 242.883C208.08 242.883 212.768 242.189 212.768 241.333C212.768 240.476 208.08 239.782 202.297 239.782C196.514 239.782 191.827 240.476 191.827 241.333C191.827 242.189 196.514 242.883 202.297 242.883Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M60.8239 190.444C94.4161 190.444 121.648 188.754 121.648 186.67C121.648 184.585 94.4161 182.895 60.8239 182.895C27.2318 182.895 0 184.585 0 186.67C0 188.754 27.2318 190.444 60.8239 190.444Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M243.422 189.492C257.391 189.492 268.715 187.802 268.715 185.718C268.715 183.633 257.391 181.943 243.422 181.943C229.453 181.943 218.129 183.633 218.129 185.718C218.129 187.802 229.453 189.492 243.422 189.492Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M4.86133 117.576C10.0966 137.864 21.1794 155.402 38.6946 163.903C75.0943 181.568 157.185 172.456 218.452 161.996C250.138 156.59 277.995 141.669 298.23 120.646L4.86133 117.576Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M326.143 22.0765H292.527C290.929 22.0765 289.623 20.8918 289.623 19.4411C289.623 17.9905 290.929 16.8088 292.527 16.8088H298.338C296.74 16.8088 295.431 15.621 295.431 14.1734C295.431 12.7257 296.74 11.541 298.338 11.541H294.186C292.59 11.541 291.282 10.3533 291.282 8.90566C291.282 7.45802 292.59 6.27028 294.186 6.27028H311.746C307.853 4.62922 303.302 3.46264 298.061 2.85215C250.204 -2.73292 233.123 0.966283 227.098 4.75615C219.587 9.53328 211.245 12.8491 202.508 14.53C172.99 20.0486 117.787 26.6914 67.7538 12.4145C42.8862 5.31224 24.4029 17.3135 13.3262 37.375H331.982C331.562 31.5421 330.32 26.1595 328.031 21.4479C327.489 21.8628 326.825 22.0841 326.143 22.0765V22.0765Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M2.00848 75.2404C0.716855 87.0398 1.15679 98.9651 3.31429 110.637L298.456 120.426C306.581 111.98 313.484 102.435 318.963 92.0681L2.00848 75.2404ZM118.741 100.479H112.932C114.531 100.479 115.837 101.664 115.837 103.114C115.837 104.565 114.531 105.747 112.932 105.747H79.3163C77.718 105.747 76.4122 104.562 76.4122 103.114C76.4122 101.667 77.718 100.479 79.3163 100.479H85.1276C83.5293 100.479 82.2204 99.2943 82.2204 97.8436C82.2204 96.3929 83.5293 95.2113 85.1276 95.2113H80.975C79.3796 95.2113 78.0708 94.0265 78.0708 92.5759C78.0708 91.1252 79.3796 89.9435 80.975 89.9435H114.591C116.189 89.9435 117.498 91.1282 117.498 92.5759C117.498 94.0235 116.189 95.2113 114.591 95.2113H118.741C120.336 95.2113 121.645 96.396 121.645 97.8436C121.645 99.2913 120.339 100.479 118.741 100.479Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M331.994 37.5443L9.76791 44.6525C5.84748 53.7826 3.23889 64.1156 2.05371 74.8233H326.349C328.459 68.5615 330.025 62.1284 331.029 55.596C331.994 49.2977 332.383 43.2049 331.994 37.5443ZM67.4736 60.8305H61.6653C63.2637 60.8305 64.5695 62.0152 64.5695 63.4658C64.5695 64.9165 63.2637 66.0982 61.6653 66.0982H28.0492C26.4508 66.0982 25.145 64.9135 25.145 63.4658C25.145 62.0182 26.4508 60.8305 28.0492 60.8305H33.8604C32.2621 60.8305 30.9533 59.6458 30.9533 58.1981C30.9533 56.7505 32.2621 55.5627 33.8604 55.5627H29.7078C28.1125 55.5627 26.8037 54.378 26.8037 52.9274C26.8037 51.4767 28.1125 50.295 29.7078 50.295H63.324C64.9223 50.295 66.2311 51.4797 66.2311 52.9274C66.2311 54.375 64.9223 55.5627 63.324 55.5627H67.4736C69.0689 55.5627 70.3777 56.7474 70.3777 58.1981C70.3777 59.6488 69.0719 60.8305 67.4736 60.8305Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M96.4336 183.832L97.6369 186.404V167.291H96.4336V183.832Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{d:"M18.7247 183.832L17.5244 186.404V167.291H18.7247V183.832Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M96.4336 183.832L97.6369 186.404V167.291H96.4336V183.832Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M18.7247 183.832L17.5244 186.404V167.291H18.7247V183.832Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M26.9212 132.188H23.5889V155.683H26.9212V132.188Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{d:"M93.9818 132.188H90.6494V155.683H93.9818V132.188Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M26.9212 132.188H23.5889V134.926H26.9212V132.188Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M93.9818 132.188H90.6494V134.926H93.9818V132.188Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M98.7284 131.203H18.4531V134.709H98.7284V131.203Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M26.9212 136.187H23.5889V139.692H26.9212V136.187Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M93.9818 136.187H90.6494V139.692H93.9818V136.187Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M98.7284 135.966H18.4531V139.472H98.7284V135.966Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M26.9212 140.95H23.5889V144.455H26.9212V140.95Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M93.9818 140.95H90.6494V144.455H93.9818V140.95Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M98.7284 140.732H18.4531V144.238H98.7284V140.732Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M26.9212 145.716H23.5889V149.221H26.9212V145.716Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M93.9818 145.716H90.6494V149.221H93.9818V145.716Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M98.7284 145.495H18.4531V149.001H98.7284V145.495Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M26.9212 150.479H23.5889V153.984H26.9212V150.479Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M93.9818 150.479H90.6494V153.984H93.9818V150.479Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M98.7284 150.261H18.4531V153.767H98.7284V150.261Z",fill:"#DDA2A6"}}),t._v(" "),a("g",{attrs:{opacity:"0.1"}},[a("path",{attrs:{opacity:"0.1",d:"M25.2569 133.657C25.5234 133.657 25.7394 133.44 25.7394 133.173C25.7394 132.906 25.5234 132.69 25.2569 132.69C24.9904 132.69 24.7744 132.906 24.7744 133.173C24.7744 133.44 24.9904 133.657 25.2569 133.657Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M25.2569 138.42C25.5234 138.42 25.7394 138.203 25.7394 137.936C25.7394 137.669 25.5234 137.453 25.2569 137.453C24.9904 137.453 24.7744 137.669 24.7744 137.936C24.7744 138.203 24.9904 138.42 25.2569 138.42Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M25.2569 143.186C25.5234 143.186 25.7394 142.97 25.7394 142.702C25.7394 142.435 25.5234 142.219 25.2569 142.219C24.9904 142.219 24.7744 142.435 24.7744 142.702C24.7744 142.97 24.9904 143.186 25.2569 143.186Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M25.2569 147.952C25.5234 147.952 25.7394 147.736 25.7394 147.468C25.7394 147.201 25.5234 146.985 25.2569 146.985C24.9904 146.985 24.7744 147.201 24.7744 147.468C24.7744 147.736 24.9904 147.952 25.2569 147.952Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M25.2569 152.715C25.5234 152.715 25.7394 152.499 25.7394 152.232C25.7394 151.964 25.5234 151.748 25.2569 151.748C24.9904 151.748 24.7744 151.964 24.7744 152.232C24.7744 152.499 24.9904 152.715 25.2569 152.715Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M92.3175 133.657C92.584 133.657 92.8 133.44 92.8 133.173C92.8 132.906 92.584 132.69 92.3175 132.69C92.051 132.69 91.835 132.906 91.835 133.173C91.835 133.44 92.051 133.657 92.3175 133.657Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M92.3175 138.42C92.584 138.42 92.8 138.203 92.8 137.936C92.8 137.669 92.584 137.453 92.3175 137.453C92.051 137.453 91.835 137.669 91.835 137.936C91.835 138.203 92.051 138.42 92.3175 138.42Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M92.3175 143.186C92.584 143.186 92.8 142.97 92.8 142.702C92.8 142.435 92.584 142.219 92.3175 142.219C92.051 142.219 91.835 142.435 91.835 142.702C91.835 142.97 92.051 143.186 92.3175 143.186Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M92.3175 147.952C92.584 147.952 92.8 147.736 92.8 147.468C92.8 147.201 92.584 146.985 92.3175 146.985C92.051 146.985 91.835 147.201 91.835 147.468C91.835 147.736 92.051 147.952 92.3175 147.952Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M92.3175 152.715C92.584 152.715 92.8 152.499 92.8 152.232C92.8 151.964 92.584 151.748 92.3175 151.748C92.051 151.748 91.835 151.964 91.835 152.232C91.835 152.499 92.051 152.715 92.3175 152.715Z",fill:"black"}})]),t._v(" "),a("path",{attrs:{d:"M25.2564 133.439C25.5229 133.439 25.739 133.223 25.739 132.956C25.739 132.689 25.5229 132.472 25.2564 132.472C24.99 132.472 24.7739 132.689 24.7739 132.956C24.7739 133.223 24.99 133.439 25.2564 133.439Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M25.2564 138.202C25.5229 138.202 25.739 137.986 25.739 137.719C25.739 137.452 25.5229 137.235 25.2564 137.235C24.99 137.235 24.7739 137.452 24.7739 137.719C24.7739 137.986 24.99 138.202 25.2564 138.202Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M25.2564 142.968C25.5229 142.968 25.739 142.752 25.739 142.485C25.739 142.218 25.5229 142.001 25.2564 142.001C24.99 142.001 24.7739 142.218 24.7739 142.485C24.7739 142.752 24.99 142.968 25.2564 142.968Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M25.2564 147.731C25.5229 147.731 25.739 147.515 25.739 147.248C25.739 146.981 25.5229 146.764 25.2564 146.764C24.99 146.764 24.7739 146.981 24.7739 147.248C24.7739 147.515 24.99 147.731 25.2564 147.731Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M25.2564 152.497C25.5229 152.497 25.739 152.281 25.739 152.014C25.739 151.747 25.5229 151.53 25.2564 151.53C24.99 151.53 24.7739 151.747 24.7739 152.014C24.7739 152.281 24.99 152.497 25.2564 152.497Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M92.3175 133.439C92.584 133.439 92.8 133.223 92.8 132.956C92.8 132.689 92.584 132.472 92.3175 132.472C92.051 132.472 91.835 132.689 91.835 132.956C91.835 133.223 92.051 133.439 92.3175 133.439Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M92.3175 138.202C92.584 138.202 92.8 137.986 92.8 137.719C92.8 137.452 92.584 137.235 92.3175 137.235C92.051 137.235 91.835 137.452 91.835 137.719C91.835 137.986 92.051 138.202 92.3175 138.202Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M92.3175 142.968C92.584 142.968 92.8 142.752 92.8 142.485C92.8 142.218 92.584 142.001 92.3175 142.001C92.051 142.001 91.835 142.218 91.835 142.485C91.835 142.752 92.051 142.968 92.3175 142.968Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M92.3175 147.731C92.584 147.731 92.8 147.515 92.8 147.248C92.8 146.981 92.584 146.764 92.3175 146.764C92.051 146.764 91.835 146.981 91.835 147.248C91.835 147.515 92.051 147.731 92.3175 147.731Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M92.3175 152.497C92.584 152.497 92.8 152.281 92.8 152.014C92.8 151.747 92.584 151.53 92.3175 151.53C92.051 151.53 91.835 151.747 91.835 152.014C91.835 152.281 92.051 152.497 92.3175 152.497Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{d:"M100.586 157.161H16.5381L18.4531 154.806H98.7284L100.586 157.161Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M100.586 157.161H16.5381L18.4531 154.806H98.7284L100.586 157.161Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M100.586 157.052H16.5381L18.4531 154.698H98.7284L100.586 157.052Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{d:"M103.539 160.83L13.3687 160.609L16.4296 157.378H100.915L103.539 160.83Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M103.539 160.83L13.3687 160.609L16.4296 157.378H100.915L103.539 160.83Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M103.539 160.721L13.3687 160.5L16.4296 157.27H100.915L103.539 160.721Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{d:"M106.379 164.169H10.145L13.0974 160.83L103.756 160.939L106.379 164.169Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{d:"M24.7713 167.291V174.191L23.5891 176.494L23.2001 168.276L23.1519 167.291H24.7713Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{d:"M92.2807 167.291L92.2324 168.276L91.8434 176.494L90.6582 174.191V167.291H92.2807Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M24.7713 167.291V174.191L23.5891 176.494L23.2001 168.276L23.1519 167.291H24.7713Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M92.2807 167.291L92.2324 168.276L91.8434 176.494L90.6582 174.191V167.291H92.2807Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M23.5893 166.744H20.5283V176.491H23.5893V166.744Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{d:"M94.9042 166.744H91.8433V176.491H94.9042V166.744Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M23.5893 167.291H24.7714V168.276H20.5283V166.744H23.5893V167.291Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M94.9043 166.744V168.276H90.6582V167.291H91.8434V166.744H94.9043Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M98.7284 165.65H16.5381V168.059H98.7284V165.65Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{d:"M17.5246 165.212H14.0264V186.407H17.5246V165.212Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{d:"M97.6341 186.404H101.132V165.209H97.6341V186.404Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M98.7284 165.65H16.5381V165.868H98.7284V165.65Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M106.379 164.169H10.145V165.647H106.379V164.169Z",fill:"#DDA2A6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M106.379 164.169H10.145V165.647H106.379V164.169Z",fill:"white"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M15.567 167.448C15.8335 167.448 16.0495 167.232 16.0495 166.965C16.0495 166.698 15.8335 166.481 15.567 166.481C15.3005 166.481 15.0845 166.698 15.0845 166.965C15.0845 167.232 15.3005 167.448 15.567 167.448Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M15.567 167.228C15.8335 167.228 16.0495 167.011 16.0495 166.744C16.0495 166.477 15.8335 166.261 15.567 166.261C15.3005 166.261 15.0845 166.477 15.0845 166.744C15.0845 167.011 15.3005 167.228 15.567 167.228Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M99.669 167.382C99.9355 167.382 100.152 167.165 100.152 166.898C100.152 166.631 99.9355 166.415 99.669 166.415C99.4026 166.415 99.1865 166.631 99.1865 166.898C99.1865 167.165 99.4026 167.382 99.669 167.382Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M99.669 167.161C99.9355 167.161 100.152 166.945 100.152 166.678C100.152 166.411 99.9355 166.194 99.669 166.194C99.4026 166.194 99.1865 166.411 99.1865 166.678C99.1865 166.945 99.4026 167.161 99.669 167.161Z",fill:"#918C9E"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M279.273 183.82C282.686 183.82 285.452 183.44 285.452 182.97C285.452 182.501 282.686 182.121 279.273 182.121C275.86 182.121 273.094 182.501 273.094 182.97C273.094 183.44 275.86 183.82 279.273 183.82Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M302.941 186.225C306.354 186.225 309.12 185.845 309.12 185.376C309.12 184.907 306.354 184.527 302.941 184.527C299.528 184.527 296.762 184.907 296.762 185.376C296.762 185.845 299.528 186.225 302.941 186.225Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M330.821 182.971C334.233 182.971 337 182.59 337 182.121C337 181.652 334.233 181.272 330.821 181.272C327.408 181.272 324.642 181.652 324.642 182.121C324.642 182.59 327.408 182.971 330.821 182.971Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M293.468 192.829C295.895 192.829 297.862 192.558 297.862 192.225C297.862 191.891 295.895 191.62 293.468 191.62C291.041 191.62 289.074 191.891 289.074 192.225C289.074 192.558 291.041 192.829 293.468 192.829Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M318.035 192.225C320.461 192.225 322.428 191.954 322.428 191.62C322.428 191.286 320.461 191.016 318.035 191.016C315.608 191.016 313.641 191.286 313.641 191.62C313.641 191.954 315.608 192.225 318.035 192.225Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M303.073 185.186C303.073 185.186 294.409 156.716 304.43 145.311C311.927 136.782 320.438 137.803 324.25 138.858C325.235 139.12 326.152 139.594 326.936 140.246C327.721 140.899 328.355 141.714 328.794 142.636C330.127 145.519 329.886 150.191 320.48 155.653C304.732 164.789 303.752 177.325 303.752 177.325L303.073 185.186Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M322.905 142.896C322.905 142.896 297.358 150.899 303.085 185.186",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M307.974 145.764C307.974 145.764 311.49 148.139 310.386 151.712",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M320.329 147.879C320.329 147.879 318.179 145.688 315.564 146.897",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M310.239 158.905C310.239 158.905 306.463 156.985 305.486 159.391",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M300.89 162.906C300.89 162.906 303.725 162.682 303.776 164.039",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M302.724 185.412C302.724 185.412 312.875 164.719 315.661 165.164C316.985 165.378 317.597 166.675 317.872 167.995C318.213 169.691 318.02 171.452 317.32 173.033C315.878 176.352 312.012 182.641 302.724 185.412Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M315.585 169.099C315.585 169.099 304.934 184.581 302.874 185.261",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M316.566 171.516H314.078",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M313.586 177.18L309.689 177.346",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M311.215 172.65L311.638 174.684",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M307.072 178.842L307.145 180.692",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M303.025 185.412C303.025 185.412 292.877 164.719 290.088 165.164C288.764 165.378 288.155 166.675 287.877 167.995C287.535 169.691 287.728 171.452 288.429 173.033C289.871 176.352 293.74 182.641 303.025 185.412Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M290.163 169.099C290.163 169.099 300.817 184.581 302.874 185.261",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M289.183 171.516H291.671",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M292.162 177.18L296.058 177.346",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M294.533 172.65L294.11 174.684",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M298.679 178.842L298.604 180.692",stroke:"#565987","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M320.453 190.245C320.729 190.019 320.93 189.715 321.029 189.372C321.073 189.199 321.058 189.017 320.985 188.855C320.912 188.693 320.786 188.56 320.628 188.48C320.257 188.338 319.859 188.595 319.56 188.855C319.261 189.115 318.915 189.414 318.523 189.356C318.725 189.173 318.876 188.94 318.962 188.681C319.047 188.421 319.064 188.144 319.011 187.876C318.994 187.764 318.946 187.659 318.872 187.573C318.667 187.353 318.296 187.446 318.049 187.619C317.265 188.172 317.045 189.239 317.042 190.2C317.004 189.846 317.004 189.489 317.042 189.136C317.057 188.958 317.029 188.78 316.96 188.616C316.89 188.452 316.782 188.308 316.644 188.196C316.458 188.097 316.251 188.049 316.041 188.054C315.866 188.029 315.688 188.04 315.518 188.089C315.348 188.137 315.19 188.221 315.054 188.335C314.753 188.655 314.834 189.193 315.094 189.544C315.384 189.874 315.729 190.151 316.113 190.363C316.405 190.537 316.655 190.774 316.843 191.058C316.864 191.098 316.882 191.139 316.897 191.182H319.105C319.593 190.931 320.047 190.616 320.453 190.245V190.245Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M281.779 181.925C282.055 181.699 282.256 181.394 282.355 181.051C282.4 180.879 282.385 180.697 282.311 180.535C282.237 180.373 282.11 180.242 281.951 180.163C281.58 180.021 281.185 180.278 280.884 180.538C280.582 180.798 280.241 181.094 279.846 181.039C280.049 180.856 280.2 180.623 280.286 180.364C280.372 180.104 280.389 179.827 280.335 179.558C280.319 179.447 280.272 179.342 280.199 179.256C279.994 179.036 279.62 179.132 279.376 179.305C278.592 179.858 278.372 180.924 278.369 181.883C278.326 181.53 278.321 181.175 278.354 180.822C278.369 180.644 278.34 180.466 278.271 180.302C278.202 180.138 278.093 179.994 277.956 179.882C277.771 179.781 277.563 179.732 277.352 179.74C277.178 179.714 277 179.725 276.83 179.773C276.66 179.821 276.502 179.905 276.366 180.018C276.238 180.195 276.173 180.41 276.18 180.629C276.187 180.848 276.266 181.058 276.405 181.227C276.696 181.556 277.04 181.832 277.425 182.043C277.717 182.218 277.966 182.457 278.155 182.741C278.176 182.78 278.193 182.822 278.206 182.865H280.416C280.911 182.615 281.37 182.299 281.779 181.925V181.925Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M294.668 190.245C294.944 190.019 295.144 189.714 295.244 189.372C295.289 189.199 295.274 189.016 295.2 188.854C295.127 188.692 295 188.56 294.84 188.48C294.469 188.338 294.074 188.595 293.773 188.855C293.471 189.115 293.13 189.414 292.735 189.356C292.938 189.173 293.09 188.941 293.175 188.681C293.261 188.421 293.278 188.144 293.224 187.876C293.21 187.764 293.162 187.658 293.088 187.573C292.883 187.353 292.509 187.446 292.265 187.619C291.481 188.172 291.261 189.239 291.258 190.2C291.22 189.846 291.22 189.489 291.258 189.136C291.272 188.959 291.244 188.78 291.174 188.617C291.105 188.453 290.997 188.309 290.86 188.196C290.674 188.098 290.466 188.049 290.256 188.054C290.082 188.029 289.903 188.04 289.733 188.089C289.563 188.137 289.406 188.221 289.27 188.335C288.969 188.655 289.05 189.193 289.309 189.544C289.6 189.874 289.944 190.151 290.329 190.363C290.621 190.537 290.871 190.774 291.059 191.058C291.08 191.097 291.095 191.14 291.113 191.182H293.32C293.809 190.931 294.263 190.616 294.668 190.245V190.245Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M331.222 173.399C331.222 173.399 332.052 174.484 330.839 176.119C329.627 177.754 328.632 179.141 329.03 180.16C329.03 180.16 330.855 177.119 332.347 177.077C333.84 177.035 332.857 175.228 331.222 173.399Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M331.222 173.399C331.294 173.503 331.351 173.617 331.391 173.738C332.841 175.445 333.613 177.038 332.22 177.08C330.92 177.116 329.364 179.444 328.99 180.03C329.002 180.075 329.017 180.12 329.035 180.163C329.035 180.163 330.86 177.122 332.353 177.08C333.846 177.038 332.856 175.228 331.222 173.399Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M332.76 174.78C332.76 175.164 332.718 175.472 332.667 175.472C332.616 175.472 332.57 175.17 332.57 174.78C332.57 174.39 332.625 174.578 332.676 174.578C332.727 174.578 332.76 174.399 332.76 174.78Z",fill:"#FFD037"}}),t._v(" "),a("path",{attrs:{d:"M333.288 175.237C332.956 175.421 332.663 175.539 332.636 175.484C332.609 175.43 332.862 175.252 333.197 175.07C333.532 174.889 333.399 175.019 333.426 175.07C333.454 175.122 333.622 175.055 333.288 175.237Z",fill:"#FFD037"}}),t._v(" "),a("path",{attrs:{d:"M326.849 173.399C326.849 173.399 326.02 174.484 327.232 176.119C328.444 177.754 329.439 179.141 329.041 180.16C329.041 180.16 327.232 177.119 325.724 177.077C324.216 177.035 325.214 175.228 326.849 173.399Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M326.849 173.399C326.777 173.503 326.72 173.617 326.68 173.738C325.23 175.445 324.458 177.038 325.851 177.08C327.151 177.116 328.707 179.444 329.081 180.03C329.069 180.075 329.054 180.12 329.036 180.163C329.036 180.163 327.226 177.122 325.718 177.08C324.211 177.038 325.215 175.228 326.849 173.399Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M325.317 174.78C325.317 175.164 325.36 175.472 325.411 175.472C325.462 175.472 325.507 175.17 325.507 174.78C325.507 174.39 325.453 174.578 325.402 174.578C325.351 174.578 325.317 174.399 325.317 174.78Z",fill:"#FFD037"}}),t._v(" "),a("path",{attrs:{d:"M324.781 175.237C325.115 175.421 325.408 175.539 325.432 175.484C325.456 175.43 325.209 175.252 324.874 175.07C324.539 174.889 324.672 175.019 324.645 175.07C324.618 175.122 324.446 175.055 324.781 175.237Z",fill:"#FFD037"}}),t._v(" "),a("path",{attrs:{d:"M325.573 180.021C325.573 180.021 327.889 179.951 328.589 179.453C329.289 178.954 332.151 178.362 332.322 179.15C332.494 179.939 335.8 183.122 333.188 183.143C330.576 183.164 327.114 182.735 326.418 182.309C325.721 181.883 325.573 180.021 325.573 180.021Z",fill:"#A8A8A8"}}),t._v(" "),a("path",{attrs:{opacity:"0.2",d:"M333.23 182.874C330.619 182.895 327.16 182.466 326.463 182.04C325.932 181.716 325.721 180.556 325.652 180.018H325.573C325.573 180.018 325.721 181.889 326.415 182.315C327.108 182.741 330.57 183.17 333.185 183.149C333.939 183.149 334.198 182.874 334.186 182.475C334.081 182.717 333.794 182.868 333.23 182.874Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M28.951 159.917C29.1017 160.521 32.2924 160.824 34.0777 160.92C33.6766 161.244 33.3358 161.631 33.562 162.302C33.9993 163.598 33.7218 168.044 33.7218 168.044C33.7218 168.044 38.2002 167.497 40.1031 165.717L41.7617 166.064C41.1295 167.094 40.575 168.17 40.1031 169.283C38.8515 172.172 37.8202 174.393 37.3889 175.3L37.2985 175.487L36.8853 175.312C36.8853 175.312 35.7333 177.709 35.3624 178.455C35.0065 179.095 34.6033 179.707 34.1561 180.287L33.3207 181.964C33.3207 181.964 32.5125 183.626 32.4733 184.581C32.4341 185.536 34.4486 185.748 36.3304 186.165C38.2122 186.582 37.4161 184.451 37.3226 183.638C37.2291 182.825 38.6103 180.483 38.6103 180.483C38.6103 180.483 39.4185 179.477 39.3914 179.057C39.3642 178.637 39.9945 177.787 39.9945 177.787C39.9945 177.787 40.7876 176.908 40.4559 176.896C40.3824 176.888 40.3104 176.869 40.2418 176.841L40.3835 176.678C41.3335 175.575 43.8275 172.749 44.7835 172.169C45.9716 171.462 48.0374 169.065 47.8203 168.497C47.6031 167.929 50.1454 164.354 50.1454 164.354C50.701 163.876 51.1783 163.314 51.5598 162.688L51.6171 162.577C51.792 163.148 52.0212 163.55 52.2926 163.541C52.6545 163.541 52.9711 163.105 53.2455 162.504L53.339 162.598C54.2437 163.504 55.9687 165.221 56.2402 165.375C56.6111 165.584 57.1931 166.554 57.938 167.548C58.3673 168.169 58.7532 168.82 59.093 169.494C59.093 169.797 59.093 170.123 59.093 170.422C59.1383 171.767 61.1407 173.463 61.1407 173.463C61.1407 173.463 61.8765 175.759 62.552 175.938C63.2276 176.116 64.28 177.902 65.7517 177.567C66.0533 177.497 66.3156 177.144 66.5267 176.618L66.7439 176.841L67.0032 177.116L66.8042 177.195C66.8042 177.195 68.6347 179.985 68.7131 180.396C68.8846 180.916 69.0974 181.421 69.3495 181.907C69.8156 182.553 70.2281 183.236 70.5829 183.95C70.8995 184.717 72.4918 186.346 72.4918 186.346C72.4918 186.346 74.9949 185.796 76.2464 184.814C77.4979 183.832 76.5269 182.967 75.6101 182.614C74.6933 182.26 74.1806 180.924 74.1806 180.924C73.8336 180.508 73.5142 180.069 73.2247 179.61C73.1855 179.435 72.4104 179.277 72.3712 179.042C72.332 178.806 71.3187 177.077 71.3187 177.077C71.3187 177.077 70.0853 175.506 69.9164 175.623L69.844 175.427L69.7777 175.303C69.5334 174.832 68.6046 173.055 67.3651 170.873C67.3839 170.497 67.3555 170.12 67.2807 169.751C67.0213 169.083 66.6233 164.329 66.7047 163.544C66.7861 162.758 65.0159 160.972 64.0418 160.561C63.315 160.258 62.932 158.354 62.7842 157.381H62.8657C63.502 157.381 68.9484 157.134 69.1474 156.336C69.3464 155.538 63.5533 155.344 63.1552 155.329C63.0406 154.958 62.6968 153.933 62.2505 153.661C61.7137 153.326 61.4935 152.068 61.4935 152.068C61.4935 152.068 61.1166 151.107 61.3156 150.536C61.5146 149.965 60.5194 148.925 60.5194 148.925C60.5115 148.522 60.5256 148.118 60.5617 147.716C60.619 147.027 60.0249 146.931 60.0249 146.87C60.0045 146.504 60.0045 146.136 60.0249 145.77C60.0641 145.438 59.3886 145.063 59.467 144.691C59.507 144.05 59.507 143.407 59.467 142.766C59.3431 142.614 59.2523 142.437 59.2003 142.248C59.1484 142.058 59.1365 141.86 59.1654 141.666C59.2257 140.919 58.5291 140.233 58.5291 140.233L58.4115 138.118L57.5067 135.213C56.602 132.306 57.169 133.424 55.9175 132.11C55.3596 131.523 54.4458 131.233 53.6074 131.091C53.6074 130.919 53.5773 130.75 53.5562 130.583C53.3963 129.414 53.143 128.147 53.71 127.108C54.0477 126.485 54.672 125.962 54.6871 125.255C54.6909 125.051 54.6454 124.849 54.5544 124.666C54.2196 123.789 53.0284 123.185 52.8716 122.215L52.9168 122.308V122.248C52.9215 122.083 52.8895 121.919 52.8233 121.767C52.8127 121.731 52.7975 121.697 52.7781 121.665C52.714 121.577 52.6317 121.505 52.5369 121.453C52.3831 121.356 52.178 121.236 51.9548 121.124C52.1143 120.914 52.2105 120.664 52.2323 120.401C52.235 120.307 52.2238 120.212 52.1991 120.12C52.1291 119.846 51.9887 119.595 51.792 119.392C51.6075 119.186 51.384 119.018 51.1345 118.899C51.1647 118.927 51.1918 118.957 51.219 118.984C51.0892 118.917 50.9499 118.87 50.8058 118.845C50.5533 118.821 50.2993 118.815 50.0459 118.827C49.6255 118.794 49.21 118.716 48.8064 118.594C47.2986 118.222 45.6339 118.077 44.2828 118.818C43.2032 119.422 42.4734 120.474 41.9155 121.556C41.6653 121.971 41.5136 122.439 41.4722 122.922C41.4992 123.356 41.5792 123.786 41.7104 124.2C41.7314 124.287 41.7314 124.377 41.7104 124.463C41.6501 124.681 41.3817 124.744 41.1736 124.835C40.7954 125.019 40.5049 125.344 40.3654 125.742C40.2336 126.132 40.1545 126.539 40.1302 126.951C40.084 127.212 40.1005 127.48 40.1785 127.733C40.3504 128.169 40.8449 128.377 41.2732 128.58C41.7592 128.787 42.1922 129.102 42.5398 129.501C41.614 130.199 40.742 130.966 39.9312 131.795C38.7249 132.134 37.407 132.602 37.0994 133.049C36.4963 133.914 36.1947 133.521 36.1042 136.546C36.0138 139.571 35.6669 140.671 35.6669 140.671V144.903C35.6669 144.903 36.1042 147.692 35.6669 148.439C35.2297 149.185 35.3081 152.289 35.3081 152.289C35.3081 152.289 35.9112 155.233 34.9522 156.175C33.9932 157.118 33.957 158.895 33.957 158.895L34.0385 158.926C32.3436 159.044 28.8002 159.313 28.951 159.917ZM39.1411 155.027C39.4999 154.12 40.2146 151.609 40.2146 151.609C40.2146 151.609 40.6127 149.723 40.2146 149.369C39.8166 149.016 40.7726 146.462 40.7726 146.462C41.0539 146.978 41.1777 147.566 41.1284 148.151C41.05 149.134 41.1284 151.255 41.1284 151.255C41.1284 151.255 40.48 153.298 40.5856 154.278C40.6911 155.257 39.0204 156.318 39.2617 156.71C39.4411 157.066 39.5738 157.442 39.6567 157.832C39.6567 157.832 39.3944 157.832 39.0536 157.859C39.0053 156.771 38.936 155.55 39.1411 155.027Z",fill:"url(#paint0_linear)"}}),t._v(" "),a("path",{attrs:{d:"M62.8412 155.773C62.8412 155.773 68.8726 155.979 68.6766 156.768C68.4806 157.557 63.191 157.798 62.5728 157.798C61.9546 157.798 61.0649 156.665 61.0649 156.665L62.8412 155.773Z",fill:"#EFB7B9"}}),t._v(" "),a("path",{attrs:{d:"M55.6249 156.23H59.1021V153.017H55.6249V156.23Z",fill:"#67647E"}}),t._v(" "),a("path",{attrs:{opacity:"0.12",d:"M55.6249 156.23H59.1021V153.017H55.6249V156.23Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M60.9505 156.354L64.1502 162.824L60.094 164.142L56.822 161.328L55.2749 158.324L52.1416 158.581L48.8002 160.249L46.0981 161.903L44.4636 164.967L42.1204 166.294L37.0962 165.218L36.3604 161.794L40.4617 159.044L41.9485 156.786L47.9709 155.91L49.7139 153.301L55.7423 154.761L60.9505 156.354Z",fill:"#67647E"}}),t._v(" "),a("path",{attrs:{opacity:"0.12",d:"M60.9505 156.414L64.2165 163.465L60.094 164.203L56.822 161.389L55.2749 158.385L52.1416 158.642L48.8002 160.31L46.0981 161.96L44.4636 165.028L42.1204 166.354L37.0962 165.278L36.3604 161.854L40.4617 159.101L41.9485 156.846L47.9709 155.97L49.7139 153.362L55.7423 154.822L60.9505 156.414Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M52.5578 122.387C52.6508 122.438 52.7311 122.509 52.7931 122.596C52.8568 122.745 52.8877 122.907 52.8835 123.07C53.0072 124.237 54.6387 124.862 54.6146 126.035C54.5995 126.73 53.9903 127.244 53.6616 127.848C53.1127 128.876 53.36 130.121 53.5138 131.275C53.6314 132.149 53.6314 133.176 52.962 133.751C52.6577 133.944 52.3637 134.152 52.0814 134.376C51.5687 134.908 51.6803 135.785 51.3455 136.44C51.3126 136.512 51.2654 136.576 51.2068 136.628C51.1483 136.674 51.0819 136.709 51.0108 136.73C50.68 136.818 50.3311 136.807 50.0062 136.7C49.6814 136.593 49.3945 136.393 49.1802 136.126C48.7649 135.576 48.5423 134.903 48.5469 134.213C48.5531 133.529 48.6044 132.847 48.7007 132.17C48.8244 130.858 48.7822 129.538 48.8877 128.241C48.8992 127.824 48.9925 127.413 49.1621 127.032C49.2617 126.836 49.3974 126.66 49.4939 126.461C49.6106 126.186 49.6858 125.894 49.717 125.597L50.0789 123.288C50.1513 122.828 50.2146 121.997 50.7484 121.819C51.2822 121.641 52.1266 122.115 52.5578 122.387Z",fill:"#E3787D"}}),t._v(" "),a("path",{attrs:{d:"M52.5578 122.387C52.6508 122.438 52.7311 122.509 52.7931 122.596C52.8568 122.745 52.8877 122.907 52.8835 123.07C53.0072 124.237 54.6387 124.862 54.6146 126.035C54.5995 126.73 53.9903 127.244 53.6616 127.848C53.1127 128.876 53.36 130.121 53.5138 131.275C53.6314 132.149 53.6314 133.176 52.962 133.751C52.6577 133.944 52.3637 134.152 52.0814 134.376C51.5687 134.908 51.6803 135.785 51.3455 136.44C51.3126 136.512 51.2654 136.576 51.2068 136.628C51.1483 136.674 51.0819 136.709 51.0108 136.73C50.68 136.818 50.3311 136.807 50.0062 136.7C49.6814 136.593 49.3945 136.393 49.1802 136.126C48.7649 135.576 48.5423 134.903 48.5469 134.213C48.5531 133.529 48.6044 132.847 48.7007 132.17C48.8244 130.858 48.7822 129.538 48.8877 128.241C48.8992 127.824 48.9925 127.413 49.1621 127.032C49.2617 126.836 49.3974 126.66 49.4939 126.461C49.6106 126.186 49.6858 125.894 49.717 125.597L50.0789 123.288C50.1513 122.828 50.2146 121.997 50.7484 121.819C51.2822 121.641 52.1266 122.115 52.5578 122.387Z",fill:"#E3787D"}}),t._v(" "),a("g",{attrs:{opacity:"0.1"}},[a("path",{attrs:{opacity:"0.1",d:"M52.772 122.707C52.772 122.674 52.772 122.644 52.772 122.611C52.7984 122.636 52.8217 122.664 52.8413 122.695C52.9083 122.845 52.9393 123.009 52.9318 123.173V123.23C52.8467 123.067 52.7925 122.89 52.772 122.707V122.707Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M49.0774 135.763C49.2907 136.031 49.577 136.231 49.9015 136.338C50.226 136.445 50.5747 136.456 50.905 136.368C50.9769 136.347 51.0444 136.313 51.104 136.268C51.1601 136.214 51.206 136.151 51.2397 136.081C51.5775 135.422 51.4659 134.548 51.9755 134.014C52.2585 133.791 52.5524 133.584 52.8561 133.391C53.5256 132.814 53.5256 131.789 53.408 130.913C53.2542 129.761 53.0069 128.513 53.5588 127.489C53.8875 126.884 54.4937 126.358 54.5087 125.66C54.5148 125.596 54.5148 125.531 54.5087 125.467C54.6199 125.668 54.6771 125.895 54.6746 126.126C54.6595 126.824 54.0534 127.334 53.7247 127.954C53.1728 128.979 53.4231 130.224 53.5739 131.378C53.6915 132.255 53.6915 133.279 53.022 133.853C52.7506 134.089 52.3917 134.219 52.1414 134.479C51.6318 135.014 51.7433 135.887 51.4056 136.543C51.3731 136.615 51.3271 136.68 51.2699 136.734C51.2105 136.777 51.1442 136.811 51.0738 136.833C50.7431 136.922 50.3939 136.912 50.0688 136.804C49.7437 136.697 49.4568 136.497 49.2433 136.229C48.9919 135.916 48.8146 135.55 48.7246 135.159C48.8127 135.376 48.9315 135.58 49.0774 135.763V135.763Z",fill:"black"}})]),t._v(" "),a("path",{attrs:{d:"M35.4588 159.303C35.4588 159.303 29.4274 159.509 29.6264 160.298C29.8254 161.087 35.112 161.328 35.7302 161.328C36.3484 161.328 37.2381 160.192 37.2381 160.192L35.4588 159.303Z",fill:"#EFB7B9"}}),t._v(" "),a("path",{attrs:{d:"M51.6833 131.756C51.6833 131.756 54.6357 131.584 55.851 132.88C57.0664 134.177 56.5296 133.074 57.3981 135.939L58.2666 138.804L58.3812 140.874C58.3812 140.874 59.0597 141.551 58.9994 142.288C58.9724 142.48 58.9852 142.675 59.0371 142.861C59.089 143.047 59.1789 143.221 59.301 143.37C59.3395 144.002 59.3395 144.636 59.301 145.268C59.2226 145.637 59.88 146.006 59.8408 146.332C59.8205 146.694 59.8205 147.056 59.8408 147.417C59.8408 147.475 60.4198 147.571 60.3625 148.251C60.3277 148.653 60.3146 149.057 60.3233 149.46C60.3233 149.46 61.2884 150.485 61.0954 151.047C60.9024 151.609 61.2703 152.558 61.2703 152.558C61.2703 152.558 61.4814 153.797 62.0031 154.123C62.5248 154.45 62.9078 155.907 62.9078 155.907C62.9078 155.907 62.4253 157.164 62.4253 157.221C62.4253 157.279 62.7751 160.512 63.719 160.92C64.6629 161.328 66.3849 163.087 66.3095 163.861C66.2341 164.635 66.6111 169.322 66.8674 169.978C67.1238 170.634 66.8312 177.355 65.4018 177.685C63.9723 178.014 62.947 176.252 62.2896 176.077C61.6322 175.902 60.9204 173.638 60.9204 173.638C60.9204 173.638 58.9693 171.973 58.9482 170.637C58.9271 169.301 58.8728 167.615 58.8728 167.615C58.8728 167.615 61.1496 163.743 61.6141 163.45C62.0785 163.157 63.3722 161.516 62.368 160.101C61.6945 159.1 61.1437 158.022 60.7274 156.889L59.6448 155.922L58.7401 152.455L57.0784 147.036L55.5133 141.711L54.1803 136.117L50.67 133.666C50.67 133.666 50.0428 132.058 51.6833 131.756Z",fill:"#67647E"}}),t._v(" "),a("path",{attrs:{d:"M52.7808 162.362L53.3357 162.93C54.2223 163.837 55.89 165.514 56.1553 165.665C56.5142 165.871 57.0812 166.826 57.8019 167.808C58.5227 168.79 59.5028 170.906 59.5028 170.906C59.5028 170.906 61.9154 174.312 63.3388 174.674C64.3008 174.919 65.6156 176.186 66.3545 176.971C66.7103 177.349 66.9365 177.618 66.9365 177.618L69.723 176.533L69.3612 175.578L69.2978 175.454C69.0324 174.931 67.9287 172.795 66.4781 170.286C65.2647 168.296 63.8499 166.437 62.2561 164.737C62.2561 164.737 60.0396 162.697 59.9642 161.767C59.9373 161.251 59.9443 160.734 59.9853 160.219C60.0275 159.551 60.0909 158.98 60.0909 158.98L56.7193 156.786L54.1408 157.865L52.7808 162.362Z",fill:"#EFB7B9"}}),t._v(" "),a("path",{attrs:{d:"M37.6357 175.88L40.38 177.237C40.38 177.237 40.5157 177.071 40.7449 176.802C41.6708 175.714 44.0924 172.916 45.0182 172.356C46.1732 171.661 48.1817 169.298 47.9706 168.73C47.7595 168.162 50.2294 164.644 50.2294 164.644C50.7721 164.174 51.2364 163.62 51.6045 163.003C51.8541 162.611 51.9497 162.14 51.8729 161.682C51.5442 160.385 50.4616 157.539 50.4616 157.539L49.9037 156.608C49.8614 156.553 47.9706 155.894 47.9706 155.894L46.0978 155.701L43.7395 157.714C43.7395 157.714 43.827 158.191 43.9567 158.859C44.2432 160.325 44.7408 162.697 44.979 162.846C45.3228 163.057 43.3716 164.659 43.3716 164.659C43.3716 164.659 42.0779 165.762 40.4765 169.519C39.2703 172.366 38.257 174.557 37.8408 175.448L37.6357 175.88Z",fill:"#EFB7B9"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M54.1439 157.865L52.7808 162.362L53.3357 162.93C53.6876 161.961 53.9757 160.969 54.1981 159.962C54.557 158.491 58.2663 158.877 58.9117 158.877C59.1952 158.877 59.5933 159.527 59.9883 160.219C60.0305 159.551 60.0939 158.98 60.0939 158.98L56.7223 156.786L54.1439 157.865Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M43.7397 157.729C43.7397 157.729 43.8272 158.206 43.9569 158.874C44.236 158.237 44.6472 157.666 45.1632 157.2C46.9726 155.598 49.361 156.967 49.361 156.967C49.6053 157.058 49.7259 157.315 49.9943 157.629C50.7705 158.56 51.2253 159.718 51.2911 160.929C51.3328 161.634 51.4398 162.333 51.6108 163.018C51.8603 162.626 51.956 162.155 51.8792 161.697C51.5504 160.401 50.4678 157.554 50.4678 157.554L49.9099 156.623C49.8677 156.568 47.9768 155.91 47.9768 155.91L46.1041 155.716L43.7397 157.729Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M40.9356 159.56C40.9627 160.207 43.3482 161.214 43.3482 161.214C43.3482 161.214 43.3482 158.494 45.1576 156.901C46.967 155.308 49.3555 156.668 49.3555 156.668C49.5997 156.759 49.7204 157.016 49.9888 157.333C50.7658 158.264 51.2208 159.422 51.2855 160.633C51.37 162.005 51.7439 163.888 52.3169 163.87C53.2216 163.846 53.8247 161.135 54.1987 159.663C54.5726 158.191 58.2669 158.581 58.9122 158.581C59.5576 158.581 60.791 161.936 61.2555 161.522C61.7199 161.108 60.7398 157.877 60.7398 157.877L57.6185 154.114L56.952 153.313L43.2758 154.054L42.6033 155.103C42.2866 155.598 41.976 156.091 41.9639 156.127C41.9519 156.163 40.9084 158.902 40.9356 159.56Z",fill:"#444053"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M54.7716 155.435C54.7505 155.462 52.2595 158.173 52.1449 158.581C52.0416 159.038 51.9631 159.5 51.9097 159.965C51.8894 159.553 51.8421 159.142 51.7679 158.735C51.6805 158.463 52.0695 157.829 52.3258 157.632C52.6412 157.422 52.9246 157.168 53.1672 156.877C53.2336 156.713 53.5532 155.027 53.5532 155.027L54.5967 154.794L54.7716 155.435Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M50.0488 155.163C50.0488 155.163 51.6502 157.004 51.611 157.279C51.5718 157.554 50.0488 155.163 50.0488 155.163Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M41.8613 133.451L43.713 136.035L48.8065 137.066C48.8065 137.066 53.9664 135.775 50.4621 134.434C50.1311 134.318 49.8359 134.118 49.6057 133.853C48.9875 133.113 49.2167 131.992 49.7293 130.901C50.3552 129.681 51.1346 128.546 52.0484 127.525C52.0484 127.525 44.8107 124.312 45.6219 127.67C45.7659 128.252 45.7513 128.863 45.5797 129.438C45.1485 130.949 43.7703 132.158 42.8294 132.832C42.5199 133.058 42.1966 133.265 41.8613 133.451Z",fill:"#EFB7B9"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M41.8613 133.451L43.713 136.035L48.8065 137.066C48.8065 137.066 53.9664 135.775 50.4621 134.434C50.1311 134.318 49.8359 134.118 49.6057 133.853C48.7764 134.222 47.9139 134.512 47.4766 134.382C47.4766 134.382 44.6117 133.542 42.8294 132.835C42.5198 133.06 42.1965 133.266 41.8613 133.451V133.451Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M42.5815 155.239C43.2896 155.021 44.0096 154.845 44.7378 154.71C45.4585 154.583 46.1521 154.531 46.4447 154.71C47.1654 155.172 48.9176 156.221 49.5358 156.221C49.7081 156.225 49.8778 156.179 50.024 156.087C50.1703 155.996 50.2868 155.864 50.3591 155.707C51.4034 155.593 52.4571 155.593 53.5014 155.707C54.3277 155.843 56.2729 154.855 57.4792 154.196L57.6179 154.117L56.9514 153.316L43.2752 154.057L42.6027 155.106L42.5815 155.239Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M43.0948 151.47L42.5821 154.927C43.2907 154.712 44.0105 154.535 44.7384 154.398C45.4591 154.271 46.1527 154.223 46.4453 154.398C47.166 154.864 48.9181 155.91 49.5364 155.91C49.7089 155.913 49.8787 155.866 50.0249 155.774C50.1712 155.682 50.2875 155.55 50.3597 155.393C51.404 155.278 52.4577 155.278 53.502 155.393C54.3283 155.532 56.2735 154.543 57.4798 153.882C58.0829 153.546 58.4991 153.277 58.4991 153.277L57.727 150.539L55.3567 148.009L54.9948 144.343L54.4309 140.112L53.5533 137.531L51.964 133.76L51.6836 133.092C51.6836 133.092 51.382 133.276 50.9176 133.518C50.7095 133.63 50.4682 133.754 50.2089 133.881C49.2288 134.364 48.0225 134.857 47.4766 134.69C47.4766 134.69 44.9284 133.944 43.1461 133.267C42.3228 132.965 41.6623 132.663 41.4904 132.454C41.4693 132.43 41.4547 132.401 41.4482 132.369C41.4482 132.318 41.4482 132.369 41.4271 132.469C41.3155 133.609 40.9355 142.334 40.9355 142.334L43.0948 151.47Z",fill:"#A36468"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M40.9355 142.334L43.0978 151.473L42.5851 154.93C43.2937 154.715 44.0135 154.538 44.7414 154.401C44.865 152.984 45.0037 150.593 44.6328 149.796C44.09 148.632 43.7824 144.96 43.7824 144.96L43.1461 133.267L43.0827 132.137C42.5431 132.191 42.0099 132.298 41.4904 132.454L41.4271 132.469C41.3155 133.609 40.9355 142.334 40.9355 142.334Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M36.5986 159.796C37.9467 160.204 39.7621 160.648 39.9551 160.168C40.0878 159.835 40.0788 159.092 40.0516 158.279C39.3942 158.324 38.4081 158.457 38.2422 158.814C38.0763 159.171 37.1867 159.43 36.5986 159.796Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M42.4645 132.137C42.3499 132.058 38.14 132.989 37.558 133.841C36.9759 134.694 36.6713 134.304 36.5929 137.287C36.5145 140.27 36.1677 141.351 36.1677 141.351V145.531C36.1677 145.531 36.5929 148.281 36.1677 149.016C35.7425 149.75 35.8088 152.812 35.8088 152.812C35.8088 152.812 36.3879 155.716 35.462 156.644C34.5362 157.572 34.494 159.316 34.494 159.316C34.494 159.316 39.0176 160.942 39.3191 160.168C39.6207 159.394 39.1623 156.372 39.5121 155.483C39.862 154.595 40.5556 152.114 40.5556 152.114C40.5556 152.114 40.9416 150.255 40.5556 149.907C40.1696 149.56 41.0954 147.042 41.0954 147.042C41.3692 147.552 41.4896 148.131 41.4422 148.708C41.3668 149.675 41.4422 151.766 41.4422 151.766C41.4422 151.766 40.8119 153.779 40.9144 154.746C41.017 155.713 39.4066 156.762 39.6267 157.149C39.8018 157.498 39.9315 157.869 40.0127 158.252C40.0127 158.252 37.8505 158.27 37.6183 158.814C37.3861 159.358 35.6098 159.618 35.456 160.376C35.3022 161.135 33.6767 161.368 34.1019 162.646C34.5272 163.924 34.2588 168.298 34.2588 168.298C34.2588 168.298 42.0604 167.331 41.21 163.764C40.3596 160.198 36.3426 161.791 36.3426 161.791C36.3426 161.791 39.5513 159.893 41.406 160.126C43.2607 160.358 43.9935 155.48 43.9935 155.48C43.9935 155.48 44.5333 150.947 43.9935 149.79C43.4537 148.632 43.1431 144.954 43.1431 144.954L42.4645 132.137Z",fill:"#67647E"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M38.9122 157.445C38.9122 157.445 38.7192 157.076 37.347 157.309C35.9749 157.542 35.2812 157.233 35.2812 157.233C35.2812 157.233 38.0617 158.484 38.9122 157.445Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M39.2978 139.629C39.3159 139.686 38.2936 141.197 39.0656 142.415C39.8377 143.633 40.477 145.592 40.6097 145.957C40.7424 146.323 40.9324 146.888 40.9324 146.888",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.05",d:"M42.9285 130.278C42.9285 130.278 39.3096 132.998 39.3096 134.286C39.456 134.424 39.6291 134.532 39.8184 134.602C40.0076 134.671 40.2091 134.702 40.4104 134.691C41.1643 134.691 42.5214 134.325 42.6721 133.482C42.8229 132.638 43.405 133.482 43.0763 133.926C42.7475 134.37 42.5545 134.603 42.5545 134.603C42.5545 134.603 39.1257 135.543 38.4682 135.987C37.8108 136.431 38.7366 136.954 38.7366 136.954C38.7366 136.954 39.7017 138.695 39.6414 138.985C39.581 139.275 42.0177 143.071 42.0177 143.071C42.0177 143.071 42.829 147.175 42.7898 147.949C42.7506 148.723 42.6933 150.367 42.6933 150.367L44.2494 152.482C44.2494 152.482 44.6263 145.903 44.376 145.011C44.1257 144.12 43.4472 138.526 43.4472 138.526C43.4472 138.526 42.6752 135.12 42.9828 134.733C43.2904 134.346 43.4019 133.143 43.4019 133.143L42.9285 130.278Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M43.239 130.124C43.239 130.124 39.6201 132.844 39.6201 134.131C39.7662 134.271 39.9392 134.379 40.1286 134.448C40.3179 134.518 40.5195 134.548 40.7208 134.536C41.4748 134.536 42.8318 134.168 42.9796 133.328C43.1274 132.487 43.7154 133.328 43.3867 133.772C43.058 134.216 42.865 134.449 42.865 134.449C42.865 134.449 39.4271 135.383 38.7757 135.833C38.1243 136.283 39.0471 136.803 39.0471 136.803C39.0471 136.803 40.0121 138.544 39.9518 138.834C39.8915 139.124 42.3282 142.92 42.3282 142.92C42.3282 142.92 43.1394 147.024 43.1002 147.798C43.061 148.572 43.0037 150.216 43.0037 150.216L44.2492 152.331C44.2492 152.331 44.9338 145.749 44.6835 144.86C44.4332 143.972 43.7607 138.405 43.7607 138.405C43.7607 138.405 42.9856 134.996 43.2963 134.609C43.6069 134.222 43.7154 133.022 43.7154 133.022L43.239 130.124Z",fill:"#67647E"}}),t._v(" "),a("path",{attrs:{opacity:"0.12",d:"M43.239 130.124C43.239 130.124 39.6201 132.844 39.6201 134.131C39.7662 134.271 39.9392 134.379 40.1286 134.448C40.3179 134.518 40.5195 134.548 40.7208 134.536C41.4748 134.536 42.8318 134.168 42.9796 133.328C43.1274 132.487 43.7154 133.328 43.3867 133.772C43.058 134.216 42.865 134.449 42.865 134.449C42.865 134.449 39.4271 135.383 38.7757 135.833C38.1243 136.283 39.0471 136.803 39.0471 136.803C39.0471 136.803 40.0121 138.544 39.9518 138.834C39.8915 139.124 42.3282 142.92 42.3282 142.92C42.3282 142.92 43.1394 147.024 43.1002 147.798C43.061 148.572 43.0037 150.216 43.0037 150.216L44.2492 152.331C44.2492 152.331 44.9338 145.749 44.6835 144.86C44.4332 143.972 43.7607 138.405 43.7607 138.405C43.7607 138.405 42.9856 134.996 43.2963 134.609C43.6069 134.222 43.7154 133.022 43.7154 133.022L43.239 130.124Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M50.0759 133.337C50.0996 133.522 50.1441 133.705 50.2086 133.881C50.3503 134.31 50.5735 134.89 50.7544 135.485C51.0289 136.392 51.8733 138.06 52.3769 139.629C52.8805 141.197 53.6314 144.543 53.6314 144.543C53.6314 144.543 53.4776 147.623 54.4999 148.396C55.5223 149.17 56.6833 152.023 56.6833 152.023C56.6833 152.023 57.0482 152.969 57.4795 153.873C58.0826 153.537 58.4988 153.268 58.4988 153.268L57.7268 150.53L55.3564 148L54.9945 144.334L54.4306 140.103L53.553 137.522L51.9637 133.751C51.5385 133.72 51.255 133.693 51.255 133.693C51.255 133.693 51.1073 133.609 50.9173 133.509C50.5675 133.334 50.0638 133.11 50.0759 133.337Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.05",d:"M51.8734 133.871C51.8734 133.871 55.4561 134.174 56.2583 134.083C57.0605 133.992 56.7227 135.809 56.7227 135.809C56.7227 135.809 57.3409 139.505 57.2052 139.892C57.0695 140.279 56.3367 143.183 56.78 143.881C57.2233 144.579 58.5894 148.197 58.5894 148.197C58.5894 148.197 59.0327 149.805 59.4188 151.409C59.8048 153.014 60.7155 156.094 60.9447 156.366C61.1739 156.638 63.1522 160.204 62.929 160.763C62.7059 161.322 59.66 156.058 59.0478 155.592C58.4356 155.127 57.2957 152.183 57.2957 152.183C57.2957 152.183 56.1346 149.339 55.1123 148.556C54.09 147.774 54.2438 144.703 54.2438 144.703C54.2438 144.703 53.4899 141.355 52.9862 139.786C52.4826 138.217 51.6412 136.561 51.3638 135.643C51.0863 134.724 50.7094 133.829 50.6883 133.494C50.6672 133.158 51.8734 133.871 51.8734 133.871Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M51.5626 133.705C51.5626 133.705 55.1482 134.008 55.9474 133.917C56.7466 133.826 56.4118 135.64 56.4118 135.64C56.4118 135.64 57.0301 139.339 56.8943 139.726C56.7586 140.112 56.0258 143.017 56.4691 143.712C56.9124 144.407 58.2786 148.031 58.2786 148.031C58.2786 148.031 58.7249 149.635 59.1109 151.243C59.4969 152.851 60.4046 155.928 60.6368 156.2C60.8691 156.472 62.8443 160.038 62.6182 160.597C62.392 161.156 59.3522 155.888 58.74 155.426C58.1278 154.964 56.9909 152.005 56.9909 152.005C56.9909 152.005 55.8328 149.161 54.8075 148.378C53.7821 147.595 53.9389 144.528 53.9389 144.528C53.9389 144.528 53.185 141.179 52.6844 139.611C52.1838 138.042 51.3394 136.386 51.062 135.467C50.7845 134.548 50.4045 133.654 50.3864 133.318C50.3683 132.983 51.5626 133.705 51.5626 133.705Z",fill:"#67647E"}}),t._v(" "),a("path",{attrs:{opacity:"0.12",d:"M51.5626 133.705C51.5626 133.705 55.1482 134.008 55.9474 133.917C56.7466 133.826 56.4118 135.64 56.4118 135.64C56.4118 135.64 57.0301 139.339 56.8943 139.726C56.7586 140.112 56.0258 143.017 56.4691 143.712C56.9124 144.407 58.2786 148.031 58.2786 148.031C58.2786 148.031 58.7249 149.635 59.1109 151.243C59.4969 152.851 60.4046 155.928 60.6368 156.2C60.8691 156.472 62.8443 160.038 62.6182 160.597C62.392 161.156 59.3522 155.888 58.74 155.426C58.1278 154.964 56.9909 152.005 56.9909 152.005C56.9909 152.005 55.8328 149.161 54.8075 148.378C53.7821 147.595 53.9389 144.528 53.9389 144.528C53.9389 144.528 53.185 141.179 52.6844 139.611C52.1838 138.042 51.3394 136.386 51.062 135.467C50.7845 134.548 50.4045 133.654 50.3864 133.318C50.3683 132.983 51.5626 133.705 51.5626 133.705Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M52.9561 143.258C52.9561 143.258 52.5128 145.486 53.2577 146.541C54.0026 147.595 53.1672 143.733 52.9561 143.258Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M45.0337 150.624C45.0337 150.624 47.0814 150.992 47.7478 152.074C48.4143 153.156 45.0337 150.624 45.0337 150.624Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M45.0337 152.83C45.0337 152.83 47.6423 153.664 47.1447 153.954C46.6471 154.244 45.483 153.721 45.1543 153.818C44.8256 153.915 45.0337 152.83 45.0337 152.83Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M66.3608 176.971C66.7167 177.349 66.9429 177.618 66.9429 177.618L69.7294 176.533L69.3675 175.578L69.3042 175.454H69.2861C69.1202 175.569 67.8868 176.361 67.8868 176.361L66.3608 176.971Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M68.0402 176.681C68.0402 176.681 69.2736 175.886 69.4395 175.775C69.6053 175.663 70.8026 177.21 70.8026 177.21C71.1772 177.837 71.5194 178.482 71.8279 179.144C71.8641 179.377 72.618 179.531 72.6573 179.706C72.9378 180.159 73.2481 180.592 73.5861 181.003C73.5861 181.003 74.0867 182.321 74.9763 182.668C75.866 183.016 76.8099 183.877 75.5946 184.835C74.3792 185.793 71.9425 186.346 71.9425 186.346C71.9425 186.346 70.3985 184.738 70.0879 183.986C69.7424 183.282 69.3389 182.607 68.8816 181.97C68.6357 181.491 68.4289 180.993 68.2634 180.48C68.1849 180.075 66.4087 177.325 66.4087 177.325L68.0402 176.681Z",fill:"#444053"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M37.6357 175.88L40.38 177.237C40.38 177.237 40.5157 177.071 40.7449 176.802C40.2906 176.605 39.8494 176.379 39.4241 176.125L37.8408 175.442L37.6357 175.88Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M39.2704 176.288C39.2704 176.288 40.4948 177.011 40.8175 177.023C41.1401 177.035 40.3651 177.899 40.3651 177.899C40.3651 177.899 39.762 178.739 39.7861 179.153C39.8102 179.567 39.0261 180.559 39.0261 180.559C39.0261 180.559 37.6871 182.868 37.7776 183.669C37.8681 184.47 38.6401 186.573 36.8126 186.159C34.9851 185.745 33.0249 185.555 33.0641 184.599C33.1033 183.644 33.8873 182.019 33.8873 182.019L34.6986 180.365C35.1332 179.79 35.5252 179.184 35.8717 178.552C36.2336 177.818 37.3524 175.454 37.3524 175.454L39.2704 176.288Z",fill:"#444053"}}),t._v(" "),a("path",{attrs:{d:"M50.3416 134.573C48.6076 133.908 48.9785 132.209 49.7958 130.665C50.6755 130.331 51.4322 129.735 51.9641 128.957C52.4828 129.181 52.9563 129.81 52.7602 130.329C52.68 130.489 52.5786 130.638 52.4587 130.771C52.0673 131.325 51.878 131.997 51.9225 132.674C51.967 133.352 52.2425 133.993 52.7029 134.491C52.8507 134.642 53.0286 134.793 53.0256 135.017C53.0256 135.277 52.7542 135.449 52.5069 135.54C52.1879 135.655 51.8534 135.721 51.5147 135.736C51.6655 135.383 51.3971 134.978 50.3416 134.573Z",fill:"#E3787D"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M39.3098 158.288C39.3098 158.288 37.4552 158.361 36.8369 158.775C36.4615 159.028 36.1647 159.382 35.9805 159.796",fill:"black"}}),t._v(" "),a("g",{attrs:{opacity:"0.1"}},[a("path",{attrs:{opacity:"0.1",d:"M52.4975 130.804C52.2064 131.217 52.0259 131.699 51.9731 132.202C51.9204 132.705 51.997 133.213 52.1959 133.678C51.9173 133.188 51.7839 132.628 51.8111 132.064C51.8383 131.501 52.0252 130.957 52.3497 130.496C52.4716 130.365 52.5733 130.216 52.6513 130.054C52.7131 129.886 52.7131 129.7 52.6513 129.532C52.7428 129.647 52.805 129.783 52.8323 129.928C52.8596 130.073 52.8513 130.222 52.8081 130.363C52.7258 130.524 52.6212 130.672 52.4975 130.804V130.804Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M51.5596 135.449C51.8436 135.423 52.1232 135.361 52.3919 135.265C52.6362 135.174 52.9076 135.002 52.9106 134.742C52.9123 134.728 52.9123 134.714 52.9106 134.7C53.0053 134.793 53.0622 134.918 53.0704 135.05C53.0704 135.313 52.799 135.485 52.5517 135.573C52.2328 135.689 51.8984 135.756 51.5596 135.773C51.5987 135.668 51.5987 135.553 51.5596 135.449V135.449Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M50.2143 134.298C51.0436 134.6 51.3874 134.932 51.4206 135.228C51.1202 134.943 50.7579 134.731 50.3621 134.609C50.1098 134.53 49.8782 134.396 49.6841 134.216C49.4901 134.036 49.3384 133.815 49.2402 133.569C49.4771 133.912 49.8191 134.168 50.2143 134.298V134.298Z",fill:"black"}})]),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M45.5798 129.441C46.201 130.586 48.2306 131.13 48.2939 131.13C48.7796 131.13 49.2621 131.053 49.7234 130.901C50.3512 129.68 51.1326 128.546 52.0485 127.525C52.0485 127.525 44.8108 124.312 45.622 127.67C45.7666 128.253 45.752 128.865 45.5798 129.441V129.441Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M43.7124 126.225C43.7126 127.381 44.1473 128.494 44.9297 129.342C45.7122 130.191 46.7851 130.713 47.9344 130.804C48.055 130.804 48.1787 130.804 48.3023 130.804C49.2088 130.803 50.0947 130.533 50.8482 130.028C51.6016 129.523 52.1886 128.805 52.5351 127.966C52.8816 127.127 52.972 126.203 52.7947 125.312C52.6175 124.421 52.1807 123.603 51.5395 122.961C50.8983 122.319 50.0816 121.881 49.1925 121.704C48.3034 121.527 47.3818 121.619 46.5444 121.966C45.707 122.314 44.9913 122.903 44.4877 123.658C43.9842 124.414 43.7154 125.302 43.7154 126.21L43.7124 126.225Z",fill:"#EFB7B9"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M43.7127 126.225C43.7129 127.381 44.1476 128.494 44.9301 129.342C45.7126 130.191 46.7854 130.713 47.9347 130.804C48.6247 130.198 49.1805 129.453 49.5662 128.619C49.7726 128.278 49.8772 127.884 49.8678 127.486C49.8286 127.141 49.6326 126.83 49.5662 126.488C49.4697 125.929 49.7532 125.376 50.0427 124.886C50.2803 124.4 50.5848 123.949 50.9474 123.548C51.1495 123.357 51.3395 123.17 51.5234 122.97C50.8813 122.33 50.0642 121.894 49.1753 121.718C48.2864 121.543 47.3655 121.635 46.5287 121.983C45.6919 122.331 44.9768 122.92 44.4735 123.675C43.9702 124.43 43.7013 125.317 43.7007 126.225H43.7127Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M51.7708 122.36C52.0384 122.085 52.2107 121.731 52.2624 121.35C52.249 120.994 52.1001 120.655 51.8462 120.404C51.5962 120.108 51.2563 119.901 50.8782 119.815C50.6325 119.793 50.3857 119.788 50.1393 119.8C49.7302 119.767 49.3258 119.69 48.9331 119.57C47.4735 119.205 45.851 119.06 44.5331 119.791C43.4837 120.371 42.784 121.423 42.2321 122.49C41.9885 122.901 41.8401 123.361 41.7979 123.838C41.8261 124.265 41.904 124.688 42.0301 125.098C42.0512 125.182 42.0512 125.271 42.0301 125.355C41.9698 125.569 41.7074 125.633 41.5054 125.721C41.1346 125.907 40.8527 126.233 40.7213 126.627C40.5922 127.018 40.5162 127.425 40.4951 127.836C40.4479 128.093 40.4634 128.357 40.5403 128.607C40.7092 129.039 41.1857 129.241 41.6049 129.444C42.0788 129.648 42.4997 129.958 42.8353 130.351C43.0008 130.549 43.1174 130.784 43.1756 131.036C43.2337 131.288 43.2318 131.55 43.17 131.801C43.0911 132.017 42.9706 132.214 42.8153 132.383C42.6601 132.551 42.4732 132.687 42.2653 132.783C41.8521 132.974 41.4163 133.111 40.9686 133.192C40.7742 133.221 40.5882 133.291 40.4227 133.397C40.0277 133.684 40.0397 134.325 40.3413 134.709C40.6756 135.072 41.1344 135.295 41.626 135.334C42.7001 135.48 43.7915 135.249 44.7141 134.678C45.281 134.334 45.8027 133.826 45.9204 133.167C45.9988 132.762 45.9204 132.324 46.0862 131.958C46.3034 131.472 46.8552 131.251 47.3106 130.97C48.2455 130.399 48.8878 129.459 49.3794 128.474C49.5872 128.132 49.692 127.737 49.681 127.337C49.6418 126.993 49.4427 126.685 49.3794 126.343C49.2799 125.781 49.5633 125.228 49.8559 124.738C50.0951 124.254 50.3995 123.804 50.7606 123.403C51.1234 123.081 51.4611 122.733 51.7708 122.36V122.36Z",fill:"#E3787D"}}),t._v(" "),a("g",{attrs:{opacity:"0.1"}},[a("path",{attrs:{opacity:"0.1",d:"M41.1408 129.075C41.4275 129.208 41.6986 129.372 41.949 129.565C41.8374 129.498 41.7198 129.441 41.6052 129.384C41.3131 129.265 41.0398 129.104 40.7939 128.906L41.1408 129.075Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M41.1738 134.969C42.2449 135.112 43.3325 134.88 44.2528 134.313C44.8198 133.968 45.3415 133.46 45.4591 132.802C45.5375 132.397 45.4591 131.958 45.625 131.593C45.8421 131.106 46.394 130.886 46.8494 130.608C47.7812 130.033 48.4236 129.096 48.9181 128.108C49.1247 127.766 49.2294 127.372 49.2197 126.972C49.1805 126.627 48.9815 126.319 48.9181 125.977C48.8216 125.415 49.1051 124.865 49.3976 124.373C49.6358 123.887 49.9403 123.438 50.3024 123.037C50.651 122.718 50.9746 122.372 51.2704 122.003C51.538 121.728 51.7103 121.374 51.762 120.994C51.7479 120.637 51.5978 120.3 51.3428 120.051C51.2883 119.989 51.2299 119.93 51.1679 119.876C51.412 119.991 51.6296 120.156 51.8072 120.359C52.0611 120.61 52.2099 120.948 52.2234 121.305C52.1742 121.685 52.0027 122.038 51.7348 122.312C51.439 122.68 51.1154 123.026 50.7668 123.345C50.4048 123.747 50.1003 124.198 49.8621 124.684C49.5605 125.174 49.2891 125.727 49.3856 126.289C49.4459 126.63 49.6419 126.939 49.6872 127.283C49.698 127.683 49.5933 128.078 49.3856 128.419C48.891 129.396 48.2487 130.345 47.3168 130.916C46.8614 131.194 46.3096 131.414 46.0924 131.904C45.9235 132.279 46.002 132.717 45.9266 133.113C45.8029 133.766 45.2782 134.273 44.7203 134.624C43.7968 135.192 42.7062 135.424 41.6322 135.28C41.1971 135.237 40.7862 135.059 40.4561 134.772C40.6854 134.87 40.9268 134.936 41.1738 134.969V134.969Z",fill:"black"}})]),t._v(" "),a("path",{attrs:{d:"M56.21 185.488C56.1648 186.132 56.0411 187.165 56.0411 187.165C56.0411 187.165 55.5224 187.229 54.7263 187.301L54.1835 187.347C53.7673 187.38 53.2999 187.413 52.8083 187.443C51.9036 187.492 50.8963 187.522 49.9524 187.501C49.482 187.501 49.0236 187.465 48.6014 187.422C48.4114 187.404 48.2274 187.383 48.0525 187.356C46.9729 187.196 46.2039 186.887 46.1315 186.343C46.0976 186.114 46.0895 185.882 46.1074 185.651C46.2069 184.442 47.1991 184.675 47.1991 184.675C47.1357 184.34 47.377 183.291 47.573 182.532C47.6936 182.055 47.7992 181.692 47.7992 181.692L54.7776 181.224H54.8077C54.854 181.224 54.8999 181.233 54.9424 181.251C54.985 181.27 55.0234 181.296 55.0553 181.33C55.0872 181.364 55.1119 181.403 55.1279 181.447C55.144 181.491 55.1509 181.537 55.1485 181.583C55.1093 182.423 55.049 184.343 55.3928 184.385C55.5741 184.408 55.7464 184.477 55.8933 184.586C56.0401 184.695 56.1565 184.84 56.2311 185.007C56.2379 185.168 56.2308 185.329 56.21 185.488Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{d:"M50.2836 176.282C50.2836 176.282 47.6539 179.459 46.3873 178.579L46.2999 178.516C45.4464 177.866 45.2233 176.826 45.163 176.297C45.1388 176.068 45.1026 175.841 45.0604 175.611C44.9466 174.833 45.0253 174.038 45.2896 173.296C45.3096 173.233 45.3327 173.17 45.359 173.109C46.2396 172.858 50.2836 176.282 50.2836 176.282Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{d:"M48.8723 176.575C48.8723 176.575 48.043 177.162 46.8729 178.114C46.6928 178.263 46.5012 178.397 46.2999 178.516C45.4464 177.866 45.2233 176.826 45.163 176.297C45.1388 176.068 45.1026 175.841 45.0604 175.611C44.9466 174.833 45.0253 174.038 45.2896 173.296V173.296C46.9272 173.411 48.8723 176.575 48.8723 176.575Z",fill:"#EEC5CD"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M47.9712 176.264C47.9712 176.264 47.5278 176.566 46.9036 177.086C46.8095 177.166 46.7085 177.236 46.602 177.298C46.4285 177.151 46.2859 176.97 46.1823 176.768C46.0788 176.565 46.0164 176.343 45.9989 176.116C45.9838 175.992 45.9627 175.871 45.9416 175.75C45.8806 175.334 45.9231 174.91 46.0652 174.514C46.9307 174.575 47.9712 176.264 47.9712 176.264Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M51.9907 176.282C51.9907 176.282 54.6204 179.459 55.887 178.579L55.9745 178.516C56.3009 178.24 56.5693 177.902 56.7639 177.521C56.9586 177.14 57.0757 176.724 57.1084 176.297C57.1355 176.068 57.1717 175.841 57.2139 175.611C57.3287 174.832 57.2489 174.037 56.9817 173.296V173.296C56.9395 173.175 56.9094 173.109 56.9094 173.109C56.0348 172.858 51.9907 176.282 51.9907 176.282Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{d:"M53.4023 176.575C53.4023 176.575 54.2317 177.162 55.4018 178.114C55.5818 178.263 55.7734 178.397 55.9747 178.516C56.3012 178.24 56.5695 177.902 56.7642 177.521C56.9589 177.14 57.076 176.724 57.1087 176.297C57.1358 176.068 57.172 175.841 57.2142 175.611C57.329 174.832 57.2492 174.037 56.982 173.296V173.296C55.3475 173.411 53.4023 176.575 53.4023 176.575Z",fill:"#EEC5CD"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M54.3096 176.261C54.3096 176.261 54.7499 176.563 55.3711 177.077C55.4657 177.157 55.5666 177.228 55.6727 177.292C55.8463 177.145 55.9891 176.966 56.0927 176.763C56.1963 176.561 56.2585 176.34 56.2758 176.113C56.2758 175.992 56.309 175.871 56.3331 175.75C56.3939 175.336 56.3514 174.914 56.2095 174.52V174.52C55.3409 174.581 54.3096 176.261 54.3096 176.261Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M54.7778 181.224C54.4989 181.695 54.1593 182.128 53.7675 182.511C52.7211 183.436 48.2156 183.07 47.9231 183.022C47.8597 183.022 47.7331 182.828 47.5732 182.532C47.6939 182.055 47.7994 181.692 47.7994 181.692L54.7778 181.224Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M51.2073 176.016C51.0233 176.016 50.8394 176.035 50.6554 176.016C49.7145 176.016 46.545 176.044 46.1922 177.325C45.779 178.836 47.6306 182.886 47.9232 182.934C48.2157 182.983 52.7212 183.348 53.7676 182.42C54.8141 181.493 56.1802 178.588 56.1078 178.319C56.1078 178.334 57.4076 175.578 51.2073 176.016Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M51.1075 178.467C50.408 178.387 49.7011 178.531 49.0884 178.879C48.4756 179.226 47.9884 179.759 47.6967 180.402C47.4788 180.846 47.383 181.341 47.419 181.835C47.4551 182.329 47.6217 182.804 47.9018 183.212C48.2637 183.723 48.8065 184.119 49.5363 183.799C51.1889 183.116 51.1075 178.467 51.1075 178.467Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M51.0346 178.322C50.3354 178.242 49.6289 178.386 49.0161 178.733C48.4034 179.08 47.916 179.612 47.6238 180.254C47.4051 180.698 47.3087 181.194 47.3448 181.688C47.3808 182.183 47.548 182.659 47.8289 183.067C48.1908 183.578 48.7336 183.956 49.4604 183.651C51.104 182.971 51.0346 178.322 51.0346 178.322Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M51.0346 178.395C50.3354 178.315 49.6289 178.458 49.0161 178.805C48.4034 179.152 47.916 179.684 47.6238 180.326C47.4051 180.771 47.3087 181.266 47.3448 181.761C47.3808 182.255 47.548 182.732 47.8289 183.14C48.1908 183.651 48.7336 184.046 49.4604 183.723C51.104 183.043 51.0346 178.395 51.0346 178.395Z",fill:"#EEC5CD"}}),t._v(" "),a("path",{attrs:{d:"M48.5288 180.414C48.5288 180.414 48.2121 180.716 48.3358 180.779C48.4594 180.843 48.5288 180.414 48.5288 180.414Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{d:"M48.8728 180.773C48.8728 180.773 48.6979 181.154 48.8216 181.196C48.9452 181.239 49.0176 180.921 49.0176 180.921L48.8728 180.773Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{d:"M48.1068 181.351C48.1068 181.351 47.9379 181.801 48.1068 181.801C48.2757 181.801 48.1068 181.351 48.1068 181.351Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{d:"M47.8955 182.559C47.9922 182.8 48.1592 183.005 48.3744 183.149C48.5897 183.292 48.8433 183.367 49.1018 183.363",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M48.6885 182.813C48.782 182.908 48.9044 182.97 49.0364 182.988C49.1684 183.006 49.3027 182.98 49.4183 182.913",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M51.3999 178.467C52.1006 178.387 52.8088 178.532 53.4216 178.882C54.0343 179.232 54.5199 179.768 54.8076 180.414C55.0265 180.858 55.1228 181.353 55.0868 181.847C55.0507 182.341 54.8836 182.817 54.6026 183.224C54.2407 183.735 53.6979 184.131 52.9711 183.811C51.3275 183.116 51.3999 178.467 51.3999 178.467Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M51.4722 178.322C52.1713 178.243 52.8777 178.386 53.4903 178.733C54.1029 179.08 54.5903 179.612 54.8829 180.254C55.1001 180.699 55.1956 181.194 55.1596 181.688C55.1236 182.182 54.9573 182.658 54.6779 183.067C54.316 183.578 53.7731 183.956 53.0433 183.651C51.3998 182.971 51.4722 178.322 51.4722 178.322Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M51.4722 178.395C52.1713 178.315 52.8777 178.459 53.4903 178.806C54.1029 179.153 54.5903 179.685 54.8829 180.326C55.1001 180.771 55.1956 181.266 55.1596 181.761C55.1236 182.255 54.9573 182.731 54.6779 183.14C54.316 183.651 53.7731 184.046 53.0433 183.723C51.3998 183.043 51.4722 178.395 51.4722 178.395Z",fill:"#EEC5CD"}}),t._v(" "),a("path",{attrs:{d:"M53.9751 180.414C53.9751 180.414 54.2767 180.716 54.1711 180.779C54.0656 180.843 53.9751 180.414 53.9751 180.414Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{d:"M53.6341 180.773C53.6341 180.773 53.806 181.154 53.6824 181.196C53.5587 181.239 53.4863 180.921 53.4863 180.921L53.6341 180.773Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{d:"M54.4003 181.351C54.4003 181.351 54.5691 181.801 54.4003 181.801C54.2314 181.801 54.4003 181.351 54.4003 181.351Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{d:"M54.6086 182.559C54.5113 182.802 54.3421 183.01 54.1238 183.153C53.9054 183.297 53.6484 183.37 53.3872 183.363",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M53.8188 182.813C53.725 182.909 53.6021 182.971 53.4694 182.989C53.3367 183.007 53.2018 182.98 53.0859 182.913",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M50.1509 185.026C50.927 184.724 51.7874 184.724 52.5635 185.026H50.1509Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M48.0525 187.365C46.9729 187.205 46.2039 186.896 46.1315 186.352C46.0976 186.123 46.0895 185.891 46.1074 185.66C46.2372 185.59 46.3763 185.539 46.5205 185.509C46.7166 185.455 46.9578 185.491 47.4705 185.636C47.9832 185.781 47.947 186.389 48.0555 187.174C48.0653 187.238 48.0643 187.302 48.0525 187.365Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M46.4481 185.573C46.4481 185.573 45.0398 185.833 45.8028 187.047C45.863 187.146 45.9543 187.221 46.0621 187.262C46.1496 187.295 46.237 187.295 46.228 187.165L46.8492 187.882C46.8492 187.882 48.0917 188.027 47.9831 187.241C47.8746 186.455 47.9077 185.848 47.3981 185.703C46.8884 185.558 46.6442 185.518 46.4481 185.573Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{d:"M46.7832 186.392C46.7832 186.392 47.0848 187.075 47.4949 186.5",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M46.0981 186.661C46.0981 186.661 46.2519 187.304 46.837 186.824",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M56.2097 185.488C56.1645 186.132 56.0408 187.165 56.0408 187.165C56.0408 187.165 55.5221 187.229 54.726 187.301C54.7215 187.256 54.7215 187.211 54.726 187.165C54.8376 186.38 54.8014 185.775 55.311 185.627C55.597 185.516 55.9036 185.468 56.2097 185.488V185.488Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M56.3395 185.573C56.3395 185.573 57.7448 185.833 56.9848 187.047C56.9245 187.146 56.8333 187.221 56.7255 187.262C56.635 187.295 56.5475 187.295 56.5566 187.165L55.9353 187.882C55.9353 187.882 54.6929 188.027 54.8045 187.241C54.916 186.455 54.8768 185.848 55.3895 185.703C55.9022 185.558 56.1434 185.518 56.3395 185.573Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{d:"M56.0136 186.392C56.0136 186.392 55.712 187.075 55.2988 186.5",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M56.6891 186.661C56.6891 186.661 56.5323 187.304 55.9473 186.824",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M49.9525 187.501C49.482 187.501 49.0237 187.465 48.6015 187.422L48.1793 186.002C48.1556 185.918 48.1435 185.832 48.1431 185.745C48.1431 185.504 48.2384 185.274 48.4081 185.104C48.5777 184.934 48.8078 184.838 49.0478 184.838C49.2877 184.838 49.5178 184.934 49.6875 185.104C49.8572 185.274 49.9525 185.504 49.9525 185.745C49.9495 186.292 49.9555 186.993 49.9525 187.501Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M48.1068 186.002L48.6044 187.679C48.6044 187.679 47.757 187.661 48.0013 188.193C48.0013 188.193 48.2124 188.392 48.3028 188.32C48.3028 188.32 48.1912 188.667 48.6315 188.667C48.6315 188.667 49.105 188.924 49.289 188.74C49.4729 188.556 49.8559 188.284 49.8921 188.175C49.9283 188.066 49.8921 186.7 49.8921 185.736C49.8921 185.495 49.7968 185.265 49.6271 185.095C49.4575 184.925 49.2273 184.829 48.9874 184.829C48.8446 184.827 48.7032 184.858 48.5748 184.921C48.4464 184.984 48.3347 185.076 48.2488 185.191C48.1629 185.305 48.1052 185.438 48.0806 185.579C48.0559 185.72 48.0649 185.865 48.1068 186.002V186.002Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{d:"M48.7763 188.111C48.7763 188.111 48.4084 188.468 48.6044 188.667",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M48.6162 187.891C48.5235 187.921 48.4418 187.977 48.3811 188.054C48.3205 188.13 48.2837 188.223 48.2754 188.32",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M54.6201 185.745C54.6201 185.832 54.6069 185.919 54.5809 186.002L54.1828 187.347C53.7666 187.38 53.2992 187.413 52.8076 187.443C52.8076 186.939 52.8076 186.271 52.8076 185.736C52.8076 185.495 52.9029 185.265 53.0726 185.095C53.2423 184.925 53.4724 184.829 53.7123 184.829C53.9523 184.829 54.1824 184.925 54.3521 185.095C54.5217 185.265 54.617 185.495 54.617 185.736L54.6201 185.745Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M54.6537 186.002L54.1592 187.667C54.1592 187.667 55.0036 187.649 54.7623 188.181C54.7623 188.181 54.5512 188.38 54.4788 188.308C54.4788 188.308 54.5874 188.655 54.1501 188.655C54.1501 188.655 53.6766 188.912 53.4927 188.728C53.3087 188.544 52.9257 188.272 52.8895 188.163C52.8534 188.054 52.8715 186.688 52.8895 185.724C52.8895 185.483 52.9849 185.253 53.1545 185.083C53.3242 184.913 53.5543 184.817 53.7943 184.817C53.9367 184.817 54.0771 184.851 54.204 184.916C54.3308 184.981 54.4406 185.075 54.5244 185.191C54.6081 185.306 54.6635 185.44 54.686 185.581C54.7085 185.722 54.6974 185.866 54.6537 186.002Z",fill:"#D3899B"}}),t._v(" "),a("path",{attrs:{d:"M53.9844 188.111C53.9844 188.111 54.3523 188.468 54.1593 188.667",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{d:"M54.147 187.891C54.2396 187.921 54.3214 187.977 54.382 188.054C54.4426 188.13 54.4794 188.223 54.4877 188.32",stroke:"#3F2B3B","stroke-miterlimit":"10"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M51.0353 178.029C51.0353 178.029 49.3163 177.975 49.262 179.311C49.2077 180.646 51.949 180.081 51.949 180.081C51.949 180.081 53.098 179.924 52.899 179.114C52.6999 178.304 52.2777 178.102 51.0353 178.029Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M51.0353 177.884C51.0353 177.884 49.3163 177.827 49.262 179.166C49.2077 180.504 51.949 179.933 51.949 179.933C51.949 179.933 53.098 179.779 52.899 178.969C52.6999 178.159 52.2777 177.957 51.0353 177.884Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M51.0353 177.957C51.0353 177.957 49.3163 177.902 49.262 179.238C49.2077 180.574 51.949 180.006 51.949 180.006C51.949 180.006 53.098 179.852 52.899 179.042C52.6999 178.232 52.2777 178.029 51.0353 177.957Z",fill:"#3F2B3B"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M47.1987 184.675C47.1987 184.675 47.7747 184.884 47.8923 185.279Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M55.3834 184.382C55.3834 184.382 54.9702 184.557 54.9974 185.289Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M47.4204 187.685C47.5488 187.611 47.5536 187.379 47.4312 187.166C47.3087 186.954 47.1054 186.842 46.9771 186.916C46.8487 186.99 46.8439 187.223 46.9663 187.435C47.0887 187.648 47.292 187.76 47.4204 187.685Z",fill:"#EEC5CD"}}),t._v(" "),a("path",{attrs:{d:"M55.8433 187.435C55.9657 187.223 55.9608 186.99 55.8325 186.916C55.7041 186.842 55.5008 186.954 55.3784 187.166C55.256 187.379 55.2608 187.611 55.3892 187.685C55.5175 187.76 55.7208 187.648 55.8433 187.435Z",fill:"#EEC5CD"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M14.7618 249C20.8227 249 25.736 248.156 25.736 247.114C25.736 246.073 20.8227 245.228 14.7618 245.228C8.70091 245.228 3.7876 246.073 3.7876 247.114C3.7876 248.156 8.70091 249 14.7618 249Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M19.6595 228.126C19.6595 228.126 4.37582 236.038 12.271 245.352C12.271 245.352 13.0128 247.389 15.163 247.232C15.163 247.232 14.7348 246.449 16.3693 245.821C16.9515 245.593 17.5051 245.298 18.0189 244.941C18.7129 244.46 19.2316 243.765 19.4966 242.962V242.962C19.4966 242.962 22.6239 238.77 20.1993 231.015C20.1993 231.015 20.5008 228.824 20.2385 228.47L18.3808 231.021C18.3808 231.021 20.3018 232.314 20.5219 234.209C20.5219 234.209 18.5225 231.027 18.0883 231.387C18.0008 231.462 17.1655 232.783 17.1655 232.783C17.1655 232.783 20.4827 235.046 20.7421 237.984C20.7421 237.984 18.8663 233.871 16.8428 233.281L15.6998 235.355C15.6998 235.355 19.3187 237.573 19.7439 240.907C19.7439 240.907 17.6329 236.675 15.4797 235.823L14.6292 238.011C14.6292 238.011 18.1335 240.245 18.4562 243.022C18.4562 243.022 15.5249 238.38 14.4694 238.525C14.4694 238.525 13.809 240.583 13.8964 241.215C13.8964 241.215 16.3753 242.874 16.4176 244.503C16.4176 244.503 14.1317 241.611 13.7788 241.801C13.7788 241.801 13.6341 244.708 14.3367 246.223C14.3367 246.223 13.1304 244.065 13.3265 241.801C13.3265 241.801 12.1202 242.829 11.8608 244.167C11.8608 244.167 11.2004 242.566 13.3687 241.097C13.3687 241.097 13.5737 238.833 13.824 238.555C13.824 238.555 11.4778 239.701 10.4826 241.112C10.4826 241.112 10.8475 238.996 14.0291 237.969L14.8343 235.751C14.8343 235.751 11.6558 237.102 10.6726 238.292C10.6726 238.292 11.3783 236.207 15.0846 235.207L16.1823 233.167C16.1823 233.167 13.3536 234.119 11.9784 235.207C11.9784 235.207 13.046 233.414 16.5201 232.592L17.4248 231.314C17.4248 231.314 15.3711 232.048 14.8011 232.314C14.2312 232.58 14.1105 232.444 14.1105 232.444C15.1589 231.556 16.4325 230.976 17.7897 230.77C17.7897 230.77 19.8012 228.265 19.6595 228.126Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M50.0996 233.774C54.6282 233.774 58.2994 233.142 58.2994 232.363C58.2994 231.583 54.6282 230.951 50.0996 230.951C45.571 230.951 41.8999 231.583 41.8999 232.363C41.8999 233.142 45.571 233.774 50.0996 233.774Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M53.7551 218.191C53.7551 218.191 42.3406 224.1 48.2393 231.066C48.2393 231.066 48.7912 232.577 50.3986 232.468C50.3986 232.468 50.0759 231.885 51.3033 231.417C51.7388 231.246 52.1528 231.025 52.5367 230.758C53.0552 230.399 53.4427 229.88 53.6405 229.28V229.28C53.6405 229.28 55.9746 226.149 54.1652 220.355C54.1652 220.355 54.3974 218.717 54.1954 218.454L52.8081 220.358C52.8081 220.358 54.2406 221.325 54.4065 222.74C54.4065 222.74 52.8986 220.364 52.597 220.624C52.5307 220.679 51.9064 221.667 51.9064 221.667C51.9064 221.667 54.3944 223.356 54.5784 225.551C54.5784 225.551 53.1791 222.48 51.6652 222.039L50.8117 223.586C50.8117 223.586 53.5259 225.245 53.8274 227.736C53.8274 227.736 52.2532 224.574 50.6429 223.94L50.0065 225.575C50.0065 225.575 52.6242 227.24 52.8654 229.316C52.8654 229.316 50.676 225.847 49.8859 225.959C49.8859 225.959 49.3944 227.494 49.4607 227.965C49.4607 227.965 51.3093 229.204 51.3425 230.422C51.3425 230.422 49.6356 228.261 49.3732 228.404C49.3732 228.404 49.2617 230.577 49.7894 231.707C49.7894 231.707 48.8847 230.093 49.0325 228.404C48.5031 228.873 48.1225 229.488 47.9378 230.172C47.9378 230.172 47.4462 228.963 49.0656 227.878C49.0656 227.878 49.2194 226.188 49.4064 225.98C49.4064 225.98 47.6543 226.835 46.9094 227.89C46.9094 227.89 47.1838 226.318 49.5572 225.541L50.1603 223.882C50.1603 223.882 47.784 224.892 47.0511 225.78C47.0511 225.78 47.5789 224.224 50.3473 223.477L51.1676 221.951C51.1676 221.951 49.0566 222.664 48.0252 223.477C48.0252 223.477 48.8244 222.138 51.4209 221.525L52.0874 220.57C52.0874 220.57 50.5554 221.117 50.1272 221.316C49.6989 221.516 49.6145 221.416 49.6145 221.416C50.3964 220.751 51.3478 220.318 52.3618 220.165C52.3618 220.165 53.8606 218.282 53.7551 218.191Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M4.86114 192.249C7.39109 192.249 9.44201 191.896 9.44201 191.46C9.44201 191.024 7.39109 190.671 4.86114 190.671C2.3312 190.671 0.280273 191.024 0.280273 191.46C0.280273 191.896 2.3312 192.249 4.86114 192.249Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M6.90598 183.536C6.90598 183.536 0.524728 186.839 3.8209 190.729C3.91388 190.97 4.08053 191.176 4.29712 191.317C4.51371 191.458 4.76919 191.527 5.02719 191.514C5.02719 191.514 4.84926 191.185 5.53383 190.91C5.77694 190.815 6.00779 190.691 6.22141 190.541C6.50671 190.339 6.71848 190.05 6.82455 189.716V189.716C6.82455 189.716 8.13036 187.966 7.12613 184.729C7.12613 184.729 7.2558 183.823 7.14422 183.669L6.36918 184.732C6.36918 184.732 7.16835 185.27 7.2739 186.062C7.2739 186.062 6.43854 184.735 6.2576 184.887C6.22141 184.917 5.87159 185.467 5.87159 185.467C5.87159 185.467 7.26183 186.413 7.36437 187.637C7.36437 187.637 6.5833 185.92 5.7389 185.675L5.26241 186.54C5.26241 186.54 6.77027 187.468 6.9482 188.858C6.9482 188.858 6.06761 187.093 5.16893 186.742L4.81307 187.649C4.81307 187.649 6.27569 188.583 6.4114 189.74C6.4114 189.74 5.18702 187.803 4.74673 187.863C4.62209 188.227 4.54209 188.605 4.50849 188.988C4.50849 188.988 5.54288 189.68 5.56097 190.36C5.56097 190.36 4.608 189.151 4.46023 189.233C4.46023 189.233 4.39992 190.441 4.69244 191.076C4.39415 190.509 4.24862 189.873 4.27024 189.233C3.97848 189.496 3.769 189.838 3.6671 190.218C3.6671 190.218 3.39267 189.55 4.29739 188.936C4.29739 188.936 4.38183 187.993 4.48738 187.876C4.48738 187.876 3.50727 188.356 3.0911 188.942C3.0911 188.942 3.2449 188.066 4.57182 187.631L4.90958 186.706C4.90958 186.706 3.58266 187.271 3.17252 187.767C3.17252 187.767 3.4741 186.896 5.01211 186.479L5.4705 185.627C4.8511 185.834 4.26111 186.12 3.71535 186.479C3.71535 186.479 4.16168 185.733 5.61224 185.388L5.98619 184.856C5.98619 184.856 5.12972 185.159 4.89148 185.27C4.65324 185.382 4.58991 185.328 4.58991 185.328C5.02791 184.956 5.56036 184.713 6.12793 184.627C6.12793 184.627 6.96328 183.593 6.90598 183.536Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M271.789 29.6653C271.789 29.6653 263.495 22.7716 278.622 11.6861C278.622 11.6861 286.131 26.0779 276.071 30.9497C276.071 30.9497 276.261 23.8445 275.329 23.8566C274.397 23.8686 271.789 29.6653 271.789 29.6653Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M259.098 36.6739C259.098 36.6739 244.457 38.0308 248.398 12.7076C248.398 12.7076 269.508 19.3565 264.469 33.7786C264.469 33.7786 257.816 26.7338 256.93 27.6465C256.043 28.5592 259.098 36.6739 259.098 36.6739Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M189.546 69.0599C189.546 69.0599 175.065 71.6137 176.944 46.0457C176.944 46.0457 198.515 50.9478 194.673 65.7355C194.673 65.7355 187.471 59.2589 186.66 60.2411C185.849 61.2233 189.546 69.0599 189.546 69.0599Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M298.245 35.6493C298.245 35.6493 312.175 40.364 314.183 14.8141C314.183 14.8141 292.123 16.3887 293.676 31.5874C293.676 31.5874 301.774 26.2774 302.422 27.3714C303.07 28.4655 298.245 35.6493 298.245 35.6493Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M224.758 43.1293C224.758 43.1293 210.865 38.3119 224.879 16.8753C224.879 16.8753 241.366 31.6509 230.844 42.7123C230.844 42.7123 227.687 33.5459 226.501 34.0113C225.316 34.4767 224.758 43.1293 224.758 43.1293Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M275.166 35.6493C275.166 35.6493 274.346 27.8127 287.883 29.759C287.883 29.759 284.475 41.1075 276.749 38.5083C276.749 38.5083 280.461 34.8968 279.97 34.4283C279.478 33.9599 275.166 35.6493 275.166 35.6493Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M261.45 51.8937C261.45 51.8937 260.627 44.0571 274.164 46.0034C274.164 46.0034 270.76 57.3518 263.03 54.7678C263.03 54.7678 266.743 51.1412 266.251 50.6878C265.76 50.2345 261.45 51.8937 261.45 51.8937Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M290.136 55.342C290.136 55.342 284.198 50.1801 295.41 42.3465C295.41 42.3465 300.655 52.9696 293.239 56.3575C293.239 56.3575 293.492 51.1804 292.811 51.1744C292.129 51.1684 290.136 55.342 290.136 55.342Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M266.188 99.7204C266.188 99.7204 273.534 96.9128 275.136 110.522C275.136 110.522 263.317 110.138 263.836 101.987C263.836 101.987 268.272 104.656 268.601 104.057C268.929 103.459 266.188 99.7204 266.188 99.7204Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M266.767 85.936C266.767 85.936 260.829 80.7741 272.045 72.9405C272.045 72.9405 277.289 83.5636 269.871 86.9545C269.871 86.9545 270.124 81.7744 269.445 81.7684C268.767 81.7624 266.767 85.936 266.767 85.936Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M221.085 71.2752C221.085 71.2752 213.959 74.5997 211.398 61.1357C211.398 61.1357 223.217 60.6793 223.271 68.8484C223.271 68.8484 218.657 66.5001 218.374 67.1197C218.09 67.7392 221.085 71.2752 221.085 71.2752Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M203.85 55.2938C203.85 55.2938 196.721 58.6182 194.164 45.1542C194.164 45.1542 205.982 44.6978 206.036 52.8699C206.036 52.8699 201.422 50.5217 201.139 51.1412C200.855 51.7608 203.85 55.2938 203.85 55.2938Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M227.837 92.3885C227.837 92.3885 219.996 92.6907 222.84 79.2751C222.84 79.2751 233.905 83.4548 230.793 91.0043C230.793 91.0043 227.451 87.0452 226.947 87.5046C226.444 87.964 227.837 92.3885 227.837 92.3885Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M226.447 101.902C226.447 101.902 227.843 109.654 214.2 108.718C214.2 108.718 216.761 97.1455 224.659 99.1673C224.659 99.1673 221.221 103.042 221.749 103.474C222.276 103.906 226.447 101.902 226.447 101.902Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M208.147 95.9003C208.147 95.9003 205.171 103.193 194.164 95.0571C194.164 95.0571 202.526 86.6765 208.105 92.6394C208.105 92.6394 203.129 94.0568 203.34 94.7035C203.552 95.3503 208.147 95.9003 208.147 95.9003Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M270.069 67.3222C270.069 67.3222 261.776 60.4315 276.903 49.343C276.903 49.343 284.412 63.7379 274.352 68.6097C274.352 68.6097 274.542 61.5044 273.61 61.5165C272.678 61.5286 270.069 67.3222 270.069 67.3222Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M304.322 53.1026C304.322 53.1026 298.26 44.175 315.863 37.7286C315.863 37.7286 319.093 53.6466 308.079 55.5295C308.079 55.5295 310.226 48.7567 309.328 48.5089C308.429 48.261 304.322 53.1026 304.322 53.1026Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M303.375 81.1821C303.375 81.1821 295.082 74.2914 310.209 63.2029C310.209 63.2029 317.718 77.5947 307.657 82.4666C307.657 82.4666 307.847 75.3643 306.915 75.3764C305.984 75.3885 303.375 81.1821 303.375 81.1821Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M288.565 94.6098C288.565 94.6098 291.858 84.3342 307.757 94.2713C307.757 94.2713 297.223 106.614 288.969 99.0706C288.969 99.0706 295.604 96.6014 295.26 95.7462C294.916 94.8909 288.565 94.6098 288.565 94.6098Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M309.811 87.1389C309.811 87.1389 313.104 76.8634 329.003 86.8004C329.003 86.8004 318.469 99.1432 310.212 91.5997C310.212 91.5997 316.846 89.1306 316.505 88.2753C316.165 87.42 309.811 87.1389 309.811 87.1389Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M241.673 48.2218C241.673 48.2218 231.067 46.3208 238.775 29.2029C238.775 29.2029 252.388 38.0187 246.031 47.2244C246.031 47.2244 242.714 40.9503 241.896 41.4218C241.079 41.8932 241.673 48.2218 241.673 48.2218Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M216.449 52.202C216.449 52.202 205.786 53.7826 207.674 35.0901C207.674 35.0901 223.377 39.1188 220.264 49.8718C220.264 49.8718 215.12 44.9819 214.504 45.683C213.889 46.3842 216.449 52.202 216.449 52.202Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M209.836 79.9067C209.836 79.9067 199.176 81.4783 201.063 62.7919C201.063 62.7919 216.766 66.8205 213.654 77.5736C213.654 77.5736 208.509 72.6836 207.894 73.3848C207.279 74.0859 209.836 79.9067 209.836 79.9067Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M198.552 88.3206C198.552 88.3206 189.357 93.9449 183.802 76.008C183.802 76.008 199.824 73.56 201.157 84.6788C201.157 84.6788 194.523 82.1945 194.221 83.08C193.919 83.9655 198.552 88.3206 198.552 88.3206Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M284.936 79.7133C284.936 79.7133 276.64 72.8196 291.767 61.7341C291.767 61.7341 299.276 76.1259 289.218 80.9978C289.218 80.9978 289.405 73.8925 288.474 73.9046C287.542 73.9167 284.936 79.7133 284.936 79.7133Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M226.1 182.076C226.1 182.076 245.853 181.242 247.934 142.485C250.015 103.728 229.426 97.1515 229.426 97.1515C229.426 97.1515 222.903 93.5006 220.011 93.3495C217.119 93.1984 207.454 94.1111 207.454 94.1111L218.111 92.053C218.111 92.053 203.117 86.3319 198.627 85.8725L214.836 89.3058C214.836 89.3058 215.066 80.3056 211.184 77.3318C211.184 77.3318 214.502 77.0839 216.257 83.5666C216.756 85.4369 217.685 87.164 218.97 88.6094C220.256 90.0548 221.861 91.1783 223.657 91.8898C229.671 94.2411 237.982 97.9493 239.876 101.129C239.876 101.129 243.377 104.789 242.846 95.2565C242.316 85.7245 239.8 77.5584 238.887 77.3287C238.887 77.3287 231.733 69.7037 221.697 69.2473C221.697 69.2473 227.557 66.8809 237.451 74.2793C237.451 74.2793 238.287 70.5438 234.559 66.1193C230.832 61.6948 225.045 52.3894 218.727 51.3981C218.727 51.3981 227.557 50.8631 234.559 62.3053C234.559 62.3053 237.147 63.9826 237.376 59.7122C237.605 55.4418 239.125 50.1015 239.125 50.1015C239.125 50.1015 241.257 59.9419 236.767 64.3634C236.767 64.3634 245.364 75.5758 244.984 88.1634C244.984 88.1634 247.65 93.8814 248.64 87.1691C248.64 87.1691 249.213 77.9271 250.355 70.0845C250.819 66.9249 250.626 63.7035 249.79 60.6218C248.954 57.5401 247.493 54.6645 245.497 52.1748C243.594 49.8023 242.27 47.4964 243.006 46.2875L252.976 58.186C252.976 58.186 261.348 38.738 267.452 34.5431C273.555 30.3483 274.303 29.4326 274.303 29.4326L264.484 40.9502L276.815 36.6013L264.448 42.3284C264.448 42.3284 258.739 46.9796 255.467 59.7182C252.195 72.4569 251.89 80.3781 251.89 80.3781C251.89 80.3781 269.472 66.4215 272.82 66.8779L261.441 75.5124C258.347 77.8579 255.792 80.8416 253.947 84.2618C252.102 87.682 251.011 91.4592 250.748 95.3381V95.3381C250.748 95.3381 272.744 89.6926 278.073 88.6258L288.118 78.3291L280.507 88.0909L296.188 87.8642L305.169 81.4571C305.169 81.4571 298.091 87.4048 298.776 87.7856C299.46 88.1664 309.813 88.6258 309.813 88.6258C309.813 88.6258 283.477 88.4717 280.585 90.3787C277.693 92.2857 271.236 92.9717 271.236 92.9717L289.882 95.7945L267.66 94.1927C267.66 94.1927 250.829 97.2452 249.924 102.507C249.924 102.507 253.35 111.465 255.633 115.016C257.527 117.969 261.339 127.525 262.102 135.914C262.865 144.304 263.911 157.194 261.034 165.052C258.157 172.91 257.078 177.407 258.525 179.773C259.973 182.139 261.339 185.189 256.622 185.796C251.906 186.404 231.2 185.494 231.2 185.494C231.2 185.494 224.87 186.742 226.1 182.076Z",fill:"#B77B7F"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M237.153 177.914C239.223 176.865 241.594 176.573 243.857 177.089C247.735 177.929 253.67 177.482 254.213 177.391",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M249.55 132.24C249.55 132.24 250.494 147.148 248.817 150.089L249.55 132.24Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M253.03 150.089C253.03 150.089 251.824 164.054 250.985 166.783C250.147 169.513 253.03 150.089 253.03 150.089Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M254.212 115.756C255.066 116.059 258.736 123.526 258 125.73C257.264 127.933 254.212 115.756 254.212 115.756Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M244.912 108.016C245.31 108.198 247.023 112.492 246.676 113.759C246.329 115.025 244.912 108.016 244.912 108.016Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M260.781 133.055C260.358 137.383 260.129 140.218 260.398 143.685C260.625 146.377 260.587 149.085 260.283 151.769",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M214.875 82.6418C215.356 83.2706 215.608 84.0445 215.59 84.836C215.614 85.6218 215.515 86.4075 215.566 87.1903C215.617 87.973 216.009 88.9825 216.827 89.0943",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M228.929 56.829C229.97 57.8668 230.895 59.0161 231.686 60.2562C231.915 60.649 232.176 61.022 232.467 61.3714C232.937 61.8225 233.441 62.2368 233.974 62.6106C235.164 63.5788 236.01 64.9058 236.387 66.3944",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M268.716 34.5432C268.465 35.0307 268.134 35.4729 267.739 35.8518C267.395 36.1812 267 36.4562 266.689 36.8189C266.439 37.1329 266.213 37.4653 266.014 37.8132C265.176 39.0834 264.233 40.2804 263.194 41.3915",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M250.289 56.6084C250.946 57.0194 251.118 57.8989 251.103 58.6726C251.088 59.4463 250.956 60.2532 251.245 60.9725C251.375 61.3019 251.586 61.5769 251.725 61.9154C251.923 62.4907 251.999 63.1011 251.948 63.7076C251.948 64.4087 251.928 65.1139 251.887 65.8231C251.851 66.6663 251.77 67.5851 251.197 68.2047",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M250.829 98.4057C251.261 98.0494 251.721 97.7281 252.204 97.4447C252.647 97.1748 253.124 96.9655 253.622 96.8221C254.379 96.6196 255.178 96.6498 255.959 96.5682C256.74 96.4866 257.557 96.266 258.091 95.6918",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M281.779 88.7679C280.853 88.7951 279.891 88.8283 279.065 89.2514C278.645 89.469 278.281 89.7803 277.858 90.01C277.324 90.3062 276.723 90.4631 276.112 90.4663",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M268.941 92.597C269.052 92.5378 269.181 92.5211 269.303 92.5501C269.425 92.579 269.532 92.6516 269.605 92.7542C269.771 92.9416 269.861 93.1894 270.033 93.3737C270.371 93.7424 270.938 93.7817 271.42 93.7999",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M263.646 72.8861L262.741 73.3515C261.816 73.7993 260.937 74.3368 260.117 74.9563",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M253.476 81.6052C252.891 81.4662 252.388 82.0918 252.27 82.6841C252.152 83.2765 252.288 83.893 252.119 84.4824C251.937 84.986 251.636 85.4381 251.242 85.8001",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M243.591 82.6932C243.058 84.2859 244.195 86.0177 243.857 87.6708C243.757 88.1725 243.525 88.6409 243.407 89.1366C243.106 90.4482 243.628 91.8415 244.484 92.8811",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M143.28 232.094C142.412 232.224 141.558 232.434 140.729 232.722C140.677 232.759 140.623 232.792 140.566 232.819C139.934 233.084 139.233 233.135 138.569 232.964C138.569 232.964 135.855 233.309 134.308 232.079C133.726 231.613 133.132 231.075 132.619 230.586C132.448 230.421 132.224 230.322 131.987 230.306C131.75 230.29 131.515 230.358 131.323 230.498C131.247 230.447 131.157 230.383 131.054 230.305C130.385 229.806 129.224 228.793 128.759 227.461C128.597 226.995 128.401 226.539 128.195 226.089C127.915 225.484 127.592 224.683 127.635 224.248C127.68 223.616 125.81 218.098 124.685 215.484C124.179 214.334 123.888 213.1 123.826 211.845C123.794 211.514 123.816 211.18 123.889 210.857C124.115 210.328 124.227 207.71 123.382 206.571L121.13 200.315L117.903 190.617L117.806 190.314C117.527 189.937 117.267 189.546 117.028 189.142C116.665 188.544 116.362 187.911 116.124 187.253C116.081 187.126 116.039 186.993 116.003 186.863C117.239 186.47 116.283 182.916 116.283 182.916C116.283 182.916 115.68 181.913 115.819 178.987C115.922 176.735 115.84 174.478 115.575 172.239C115.538 171.912 115.505 171.577 115.478 171.238C118.192 172.514 125.288 175.805 125.97 175.805C126.814 175.805 129.013 177.198 129.013 177.198C129.013 177.198 133.461 179.812 137.348 178.032C141.235 176.252 134.248 173.913 132.333 174.248C130.418 174.584 126.419 172.133 126.419 172.133L119.154 167.796L116.139 165.983C117.285 163.39 118.265 158.766 116.057 155.495L115.213 154.589C115.672 152.139 115.874 149.649 115.816 147.157C115.816 144.894 115.698 142.624 115.722 140.366C116.855 139.596 117.72 138.492 118.2 137.207C118.679 135.923 118.748 134.52 118.397 133.195C118.791 132.947 119.138 132.632 119.423 132.264C120.361 130.925 120.261 129.03 119.356 127.691C119.058 127.115 118.615 126.627 118.072 126.274C117.532 125.959 116.96 125.704 116.365 125.515C116.565 125.604 116.759 125.705 116.947 125.817C117.001 125.854 117.049 125.896 117.104 125.932C116.5 125.69 115.858 125.5 115.27 125.213C115.012 125.091 114.762 124.955 114.519 124.805C114.803 124.923 115.092 125.028 115.382 125.131L115.276 125.086C114.269 124.593 113.424 123.826 112.438 123.294C112.03 123.076 111.601 122.902 111.157 122.774L111.31 122.849C111.494 122.946 111.669 123.055 111.844 123.152C109.516 122.185 106.69 122.547 104.567 123.94C102.26 125.452 100.771 127.996 100.261 130.677C99.9111 132.514 99.9774 134.443 99.3019 136.19C97.9358 139.723 93.8736 141.699 92.5195 145.238C91.9164 146.837 91.9164 148.593 91.8651 150.303C91.6057 157.757 89.8756 165.084 86.7746 171.864C86.3795 172.728 85.9 173.644 85.1763 174.23L84.9471 174.245C84.7642 174.37 84.5667 174.471 84.359 174.548L84.6063 174.596C84.5279 174.632 84.4434 174.668 84.359 174.699C84.5339 174.738 84.7118 174.765 84.8868 174.789C84.7887 174.839 84.688 174.883 84.5852 174.922C86.6148 175.361 88.78 174.823 90.5593 173.756C92.3386 172.689 93.762 171.132 94.9713 169.461C95.0678 169.328 95.1583 169.192 95.2518 169.059C95.2216 169.153 95.1945 169.234 95.1673 169.301C94.9442 169.857 94.0968 178.758 94.0968 179.368C94.0968 179.978 93.9279 185.488 93.6474 186.156C93.367 186.824 90.0919 195.274 94.4345 194.274C97.1909 193.636 97.6915 190.949 97.6945 189.084L97.9056 189.015C98.2765 188.894 98.7108 188.764 99.1722 188.637V189.378C99.0097 189.979 98.8938 190.593 98.8254 191.212C98.8254 191.88 98.3761 193.328 98.3761 193.328L98.3519 193.379C98.1318 193.878 96.3525 197.979 96.3224 201.004L94.6577 205.401L92.8483 208.572C92.8483 208.572 87.7215 214.746 86.8168 220.754L83.7589 229.791C83.7589 229.791 83.0683 228.935 82.9567 229.268C82.8451 229.6 82.6189 231.326 82.3355 231.383C82.052 231.441 81.9434 232.665 81.9434 232.665C81.9434 232.665 80.4205 234.499 80.2516 235.612C80.2516 235.648 80.2516 235.684 80.2365 235.72C80.1911 236.041 80.172 236.364 80.1792 236.687C80.1777 236.702 80.1777 236.716 80.1792 236.73C80.1792 236.787 80.1792 236.848 80.1792 236.896V236.914C80.1792 236.914 80.1792 236.938 80.1792 236.953C80.1792 236.969 80.1792 237.035 80.1792 237.068V237.144C80.1792 237.144 80.1792 237.144 80.1792 237.168L80.2064 237.31C80.2064 237.31 80.2637 238.144 82.4048 238.646C84.546 239.148 86.7957 239.423 87.9236 240.036C89.0515 240.65 92.2029 241.16 92.2029 241.16L96.4249 240.937C96.7303 240.925 97.0256 240.823 97.274 240.645C97.5225 240.467 97.7133 240.219 97.8228 239.933C97.9323 239.647 97.9556 239.335 97.8899 239.036C97.8242 238.737 97.6724 238.463 97.4532 238.25L97.411 238.211L94.4978 237.443L94.2596 237.377C94.2596 237.377 92.6643 237.6 92.1938 236.488C91.5406 236.109 91.0073 235.552 90.6552 234.883C90.3031 234.214 90.1466 233.459 90.2035 232.704C90.2035 232.704 90.5412 229.256 89.6968 229.588C89.6033 229.625 89.5098 229.67 89.4194 229.715C89.4194 229.621 89.4194 229.525 89.4435 229.413C89.4435 229.383 89.4435 229.349 89.4435 229.319C89.4435 229.241 89.4676 229.159 89.4827 229.077C89.4827 229.044 89.4827 229.014 89.4827 228.984C89.5038 228.881 89.531 228.775 89.5611 228.682C89.5598 228.674 89.5598 228.665 89.5611 228.657C89.5943 228.543 89.6335 228.425 89.6757 228.307C89.6757 228.277 89.7029 228.246 89.7149 228.213C89.7481 228.125 89.7873 228.038 89.8295 227.95C89.8476 227.911 89.8687 227.872 89.8868 227.829C89.9049 227.787 89.9773 227.66 90.0286 227.575C90.0497 227.539 90.0708 227.5 90.0949 227.464C90.1701 227.339 90.2516 227.218 90.3392 227.101C91.9164 224.985 94.5612 220.089 94.5612 220.089L97.0371 215.085C97.0371 215.085 98.3911 212.189 99.5733 211.633C100.755 211.077 102.728 208.965 103.403 207.239L108.409 196.057C108.507 196.274 108.566 196.506 108.584 196.743C108.584 196.743 111.202 203.419 112.553 204.534C112.553 204.534 114.257 206.789 114.776 207.931C114.926 208.257 115.077 208.578 115.261 208.889C115.519 209.278 115.691 209.718 115.765 210.18C115.765 210.784 116.781 212.485 116.781 212.485V214.74C116.781 214.74 116.947 220.386 120.777 224.865L122.719 228.122L126.326 233.605L126.461 233.807C126.268 233.779 126.078 233.726 125.897 233.65L127.025 236.098C127.177 236.534 127.296 236.98 127.381 237.434C127.381 237.691 128.301 240.012 128.301 240.012C128.302 240.019 128.302 240.026 128.301 240.033V240.1C128.301 240.1 128.301 240.124 128.301 240.136C128.301 240.148 128.301 240.178 128.301 240.205C128.301 240.233 128.301 240.239 128.301 240.257V240.338C128.301 240.356 128.301 240.378 128.301 240.402C128.301 240.426 128.301 240.459 128.319 240.492L128.337 240.565C128.337 240.598 128.355 240.628 128.367 240.662L128.394 240.743C128.394 240.773 128.422 240.807 128.437 240.837C128.448 240.866 128.461 240.894 128.476 240.922C128.494 240.955 128.515 240.985 128.536 241.018C128.557 241.052 128.563 241.067 128.581 241.091C128.617 241.14 128.657 241.186 128.699 241.23L128.741 241.269L128.793 241.317L128.853 241.363L128.901 241.399C128.957 241.437 129.016 241.473 129.076 241.505L129.13 241.529C129.184 241.554 129.239 241.576 129.296 241.593L129.369 241.617C129.447 241.638 129.528 241.656 129.616 241.671H129.679C129.755 241.671 129.833 241.671 129.917 241.689H130.017C130.131 241.695 130.246 241.695 130.361 241.689C130.361 241.689 135.261 240.057 136.012 239.876C136.763 239.695 140.593 238.078 140.593 238.078C140.593 238.078 144.912 235.66 144.815 234.034C144.719 232.408 144.278 232.012 143.28 232.094Z",fill:"url(#paint1_linear)"}}),t._v(" "),a("path",{attrs:{d:"M112.746 134.512C112.562 134.899 112.422 135.304 112.327 135.721C112.224 136.28 112.287 136.867 112.125 137.408C111.886 138.196 111.22 138.764 110.692 139.39C109.587 140.696 108.992 142.359 109.015 144.072C109.03 145.06 109.254 146.051 109.124 147.03C109.018 147.801 108.699 148.523 108.521 149.279C108.37 149.994 108.303 150.724 108.319 151.455C108.326 153.954 108.776 156.433 109.649 158.775C109.683 158.891 109.749 158.995 109.839 159.077C109.941 159.144 110.06 159.184 110.182 159.192L112.348 159.494C112.548 159.546 112.761 159.529 112.951 159.446C113.099 159.337 113.21 159.187 113.271 159.013C114.863 155.483 115.134 151.509 115.113 147.635C115.092 143.76 114.812 139.865 115.351 136.032C115.526 134.824 115.786 133.615 115.867 132.406C115.918 131.617 115.593 129.81 114.471 130.74C113.614 131.472 113.18 133.5 112.746 134.512Z",fill:"#864D6C"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M115.312 130.574C115.345 130.796 115.356 131.021 115.345 131.245C115.263 132.469 115.004 133.663 114.829 134.872C114.274 138.704 114.567 142.6 114.591 146.474C114.615 150.349 114.341 154.332 112.748 157.85C112.688 158.023 112.576 158.174 112.429 158.282C112.239 158.367 112.027 158.385 111.826 158.333L109.657 158.031C109.535 158.025 109.416 157.987 109.313 157.919L109.28 157.883C109.371 158.161 109.464 158.436 109.567 158.711C109.603 158.826 109.669 158.93 109.757 159.013C109.859 159.081 109.978 159.119 110.101 159.125L112.269 159.427C112.47 159.479 112.682 159.462 112.872 159.379C113.014 159.267 113.119 159.116 113.174 158.944C114.766 155.417 115.04 151.44 115.016 147.568C114.992 143.697 114.715 139.798 115.254 135.966C115.432 134.757 115.689 133.548 115.77 132.339C115.818 131.85 115.698 130.931 115.312 130.574Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M111.608 151.703C111.987 152.406 112.402 153.09 112.851 153.752L106.593 151.171C106.593 151.171 100.483 146.671 101.883 146.45C102.211 146.396 102.685 145.846 103.213 145.054C104.234 143.408 105.154 141.701 105.969 139.943C106.72 138.381 107.257 137.154 107.257 137.154L112.851 139.738C112.284 140.645 111.768 141.583 111.307 142.548C110.771 143.629 110.351 144.764 110.055 145.933C109.666 147.611 110.691 150.004 111.608 151.703Z",fill:"#FFC2C8"}}),t._v(" "),a("path",{attrs:{d:"M99.2325 187.942C99.2325 187.942 98.4605 190.819 98.4605 191.484C98.4605 192.149 98.0172 193.6 98.0172 193.6C98.0172 193.6 96.0359 198.027 96.0057 201.234L94.3742 205.607L92.607 208.759C92.607 208.759 87.5828 214.903 86.6992 220.878L83.2764 231.048L89.4586 231.435C89.2318 230.719 89.1786 229.958 89.3034 229.217C89.4282 228.476 89.7275 227.776 90.1763 227.174C91.7234 225.058 94.3199 220.201 94.3199 220.201L96.7476 215.224C96.7476 215.224 98.0745 212.347 99.2325 211.79C100.391 211.234 102.324 209.137 102.987 207.42L109.172 193.409L112.107 186.337L99.2325 187.942Z",fill:"#FFC2C8"}}),t._v(" "),a("path",{attrs:{opacity:"0.03",d:"M112.106 186.337L109.172 193.409L102.986 207.408C102.323 209.125 100.393 211.225 99.2318 211.778C98.0708 212.331 96.7469 215.212 96.7469 215.212L94.3132 220.201C94.3132 220.201 91.7167 225.073 90.1696 227.174C89.6561 227.872 89.3432 228.697 89.2649 229.561C89.1996 230.193 89.2674 230.831 89.464 231.435L83.2817 231.048L83.7281 229.724L86.7046 220.866C87.5882 214.891 92.6123 208.747 92.6123 208.747L94.3796 205.595L96.0111 201.222C96.0412 198.015 98.0225 193.588 98.0225 193.588C98.0225 193.588 98.4659 192.149 98.4659 191.472C98.4659 190.795 99.2379 187.93 99.2379 187.93L112.106 186.337Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M89.4586 231.435L83.2764 231.048L83.7227 229.724C84.2293 230.546 87.803 230.604 87.803 230.604C88.2442 230.198 88.7334 229.848 89.2595 229.561C89.1942 230.193 89.262 230.831 89.4586 231.435Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M96.1229 240.949L91.9763 241.172C91.9763 241.172 88.9184 240.677 87.8146 240.066C86.7109 239.456 84.4973 239.181 82.4044 238.685C80.3115 238.189 80.2512 237.355 80.2512 237.355C80.1495 236.825 80.1443 236.28 80.2361 235.748C80.2361 235.711 80.2361 235.675 80.2512 235.642C80.4171 234.533 81.9068 232.707 81.9068 232.707C81.9068 232.707 82.0184 231.498 82.2929 231.435C82.5673 231.371 82.7905 229.664 82.896 229.319C83.0016 228.975 83.6831 229.842 83.6831 229.842C83.9847 230.749 87.8086 230.815 87.8086 230.815C88.3168 230.342 88.8945 229.949 89.5215 229.652C90.3478 229.319 90.0191 232.749 90.0191 232.749C89.9607 233.497 90.1125 234.246 90.4574 234.911C90.8023 235.576 91.3265 236.131 91.9703 236.512C92.4317 237.621 93.9938 237.398 93.9938 237.398L94.226 237.464L97.0849 238.229C97.0995 238.24 97.1126 238.254 97.1241 238.268C97.3442 238.479 97.4977 238.749 97.5657 239.046C97.6336 239.343 97.613 239.654 97.5063 239.94C97.3997 240.225 97.2118 240.473 96.9658 240.652C96.7199 240.832 96.4268 240.935 96.1229 240.949V240.949Z",fill:"#FF8AA1"}}),t._v(" "),a("path",{attrs:{d:"M96.1224 240.949L91.9758 241.172C91.9758 241.172 88.9178 240.677 87.8141 240.066C86.7103 239.456 84.4968 239.181 82.4039 238.685C80.311 238.19 80.2507 237.355 80.2507 237.355C80.2507 237.355 80.2356 237.295 80.2175 237.18C80.1994 237.065 80.1964 237.023 80.1873 236.917C80.1636 236.527 80.1798 236.135 80.2356 235.748L84.723 237.301C84.723 237.301 88.0403 238.407 89.3038 238.628C89.3038 238.628 93.7792 238.96 94.2195 238.96C94.5421 238.96 94.521 238.162 94.2195 237.476L97.0784 238.241C97.0929 238.252 97.106 238.266 97.1176 238.28C97.3334 238.491 97.4833 238.76 97.5492 239.055C97.6151 239.349 97.594 239.657 97.4885 239.94C97.383 240.223 97.1977 240.469 96.9551 240.648C96.7125 240.827 96.4232 240.932 96.1224 240.949V240.949Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M86.4635 237.162C86.6084 237.162 86.7259 237.044 86.7259 236.899C86.7259 236.754 86.6084 236.636 86.4635 236.636C86.3186 236.636 86.2012 236.754 86.2012 236.899C86.2012 237.044 86.3186 237.162 86.4635 237.162Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M87.5944 232.085C87.7393 232.085 87.8568 231.967 87.8568 231.822C87.8568 231.676 87.7393 231.559 87.5944 231.559C87.4495 231.559 87.332 231.676 87.332 231.822C87.332 231.967 87.4495 232.085 87.5944 232.085Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M88.0646 233.414C88.2095 233.414 88.327 233.297 88.327 233.151C88.327 233.006 88.2095 232.889 88.0646 232.889C87.9197 232.889 87.8022 233.006 87.8022 233.151C87.8022 233.297 87.9197 233.414 88.0646 233.414Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M88.6652 234.687C88.8101 234.687 88.9276 234.569 88.9276 234.424C88.9276 234.279 88.8101 234.161 88.6652 234.161C88.5203 234.161 88.4028 234.279 88.4028 234.424C88.4028 234.569 88.5203 234.687 88.6652 234.687Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M89.4792 235.862C89.6241 235.862 89.7415 235.745 89.7415 235.599C89.7415 235.454 89.6241 235.337 89.4792 235.337C89.3343 235.337 89.2168 235.454 89.2168 235.599C89.2168 235.745 89.3343 235.862 89.4792 235.862Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M90.3932 236.787C90.5381 236.787 90.6556 236.669 90.6556 236.524C90.6556 236.379 90.5381 236.261 90.3932 236.261C90.2483 236.261 90.1309 236.379 90.1309 236.524C90.1309 236.669 90.2483 236.787 90.3932 236.787Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M91.4816 237.688C91.6265 237.688 91.744 237.57 91.744 237.425C91.744 237.28 91.6265 237.162 91.4816 237.162C91.3367 237.162 91.2192 237.28 91.2192 237.425C91.2192 237.57 91.3367 237.688 91.4816 237.688Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M92.7663 238.38C92.9112 238.38 93.0286 238.262 93.0286 238.117C93.0286 237.972 92.9112 237.854 92.7663 237.854C92.6214 237.854 92.5039 237.972 92.5039 238.117C92.5039 238.262 92.6214 238.38 92.7663 238.38Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M87.8019 237.564C87.9468 237.564 88.0643 237.446 88.0643 237.301C88.0643 237.156 87.9468 237.038 87.8019 237.038C87.657 237.038 87.5396 237.156 87.5396 237.301C87.5396 237.446 87.657 237.564 87.8019 237.564Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M92.0007 240.468H91.9584C90.6768 240.468 88.5356 239.812 88.0229 239.601C87.5676 239.414 84.7418 238.73 84.7056 238.721C84.6695 238.712 82.5524 238.069 81.8588 237.878C81.2885 237.687 80.7331 237.454 80.1972 237.18C80.1972 237.111 80.176 237.023 80.167 236.917C80.7311 237.208 81.3157 237.458 81.9161 237.664C82.6127 237.857 84.7388 238.501 84.7629 238.51C84.8715 238.534 87.6249 239.205 88.0983 239.398C88.5718 239.592 90.725 240.254 91.9615 240.254H91.9976L92.0007 240.468Z",fill:"#FF8AA1"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M106.853 186.186L106.805 186.401L106.102 189.595L105.637 191.705L102.085 190.644L98.7979 189.659V187.28L106.853 186.186Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M106.853 185.965L106.805 186.18L106.102 189.375L105.637 191.484L102.085 190.423L98.7979 189.438V187.057L106.853 185.965Z",fill:"#E8F4FF"}}),t._v(" "),a("path",{attrs:{opacity:"0.03",d:"M106.853 185.965L106.805 186.18L106.102 189.375L105.637 191.484L102.085 190.423L98.7979 189.438V187.057L106.853 185.965Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M112.851 139.732C112.284 140.639 111.769 141.577 111.307 142.542H111.232C110.213 142.544 109.208 142.31 108.295 141.857C107.382 141.405 106.586 140.746 105.969 139.934C106.72 138.372 107.257 137.145 107.257 137.145L112.851 139.732Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M111.232 142.101C114.891 142.101 117.857 139.128 117.857 135.461C117.857 131.794 114.891 128.821 111.232 128.821C107.573 128.821 104.606 131.794 104.606 135.461C104.606 139.128 107.573 142.101 111.232 142.101Z",fill:"#FFC2C8"}}),t._v(" "),a("path",{attrs:{d:"M113.752 165.366L118.391 168.189L125.514 172.505C125.514 172.505 129.434 174.94 131.31 174.62C133.186 174.3 140.034 176.612 136.226 178.383C132.417 180.154 128.053 177.552 128.053 177.552C128.053 177.552 125.9 176.17 125.073 176.17C124.247 176.17 113.752 171.132 113.752 171.132V165.366Z",fill:"#FFC2C8"}}),t._v(" "),a("path",{attrs:{d:"M130.538 230.716V233.738L126.066 234.644L125.42 233.638L121.925 228.198L120.019 224.961C116.265 220.507 116.099 214.891 116.099 214.891V212.649C116.099 212.649 115.103 210.962 115.103 210.352C115.031 209.894 114.863 209.457 114.609 209.07C114.434 208.768 114.28 208.442 114.135 208.118C113.626 206.982 111.955 204.737 111.955 204.737C110.628 203.63 108.062 196.991 108.062 196.991C108.032 196.184 107.184 195.02 106.466 194.174C105.93 193.542 105.468 193.089 105.468 193.089L114.163 190.351L117.064 190.599L117.157 190.886L120.321 200.533L122.528 206.755C123.357 207.889 123.246 210.494 123.026 211.017C122.954 211.34 122.934 211.672 122.965 212.002C123.021 213.259 123.306 214.496 123.807 215.65C124.911 218.234 126.741 223.725 126.699 224.354C126.666 224.786 126.973 225.563 127.248 226.182C127.45 226.63 127.64 227.089 127.8 227.548C128.255 228.869 129.395 229.881 130.052 230.377C130.345 230.583 130.538 230.716 130.538 230.716Z",fill:"#FFC2C8"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M117.161 190.886C116.17 191.385 115.084 191.665 113.976 191.705C112.77 191.705 108.744 193.255 106.47 194.174C105.933 193.542 105.472 193.089 105.472 193.089L114.166 190.351L117.067 190.599L117.161 190.886Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M117.067 190.599C116.04 191.136 114.907 191.438 113.749 191.484C112.039 191.484 104.639 194.609 104.639 194.609L103.734 193.143L102.069 190.423L101.135 188.888L100.32 187.555C100.32 187.555 103.423 186.803 106.789 186.18C110.785 185.437 115.149 184.874 115.118 185.966C115.121 186.508 115.217 187.046 115.405 187.555C115.637 188.208 115.933 188.837 116.289 189.432C116.527 189.834 116.787 190.224 117.067 190.599V190.599Z",fill:"#E8F4FF"}}),t._v(" "),a("path",{attrs:{opacity:"0.5",d:"M117.067 190.599C116.04 191.136 114.908 191.438 113.75 191.484C112.04 191.484 104.64 194.609 104.64 194.609L103.735 193.143L112.303 189.214C113.627 189.354 114.958 189.427 116.289 189.432C116.528 189.834 116.788 190.224 117.067 190.599V190.599Z",fill:"white"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M130.538 230.716V233.738L126.066 234.644L125.42 233.638C125.756 233.69 126.094 233.719 126.434 233.723C127.64 233.741 129.196 232.172 129.196 232.172C129.431 232.051 129.594 231.544 129.703 230.963C129.745 230.731 129.871 230.521 130.056 230.374C130.345 230.583 130.538 230.716 130.538 230.716Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M143.587 234.091C143.68 235.714 139.446 238.114 139.446 238.114C139.446 238.114 135.692 239.734 134.956 239.9C134.22 240.066 129.416 241.689 129.416 241.689C127.227 241.91 127.353 240.012 127.353 240.012C127.353 240.012 126.449 237.706 126.449 237.449C126.366 236.998 126.25 236.554 126.102 236.119L124.995 233.686C124.995 233.686 125.457 233.925 126.654 233.943C127.851 233.961 129.416 232.396 129.416 232.396C129.651 232.275 129.814 231.767 129.926 231.187C129.959 231.011 130.039 230.848 130.158 230.713C130.276 230.579 130.428 230.48 130.599 230.425C130.769 230.371 130.951 230.364 131.125 230.404C131.299 230.444 131.459 230.531 131.587 230.655C132.091 231.142 132.673 231.68 133.243 232.142C134.751 233.366 137.423 233.022 137.423 233.022C138.072 233.191 138.759 233.14 139.377 232.876C139.433 232.85 139.487 232.817 139.537 232.78C140.35 232.495 141.188 232.286 142.04 232.154C143.017 232.06 143.497 232.468 143.587 234.091Z",fill:"#FF8AA1"}}),t._v(" "),a("path",{attrs:{d:"M143.587 234.091C143.681 235.714 139.446 238.114 139.446 238.114C139.446 238.114 135.692 239.734 134.956 239.9C134.22 240.066 129.416 241.689 129.416 241.689C128.662 241.765 128.183 241.589 127.878 241.327C127.795 241.257 127.721 241.177 127.658 241.088C127.449 240.769 127.344 240.393 127.356 240.012C128.172 239.918 128.979 239.758 129.769 239.531C129.769 239.531 136.156 237.76 137.007 237.08C137.007 237.08 140.083 235.696 140.246 235.031C140.246 235.031 139.341 233.695 139.368 232.876C139.424 232.85 139.478 232.817 139.528 232.78C140.341 232.495 141.179 232.286 142.031 232.154C143.017 232.06 143.497 232.468 143.587 234.091Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M139.112 237.661C138.533 238.437 135.324 239.365 134.941 239.438C134.558 239.51 132.197 240.293 132.176 240.302L129.872 241.003C129.339 241.241 128.76 241.354 128.177 241.333H127.875C127.792 241.263 127.718 241.183 127.655 241.094C128.183 241.136 129.13 241.145 129.784 240.792L132.103 240.081C132.2 240.048 134.516 239.287 134.896 239.211C135.385 239.117 138.43 238.193 138.934 237.519L139.112 237.661Z",fill:"#FF8AA1"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M115.424 187.555C115.386 187.58 115.345 187.599 115.303 187.613C114.097 188 109.573 188.108 109.573 188.108C108.465 188.642 107.308 189.065 106.117 189.372C105.031 189.628 103.967 189.689 103.403 189.214C102.948 188.843 102.115 188.785 101.18 188.888C100.386 188.984 99.6002 189.144 98.8311 189.366V187.063L106.883 185.972L106.835 186.186C110.831 185.443 115.194 184.881 115.164 185.972C115.158 186.511 115.246 187.046 115.424 187.555V187.555Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M112.851 153.746L106.593 151.165C106.593 151.165 100.483 146.665 101.883 146.444C102.211 146.39 102.685 145.839 103.213 145.048C104.902 145.541 106.417 146.504 107.582 147.825C108.825 149.212 110.9 151.077 111.611 151.697C111.989 152.4 112.403 153.084 112.851 153.746V153.746Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M115.574 183.239C115.574 183.239 116.515 186.782 115.3 187.168C114.085 187.555 109.57 187.667 109.57 187.667C109.57 187.667 104.869 189.991 103.361 188.773C102.305 187.912 99.2442 188.74 97.5464 189.299C96.8437 189.529 96.3763 189.713 96.3763 189.713C96.3763 189.713 95.1338 183.572 97.1211 180.042C99.1085 176.512 96.518 167.926 96.4034 167.095C96.3732 166.865 96.3702 166.046 96.3853 164.961C96.4336 162.129 96.6356 157.496 96.9553 156.859C97.2968 156.09 97.5742 155.294 97.7846 154.48C97.7846 154.48 98.062 152.265 98.5023 151.932C98.9426 151.6 99.1055 150.551 99.1055 150.551C99.1055 150.551 99.6604 148.227 100.212 147.617C100.764 147.006 100.984 145.126 100.984 145.126C101.618 144.991 102.275 145.017 102.896 145.202C104.71 145.654 106.343 146.647 107.583 148.049C109.091 149.732 111.85 152.126 111.85 152.126L115.357 155.961C117.676 159.446 116.407 164.481 115.191 166.916C114.588 168.156 114.658 170.543 114.89 172.607C115.147 174.836 115.227 177.081 115.128 179.323C114.98 182.242 115.574 183.239 115.574 183.239Z",fill:"#FFE577"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M105.858 154.468L105.255 158.095V158.113C105.255 158.113 101.277 166.744 100.616 167.808C99.956 168.872 99.2895 171.559 99.2895 171.559C99.2895 171.559 99.0693 176.373 98.6291 177.301C98.1888 178.229 97.6882 184.052 97.6882 184.052L97.4137 187.924C97.4944 188.372 97.5438 188.826 97.5615 189.281C96.8588 189.511 96.3914 189.695 96.3914 189.695C96.3914 189.695 95.1489 183.554 97.1363 180.024C99.1236 176.494 96.5331 167.908 96.4185 167.077C96.3884 166.847 96.3854 166.028 96.4004 164.943L97.1936 161.921L98.1857 156.94L98.5627 156.254L99.8414 153.897L104.094 152.516L105.858 154.468Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M105.637 154.024L105.034 157.65C105.034 157.65 101.059 166.285 100.399 167.346C99.7384 168.406 99.0719 171.096 99.0719 171.096C99.0719 171.096 98.8517 175.911 98.4084 176.838C97.9651 177.766 97.4705 183.587 97.4705 183.587L97.1961 187.462C97.1961 187.462 98.4024 193.506 94.1593 194.488C89.9162 195.47 93.1068 187.114 93.3782 186.458C93.6496 185.802 93.8215 180.317 93.8215 179.706C93.8215 179.096 94.6478 170.247 94.871 169.691C95.098 168.931 95.2822 168.159 95.4229 167.379L96.9669 161.504L97.9621 156.523L98.3361 155.834L99.6177 153.48L103.87 152.095L105.637 154.024Z",fill:"#FFC2C8"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M105.638 154.024L105.035 157.65C104.923 151.4 97.9658 156.946 97.9658 156.946C97.9658 156.946 98.1166 156.499 98.3398 155.816L99.6215 153.462L103.874 152.077L105.638 154.024Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M103.484 146.498C103.484 146.498 100.501 147.825 100.061 149.708C99.6209 151.591 97.9502 156.514 97.9502 156.514C97.9502 156.514 105.239 150.705 105.016 157.674C105.591 156.997 105.922 156.145 105.957 155.257C106.065 153.652 107.613 150.222 106.316 148.783C105.494 147.881 104.539 147.111 103.484 146.498V146.498Z",fill:"#FFE577"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M118.647 132.85C119.853 131.109 119.32 128.413 117.543 127.262C116.705 126.718 115.695 126.512 114.799 126.068C113.81 125.582 112.99 124.817 112.016 124.288C109.636 122.988 106.56 123.303 104.298 124.796C102.037 126.289 100.577 128.83 100.076 131.496C99.7356 133.309 99.8019 135.244 99.1384 136.978C97.7995 140.493 93.8157 142.461 92.4888 145.979C91.8857 147.568 91.9007 149.303 91.8465 151.017C91.5949 158.421 89.9025 165.705 86.8645 172.459C86.3458 173.611 85.6793 174.844 84.4941 175.273C86.4875 175.711 88.6076 175.176 90.3507 174.115C92.0937 173.055 93.493 171.507 94.6782 169.845C98.2225 164.846 99.9886 158.798 99.6933 152.673C99.624 151.322 99.4913 149.838 100.296 148.744C101.102 147.65 102.516 147.354 103.593 146.583C106.18 144.727 106.123 140.959 107.076 137.915C107.215 137.37 107.485 136.868 107.863 136.452C110.722 133.687 116.244 136.011 118.647 132.85Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M118.439 132.629C119.645 130.889 119.109 128.193 117.335 127.041C116.497 126.497 115.487 126.289 114.588 125.847C113.602 125.358 112.779 124.593 111.808 124.067C109.428 122.768 106.352 123.082 104.09 124.575C101.829 126.068 100.369 128.607 99.8684 131.275C99.5246 133.089 99.5909 135.02 98.9305 136.758C97.5915 140.27 93.6078 142.237 92.2959 145.758C91.6928 147.348 91.6928 149.082 91.6506 150.793C91.4023 158.203 89.7099 165.492 86.6686 172.251C86.1499 173.402 85.4864 174.635 84.3013 175.064C86.2916 175.503 88.4147 174.968 90.1578 173.907C91.9009 172.846 93.3002 171.299 94.4853 169.636C98.0279 164.636 99.7939 158.589 99.5005 152.464C99.4311 151.113 99.2984 149.626 100.104 148.535C100.909 147.444 102.323 147.145 103.4 146.374C105.987 144.519 105.93 140.747 106.883 137.707C107.019 137.162 107.289 136.659 107.667 136.244C110.502 133.467 116.027 135.791 118.439 132.629Z",fill:"#864D6C"}}),t._v(" "),a("path",{attrs:{d:"M129.95 233.744C130.095 233.744 130.212 233.626 130.212 233.481C130.212 233.336 130.095 233.218 129.95 233.218C129.805 233.218 129.688 233.336 129.688 233.481C129.688 233.626 129.805 233.744 129.95 233.744Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M131.202 234.502C131.347 234.502 131.464 234.385 131.464 234.239C131.464 234.094 131.347 233.977 131.202 233.977C131.057 233.977 130.939 234.094 130.939 234.239C130.939 234.385 131.057 234.502 131.202 234.502Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M132.547 235.028C132.691 235.028 132.809 234.911 132.809 234.765C132.809 234.62 132.691 234.502 132.547 234.502C132.402 234.502 132.284 234.62 132.284 234.765C132.284 234.911 132.402 235.028 132.547 235.028Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M133.964 235.288C134.109 235.288 134.226 235.17 134.226 235.025C134.226 234.88 134.109 234.762 133.964 234.762C133.819 234.762 133.702 234.88 133.702 235.025C133.702 235.17 133.819 235.288 133.964 235.288Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M135.363 235.454C135.508 235.454 135.626 235.337 135.626 235.191C135.626 235.046 135.508 234.929 135.363 234.929C135.219 234.929 135.101 235.046 135.101 235.191C135.101 235.337 135.219 235.454 135.363 235.454Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M136.817 235.454C136.961 235.454 137.079 235.337 137.079 235.191C137.079 235.046 136.961 234.929 136.817 234.929C136.672 234.929 136.554 235.046 136.554 235.191C136.554 235.337 136.672 235.454 136.817 235.454Z",fill:"#E8F5FF"}}),t._v(" "),a("path",{attrs:{d:"M138.288 235.288C138.433 235.288 138.551 235.17 138.551 235.025C138.551 234.88 138.433 234.762 138.288 234.762C138.143 234.762 138.026 234.88 138.026 235.025C138.026 235.17 138.143 235.288 138.288 235.288Z",fill:"#E8F5FF"}}),t._v(" "),a("g",{attrs:{opacity:"0.1"}},[a("path",{attrs:{opacity:"0.1",d:"M110.689 123.475C111.657 124.004 112.498 124.769 113.472 125.255C113.865 125.441 114.268 125.605 114.679 125.745L114.573 125.699C113.587 125.21 112.764 124.445 111.793 123.916C111.392 123.701 110.971 123.528 110.535 123.4L110.689 123.475Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M117.323 126.893C116.795 126.58 116.234 126.327 115.649 126.138C115.846 126.227 116.036 126.327 116.219 126.44C117.993 127.591 118.526 130.287 117.323 132.028C114.911 135.189 109.395 132.865 106.536 135.636C106.158 136.051 105.888 136.554 105.752 137.099C104.799 140.143 104.847 143.911 102.269 145.767C101.192 146.538 99.7597 146.861 98.9696 147.928C98.1795 148.995 98.3001 150.5 98.3664 151.857C98.6601 157.982 96.8941 164.029 93.3513 169.029C92.1631 170.691 90.7638 172.239 89.0238 173.299C87.764 174.081 86.327 174.531 84.847 174.605C84.6684 174.73 84.4749 174.831 84.271 174.907C86.2614 175.345 88.3844 174.808 90.1275 173.747C91.8706 172.686 93.2699 171.139 94.4551 169.476C97.9989 164.478 99.766 158.432 99.4732 152.307C99.4038 150.956 99.2711 149.469 100.076 148.378C100.882 147.287 102.296 146.991 103.373 146.217C105.96 144.365 105.903 140.593 106.856 137.553C106.992 137.007 107.261 136.504 107.64 136.09C110.502 133.315 116.023 135.64 118.427 132.478C119.645 130.737 119.096 128.042 117.323 126.893Z",fill:"black"}})]),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M109.283 183.11C109.283 183.11 113.677 182.656 114.546 182.741C115.414 182.825 109.283 183.11 109.283 183.11Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M110.408 184.219C110.408 184.219 113.071 183.85 114.102 184.219C115.134 184.587 110.408 184.219 110.408 184.219Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M110.792 185.355C110.792 185.355 114.051 185.657 114.631 185.488Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M108.702 163.042C108.702 163.042 112.019 164.52 112.321 165.366C112.622 166.212 114.622 166.732 114.622 166.732",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M106.177 132.62C106.177 132.62 104.642 130.65 103.943 130.601C103.943 130.601 104.096 131.13 103.867 131.417C103.646 131.753 103.381 132.058 103.08 132.324C102.763 132.536 102.64 132.72 102.851 133.092C103.062 133.464 103.321 134.017 103.819 133.902C104.317 133.787 105.689 132.995 105.957 132.977C106.225 132.959 104.479 132.143 104.22 132.17C104.22 132.17 104.989 131.958 106.072 132.796L106.177 132.62Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M105.016 130.686C105.015 130.5 105.053 130.317 105.128 130.147C105.203 129.977 105.313 129.825 105.451 129.701C105.506 129.638 105.576 129.589 105.654 129.559C105.732 129.528 105.816 129.517 105.9 129.526C106.2 129.613 106.48 129.76 106.723 129.958C106.723 129.958 107.691 130.487 108.171 129.976V130.166C108.171 130.401 108.122 130.632 108.026 130.846C107.767 131.424 107.224 132.575 106.955 132.753L106.714 132.648C106.714 132.648 107.04 131.003 106.714 130.601L106.593 132.62H106.455L105.188 131.155C105.074 131.026 105.013 130.858 105.016 130.686V130.686Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M108.59 131.082C108.766 131.037 108.95 131.03 109.129 131.061C109.308 131.092 109.479 131.16 109.63 131.26C109.709 131.3 109.778 131.358 109.831 131.429C109.883 131.501 109.918 131.584 109.932 131.671C109.916 131.986 109.838 132.294 109.703 132.578C109.703 132.578 109.416 133.645 110.022 133.992L109.838 134.038C109.61 134.088 109.373 134.088 109.145 134.038C108.523 133.92 107.281 133.66 107.034 133.433L107.082 133.173C107.082 133.173 108.753 133.11 109.069 132.696L107.082 133.049L107.058 132.913L108.186 131.336C108.286 131.206 108.429 131.116 108.59 131.082V131.082Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M109.226 134.5C109.327 134.652 109.396 134.823 109.428 135.002C109.46 135.181 109.455 135.365 109.413 135.543C109.401 135.63 109.369 135.712 109.319 135.784C109.27 135.856 109.203 135.915 109.126 135.957C108.827 136.049 108.512 136.081 108.201 136.051C108.201 136.051 107.103 136.141 106.979 136.83L106.877 136.67C106.747 136.475 106.662 136.255 106.626 136.023C106.527 135.398 106.349 134.137 106.476 133.838L106.735 133.796C106.735 133.796 107.362 135.346 107.857 135.507L106.849 133.754L106.973 133.684L108.837 134.213C108.997 134.259 109.135 134.361 109.226 134.5V134.5Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M106.096 136.153C105.982 136.295 105.84 136.412 105.679 136.496C105.518 136.58 105.342 136.63 105.161 136.643C105.075 136.659 104.986 136.653 104.903 136.628C104.819 136.602 104.743 136.556 104.681 136.495C104.502 136.238 104.377 135.947 104.313 135.639C104.313 135.639 103.894 134.615 103.204 134.709L103.321 134.561C103.469 134.379 103.654 134.23 103.864 134.125C104.428 133.841 105.574 133.291 105.897 133.324L106.014 133.557C106.014 133.557 104.727 134.627 104.727 135.147L106.09 133.657L106.192 133.751L106.252 135.691C106.258 135.859 106.202 136.023 106.096 136.153V136.153Z",fill:"#4285F4"}}),t._v(" "),a("path",{attrs:{d:"M106.09 133.089L106.301 132.82C106.313 132.806 106.328 132.796 106.345 132.792C106.362 132.787 106.38 132.787 106.397 132.793L106.823 132.938C106.84 132.943 106.855 132.954 106.866 132.969C106.877 132.983 106.883 133.001 106.883 133.019V133.391C106.883 133.408 106.878 133.425 106.869 133.439C106.86 133.454 106.847 133.465 106.832 133.473L106.47 133.63C106.452 133.639 106.431 133.641 106.411 133.635C106.392 133.63 106.375 133.617 106.364 133.6L106.087 133.195C106.076 133.179 106.071 133.16 106.071 133.141C106.072 133.122 106.078 133.104 106.09 133.089V133.089Z",fill:"#444053"}}),t._v(" "),a("path",{attrs:{d:"M224.049 110.724L220.648 117.978C220.648 117.978 220.147 119.338 219.824 119.592C219.502 119.845 218.072 124.143 218.072 124.143L214.423 129.779L214.176 130.163L212.743 129.767L211.742 126.014L211.803 124.926V124.787C211.803 124.787 214.058 122.423 214.559 122.242C214.559 122.242 214.951 122.287 215.702 120.456C216.453 118.624 217.134 118.228 217.134 118.228L217.526 116.899L221.748 110.159C221.748 110.159 225.289 105.073 226.254 107.33C227.219 109.588 224.049 110.724 224.049 110.724Z",fill:"#FFD2C6"}}),t._v(" "),a("path",{attrs:{d:"M182.921 118.34C182.738 118.725 182.605 119.131 182.526 119.549C182.505 119.655 182.481 119.767 182.454 119.882C182.221 121.091 182.058 122.602 181.98 123.49C181.941 123.934 181.92 124.219 181.92 124.219C181.92 124.219 173.379 123.644 174.86 122.212C175.239 121.813 175.508 121.322 175.641 120.788C175.683 120.637 175.722 120.486 175.753 120.323C175.822 119.966 175.868 119.604 175.888 119.241V118.963C175.907 118.371 175.878 117.779 175.804 117.192C175.804 117.192 178.581 117.174 180.674 117.415C182.092 117.579 183.189 117.854 182.921 118.34Z",fill:"#D38884"}}),t._v(" "),a("path",{attrs:{d:"M209.924 162.181C209.914 162.304 209.874 162.423 209.809 162.528C209.417 163.102 207.198 174.823 207.198 174.823C207.376 175.614 206.878 177.192 206.556 177.911C206.233 178.631 205.515 182.354 205.515 182.354C205.515 182.354 205.337 190.387 204.876 191.638C204.414 192.889 205.024 195.582 205.024 195.582C204.978 196.818 205.72 198.127 206.16 198.792C206.191 198.834 206.221 198.876 206.245 198.916C206.39 199.121 206.483 199.239 206.483 199.239C206.605 199.479 206.775 199.69 206.984 199.859L207.083 199.937C207.692 200.345 208.372 200.632 209.089 200.783L209.158 200.799C209.445 200.862 209.632 200.889 209.632 200.889L209.815 201.871L207.919 202.264L204.3 202.515C204.3 202.515 200.042 202.839 201.007 200.938C201.074 200.808 201.133 200.674 201.182 200.536V200.536C201.218 200.445 201.251 200.348 201.281 200.252C201.86 198.438 201.468 196.205 201.468 196.205L200.645 189.719C199.288 183.696 201.715 176.99 201.715 176.99C201.715 176.99 201.504 176.455 201.969 175.092C202.433 173.729 201.975 170.743 201.975 170.743C201.975 170.743 201.727 166.904 201.405 165C201.275 164.201 201.232 163.391 201.275 162.583C201.29 162.109 201.333 161.637 201.405 161.168L209.547 160.086C209.547 160.086 210.021 161.425 209.924 162.181Z",fill:"#FFD2C6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M209.815 201.871L207.919 202.264L204.3 202.515C204.3 202.515 200.042 202.839 201.007 200.938C201.074 200.808 201.133 200.674 201.182 200.536V200.536C201.218 200.445 201.251 200.348 201.281 200.252C202.019 200.275 202.748 200.422 203.437 200.687C204.644 201.155 205.548 199.934 205.548 199.934L206.151 198.807L206.236 198.644C206.381 198.849 206.474 198.967 206.474 198.967C206.617 199.244 206.824 199.484 207.077 199.665L206.978 199.874L206.405 201.083C206.405 201.083 207.138 201.158 208.139 201.318C208.332 201.371 208.539 201.347 208.715 201.251C208.891 201.154 209.023 200.993 209.083 200.802L209.152 200.817C209.439 200.88 209.626 200.907 209.626 200.907L209.815 201.871Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M211.562 202.751C211.42 203.398 207.43 203.594 207.43 203.594C207.43 203.594 205.214 203.38 204.589 203.896C203.965 204.413 202.134 204.289 202.065 204.289C201.996 204.289 201.028 204.253 200.651 202.518C200.274 200.783 201.142 200.53 201.185 200.515C201.956 200.526 202.72 200.674 203.44 200.953C204.647 201.421 205.551 200.2 205.551 200.2L206.227 198.91C206.372 199.115 206.465 199.233 206.465 199.233C206.608 199.51 206.815 199.75 207.068 199.931L206.396 201.346C206.396 201.346 207.128 201.421 208.13 201.581C208.249 201.609 208.374 201.609 208.493 201.582C208.613 201.556 208.726 201.503 208.823 201.427C208.92 201.352 208.999 201.256 209.054 201.146C209.109 201.036 209.14 200.916 209.143 200.793C209.145 200.756 209.145 200.72 209.143 200.684C209.143 200.684 209.767 200.865 210.536 201.08C210.886 201.177 211.187 201.403 211.377 201.713C211.568 202.023 211.633 202.394 211.562 202.751Z",fill:"#626696"}}),t._v(" "),a("path",{attrs:{d:"M219.073 170.724C218.98 171.299 218.883 172.783 218.883 172.783C219.218 174.025 218.358 176.974 218.358 176.974L217.93 178.661C218.12 180.813 216.751 186.068 216.751 186.068C216.751 186.068 215.846 190.946 215.355 193.05C215.071 194.22 215.158 195.449 215.602 196.567C215.626 196.625 215.641 196.652 215.641 196.652C215.647 196.692 215.656 196.731 215.668 196.77C215.683 196.827 215.701 196.885 215.72 196.939C215.825 197.233 215.985 197.505 216.19 197.74C216.268 197.834 216.354 197.922 216.446 198.003V198.003C216.891 198.4 217.401 198.717 217.954 198.94V198.94L218.192 199.034C218.441 199.129 218.694 199.209 218.952 199.272L219.037 199.294L218.847 200.421L216.32 199.771L212.933 198.671L211.268 197.716L211.32 197.447C211.32 197.447 211.32 197.429 211.32 197.42C211.32 197.344 211.347 197.257 211.368 197.157C211.627 195.676 212.273 191.538 211.953 188.489C211.549 184.714 213.117 179.504 213.5 178.262C213.726 177.552 213.824 176.806 213.786 176.062C213.165 175.155 213.024 171.528 213.024 171.528C213.024 171.528 211.878 169.186 210.931 166.693C210.617 165.881 210.389 165.04 210.249 164.181C210.139 163.575 210.092 162.96 210.11 162.344C210.11 162.344 217.791 155.317 218.636 162.12C218.666 162.35 218.69 162.57 218.717 162.785C219.504 169.026 219.164 170.171 219.073 170.724Z",fill:"#FFD2C6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M219.074 199.312L218.884 200.439L216.356 199.789L212.97 198.689L211.305 197.734L211.356 197.465C211.356 197.465 211.356 197.447 211.356 197.438C211.356 197.362 211.384 197.275 211.405 197.175L211.643 197.151H211.661C212.142 197.106 212.627 197.172 213.078 197.344C213.63 197.55 214.351 197.788 214.502 197.689C214.756 197.578 215.033 197.529 215.31 197.544L215.663 196.773L215.714 196.655C215.82 196.949 215.979 197.221 216.185 197.456C216.268 197.555 216.359 197.648 216.456 197.734V198.006L216.438 198.393C216.813 198.634 217.219 198.823 217.644 198.955C217.755 198.982 217.871 198.982 217.982 198.955V198.955L218.22 199.049C218.468 199.144 218.722 199.224 218.98 199.287V199.287L219.074 199.312Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M217.81 201.714C217.105 201.512 215.398 201.185 215.129 201.439C214.861 201.693 212.494 201.439 212.494 201.439C212.248 201.433 212.009 201.363 211.798 201.238C211.587 201.113 211.411 200.935 211.287 200.723C210.799 199.955 211.194 197.483 211.194 197.483L211.369 197.465L211.67 197.438H211.688C212.169 197.393 212.654 197.459 213.106 197.631C213.658 197.837 214.378 198.076 214.529 197.976C214.783 197.864 215.06 197.814 215.337 197.831L215.742 196.942C215.847 197.236 216.007 197.508 216.212 197.743C216.295 197.842 216.386 197.935 216.483 198.021L216.45 198.68C216.825 198.921 217.231 199.11 217.656 199.242C217.76 199.282 217.875 199.286 217.981 199.252C218.087 199.218 218.178 199.148 218.239 199.055C218.257 199.024 218.273 198.992 218.284 198.958V198.958C218.305 198.997 218.537 199.079 219.282 199.29C220.087 199.245 220.868 199.593 221.227 200.696C221.586 201.799 218.513 201.914 217.81 201.714Z",fill:"#626696"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M209.923 162.181L209.486 162.314C209.142 162.418 208.79 162.492 208.434 162.537C206.175 162.839 202.457 162.664 201.274 162.589C201.289 162.115 201.332 161.643 201.404 161.174L209.547 160.092C209.547 160.092 210.02 161.425 209.923 162.181Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M217.053 160.198C217.053 160.198 214.059 160.66 211.625 161.195C210.814 161.374 210.06 161.558 209.514 161.739C209.17 161.845 208.818 161.92 208.461 161.963C205.747 162.344 200.922 161.993 200.922 161.993C199.601 157.69 202.532 152.277 202.532 152.277C202.463 151.845 203.136 150.521 203.136 150.521V150.479L203.552 148.943H214.677L214.812 149.602L215.096 150.944L216.842 159.255L217.053 160.198Z",fill:"#626696"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M218.76 162.803L218.694 162.833L217.391 163.414C215.983 164.063 211.767 164.187 210.292 164.199C210.181 163.594 210.135 162.978 210.153 162.362C210.153 162.362 217.834 155.335 218.679 162.138C218.709 162.368 218.733 162.583 218.76 162.803Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M218.965 162.138L218.694 162.259L217.391 162.839C215.958 163.501 211.607 163.619 210.21 163.625H209.846C209.2 163.604 208.558 163 208.558 162.843C208.558 162.755 208.491 162.332 208.434 161.966L208.344 161.422C208.344 161.422 205.482 160.18 204.016 159.177C202.921 158.43 203.199 153.132 203.413 150.47C203.485 149.563 203.552 148.958 203.552 148.958L214.812 149.617L216.393 149.711L217.297 149.91L217.539 149.962C217.539 149.962 218.184 154.695 218.507 155.1C218.829 155.505 218.615 156.819 218.576 157.575C218.575 157.9 218.54 158.224 218.471 158.542C218.471 158.542 218.935 159.869 218.826 160.612C218.777 161.125 218.824 161.643 218.965 162.138V162.138Z",fill:"#626696"}}),t._v(" "),a("path",{attrs:{d:"M168.135 159.065C165.225 158.968 167.369 152.899 167.704 152.077C168.039 151.255 167.206 149.264 167.206 149.264C167.206 149.264 166.226 143.479 166.226 143.098C166.175 142.31 166.064 141.527 165.894 140.756C165.785 139.971 165.917 139.17 166.274 138.462C166.609 137.936 166.576 135.833 166.576 135.833V133.113L167.221 132.252L168.883 133.823L169.344 134.258L170.153 137.305L169.866 141.669L169.706 145.918L170.707 151.796C170.707 151.796 171.045 159.158 168.135 159.065Z",fill:"#D38884"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M169.04 134.542L166.561 133.515V133.11L167.206 132.249L168.868 133.82L169.04 134.542Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M167.897 128.329C167.579 129.113 167.348 129.93 167.209 130.765C167.081 131.567 166.863 132.353 166.561 133.107L169.326 134.255L167.897 128.329Z",fill:"#4C4981"}}),t._v(" "),a("path",{attrs:{opacity:"0.05",d:"M167.897 128.329C167.579 129.113 167.348 129.93 167.209 130.765C167.081 131.567 166.863 132.353 166.561 133.107L169.326 134.255L167.897 128.329Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M189.851 188.692L189.61 189.178C189.61 189.178 189.359 190.801 189.359 190.837C189.359 190.874 188.645 191.959 188.645 191.959L186.835 192.345L186.072 192.252C186.032 191.807 185.964 191.364 185.867 190.928C185.84 190.804 185.81 190.677 185.777 190.55C185.509 189.538 185.085 188.574 184.519 187.694C184.519 187.694 183.186 184.397 182.71 183.968C182.233 183.539 180.418 179.187 180.599 178.135C180.701 177.558 180.62 175.627 180.523 174.016C180.448 172.701 180.36 171.598 180.36 171.598L184.884 168.911L185.412 169.745L185.713 170.241C185.713 170.241 185.713 170.335 185.713 170.492C185.713 170.51 185.713 170.531 185.713 170.549C185.659 171.225 185.523 171.892 185.309 172.535C185.309 172.535 184.968 174.974 185.309 175.403C185.65 175.832 186.727 181.583 186.965 184.243C186.965 184.324 186.965 184.406 186.986 184.482C187.079 185.691 187.836 186.794 188.593 187.591L188.744 187.746C189.091 188.086 189.461 188.402 189.851 188.692V188.692Z",fill:"#D38884"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M186.093 192.252L186.856 192.345L188.666 191.959C188.666 191.959 189.381 190.874 189.381 190.837C189.381 190.801 189.61 189.178 189.61 189.178L189.839 188.692L189.866 188.631C189.427 188.323 189.013 187.982 188.627 187.61V187.61L188.503 187.486C188.503 187.486 188.759 189.066 187.387 189.774C186.724 190.115 186.181 190.378 185.795 190.559L186.093 192.252Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M190.165 188.918L189.912 189.48C189.912 189.48 189.661 191.103 189.661 191.14C189.661 191.176 188.947 192.261 188.947 192.261L187.137 192.648L186.103 192.524C186.103 192.312 186.07 192.019 186.016 191.659C185.982 191.442 185.94 191.2 185.883 190.943C186.266 190.765 186.884 190.469 187.671 190.064C189.043 189.359 188.784 187.779 188.784 187.779C189.081 188.077 189.396 188.357 189.728 188.616C189.912 188.749 190.075 188.855 190.165 188.918Z",fill:"#CEDDF9"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M190.165 188.918L189.911 189.48C189.911 189.48 189.661 191.103 189.661 191.14C189.661 191.176 188.946 192.261 188.946 192.261L187.137 192.648L186.103 192.524C186.103 192.312 186.069 192.019 186.015 191.659C186.236 191.668 186.455 191.699 186.67 191.75C186.67 191.75 189.127 192.276 189.245 190.327C189.314 189.22 189.547 188.785 189.727 188.616C189.911 188.749 190.074 188.855 190.165 188.918Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M189.984 188.788C189.984 188.788 189.381 188.652 189.251 190.602C189.121 192.551 186.676 192.025 186.676 192.025C186.676 192.025 185.469 191.723 185.469 192.228C185.509 192.691 185.618 193.147 185.792 193.578C185.792 193.578 185.861 194.736 186.093 195.011C186.326 195.286 186.175 196.314 186.175 196.314C186.175 196.314 186.271 197.078 188.168 196.314C188.168 196.314 189.863 195.966 191.268 193.853C191.314 193.781 191.1 193.551 192.33 193.125C193.56 192.699 197.074 189.849 196.799 188.462C196.773 188.233 196.681 188.017 196.533 187.84C196.384 187.664 196.188 187.535 195.967 187.471C195.783 187.42 195.592 187.407 195.403 187.433C195.214 187.458 195.033 187.521 194.869 187.619C194.537 187.797 194.195 187.956 193.844 188.093C193.376 188.283 192.882 188.401 192.378 188.444C191.993 188.475 191.611 188.548 191.241 188.661C190.816 188.782 190.288 188.897 189.984 188.788Z",fill:"#CC8294"}}),t._v(" "),a("path",{attrs:{d:"M176.076 175.397C175.806 175.626 175.573 175.895 175.385 176.195C174.692 177.255 174.275 178.739 173.805 179.377C173.202 180.205 173.033 181.816 173.033 181.816C172.873 182.874 170.638 188.522 170.017 189.526C169.396 190.529 168.57 193.252 168.57 193.252C168.054 193.902 168.084 194.863 168.138 195.322C168.138 195.401 168.156 195.464 168.162 195.507L168.178 195.582L168.162 195.609L167.336 197.018L164.706 196.652L163.374 195.724C163.487 195.544 163.588 195.356 163.675 195.162C164.402 193.536 164.921 190.629 164.921 190.629C164.921 190.629 165.65 187.304 165.596 186.543C165.615 185.488 165.687 184.435 165.813 183.388C165.813 183.388 167.87 177.041 168.527 176.001C168.806 175.597 168.977 175.13 169.025 174.641C169.039 174.541 169.039 174.439 169.025 174.339L169.915 173.454C169.915 173.454 177.222 174.484 176.076 175.397Z",fill:"#D38884"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M168.199 195.295C168.199 195.295 168.199 195.377 168.184 195.507V195.609L167.357 197.018L164.728 196.652L163.374 195.724C163.487 195.544 163.588 195.356 163.675 195.162C164.336 194.975 165.849 195.51 165.849 195.51C165.849 195.51 167.484 195.812 168.172 195.322L168.199 195.295Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M167.544 199.058L164.881 199.708L162.433 197.894L162.556 196.873C162.728 196.762 162.88 196.623 163.006 196.462C163.186 196.251 163.309 195.997 163.361 195.724C163.503 194.975 165.831 195.797 165.831 195.797C165.831 195.797 167.532 196.12 168.193 195.582C168.146 196.077 168.189 196.577 168.319 197.057C168.381 197.291 168.519 197.497 168.711 197.643C169.387 198.109 167.544 199.058 167.544 199.058Z",fill:"#CEDDF9"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M167.544 199.058L164.881 199.708L162.433 197.894L162.556 196.873C162.728 196.762 162.88 196.623 163.006 196.462C163.184 196.452 163.364 196.452 163.542 196.462C163.953 196.498 164.918 198.257 164.918 198.257C167.33 198.417 168.06 197.625 168.319 197.048C168.381 197.282 168.519 197.488 168.711 197.634C169.387 198.109 167.544 199.058 167.544 199.058Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M164.914 198.547C164.914 198.547 163.949 196.788 163.539 196.752C163.194 196.734 162.847 196.734 162.502 196.752C162.502 196.752 161.428 199.3 161.033 199.532C160.638 199.765 160.056 200.965 160.056 200.965C160.056 200.965 162.888 203.709 165.632 203.189C166.505 203.201 167.364 203.415 168.141 203.815C169.411 204.48 174.703 203.978 175.349 202.811C175.831 201.938 176.021 201.3 175.599 200.838C175.472 200.705 175.315 200.605 175.142 200.546C174.968 200.487 174.782 200.471 174.601 200.499C173.934 200.59 172.442 200.569 171.127 198.958C171.127 198.958 168.714 196.74 168.515 196.737C168.316 196.734 168.69 198.81 164.914 198.547Z",fill:"#CC8294"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M185.768 170.537L185.75 170.558C185.587 170.74 184.417 172.021 184.067 172.115C183.48 172.336 182.906 172.59 182.348 172.876C182.348 172.876 181.634 173.834 181.061 173.88C180.888 173.906 180.719 173.951 180.557 174.016C180.481 172.701 180.394 171.598 180.394 171.598L184.918 168.911L185.445 169.745C185.566 170.084 185.699 170.392 185.747 170.492L185.768 170.537Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M169.278 152.077C169.278 152.077 167.514 154.38 169.278 157.439C171.042 160.497 172.897 162.027 172.897 162.027L178.907 174.502C178.907 174.502 180.481 173.641 181.054 173.596C181.627 173.55 182.342 172.592 182.342 172.592C182.899 172.305 183.472 172.049 184.058 171.825C184.441 171.731 185.762 170.25 185.762 170.25C185.762 170.25 185.107 168.814 185.252 168.437C185.397 168.059 184.821 167.098 184.821 167.098C184.647 166.617 184.519 166.12 184.441 165.614C184.441 165.233 183.82 164.323 183.82 164.323C183.82 164.323 183.201 163.368 183.201 162.843C183.201 162.317 182.297 160.262 182.297 160.262L182.058 151.195L169.278 152.077Z",fill:"#CEDDF9"}}),t._v(" "),a("path",{attrs:{opacity:"0.05",d:"M185.768 170.25C185.768 170.25 184.448 171.728 184.068 171.828C183.481 172.049 182.907 172.303 182.349 172.589C182.349 172.589 181.634 173.547 181.061 173.593C180.653 173.68 180.258 173.822 179.888 174.016C179.375 174.251 178.917 174.502 178.917 174.502L172.906 162.026C172.381 161.563 171.892 161.057 171.447 160.515C170.633 159.56 169.907 158.532 169.279 157.445C168.591 156.335 168.347 155.006 168.597 153.724C168.708 153.136 168.94 152.577 169.279 152.083L173.555 151.781L182.062 151.177L182.135 153.86L182.3 160.258C182.3 160.258 182.442 160.579 182.602 160.999C182.864 161.646 183.205 162.51 183.205 162.839C183.205 163.365 183.823 164.32 183.823 164.32C183.823 164.32 184.445 165.227 184.445 165.611C184.523 166.117 184.65 166.614 184.825 167.095C184.825 167.095 185.398 168.05 185.253 168.431C185.108 168.811 185.768 170.25 185.768 170.25Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M176.076 175.397C175.806 175.626 175.573 175.895 175.385 176.195C172.792 176.382 169.776 175.022 168.992 174.647C169.005 174.547 169.005 174.445 168.992 174.345L169.881 173.46C169.881 173.46 177.222 174.484 176.076 175.397Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M183.732 154.906C183.732 154.906 183.349 156.242 183.207 156.816C183.066 157.39 182.779 160.21 182.779 160.21L182.613 160.999L179.899 174.016L179.296 176.844C178.246 177.419 175.623 175.886 175.623 175.886C172.571 176.225 168.801 174.263 168.801 174.263C168.801 174.263 169.423 172.257 169.278 171.241C169.133 170.226 170.137 169.428 170.137 169.428C169.899 168.521 170.755 164.553 170.755 164.553C170.755 164.553 170.948 163.072 171.66 162.688C172.372 162.305 171.567 161.733 171.359 161.398C171.265 161.235 171.331 160.86 171.428 160.521C171.489 160.3 171.562 160.082 171.645 159.869C169.836 158.055 169.534 155.199 169.534 153.619C169.53 153.232 169.547 152.846 169.585 152.461L173.527 151.772L182.131 150.261L183.005 152.981L183.225 153.661L183.732 154.906Z",fill:"#CEDDF9"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M182.921 118.34C182.738 118.725 182.605 119.131 182.526 119.549C182.505 119.655 182.481 119.767 182.454 119.882C181.624 120.423 181.112 120.426 180.041 120.426C179.676 120.426 179.471 119.724 179.136 119.652C179.136 119.652 178.618 117.775 178.47 119.35C177.472 119.141 176.609 119.924 175.9 119.241V118.963C175.919 118.371 175.891 117.779 175.816 117.192C175.816 117.192 178.593 117.174 180.686 117.415C182.092 117.579 183.189 117.854 182.921 118.34Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M184.891 115.134C184.89 116.546 184.33 117.9 183.333 118.898C182.337 119.897 180.986 120.458 179.577 120.459C179.217 120.46 178.858 120.423 178.506 120.35C177.522 120.147 176.615 119.669 175.891 118.97C175.167 118.271 174.656 117.381 174.416 116.403C174.177 115.425 174.219 114.398 174.538 113.443C174.857 112.488 175.44 111.643 176.219 111.007C176.998 110.37 177.941 109.968 178.939 109.847C179.937 109.727 180.948 109.892 181.856 110.324C182.764 110.756 183.531 111.437 184.068 112.289C184.605 113.14 184.89 114.127 184.891 115.134V115.134Z",fill:"#D38884"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M181.98 123.49C181.941 123.934 181.92 124.218 181.92 124.218C181.92 124.218 173.379 123.644 174.86 122.212C175.239 121.813 175.508 121.322 175.641 120.788L179.344 121.393C179.344 121.393 180.391 122.209 181.205 122.97C181.436 123.181 181.697 123.356 181.98 123.49V123.49Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M183.253 153.948C182.878 153.996 182.497 153.966 182.134 153.86C181.975 153.812 181.822 153.745 181.679 153.661C180.964 153.232 178.582 153.758 178.582 153.758C178.582 153.758 172.092 154.19 171.805 153.758C171.643 153.513 170.503 153.549 169.562 153.625C169.182 153.655 168.832 153.691 168.597 153.718C168.708 153.13 168.94 152.571 169.278 152.077L173.555 151.775L182.158 150.264L183.033 152.984C183.132 153.534 183.253 153.948 183.253 153.948Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M179.356 121.683L174.7 120.918C174.619 121.102 174.498 121.266 174.346 121.398C174.194 121.53 174.016 121.627 173.823 121.683C173.201 121.828 170.436 123.26 169.197 124.983L167.957 126.703C167.957 126.703 166.953 127.945 167.288 128.948C167.622 129.952 168.002 133.349 168.002 133.349L168.482 137.123C168.482 137.123 169.386 139.843 169.1 141.052C168.814 142.261 169.245 147.266 169.245 147.266L168.289 153.48C168.289 153.48 171.534 153.051 171.82 153.48C172.107 153.909 178.593 153.48 178.593 153.48C178.593 153.48 180.976 152.954 181.694 153.383C182.172 153.65 182.722 153.755 183.265 153.685C183.265 153.685 182.695 151.727 183.027 150.627C183.358 149.527 183.265 147.52 183.265 147.52C183.265 147.52 183.744 144.603 183.506 144.078C183.268 143.552 184.031 141.642 184.031 141.642L186.558 128.305C186.558 128.305 186.256 125.914 184.902 125.101C183.548 124.288 182.025 124.049 181.214 123.288C180.403 122.526 179.356 121.683 179.356 121.683Z",fill:"#4C4981"}}),t._v(" "),a("path",{attrs:{d:"M181.488 134.83V136.407L182.975 140.372L183.509 144.053C183.509 144.053 184.462 146.683 184.462 147.592C184.462 148.502 186.784 152.911 186.784 152.911C186.784 152.911 187.42 154.395 187.104 154.679C186.787 154.964 184.018 161.262 187.499 161.071C190.979 160.881 189.884 154.284 189.884 154.284L189.408 151.415C189.408 151.415 188.738 144.247 188.738 143.721C188.738 143.721 187.882 140.659 187.785 139.991C187.689 139.324 187.07 135.93 187.07 135.93L186.546 133.729L181.488 134.83Z",fill:"#D38884"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M179.834 139.801L174.647 142.775L173.036 145.214L175.18 143.026L179.834 139.801Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M178.259 145.501C178.259 145.501 175.898 147.042 174.788 147.042C173.678 147.042 171.103 149.696 171.103 149.696C171.103 149.696 174.752 147.332 175.023 147.402C175.294 147.471 178.259 145.501 178.259 145.501Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M172.212 146.326C172.212 146.326 169.996 148.333 170.566 148.547C171.136 148.762 174.109 146.326 174.109 146.326H172.212Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M182.013 139.154C182.013 139.154 180.297 141.484 180.762 141.448C181.226 141.412 182.55 140.088 182.55 140.088L182.013 139.154Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M182.264 141.448C182.264 141.448 180.403 143.564 180.475 144.102C180.548 144.64 182.264 141.448 182.264 141.448Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M182.731 142.506C182.731 142.506 181.477 144.748 182.013 145.226C182.55 145.703 182.731 142.506 182.731 142.506Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M181.121 136.752C181.121 136.752 180.189 138.329 180.87 138.438C181.552 138.547 181.615 138.438 181.615 138.438L181.121 136.752Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M181.371 130.982C181.138 131.947 180.82 132.889 180.418 133.796C180.268 133.333 180.143 132.862 180.044 132.385C180.439 131.874 180.883 131.404 181.371 130.982V130.982Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M184.209 112.513C184.117 112.715 183.996 112.903 183.85 113.07C183.605 113.29 183.387 113.54 183.202 113.813C183.003 114.194 183.039 114.653 182.969 115.082C182.9 115.511 182.632 115.989 182.203 115.989C181.983 115.968 181.769 115.904 181.573 115.802C181.476 115.75 181.367 115.725 181.257 115.728C181.147 115.731 181.04 115.763 180.946 115.82C180.821 115.947 180.75 116.116 180.747 116.294C180.693 116.664 180.671 117.039 180.684 117.412C180.684 117.562 180.693 117.71 180.711 117.857C180.756 118.337 180.849 118.851 180.623 119.28C180.419 119.61 180.108 119.859 179.743 119.987C179.346 120.154 178.931 120.27 178.506 120.335C177.697 120.435 176.88 120.462 176.066 120.417C175.992 120.418 175.919 120.406 175.849 120.38C175.815 120.366 175.783 120.346 175.756 120.32C175.843 119.872 175.892 119.417 175.901 118.96C175.349 118.43 174.918 117.787 174.637 117.076C174.356 116.364 174.231 115.6 174.271 114.835C174.311 114.071 174.515 113.324 174.87 112.646C175.224 111.967 175.72 111.374 176.324 110.905C176.928 110.436 177.626 110.103 178.37 109.93C179.114 109.756 179.886 109.744 180.635 109.897C181.384 110.049 182.091 110.362 182.708 110.813C183.325 111.264 183.838 111.843 184.212 112.51L184.209 112.513Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M181.986 107.992C181.498 107.944 181.039 108.204 180.56 108.31C179.571 108.53 178.557 108.077 177.544 108.08C176.671 108.129 175.822 108.384 175.065 108.823C174.45 109.111 173.89 109.504 173.41 109.984C172.927 110.466 172.645 111.114 172.623 111.797C172.623 112.19 172.737 112.604 172.586 112.97C172.482 113.164 172.361 113.349 172.224 113.523C172.098 113.724 172.018 113.951 171.988 114.187C171.959 114.423 171.982 114.663 172.056 114.889C172.258 115.334 172.534 115.743 172.87 116.098C173.524 116.941 173.934 117.947 174.519 118.836C174.773 119.225 175.061 119.591 175.379 119.93C175.43 119.991 175.492 120.042 175.563 120.078C175.633 120.102 175.706 120.113 175.78 120.111C177.022 120.145 178.313 120.172 179.456 119.682C179.822 119.554 180.132 119.305 180.337 118.975C180.563 118.549 180.469 118.032 180.424 117.552C180.373 117.031 180.385 116.506 180.46 115.989C180.466 115.812 180.537 115.643 180.659 115.515C180.754 115.457 180.862 115.425 180.972 115.422C181.083 115.419 181.192 115.445 181.29 115.496C181.484 115.602 181.697 115.666 181.917 115.684C182.348 115.669 182.617 115.2 182.686 114.777C182.755 114.354 182.716 113.895 182.918 113.511C183.102 113.239 183.319 112.99 183.564 112.77C183.858 112.395 184.06 111.955 184.153 111.487C184.247 111.018 184.228 110.535 184.1 110.075C183.835 109.201 182.975 108.095 181.986 107.992Z",fill:"#1E1637"}}),t._v(" "),a("path",{attrs:{d:"M206.911 122.843C209.459 122.843 211.525 120.773 211.525 118.219C211.525 115.666 209.459 113.595 206.911 113.595C204.363 113.595 202.297 115.666 202.297 118.219C202.297 120.773 204.363 122.843 206.911 122.843Z",fill:"#FFD2C6"}}),t._v(" "),a("path",{attrs:{d:"M204.658 120.148C204.658 120.148 204.981 124.527 204.085 125.533C203.19 126.54 200.868 128.435 200.868 128.435L201.582 131.411L205.623 131.877L210.346 126.824L209.272 125.497C209.272 125.497 208.449 122.701 209.131 121.302C209.812 119.903 204.658 120.148 204.658 120.148Z",fill:"#FFD2C6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M214.423 129.77L214.176 130.154L212.743 129.758L211.742 126.014L211.803 124.926L212.104 124.5C212.104 124.5 213.678 124.536 213.612 125.971C213.537 127.223 214.251 129.293 214.423 129.77Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M217.536 150.521C217.536 150.521 216.396 150.775 215.093 150.944C213.79 151.113 212.282 151.204 211.667 150.841C210.633 150.237 205.033 150.403 203.41 150.467H203.133L203.549 148.931H214.674L214.81 149.59L216.39 149.684L217.295 149.883C217.442 150.267 217.536 150.521 217.536 150.521Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M211.811 124.781C211.811 124.781 213.385 124.814 213.319 126.249C213.253 127.685 214.176 130.157 214.176 130.157L213.82 130.982C213.82 130.982 213.319 132.989 213.711 133.491C214.103 133.992 215.536 133.992 214.712 138.115C214.712 138.115 214.534 141.197 214.963 142.201C215.391 143.204 215.394 145.607 216.036 146.61C216.679 147.614 217.544 149.935 217.544 149.935C217.544 149.935 212.894 150.974 211.678 150.255C210.463 149.536 202.984 149.898 202.984 149.898C202.984 149.898 203.02 148.644 202.984 148.499C202.922 148.185 202.987 147.859 203.165 147.592C203.415 147.251 203.807 146.686 203.593 146.175C203.379 145.664 204.13 144.936 203.738 144.156C203.346 143.376 202.864 143.225 202.96 142.799C203.057 142.373 202.806 141.802 202.52 141.442C202.233 141.083 200.303 137.296 200.303 137.296L199.981 135.528C199.981 135.528 197.49 133.699 197.538 132.838C197.586 131.977 198.479 130.786 198.479 130.786L200.891 128.428C200.891 128.428 202.212 129.864 203.503 129.362C204.794 128.861 207.556 126.458 207.556 126.458C207.556 126.458 208.545 125.92 208.618 125.527C208.69 125.134 209.296 125.491 209.296 125.491C209.296 125.491 210.201 124.998 210.37 125.174C210.539 125.349 211.335 125.491 211.335 125.491L211.811 124.781Z",fill:"#FFCDE5"}}),t._v(" "),a("path",{attrs:{d:"M198.292 132.249L197.529 132.853C197.529 132.853 196.751 134.252 196.573 136.761C196.371 138.793 196.049 140.811 195.608 142.805L194.1 145.501C194.1 145.501 191.63 150.696 191.308 152.077C190.985 153.459 189.519 155.789 189.519 155.789C189.519 155.789 184.546 160.268 188.011 161.075C191.477 161.881 191.588 157.511 191.588 157.511C191.588 157.511 192.396 156.605 192.529 156C192.662 155.396 197.053 147.595 197.053 147.595C197.053 147.595 198.591 145.498 198.259 144.386C198.259 144.386 200.261 139.665 200.261 138.483C200.224 137.493 200.116 136.506 199.939 135.531L200.261 133.059L198.292 132.249Z",fill:"#FFD2C6"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M208.609 142.131C208.609 142.131 205.102 143.969 204.423 144.065C203.745 144.162 207.391 143.673 207.391 143.673L208.609 142.131Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M211.456 143.564C211.456 143.564 206.806 145.141 204.767 144.854C204.767 144.854 209.846 145.824 211.456 143.564Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M211.743 144.078C211.743 144.078 207.557 146.719 205.087 146.29C205.087 146.29 210.847 147.435 211.743 146.828L209.167 146.108C209.167 146.108 212.029 144.594 211.743 144.078Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M206.917 110.081C205.711 109.836 204.366 109.987 203.398 110.748C202.68 111.314 202.191 112.178 201.395 112.601C200.97 112.78 200.534 112.934 200.09 113.061C199.305 113.382 198.651 113.958 198.233 114.696C197.815 115.434 197.656 116.292 197.783 117.131C197.909 117.842 198.241 118.497 198.407 119.202C198.708 120.453 198.44 121.761 198.123 123.007C197.243 126.463 195.906 129.787 194.149 132.889C194.009 133.081 193.94 133.315 193.953 133.551C193.995 133.712 194.079 133.859 194.197 133.977C195.849 135.89 198.539 136.549 201.064 136.634C201.995 136.667 202.97 136.634 203.778 136.18C204.305 135.881 204.759 135.468 205.108 134.972C205.984 133.767 206.418 132.296 206.338 130.807C206.269 129.598 205.868 128.389 206.169 127.226C206.202 127.063 206.276 126.911 206.383 126.784C206.655 126.506 207.107 126.582 207.493 126.537C208.546 126.413 209.221 125.304 209.348 124.252C209.474 123.2 209.209 122.136 209.203 121.081C209.197 119.682 209.634 118.317 210.452 117.183C210.801 116.699 211.245 116.225 211.356 115.62C211.501 114.865 211.055 114.309 210.69 113.71C210.087 112.782 209.815 111.694 208.923 110.99C208.333 110.535 207.647 110.224 206.917 110.081V110.081Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M206.63 109.793C205.424 109.552 204.079 109.7 203.111 110.464C202.393 111.03 201.905 111.891 201.109 112.314C200.683 112.493 200.247 112.647 199.803 112.776C199.018 113.096 198.364 113.672 197.946 114.41C197.528 115.148 197.371 116.005 197.499 116.844C197.626 117.555 197.957 118.213 198.12 118.915C198.422 120.166 198.156 121.474 197.837 122.72C196.958 126.177 195.621 129.5 193.862 132.602C193.723 132.794 193.654 133.027 193.666 133.264C193.709 133.425 193.793 133.572 193.91 133.69C195.563 135.603 198.253 136.262 200.78 136.347C201.709 136.38 202.683 136.347 203.494 135.896C204.022 135.591 204.476 135.173 204.824 134.672C205.7 133.467 206.135 131.996 206.054 130.508C205.985 129.299 205.584 128.09 205.886 126.926C205.918 126.764 205.992 126.613 206.1 126.488C206.371 126.207 206.823 126.283 207.209 126.237C208.262 126.113 208.937 125.004 209.064 123.953C209.191 122.901 208.925 121.837 208.919 120.782C208.916 119.383 209.353 118.019 210.168 116.884C210.518 116.4 210.964 115.926 211.073 115.321C211.22 114.566 210.771 114.012 210.406 113.411C209.803 112.483 209.532 111.398 208.639 110.691C208.048 110.24 207.36 109.933 206.63 109.793V109.793Z",fill:"#985C7E"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M187.095 130.668C186.99 131.316 186.99 131.978 187.095 132.626C187.047 133.152 187.095 136.069 187.095 136.069C185.521 135.591 181.516 136.549 181.516 136.549L181.036 135.114C180.763 134.762 180.559 134.362 180.433 133.935C180.281 133.472 180.156 133.001 180.059 132.524C179.852 131.532 179.696 130.53 179.592 129.523C179.393 128.011 181.649 126.367 183.356 125.458C185.062 124.548 186.558 128.419 186.558 128.419C186.558 128.419 187.285 129.903 187.095 130.668Z",fill:"black"}}),t._v(" "),a("path",{attrs:{d:"M187.095 130.381C186.99 131.029 186.99 131.691 187.095 132.339C187.047 132.865 187.095 135.782 187.095 135.782C185.521 135.304 181.516 136.262 181.516 136.262L181.036 134.827C180.763 134.475 180.558 134.075 180.433 133.648C180.281 133.185 180.156 132.714 180.059 132.236C179.852 131.245 179.696 130.243 179.592 129.235C179.393 127.724 181.649 126.08 183.356 125.171C185.062 124.261 186.558 128.132 186.558 128.132C186.558 128.132 187.285 129.616 187.095 130.381Z",fill:"#4C4981"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M205.087 154.619C205.087 154.619 205.992 158.92 207.533 160.092L205.087 154.619Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.2",d:"M184.067 110.09C183.984 109.819 183.865 109.561 183.714 109.322C183.738 109.388 183.763 109.452 183.781 109.515C183.909 109.975 183.927 110.459 183.834 110.928C183.74 111.396 183.538 111.836 183.244 112.211C182.999 112.432 182.782 112.68 182.595 112.952C182.396 113.336 182.433 113.792 182.366 114.221C182.3 114.65 182.025 115.128 181.597 115.128C181.377 115.11 181.164 115.046 180.97 114.94C180.872 114.89 180.762 114.865 180.652 114.869C180.542 114.873 180.434 114.904 180.34 114.961C180.216 115.088 180.145 115.256 180.141 115.433C180.065 115.95 180.053 116.475 180.104 116.995C180.15 117.476 180.243 117.993 180.017 118.419C179.813 118.748 179.502 118.998 179.136 119.126C177.99 119.619 176.703 119.592 175.457 119.555C175.384 119.556 175.31 119.545 175.24 119.522C175.17 119.487 175.108 119.436 175.059 119.374C174.742 119.036 174.454 118.671 174.2 118.283C173.612 117.391 173.202 116.388 172.55 115.545C172.372 115.312 172.173 115.088 172.01 114.85C172.009 114.865 172.009 114.88 172.01 114.895C172.212 115.341 172.487 115.75 172.825 116.104C173.476 116.947 173.886 117.953 174.474 118.842C174.727 119.231 175.014 119.597 175.331 119.936C175.382 119.997 175.444 120.047 175.515 120.084C175.585 120.107 175.658 120.118 175.732 120.117C176.977 120.151 178.265 120.178 179.411 119.688C179.776 119.56 180.087 119.311 180.291 118.981C180.518 118.555 180.424 118.038 180.379 117.558C180.328 117.037 180.339 116.513 180.412 115.995C180.42 115.818 180.492 115.649 180.614 115.521C180.709 115.463 180.816 115.431 180.927 115.428C181.037 115.425 181.147 115.451 181.244 115.502C181.437 115.608 181.65 115.672 181.869 115.69C182.3 115.675 182.571 115.206 182.638 114.783C182.704 114.36 182.668 113.901 182.87 113.517C183.055 113.245 183.273 112.996 183.518 112.776C183.813 112.403 184.016 111.965 184.111 111.498C184.206 111.032 184.191 110.549 184.067 110.09V110.09Z",fill:"black"}}),t._v(" "),a("g",{attrs:{opacity:"0.1"}},[a("path",{attrs:{opacity:"0.1",d:"M197.77 117.808C197.722 117.639 197.665 117.473 197.607 117.307C197.656 117.476 197.713 117.642 197.77 117.808Z",fill:"black"}}),t._v(" "),a("path",{attrs:{opacity:"0.1",d:"M210.819 114.055C210.833 114.19 210.827 114.326 210.801 114.46C210.684 115.064 210.237 115.539 209.897 116.022C209.081 117.159 208.644 118.524 208.648 119.924C208.648 120.982 208.917 122.039 208.793 123.091C208.669 124.143 207.991 125.255 206.941 125.376C206.552 125.421 206.103 125.349 205.828 125.627C205.721 125.752 205.647 125.903 205.614 126.065C205.313 127.229 205.714 128.447 205.783 129.646C205.863 131.136 205.429 132.608 204.553 133.814C204.203 134.309 203.751 134.721 203.226 135.023C202.406 135.467 201.416 135.507 200.512 135.476C198.027 135.389 195.385 134.751 193.726 132.907C193.681 133.016 193.666 133.135 193.684 133.252C193.727 133.413 193.811 133.56 193.928 133.678C195.581 135.591 198.271 136.25 200.798 136.335C201.727 136.368 202.701 136.335 203.512 135.884C204.04 135.579 204.494 135.161 204.842 134.66C205.718 133.455 206.153 131.984 206.073 130.496C206.003 129.287 205.602 128.078 205.904 126.914C205.937 126.752 206.01 126.601 206.118 126.476C206.389 126.195 206.842 126.271 207.228 126.225C208.28 126.101 208.956 124.992 209.082 123.94C209.209 122.889 208.944 121.825 208.938 120.77C208.934 119.371 209.371 118.007 210.186 116.871C210.536 116.388 210.982 115.913 211.091 115.309C211.159 114.872 211.063 114.424 210.819 114.055V114.055Z",fill:"black"}})]),t._v(" "),a("defs",[a("linearGradient",{attrs:{id:"paint0_linear",x1:"52.8957",y1:"186.34",x2:"52.8957",y2:"118.295",gradientUnits:"userSpaceOnUse"}},[a("stop",{attrs:{"stop-color":"#808080","stop-opacity":"0.25"}}),t._v(" "),a("stop",{attrs:{offset:"0.54","stop-color":"#808080","stop-opacity":"0.12"}}),t._v(" "),a("stop",{attrs:{offset:"1","stop-color":"#808080","stop-opacity":"0.1"}})],1),t._v(" "),a("linearGradient",{attrs:{id:"paint1_linear",x1:"19929.5",y1:"76428.5",x2:"33796.5",y2:"76428.5",gradientUnits:"userSpaceOnUse"}},[a("stop",{attrs:{"stop-color":"#808080","stop-opacity":"0.25"}}),t._v(" "),a("stop",{attrs:{offset:"0.54","stop-color":"#808080","stop-opacity":"0.12"}}),t._v(" "),a("stop",{attrs:{offset:"1","stop-color":"#808080","stop-opacity":"0.1"}})],1)],1)])]),t._v(" "),a("p",{staticClass:"tc mb4 measure center"},[t._v("\n "+t._s(t.$t("people.life_event_blank",{name:t.contactName}))+"\n ")]),t._v(" "),a("div",{staticClass:"tc"},[a("a",{staticClass:"mb4 btn",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.showAdd=!0}}},[t._v("\n "+t._s(t.$t("people.life_event_list_cta"))+"\n ")])])])]):a("div",[a("h3",{staticClass:"mb3 relative"},[t._v("\n 🎭 "+t._s(t.$t("people.life_event_list_title"))+"\n\n "),a("span",{staticClass:"absolute",staticStyle:{top:"-5px",right:"0"}},[t.showAdd?a("a",{staticClass:"btn edit-information",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.showAdd=!1}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]):a("a",{staticClass:"btn edit-information",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.showAdd=!0}}},[t._v("\n "+t._s(t.$t("people.life_event_list_cta"))+"\n ")])])])]),t._v(" "),t.showAdd?a("create-life-event",{attrs:{hash:t.hash,months:t.months,days:t.days,years:t.years},on:{updateLifeEventTimeline:function(e){return t.updateLifeEventsList(e)},dismissModal:function(e){t.showAdd=!1}}}):t._e(),t._v(" "),0!=t.lifeEvents.length?a("div",[a("div",{staticClass:"bt b--gray-monica",staticStyle:{"margin-left":"20px"}},t._l(t.lifeEvents,(function(e){return a("div",{key:e.id},[a("div",{staticClass:"bl bb b--gray-monica bg-hover-monica relative pa3 life-event-list-content",attrs:{id:"lifeEvent"+e.id}},[a("div",{staticClass:"absolute life-event-list-icon"},[a("img",{staticClass:"relative",attrs:{src:"img/people/life-events/types/"+e.default_life_event_type_key+".svg",alt:e.default_life_event_type_key}})]),t._v(" "),a("div",{staticClass:"absolute life-event-list-actions f7"},[a("span",[t._v(t._s(e.happened_at))]),t._v(" "),a("span")]),t._v(" "),a("p",{staticClass:"pt2"},[a("span",{staticClass:"b"},[e.life_event_type_name?[t._v("\n "+t._s(e.life_event_type_name)+"\n ")]:[t._v("\n "+t._s(t.$t("people.life_event_sentence_"+e.default_life_event_type_key))+"\n ")]],2),t._v(" "+t._s(e.name)+"\n ")]),t._v(" "),a("p",[t._v(t._s(e.note))]),t._v(" "),a("p",{staticClass:"f7"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showDeleteModal(e)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])])})),0)]):t._e(),t._v(" "),a("sweet-modal",{ref:"deleteLifeEventModal",attrs:{"overlay-theme":"dark",title:t.$t("people.life_event_delete_title")}},[a("form",[a("div",{staticClass:"mb4"},[a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("people.life_event_delete_description"))+"\n ")])])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn center",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDeleteModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"delete-life-event-button",expression:"'delete-life-event-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.destroy(t.lifeEventToDelete)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],1)}),[],!1,null,"7d4b73cd",null).exports},8202:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(381),s=a.n(i);const n={data:function(){return{defaultEvent:{name:"",note:"",specific_information:""}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.defaultEvent.happened_at=s()().format("YYYY-MM-DD")},broadcastContentChange:function(){this.$emit("contentChange",this.defaultEvent)}}};const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{staticClass:"ph4 pv3 mb3 mb0-ns bb b--gray-monica"},[a("label",{staticClass:"mr2",attrs:{for:"event-name"}},[t._v("\n "+t._s(t.$t("people.life_event_create_default_title"))+"\n ")]),t._v(" "),a("input",{directives:[{name:"model",rawName:"v-model",value:t.defaultEvent.name,expression:"defaultEvent.name"}],staticClass:"br2 f5 w-100 ba b--black-40 pa2 outline-0",attrs:{id:"event-name",autofocus:""},domProps:{value:t.defaultEvent.name},on:{input:[function(e){e.target.composing||t.$set(t.defaultEvent,"name",e.target.value)},t.broadcastContentChange]}})]),t._v(" "),a("div",{staticClass:"ph4 pv3 mb3 mb0-ns bb b--gray-monica"},[a("label",{staticClass:"mr2",attrs:{for:"description"}},[t._v("\n "+t._s(t.$t("people.life_event_create_default_story"))+"\n ")]),t._v(" "),a("form-textarea",{attrs:{id:"description",required:!1,"no-label":!0,rows:4,placeholder:t.$t("people.life_event_create_default_description")},on:{input:t.broadcastContentChange},model:{value:t.defaultEvent.note,callback:function(e){t.$set(t.defaultEvent,"note",e)},expression:"defaultEvent.note"}})],1)])}),[],!1,null,null,null).exports},3363:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(9669),s=a.n(i);const n={components:{VueAutosuggest:a(3106).iC},props:{id:{type:String,default:null},title:{type:String,default:null},required:{type:Boolean,default:!0},addNoResult:{type:Boolean,default:!0},placeholder:{type:String,default:""},componentItem:{type:Object,default:function(){return null}},wait:{type:Number,default:200},minLen:{type:Number,default:1},overflow:{type:Boolean,default:!1},inputClass:{type:String,default:""},filter:{type:Function,default:function(){return!0}}},data:function(){return{items:[],callUpdateItems:null,cache:[]}},computed:{realid:function(){return this.id?this.id:"autosuggest__input"},inputProps:function(){return{id:this.realid,placeholder:this.placeholder,class:["form-control",this.inputClass]}}},mounted:function(){var t=this;this.callUpdateItems=_.debounce((function(e){t.getContacts(e,t).then((function(a){t.cache[e]=a,t.displayItems(e)}))}),this.wait)},methods:{updateItems:function(t){null!=t&&(t.length0?t.item.complete_name:t.item.keyword}}};a(4366);const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[t.title?a("label",{staticClass:"mb2",class:{b:t.required},attrs:{for:t.realid}},[t._v("\n "+t._s(t.title)+"\n ")]):t._e(),t._v(" "),a("vue-autosuggest",{ref:"autosuggest",attrs:{suggestions:t.items,"input-props":t.inputProps,"get-suggestion-value":t.getSuggestionValue,"component-attr-class-autosuggest-results":t.overflow?"autosuggest__results-overflow":"autosuggest__results"},on:{selected:t.selectHandler,click:t.clickHandler,blur:t.blurHandler,input:t.updateItems},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.suggestion;return[a(t.componentItem,{tag:"component",attrs:{item:i.item}})]}}])})],1)}),[],!1,null,null,null).exports},8862:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{item:{type:Object,required:!0,default:null},withName:{type:Boolean,default:!0},className:{type:String,default:"avatar"}},data:function(){return{check:!0}}};a(1198);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return t.item.id>0?a("div",{staticClass:"item-search-result",attrs:{"data-contact":t.item.id,"data-name":t.item.name}},[a("a",{attrs:{href:t.item.route}},[t.check?a("img",{class:t.className,attrs:{src:t.item.information.avatar.url,alt:t.item.complete_name},on:{error:function(e){t.check=!1}}}):a("div",{class:[t.className,"avatar-initials"],style:"background-color: "+t.item.information.avatar.default_avatar_color},[t._v("\n "+t._s(t.item.initials)+"\n ")]),t._v(" "),t.withName?[t._v("\n "+t._s(t.item.complete_name)+"\n ")]:t._e(),t._v(" "),a("span")],2)]):a("div",{staticClass:"item-search-result"},[a("div",{staticClass:"avatar avatar-initials avatar-new"},[t._v("\n +\n ")]),t._v("\n "+t._s(t.$t("people.people_add_new"))+"\n "),a("span")])}),[],!1,null,"bf52d8fa",null).exports},8212:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{PhotoUpload:a(7604).Z},props:{hash:{type:String,default:""},contactId:{type:Number,default:0},reachLimit:{type:String,default:""},currentPhotoIdAsAvatar:{type:String,default:""}},data:function(){return{photos:[],file:"",uploadPercentage:0,confirmDestroyPhotoId:0,showModal:!1,url:"",onUpload:!1,canShowPrev:!1,canShowNext:!1}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getPhotos()},getPhotos:function(){var t=this;axios.get("people/"+this.hash+"/photos").then((function(e){t.photos=e.data.data}))},handleNewPhoto:function(t){this.$notify({group:"main",title:this.$t("app.default_save_success"),text:"",type:"success"}),this.photos.push(t)},deletePhoto:function(t){var e=this;axios.delete("people/"+this.hash+"/photos/"+t.id).then((function(a){e.photos.splice(e.photos.indexOf(t),1),e.$notify({group:"main",title:e.$t("app.default_save_success"),text:"",type:"success"})})).catch((function(t){}))},makeProfilePicture:function(t){var e=this;axios.post("people/"+this.hash+"/makeProfilePicture/"+t.id).then((function(t){window.location.href="people/"+e.hash}))},modalPhoto:function(t){this.modal_photo=t,this.url=t.link,this.modalHasNext()?this.canShowNext=!0:this.canShowNext=!1,this.modalHasPrev()?this.canShowPrev=!0:this.canShowPrev=!1,this.showModal=!0},modalHasNext:function(){return this.photos.indexOf(this.modal_photo)0},displayNext:function(){var t=this.photos.indexOf(this.modal_photo),e=this.photos[t+1];this.modalPhoto(e)},displayPrev:function(){var t=this.photos.indexOf(this.modal_photo),e=this.photos[t-1];this.modalPhoto(e)}}};a(8106);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{},[a("h3",[t._v("\n 📄 "+t._s(t.$t("people.photo_list_title"))+"\n "),"false"==t.reachLimit?a("span",{staticClass:"fr relative",staticStyle:{top:"-7px"}},[t.onUpload?a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.onUpload=!1,void t.$refs.upload.cancelUpload()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]):a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.onUpload=!0,void t.$refs.upload.showUploadZone()}}},[t._v("\n "+t._s(t.$t("people.photo_list_cta"))+"\n ")])]):t._e()])]),t._v(" "),a("p",{directives:[{name:"show",rawName:"v-show",value:"true"==t.reachLimit,expression:"reachLimit == 'true'"}]},[t._v("\n "+t._s(t.$t("settings.storage_upgrade_notice"))+"\n ")]),t._v(" "),t.onUpload||0!=t.photos.length?t._e():a("div",{staticClass:"ltr w-100 pt2"},[a("div",{staticClass:"section-blank"},[a("h3",{staticClass:"mb4 mt3"},[t._v("\n "+t._s(t.$t("people.photo_list_blank_desc"))+"\n ")]),t._v(" "),a("img",{staticClass:"w-50 center",attrs:{src:"img/people/photos/photos_empty.svg",alt:t.$t("people.photo_title")}})])]),t._v(" "),a("photo-upload",{ref:"upload",attrs:{"contact-id":t.contactId},on:{newphoto:function(e){return t.handleNewPhoto(e)}}}),t._v(" "),a("div",{staticClass:"db mt3"},[a("div",{staticClass:"flex flex-wrap"},t._l(t.photos,(function(e){return a("div",{key:e.id,staticClass:"w-third-ns w-100 pointer"},[a("div",{staticClass:"pa3 mb3 br2 ba b--gray-monica",class:t.dirltr?"mr3":"ml3"},[a("div",{staticClass:"cover bg-center photo w-100 h-100 br2 bb b--gray-monica pb2",style:"background-image: url("+e.link+");",on:{click:function(a){return a.preventDefault(),t.modalPhoto(e)}}}),t._v(" "),a("div",{staticClass:"pt2"},[a("ul",[a("li",{directives:[{name:"show",rawName:"v-show",value:t.currentPhotoIdAsAvatar==e.id,expression:"currentPhotoIdAsAvatar == photo.id"}]},[t._v("\n 🤩 "+t._s(t.$t("people.photo_current_profile_pic"))+"\n ")]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:t.currentPhotoIdAsAvatar!=e.id,expression:"currentPhotoIdAsAvatar != photo.id"}]},[a("a",{staticClass:"pointer",on:{click:function(a){return a.preventDefault(),t.makeProfilePicture(e)}}},[t._v("\n "+t._s(t.$t("people.photo_make_profile_pic"))+"\n ")])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:t.confirmDestroyPhotoId!=e.id,expression:"confirmDestroyPhotoId != photo.id"}]},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(a){a.preventDefault(),t.confirmDestroyPhotoId=e.id}}},[t._v("\n "+t._s(t.$t("people.photo_delete"))+"\n ")])]),t._v(" "),a("li",{directives:[{name:"show",rawName:"v-show",value:t.confirmDestroyPhotoId==e.id,expression:"confirmDestroyPhotoId == photo.id"}]},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.confirmDestroyPhotoId=0}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.deletePhoto(e)}}},[t._v("\n "+t._s(t.$t("app.delete_confirm"))+"\n ")])])])])])])})),0)]),t._v(" "),t.showModal?a("transition",{attrs:{name:"modal"}},[a("div",{staticClass:"modal-mask"},[a("div",{staticClass:"modal-wrapper"},[a("div",{staticClass:"modal-container"},[a("img",{staticClass:"mw-90 h-auto mb3",attrs:{src:t.url,alt:t.$t("people.photo_title")}}),t._v(" "),a("ul",{staticClass:"list pl0 tc"},[a("li",{staticClass:"di mr3"},[t.canShowPrev?a("a",{staticClass:"pointer",on:{click:t.displayPrev}},[t._v(t._s(t.$t("people.photo_previous")))]):t._e()]),t._v(" "),a("li",{staticClass:"di mr3"},[a("button",{staticClass:"btn",on:{click:function(e){t.showModal=!1}}},[t._v("\n "+t._s(t.$t("app.close"))+"\n ")])]),t._v(" "),a("li",{staticClass:"di"},[t.canShowNext?a("a",{staticClass:"pointer",on:{click:t.displayNext}},[t._v(t._s(t.$t("people.photo_next")))]):t._e()])])])])])]):t._e()],1)}),[],!1,null,"de44affa",null).exports},7604:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{hash:{type:String,default:""},contactId:{type:Number,default:0},reachLimit:{type:String,default:""},currentPhotoIdAsAvatar:{type:String,default:""}},data:function(){return{displayUploadZone:!1,displayUploadProgress:!1,displayUploadError:!1,file:"",uploadPercentage:0,confirmDestroyPhotoId:0,url:""}},methods:{showUploadZone:function(){this.displayUploadZone=!0},inUpload:function(){return this.displayUploadZone||this.displayUploadError||this.displayUploadProgress},cancelUpload:function(){this.displayUploadZone=!1,this.displayUploadError=!1,this.displayUploadProgress=!1},handleFileUpload:function(t){this.$emit("upload",t),t.cancelBubble||this.forceFileUpload()},forceFileUpload:function(){var t=void 0!==this.$refs.file?this.$refs.file.files[0]:void 0;return void 0===t?Promise.resolve():(this.file=t,this.submitFile())},submitFile:function(){var t=this;this.displayUploadZone=!1,this.displayUploadProgress=!0;var e=new FormData;return e.append("contact_id",this.contactId),e.append("photo",this.file),axios.post("api/photos",e,{headers:{"Content-Type":"multipart/form-data"},onUploadProgress:function(t){this.uploadPercentage=parseInt(Math.round(100*t.loaded/t.total))}.bind(this)}).then((function(e){return t.displayUploadProgress=!1,t.$emit("newphoto",e.data.data),e.data.data})).catch((function(e){t.displayUploadProgress=!1,t.file=null,t.displayUploadError=!0}))}}};a(9801);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("transition",{attrs:{name:"fade"}},[t.displayUploadZone?a("div",{staticClass:"ba br3 photo-upload-zone mb3 pa3"},[a("div",{staticClass:"tc"}),t._v(" "),a("div",{staticClass:"tc dib w-100 relative"},[a("button",{staticClass:"btn"},[t._v("\n "+t._s(t.$t("people.photo_upload_zone_cta"))+"\n ")]),t._v(" "),a("input",{ref:"file",staticClass:"absolute o-0 w-100 h-100 pointer",staticStyle:{left:"0"},attrs:{id:"file",type:"file"},on:{change:function(e){return t.handleFileUpload(e)}}})])]):t._e()]),t._v(" "),t.displayUploadProgress?a("div",{staticClass:"ba br3 photo-upload-zone mb3 pa3"},[a("p",{staticClass:"tc mb1"},[t._v("\n "+t._s(t.$t("people.document_upload_zone_progress"))+"\n ")]),t._v(" "),a("div",{staticClass:"tc mb1"},[a("progress",{attrs:{max:"100"},domProps:{value:t.uploadPercentage}})]),t._v(" "),a("p",{staticClass:"tc f6 mb0"},[t._v("\n "+t._s(t.$t("app.percent_uploaded",{percent:t.uploadPercentage}))+"\n ")])]):t._e(),t._v(" "),a("transition",{attrs:{name:"fade"}},[t.displayUploadError?a("div",{staticClass:"ba br3 photo-upload-zone mb3 pa3"},[a("div",{staticClass:"tc"},[a("svg",{attrs:{width:"120",height:"150",viewBox:"0 0 120 150",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[a("path",{attrs:{d:"M27.2012 35.9138V101.562H92.7999V18.4375H44.6762L27.2012 35.9138ZM44.1274 21.6388V35.365H30.4024L44.1274 21.6388ZM46.0024 20.3125H90.9249V99.6875H29.0762V37.24H46.0024V20.3125Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 72.3676H36.3013V74.2426H83.6988V72.3676Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 82.245H36.3013V84.12H83.6988V82.245Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{d:"M83.6988 92.1226H36.3013V93.9976H83.6988V92.1226Z",fill:"#868E99"}}),t._v(" "),a("path",{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M78.5862 46.875C79.367 46.875 80 46.2314 80 45.4375C80 44.6436 79.367 44 78.5862 44H68.6897C67.9088 44 67.2759 44.6436 67.2759 45.4375C67.2759 47.8192 69.1748 49.75 71.5172 49.75C73.364 49.75 74.935 48.5499 75.5173 46.875H78.5862ZM40.4138 46.875C39.633 46.875 39 46.2314 39 45.4375C39 44.6436 39.633 44 40.4138 44H50.3103C51.0912 44 51.7241 44.6436 51.7241 45.4375C51.7241 47.8192 49.8252 49.75 47.4828 49.75C45.636 49.75 44.065 48.5499 43.4827 46.875H40.4138ZM55.7524 66.3213C55.888 66.0995 56.2309 65.69 56.7753 65.2677C57.698 64.552 58.8279 64.1248 60.2069 64.1248C61.5859 64.1248 62.7158 64.552 63.6385 65.2677C64.1829 65.69 64.5258 66.0995 64.6614 66.3213C65.0736 66.9955 65.9454 67.2023 66.6085 66.7831C67.2716 66.364 67.475 65.4776 67.0628 64.8034C66.7589 64.3064 66.199 63.6378 65.3535 62.9819C63.9596 61.9008 62.2381 61.2499 60.2069 61.2499C58.1757 61.2499 56.4542 61.9008 55.0603 62.9819C54.2148 63.6378 53.6549 64.3064 53.351 64.8034C52.9388 65.4776 53.1422 66.364 53.8053 66.7831C54.4684 67.2023 55.3402 66.9955 55.7524 66.3213Z",fill:"#868E99"}})])]),t._v(" "),a("p",{staticClass:"tc mb3"},[t._v("\n "+t._s(t.$t("people.document_upload_zone_error"))+"\n ")]),t._v(" "),a("p",{staticClass:"tc"},[a("input",{ref:"file",attrs:{id:"file",type:"file"},on:{change:function(e){return t.handleFileUpload(e)}}})])]):t._e()])],1)}),[],!1,null,"2ea1c912",null).exports},2642:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},props:{limited:{type:Boolean,default:!1}},data:function(){return{activityTypes:[],activityTypeCategories:[],errorMessage:"",updatedCategory:{id:"",name:""},createCategoryForm:{name:"",errors:[]},createTypeForm:{name:"",activity_type_category_id:"",errors:[]},updateCategoryForm:{id:"",name:"",activity_type_category_id:"",errors:[]},updateTypeForm:{id:"",name:"",errors:[]},destroyCategoryForm:{id:"",errors:[]},destroyTypeForm:{id:"",errors:[]}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getActivityTypeCategories()},getActivityTypeCategories:function(){var t=this;axios.get("settings/personalization/activitytypecategories").then((function(e){t.activityTypeCategories=e.data}))},closeCategoryModal:function(){this.$refs.createCategoryModal.close()},closeDeleteCategoryModal:function(){this.$refs.deleteCategoryModal.close()},showCreateCategoryModal:function(){this.$refs.createCategoryModal.open()},storeCategory:function(){var t=this;axios.post("settings/personalization/activitytypecategories",this.createCategoryForm).then((function(e){t.$refs.createCategoryModal.close(),t.activityTypeCategories.push(e.data.data),t.createCategoryForm.name="",t.notify(t.$t("app.default_save_success"),!0)}))},showEditCategory:function(t){this.updateCategoryForm.id=t.id,this.updateCategoryForm.name=t.name,this.updatedCategory=t,this.$refs.updateCategoryModal.open()},showDeleteCategory:function(t){this.destroyCategoryForm.id=t.id,this.$refs.deleteCategoryModal.open()},showDeleteType:function(t){this.destroyTypeForm.id=t.id,this.$refs.deleteTypeModal.open()},showEditType:function(t,e){this.updateTypeForm.id=t.id,this.updateTypeForm.name=t.name,this.updateTypeForm.activity_type_category_id=e,this.$refs.updateTypeModal.open()},closeUpdateCategoryModal:function(){this.$refs.updateCategoryModal.close()},closeCreateTypeModal:function(){this.$refs.createTypeModal.close()},closeUpdateTypeModal:function(){this.$refs.updateTypeModal.close()},closeDeleteTypeModal:function(){this.$refs.deleteTypeModal.close()},updateCategory:function(){var t=this;axios.put("settings/personalization/activitytypecategories/"+this.updateCategoryForm.id,this.updateCategoryForm).then((function(e){t.$refs.updateCategoryModal.close(),t.updatedCategory.name=t.updateCategoryForm.name,t.updateCategoryForm.name="",t.notify(t.$t("app.default_save_success"),!0)}))},showCreateTypeModal:function(t){this.$refs.createTypeModal.open(),this.createTypeForm.activity_type_category_id=t.id},storeType:function(){var t=this;axios.post("settings/personalization/activitytypes",this.createTypeForm).then((function(e){t.$refs.createTypeModal.close(),t.activityTypes.push(e.data),t.createTypeForm.name="",t.getActivityTypeCategories(),t.notify(t.$t("app.default_save_success"),!0)}))},destroyCategory:function(){var t=this;axios.delete("settings/personalization/activitytypecategories/"+this.destroyCategoryForm.id).then((function(e){t.$refs.deleteCategoryModal.close(),t.destroyCategoryForm.id="",t.getActivityTypeCategories(),t.notify(t.$t("app.default_save_success"),!0)})).catch((function(e){t.errorMessage=e.response.data.message}))},updateType:function(){var t=this;axios.put("settings/personalization/activitytypes/"+this.updateTypeForm.id,this.updateTypeForm).then((function(e){t.$refs.updateTypeModal.close(),t.updatedCategory.name=t.updateTypeForm.name,t.updateTypeForm.name="",t.getActivityTypeCategories(),t.notify(t.$t("app.default_save_success"),!0)}))},destroyType:function(){var t=this;axios.delete("settings/personalization/activitytypes/"+this.destroyTypeForm.id).then((function(e){t.$refs.deleteTypeModal.close(),t.destroyTypeForm.id="",t.getActivityTypeCategories(),t.notify(t.$t("app.default_save_success"),!0)})).catch((function(e){t.errorMessage=e.response.data.message}))},notify:function(t,e){this.$notify({group:"activityTypes",title:t,text:"",type:e?"success":"error"})}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"activityTypes",position:"bottom right"}}),t._v(" "),a("h3",{staticClass:"with-actions"},[t._v("\n "+t._s(t.$t("settings.personalization_activity_type_category_title"))+"\n "),t.limited?t._e():a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-activity-type-category-button",expression:"'add-activity-type-category-button'"}],staticClass:"btn nt2",class:[t.dirltr?"fr":"fl"],attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showCreateCategoryModal(e)}}},[t._v("\n "+t._s(t.$t("settings.personalization_activity_type_category_add"))+"\n ")])]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.personalization_activity_type_category_description")))]),t._v(" "),t.limited?a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-type-premium-message",expression:"'activity-type-premium-message'"}],staticClass:"mt3 mb3 form-information-message br2"},[a("div",{staticClass:"pa3 flex"},[a("div",{staticClass:"mr3"},[a("svg",{attrs:{viewBox:"0 0 20 20"}},[a("g",{attrs:{"fill-rule":"evenodd"}},[a("circle",{attrs:{cx:"10",cy:"10",r:"9",fill:"currentColor"}}),a("path",{attrs:{d:"M10 0C4.486 0 0 4.486 0 10s4.486 10 10 10 10-4.486 10-10S15.514 0 10 0m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8m1-5v-3a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2v3a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2m-1-5.9a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2"}})])])]),t._v(" "),a("div",{domProps:{innerHTML:t._s(t.$t("settings.personalisation_paid_upgrade_vue",{url:"settings/subscriptions"}))}})])]):t._e(),t._v(" "),a("div",{staticClass:"dt dt--fixed w-100 collapse br--top br--bottom"},[a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_activity_type_category_table_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_activity_type_category_table_actions"))+"\n ")])])])]),t._v(" "),a("div",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-types",expression:"'activity-types'"}]},[a("ul",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-type-categories",expression:"'activity-type-categories'"},{name:"cy-items",rawName:"v-cy-items",value:t.activityTypeCategories.map((function(t){return t.id})),expression:"activityTypeCategories.map(a => a.id)"}]},t._l(t.activityTypeCategories,(function(e){return a("li",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-types-"+e.id,expression:"'activity-types-'+activityTypeCategory.id"},{name:"cy-items",rawName:"v-cy-items",value:e.activityTypes?e.activityTypes.map((function(t){return t.id})):"",expression:"activityTypeCategory.activityTypes ? activityTypeCategory.activityTypes.map(a => a.id) : ''"}],key:e.id,staticClass:"dt dt--fixed w-100 collapse br--top br--bottom mt3"},[a("div",{staticClass:"dt-row hover bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[a("strong",[t._v(t._s(e.name))])])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2",class:[t.dirltr?"tr":"tl"]},[t.limited?t._e():a("em",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-type-category-edit-button-"+e.id,expression:"'activity-type-category-edit-button-'+activityTypeCategory.id"}],staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.showEditCategory(e)}}}),t._v(" "),t.limited?t._e():a("em",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-type-category-delete-button-"+e.id,expression:"'activity-type-category-delete-button-'+activityTypeCategory.id"}],staticClass:"fa fa-trash-o pointer",on:{click:function(a){return t.showDeleteCategory(e)}}})])])]),t._v(" "),t._l(e.activityTypes,(function(i){return a("div",{key:i.id,staticClass:"dt-row hover bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 pl4"},[t._v("\n "+t._s(i.name)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[t.limited?t._e():a("em",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-type-edit-button-"+i.id,expression:"'activity-type-edit-button-'+activityType.id"}],staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.showEditType(i,e.id)}}}),t._v(" "),t.limited?t._e():a("em",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"activity-type-delete-button-"+i.id,expression:"'activity-type-delete-button-'+activityType.id"}],staticClass:"fa fa-trash-o pointer",on:{click:function(e){return t.showDeleteType(i)}}})])])])})),t._v(" "),t.limited?t._e():a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 pl4"},[a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-activity-type-button-for-category-"+e.id,expression:"'add-activity-type-button-for-category-'+activityTypeCategory.id"}],staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showCreateTypeModal(e)}}},[t._v("\n "+t._s(t.$t("settings.personalization_activity_type_add_button"))+"\n ")])])])])],2)})),0)]),t._v(" "),a("sweet-modal",{ref:"createCategoryModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_activity_type_category_modal_add")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.storeCategory()}}},[a("div",{staticClass:"mb4"},[a("p",{staticClass:"b mb2"}),t._v(" "),a("form-input",{attrs:{id:"add-category-name","input-type":"text",required:!0,title:t.$t("settings.personalization_activity_type_category_modal_question")},model:{value:t.createCategoryForm.name,callback:function(e){t.$set(t.createCategoryForm,"name",e)},expression:"createCategoryForm.name"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeCategoryModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-activity-type-category-save-button",expression:"'add-activity-type-category-save-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.storeCategory()}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"updateCategoryModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_activity_type_category_modal_edit")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.updateCategory()}}},[a("div",{staticClass:"mb4"},[a("p",{staticClass:"b mb2"}),t._v(" "),a("form-input",{attrs:{id:"update-category-name","input-type":"text",required:!0,title:t.$t("settings.personalization_activity_type_category_modal_question")},model:{value:t.updateCategoryForm.name,callback:function(e){t.$set(t.updateCategoryForm,"name",e)},expression:"updateCategoryForm.name"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeUpdateCategoryModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"update-activity-type-category-button",expression:"'update-activity-type-category-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.updateCategory()}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"createTypeModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_activity_type_modal_add")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.storeType()}}},[a("div",{staticClass:"mb4"},[a("p",{staticClass:"b mb2"}),t._v(" "),a("form-input",{attrs:{id:"add-type-name","input-type":"text",required:!0,title:t.$t("settings.personalization_activity_type_modal_question")},model:{value:t.createTypeForm.name,callback:function(e){t.$set(t.createTypeForm,"name",e)},expression:"createTypeForm.name"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeCreateTypeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"add-type-button",expression:"'add-type-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.storeType()}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"updateTypeModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_activity_type_modal_edit")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.updateType()}}},[a("div",{staticClass:"mb4"},[a("p",{staticClass:"b mb2"}),t._v(" "),a("form-input",{attrs:{id:"update-type-name","input-type":"text",required:!0,title:t.$t("settings.personalization_activity_type_modal_question")},model:{value:t.updateTypeForm.name,callback:function(e){t.$set(t.updateTypeForm,"name",e)},expression:"updateTypeForm.name"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeUpdateTypeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"update-type-button",expression:"'update-type-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.updateType()}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"deleteCategoryModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_activity_type_category_modal_delete")}},[a("form",[""!=t.errorMessage?a("div",{staticClass:"form-error-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.errorMessage)+"\n ")])])]):t._e(),t._v(" "),a("div",{staticClass:"mb4"},[a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("settings.personalization_activity_type_category_modal_delete_desc"))+"\n ")])])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDeleteCategoryModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"delete-category-button",expression:"'delete-category-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.destroyCategory()}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"deleteTypeModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_activity_type_modal_delete")}},[a("form",[""!=t.errorMessage?a("div",{staticClass:"form-error-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.errorMessage)+"\n ")])])]):t._e(),t._v(" "),a("div",{staticClass:"mb4"},[a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("settings.personalization_activity_type_modal_delete_desc"))+"\n ")])])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDeleteTypeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"delete-type-button",expression:"'delete-type-button'"}],staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.destroyType()}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],1)}),[],!1,null,null,null).exports},7022:(t,e,a)=>{"use strict";a.d(e,{Z:()=>r});var i=a(2369),s=a(7254);function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const o={components:{SweetModal:i.y,Error:s.Z},data:function(){return{contactFieldTypes:[],submitted:!1,edited:!1,deleted:!1,createForm:{name:"",protocol:"",icon:"",errors:[]},editForm:{id:"",name:"",protocol:"",icon:"",errors:[]}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getContactFieldTypes()},getContactFieldTypes:function(){var t=this;axios.get("settings/personalization/contactfieldtypes").then((function(e){t.contactFieldTypes=e.data}))},add:function(){this.$refs.modalCreateContactFieldType.open()},closeModal:function(){this.$refs.modalCreateContactFieldType.close(),this.$refs.modalEditContactFieldType.close(),this.$refs.modalDeleteContactFieldType.close()},store:function(){this.persistClient("post","settings/personalization/contactfieldtypes",this.createForm,this.submitted),this.$notify({group:"main",title:this.$t("settings.personalization_contact_field_type_add_success"),text:"",width:"500px",type:"success"})},edit:function(t){this.editForm.id=t.id,this.editForm.name=t.name,this.editForm.protocol=t.protocol,this.editForm.icon=t.fontawesome_icon,this.$refs.modalEditContactFieldType.open()},update:function(){this.persistClient("put","settings/personalization/contactfieldtypes/"+this.editForm.id,this.editForm,this.edited),this.$notify({group:"main",title:this.$t("settings.personalization_contact_field_type_edit_success"),text:"",width:"500px",type:"success"})},showDelete:function(t){this.editForm.id=t.id,this.$refs.modalDeleteContactFieldType.open()},trash:function(){this.persistClient("delete","settings/personalization/contactfieldtypes/"+this.editForm.id,this.editForm,this.deleted),this.$notify({group:"main",title:this.$t("settings.personalization_contact_field_type_delete_success"),text:"",width:"500px",type:"success"})},persistClient:function(t,e,a,i){var s=this;a.errors={},axios[t](e,a).then((function(t){s.getContactFieldTypes(),a.id="",a.name="",a.protocol="",a.icon="",a.errors=[],s.closeModal(),!0})).catch((function(t){"object"===n(t.response.data)?a.errors=_.flatten(_.toArray(t.response.data)):a.errors=[s.$t("app.error_try_again")]}))},_focusCreateInput:function(){var t=this;setTimeout((function(){t.$refs.createName.focus()}),10)},_focusEditInput:function(){var t=this;setTimeout((function(){t.$refs.editName.focus()}),10)}}};const r=(0,a(1900).Z)(o,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),a("h3",{staticClass:"with-actions"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_title"))+"\n "),a("a",{staticClass:"btn nt2",class:[t.dirltr?"fr":"fl"],attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.add(e)}}},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_add"))+"\n ")])]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.personalization_contact_field_type_description")))]),t._v(" "),t.submitted?a("div",{staticClass:"pa2 ba b--yellow mb3 mt3 br2 bg-washed-yellow"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_add_success"))+"\n ")]):t._e(),t._v(" "),t.edited?a("div",{staticClass:"pa2 ba b--yellow mb3 mt3 br2 bg-washed-yellow"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_edit_success"))+"\n ")]):t._e(),t._v(" "),t.deleted?a("div",{staticClass:"pa2 ba b--yellow mb3 mt3 br2 bg-washed-yellow"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_delete_success"))+"\n ")]):t._e(),t._v(" "),a("div",{staticClass:"dt dt--fixed w-100 collapse br--top br--bottom"},[a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_protocol"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_actions"))+"\n ")])])]),t._v(" "),t._l(t.contactFieldTypes,(function(e){return a("div",{key:e.id,staticClass:"dt-row hover bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[e.fontawesome_icon?a("em",{staticClass:"pr2",class:e.fontawesome_icon}):a("em",{staticClass:"pr2 fa fa-address-card-o"}),t._v("\n "+t._s(e.name)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("code",{staticClass:"f7"},[t._v("\n "+t._s(e.protocol)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[a("em",{staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.edit(e)}}}),t._v(" "),e.delible?a("em",{staticClass:"fa fa-trash-o pointer",on:{click:function(a){return t.showDelete(e)}}}):t._e()])])])}))],2),t._v(" "),a("sweet-modal",{ref:"modalCreateContactFieldType",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_contact_field_type_modal_title")},on:{open:t._focusCreateInput}},[a("error",{attrs:{errors:t.createForm.errors}}),t._v(" "),a("form",{staticClass:"form-horizontal",attrs:{role:"form"},on:{submit:function(e){return e.preventDefault(),t.store(e)}}},[a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{ref:"createName",attrs:{id:"name",required:!0,title:t.$t("settings.personalization_contact_field_type_modal_name")},on:{submit:t.store},model:{value:t.createForm.name,callback:function(e){t.$set(t.createForm,"name",e)},expression:"createForm.name"}})],1)]),t._v(" "),a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{attrs:{id:"protocol",placeholder:"mailto:",required:!0,title:t.$t("settings.personalization_contact_field_type_modal_protocol")},on:{submit:t.store},model:{value:t.createForm.protocol,callback:function(e){t.$set(t.createForm,"protocol",e)},expression:"createForm.protocol"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_modal_protocol_help"))+"\n ")])],1)]),t._v(" "),a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{attrs:{id:"icon",placeholder:"fa fa-address-book-o",required:!0,title:t.$t("settings.personalization_contact_field_type_modal_icon")},on:{submit:t.store},model:{value:t.createForm.icon,callback:function(e){t.$set(t.createForm,"icon",e)},expression:"createForm.icon"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_modal_icon_help"))+"\n ")])],1)])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])],1),t._v(" "),a("sweet-modal",{ref:"modalEditContactFieldType",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_contact_field_type_modal_edit_title")},on:{open:t._focusEditInput}},[a("error",{attrs:{errors:t.editForm.errors}}),t._v(" "),a("form",{staticClass:"form-horizontal",attrs:{role:"form"},on:{submit:function(e){return e.preventDefault(),t.update(e)}}},[a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{ref:"editName",attrs:{id:"name",required:!0,title:t.$t("settings.personalization_contact_field_type_modal_name")},on:{submit:t.update},model:{value:t.editForm.name,callback:function(e){t.$set(t.editForm,"name",e)},expression:"editForm.name"}})],1)]),t._v(" "),a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{attrs:{id:"protocol",placeholder:"mailto:",required:!0,title:t.$t("settings.personalization_contact_field_type_modal_protocol")},on:{submit:t.update},model:{value:t.editForm.protocol,callback:function(e){t.$set(t.editForm,"protocol",e)},expression:"editForm.protocol"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_modal_protocol_help"))+"\n ")])],1)]),t._v(" "),a("div",{staticClass:"form-group"},[a("div",{staticClass:"col-md-auto"},[a("form-input",{attrs:{id:"icon",placeholder:"fa fa-address-book-o",required:!0,title:t.$t("settings.personalization_contact_field_type_modal_icon")},on:{submit:t.update},model:{value:t.editForm.icon,callback:function(e){t.$set(t.editForm,"icon",e)},expression:"editForm.icon"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_modal_icon_help"))+"\n ")])],1)])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.update(e)}}},[t._v("\n "+t._s(t.$t("app.edit"))+"\n ")])])],1),t._v(" "),a("sweet-modal",{ref:"modalDeleteContactFieldType",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_contact_field_type_modal_delete_title")}},[a("p",[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_modal_delete_description"))+"\n ")]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal(e)}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.trash(e)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],1)}),[],!1,null,null,null).exports},921:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{davRoute:{type:String,default:""},cardDavRoute:{type:String,default:""},calDavBirthdaysRoute:{type:String,default:""},calDavTasksRoute:{type:String,default:""}},methods:{copyIntoClipboard:function(t){var e=this;this.$copyText(t).then((function(t){e.notify(e.$t("settings.dav_clipboard_copied"),!0)}))},notify:function(t,e){this.$notify({group:"dav",title:t,text:"",type:e?"success":"error"})}}};a(7509);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("h2",[t._v(t._s(t.$t("settings.dav_title")))]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.dav_description")))]),t._v(" "),a("notifications",{attrs:{group:"dav",position:"top middle",duration:5e3,width:"400"}}),t._v(" "),a("div",{staticClass:"form-group"},[a("label",{attrs:{for:"dav_url_base"}},[t._v("\n "+t._s(t.$t("settings.dav_url_base"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("input",{staticClass:"url form-control",attrs:{id:"dav_url_base",type:"text",readonly:""},domProps:{value:t.davRoute}}),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{title:t.$t("settings.dav_copy_help"),href:""},on:{click:function(e){return e.preventDefault(),t.copyIntoClipboard(t.davRoute)}}},[t._v("\n "+t._s(t.$t("app.copy"))+"\n ")]),t._v(" "),a("p",[t._v("\n "+t._s(t.$t("settings.dav_connect_help"))+"\n ")]),t._v(" "),a("p",[t._v("\n "+t._s(t.$t("settings.dav_connect_help2"))+"\n ")])]),t._v(" "),a("div",{staticClass:"settings-group"},[a("h2",[t._v(t._s(t.$t("settings.dav_title_carddav")))]),t._v(" "),a("div",{staticClass:"form-group"},[a("label",{attrs:{for:"dav_url_carddav"}},[t._v("\n "+t._s(t.$t("settings.dav_url_carddav"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("input",{staticClass:"url form-control",attrs:{id:"dav_url_carddav",type:"text",readonly:""},domProps:{value:t.cardDavRoute}}),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{title:t.$t("settings.dav_copy_help"),href:""},on:{click:function(e){return e.preventDefault(),t.copyIntoClipboard(t.cardDavRoute)}}},[t._v("\n "+t._s(t.$t("app.copy"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("a",{attrs:{href:t.cardDavRoute+"?export"}},[t._v("\n "+t._s(t.$t("settings.dav_carddav_export"))+"\n ")])])]),t._v(" "),a("div",{staticClass:"settings-group"},[a("h2",[t._v(t._s(t.$t("settings.dav_title_caldav")))]),t._v(" "),a("div",{staticClass:"form-group"},[a("label",{attrs:{for:"dav_url_caldav_birthdays"}},[t._v("\n "+t._s(t.$t("settings.dav_url_caldav_birthdays"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("input",{staticClass:"url form-control",attrs:{id:"dav_url_caldav_birthdays",type:"text",readonly:""},domProps:{value:t.calDavBirthdaysRoute}}),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{title:t.$t("settings.dav_copy_help"),href:""},on:{click:function(e){return e.preventDefault(),t.copyIntoClipboard(t.calDavBirthdaysRoute)}}},[t._v("\n "+t._s(t.$t("app.copy"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("a",{attrs:{href:t.calDavBirthdaysRoute+"?export"}},[t._v("\n "+t._s(t.$t("settings.dav_caldav_birthdays_export"))+"\n ")])]),t._v(" "),a("div",{staticClass:"form-group"},[a("label",{attrs:{for:"dav_url_caldav_tasks"}},[t._v("\n "+t._s(t.$t("settings.dav_url_caldav_tasks"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("input",{staticClass:"url form-control",attrs:{id:"dav_url_caldav_tasks",type:"text",readonly:""},domProps:{value:t.calDavTasksRoute}}),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{title:t.$t("settings.dav_copy_help"),href:""},on:{click:function(e){return e.preventDefault(),t.copyIntoClipboard(t.calDavTasksRoute)}}},[t._v("\n "+t._s(t.$t("app.copy"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("a",{attrs:{href:t.calDavTasksRoute+"?export"}},[t._v("\n "+t._s(t.$t("settings.dav_caldav_tasks_export"))+"\n ")])])])],1)}),[],!1,null,"c35b6c4c",null).exports},7645:(t,e,a)=>{"use strict";a.d(e,{Z:()=>n});function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}const s={components:{SweetModal:a(2369).y},data:function(){return{genders:[],genderTypes:[],updatedGender:{id:"",name:"",type:"",isDefault:!1},errorMessage:"",createForm:{name:"",type:"",isDefault:!1,errors:[]},updateForm:{id:"",name:"",type:"",isDefault:!1,errors:[]},deleteForm:{id:"",name:"",isDefault:!1,numberOfContacts:0,newId:0},defaultGenderId:null}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir},toggleOptions:function(){return{checked:this.$t("app.yes"),unchecked:this.$t("app.no")}},defaultGenderType:function(){var t=_.findIndex(this.genders,["isDefault",!0]);return this.genders[t>=0?t:0]}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){axios.all([this.getGenders(),this.getGenderTypes()])},setDefaultGenderType:function(){this.createForm.type=this.defaultGenderType.type},getGenders:function(){var t=this;return axios.get("settings/personalization/genders").then((function(e){t.genders=_.toArray(e.data),t.setDefaultGenderType()}))},getGenderTypes:function(){var t=this;return axios.get("settings/personalization/genderTypes").then((function(e){t.genderTypes=_.toArray(e.data)}))},closeModal:function(){this.$refs.createModal.close()},closeUpdateModal:function(){this.$refs.updateModal.close()},closeDeleteModal:function(){this.$refs.deleteModal.close()},closeDefaultGenderModal:function(){this.$refs.defaultGenderModal.close()},showCreateModal:function(){this.$refs.createModal.open()},showDefaultGenderModal:function(){this.defaultGenderId=this.defaultGenderType.id,this.$refs.defaultGenderModal.open()},store:function(){var t=this;axios.post("settings/personalization/genders",this.createForm).then((function(e){t.closeModal(),t.getGenders(),t.createForm.name="",t.createForm.type=""}))},showEdit:function(t){this.updateForm.id=t.id.toString(),this.updateForm.name=t.name,this.updateForm.type=t.type,this.updateForm.isDefault=t.isDefault,this.updatedGender=t,this.$refs.updateModal.open()},update:function(){var t=this;axios.put("settings/personalization/genders/"+this.updateForm.id,this.updateForm).then((function(e){t.closeUpdateModal(),t.getGenders(),t.updatedGender.name=t.updateForm.name,t.updatedGender.type=t.updateForm.type,t.updatedGender.isDefault=t.updateForm.isDefault,t.updateForm.name=""}))},showDelete:function(t){this.errorMessage="",this.deleteForm.name=t.name,this.deleteForm.id=t.id.toString(),this.deleteForm.isDefault=t.isDefault,this.deleteForm.numberOfContacts=t.numberOfContacts,this.$refs.deleteModal.open()},trash:function(){var t=this;axios.delete("settings/personalization/genders/"+this.deleteForm.id).then((function(e){t.closeDeleteModal(),t.getGenders()}))},trashAndReplace:function(){var t=this;axios.delete("settings/personalization/genders/"+this.deleteForm.id+"/replaceby/"+this.deleteForm.newId).then((function(e){t.closeDeleteModal(),t.getGenders()})).catch((function(e){"object"===i(e.response.data)?t.errorMessage=e.response.data.message:t.errorMessage=t.$t("app.error_try_again")}))},updateDefaultGender:function(){var t=this;axios.put("settings/personalization/genders/default/"+this.defaultGenderId).then((function(e){t.closeDefaultGenderModal(),t.getGenders()}))}}};const n=(0,a(1900).Z)(s,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),a("h3",{staticClass:"mb3"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_title"))+"\n "),a("a",{staticClass:"btn nt2",class:[t.dirltr?"fr":"fl"],attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showCreateModal(e)}}},[t._v("\n "+t._s(t.$t("settings.personalization_genders_add"))+"\n ")])]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.personalization_genders_desc")))]),t._v(" "),a("div",{staticClass:"dt dt--fixed w-100 collapse br--top br--bottom"},[a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_table_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_table_sex"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_table_default"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_actions"))+"\n ")])])]),t._v(" "),t._l(t.genders,(function(e){return a("div",{key:e.id,staticClass:"dt-row bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[t._v("\n "+t._s(e.name)+"\n "),a("span",{staticClass:"i"},[t._v("\n "+t._s(t.$tc("settings.personalization_genders_list_contact_number",e.numberOfContacts,{count:e.numberOfContacts}))+"\n ")])])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_"+e.type.toLowerCase()))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[e.isDefault?[t._v("\n "+t._s(t.$t("settings.personalization_genders_default"))+"\n ")]:t._e()],2)]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[a("em",{staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.showEdit(e)}}}),t._v(" "),t.genders.length>1?a("em",{staticClass:"fa fa-trash-o pointer",on:{click:function(a){return t.showDelete(e)}}}):t._e()])])])}))],2),t._v(" "),a("div",{staticClass:"mt2",class:[t.dirltr?"tr":"tl"]},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showDefaultGenderModal(e)}}},[t._v(t._s(t.$t("settings.personalization_genders_make_default")))])]),t._v(" "),a("sweet-modal",{ref:"createModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_genders_modal_add")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.store()}}},[a("div",{staticClass:"form-group"},[a("div",{staticClass:"form-group"},[a("form-input",{attrs:{id:"","input-type":"text",required:!0,title:t.$t("settings.personalization_genders_modal_name")},model:{value:t.createForm.name,callback:function(e){t.$set(t.createForm,"name",e)},expression:"createForm.name"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_modal_name_help"))+"\n ")])],1),t._v(" "),a("div",{staticClass:"form-group"},[a("form-select",{attrs:{id:"",options:t.genderTypes,required:!0,title:t.$t("settings.personalization_genders_modal_sex")},model:{value:t.createForm.type,callback:function(e){t.$set(t.createForm,"type",e)},expression:"createForm.type"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_modal_sex_help"))+"\n ")])],1),t._v(" "),a("div",{staticClass:"form-group"},[a("form-toggle",{attrs:{id:"",labels:t.toggleOptions,required:!0,title:t.$t("settings.personalization_genders_modal_default")},model:{value:t.createForm.isDefault,callback:function(e){t.$set(t.createForm,"isDefault",e)},expression:"createForm.isDefault"}})],1)])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.store()}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"updateModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_genders_modal_edit")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.update(t.updatedGender)}}},[a("div",{staticClass:"form-group"},[a("div",{staticClass:"form-group"},[a("form-input",{attrs:{id:"","input-type":"text",required:!0,title:t.$t("settings.personalization_genders_modal_name")},model:{value:t.updateForm.name,callback:function(e){t.$set(t.updateForm,"name",e)},expression:"updateForm.name"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_modal_name_help"))+"\n ")])],1),t._v(" "),a("div",{staticClass:"form-group"},[a("form-select",{attrs:{id:"",options:t.genderTypes,required:!0,title:t.$t("settings.personalization_genders_modal_sex")},model:{value:t.updateForm.type,callback:function(e){t.$set(t.updateForm,"type",e)},expression:"updateForm.type"}}),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_modal_sex_help"))+"\n ")])],1),t._v(" "),a("div",{staticClass:"form-group"},[a("form-toggle",{attrs:{id:"",labels:t.toggleOptions,required:!0,title:t.$t("settings.personalization_genders_modal_default")},model:{value:t.updateForm.isDefault,callback:function(e){t.$set(t.updateForm,"isDefault",e)},expression:"updateForm.isDefault"}})],1)])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeUpdateModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.update(t.updatedGender)}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"deleteModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_genders_modal_delete")}},[a("form",[""!=t.errorMessage?a("div",{staticClass:"form-error-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.errorMessage)+"\n ")])])]):t._e(),t._v(" "),a("div",{staticClass:"mb4"},[a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("settings.personalization_genders_modal_delete_desc",{name:t.deleteForm.name}))+"\n ")]),t._v(" "),0!=t.deleteForm.numberOfContacts||t.deleteForm.isDefault?a("div",[0!=t.deleteForm.numberOfContacts?a("p",[t._v("\n "+t._s(t.$tc("settings.personalization_genders_modal_delete_question",t.deleteForm.numberOfContacts,{count:t.deleteForm.numberOfContacts}))+"\n ")]):a("p",[t._v("\n "+t._s(t.$tc("settings.personalization_genders_modal_delete_question_default"))+"\n ")]),t._v(" "),a("form-select",{attrs:{id:"deleteNewId",options:t.genders,required:!0,title:"","excluded-id":t.deleteForm.id},model:{value:t.deleteForm.newId,callback:function(e){t.$set(t.deleteForm,"newId",e)},expression:"deleteForm.newId"}})],1):t._e()])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDeleteModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),0!==t.deleteForm.numberOfContacts||t.deleteForm.isDefault?a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.trashAndReplace()}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")]):a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.trash()}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"defaultGenderModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_genders_modal_default")}},[a("form",[a("div",{staticClass:"form-group"},[a("div",{staticClass:"form-group"},[a("form-select",{attrs:{id:"",options:t.genders,required:!0,title:t.$t("settings.personalization_genders_select_default")},model:{value:t.defaultGenderId,callback:function(e){t.defaultGenderId=e},expression:"defaultGenderId"}})],1)])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDefaultGenderModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.updateDefaultGender()}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])])],1)}),[],!1,null,null,null).exports},7764:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},props:{limited:{type:Boolean,default:!1}},data:function(){return{lifeEventCategories:[],errorMessage:"",createTypeForm:{name:"",life_event_category_id:"",errors:[]},updateTypeForm:{id:"",name:"",life_event_category_id:"",errors:[]},destroyTypeForm:{id:"",errors:[]}}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getLifeEventCategories()},getLifeEventCategories:function(){var t=this;axios.get("settings/personalization/lifeeventcategories").then((function(e){t.lifeEventCategories=e.data}))},showCreateType:function(t){this.$refs.createTypeModal.open(),this.createTypeForm.life_event_category_id=t.id},showDeleteType:function(t){this.destroyTypeForm.id=t.id,this.$refs.deleteTypeModal.open()},showEditType:function(t,e){this.updateTypeForm.id=t.id,this.updateTypeForm.name=t.name?t.name:this.$t("people.life_event_sentence_"+t.default_life_event_type_key),this.updateTypeForm.life_event_category_id=e,this.$refs.updateTypeModal.open()},closeCreateTypeModal:function(){this.$refs.createTypeModal.close()},closeUpdateTypeModal:function(){this.$refs.updateTypeModal.close()},closeDeleteTypeModal:function(){this.$refs.deleteTypeModal.close()},storeType:function(){var t=this;axios.post("settings/personalization/lifeeventtypes",this.createTypeForm).then((function(e){t.$refs.createTypeModal.close(),t.createTypeForm.name="",t.getLifeEventCategories(),t.notify(t.$t("app.default_save_success"),!0)}))},updateType:function(){var t=this;axios.put("settings/personalization/lifeeventtypes/"+this.updateTypeForm.id,this.updateTypeForm).then((function(e){t.$refs.updateTypeModal.close(),t.updateTypeForm.name="",t.getLifeEventCategories(),t.notify(t.$t("app.default_save_success"),!0)}))},destroyType:function(){var t=this;axios.delete("settings/personalization/lifeeventtypes/"+this.destroyTypeForm.id).then((function(e){t.$refs.deleteTypeModal.close(),t.destroyTypeForm.id="",t.getLifeEventCategories(),t.notify(t.$t("app.default_save_success"),!0)})).catch((function(e){t.errorMessage=e.response.data.message}))},notify:function(t,e){this.$notify({group:"lifeEventTypes",title:t,text:"",type:e?"success":"error"})}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"lifeEventTypes",position:"bottom right"}}),t._v(" "),a("h3",{staticClass:"with-actions"},[t._v("\n "+t._s(t.$t("settings.personalization_life_event_category_title"))+"\n ")]),t._v(" "),a("p",[t._v(t._s(t.$t("settings.personalization_life_event_category_description")))]),t._v(" "),t.limited?a("div",{staticClass:"mt3 mb3 form-information-message br2"},[a("div",{staticClass:"pa3 flex"},[a("div",{staticClass:"mr3"},[a("svg",{attrs:{viewBox:"0 0 20 20"}},[a("g",{attrs:{"fill-rule":"evenodd"}},[a("circle",{attrs:{cx:"10",cy:"10",r:"9",fill:"currentColor"}}),a("path",{attrs:{d:"M10 0C4.486 0 0 4.486 0 10s4.486 10 10 10 10-4.486 10-10S15.514 0 10 0m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8m1-5v-3a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2v3a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2m-1-5.9a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2"}})])])]),t._v(" "),a("div",{domProps:{innerHTML:t._s(t.$t("settings.personalisation_paid_upgrade_vue",{url:"settings/subscriptions"}))}})])]):t._e(),t._v(" "),a("div",{staticClass:"dt dt--fixed w-100 collapse br--top br--bottom"},[a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_live_event_category_table_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_live_event_category_table_actions"))+"\n ")])])])]),t._v(" "),a("div",[a("ul",t._l(t.lifeEventCategories,(function(e){return a("li",{key:e.id,staticClass:"dt dt--fixed w-100 collapse br--top br--bottom mt3"},[a("div",{staticClass:"dt-row hover bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[a("strong",[t._v(t._s(t.$t("people.life_event_category_"+e.default_life_event_category_key)))])])]),t._v(" "),a("div",{staticClass:"dtc"})]),t._v(" "),t._l(e.lifeEventTypes,(function(i){return a("div",{key:i.id,staticClass:"dt-row hover bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 pl4"},[i.name?[t._v("\n "+t._s(i.name)+"\n ")]:[t._v("\n "+t._s(t.$t("people.life_event_sentence_"+i.default_life_event_type_key))+"\n ")]],2)]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[t.limited?t._e():a("em",{staticClass:"fa fa-pencil-square-o pointer pr2",on:{click:function(a){return t.showEditType(i,e.id)}}}),t._v(" "),t.limited?t._e():a("em",{staticClass:"fa fa-trash-o pointer",on:{click:function(e){return t.showDeleteType(i)}}})])])])})),t._v(" "),t.limited?t._e():a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 pl4"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showCreateType(e)}}},[t._v("\n "+t._s(t.$t("settings.personalization_life_event_type_add_button"))+"\n ")])])])])],2)})),0)]),t._v(" "),a("sweet-modal",{ref:"createTypeModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_life_event_type_modal_add")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.storeType()}}},[a("div",{staticClass:"mb4"},[a("p",{staticClass:"b mb2"}),t._v(" "),a("form-input",{attrs:{id:"add-type-name","input-type":"text",required:!0,title:t.$t("settings.personalization_life_event_type_modal_question")},model:{value:t.createTypeForm.name,callback:function(e){t.$set(t.createTypeForm,"name",e)},expression:"createTypeForm.name"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeCreateTypeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.storeType()}}},[t._v("\n "+t._s(t.$t("app.save"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"updateTypeModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_life_event_type_modal_edit")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.updateType()}}},[a("div",{staticClass:"mb4"},[a("p",{staticClass:"b mb2"}),t._v(" "),a("form-input",{attrs:{id:"update-type-name","input-type":"text",required:!0,title:t.$t("settings.personalization_life_event_type_modal_question")},model:{value:t.updateTypeForm.name,callback:function(e){t.$set(t.updateTypeForm,"name",e)},expression:"updateTypeForm.name"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeUpdateTypeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.updateType()}}},[t._v("\n "+t._s(t.$t("app.update"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"deleteTypeModal",attrs:{"overlay-theme":"dark",title:t.$t("settings.personalization_life_event_type_modal_delete")}},[a("form",[""!=t.errorMessage?a("div",{staticClass:"form-error-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.errorMessage)+"\n ")])])]):t._e(),t._v(" "),a("div",{staticClass:"mb4"},[a("p",{staticClass:"mb2"},[t._v("\n "+t._s(t.$t("settings.personalization_life_event_type_modal_delete_desc"))+"\n ")])])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDeleteTypeModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.destroyType()}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],1)}),[],!1,null,null,null).exports},6487:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},props:{activated:{type:Boolean,default:!1}},data:function(){return{selectActivated:!1,errorMessage:"",infoMessage:"",success:!1,one_time_password:"",image:"",secret:""}},watch:{activated:function(t){this.selectActivated=t}},mounted:function(){this.selectActivated=this.activated},methods:{register:function(){var t=this;axios.post("settings/security/2fa-enable",{one_time_password:this.one_time_password}).then((function(e){t.closeEnableModal(),t.selectActivated=e.data.success,e.data.success?t.notify(t.$t("settings.2fa_enable_success"),!0):t.notify(t.$t("settings.2fa_enable_error"),!1)})).catch((function(e){t.closeEnableModal(),t.notify(e.response.data.message,!1)}))},unregister:function(){var t=this;axios.post("settings/security/2fa-disable",{one_time_password:this.one_time_password}).then((function(e){t.closeDisableModal(),t.selectActivated=!e.data.success,e.data.success?t.notify(t.$t("settings.2fa_disable_success"),!0):t.notify(t.$t("settings.2fa_disable_error"),!1)})).catch((function(e){t.closeDisableModal(),t.notify(e.response.data.message,!1)}))},showEnableModal:function(){var t=this;this.one_time_password="",axios.get("settings/security/2fa-enable").then((function(e){t.image=e.data.image,t.secret=e.data.secret,t.$refs.enableModal.open()})).catch((function(e){t.notify(e.response.data.message,!1)}))},showDisableModal:function(){this.one_time_password="",this.$refs.disableModal.open()},closeEnableModal:function(){this.$refs.enableModal.close()},closeDisableModal:function(){this.$refs.disableModal.close()},notify:function(t,e){this.$notify({group:"mfa",title:t,text:"",type:e?"success":"error"})}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("notifications",{attrs:{group:"mfa",position:"bottom right",duration:5e3,width:"400"}}),t._v(" "),a("h3",[t._v(t._s(t.$t("settings.2fa_otp_title")))]),t._v(" "),a("div",{staticClass:"form-group"},[t.selectActivated?a("a",{staticClass:"btn btn-warning",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showDisableModal(e)}}},[t._v("\n "+t._s(t.$t("settings.2fa_disable_title"))+"\n ")]):a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showEnableModal(e)}}},[t._v("\n "+t._s(t.$t("settings.2fa_enable_title"))+"\n ")])]),t._v(" "),a("sweet-modal",{ref:"enableModal",attrs:{id:"enableModal","overlay-theme":"dark",title:t.$t("settings.2fa_otp_title")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.register()}}},[a("p",[t._v(t._s(t.$t("settings.2fa_enable_description")))]),t._v(" "),a("div",{staticClass:"panel-body"},[t._v("\n "+t._s(t.$t("settings.2fa_enable_otp"))+"\n "),a("p",[a("img",{attrs:{id:"barcode",alt:"Image of QR barcode",src:t.image}}),t._v(" "),a("br"),t._v("\n "+t._s(t.$t("settings.2fa_enable_otp_help"))+"\n "),a("code",{attrs:{id:"secretkey"}},[t._v("\n "+t._s(t.secret)+"\n ")])])]),t._v(" "),a("div",{staticClass:"form-group"},[a("p",[t._v("\n "+t._s(t.$t("settings.2fa_enable_otp_validate"))+"\n ")]),t._v(" "),a("form-input",{attrs:{id:"one_time_password1",title:t.$t("auth.2fa_one_time_password"),"input-type":"number",width:100,required:!0},model:{value:t.one_time_password,callback:function(e){t.one_time_password=e},expression:"one_time_password"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn btn-primary",attrs:{id:"verify1",href:""},on:{click:function(e){return e.preventDefault(),t.register()}}},[t._v("\n "+t._s(t.$t("app.verify"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeEnableModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"disableModal",attrs:{id:"disableModal","overlay-theme":"dark",title:t.$t("settings.2fa_otp_title")}},[a("form",{on:{submit:function(e){return e.preventDefault(),t.register()}}},[a("p",[t._v(t._s(t.$t("settings.2fa_disable_description")))]),t._v(" "),a("div",{staticClass:"form-group"},[a("form-input",{attrs:{id:"one_time_password2",title:t.$t("auth.2fa_one_time_password"),"input-type":"number",width:100,required:!0},model:{value:t.one_time_password,callback:function(e){t.one_time_password=e},expression:"one_time_password"}})],1)]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn btn-primary",attrs:{id:"verify2",href:""},on:{click:function(e){return e.preventDefault(),t.unregister()}}},[t._v("\n "+t._s(t.$t("app.verify"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDisableModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])],1)}),[],!1,null,null,null).exports},881:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{limited:{type:Boolean,default:!1}},data:function(){return{modules:[]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.getModules()},methods:{getModules:function(){var t=this;axios.get("settings/personalization/modules").then((function(e){t.modules=e.data}))},toggle:function(t){var e=this;axios.post("settings/personalization/modules/"+t.id).then((function(a){e.$notify({group:"main",title:e.$t("settings.personalization_module_save"),text:"",type:"success"}),e.$set(t,"active",a.data.data.active)}))}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"reminder-rules"},[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),a("h3",{staticClass:"mb3"},[t._v("\n "+t._s(t.$t("settings.personalization_module_title"))+"\n ")]),t._v(" "),a("p",[t._v("\n "+t._s(t.$t("settings.personalization_module_desc"))+"\n ")]),t._v(" "),t.limited?a("div",{staticClass:"mt3 mb3 form-information-message br2"},[a("div",{staticClass:"pa3 flex"},[a("div",{staticClass:"mr3"},[a("svg",{attrs:{viewBox:"0 0 20 20"}},[a("g",{attrs:{"fill-rule":"evenodd"}},[a("circle",{attrs:{cx:"10",cy:"10",r:"9",fill:"currentColor"}}),a("path",{attrs:{d:"M10 0C4.486 0 0 4.486 0 10s4.486 10 10 10 10-4.486 10-10S15.514 0 10 0m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8m1-5v-3a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2v3a1 1 0 0 0 1 1h1a1 1 0 1 0 0-2m-1-5.9a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2"}})])])]),t._v(" "),a("div",{domProps:{innerHTML:t._s(t.$t("settings.personalisation_paid_upgrade_vue",{url:"settings/subscriptions"}))}})])]):t._e(),t._v(" "),a("div",{staticClass:"dt dt--fixed w-100 collapse br--top br--bottom"},[a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_actions"))+"\n ")])])]),t._v(" "),t._l(t.modules,(function(e){return a("div",{key:e.id,staticClass:"dt-row hover bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[t._v("\n "+t._s(e.name)+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[a("form-toggle",{attrs:{iclass:"module-",disabled:t.limited,labels:!0},on:{change:function(a){return t.toggle(e,a)}},model:{value:e.active,callback:function(a){t.$set(e,"active",a)},expression:"module.active"}})],1)])])}))],2)],1)}),[],!1,null,null,null).exports},6922:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={components:{SweetModal:a(2369).y},data:function(){return{codes:[]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir},usedHelp:function(){return this.$t("settings.recovery_already_used_help")},copyHelp:function(){return this.$t("settings.recovery_copy_help")}},methods:{showRecoveryModal:function(){var t=this;this.codes=[],axios.post("settings/security/recovery-codes").then((function(e){t.codes=e.data,t.$refs.recoveryModal.open()})).catch((function(e){t.notify(e.response.data.message,!1)}))},generateNewCodes:function(){var t=this;this.codes=[],axios.post("settings/security/generate-recovery-codes").then((function(e){t.codes=e.data})).catch((function(e){t.notify(e.response.data.message,!1)}))},closeRecoveryModal:function(){this.$refs.recoveryModal.close()},copyIntoClipboard:function(){var t=this;this.$copyText(this.getDataStream()).then((function(e){t.notify(t.$t("settings.recovery_clipboard"),!0)}))},getDataStream:function(){var t=this.$t("settings.recovery_help_intro")+"\n",e=1;return this.codes.forEach((function(a){a.used?t+=e+". ---------\n":t+=e+". "+a.recovery+"\n",e++})),t},notify:function(t,e){this.$notify({group:"recovery",title:t,text:"",type:e?"success":"error"})}}};a(5270);const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("h3",[t._v(t._s(t.$t("settings.recovery_title")))]),t._v(" "),a("div",{staticClass:"form-group"},[a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showRecoveryModal(e)}}},[t._v("\n "+t._s(t.$t("settings.recovery_show"))+"\n ")])]),t._v(" "),a("sweet-modal",{ref:"recoveryModal",attrs:{id:"recoveryModal","overlay-theme":"dark",title:t.$t("settings.recovery_title")}},[a("notifications",{attrs:{group:"recovery",position:"top middle",duration:5e3,width:"400"}}),t._v(" "),a("p",[t._v(t._s(t.$t("settings.recovery_help_intro")))]),t._v(" "),a("p",{class:[t.dirltr?"ml3":"mr3"]},t._l(t.codes,(function(e){return a("span",{directives:[{name:"cy-name",rawName:"v-cy-name",value:"recovery-"+e.id,expression:"'recovery-' + code.id"}],key:e.id},[a("pre",{staticClass:"code",class:[e.used?"used":""],attrs:{title:[e.used?t.usedHelp:""]}},[t._v(t._s(e.recovery))])])})),0),t._v(" "),a("p",[t._v(t._s(t.$t("settings.recovery_help_information")))]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("span",{class:[t.dirltr?"fl":"fr"]},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.generateNewCodes(e)}}},[t._v("\n "+t._s(t.$t("settings.recovery_generate"))+"\n ")]),t._v(" "),a("br"),t._v(" "),a("small",{staticClass:"form-text text-muted"},[t._v("\n "+t._s(t.$t("settings.recovery_generate_help"))+"\n ")])]),t._v(" "),a("span",{class:[t.dirltr?"fr":"fl"]},[a("a",{staticClass:"btn btn-primary",attrs:{title:t.copyHelp,href:""},on:{click:function(e){return e.preventDefault(),t.copyIntoClipboard(e)}}},[t._v("\n "+t._s(t.$t("app.copy"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeRecoveryModal(e)}}},[t._v("\n "+t._s(t.$t("app.close"))+"\n ")])])])],1)],1)}),[],!1,null,"1804a17e",null).exports},5282:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={data:function(){return{reminderRules:[]}},computed:{dirltr:function(){return"ltr"==this.$root.htmldir}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.getReminderRules()},getReminderRules:function(){var t=this;axios.get("settings/personalization/reminderrules").then((function(e){t.reminderRules=e.data}))},toggle:function(t,e){var a=this;axios.post("settings/personalization/reminderrules/"+t.id).then((function(e){a.$notify({group:"main",title:a.$t("settings.personalization_reminder_rule_save"),text:"",type:"success"}),a.$set(t,"active",e.data.data.active)}))}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"reminder-rules"},[a("notifications",{attrs:{group:"main",position:"bottom right"}}),t._v(" "),a("h3",{staticClass:"mb3"},[t._v("\n "+t._s(t.$t("settings.personalization_reminder_rule_title"))+"\n ")]),t._v(" "),a("p",[t._v("\n "+t._s(t.$t("settings.personalization_reminder_rule_desc"))+"\n ")]),t._v(" "),a("div",{staticClass:"dt dt--fixed w-100 collapse br--top br--bottom"},[a("div",{staticClass:"dt-row"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_name"))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2 b"},[t._v("\n "+t._s(t.$t("settings.personalization_contact_field_type_table_actions"))+"\n ")])])]),t._v(" "),t._l(t.reminderRules,(function(e){return a("div",{key:e.id,staticClass:"dt-row bb b--light-gray"},[a("div",{staticClass:"dtc"},[a("div",{staticClass:"pa2"},[t._v("\n "+t._s(t.$tc("settings.personalization_reminder_rule_line",e.number_of_days_before,{count:e.number_of_days_before}))+"\n ")])]),t._v(" "),a("div",{staticClass:"dtc",class:[t.dirltr?"tr":"tl"]},[a("div",{staticClass:"pa2"},[a("form-toggle",{attrs:{iclass:"reminder-rule-"+e.number_of_days_before,labels:!0},on:{change:function(a){return t.toggle(e,a)}},model:{value:e.active,callback:function(a){t.$set(e,"active",a)},expression:"reminderRule.active"}})],1)])])}))],2)],1)}),[],!1,null,null,null).exports},1720:(t,e,a)=>{"use strict";a.d(e,{Z:()=>s});const i={props:{timezone:{type:String,default:"UTC"},timezones:{type:Array,default:function(){return[]}},reminder:{type:String,default:""},hours:{type:Array,default:function(){return[]}}},data:function(){return{message:"",updatedTimezone:"",updatedReminder:""}},mounted:function(){this.prepareComponent()},methods:{prepareComponent:function(){this.updatedReminder=this.reminder,this.updatedTimezone=this.timezone,this.computeMessage()},timezoneUpdate:function(t){this.updatedTimezone=t,this.computeMessage()},reminderUpdate:function(t){this.updatedReminder=t,this.computeMessage()},computeMessage:function(){var t=a(8);t.locale(this._i18n.locale),t.tz.setDefault("UTC");var e=t(),i=e.format("YYYY-MM-DD "+this.updatedReminder+":00"),s=t.tz(i,this.updatedTimezone);s.isBefore(e)&&(s=s.add(1,"days")),this.message=this.$t("settings.reminder_time_to_send_help",{dateTime:s.format("LLL"),dateTimeUtc:s.utc().format("YYYY-MM-DD HH:mm z")})}}};const s=(0,a(1900).Z)(i,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{staticClass:"form-group"},[a("form-select",{attrs:{id:"timezone",value:t.updatedTimezone,options:t.timezones,title:t.$t("settings.timezone"),required:!0,iclass:"form-control"},on:{input:t.timezoneUpdate}})],1),t._v(" "),a("div",{staticClass:"form-group"},[a("form-select",{attrs:{id:"reminder_time",value:t.updatedReminder,options:t.hours,title:t.$t("settings.reminder_time_to_send"),required:!0,iclass:"form-control"},on:{input:t.reminderUpdate}}),t._v(" "),a("small",{staticClass:"form-text text-muted",domProps:{innerHTML:t._s(t.message)}})],1)])}),[],!1,null,null,null).exports},5874:(t,e,a)=>{"use strict";a.d(e,{Z:()=>o});var i=a(2369),s=a(3184);const n={components:{SweetModal:i.y},props:{keys:{type:Array,default:function(){return[]}},publicKey:{type:Object,default:null},method:{type:String,default:""},timezone:{type:String,default:""},script:{type:String,default:""}},data:function(){return{isSupported:!0,errorMessage:"",infoMessage:"",success:!1,currentkeys:[],keyToTrash:"",keyName:"",registerTab:"",data:null,webauthn:null}},mounted:function(){this.prepareComponent(),this.start()},methods:{prepareComponent:function(){var t=this;this.currentkeys=this.keys,this.data=this.registerdata,this.webauthn=new s((function(e,a){t.errorMessage=t._errorMessage(e,a)}))},_errorMessage:function(t,e){switch(t){case"InvalidStateError":return this.$t("settings.webauthn_error_already_used");case"NotAllowedError":return this.$t("settings.webauthn_error_not_allowed");default:return e}},notSupportedMessage:function(){return this.$t("settings.webauthn_"+this.webauthn.notSupportedMessage())},start:function(){var t=this;switch(this.errorMessage="",this.webauthn.webAuthnSupport()||(this.isSupported=!1,this.errorMessage=this.notSupportedMessage()),this.method){case"register":setTimeout((function(){t.webauthn.register(t.publicKey,(function(e){t.webauthnRegisterCallback(e,!0)}))}),10);break;case"login":this.webauthn.sign(this.publicKey,(function(e){t.webauthnLoginCallback(e)}))}},showRegisterModal:function(){this.errorMessage="",this.infoMessage="",this.keyName="",this.success=!1,this.showRegisterModalTab("1"),this.$refs.registerModal.open()},showRegisterModalTab:function(t){this.registerTab=t},startRegister:function(){var t=this;this.errorMessage="",axios.get("webauthn/register").then((function(e){if("2"==t.registerTab){var a=e.data.publicKey;setTimeout((function(){t.webauthn.register(a,(function(e){t.webauthnRegisterCallback(e,!1)}))}),10)}})).catch((function(e){t.notify(e.response.data.message,!1)}))},closeRegisterModal:function(){this.$refs.registerModal.close(),this.showRegisterModalTab("")},webauthnRegisterCallback:function(t,e){var a=this;axios.post("webauthn/register",{register:JSON.stringify(t),name:a.keyName}).then((function(t){a.success=!0,a.notify(a.$t("settings.webauthn_success"),!0),a.currentkeys.push({id:t.data.id,name:t.data.name,counter:t.data.counter})})).then((function(t){e?setTimeout((function(){window.location=t.data.callback}),100):a.closeRegisterModal()})).catch((function(t){a.errorMessage=t.message?t.message:t.response.data.message}))},webauthnLoginCallback:function(t){var e=this;axios.post("webauthn/auth",{data:JSON.stringify(t)}).then((function(t){e.success=!0,e.notify(e.$t("settings.webauthn_success"),!0),window.location=t.data.callback})).catch((function(t){e.errorMessage=t.message?t.message:t.response.data.message}))},webauthnRemove:function(t){var e=this;axios.delete("webauthn/"+t).then((function(t){!0===t.data.deleted&&(e.currentkeys.splice(e.currentkeys.indexOf(e.currentkeys.find((function(e){return e.id===t.data.id}))),1),e.success=!0,e.notify(e.$t("settings.webauthn_delete_success"),!0)),e.closeDeleteModal()})).catch((function(t){e.errorMessage=t.response.data.message}))},showDeleteModal:function(t){this.keyToTrash=t,this.$refs.delete.open()},closeDeleteModal:function(){this.$refs.delete.close()},formatTime:function(t){var e=a(8);e.locale(this._i18n.locale),e.tz.setDefault("UTC");var i=e(t);return e.tz(i,this.timezone).format("LLLL")},notify:function(t,e){this.$notify({group:"webauthn",title:t,text:"",type:e?"success":"error"})}}};a(8827);const o=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"form-group"},[a("notifications",{attrs:{group:"webauthn",position:"top middle",duration:5e3,width:"400"}}),t._v(" "),"register-modal"==t.method?a("div",[a("h3",[t._v(t._s(t.$t("settings.webauthn_title")))]),t._v(" "),null!=t.currentkeys?a("div",[a("ul",{staticClass:"table"},t._l(t.currentkeys,(function(e){return a("li",{key:e.id,staticClass:"table-row"},[a("div",{staticClass:"table-cell w-30"},[a("strong",[t._v(t._s(e.name))])]),t._v(" "),a("div",{staticClass:"table-cell time w-50"},[e.counter>0?[t._v("\n "+t._s(t.$t("settings.webauthn_last_use",{timestamp:t.formatTime(e.updated_at)}))+"\n ")]:t._e()],2),t._v(" "),a("div",{staticClass:"table-cell actions"},[a("a",{staticClass:"pointer",attrs:{href:""},on:{click:function(a){return a.preventDefault(),t.showDeleteModal(e.id)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])})),0)]):t._e(),t._v(" "),t._t("default"),t._v(" "),t.isSupported?a("a",{staticClass:"btn btn-primary",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showRegisterModal(e)}}},[t._v("\n "+t._s(t.$t("settings.webauthn_enable_description"))+"\n ")]):a("small",[t._v("\n "+t._s(t.notSupportedMessage())+"\n ")]),t._v(" "),a("sweet-modal",{ref:"registerModal",attrs:{id:"registerModal","overlay-theme":"dark",title:t.$t("settings.webauthn_title")}},["1"==t.registerTab?a("div",[a("p",[t._v("\n "+t._s(t.$t("settings.webauthn_key_name_help"))+"\n ")]),t._v(" "),a("form-input",{attrs:{id:"keyName",title:t.$t("settings.webauthn_key_name"),value:t.keyName,"input-type":"text",width:150,required:!0},on:{keyup:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;t.showRegisterModalTab("2"),t.startRegister()}},model:{value:t.keyName,callback:function(e){t.keyName=e},expression:"keyName"}})],1):t._e(),t._v(" "),"2"==t.registerTab?a("div",[""!=t.errorMessage?a("div",{staticClass:"form-error-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.errorMessage)+"\n ")]),t._v(" "),a("p",[a("a",{attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.startRegister()}}},[t._v("\n "+t._s(t.$t("app.retry"))+"\n ")])])])]):t._e(),t._v(" "),""!=t.infoMessage?a("div",{staticClass:"form-information-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.infoMessage)+"\n ")])])]):t._e(),t._v(" "),""==t.errorMessage?a("div",{staticClass:"tc"},[a("img",{attrs:{src:"https://ssl.gstatic.com/accounts/strongauth/Challenge_2SV-Gnubby_graphic.png",alt:t.$t("settings.webauthn_insertKey")}})]):t._e(),t._v(" "),""==t.errorMessage?a("div",{staticClass:"pa2"},[a("p",[t._v("\n "+t._s(t.$t("settings.webauthn_insertKey"))+"\n ")]),t._v(" "),a("p",[t._v("\n "+t._s(t.$t("settings.webauthn_buttonAdvise"))+"\n "),a("br"),t._v("\n "+t._s(t.$t("settings.webauthn_noButtonAdvise"))+"\n ")])]):t._e()]):t._e(),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},["1"==t.registerTab?a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){e.preventDefault(),t.showRegisterModalTab("2"),t.startRegister()}}},[t._v("\n "+t._s(t.$t("pagination.next"))+"\n ")]):a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.showRegisterModalTab("1")}}},[t._v("\n "+t._s(t.$t("pagination.previous"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeRegisterModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")])])])],2):a("div",[""!=t.errorMessage?a("div",{staticClass:"form-error-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.errorMessage)+"\n ")]),t._v(" "),a("p",[a("a",{attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.start()}}},[t._v("\n "+t._s(t.$t("app.retry"))+"\n ")])])])]):t._e(),t._v(" "),""!=t.infoMessage?a("div",{staticClass:"form-information-message mb3"},[a("div",{staticClass:"pa2"},[a("p",{staticClass:"mb0"},[t._v("\n "+t._s(t.infoMessage)+"\n ")])])]):t._e(),t._v(" "),a("div",{staticClass:"tc"},[a("img",{attrs:{src:"https://ssl.gstatic.com/accounts/strongauth/Challenge_2SV-Gnubby_graphic.png",alt:t.$t("settings.webauthn_insertKey")}})]),t._v(" "),a("div",{staticClass:"pa2"},[a("p",[t._v("\n "+t._s(t.$t("settings.webauthn_insertKey"))+"\n ")]),t._v(" "),a("p",[t._v("\n "+t._s(t.$t("settings.webauthn_buttonAdvise"))+"\n "),a("br"),t._v("\n "+t._s(t.$t("settings.webauthn_noButtonAdvise"))+"\n ")])])]),t._v(" "),a("sweet-modal",{ref:"delete",attrs:{"overlay-theme":"dark",title:"Remove a key"}},[a("form",[a("div",{staticClass:"mb4"},[t._v("\n "+t._s(t.$t("settings.webauthn_delete_confirmation"))+"\n ")])]),t._v(" "),a("div",{attrs:{slot:"button"},slot:"button"},[a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.closeDeleteModal()}}},[t._v("\n "+t._s(t.$t("app.cancel"))+"\n ")]),t._v(" "),a("a",{staticClass:"btn",attrs:{href:""},on:{click:function(e){return e.preventDefault(),t.webauthnRemove(t.keyToTrash)}}},[t._v("\n "+t._s(t.$t("app.delete"))+"\n ")])])])],1)}),[],!1,null,"0350a1ab",null).exports},2831:(t,e,a)=>{var i=a(6311);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("2fc795b1",i,!0,{})},2249:(t,e,a)=>{var i=a(3612);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("728a0c9a",i,!0,{})},4455:(t,e,a)=>{var i=a(2566);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("4a12b9ff",i,!0,{})},1317:(t,e,a)=>{var i=a(6921);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("6178f183",i,!0,{})},3553:(t,e,a)=>{var i=a(4245);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("2026d81d",i,!0,{})},8622:(t,e,a)=>{var i=a(98);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("7ddecdcf",i,!0,{})},5569:(t,e,a)=>{var i=a(5036);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("d4b6fcd4",i,!0,{})},5944:(t,e,a)=>{var i=a(4442);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("2c6f240a",i,!0,{})},8270:(t,e,a)=>{var i=a(1436);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("90fc6b76",i,!0,{})},4742:(t,e,a)=>{var i=a(5363);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("ec6ff0ee",i,!0,{})},5254:(t,e,a)=>{var i=a(2969);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("3ce2cbf0",i,!0,{})},3161:(t,e,a)=>{var i=a(1077);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("f064cf54",i,!0,{})},1183:(t,e,a)=>{var i=a(4714);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("55c7ccdf",i,!0,{})},9278:(t,e,a)=>{var i=a(643);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("0419bf61",i,!0,{})},9033:(t,e,a)=>{var i=a(7821);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("66fe33bf",i,!0,{})},9815:(t,e,a)=>{var i=a(8537);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("1dce044c",i,!0,{})},7187:(t,e,a)=>{var i=a(8366);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("6c7c6ba8",i,!0,{})},8386:(t,e,a)=>{var i=a(213);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("0b58f68f",i,!0,{})},2923:(t,e,a)=>{var i=a(4513);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("567567bb",i,!0,{})},9031:(t,e,a)=>{var i=a(2318);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("7fdcdbf5",i,!0,{})},4059:(t,e,a)=>{var i=a(3719);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("d7d17b4c",i,!0,{})},4955:(t,e,a)=>{var i=a(384);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("401b5a26",i,!0,{})},5460:(t,e,a)=>{var i=a(4762);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("3519a82e",i,!0,{})},8106:(t,e,a)=>{var i=a(8116);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("43d5e71c",i,!0,{})},7509:(t,e,a)=>{var i=a(3353);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("4c743fe5",i,!0,{})},5270:(t,e,a)=>{var i=a(9311);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("c24fdeae",i,!0,{})},8827:(t,e,a)=>{var i=a(8816);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("733a2592",i,!0,{})},2086:(t,e,a)=>{var i=a(3469);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("30933445",i,!0,{})},4366:(t,e,a)=>{var i=a(8260);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("49ad299d",i,!0,{})},1198:(t,e,a)=>{var i=a(9752);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("b6858088",i,!0,{})},9850:(t,e,a)=>{var i=a(3752);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("6808f9c3",i,!0,{})},9801:(t,e,a)=>{var i=a(7969);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.id,i,""]]),i.locals&&(t.exports=i.locals);(0,a(5346).Z)("7cc4b5ec",i,!0,{})}},t=>{"use strict";var e=e=>t(t.s=e);t.O(0,[829,893,475,898],(()=>(e(6099),e(7225),e(5807),e(6233))));t.O()}]); \ No newline at end of file diff --git a/public/js/app.js.LICENSE b/public/js/app.js.LICENSE deleted file mode 100644 index 16d32ba83de..00000000000 --- a/public/js/app.js.LICENSE +++ /dev/null @@ -1,8 +0,0 @@ -/** - * WebAuthn client. - * - * This file is part of asbiin/laravel-webauthn project. - * - * @copyright Alexis SAETTLER © 2019 - * @license MIT - */ diff --git a/public/js/app.js.LICENSE.txt b/public/js/app.js.LICENSE.txt deleted file mode 100644 index 16d32ba83de..00000000000 --- a/public/js/app.js.LICENSE.txt +++ /dev/null @@ -1,8 +0,0 @@ -/** - * WebAuthn client. - * - * This file is part of asbiin/laravel-webauthn project. - * - * @copyright Alexis SAETTLER © 2019 - * @license MIT - */ diff --git a/public/js/langs/ar.json b/public/js/langs/ar.json deleted file mode 100644 index bb45fa59937..00000000000 --- a/public/js/langs/ar.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"\u0625\u0636\u0627\u0641\u0629","another_day":"\u064a\u0648\u0645 \u0622\u062e\u0631","application_description":"Monica \u0647\u0648 \u0623\u062f\u0627\u0629 \u0644\u0625\u062f\u0627\u0631\u0629 \u062a\u0641\u0627\u0639\u0644\u0627\u062a\u0643 \u0645\u0639 \u0623\u062d\u0628\u0627\u0626\u0643\u060c \u0623\u0635\u062f\u0642\u0627\u0626\u0643 \u0648 \u0639\u0627\u0626\u0644\u062a\u0643.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica (\u0645\u0648\u0646\u064a\u0643\u0627) \u2013 \u0645\u062f\u064a\u0631 \u0627\u0644\u0639\u0644\u0627\u0642\u0627\u062a \u0627\u0644\u0634\u062e\u0635\u064a\u0629","back":"Back","breadcrumb_add_note":"\u0623\u0636\u0641 \u0645\u0644\u0627\u062d\u0638\u0629","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API (\u0648\u0627\u062c\u0647\u0629 \u0628\u0631\u0645\u062c\u0629 \u0627\u0644\u062a\u0637\u0628\u064a\u0642)","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"\u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"\u0643\u064a\u0641 \u062a\u0642\u0627\u0628\u0644\u062a\u0645\u0627","breadcrumb_edit_note":"\u062d\u0631\u0631 \u0645\u0644\u0627\u062d\u0638\u0629","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"\u064a\u0648\u0645\u064a\u0627\u062a","breadcrumb_list_contacts":"\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0623\u0634\u062e\u0627\u0635","breadcrumb_profile":"\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0634\u062e\u0635\u064a \u0644\u0640 :name","breadcrumb_settings":"\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a","breadcrumb_settings_export":"\u0627\u0633\u062a\u062e\u0631\u0627\u062c","breadcrumb_settings_import":"\u0627\u0633\u062a\u064a\u0631\u0627\u062f","breadcrumb_settings_import_report":"\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0627\u0644\u062a\u0642\u0631\u064a\u0631","breadcrumb_settings_import_upload":"\u0631\u0641\u0639","breadcrumb_settings_personalization":"\u0627\u0644\u062a\u062e\u0635\u064a\u0635","breadcrumb_settings_security":"\u0627\u0644\u0623\u0645\u0646","breadcrumb_settings_security_2fa":"\u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","breadcrumb_settings_subscriptions":"\u0627\u0634\u062a\u0631\u0627\u0643","breadcrumb_settings_tags":"\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062a","breadcrumb_settings_users":"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0648\u0646","breadcrumb_settings_users_add":"\u0625\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645","cancel":"\u0625\u0644\u063a\u0627\u0621","close":"\u0625\u063a\u0644\u0627\u0642","compliance_desc":"\u0644\u0642\u062f \u0642\u0645\u0646\u0627 \u0628\u062a\u063a\u064a\u064a\u0631 \u0634\u0631\u0648\u0637 \u0627\u0644\u0625\u0633\u062a\u062e\u062f\u0627\u0645<\/a>\u0648\u0633\u064a\u0627\u0633\u0629 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629<\/a> \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0646\u0627. \u0628\u0645\u0648\u062c\u0628 \u0627\u0644\u0642\u0627\u0646\u0648\u0646\u060c \u0646\u0637\u0644\u0628 \u0645\u0646\u0643 \u0645\u0631\u0627\u062c\u0639\u062a\u0647\u0627 \u0648 \u0642\u0628\u0648\u0644\u0647\u0627 \u0644\u0643\u064a \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0625\u0633\u062a\u0645\u0631\u0627\u0631 \u0641\u064a \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u062d\u0633\u0627\u0628\u0643.","compliance_desc_end":"\u0646\u062d\u0646 \u0644\u0646 \u0646\u0633\u064a\u0621 \u0625\u0644\u0649 \u0628\u064a\u0627\u0646\u0627\u062a\u0643 \u0623\u0648 \u062d\u0633\u0627\u0628\u0643 \u0648 \u0644\u0646 \u0646\u0641\u0639\u0644 \u0630\u0644\u0643 \u0623\u0628\u062f\u0627\u064b.","compliance_terms":"\u0627\u0644\u0642\u0628\u0648\u0644 \u0628\u0627\u0644\u0634\u0631\u0648\u0637 \u0648 \u0633\u064a\u0627\u0633\u0629 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629 \u0627\u0644\u062c\u062f\u064a\u062f\u064a\u0629","compliance_title":"\u0646\u0639\u062a\u0630\u0631 \u0644\u0644\u0625\u0632\u0639\u0627\u062c.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"\u0625\u0646\u0634\u0627\u0621","date":"\u0627\u0644\u062a\u0627\u0631\u064a\u062e","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a.","delete":"\u062d\u0630\u0641","delete_confirm":"Are you sure?","done":"\u062a\u0645","download":"Download","edit":"\u062a\u0639\u062f\u064a\u0644","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"\u0633\u0646\u0639\u0648\u062f \u0625\u0644\u064a\u0643 \u062d\u0627\u0644\u0627\u064b.","error_id":"\u0645\u0639\u0631\u0641 \u0627\u0644\u062e\u0637\u0623: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"\u0644\u0642\u062f \u062d\u0635\u0644 \u062e\u0637\u0623 \u0628\u064a\u0646\u0645\u0627 \u0643\u0646\u0627 \u0646\u062d\u0627\u0648\u0644 \u062d\u0641\u0638 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a.","error_title":"\u0639\u0641\u0648\u0627\u064b! \u062d\u0635\u0644 \u062e\u0637\u0623 \u0645\u0627.","error_try_again":"\u062d\u062f\u062b \u062e\u0637\u0623 \u0645\u0627. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.","error_twitter":"\u062a\u0627\u0628\u0639 \u062d\u0633\u0627\u0628 \u062a\u0648\u064a\u062a\u0631<\/a> \u0627\u0644\u062e\u0627\u0635 \u0628\u0646\u0627\u060c \u0644\u064a\u062a\u0645 \u062a\u0646\u0628\u064a\u0647\u0643 \u0639\u0646\u062f\u0645\u0627 \u064a\u0639\u0648\u062f \u0627\u0644\u0645\u0648\u0642\u0639 \u0645\u062c\u062f\u062f\u0627\u064b.","error_unauthorized":"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629 \u0644\u062a\u062d\u0631\u064a\u0631 \u0647\u0630\u0627 \u0627\u0644\u0645\u0635\u062f\u0631.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"\u0625\u0646 \u0625\u0635\u062f\u0627\u0631\u0643 \u0623\u0642\u062f\u0645 \u0645\u0646 \u0622\u062e\u0631 \u0625\u0635\u062f\u0627\u0631 \u0645\u062a\u0627\u062d. \u064a\u062c\u0628 \u0623\u0646 \u062a\u0642\u0648\u0645 \u0628\u0627\u0644\u062a\u062d\u062f\u064a\u062b. | \u0623\u0646\u062a \u0645\u062a\u0623\u062e\u0631 \u0628\u0640:number \u0625\u0635\u062f\u0627\u0631\u0627\u062a \u0645\u0646 \u0622\u062e\u0631 \u0625\u0635\u062f\u0627\u0631 \u0645\u062a\u0627\u062d. \u064a\u062c\u0628 \u0623\u0646 \u062a\u0642\u0648\u0645 \u0628\u0627\u0644\u062a\u062d\u062f\u064a\u062b.","footer_modal_version_whats_new":"\u0645\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u061f","footer_new_version":"A new version of Monica is available","footer_newsletter":"\u0627\u0644\u0646\u0634\u0631\u0629 \u0627\u0644\u0625\u062e\u0628\u0627\u0631\u064a\u0629","footer_privacy":"\u0633\u064a\u0627\u0633\u0629 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629","footer_release":"\u0645\u0644\u0627\u062d\u0638\u0627\u062a \u0627\u0644\u0625\u0635\u062f\u0627\u0631","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"\u0633\u0627\u0647\u0645","footer_version":"\u0627\u0644\u0625\u0635\u062f\u0627\u0631: :version","gender_female":"\u0625\u0645\u0631\u0623\u0629","gender_male":"\u0631\u062c\u0644","gender_no_gender":"No gender","gender_none":"\u0623\u064f\u0641\u064e\u0636\u0644 \u0623\u0644\u0627 \u0623\u0642\u0648\u0644","go_back":"Go back","header_changelog_link":"\u062a\u063a\u064a\u0631\u0627\u062a \u0627\u0644\u0645\u0646\u062a\u062c","header_logout_link":"\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062e\u0631\u0648\u062c","header_settings_link":"\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a","load_more":"\u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0632\u064a\u062f","loading":"Loading\u2026","main_nav_activities":"\u0627\u0644\u0623\u0646\u0634\u0637\u0629","main_nav_cta":"\u0625\u0636\u0627\u0641\u0629 \u0623\u0634\u062e\u0627\u0635","main_nav_dashboard":"\u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645","main_nav_family":"\u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644","main_nav_journal":"\u064a\u0648\u0645\u064a\u0627\u062a","main_nav_tasks":"\u0627\u0644\u0645\u0647\u0627\u0645","markdown_description":"\u0647\u0644 \u062a\u0631\u064a\u062f \u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u0646\u0635 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0628\u0637\u0631\u064a\u0642\u0629 \u0644\u0637\u064a\u0641\u0629\u061f \u0646\u062d\u0646 \u0646\u062f\u0639\u0645 \u0627\u0644\u062a\u062d\u062f\u064a\u062f \u0648 \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0633\u0645\u0627\u0643\u0629\u060c \u0648 \u0627\u0644\u0625\u0645\u0627\u0644\u0629 \u0648 \u0627\u0644\u0642\u0648\u0627\u0626\u0645 \u0648 \u0627\u0644\u0645\u0632\u064a\u062f.","markdown_link":"\u0627\u0642\u0631\u0623 \u0627\u0644\u0648\u062b\u0627\u0626\u0642","new":"\u062c\u062f\u064a\u062f","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"\u0627\u0644\u0635\u062f\u064a\u0642 \u0627\u0644\u0645\u0641\u0636\u0644","relationship_type_bestfriend_female":"\u0627\u0644\u0635\u062f\u064a\u0642\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629","relationship_type_bestfriend_female_with_name":"\u0635\u062f\u064a\u0642\u0629 :name \u0627\u0644\u0645\u0641\u0636\u0644\u0629","relationship_type_bestfriend_with_name":"\u0635\u062f\u064a\u0642 :name \u0627\u0644\u0645\u0641\u0636\u0644","relationship_type_boss":"\u0645\u062f\u064a\u0631","relationship_type_boss_female":"\u0645\u062f\u064a\u0631\u0629","relationship_type_boss_female_with_name":"\u0645\u062f\u064a\u0631\u0629 :name","relationship_type_boss_with_name":"\u0645\u062f\u064a\u0631 :name","relationship_type_child":"\u0627\u0628\u0646","relationship_type_child_female":"\u0627\u0628\u0646\u0629","relationship_type_child_female_with_name":"\u0627\u0628\u0646\u0629 :name","relationship_type_child_with_name":"\u0627\u0628\u0646 :name","relationship_type_colleague":"\u0632\u0645\u064a\u0644","relationship_type_colleague_female":"\u0632\u0645\u064a\u0644\u0629","relationship_type_colleague_female_with_name":"\u0632\u0645\u064a\u0644\u0629 :name","relationship_type_colleague_with_name":"\u0632\u0645\u064a\u0644 :name","relationship_type_cousin":"\u0627\u0628\u0646 \u0639\u0645\/\u062e\u0627\u0644","relationship_type_cousin_female":"\u0627\u0628\u0646\u0629 \u0639\u0645\u0629\/\u062e\u0627\u0644\u0629","relationship_type_cousin_female_with_name":"\u0627\u0628\u0646\u0629 \u0639\u0645\u0629\/\u062e\u0627\u0644\u0629 :name","relationship_type_cousin_with_name":"\u0627\u0628\u0646 \u0639\u0645\/\u062e\u0627\u0644 :name","relationship_type_date":"\u0645\u0648\u0639\u062f","relationship_type_date_female":"\u0645\u0648\u0639\u062f","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"\u0637\u0644\u064a\u0642","relationship_type_ex_husband_female":"\u0637\u0644\u064a\u0642\u0629","relationship_type_ex_husband_female_with_name":"\u0632\u0648\u062c\u0629 :name \u0627\u0644\u0633\u0627\u0628\u0642\u0629","relationship_type_ex_husband_with_name":"\u0632\u0648\u062c :name \u0627\u0644\u0633\u0627\u0628\u0642","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"\u0635\u062f\u064a\u0642","relationship_type_friend_female":"\u0635\u062f\u064a\u0642\u0629","relationship_type_friend_female_with_name":"\u0635\u062f\u064a\u0642\u0629 :name","relationship_type_friend_with_name":"\u0635\u062f\u064a\u0642 :name","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"\u062d\u0641\u064a\u062f","relationship_type_grandchild_female":"\u062d\u0641\u064a\u062f\u0629","relationship_type_grandchild_female_with_name":"\u062d\u0641\u064a\u062f\u0629 :name","relationship_type_grandchild_with_name":"\u062d\u0641\u064a\u062f :name","relationship_type_grandparent":"\u062c\u062f","relationship_type_grandparent_female":"\u062c\u062f\u0629","relationship_type_grandparent_female_with_name":"\u062c\u064e\u062f\u0629 :name","relationship_type_grandparent_with_name":"\u062c\u062f :name","relationship_type_group_family":"\u0639\u0644\u0627\u0642\u0627\u062a \u0639\u0627\u0626\u0644\u064a\u0629","relationship_type_group_friend":"\u0639\u0644\u0627\u0642\u0627\u062a \u0635\u062f\u0627\u0642\u0629","relationship_type_group_love":"\u0639\u0644\u0627\u0642\u0627\u062a \u062d\u0628","relationship_type_group_other":"\u0646\u0648\u0639 \u0622\u062e\u0631 \u0645\u0646 \u0627\u0644\u0639\u0644\u0627\u0642\u0627\u062a","relationship_type_group_work":"\u0639\u0644\u0627\u0642\u0627\u062a \u0639\u0645\u0644","relationship_type_inlovewith":"\u0645\u063a\u0631\u0645 \u0628\u0640","relationship_type_inlovewith_female":"\u0645\u063a\u0631\u0645\u0629 \u0628\u0640","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"\u0645\u062d\u0628\u0648\u0628 \u0645\u0646 \u0642\u0650\u0628\u0644","relationship_type_lovedby_female":"\u0645\u062d\u0628\u0648\u0628\u0629 \u0645\u0646 \u0642\u0650\u0628\u0644","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"\u0639\u0627\u0634\u0642","relationship_type_lover_female":"\u0639\u0627\u0634\u0642\u0629","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"\u0645\u0631\u0634\u062f","relationship_type_mentor_female":"\u0645\u0631\u0634\u062f\u0629","relationship_type_mentor_female_with_name":"\u0645\u0631\u0634\u062f\u0629 :name","relationship_type_mentor_with_name":"\u0645\u0631\u0634\u062f :name","relationship_type_nephew":"\u0627\u0628\u0646 \u0634\u0642\u064a\u0642","relationship_type_nephew_female":"\u0627\u0628\u0646\u0629 \u0634\u0642\u064a\u0642\u0629","relationship_type_nephew_female_with_name":"\u0627\u0628\u0646\u0629 \u0634\u0642\u064a\u0642\u0629 :name","relationship_type_nephew_with_name":"\u0627\u0628\u0646 \u0634\u0642\u064a\u0642 :name","relationship_type_parent":"\u0623\u0628","relationship_type_parent_female":"\u0623\u0645","relationship_type_parent_female_with_name":"\u0648\u0627\u0644\u062f\u0629 :name","relationship_type_parent_with_name":"\u0648\u0627\u0644\u062f :name","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"\u0645\u062a\u062f\u0631\u0628","relationship_type_protege_female":"\u0645\u062a\u062f\u0631\u0628\u0629","relationship_type_protege_female_with_name":"\u0645\u062a\u062f\u0631\u0628\u0629 :name","relationship_type_protege_with_name":"\u0645\u062a\u062f\u0631\u0628 :name","relationship_type_sibling":"\u0623\u062e","relationship_type_sibling_female":"\u0623\u062e\u062a","relationship_type_sibling_female_with_name":"\u0634\u0642\u064a\u0642\u0629 :name","relationship_type_sibling_with_name":"\u0634\u0642\u064a\u0642 :name","relationship_type_spouse":"\u0632\u0648\u062c","relationship_type_spouse_female":"\u0632\u0648\u062c\u0629","relationship_type_spouse_female_with_name":"\u0632\u0648\u062c\u0629 :name\u2019s","relationship_type_spouse_with_name":"\u0632\u0648\u062c :name\u2019s","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"\u0645\u0631\u0624\u0648\u0633","relationship_type_subordinate_female":"\u0645\u0631\u0624\u0648\u0633\u0629","relationship_type_subordinate_female_with_name":"\u0645\u0631\u0624\u0648\u0633\u0629 :name","relationship_type_subordinate_with_name":"\u0645\u0631\u0624\u0648\u0633 :name","relationship_type_uncle":"\u0639\u0645\/\u062e\u0627\u0644","relationship_type_uncle_female":"\u0639\u0645\u0629\/\u062e\u0627\u0644\u0629","relationship_type_uncle_female_with_name":"\u0639\u0645\u0629\/\u062e\u0627\u0644\u0629 :name","relationship_type_uncle_with_name":"\u0639\u0645\/\u062e\u0627\u0644 :name","remove":"\u0625\u0632\u0627\u0644\u0629","retry":"Retry","revoke":"\u0625\u0644\u063a\u0627\u0621","save":"\u062d\u0641\u0638","save_close":"Save and close","today":"\u0627\u0644\u064a\u0648\u0645","type":"\u0627\u0644\u0646\u0648\u0639","unknown":"\u0644\u0627 \u0623\u0639\u0631\u0641","update":"\u062a\u062d\u062f\u064a\u062b","upgrade":"Upgrade to unlock","upload":"\u0631\u0641\u0639","verify":"\u062a\u062d\u0642\u0642","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"\u0645\u0639","yes":"Yes","yesterday":"\u0623\u0645\u0633","zoom":"Zoom"},"auth":{"2fa_one_time_password":"\u0631\u0645\u0632 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_otp_help":"\u0642\u0645 \u0628\u0641\u062a\u062d \u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0641\u064a \u0647\u0627\u062a\u0641\u0643 \u0648 \u0627\u0646\u0633\u062e \u0627\u0644\u0631\u0645\u0632","2fa_recuperation_code":"\u0623\u062f\u062e\u0644 \u0631\u0645\u0632 \u0627\u0633\u062a\u0631\u062f\u0627\u062f \u0627\u0644\u0639\u0627\u0645\u0644 \u0627\u0644\u062b\u0646\u0627\u0626\u064a","2fa_title":"\u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_wrong_validation":"\u0641\u0634\u0644\u062a \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629.","back_homepage":"\u0627\u0644\u0639\u0648\u062f\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629","button_remember":"\u062a\u0630\u0643\u0631\u0646\u064a","change_language":"\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0644\u063a\u0629 \u0625\u0644\u0649 :lang","change_language_title":"\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0644\u063a\u0629:","confirmation_again":"\u0625\u0630\u0627 \u0623\u0631\u062f\u062a \u062a\u063a\u064a\u064a\u0631 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0636\u063a\u0637 \u0647\u0646\u0627<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"\u0627\u0646\u0634\u0626 \u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u0623\u0648\u0644 \u0639\u0628\u0631 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643<\/a>","email":"\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","email_change_current_email":"\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u062d\u0627\u0644\u064a:","email_change_new":"\u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u062c\u062f\u064a\u062f","email_change_title":"\u0642\u0645 \u0628\u062a\u063a\u064a\u064a\u0631 \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f\u0643","email_changed":"\u0644\u0642\u062f \u062a\u0645 \u062a\u063a\u064a\u064a\u0631 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a. \u062a\u062d\u0642\u0642 \u0645\u0646 \u0628\u0631\u064a\u062f\u0643 \u0644\u062a\u0623\u0643\u064a\u062f\u0647.","failed":"\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0627\u0639\u062a\u0645\u0627\u062f \u0647\u0630\u0647 \u063a\u064a\u0631 \u0645\u062a\u0637\u0627\u0628\u0642\u0629 \u0645\u0639 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0633\u062c\u0644\u0629 \u0644\u062f\u064a\u0646\u0627.","login":"\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644","login_again":"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0645\u062c\u062f\u062f\u0627\u064b \u0644\u062d\u0633\u0627\u0628\u0643","login_to_account":"\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0625\u0644\u0649 \u062d\u0633\u0627\u0628\u0643","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"\u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0645\u0639 \u062c\u0647\u0627\u0632 \u0627\u0644\u0639\u0627\u0645\u0644 \u0627\u0644\u062b\u0646\u0627\u0626\u064a \u0627\u0644\u062e\u0627\u0635 \u0628\u0643","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629 \u0644\u062a\u0646\u0641\u064a\u0630 \u0647\u0630\u0627 \u0627\u0644\u0623\u0645\u0631","password":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_forget":"\u0646\u0633\u064a\u062a \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631\u061f","password_reset":"\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631\u0643","password_reset_action":"\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_reset_email":"\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0628\u0631\u064a\u062f","password_reset_email_content":"\u0627\u0636\u063a\u0637 \u0647\u0646\u0627 \u0644\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631\u0643:","password_reset_password":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_reset_password_confirm":"\u062a\u0623\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_reset_send_link":"\u0623\u0631\u0633\u0644 \u0631\u0627\u0628\u0637 \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_reset_title":"\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","recovery":"Recovery code","register_action":"\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643","register_create_account":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0646\u0634\u0626 \u062d\u0633\u0627\u0628\u0627\u064b \u0644\u062a\u0633\u062a\u062e\u062f\u0645 Monica","register_email":"\u0623\u062f\u062e\u0644 \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f \u0635\u0627\u0644\u062d","register_email_example":"example@example.com","register_firstname":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644","register_firstname_example":"\u0645\u062b\u0627\u0644: \u0623\u062d\u0645\u062f","register_invitation_email":"\u0644\u0623\u0633\u0628\u0627\u0628 \u0623\u0645\u0646\u064a\u0629\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u0644\u0634\u062e\u0635 \u0627\u0644\u0630\u064a \u0642\u0645\u062a \u0628\u062f\u0639\u0648\u062a\u0647 \u0644\u0644\u0625\u0646\u0636\u0645\u0627\u0645 \u0644\u0647\u0630\u0627 \u0627\u0644\u062d\u0633\u0627\u0628. \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0645\u0648\u062c\u0648\u062f\u0629 \u0641\u064a \u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u062f\u0639\u0648\u0629.","register_lastname":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u062e\u064a\u0631","register_lastname_example":"\u0645\u062b\u0627\u0644: \u0645\u0631\u0627\u062f","register_login":"\u0642\u0645 \u0628\u0640 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644<\/a> \u0625\u0630\u0627 \u0643\u0627\u0646 \u0644\u062f\u064a\u0643 \u062d\u0633\u0627\u0628 \u0645\u0633\u0628\u0642\u0627\u064b.","register_password":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","register_password_confirmation":"\u062a\u0623\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","register_password_example":"\u0623\u062f\u062e\u0644 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631 \u0622\u0645\u0646\u0629","register_policy":"\u0628\u062a\u0633\u062c\u064a\u0644 \u0625\u0634\u062a\u0631\u0627\u0643\u0643 \u062a\u064f\u0641\u064a\u062f \u0628\u0623\u0646\u0643 \u0642\u0631\u0623\u062a \u0648 \u0642\u0628\u0650\u0644\u062a \u0633\u064a\u0627\u0633\u0629 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629<\/a> \u0648 \u0634\u0631\u0648\u0637 \u0627\u0644\u0625\u0633\u062a\u062e\u062f\u0627\u0645<\/a> \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0646\u0627.","register_title_create":"\u0627\u0646\u0634\u0626 \u062d\u0633\u0627\u0628\u0643 \u0644\u0640Monica","register_title_welcome":"\u0645\u0631\u062d\u0628\u0627 \u0628\u0643 \u0641\u064a \u062a\u0637\u0628\u064a\u0642 Monica \u0627\u0644\u0645\u062b\u0628\u062a \u062d\u062f\u064a\u062b\u0627\u064b","signup":"\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643","signup_disabled":"\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643 \u0645\u0639\u0637\u0644 \u062d\u0627\u0644\u064a\u0627\u064b","signup_error":"An error occured trying to register the user","signup_no_account":"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u062d\u0633\u0627\u0628\u061f","throttle":"\u0639\u062f\u062f \u0643\u0628\u064a\u0631 \u062c\u062f\u0627 \u0645\u0646 \u0645\u062d\u0627\u0648\u0644\u0627\u062a \u0627\u0644\u062f\u062e\u0648\u0644. \u064a\u0631\u062c\u0649 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0628\u0639\u062f :seconds \u062b\u0627\u0646\u064a\u0629.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"\u0645\u0644\u0627\u062d\u0638\u0629: \u0644\u0633\u0648\u0621 \u0627\u0644\u062d\u0638\u060c \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629 \u062a\u0638\u0647\u0631 \u0641\u0642\u0637 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0625\u0646\u0643\u0644\u064a\u0632\u064a\u0629.","title":"\u062a\u063a\u064a\u0631\u0627\u062a \u0627\u0644\u0645\u0646\u062a\u062c"},"dashboard":{"dashboard_blank_cta":"\u0623\u0636\u0641 \u0623\u0648\u0644 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0644\u0643","dashboard_blank_description":"Monica \u0647\u0648 \u0627\u0644\u0645\u0643\u0627\u0646 \u0627\u0644\u0645\u0646\u0627\u0633\u0628 \u0644\u062a\u0646\u0638\u064a\u0645 \u062c\u0645\u064a\u0639 \u0627\u0644\u062a\u0641\u0627\u0639\u0644\u0627\u062a \u0644\u062f\u064a\u0643 \u0645\u0639 \u0627\u0644\u0623\u0634\u062e\u0627\u0635 \u0627\u0644\u0630\u064a\u0646 \u062a\u0647\u062a\u0645 \u0628\u0623\u0645\u0631\u0647\u0645.","dashboard_blank_illustration":"\u0627\u0644\u0631\u0633\u0645 \u0627\u0644\u062a\u0648\u0636\u064a\u062d\u064a \u0628\u0648\u0627\u0633\u0637\u0629 Freepik<\/a>","dashboard_blank_title":"\u0645\u0631\u062d\u0628\u0627\u064b \u0641\u064a \u062d\u0633\u0627\u0628\u0643!","debts_you_owe":"\u0623\u0646\u062a \u0645\u062f\u064a\u0646","notes_title":"\u0644\u0645 \u062a\u0642\u0645 \u0628\u062a\u0623\u0634\u064a\u0631 \u0623\u064a \u0645\u0644\u0627\u062d\u0638\u0627\u062a \u0628\u0639\u062f.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"\u0627\u0644\u0623\u062d\u062f\u0627\u062b \u0627\u0644\u062a\u064a \u0633\u062a\u0642\u0627\u0645 \u0641\u064a \u0627\u0644\u0623\u0634\u0647\u0631 \u0627\u0644\u062b\u0644\u0627\u062b \u0627\u0644\u0645\u0642\u0628\u0644\u0629","reminders_none":"\u0627 \u064a\u0648\u062c\u062f \u062a\u0630\u0643\u064a\u0631 \u0644\u0647\u0630\u0627 \u0627\u0644\u0634\u0647\u0631.","statistics_activities":"\u0627\u0644\u0623\u0646\u0634\u0637\u0629","statistics_contacts":"\u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644","statistics_gifts":"\u0627\u0644\u0647\u062f\u0627\u064a\u0627","tab_calls_blank":"\u0644\u0645 \u062a\u0642\u0645 \u0628\u062a\u0633\u062c\u064a\u0644 \u0623\u064a \u0645\u0643\u0627\u0644\u0645\u0629 \u0628\u0639\u062f.","tab_debts":"\u0627\u0644\u062f\u064a\u0648\u0646","tab_debts_blank":"\u0644\u0645 \u062a\u0642\u0645 \u0628\u062a\u0633\u062c\u064a\u0644 \u0623\u064a \u062f\u064e\u064a\u0646 \u0628\u0639\u062f.","tab_favorite_notes":"\u0627\u0644\u0645\u0644\u0627\u062d\u0638\u0627\u062a \u0627\u0644\u0645\u0641\u0636\u0644\u0629","tab_recent_calls":"\u0627\u0644\u0645\u0643\u0627\u0644\u0645\u0627\u062a \u0627\u0644\u0623\u062e\u064a\u0631\u0629","tab_tasks":"\u0627\u0644\u0645\u0647\u0627\u0645","tab_tasks_blank":"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0623\u064a \u0645\u0647\u0645\u0629 \u062d\u062a\u0649 \u0627\u0644\u0622\u0646.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u062a\u062f\u0648\u064a\u0646 \u0647\u0630\u0647 \u0627\u0644\u0645\u0630\u0643\u0631\u0629\u061f","entry_delete_success":"\u0644\u0642\u062f \u062a\u0645 \u062d\u0630\u0641 \u062a\u062f\u0648\u064a\u0646 \u0647\u0630\u0647 \u0627\u0644\u0645\u0630\u0643\u0631\u0629 \u0628\u0646\u062c\u0627\u062d.","journal_add":"\u0623\u0636\u0641 \u062a\u062f\u0648\u064a\u0646\u0627\u064b \u0644\u0644\u0645\u0630\u0643\u0631\u0629","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"\u062d\u0641\u0638","journal_add_date":"\u0627\u0644\u062a\u0627\u0631\u064a\u062e","journal_add_post":"\u062a\u062f\u0648\u064a\u0646","journal_add_title":"\u0627\u0644\u0639\u0646\u0648\u0627\u0646 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","journal_blank_cta":"\u0642\u0645 \u0628\u062a\u062f\u0648\u064a\u0646 \u0645\u0630\u0643\u0631\u062a\u0643 \u0627\u0644\u0623\u0648\u0644\u0649","journal_blank_description":"\u0627\u0644\u0645\u0630\u0643\u0631\u0629 \u062a\u062f\u064e\u0639\u064f\u0643 \u062a\u062f\u0648\u0646 \u0627\u0644\u0623\u062d\u062f\u0627\u062b \u0627\u0644\u062a\u064a \u062d\u0635\u0644\u062a \u0644\u0643\u060c \u0644\u062a\u062a\u0630\u0643\u0631\u0647\u0627.","journal_come_back":"\u0634\u0643\u0631\u0627\u064b. \u062a\u0639\u0627\u0644 \u063a\u062f\u0627\u064b \u0644\u062a\u0642\u064a\u064a\u0645 \u064a\u0648\u0645\u0643 \u0645\u062c\u062f\u062f\u0627\u064b.","journal_created_at":"Created at {date}","journal_created_automatically":"\u062a\u0645 \u0625\u0646\u0634\u0627\u0626\u0647 \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b","journal_description":"\u0645\u0644\u0627\u062d\u0638\u0629: \u0627\u0644\u0645\u0644\u0627\u062d\u0638\u0629 \u062a\u064f\u0633\u062c\u0644 \u0643\u0650\u0644\u0627 \u0627\u0644\u062a\u062f\u0648\u064a\u0646\u0627\u062a \u0627\u0644\u064a\u062f\u0648\u064a\u0629\u060c \u0648 \u0627\u0644\u062a\u062f\u0648\u064a\u0646\u0627\u062a \u0627\u0644\u0641\u0648\u0631\u064a\u0629 \u0645\u062b\u0644 \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0627\u0644\u062a\u064a \u0641\u0639\u0644\u062a\u064e\u0647\u0627 \u0645\u0639 \u0623\u0635\u062f\u0642\u0627\u0626\u0643. \u0628\u064a\u0646\u0645\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0630\u0641 \u062a\u062f\u0648\u064a\u0646\u0627\u062a \u0627\u0644\u0645\u0630\u0643\u0631\u0629 \u064a\u062f\u0648\u064a\u0627\u064b\u060c \u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0630\u0641 \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0625\u0644\u0627 \u0628\u062d\u0630\u0641\u0647\u0627 \u0645\u0628\u0627\u0634\u0631\u0629 \u0645\u0646 \u0635\u0641\u062d\u0629 \u0623\u0635\u062f\u0642\u0627\u0626\u0643.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"\u0644\u0642\u062f \u0642\u0645\u062a\u064e \u0628\u062a\u0642\u064a\u064a\u0645 \u064a\u0648\u0645\u0643.","journal_entry_type_activity":"\u0646\u0634\u0627\u0637","journal_entry_type_journal":"\u062a\u062f\u0648\u064a\u0646 \u0627\u0644\u0645\u0630\u0643\u0631\u0629","journal_rate":"\u0643\u064a\u0641 \u0643\u0627\u0646 \u064a\u0648\u0645\u0643\u061f \u064a\u0645\u0643\u0646\u0643 \u062a\u0642\u064a\u064a\u0645\u0647 \u0645\u0631\u0629 \u0641\u064a \u0627\u0644\u064a\u0648\u0645.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"\u062a\u0639\u0644\u064a\u0642: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"\u0642\u0645 \u0628\u062a\u0623\u0643\u064a\u062f \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f\u0643","confirmation_email_intro":"\u0644\u062a\u0623\u0643\u064a\u062f \u0628\u0631\u064a\u062f\u0643 \u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0627\u0644\u0632\u0631 \u0623\u062f\u0646\u0627\u0647","confirmation_email_title":"Monica - \u062a\u0623\u0643\u064a\u062f \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","footer_contact_info":"\u0623\u0636\u0641\u060c \u0639\u0631\u0636\u060c \u0623\u0643\u0645\u0644\u060c \u0648 \u0642\u0645 \u0628\u062a\u063a\u064a\u064a\u0631 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0639\u0646 \u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0647\u0630\u0647:","footer_contact_info2":"\u0639\u0631\u0636 \u0645\u0644\u0641 :name \u0627\u0644\u0634\u062e\u0635\u064a","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"\u0644\u0640: :name","greetings":"\u0645\u0631\u062d\u0628\u0627\u064b :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"\u0641\u064a :count \u0623\u064a\u0627\u0645 ( \u0641\u064a :date)\u060c \u0633\u0648\u0641 \u064a\u062d\u0635\u0644 \u0627\u0644\u062d\u062f\u062b \u0627\u0644\u062a\u0627\u0644\u064a:","notification_subject_line":"\u0644\u062f\u064a\u0643 \u062d\u062f\u062b \u0642\u0627\u062f\u0645","notifications_footer":"\u0625\u0630\u0627 \u0643\u0646\u062a\u064e \u062a\u0648\u0627\u062c\u0647 \u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0644\u0636\u063a\u0637 \u0639\u0644\u0649 \u0632\u0631 \":actionText\"\u060c \u0627\u0646\u0633\u062e \u0648\u0627\u0644\u0635\u0642 \u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0641\u064a \u0645\u062a\u0635\u0641\u062d \u0627\u0644\u0648\u064a\u0628 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643: [:actionURL](:actionURL)","notifications_hello":"\u0645\u0631\u062d\u0628\u0627\u064b!","notifications_regards":"\u0645\u0639 \u062e\u0627\u0644\u0635 \u0627\u0644\u062a\u062d\u064a\u0627\u062a","notifications_rights":"\u062c\u0645\u064a\u0639 \u0627\u0644\u062d\u0642\u0648\u0642 \u0645\u062d\u0641\u0648\u0638\u0629","notifications_whoops":"\u0627\u0644\u0645\u0639\u0630\u0631\u0629!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"\u0644\u0642\u062f \u0637\u0644\u0628\u062a\u064e \u0623\u0646 \u064a\u062a\u0645 \u062a\u0630\u0643\u064a\u0631\u0643 \u0628\u0627\u0644\u0628\u0642\u0627\u0621 \u0639\u0644\u0649 \u0627\u062a\u0635\u0627\u0644 \u0645\u0639 :name \u0643\u0644 :frequency \u064a\u0648\u0645. | \u0644\u0642\u062f \u0637\u0644\u0628\u062a\u064e \u0623\u0646 \u064a\u062a\u0645 \u062a\u0630\u0643\u064a\u0631\u0643 \u0628\u0627\u0644\u0628\u0642\u0627\u0621 \u0639\u0644\u0649 \u0627\u062a\u0635\u0627\u0644 \u0645\u0639 :name \u0643\u0644 :frequency \u0623\u064a\u0627\u0645.","stay_in_touch_subject_line":"\u0627\u0628\u0642\u0649 \u0639\u0644\u0649 \u0625\u062a\u0635\u0627\u0644 \u0645\u0639 :name","subject_line":"\u062a\u0630\u0643\u064a\u0631 \u0625\u0644\u0649 :contact","want_reminded_of":"\u0644\u0642\u062f \u0623\u0631\u062f\u062a\u064e \u0623\u0646 \u064a\u062a\u0645 \u062a\u0630\u0643\u064a\u0631\u0643 \u0628\u0640:reason"},"pagination":{"next":"\u0627\u0644\u062a\u0627\u0644\u064a \u276f","previous":"\u276e \u0627\u0644\u0633\u0627\u0628\u0642"},"passwords":{"changed":"Password changed successfully.","invalid":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062d\u0627\u0644\u064a\u0629 \u0627\u0644\u062a\u064a \u0623\u062f\u062e\u0644\u062a\u0647\u0627 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d\u0629.","reset":"\u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","sent":"\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0625\u0644\u0649 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","throttled":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631 \u0642\u0628\u0644 \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629.","token":".\u0631\u0645\u0632 \u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0627\u0644\u0630\u064a \u0623\u062f\u062e\u0644\u062a\u0647 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d","user":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0623\u064a\u0651 \u062d\u0633\u0627\u0628\u064d \u0628\u0647\u0630\u0627 \u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a"},"people":{"activities_activity":"\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0646\u0634\u0627\u0637","activities_add_activity":"\u0625\u0636\u0627\u0641\u0629 \u0646\u0634\u0627\u0637","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"\u062e\u0637\u0623 \u0639\u0646\u062f \u0625\u0636\u0627\u0641\u0629 \u0646\u0634\u0627\u0637","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(\u0627\u062e\u062a\u064a\u0627\u0631\u064a) \u0647\u0644 \u062a\u0631\u063a\u0628 \u0641\u064a \u062a\u0635\u0646\u064a\u0641 \u0647\u0630\u0627 \u0627\u0644\u0646\u0634\u0627\u0637\u061f \u0644\u0627 \u064a\u062c\u0628 \u0639\u0644\u064a\u0643\u060c \u0648\u0644\u0643\u0646 \u0633\u0648\u0641 \u062a\u0648\u0641\u0631 \u0644\u0643 \u0625\u062d\u0635\u0627\u0621\u0627\u062a \u0641\u064a \u0644\u0627\u062d\u0642\u0627","activities_add_success":"\u062a\u0645 \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0646\u0634\u0627\u0637 \u0628\u0646\u062c\u0627\u062d","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"\u0625\u0636\u0627\u0641\u0629 \u0646\u0634\u0627\u0637","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0646\u0634\u0627\u0637 \u0628\u0646\u062c\u0627\u062d","activities_item_information":":Activity \u062d\u062f\u062b \u0641\u064a :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value \u0646\u0634\u0627\u0637|:value \u0623\u0646\u0634\u0637\u0629","activities_profile_subtitle":"\u0644\u0642\u062f \u0633\u062c\u0644\u062a :total_activities \u0646\u0634\u0627\u0637\u0627 \u0645\u0639 :name \u0625\u062c\u0645\u0627\u0644\u0627\u060c \u0648:activities_last_twelve_months \u062e\u0644\u0627\u0644 \u0627\u0644\u0627\u062b\u0646\u0627\u0639\u0634\u0631 \u0634\u0647\u0631\u0627 \u0627\u0644\u0645\u0627\u0636\u064a\u0629 \u062d\u062a\u0649 \u0627\u0644\u0622\u0646.|\u0644\u0642\u062f \u0633\u062c\u0644\u062a :total_activities \u0646\u0634\u0627\u0637\u0627 \u0645\u0639 :name \u0625\u062c\u0645\u0627\u0644\u0627\u060c \u0648:activities_last_twelve_months \u062e\u0644\u0627\u0644 \u0627\u0644\u0627\u062b\u0646\u0627\u0639\u0634\u0631 \u0634\u0647\u0631\u0627 \u0627\u0644\u0645\u0627\u0636\u064a\u0629 \u062d\u062a\u0649 \u0627\u0644\u0622\u0646.","activities_profile_title":"\u062a\u0642\u0631\u064a\u0631 \u0639\u0646 \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0628\u064a\u0646\u0643 \u0648\u0628\u064a\u0646 :name","activities_profile_year_summary":"\u0647\u0630\u0627 \u0645\u0627 \u0641\u0639\u0644\u062a\u0645\u0648\u0647 \u0645\u0639\u0627 \u0641\u064a \u0639\u0627\u0645 :year","activities_profile_year_summary_activity_types":"\u0647\u0646\u0627 \u062a\u0641\u0627\u0635\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0645\u0646 \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0627\u0644\u062a\u064a \u0642\u0636\u064a\u062a\u0645\u0627\u0647\u0627 \u0645\u0639\u0627 \u0641\u064a \u0639\u0627\u0645 :year","activities_summary":"\u0635\u0641 \u0645\u0627 \u0641\u0639\u0644\u062a\u0647","activities_update_success":"\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0646\u0634\u0627\u0637 \u0628\u0646\u062c\u0627\u062d","activities_view_activities_report":"\u0639\u0631\u0636 \u062a\u0642\u0631\u064a\u0631 \u0627\u0644\u0623\u0646\u0634\u0637\u0629","activities_who_was_involved":"\u0645\u0646 \u0634\u0627\u0631\u0643\u061f","activity_title":"\u0627\u0644\u0623\u0646\u0634\u0637\u0629","activity_type_ate_at_his_place":"\u062a\u0646\u0627\u0648\u0644\u0646\u0627 \u0627\u0644\u0637\u0639\u0627\u0645 \u0628\u0645\u0646\u0632\u0644\u0647\u0645","activity_type_ate_at_home":"\u062a\u0646\u0627\u0648\u0644\u0646\u0627 \u0627\u0644\u0637\u0639\u0627\u0645 \u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644","activity_type_ate_restaurant":"\u062a\u0646\u0627\u0648\u0644\u0646\u0627 \u0627\u0644\u0637\u0639\u0627\u0645 \u0641\u064a \u0627\u0644\u0645\u0637\u0639\u0645","activity_type_category_cultural_activities":"\u0623\u0646\u0634\u0637\u0629 \u062b\u0642\u0627\u0641\u064a\u0629","activity_type_category_food":"\u0637\u0639\u0627\u0645","activity_type_category_simple_activities":"\u0623\u0646\u0634\u0637\u0629 \u0628\u0633\u064a\u0637\u0629","activity_type_category_sport":"\u0631\u064a\u0627\u0636\u0629","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"\u0642\u0636\u064a\u0646\u0627 \u0627\u0644\u0648\u0642\u062a \u0645\u0639\u0627","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"\u062a\u062d\u062f\u062b\u0646\u0627 \u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644","activity_type_watched_movie_at_home":"\u0634\u0627\u0647\u062f\u0646\u0627 \u0641\u064a\u0644\u0645 \u0641\u064a \u0627\u0644\u0645\u0646\u0632\u0644","activity_type_went_bar":"\u0630\u0647\u0628\u0646\u0627 \u0625\u0644\u0649 \u062d\u0627\u0646\u0629","activity_type_went_concert":"\u0630\u0647\u0628\u0646\u0627 \u0625\u0644\u0649 \u062d\u0641\u0644\u0629 \u0645\u0648\u0633\u064a\u0642\u064a\u0629","activity_type_went_museum":"\u0630\u0647\u0628\u0646\u0627 \u0625\u0644\u0649 \u0627\u0644\u0645\u062a\u062d\u0641","activity_type_went_play":"\u0630\u0647\u0628\u0646\u0627 \u0625\u0644\u0649 \u0645\u0633\u0631\u062d\u064a\u0629","activity_type_went_theater":"\u0630\u0647\u0628\u0646\u0627 \u0625\u0644\u0649 \u062f\u0627\u0631 \u0627\u0644\u0639\u0631\u0636","age_approximate_in_years":":age \u0633\u0646\u0648\u0627\u062a \u062a\u0642\u0631\u064a\u0628\u064b\u0627","age_exact_birthdate":"\u0648\u0644\u062f \u0641\u064a :date","age_exact_in_years":":age \u0633\u0646\u0648\u0627\u062a","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"\u0644\u0645 \u064a\u062a\u0645 \u062a\u0639\u064a\u064a\u0646 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u064a\u0644\u0627\u062f","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"\u062a\u0633\u062c\u064a\u0644 \u0645\u0643\u0627\u0644\u0645\u0629","call_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0645\u0643\u0627\u0644\u0645\u0629\u061f","call_delete_success":"\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u0643\u0627\u0644\u0645\u0629 \u0628\u0646\u062c\u0627\u062d","call_emotions":"Emotions:","call_empty_comment":"\u0644\u0627 \u062a\u0641\u0627\u0635\u064a\u0644","call_he_called":"{name} called","call_title":"\u0627\u0644\u0645\u0643\u0627\u0644\u0645\u0627\u062a \u0627\u0644\u0647\u0627\u062a\u0641\u064a\u0629","call_you_called":"You called","calls_add_success":"\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0645\u0643\u0627\u0644\u0645\u0629 \u0627\u0644\u0647\u0627\u062a\u0641\u064a\u0629.","contact_address_form_city":"\u0627\u0644\u0645\u062f\u064a\u0646\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","contact_address_form_country":"\u0627\u0644\u0628\u0644\u062f (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"\u062a\u0633\u0645\u064a\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","contact_address_form_postal_code":"\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0628\u0631\u064a\u062f\u064a (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","contact_address_form_province":"\u0627\u0644\u0645\u0646\u0637\u0642\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","contact_address_form_street":"\u0627\u0644\u0634\u0627\u0631\u0639 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","contact_address_title":"\u0639\u0646\u0627\u0648\u064a\u0646","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"\u064a\u0639\u064a\u0634 \u0641\u064a","contact_info_form_contact_type":"\u0646\u0648\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644","contact_info_form_content":"\u0627\u0644\u0645\u062d\u062a\u0648\u0649","contact_info_form_personalize":"\u0625\u0636\u0641\u0627\u0621 \u0637\u0627\u0628\u0639 \u0634\u062e\u0635\u064a","contact_info_title":"\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644","contact_unarchive":"Unarchive contact","conversation_add_another":"\u0625\u0636\u0627\u0641\u0629 \u0631\u0633\u0627\u0644\u0629 \u0623\u062e\u0631\u0649","conversation_add_content":"\u0642\u0645 \u0628\u062a\u062f\u0648\u064a\u0646 \u0645\u0627 \u0642\u064a\u0644","conversation_add_error":"You must add at least one message.","conversation_add_how":"\u0643\u064a\u0641 \u062a\u0648\u0627\u0635\u0644\u062a\u0645\u0627\u061f","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"\u0633\u064e\u062c\u0644 \u0645\u062d\u0627\u062f\u062b\u0629 \u062c\u062f\u064a\u062f\u0629","conversation_add_what_was_said":"\u0645\u0627\u0630\u0627 \u0642\u0644\u062a\u061f","conversation_add_when":"\u0645\u062a\u0649 \u062a\u0645\u062a \u0647\u0630\u0647 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629\u061f","conversation_add_who_wrote":"\u0645\u0646 \u0642\u0627\u0644 \u0647\u0630\u0647 \u0627\u0644\u0631\u0633\u0627\u0644\u0629\u061f","conversation_add_you":"\u0623\u0646\u062a","conversation_blank":"\u0633\u062c\u0644 \u0627\u0644\u0645\u0643\u0627\u0644\u0645\u0627\u062a \u0627\u0644\u062a\u064a \u0644\u062f\u064a\u0643 \u0645\u0639 :name \u0639\u0644\u0649 \u0648\u0633\u0627\u0626\u0644 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0627\u0644\u0625\u062c\u062a\u0645\u0627\u0639\u064a","conversation_delete_link":"\u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629","conversation_delete_success":"\u0644\u0642\u062f \u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629 \u0628\u0646\u062c\u0627\u062d.","conversation_edit_delete":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629\u061f \u0627\u0644\u062d\u0630\u0641 \u062f\u0627\u0626\u0645.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629","conversation_list_cta":"\u0633\u062c\u0644 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629","conversation_list_table_content":"\u0645\u062d\u062a\u0648\u0649 \u062c\u0632\u0626\u064a (\u0622\u062e\u0631 \u0631\u0633\u0627\u0644\u0629)","conversation_list_table_messages":"\u0627\u0644\u0631\u0633\u0627\u0626\u0644","conversation_list_title":"\u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0627\u062a","debt_add_add_cta":"\u0625\u0636\u0627\u0641\u0629 \u062f\u064a\u0646","debt_add_amount":"\u0645\u062c\u0645\u0648\u0639","debt_add_cta":"\u0625\u0636\u0627\u0641\u0629 \u062f\u064a\u0646","debt_add_reason":"\u0644\u0644\u0633\u0628\u0628 \u0627\u0644\u062a\u0627\u0644\u064a (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","debt_add_success":"\u062a\u0645 \u0628\u0646\u062c\u0627\u062d \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u062f\u064a\u0646","debt_add_they_owe":":name \u0645\u062f\u064a\u0646 \u0644\u0643","debt_add_title":"\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u062f\u064a\u0648\u0646","debt_add_you_owe":"\u0623\u0646\u062a \u0645\u062f\u064a\u0646 \u0644\u0640 :name","debt_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062f\u064a\u0646\u061f","debt_delete_success":"\u062a\u0645 \u0628\u0646\u062c\u0627\u062d \u062d\u0630\u0641 \u0627\u0644\u062f\u064a\u0646","debt_edit_success":"\u062a\u0645 \u0628\u0646\u062c\u0627\u062d \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062f\u064a\u0646","debt_edit_update_cta":"\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062f\u064a\u0646","debt_they_owe":":name \u0645\u062f\u064a\u0646 \u0644\u0643 \u0628\u0640 :amount","debt_title":"\u0627\u0644\u062f\u064a\u0648\u0646","debt_you_owe":"\u0623\u0646\u062a \u0645\u062f\u064a\u0646 \u0628\u0640 :amount","debts_blank_title":"\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u062f\u064a\u0648\u0646 \u0627\u0644\u062a\u064a \u062a\u062f\u064a\u0646 \u0628\u0647\u0627 \u0644\u0640:name \u0623\u0648 \u064a\u062f\u064a\u0646 \u0628\u0647\u0627 :name \u0644\u0643","deceased_add_reminder":"\u0625\u0636\u0627\u0641\u0629 \u062a\u0630\u0643\u064a\u0631 \u0644\u0647\u0630\u0627 \u0627\u0644\u062a\u0627\u0631\u064a\u062e","deceased_age":"\u0627\u0644\u0639\u0645\u0631 \u0639\u0646\u062f \u0627\u0644\u0648\u0641\u0627\u0629","deceased_date_label":"Deceased date","deceased_know_date":"\u0623\u0646\u0627 \u0623\u0639\u0631\u0641 \u062a\u0627\u0631\u064a\u062e \u0648\u0641\u0627\u0629 \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635","deceased_label":"\u0645\u062a\u0648\u0641\u0649","deceased_label_with_date":"\u062a\u0648\u0641\u064a \u0628\u062a\u0627\u0631\u064a\u062e :date","deceased_mark_person_deceased":"\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0639\u0644\u0649 \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0643\u0645\u062a\u0648\u0641\u0649","deceased_reminder_title":"\u0627\u0644\u0630\u0643\u0631\u0649 \u0627\u0644\u0633\u0646\u0648\u064a\u0629 \u0644\u0648\u0641\u0627\u0629 :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"\u062a\u0639\u062f\u064a\u0644 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u063a\u0630\u0627\u0626\u064a\u0629","food_preferences_cta":"\u0623\u0636\u0641 \u062a\u0641\u0636\u064a\u0644\u0627\u062a \u063a\u0630\u0627\u0626\u064a\u0629","food_preferences_edit_cta":"\u062d\u0641\u0638 \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u063a\u0630\u0627\u0626\u064a\u0629","food_preferences_edit_description":"\u0642\u062f \u064a\u0643\u0648\u0646 :firstname \u0623\u0648 \u0634\u062e\u0635 \u0641\u064a \u0639\u0627\u0626\u0644\u0629 :family \u0645\u0635\u0627\u0628 \u0628\u0627\u0644\u062d\u0633\u0627\u0633\u064a\u0629\u060c \u0623\u0648 \u0644\u0627 \u064a\u0631\u064a\u062f \u0646\u0648\u0639 \u0645\u0639\u064a\u0646 \u0645\u0646 \u0627\u0644\u0646\u0628\u064a\u0630. \u062d\u062f\u062f \u0630\u0644\u0643 \u0647\u0646\u0627 \u0644\u0643\u064a \u062a\u062a\u0630\u0643\u0631 \u0630\u0644\u0643 \u0641\u064a \u0627\u0644\u0645\u0631\u0629 \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0639\u0646\u062f\u0645\u0627 \u062a\u062f\u0639\u0648\u0647\u0645 \u0644\u0644\u0639\u0634\u0627\u0621","food_preferences_edit_description_no_last_name":"\u0642\u062f \u064a\u0643\u0648\u0646 :firstname \u0645\u0635\u0627\u0628 \u0628\u0627\u0644\u062d\u0633\u0627\u0633\u064a\u0629\u060c \u0623\u0648 \u0644\u0627 \u064a\u0631\u064a\u062f \u0646\u0648\u0639 \u0645\u0639\u064a\u0646 \u0645\u0646 \u0627\u0644\u0646\u0628\u064a\u0630. \u062d\u062f\u062f \u0630\u0644\u0643 \u0647\u0646\u0627 \u0644\u0643\u064a \u062a\u062a\u0630\u0643\u0631 \u0630\u0644\u0643 \u0641\u064a \u0627\u0644\u0645\u0631\u0629 \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0639\u0646\u062f\u0645\u0627 \u062a\u062f\u0639\u0648\u0647\u0645 \u0644\u0644\u0639\u0634\u0627\u0621","food_preferences_edit_title":"\u062d\u062f\u062f \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u063a\u0630\u0627\u0626\u064a\u0629","food_preferences_title":"\u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u063a\u0630\u0627\u0626\u064a\u0629","gifts_add_comment":"\u062a\u0639\u0644\u064a\u0642 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","gifts_add_date":"Date (optional)","gifts_add_gift":"\u0625\u0636\u0627\u0641\u0629 \u0647\u062f\u064a\u0629","gifts_add_gift_already_offered":"\u0647\u062f\u064a\u0629 \u062a\u0645 \u062a\u0642\u062f\u064a\u0645\u0647\u0627","gifts_add_gift_idea":"\u0641\u0643\u0631\u0629 \u0647\u062f\u064a\u0629","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"\u0647\u062f\u064a\u0629 \u062a\u0645 \u0627\u0633\u062a\u0644\u0627\u0645\u0647\u0627","gifts_add_gift_title":"\u0645\u0627 \u0647\u0630\u0647 \u0627\u0644\u0647\u062f\u064a\u0629\u061f","gifts_add_link":"\u0627\u0644\u0631\u0627\u0628\u0637 \u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0648\u064a\u0628 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"\u062a\u0645 \u0628\u0646\u062c\u0627\u062d \u0625\u0636\u0627\u0641\u0629 \u0647\u062f\u064a\u0629","gifts_add_title":"\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0647\u062f\u0627\u064a\u0627 \u0644\u0640 :name","gifts_add_value":"\u0627\u0644\u0642\u064a\u0645\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","gifts_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0647\u062f\u064a\u0629\u061f","gifts_delete_cta":"\u062d\u0630\u0641","gifts_delete_success":"\u062a\u0645 \u0628\u0646\u062c\u0627\u062d \u062d\u0630\u0641 \u0647\u062f\u064a\u0629","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"\u0623\u0641\u0643\u0627\u0631 \u0644\u0644\u0647\u062f\u0627\u064a\u0627","gifts_link":"\u0627\u0644\u0631\u0627\u0628\u0637","gifts_mark_offered":"\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0628\u0623\u0646\u0647 \u062a\u0645 \u0639\u0631\u0636\u0647\u0627","gifts_offered":"\u0647\u062f\u064a\u0629 \u062a\u0645 \u062a\u0642\u062f\u064a\u0645\u0647\u0627","gifts_offered_as_an_idea":"\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0643\u0641\u0643\u0631\u0629","gifts_received":"\u0627\u0633\u062a\u0644\u0627\u0645 \u0647\u062f\u064a\u0629","gifts_title":"\u0627\u0644\u0647\u062f\u0627\u064a\u0627","gifts_update_success":"\u062a\u0645 \u0628\u0646\u062c\u0627\u062d \u062a\u062d\u062f\u064a\u062b \u0647\u062f\u064a\u0629","gifts_view_comment":"\u0639\u0631\u0636 \u0627\u0644\u062a\u0639\u0644\u064a\u0642","information_edit_birthdate_label":"Birthdate","information_edit_description":"\u0627\u0644\u0648\u0635\u0641 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","information_edit_description_help":"\u062a\u0633\u062a\u062e\u062f\u0645 \u0641\u064a \u0642\u0627\u0626\u0645\u0629 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0644\u0625\u0636\u0627\u0641\u0629 \u0628\u0639\u0636 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a\u060c \u0625\u0630\u0627 \u0644\u0632\u0645 \u0627\u0644\u0623\u0645\u0631.","information_edit_exact":"\u0623\u0646\u0627 \u0623\u0639\u0631\u0641 \u062a\u0627\u0631\u064a\u062e \u0645\u064a\u0644\u0627\u062f \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0628\u062f\u0642\u0629...","information_edit_firstname":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644","information_edit_lastname":"\u0627\u0633\u0645 \u0627\u0644\u0639\u0627\u0626\u0644\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","information_edit_max_size":"\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 :size \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"\u0623\u0639\u0631\u0641 \u0627\u0644\u064a\u0648\u0645 \u0648\u0627\u0644\u0634\u0647\u0631 \u0644\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u064a\u0644\u0627\u062f \u0644\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635\u060c \u0648\u0644\u0643\u0646 \u0644\u064a\u0633 \u0627\u0644\u0639\u0627\u0645...","information_edit_probably":"\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0642\u062f \u064a\u0643\u0648\u0646...","information_edit_success":"\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0634\u062e\u0635\u064a \u0628\u0646\u062c\u0627\u062d","information_edit_title":"\u062a\u0639\u062f\u064a\u0644 \u0645\u0639\u0644\u0648\u0645\u0627\u062a :name \u0627\u0644\u0634\u062e\u0635\u064a\u0629","information_edit_unknown":"\u0623\u0646\u0627 \u0644\u0627 \u0623\u0639\u0631\u0641 \u0639\u0645\u0631 \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635","information_no_work_defined":"\u0644\u0627 \u062a\u0648\u062c\u062f \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0639\u0645\u0644","information_work_at":"\u0644\u062f\u0649 :company","introductions_add_reminder":"\u0623\u0636\u0641 \u062a\u0630\u0643\u064a\u0631 \u0644\u0644\u0627\u062d\u062a\u0641\u0627\u0644 \u0628\u0630\u0643\u0631\u0649 \u0647\u0630\u0647 \u0627\u0644\u0645\u0646\u0627\u0633\u0628\u0629","introductions_additional_info":"\u0627\u0634\u0631\u062d \u0643\u064a\u0641 \u0648\u0623\u064a\u0646 \u0625\u0644\u062a\u0642\u064a\u062a\u0645","introductions_blank_cta":"\u062d\u062f\u062f \u0643\u064a\u0641 \u0642\u0627\u0628\u0644\u062a :name","introductions_edit_met_through":"\u0647\u0644 \u0639\u0631\u0651\u0641\u0643 \u0623\u062d\u062f \u0628\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635\u061f","introductions_first_met_date":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0644\u0642\u0627\u0621","introductions_first_met_date_known":"\u0647\u0630\u0627 \u0647\u0648 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0644\u0642\u0627\u0621 \u0627\u0644\u0623\u0648\u0644","introductions_met_date":"\u0627\u0644\u062a\u0642\u064a\u0646\u0627 \u0641\u064a :date","introductions_met_through":"\u0627\u0644\u062a\u0642\u064a\u0646\u0627 \u0628\u0648\u0627\u0633\u0637\u0629 :name<\/a>","introductions_no_first_met_date":"\u0644\u0627 \u0623\u0639\u0631\u0641 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0644\u0642\u0627\u0621 \u0627\u0644\u0623\u0648\u0644","introductions_no_met_through":"\u0644\u0627 \u0623\u062d\u062f","introductions_reminder_title":"\u0627\u0644\u0630\u0643\u0631\u0649 \u0627\u0644\u0633\u0646\u0648\u064a\u0629 \u0644\u0644\u064a\u0648\u0645 \u0627\u0644\u0630\u064a \u0627\u0644\u062a\u0642\u064a\u062a\u0645 \u0641\u064a\u0647 \u0644\u0644\u0645\u0631\u0629 \u0627\u0644\u0623\u0648\u0644\u0649","introductions_sidebar_title":"\u0643\u064a\u0641 \u0625\u0644\u062a\u0642\u064a\u062a\u0645","introductions_title_edit":"\u0643\u064a\u0641 \u0627\u0644\u062a\u0642\u064a\u062a \u0628\u0640 :name\u061f","introductions_update_success":"\u0644\u0642\u062f \u062d\u062f\u062b\u062a \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0643\u064a\u0641\u064a\u0629 \u0644\u0642\u0627\u0626\u0643 \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0628\u0646\u062c\u0627\u062d","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"\u0642\u0645 \u0628\u062a\u0633\u062c\u064a\u0644 \u0645\u0627 \u064a\u062d\u062f\u062b \u0641\u064a \u062d\u064a\u0627\u0629 {name} \u0643\u0645\u0631\u062c\u0639 \u0644\u0643 \u0641\u064a \u0627\u0644\u0645\u0633\u062a\u0642\u0628\u0644.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"\u0623\u0636\u0641 \u062a\u0630\u0643\u064a\u0631\u0627\u064b \u0633\u0646\u0648\u064a\u0627\u064b \u0644\u0647\u0630\u0627 \u0627\u0644\u062d\u062f\u062b","life_event_create_category":"\u0643\u0644 \u0627\u0644\u0641\u0626\u0627\u062a","life_event_create_date":"\u0644\u0627 \u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u062a\u062d\u062f\u064a\u062f \u0634\u0647\u0631 \u0623\u0648 \u064a\u0648\u0645 - \u0627\u0644\u0633\u0646\u0629 \u0641\u0642\u0637 \u0625\u0644\u0632\u0627\u0645\u064a\u0629.","life_event_create_default_description":"\u0623\u0636\u0641 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062d\u0648\u0644 \u0645\u0627 \u062a\u0639\u0631\u0641\u0647","life_event_create_default_story":"\u0627\u0644\u0642\u0635\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","life_event_create_default_title":"\u0627\u0644\u0639\u0646\u0648\u0627\u0646 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","life_event_create_life_event":"\u0625\u0636\u0627\u0641\u0629 \u062d\u062f\u062b \u0627\u0644\u062d\u064a\u0627\u0629","life_event_create_success":"\u062a\u0645\u062a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u062d\u062f\u062b","life_event_date_it_happened":"\u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0630\u064a \u062d\u062f\u062b \u0641\u064a\u0647","life_event_delete_description":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062d\u062f\u062b\u061f \u0627\u0644\u062d\u0630\u0641 \u062f\u0627\u0626\u0645.","life_event_delete_success":"\u062a\u0645\u062a \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062d\u062f\u062b","life_event_delete_title":"\u062d\u0630\u0641 \u062d\u062f\u062b \u0627\u0644\u062d\u064a\u0627\u0629","life_event_list_cta":"\u0625\u0636\u0627\u0641\u0629 \u062d\u062f\u062b \u0627\u0644\u062d\u064a\u0627\u0629","life_event_list_tab_life_events":"\u0623\u062d\u062f\u0627\u062b \u0627\u0644\u062d\u064a\u0627\u0629","life_event_list_tab_other":"\u0645\u0644\u0627\u062d\u0638\u0627\u062a\u060c \u062a\u0630\u0643\u064a\u0631\u0627\u062a\u060c ...","life_event_list_title":"\u0623\u062d\u062f\u0627\u062b \u0627\u0644\u062d\u064a\u0627\u0629","life_event_sentence_achievement_or_award":"\u062a\u0644\u0642\u0649 \u0625\u0646\u062c\u0627\u0632\u0627\u064b \u0623\u0648 \u062c\u0627\u0626\u0632\u0629","life_event_sentence_anniversary":"\u0630\u0643\u0631\u0649","life_event_sentence_bought_a_home":"\u0627\u0634\u062a\u0631\u064a\u062a \u0645\u0646\u0632\u0644","life_event_sentence_broken_bone":"\u0643\u0633\u0631\u062a \u0639\u0638\u0645\u0627\u064b","life_event_sentence_changed_beliefs":"\u063a\u064a\u0631\u062a \u0645\u0639\u062a\u0642\u062f\u0627\u062a\u064a","life_event_sentence_dentist":"\u0630\u0647\u0628\u062a \u0644\u0637\u0628\u064a\u0628 \u0627\u0644\u0623\u0633\u0646\u0627\u0646","life_event_sentence_end_of_relationship":"\u0623\u0646\u0647\u064a\u062a \u0639\u0644\u0627\u0642\u0629","life_event_sentence_engagement":"\u062e\u0637\u0628\u062a","life_event_sentence_expecting_a_baby":"\u0627\u0646\u062a\u0638\u0627\u0631 \u0645\u0648\u0644\u0648\u062f","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"\u062a\u062d\u062f\u062b \u0644\u0644\u0645\u0631\u0629 \u0627\u0644\u0623\u0648\u0644\u0649","life_event_sentence_holidays":"\u0630\u0647\u0628\u062a \u0641\u064a \u0639\u0637\u0644\u0629","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"\u062a\u0632\u0648\u062c\u062a","life_event_sentence_military_service":"\u0628\u062f\u0623\u062a \u0627\u0644\u062e\u062f\u0645\u0629 \u0627\u0644\u0639\u0633\u0643\u0631\u064a\u0629","life_event_sentence_moved":"\u0625\u0646\u062a\u0642\u0644","life_event_sentence_new_child":"\u0631\u0632\u0642 \u0628\u0645\u0648\u0644\u0648\u062f","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"\u0625\u0636\u0627\u0641\u0629 \u0641\u0631\u062f \u062c\u062f\u064a\u062f \u0641\u064a \u0627\u0644\u0639\u0627\u0626\u0644\u0629","life_event_sentence_new_hobby":"\u0628\u062f\u0623\u062a \u0647\u0648\u0627\u064a\u0629","life_event_sentence_new_instrument":"\u062a\u0639\u0644\u0645 \u0622\u0644\u0629 \u062c\u062f\u064a\u062f\u0629","life_event_sentence_new_job":"\u0628\u062f\u0623 \u0641\u064a \u0639\u0645\u0644 \u062c\u062f\u064a\u062f","life_event_sentence_new_language":"\u062a\u0639\u0644\u0645\u062a \u0644\u063a\u0629 \u062c\u062f\u064a\u062f\u0629","life_event_sentence_new_license":"\u062d\u0635\u0644\u062a\u064f \u0639\u0644\u0649 \u0631\u062e\u0635\u0629","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"\u0628\u062f\u0623\u062a \u0641\u064a \u0639\u0644\u0627\u0642\u0629","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"\u0628\u062f\u0623\u062a \u0627\u0644\u0645\u062f\u0631\u0633\u0629","life_event_sentence_new_sport":"\u0628\u062f\u0623\u062a \u0641\u064a \u0631\u064a\u0627\u0636\u0629","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"\u0646\u0634\u0631\u062a \u0645\u0642\u0627\u0644","life_event_sentence_quit_a_habit":"\u0623\u0642\u0644\u0639\u062a \u0639\u0646 \u0639\u0627\u062f\u0629","life_event_sentence_removed_braces":"\u0623\u0632\u0644\u062a \u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0623\u0633\u0646\u0627\u0646","life_event_sentence_retirement":"\u062a\u0642\u0627\u0639\u062f","life_event_sentence_study_abroad":"\u062f\u0631\u0633\u062a \u062e\u0627\u0631\u062c\u0627\u064b","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"\u062a\u0644\u0642\u0649 \u0648\u0634\u0645\u0627\u064b \u0623\u0648 \u062b\u0642\u0628","life_event_sentence_travel":"\u0633\u0627\u0641\u0631\u062a","life_event_sentence_volunteer_work":"\u0628\u062f\u0623\u062a \u0641\u064a \u0627\u0644\u062a\u0637\u0648\u0639","life_event_sentence_wear_glass_or_contact":"\u0628\u062f\u0623\u062a \u0641\u064a \u0627\u0631\u062a\u062f\u0627\u0621 \u0627\u0644\u0646\u0638\u0627\u0631\u0627\u062a \u0623\u0648 \u0627\u0644\u0639\u062f\u0633\u0627\u062a","life_event_sentence_weight_loss":"\u0641\u0642\u062f\u062a \u0627\u0644\u0648\u0632\u0646","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"\u0645\u0627\u0630\u0627 \u062a\u062d\u062f\u062b\u062a\u0645 \u0639\u0646\u0647\u061f (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"\u062a\u0645\u062a \u0627\u0644\u0645\u0643\u0627\u0644\u0645\u0629 \u0627\u0644\u0647\u0627\u062a\u0641\u064a\u0629 \u0641\u064a","modal_call_title":"\u062a\u0633\u062c\u064a\u0644 \u0645\u0643\u0627\u0644\u0645\u0629","modal_call_who_called":"Who called?","notes_add_cta":"\u0625\u0636\u0627\u0641\u0629 \u0645\u0644\u0627\u062d\u0638\u0629","notes_create_success":"\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u0630\u0643\u0631\u0629 \u0628\u0646\u062c\u0627\u062d","notes_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u0630 \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0645\u0630\u0643\u0631\u0629\u061f \u0627\u0644\u062d\u0630\u0641 \u062f\u0627\u0626\u0645","notes_delete_success":"\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u0630\u0643\u0631\u0629 \u0628\u0646\u062c\u0627\u062d","notes_delete_title":"\u062d\u0630\u0641 \u0645\u0644\u0627\u062d\u0638\u0629","notes_favorite":"\u0625\u0636\u0627\u0641\u0629\/\u0625\u0632\u0627\u0644\u0629 \u0645\u0646 \u0627\u0644\u0645\u0641\u0636\u0644\u0629","notes_update_success":"\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0645\u0630\u0643\u0631\u0629 \u0628\u0646\u062c\u0627\u062d","people_add_birthday_reminder":"\u062a\u0645\u0646\u0649 :name \u0639\u064a\u062f \u0645\u064a\u0644\u0627\u062f \u0633\u0639\u064a\u062f","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"\u0625\u0636\u0627\u0641\u0629","people_add_firstname":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644","people_add_gender":"\u0627\u0644\u062c\u0646\u0633","people_add_import":"\u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643<\/a>\u061f","people_add_lastname":"\u0627\u0633\u0645 \u0627\u0644\u0639\u0627\u0626\u0644\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","people_add_middlename":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0633\u0637 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","people_add_missing":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0623\u064a \u0634\u062e\u0635\u060c \u0623\u0636\u0641 \u0634\u062e\u0635 \u062c\u062f\u064a\u062f \u0627\u0644\u0622\u0646","people_add_new":"Add new person","people_add_nickname":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","people_add_reminder_for_birthday":"\u0625\u0646\u0634\u0627\u0621 \u062a\u0630\u0643\u064a\u0631 \u0633\u0646\u0648\u064a \u0644\u0639\u064a\u062f \u0627\u0644\u0645\u064a\u0644\u0627\u062f","people_add_success":":name \u062a\u0645 \u0625\u0636\u0627\u0641\u062a\u0647 \u0628\u0646\u062c\u0627\u062d","people_add_title":"\u0625\u0636\u0627\u0641\u0629 \u0634\u062e\u0635 \u062c\u062f\u064a\u062f","people_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0647\u0630\u0647\u061f \u0627\u0644\u062d\u0630\u0641 \u062f\u0627\u0626\u0645.","people_delete_message":"Delete contact","people_delete_success":"\u062a\u0645 \u062d\u0630\u0641 \u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644","people_edit_email_error":"\u064a\u0648\u062c\u062f \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0641\u064a \u062d\u0633\u0627\u0628\u0643 \u0628\u0646\u0641\u0633 \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0639\u0646\u0648\u0627\u0646 \u0622\u062e\u0631.","people_export":"\u062a\u0635\u062f\u064a\u0631 \u0643 vCard","people_list_account_upgrade_cta":"\u0642\u0645 \u0628\u0627\u0644\u062a\u0631\u0642\u064a\u0629 \u0627\u0644\u0627\u0646","people_list_account_upgrade_title":"\u0642\u0645 \u0628\u062a\u0631\u0642\u064a\u0629 \u062d\u0633\u0627\u0628\u0643 \u0644\u062a\u0641\u0639\u064a\u0644 \u0643\u0627\u0645\u0644 \u0625\u0645\u0643\u0627\u0646\u064a\u0627\u062a\u0647.","people_list_account_usage":"\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u062d\u0633\u0627\u0628\u0643: :current\/:limit \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644","people_list_blank_cta":"\u0623\u0636\u0641 \u0634\u062e\u0635","people_list_blank_title":"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0623\u064a \u0634\u062e\u0635 \u0641\u064a \u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0628\u0639\u062f","people_list_clear_filter":"\u0645\u0633\u062d \u0627\u0644\u062a\u0635\u0641\u064a\u0629","people_list_contacts_per_tags":"\u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0648\u0627\u062d\u062f\u0629|:count \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644","people_list_filter_tag":"\u0639\u0631\u0636 \u0643\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0630\u0627\u062a \u0627\u0644\u0648\u0633\u0645","people_list_filter_untag":"\u0639\u0631\u0636 \u0643\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u063a\u064a\u0631 \u0645\u0648\u0633\u0648\u0645\u0629","people_list_firstnameAZ":"\u0641\u0631\u0632 \u062d\u0633\u0628 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644 A \u2192 Z","people_list_firstnameZA":"\u0641\u0631\u0632 \u062d\u0633\u0628 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644 Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"\u0622\u062e\u0631 \u0627\u0633\u062a\u0634\u0627\u0631\u0629:","people_list_lastactivitydateNewtoOld":"\u0641\u0631\u0632 \u062d\u0633\u0628 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0646\u0634\u0627\u0637 \u0627\u0644\u0623\u062e\u064a\u0631 \u0645\u0646 \u0627\u0644\u0623\u062d\u062f\u062b \u0625\u0644\u0649 \u0627\u0644\u0623\u0642\u062f\u0645","people_list_lastactivitydateOldtoNew":"\u0641\u0631\u0632 \u062d\u0633\u0628 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0646\u0634\u0627\u0637 \u0627\u0644\u0623\u062e\u064a\u0631 \u0645\u0646 \u0627\u0644\u0623\u0642\u062f\u0645 \u0625\u0644\u0649 \u0627\u0644\u0623\u062d\u062f\u062b","people_list_lastnameAZ":"\u0641\u0631\u0632 \u062d\u0633\u0628 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u062e\u064a\u0631 A \u2192 Z","people_list_lastnameZA":"\u0641\u0631\u0632 \u062d\u0633\u0628 \u0627\u0633\u0645 \u0627\u0644\u0639\u0627\u0626\u0644\u0629 Z \u2192 A","people_list_number_kids":"\u0637\u0641\u0644 \u0648\u0627\u062d\u062f|:count \u0623\u0637\u0641\u0627\u0644","people_list_number_reminders":"\u062a\u0630\u0643\u064a\u0631 \u0648\u0627\u062d\u062f|:count \u062a\u0630\u0643\u064a\u0631\u0627\u062a","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"\u062a\u0631\u062a\u064a\u0628","people_list_stats":"\u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0648\u0627\u062d\u062f\u0629|:count \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644","people_list_untagged":"\u0639\u0631\u0636 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u063a\u064a\u0631 \u0645\u0648\u0633\u0648\u0645\u0629","people_not_found":"Contact not found","people_save_and_add_another_cta":"\u062a\u0642\u062f\u064a\u0645 \u0648\u0623\u0636\u0641 \u0634\u062e\u0635 \u0622\u062e\u0631","people_search":"\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"\u0637\u064a\u0648\u0631","pets_cat":"\u0642\u0637\u0637","pets_create_success":"The pet has been successfully added","pets_delete_success":"\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u062d\u064a\u0648\u0627\u0646 \u0627\u0644\u0623\u0644\u064a\u0641","pets_dog":"\u0643\u0644\u0627\u0628","pets_fish":"\u0623\u0633\u0645\u0627\u0643","pets_hamster":"\u0647\u0627\u0645\u0633\u062a\u0631","pets_horse":"\u062d\u0635\u0627\u0646","pets_kind":"\u0646\u0648\u0639 \u0627\u0644\u062d\u064a\u0648\u0627\u0646 \u0627\u0644\u0623\u0644\u064a\u0641","pets_name":"\u0627\u0644\u0627\u0633\u0645 (\u0627\u062e\u062a\u064a\u0627\u0631\u0649)","pets_other":"\u063a\u064a\u0631 \u0630\u0644\u0643","pets_rabbit":"\u0623\u0631\u0646\u0628","pets_rat":"\u062c\u0631\u0630","pets_reptile":"\u0632\u0648\u0627\u062d\u0641","pets_small_animal":"\u062d\u064a\u0648\u0627\u0646\u0627\u062a \u0635\u063a\u064a\u0631\u0629","pets_title":"\u0627\u0644\u062d\u064a\u0648\u0627\u0646\u0627\u062a \u0627\u0644\u0623\u0644\u064a\u0641\u0629","pets_update_success":"\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062d\u064a\u0648\u0627\u0646 \u0627\u0644\u0623\u0644\u064a\u0641","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0639\u0644\u0627\u0642\u0629\u061f \u0627\u0644\u062d\u0630\u0641 \u062f\u0627\u0626\u0645.","relationship_form_add":"\u0625\u0636\u0627\u0641\u0629 \u0639\u0644\u0627\u0642\u0629 \u062c\u062f\u064a\u062f\u0629","relationship_form_add_choice":"\u0645\u0639 \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u0639\u0644\u0627\u0642\u0629\u061f","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0623\u064a \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0642\u062f \u062a\u0643\u0648\u0646 \u0639\u0644\u0649 \u0642\u0631\u0627\u0628\u0629 \u0628\u0640:name \u062d\u0627\u0644\u064a\u0627.","relationship_form_add_success":"\u062a\u0645 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u0639\u0644\u0627\u0642\u0629 \u0628\u0646\u062c\u0627\u062d.","relationship_form_also_create_contact":"\u0625\u0646\u0634\u0627\u0621 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0644\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635.","relationship_form_associate_contact":"\u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0645\u0648\u062c\u0648\u062f\u0629","relationship_form_associate_dropdown":"\u0628\u062d\u062b \u0648\u0627\u062e\u062a\u064a\u0627\u0631 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0645\u0648\u062c\u0648\u062f\u0629 \u0645\u0646 \u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0646\u0633\u062f\u0644\u0629 \u0623\u062f\u0646\u0627\u0647","relationship_form_associate_dropdown_placeholder":"\u0628\u062d\u062b \u0648\u0627\u062e\u062a\u064a\u0627\u0631 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0645\u0648\u062c\u0648\u062f\u0629","relationship_form_create_contact":"\u0625\u0636\u0627\u0641\u0629 \u0634\u062e\u0635 \u062c\u062f\u064a\u062f","relationship_form_deletion_success":"\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0639\u0644\u0627\u0642\u0629.","relationship_form_edit":"\u062a\u0639\u062f\u064a\u0644 \u0639\u0644\u0627\u0642\u0629 \u062d\u0627\u0644\u064a\u0629","relationship_form_is_with":"\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0639\u0644\u0627\u0642\u0629\u061f \u0644\u0646 \u064a\u062a\u0645 \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u2013 \u0641\u0642\u0637 \u0627\u0644\u0639\u0644\u0627\u0642\u0629 \u0628\u064a\u0646 \u0627\u0644\u0634\u062e\u0635\u064a\u0646.","reminder_frequency_day":"\u064a\u0648\u0645\u064a\u0627|\u0643\u0644 :number \u0623\u064a\u0627\u0645","reminder_frequency_month":"\u0634\u0647\u0631\u064a\u0627|\u0643\u0644 :number \u0623\u0634\u0647\u0631","reminder_frequency_one_time":"\u0641\u064a :date","reminder_frequency_week":"\u0623\u0633\u0628\u0648\u0639\u064a\u0627|\u0643\u0644 :number \u0623\u0633\u0627\u0628\u064a\u0639","reminder_frequency_year":"\u0633\u0646\u0648\u064a\u0627|\u0643\u0644 :number \u0633\u0646\u0648\u0627\u062a","reminders_add_cta":"\u0625\u0636\u0627\u0641\u0629 \u062a\u0630\u0643\u064a\u0631","reminders_add_description":"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0630\u0643\u064a\u0631\u064a \u0644\u0650\u0640...","reminders_add_error_custom_text":"\u064a\u062c\u0628 \u0625\u0636\u0627\u0641\u0629 \u0646\u0635 \u0644\u0647\u0630\u0627 \u0627\u0644\u062a\u0630\u0643\u064a\u0631","reminders_add_next_time":"\u0645\u062a\u0649 \u062a\u0648\u062f \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0645\u0631\u0629 \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0627\u0644\u062a\u064a \u064a\u062a\u0645 \u0641\u064a\u0647\u0627 \u062a\u0630\u0643\u064a\u0631\u0643 \u0628\u0647\u0630\u0627\u061f","reminders_add_once":"\u0630\u0643\u0631\u0646\u064a \u0628\u0647\u0630\u0627 \u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629 \u0641\u0642\u0637","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"\u0630\u0643\u0631\u0646\u064a \u0628\u0647\u0630\u0627 \u0643\u0644","reminders_add_starting_from":"\u0627\u0628\u062a\u062f\u0627\u0621\u064b \u0645\u0646 \u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u0648\u0636\u062d \u0623\u0639\u0644\u0627\u0647","reminders_add_title":"\u0645\u0627 \u0627\u0644\u0630\u064a \u062a\u0631\u063a\u0628 \u0628\u062a\u0630\u0643\u0631\u0647 \u0639\u0646 :name\u061f","reminders_birthday":"\u0639\u064a\u062f \u0645\u064a\u0644\u0627\u062f :name","reminders_blank_add_activity":"\u0625\u0636\u0627\u0641\u0629 \u062a\u0630\u0643\u064a\u0631","reminders_blank_title":"\u0647\u0644 \u0647\u0646\u0627\u0643 \u0634\u064a\u0621 \u0645\u0627 \u0643\u0646\u062a \u062a\u0631\u063a\u0628 \u0623\u0646 \u064a\u062a\u0645 \u062a\u0630\u0643\u064a\u0631\u0643 \u0628\u0647 \u0628\u062e\u0635\u0648\u0635 :name\u061f","reminders_create_success":"\u062a\u0645 \u0628\u0646\u062c\u0627\u062d \u0625\u0636\u0627\u0641\u0629 \u062a\u0630\u0643\u064a\u0631","reminders_cta":"\u0625\u0636\u0627\u0641\u0629 \u062a\u0630\u0643\u064a\u0631","reminders_delete_confirmation":"\u0647\u0644 \u062a\u0631\u064a\u062f \u0641\u0639\u0644\u0627 \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062a\u0630\u0643\u064a\u0631\u061f","reminders_delete_cta":"\u062d\u0630\u0641","reminders_delete_success":"\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u062a\u0630\u0643\u064a\u0631 \u0628\u0646\u062c\u0627\u062d","reminders_description":"\u0633\u064a\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u0644\u0643\u0644 \u0645\u0646 \u0627\u0644\u062a\u0630\u0643\u064a\u0631\u0627\u062a \u0623\u062f\u0646\u0627\u0647. \u064a\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062a\u0630\u0643\u064a\u0631\u0627\u062a \u0641\u064a \u0635\u0628\u0627\u062d \u0643\u0644 \u064a\u0648\u0645 \u0630\u064a \u0645\u0646\u0627\u0633\u0628\u0629. \u0627\u0644\u062a\u0630\u0643\u064a\u0631\u0627\u062a \u0627\u0644\u0645\u0636\u0627\u0641\u0629 \u062a\u0644\u0642\u0627\u0626\u064a\u0627 \u0644\u0623\u0639\u064a\u0627\u062f \u0627\u0644\u0645\u064a\u0644\u0627\u062f \u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0630\u0641\u0647\u0645. \u0625\u0630\u0627 \u0623\u0631\u062f\u062a \u062a\u063a\u064a\u064a\u0631 \u0647\u0630\u0647 \u0627\u0644\u062a\u0648\u0627\u0631\u064a\u062e\u060c \u064a\u0645\u0643\u0646\u0643 \u062a\u0639\u062f\u064a\u0644 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u064a\u0644\u0627\u062f \u0644\u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u0645\u0639\u0646\u064a\u0629.","reminders_edit_update_cta":"\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062a\u0630\u0643\u064a\u0631","reminders_free_plan_warning":"\u0623\u0646\u062a \u0639\u0644\u0649 \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629. \u0644\u0627 \u064a\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u062e\u0637\u0629. \u0642\u0645 \u0628\u062a\u0631\u0642\u064a\u0629 \u062d\u0633\u0627\u0628\u0643 \u0644\u0627\u0633\u062a\u0644\u0627\u0645 \u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629.","reminders_next_expected_date":"\u0639\u0644\u0649","reminders_one_time":"\u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629","reminders_type_month":"\u0634\u0647\u0631","reminders_type_week":"\u0623\u0633\u0628\u0648\u0639","reminders_type_year":"\u0633\u0646\u0629","reminders_update_success":"\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062a\u0630\u0643\u064a\u0631 \u0628\u0646\u062c\u0627\u062d","section_contact_information":"\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644","section_personal_activities":"\u0627\u0644\u0623\u0646\u0634\u0637\u0629","section_personal_gifts":"\u0627\u0644\u0647\u062f\u0627\u064a\u0627","section_personal_notes":"\u0627\u0644\u0645\u0644\u0627\u062d\u0638\u0627\u062a","section_personal_reminders":"\u0631\u0633\u0627\u0626\u0644 \u062a\u0630\u0643\u064a\u0631","section_personal_tasks":"\u0627\u0644\u0645\u0647\u0627\u0645","set_favorite":"\u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u064a\u062a\u0645 \u0648\u0636\u0639\u0647\u0627 \u0641\u064a \u0642\u0645\u0629 \u0642\u0627\u0626\u0645\u0629 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644","stay_in_touch":"\u0627\u0628\u0642\u0649 \u0639\u0644\u0649 \u0627\u062a\u0635\u0627\u0644","stay_in_touch_frequency":"\u0627\u0628\u0642\u0649 \u0639\u0644\u0649 \u0627\u062a\u0635\u0627\u0644 \u064a\u0648\u0645\u064a\u0627|\u0627\u0628\u0642\u0649 \u0639\u0644\u0649 \u0627\u062a\u0635\u0627\u0644 \u0643\u0644 {count} \u064a\u0648\u0645\u064b\u0627","stay_in_touch_invalid":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u062a\u0648\u0627\u062a\u0631 \u0639\u062f\u062f \u0623\u0643\u0628\u0631 \u0645\u0646 0.","stay_in_touch_modal_desc":"\u064a\u0645\u0643\u0646 \u0623\u0646 \u0646\u0630\u0643\u0631\u0643 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u0644\u0628\u0642\u0627\u0621 \u0639\u0644\u0649 \u0627\u062a\u0635\u0627\u0644 \u0645\u0639 {firstname} \u0639\u0644\u0649 \u0641\u062a\u0631\u0627\u062a \u0645\u0646\u062a\u0638\u0645\u0629.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"\u0627\u0628\u0642\u0649 \u0639\u0644\u0649 \u0627\u062a\u0635\u0627\u0644","stay_in_touch_premium":"\u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u062a\u0631\u0642\u064a\u0629 \u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0647\u0630\u0647 \u0627\u0644\u0645\u064a\u0632\u0629","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"\u062a\u0639\u062f\u064a\u0644 \u0648\u0633\u0645","tag_no_tags":"No tags yet","tasks_add_task":"\u0625\u0636\u0627\u0641\u0629 \u0645\u0647\u0645\u0629","tasks_blank_title":"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0645\u0647\u0627\u0645 \u062d\u062a\u0649 \u0627\u0644\u0622\u0646.","tasks_complete_success":"\u062a\u0645 \u062a\u063a\u064a\u064a\u0631 \u062d\u0627\u0644\u0629 \u0627\u0644\u0645\u0647\u0645\u0629 \u0628\u0646\u062c\u0627\u062d","tasks_delete_success":"\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u0647\u0645\u0629 \u0628\u0646\u062c\u0627\u062d","tasks_form_description":"\u0627\u0644\u0648\u0635\u0641 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","tasks_form_title":"\u0627\u0644\u0639\u0646\u0648\u0627\u0646","tasks_title":"Tasks","work_add_cta":"\u062a\u062d\u062f\u064a\u062b \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0639\u0645\u0644","work_edit_company":"\u0627\u0644\u0634\u0631\u0643\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","work_edit_job":"\u0627\u0644\u0645\u0633\u0645\u0649 \u0627\u0644\u0648\u0638\u064a\u0641\u064a (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","work_edit_success":"Work information updated","work_edit_title":"\u062a\u062d\u064a\u062b \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0640 :name","work_information":"\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0639\u0645\u0644"},"reminder":{"type_birthday":"\u062a\u0645\u0646\u0649 \u064a\u0648\u0645 \u0645\u0648\u0644\u062f \u0633\u0639\u064a\u062f \u0644\u0640","type_birthday_kid":"\u062a\u0645\u0646\u0649 \u064a\u0648\u0645 \u0645\u0648\u0644\u062f \u0633\u0639\u064a\u062f \u0644\u0637\u0641\u0644","type_email":"\u0623\u0631\u0633\u0644 \u0631\u0633\u0627\u0644\u0629","type_hangout":"\u0642\u0636\u0627\u0621 \u0627\u0644\u0648\u0642\u062a \u0645\u0639","type_lunch":"\u062a\u0646\u0627\u0648\u0644 \u0627\u0644\u063a\u0630\u0627\u0621 \u0645\u0639","type_phone_call":"\u0627\u062a\u0635\u0644"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"\u062d\u062f\u062b \u062e\u0637\u0623 \u0639\u0646\u062f \u0645\u062d\u0627\u0648\u0644\u0629 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_disable_success":"\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_disable_title":"\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"\u062d\u062f\u062b \u062e\u0637\u0623 \u0639\u0646\u062f \u0645\u062d\u0627\u0648\u0644\u0629 \u062a\u0646\u0634\u064a\u0637 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_enable_error_already_set":"\u062a\u0645 \u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0645\u0633\u0628\u0642\u0627\u064b","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"\u062a\u0645 \u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_enable_title":"\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_otp_title":"\u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","2fa_title":"\u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629","api_authorized_clients":"\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0639\u0645\u0644\u0627\u0621 \u0627\u0644\u0645\u0635\u0631\u062d \u0628\u0647\u0645","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"\u0627\u0644\u0627\u0633\u0645","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"\u0627\u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0627\u0644\u0645\u0635\u0631\u062d\u0629 \u0628\u0647\u0627","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"\u0645\u0639\u0631\u0641 \u0627\u0644\u0639\u0645\u064a\u0644","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"\u0647\u0630\u0627 \u0627\u0644\u0642\u0633\u0645 \u064a\u062a\u064a\u062d \u0644\u0643 \u062a\u0633\u062c\u064a\u0644 \u0639\u0645\u0644\u0627\u0621 OAuth \u0627\u0644\u062e\u0627\u0635\u064a\u0646 \u0628\u0643.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"\u0625\u0646\u0634\u0627\u0621 \u0639\u0645\u064a\u0644","api_oauth_create_new":"\u0625\u0646\u0634\u0627\u0621 \u0639\u0645\u064a\u0644 \u062c\u062f\u064a\u062f","api_oauth_edit":"Edit Client","api_oauth_name":"\u0627\u0644\u0627\u0633\u0645","api_oauth_name_help":"\u0634\u064a\u0621 \u0633\u064a\u064e\u062a\u064e\u0639\u0631\u0641 \u0639\u0644\u064a\u0647 \u0645\u0633\u062a\u062e\u062f\u0645\u0648\u0646\u0643 \u0648 \u064a\u062b\u0642\u0648\u0646 \u0628\u0647.","api_oauth_not_created":"\u0644\u0645 \u062a\u0642\u0645 \u0628\u0625\u0646\u0634\u0627\u0621 \u0623\u064a \u0639\u0645\u0644\u0627\u0621 OAuth.","api_oauth_redirecturl":"\u0631\u0627\u0628\u0637 \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0648\u062c\u064a\u0647","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"\u0633\u0631\u064a","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"\u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 API","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"\u062d\u0630\u0641","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"\u0627\u0644\u0639\u0645\u0644\u0629","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"\u062d\u0630\u0641 \u0627\u0644\u062d\u0633\u0627\u0628","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"\u0627\u062d\u0630\u0641 \u062d\u0633\u0627\u0628\u0643","email":"\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"\u0623\u062f\u062e\u0644 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"\u0642\u0645 \u0628\u062a\u0635\u062f\u064a\u0631 \u0628\u064a\u0627\u0646\u0627\u062a \u062d\u0633\u0627\u0628\u0643","export_title_sql":"Export data to SQL","firstname":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644","import_blank_cta":"\u0627\u0633\u062a\u064a\u0631\u0627\u062f vCard","import_blank_description":"\u064a\u0645\u0643\u0646\u0646\u0627 \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0645\u0644\u0641\u0627\u062a vCard \u0627\u0644\u062a\u064a \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u062d\u0635\u0644 \u0639\u0644\u064a\u0647\u0627 \u0645\u0646 \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644 Google \u0623\u0648 \u0645\u062f\u064a\u0631 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643.","import_blank_question":"\u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u0622\u0646\u061f","import_blank_title":"\u0644\u0645 \u062a\u0642\u0645 \u0628\u0625\u0633\u062a\u064a\u0631\u0627\u062f \u0623\u064a \u062c\u0647\u0627\u062a \u0625\u062a\u0635\u0627\u0644 \u0628\u0639\u062f.","import_cta":"\u062a\u062d\u0645\u064a\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644","import_in_progress":"\u0627\u0644\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0642\u064a\u062f \u0627\u0644\u062a\u0642\u062f\u0645. \u0623\u0639\u062f \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0635\u0641\u062d\u0629 \u0641\u064a \u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629.","import_need_subscription":"\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u064a\u062a\u0637\u0644\u0628 \u0627\u0634\u062a\u0631\u0627\u0643\u0627\u064b.","import_report_date":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0633\u062a\u064a\u0631\u0627\u062f","import_report_number_contacts":"\u0639\u062f\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0641\u064a \u0627\u0644\u0645\u0644\u0641","import_report_number_contacts_imported":"\u0639\u062f\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u0645\u0633\u062a\u0648\u0631\u062f\u0629","import_report_number_contacts_skipped":"\u0639\u062f\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u0645\u062a\u062e\u0637\u0649 \u0639\u0646\u0647\u0627","import_report_status_imported":"\u062a\u0645 \u0627\u0633\u062a\u064a\u0631\u0627\u062f\u0647","import_report_status_skipped":"\u062a\u0645 \u062a\u062e\u0637\u064a\u0647","import_report_title":"\u062a\u0642\u0631\u064a\u0631 \u0627\u0644\u0625\u0633\u062a\u064a\u0631\u0627\u062f","import_report_type":"\u0646\u0648\u0639 \u0627\u0644\u0625\u0633\u062a\u064a\u0631\u0627\u062f","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"\u0642\u0645\u062a \u0628\u0625\u0633\u062a\u064a\u0631\u0627\u062f :number \u0645\u0644\u0641\u0627\u062a \u062d\u062a\u0649 \u0627\u0644\u0622\u0646.","import_title":"\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0625\u0644\u0649 \u062d\u0633\u0627\u0628\u0643","import_upload_behaviour":"\u0633\u0644\u0648\u0643 \u0627\u0644\u0627\u0633\u062a\u064a\u0631\u0627\u062f:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629","import_upload_form_file":"\u0645\u0644\u0641 .vcf<\/code> \u0623\u0648 .vCard<\/code> \u0627\u0644\u062e\u0627\u0635 \u0628\u0643:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"\u0646\u062d\u0646 \u0646\u062f\u0639\u0645 \u0645\u0644\u0641\u0627\u062a .vcard<\/code> \u0648 .vcf<\/code>.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"\u0648 \u0644\u0643\u0646 \u0644\u062f\u064a\u0646\u0627 \u0628\u0639\u0636 \u0627\u0644\u0634\u0631\u0648\u0637:","import_upload_title":"\u0642\u0645 \u0628\u0625\u0633\u062a\u064a\u0631\u0627\u062f \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644\u0643 \u0645\u0646 \u0645\u0644\u0641 vCard","import_vcard_contact_exist":"\u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0645\u0648\u062c\u0648\u062f\u0629 \u0645\u0633\u0628\u0642\u0627\u064b","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"\u0644\u0627 \u064a\u0648\u062c\u062f \u0625\u062f\u062e\u0627\u0644\u0627\u062a \u0641\u064a \u0627\u0644\u0645\u0644\u0641","import_vcard_file_not_found":"\u0644\u0645 \u064a\u062a\u0645 \u0625\u064a\u062c\u0627\u062f \u0627\u0644\u0645\u0644\u0641","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"\u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629","import_view_report":"\u0639\u0631\u0636 \u0627\u0644\u062a\u0642\u0631\u064a\u0631","lastname":"\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u062e\u064a\u0631","layout":"\u0627\u0644\u062a\u0635\u0645\u064a\u0645","layout_big":"\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0643\u0627\u0645\u0644 \u0644\u0644\u0645\u0633\u062a\u0639\u0631\u0636","layout_small":"\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 1200 \u0628\u0643\u0633\u0644","locale":"\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0629 \u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u062a\u0637\u0628\u064a\u0642","locale_ar":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629","locale_cs":"\u0627\u0644\u062a\u0634\u064a\u0643\u064a\u0629","locale_de":"\u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a\u0629","locale_en":"\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629","locale_en-GB":"English (United Kingdom)","locale_es":"\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a\u0629","locale_fr":"\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629","locale_he":"\u0627\u0644\u0639\u0628\u0631\u064a\u0629","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"\u0627\u0644\u0643\u0631\u0648\u0627\u062a\u064a\u0629","locale_it":"\u0627\u0644\u0625\u064a\u0637\u0627\u0644\u064a\u0629","locale_ja":"Japanese","locale_nl":"\u0627\u0644\u0647\u0648\u0644\u0646\u062f\u064a\u0629","locale_pt":"\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"\u0627\u0644\u0631\u0648\u0633\u064a\u0629","locale_sv":"Swedish","locale_tr":"\u0627\u0644\u062a\u0631\u0643\u064a\u0629","locale_zh":"\u0627\u0644\u0635\u064a\u0646\u064a\u0629 \u0627\u0644\u0645\u0628\u0633\u0637\u0629","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"\u0627\u0633\u0645\u0643: :\u0627\u0633\u0645","name_order":"\u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0627\u0633\u0645","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u062a\u063a\u064a\u064a\u0631 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_change":"Change your password","password_current":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062d\u0627\u0644\u064a\u0629","password_current_placeholder":"\u0623\u062f\u062e\u0644 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631\u0643 \u0627\u0644\u062d\u0627\u0644\u064a\u0629","password_new1":"\u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631 \u062c\u062f\u064a\u062f\u0629","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"\u0623\u0636\u0641 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637 \u062c\u062f\u064a\u062f","personalization_activity_type_category_add":"\u0625\u0636\u0627\u0641\u0629 \u0641\u0626\u0629 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637 \u062c\u062f\u064a\u062f","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"\u0625\u0636\u0627\u0641\u0629 \u0641\u0626\u0629 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637 \u062c\u062f\u064a\u062f","personalization_activity_type_category_modal_delete":"\u062d\u0630\u0641 \u0641\u0626\u0629 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"\u0644\u0627 \u0646\u0633\u062a\u0637\u064a\u0639 \u0625\u064a\u062c\u0627\u062f \u062a\u0635\u0646\u064a\u0641 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0645\u0646 \u0627\u0644\u0623\u0646\u0634\u0637\u0629.","personalization_activity_type_category_modal_edit":"\u062a\u062d\u0631\u064a\u0631 \u0641\u0626\u0629 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"\u0625\u062c\u0631\u0627\u0621\u0627\u062a","personalization_activity_type_category_table_name":"\u0627\u0644\u0627\u0633\u0645","personalization_activity_type_category_title":"\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0646\u0648\u0639 \u0627\u0644\u0646\u0634\u0627\u0637","personalization_activity_type_modal_add":"\u0623\u0636\u0641 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637 \u062c\u062f\u064a\u062f","personalization_activity_type_modal_delete":"\u062d\u0630\u0641 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637","personalization_activity_type_modal_delete_desc":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0646\u0648\u0639 \u0647\u0630\u0627 \u0627\u0644\u0646\u0634\u0627\u0637\u061f \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0627\u0644\u062a\u064a \u062a\u0639\u0648\u062f \u0644\u0647\u0630\u0647 \u0627\u0644\u0641\u0626\u0629 \u0644\u0646 \u062a\u062a\u0623\u062b\u0631 \u0628\u0647\u0630\u0627 \u0627\u0644\u062d\u0630\u0641.","personalization_activity_type_modal_delete_error":"\u0644\u0627 \u0646\u0633\u062a\u0637\u064a\u0639 \u0625\u064a\u062c\u0627\u062f \u0646\u0648\u0639 \u0647\u0630\u0627 \u0627\u0644\u0646\u0634\u0627\u0637.","personalization_activity_type_modal_edit":"\u062a\u062d\u0631\u064a\u0631 \u0646\u0648\u0639 \u0646\u0634\u0627\u0637","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"\u0623\u0636\u0641 \u0646\u0648\u0639 \u062d\u0642\u0644 \u062c\u062f\u064a\u062f","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"\u062d\u0630\u0641 \u0646\u0648\u0639 \u062d\u0642\u0644 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0645\u0648\u062c\u0648\u062f","personalization_contact_field_type_modal_edit_title":"\u062a\u062d\u0631\u064a\u0631 \u0646\u0648\u0639 \u062d\u0642\u0644 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0645\u0648\u062c\u0648\u062f","personalization_contact_field_type_modal_icon":"\u0627\u0644\u0623\u064a\u0642\u0648\u0646\u0629 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"\u0627\u0644\u0627\u0633\u0645","personalization_contact_field_type_modal_protocol":"\u0627\u0644\u0646\u0638\u0627\u0645 (\u0625\u062e\u062a\u064a\u0627\u0631\u064a)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"\u0625\u0636\u0627\u0641\u0629 \u0646\u0648\u0639 \u062d\u0642\u0644 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u062c\u062f\u064a\u062f","personalization_contact_field_type_table_actions":"\u0625\u062c\u0631\u0627\u0621\u0627\u062a","personalization_contact_field_type_table_name":"\u0627\u0644\u0627\u0633\u0645","personalization_contact_field_type_table_protocol":"\u0627\u0644\u0646\u0638\u0627\u0645","personalization_contact_field_type_title":"\u0623\u0646\u0648\u0627\u0639 \u062d\u0642\u0648\u0644 \u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644","personalization_genders_add":"\u0625\u0636\u0627\u0641\u0629 \u0646\u0648\u0639 \u062c\u0646\u0633 \u062c\u062f\u064a\u062f","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"\u0625\u0636\u0627\u0641\u0629 \u0646\u0648\u0639 \u062c\u0646\u0633","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"\u062d\u0630\u0641 \u0646\u0648\u0639 \u0627\u0644\u062c\u0646\u0633","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"\u062a\u062d\u062f\u064a\u062b \u0646\u0648\u0639 \u0627\u0644\u062c\u0646\u0633","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u062c\u0646\u0633","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"\u0627\u0644\u0639\u0627\u0626\u0644\u0629 \u0648 \u0627\u0644\u0639\u0644\u0627\u0642\u0627\u062a","personalization_life_event_category_health_wellness":"\u0627\u0644\u0635\u062d\u0629 \u0648 \u0627\u0644\u0639\u0627\u0641\u064a\u0629","personalization_life_event_category_home_living":"\u0627\u0644\u0645\u0646\u0632\u0644 \u0648 \u0627\u0644\u0639\u064a\u0634","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"\u0627\u0644\u0633\u0641\u0631 \u0648 \u0627\u0644\u062e\u0628\u0631\u0627\u062a","personalization_life_event_category_work_education":"\u0627\u0644\u0639\u0645\u0644 \u0648 \u0627\u0644\u062a\u0639\u0644\u064a\u0645","personalization_life_event_type_achievement_or_award":"\u0625\u0646\u062c\u0627\u0632 \u0623\u0648 \u062c\u0627\u0626\u0632\u0629","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"\u0630\u0643\u0631\u0649","personalization_life_event_type_bought_a_home":"\u0634\u0631\u0627\u0621 \u0645\u0646\u0632\u0644","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"\u062a\u063a\u064a\u0631 \u0627\u0644\u0645\u0639\u062a\u0642\u062f\u0627\u062a","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"\u0646\u0647\u0627\u064a\u0629 \u0639\u0644\u0627\u0642\u0629","personalization_life_event_type_engagement":"\u0627\u0644\u062e\u0637\u0648\u0628\u0629","personalization_life_event_type_expecting_a_baby":"\u0627\u0646\u062a\u0638\u0627\u0631 \u0645\u0648\u0644\u0648\u062f","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"\u0623\u0648\u0644 \u0644\u0642\u0627\u0621","personalization_life_event_type_first_word":"\u0623\u0648\u0644 \u0643\u0644\u0645\u0629","personalization_life_event_type_holidays":"\u0627\u0644\u0639\u0637\u0644","personalization_life_event_type_home_improvement":"\u062a\u0631\u0645\u064a\u0645 \u0627\u0644\u0645\u0646\u0632\u0644","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"\u0627\u0644\u0632\u0648\u0627\u062c","personalization_life_event_type_military_service":"\u062e\u062f\u0645\u0629 \u0639\u0633\u0643\u0631\u064a\u0629","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"\u0625\u0646\u062a\u0642\u0627\u0644","personalization_life_event_type_new_child":"\u0637\u0641\u0644 \u062c\u062f\u064a\u062f","personalization_life_event_type_new_eating_habits":"\u0639\u0627\u062f\u0627\u062a \u0623\u0643\u0644 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_family_member":"\u0641\u0631\u062f \u062c\u062f\u064a\u062f \u0641\u064a \u0627\u0644\u0639\u0627\u0626\u0644\u0629","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"\u0639\u0645\u0644 \u062c\u062f\u064a\u062f","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"\u0631\u062e\u0635\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_pet":"\u062d\u064a\u0648\u0627\u0646 \u0623\u0644\u064a\u0641 \u062c\u062f\u064a\u062f","personalization_life_event_type_new_relationship":"\u0639\u0644\u0627\u0642\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_roommate":"\u0631\u0641\u064a\u0642 \u0633\u0643\u0646 \u062c\u062f\u064a\u062f","personalization_life_event_type_new_school":"\u0645\u062f\u0631\u0633\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"\u0645\u0631\u0643\u0628\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_overcame_an_illness":"\u0627\u0644\u062a\u063a\u0644\u0628 \u0639\u0644\u0649 \u0627\u0644\u0645\u0631\u0636","personalization_life_event_type_published_book_or_paper":"\u0646\u0634\u0631 \u0643\u062a\u0627\u0628 \u0623\u0648 \u0645\u0642\u0627\u0644","personalization_life_event_type_quit_a_habit":"\u0627\u0644\u0625\u0642\u0644\u0627\u0639 \u0639\u0646 \u0639\u0627\u062f\u0629","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"\u0627\u0644\u062a\u0642\u0627\u0639\u062f","personalization_life_event_type_study_abroad":"\u0627\u0644\u062f\u0631\u0627\u0633\u0629 \u0641\u064a \u0627\u0644\u062e\u0627\u0631\u062c","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"\u0648\u0634\u0645 \u0623\u0648 \u062b\u0642\u0628","personalization_life_event_type_travel":"\u0627\u0644\u0633\u0641\u0631","personalization_life_event_type_volunteer_work":"\u0639\u0645\u0644 \u062a\u0637\u0648\u0639\u064a","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"\u0641\u0642\u062f\u0627\u0646 \u0627\u0644\u0648\u0632\u0646","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"\u0644\u0642\u062f \u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u062a\u063a\u064a\u064a\u0631","personalization_module_title":"\u0627\u0644\u0645\u064a\u0632\u0627\u062a","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"\u0642\u0628\u0644 {count} \u064a\u0648\u0645 | \u0642\u0628\u0644 {count} \u0623\u064a\u0627\u0645","personalization_reminder_rule_save":"\u0644\u0642\u062f \u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u062a\u063a\u064a\u064a\u0631","personalization_reminder_rule_title":"\u0634\u0631\u0648\u0637 \u0627\u0644\u062a\u0630\u0643\u064a\u0631","personalization_tab_title":"\u0642\u0645 \u0628\u062a\u062e\u0635\u064a\u0635 \u062d\u0633\u0627\u0628\u0643","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u062d\u0633\u0627\u0628","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"\u0623\u0639\u062f \u062a\u0639\u064a\u064a\u0646 \u062d\u0633\u0627\u0628\u0643","save":"\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a","security_help":"\u0642\u0645 \u0628\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0645\u0633\u0627\u0626\u0644 \u0627\u0644\u0623\u0645\u0646\u064a\u0629 \u0644\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643.","security_title":"\u0627\u0644\u0623\u0645\u0646","settings_success":"\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a!","sidebar_personalization":"\u0627\u0644\u062a\u062e\u0635\u064a\u0635","sidebar_settings":"\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062d\u0633\u0627\u0628","sidebar_settings_api":"API (\u0648\u0627\u062c\u0647\u0629 \u0628\u0631\u0645\u062c\u0629 \u0627\u0644\u062a\u0637\u0628\u064a\u0642)","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"\u062a\u0635\u062f\u064a\u0631 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a","sidebar_settings_import":"\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a","sidebar_settings_security":"\u0627\u0644\u0623\u0645\u0646","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"\u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643","sidebar_settings_tags":"Tag management","sidebar_settings_users":"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"\u0641\u0634\u0644 \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0645\u0639 Stripe. \u062d\u0627\u0648\u0644 \u0645\u062c\u062f\u062f\u0627\u064b \u0644\u0627\u062d\u0642\u0627\u064b.","stripe_error_authentication":"\u062e\u0637\u0623 \u0645\u0635\u0627\u062f\u0642\u0629 \u0645\u0639 Stripe","stripe_error_card":"\u062a\u0645 \u0631\u0641\u0636 \u0628\u0637\u0627\u0642\u062a\u0643. \u0627\u0644\u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u0645\u0646\u062d\u062f\u0631\u0629: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"\u064a\u0648\u062c\u062f \u0639\u062f\u062f \u0643\u0628\u064a\u0631 \u0645\u0646 \u0627\u0644\u0637\u0644\u0628\u0627\u062a \u0639\u0644\u0649 Stripe \u0627\u0644\u0622\u0646. \u062d\u0627\u0648\u0644 \u0645\u062c\u062f\u062f\u0627\u064b \u0644\u0627\u062d\u0642\u0627\u064b.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"\u0623\u0646\u062a \u0639\u0644\u0649 \u0627\u0644\u062e\u0637\u0629 :name. \u0634\u0643\u0631\u0627\u064b \u062c\u0632\u064a\u0644\u0627\u064b \u0644\u0643\u0648\u0646\u0643 \u0645\u0634\u062a\u0631\u0643\u0627\u064b.","subscriptions_account_current_plan":"\u062e\u0637\u062a\u0643 \u0627\u0644\u062d\u0627\u0644\u064a\u0629","subscriptions_account_free_plan":"\u0623\u0646\u062a \u0641\u064a \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629.","subscriptions_account_free_plan_benefits_import_data_vcard":"\u0642\u0645 \u0628\u0625\u0633\u062a\u064a\u0631\u0627\u062f \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644\u0643 \u0645\u0639 vCard","subscriptions_account_free_plan_benefits_reminders":"\u062a\u0630\u0643\u064a\u0631 \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"\u0639\u062f\u062f \u0644\u0627 \u0646\u0647\u0627\u0626\u064a \u0645\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646","subscriptions_account_free_plan_upgrade":"\u062a\u0633\u062a\u0637\u064a\u0639 \u062a\u0631\u0642\u064a\u0629 \u062d\u0633\u0627\u0628\u0643 \u0644\u062e\u0637\u0629 :name\u060c \u0648 \u0627\u0644\u062a\u064a \u062a\u0643\u0644\u0641 :price$ \u0634\u0647\u0631\u064a\u0627\u064b. \u0647\u0630\u0647 \u0647\u064a \u0627\u0644\u0645\u0646\u0627\u0641\u0639:","subscriptions_account_invoices":"\u0627\u0644\u0641\u0648\u0627\u062a\u064a\u0631","subscriptions_account_invoices_download":"\u062a\u0646\u0632\u064a\u0644","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"\u0623\u064a \u062e\u064a\u0627\u0631 \u0644\u0644\u062f\u0641\u0639 \u064a\u0646\u0627\u0633\u0628\u0643 \u0623\u0643\u062b\u0631\u061f","subscriptions_account_upgrade":"\u0642\u0645 \u0628\u062a\u0631\u0642\u064a\u0629 \u062d\u0633\u0627\u0628\u0643","subscriptions_account_upgrade_choice":"\u0627\u062e\u062a\u0631 \u062e\u0637\u0629 \u0623\u062f\u0646\u0627\u0647 \u0648 \u0627\u0646\u0636\u0645 \u0625\u0644\u0649 :customers \u0627\u0644\u0623\u0634\u062e\u0627\u0635 \u0627\u0644\u0630\u064a\u0646 \u0642\u0627\u0645\u0648\u0627 \u0628\u062a\u0631\u0642\u064a\u0629 Monica \u0627\u0644\u062e\u0627\u0635 \u0628\u0647\u0645.","subscriptions_account_upgrade_title":"\u0642\u0645 \u0628\u062a\u0631\u0642\u064a\u0629 Monica \u0627\u0644\u064a\u0648\u0645 \u0648 \u0627\u062d\u0635\u0644 \u0639\u0644\u0649 \u0639\u0644\u0627\u0642\u0627\u062a \u0623\u0643\u062b\u0631 \u0623\u0647\u0645\u064a\u0629.","subscriptions_back":"\u0627\u0644\u0639\u0648\u062f\u0629 \u0644\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a","subscriptions_downgrade_cta":"\u062e\u0641\u0636 \u0627\u0644\u0645\u0631\u062a\u0628\u0629","subscriptions_downgrade_limitations":"\u062e\u0637\u062a\u0643 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629 \u0641\u064a\u0647\u0627 \u0642\u064a\u0648\u062f. \u0644\u062a\u0645\u0643\u064a\u0646 \u062e\u0641\u0636 \u0627\u0644\u0645\u0631\u062a\u0628\u0629\u060c \u064a\u062c\u0628 \u0623\u0646 \u062a\u062c\u062a\u0627\u0632 \u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0623\u062f\u0646\u0627\u0647:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"\u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627\u064b \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0648\u0627\u062d\u062f\u0629<\/a>.| \u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627\u064b :count \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0644\u062f\u064a\u0643 \u0645\u0633\u062a\u062e\u062f\u0645 1 \u0641\u0642\u0637 \u0641\u064a \u062d\u0633\u0627\u0628\u0643","subscriptions_downgrade_rule_users_constraint":"\u062d\u0627\u0644\u064a\u0627\u064b \u0644\u062f\u064a\u0643 \u0645\u0633\u062a\u062e\u062f\u0645 \u0648\u0627\u062d\u062f<\/a> \u0641\u064a \u062d\u0633\u0627\u0628\u0643. | \u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627\u064b :count \u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646<\/a> \u0641\u064a \u062d\u0633\u0627\u0628\u0643.","subscriptions_downgrade_success":"\u0644\u0642\u062f \u0639\u062f\u062a\u064e \u0644\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"\u0642\u0645 \u0628\u062e\u0641\u0636 \u0645\u0631\u062a\u0628\u0629 \u062d\u0633\u0627\u0628\u0643 \u0644\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"\u0645\u0627\u0630\u0627 \u0625\u0630\u0627 \u0642\u0645\u062a\u064f \u0628\u062a\u063a\u064a\u064a\u0631 \u0631\u0623\u064a\u064a\u061f","subscriptions_help_discounts_desc":"\u0646\u0639\u0645 \u0644\u062f\u064a\u0646\u0627! \u062a\u0637\u0628\u064a\u0642 Monica \u0645\u062c\u0627\u0646\u064a \u0644\u0644\u0637\u0644\u0627\u0628\u060c \u0648 \u0645\u062c\u0627\u0646\u064a \u0644\u0623\u0633\u0628\u0627\u0628 \u063a\u064a\u0631 \u0631\u0628\u062d\u064a\u0629 \u0648 \u0644\u0644\u0645\u0624\u0633\u0633\u0627\u062a \u0627\u0644\u062e\u064a\u0631\u064a\u0629. \u0641\u0642\u0637 \u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u0627\u0644\u062f\u0639\u0645<\/a> \u0628\u062f\u0644\u064a\u0644 \u0639\u0644\u0649 \u062d\u0627\u0644\u062a\u0643 \u0648 \u0633\u0646\u0642\u0648\u0645 \u0628\u062a\u0637\u0628\u064a\u0642 \u0647\u0630\u0647 \u0627\u0644\u062d\u0627\u0644\u0629 \u0627\u0644\u062e\u0627\u0635\u0629 \u0641\u064a \u062d\u0633\u0627\u0628\u0643.","subscriptions_help_discounts_title":"\u0647\u0644 \u0644\u062f\u064a\u0643\u0645 \u062a\u062e\u0641\u064a\u0636\u0627\u062a \u0644\u0623\u0633\u0628\u0627\u0628 \u063a\u064a\u0631 \u0631\u0628\u062d\u064a\u0629 \u0623\u0648 \u0644\u0644\u062a\u0639\u0644\u064a\u0645\u061f","subscriptions_help_limits_plan":"\u0646\u0639\u0645. \u0627\u0644\u062e\u0637\u0637 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629 \u062a\u062f\u064e\u0639\u064f\u0643 \u062a\u064f\u062f\u0650\u064a\u0631:number \u062c\u0647\u0627\u062a \u0625\u062a\u0635\u0627\u0644.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"\u0645\u0627 \u0647\u0648 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0627\u0644\u0645\u0641\u062a\u0648\u062d \u0627\u0644\u0645\u0635\u062f\u0631\u061f","subscriptions_help_title":"\u062a\u0641\u0627\u0635\u064a\u0644 \u0625\u0636\u0627\u0641\u064a\u0629 \u0642\u062f \u062a\u0643\u0648\u0646 \u0645\u0647\u062a\u0645\u0627\u064b \u0628\u0645\u0639\u0631\u0641\u062a\u0647\u0627","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"\u0627\u0634\u062a\u0631\u0627\u0643\u0643 :name \u0627\u0644\u0634\u0647\u0631\u064a","subscriptions_plan_choose":"\u0627\u062e\u062a\u0631 \u0647\u0630\u0647 \u0627\u0644\u062e\u0637\u0629","subscriptions_plan_include1":"\u062a\u0634\u0645\u0644 \u0627\u0644\u062a\u0631\u0642\u064a\u0629 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643:","subscriptions_plan_include2":"\u0639\u062f\u062f \u0644\u0627 \u0646\u0647\u0627\u0626\u064a \u0645\u0646 \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u2022 \u0639\u062f\u062f \u0644\u0627 \u0646\u0647\u0627\u0626\u064a \u0645\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u2022 \u062a\u0630\u0643\u064a\u0631 \u0639\u0628\u0631 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u2022 \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0628\u0640vCard \u2022 \u062a\u062e\u0635\u064a\u0635 \u0635\u0641\u062d\u0629 \u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644","subscriptions_plan_include3":"100% \u0645\u0646 \u0627\u0644\u0623\u0631\u0628\u0627\u062d \u062a\u0630\u0647\u0628 \u0644\u062a\u0637\u0648\u064a\u0631 \u0647\u0630\u0627 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0627\u0644\u0645\u0641\u062a\u0648\u062d \u0627\u0644\u0645\u0635\u062f\u0631 \u0627\u0644\u0631\u0627\u0626\u0639.","subscriptions_plan_month_bonus":"\u0642\u0645 \u0628\u0627\u0644\u0625\u0644\u063a\u0627\u0621 \u0641\u064a \u0623\u064a \u0648\u0642\u062a","subscriptions_plan_month_cost":"5$\/\u0634\u0647\u0631\u064a\u0627\u064b","subscriptions_plan_month_title":"\u062f\u0641\u0639 \u0634\u0647\u0631\u064a","subscriptions_plan_year_bonus":"\u0631\u0627\u062d\u0629 \u0627\u0644\u0628\u0627\u0644 \u0644\u0633\u0646\u0629 \u0643\u0627\u0645\u0644\u0629","subscriptions_plan_year_cost":"45$\/\u0633\u0646\u0648\u064a\u0627\u064b","subscriptions_plan_year_cost_save":"\u0633\u062a\u0648\u0641\u0631 25%","subscriptions_plan_year_title":"\u062f\u0641\u0639 \u0633\u0646\u0648\u064a","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"\u0627\u0644\u062f\u0641\u0639 \u064a\u062a\u0648\u0644\u0627\u0647 Stripe<\/a>. \u0644\u0627 \u062a\u0644\u0645\u0633 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0628\u0637\u0627\u0642\u0627\u062a \u062e\u0627\u062f\u0645\u0646\u0627.","subscriptions_upgrade_choose":"\u0644\u0642\u062f \u0627\u062e\u062a\u0631\u062a \u062e\u0637\u0629 :plan.","subscriptions_upgrade_credit":"\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0625\u0626\u062a\u0645\u0627\u0646 \u0623\u0648 \u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0635\u0631\u0627\u0641","subscriptions_upgrade_infos":"\u0644\u0627 \u064a\u0645\u0643\u0646\u0646\u0627 \u0623\u0646 \u0646\u0643\u0648\u0646 \u0623\u0643\u062b\u0631 \u0633\u0639\u0627\u062f\u0629. \u0623\u062f\u062e\u0644 \u0628\u064a\u0627\u0646\u0627\u062a \u062f\u0641\u0639\u0643 \u0623\u062f\u0646\u0627\u0647.","subscriptions_upgrade_name":"\u0627\u0644\u0625\u0633\u0645 \u0639\u0644\u0649 \u0627\u0644\u0628\u0637\u0627\u0642\u0629","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"\u0634\u0643\u0631\u0627\u064b \u0644\u0643! \u0623\u0646\u062a \u0645\u0634\u062a\u0631\u0643 \u0627\u0644\u0622\u0646.","subscriptions_upgrade_thanks":"\u0645\u0631\u062d\u0628\u0627\u064b \u0628\u0643 \u0641\u064a \u0645\u062c\u062a\u0645\u0639 \u0627\u0644\u0623\u0634\u062e\u0627\u0635 \u0627\u0644\u0630\u064a\u0646 \u064a\u062d\u0627\u0648\u0644\u0648\u0646 \u062c\u0639\u0644 \u0627\u0644\u0639\u0627\u0644\u0645 \u0645\u0643\u0627\u0646\u0627\u064b \u0623\u0641\u0636\u0644.","subscriptions_upgrade_title":"\u0642\u0645 \u0628\u062a\u0631\u0642\u064a\u0629 \u062d\u0633\u0627\u0628\u0643","subscriptions_upgrade_zip":"\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0628\u0631\u064a\u062f\u064a","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644|:count \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"\u0627\u0644\u0645\u0646\u0637\u0642\u0629 \u0627\u0644\u0632\u0645\u0646\u064a\u0629","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"\u0642\u0628\u0648\u0644 \u0627\u0644\u062f\u0639\u0648\u0629 \u0648 \u0625\u0646\u0634\u0627\u0621 \u062d\u0633\u0627\u0628 \u062c\u062f\u064a\u062f","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"\u062f\u0639\u0648\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"\u0623\u062f\u062e\u0644 \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u0644\u0634\u062e\u0635 \u0627\u0644\u0630\u064a \u062a\u0631\u064a\u062f \u062f\u0639\u0648\u062a\u0647","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"\u0647\u0644 \u062a\u0631\u063a\u0628 \u0641\u064a \u062f\u0639\u0648\u0629 \u0634\u062e\u0635 \u0622\u062e\u0631\u061f","users_blank_cta":"\u062f\u0639\u0648\u0629 \u0634\u062e\u0635 \u0645\u0627","users_blank_description":"\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0633\u064a\u0643\u0648\u0646 \u0644\u0647 \u0646\u0641\u0633 \u062d\u0642 \u0627\u0644\u0648\u0635\u0648\u0644 \u0627\u0644\u0630\u064a \u0644\u062f\u064a\u0643\u060c \u0648\u0633\u064a\u0643\u0648\u0646 \u0642\u0627\u062f\u0631\u0627\u064b \u0639\u0644\u0649 \u0625\u0636\u0627\u0641\u0629 \u0623\u0648 \u062a\u062d\u0631\u064a\u0631 \u0623\u0648 \u062d\u0630\u0641 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644.","users_blank_title":"\u0623\u0646\u062a \u0627\u0644\u0634\u062e\u0635 \u0627\u0644\u0648\u062d\u064a\u062f \u0627\u0644\u0630\u064a \u0644\u062f\u064a\u0647 \u062d\u0642 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0647\u0630\u0627 \u0627\u0644\u062d\u0633\u0627\u0628.","users_error_already_invited":"\u0644\u0642\u062f \u0642\u0645\u062a \u0628\u062f\u0639\u0648\u0629 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0633\u0628\u0642\u0627\u064b. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0628\u0631\u064a\u062f \u0622\u062e\u0631.","users_error_email_already_taken":"\u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0645\u0648\u062c\u0648\u062f \u0628\u0627\u0644\u0641\u0639\u0644. \u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0622\u062e\u0631","users_error_email_not_similar":"\u0647\u0630\u0627 \u0644\u064a\u0633 \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f \u0627\u0644\u0634\u062e\u0635 \u0627\u0644\u0630\u064a \u0642\u0645\u062a\u064e \u0628\u062f\u0639\u0648\u062a\u0647.","users_error_please_confirm":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u064a\u062f \u0628\u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062f\u0639\u0648\u0629 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0642\u0628\u0644 \u0645\u0648\u0627\u0635\u0644\u0629 \u0627\u0644\u062f\u0639\u0648\u0629","users_invitation_deleted_confirmation_message":"\u0644\u0642\u062f \u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u062f\u0639\u0648\u0629 \u0628\u0646\u062c\u0627\u062d","users_invitation_need_subscription":"\u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u064a\u062a\u0637\u0644\u0628 \u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643.","users_invitations_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u062f\u0639\u0648\u0629\u061f","users_list_add_user":"\u062f\u0639\u0648\u0629 \u0645\u0633\u062a\u062e\u062f\u0645 \u062c\u062f\u064a\u062f","users_list_delete_confirmation":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0646 \u062d\u0633\u0627\u0628\u0643\u061f","users_list_invitations_explanation":"\u0641\u064a\u0645\u0627 \u064a\u0644\u064a \u0627\u0644\u0623\u0634\u062e\u0627\u0635 \u0627\u0644\u0630\u064a\u0646 \u0642\u0645\u062a\u064e \u0628\u062f\u0639\u0648\u062a\u0647\u0645 \u0644\u0644\u0625\u0646\u0636\u0645\u0627\u0645 \u0625\u0644\u0649 Monica \u0643\u0645\u062a\u0639\u0627\u0648\u0646.","users_list_invitations_invited_by":"\u062f\u0639\u0648\u0629 \u0645\u0646 :name","users_list_invitations_sent_date":"\u062a\u0645 \u0627\u0644\u0625\u0631\u0633\u0627\u0644 \u0641\u064a :date","users_list_invitations_title":"\u062f\u0639\u0648\u0627\u062a \u0645\u0639\u0644\u0642\u0629","users_list_title":"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0627\u0644\u0630\u064a\u0646 \u0644\u062f\u064a\u0647\u0645 \u062d\u0642 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u062d\u0633\u0627\u0628\u0643","users_list_you":"\u0647\u0630\u0627 \u0623\u0646\u062a","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"\u064a\u062c\u0628 \u0642\u0628\u0648\u0644 :attribute","active_url":":attribute \u0644\u0627 \u064a\u064f\u0645\u062b\u0651\u0644 \u0631\u0627\u0628\u0637\u064b\u0627 \u0635\u062d\u064a\u062d\u064b\u0627","after":"\u064a\u062c\u0628 \u0639\u0644\u0649 :attribute \u0623\u0646 \u064a\u0643\u0648\u0646 \u062a\u0627\u0631\u064a\u062e\u064b\u0627 \u0644\u0627\u062d\u0642\u064b\u0627 \u0644\u0644\u062a\u0627\u0631\u064a\u062e :date.","after_or_equal":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062a\u0627\u0631\u064a\u062e :attribute \u0628\u0639\u062f \u0623\u0648 \u0645\u0633\u0627\u0648\u064a\u0627\u064b \u0644\u0640:date.","alpha":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0641\u0642\u0637 \u0639\u0644\u0649 \u0623\u062d\u0631\u0641.","alpha_dash":"\u064a\u062c\u0628 \u0623\u0646 \u0644\u0627 \u064a\u062d\u062a\u0648\u064a :attribute \u0633\u0648\u0649 \u0639\u0644\u0649 \u062d\u0631\u0648\u0641\u060c \u0623\u0631\u0642\u0627\u0645 \u0648\u0645\u0637\u0651\u0627\u062a.","alpha_num":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0641\u0642\u0637 \u0639\u0644\u0649 \u0623\u062d\u0631\u0641 \u0648 \u0623\u0631\u0642\u0627\u0645.","array":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0645\u0631\u062a\u0628\u0627\u064b.","attributes":[],"before":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062a\u0627\u0631\u064a\u062e :attribute \u0642\u0628\u0644 :date.","before_or_equal":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062a\u0627\u0631\u064a\u062e :attribute \u0642\u0628\u0644 \u0623\u0648 \u0645\u0633\u0627\u0648\u064a\u0627\u064b \u0644\u0640:date.","between":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0644\u0640 :attribute \u0628\u064a\u0646 :min \u0648 :max \u0645\u0646 \u0627\u0644\u0639\u0646\u0627\u0635\u0631.","file":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0628\u064a\u0646 :min \u0648 :max \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a.","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0628\u064a\u0646 :min \u0648 :max.","string":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0628\u064a\u0646 :min \u0648 :max \u0645\u0646 \u0627\u0644\u0623\u062d\u0631\u0641."},"boolean":"\u062d\u0642\u0644 :attribute \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0635\u062d\u064a\u062d\u0627\u064b \u0623\u0648 \u062e\u0627\u0637\u0626\u0627\u064b.","confirmed":"\u062a\u0623\u0643\u064a\u062f :attribute \u063a\u064a\u0631 \u0645\u062a\u0637\u0627\u0628\u0642.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"\u0625\u0646 \u062a\u0627\u0631\u064a\u062e :attribute \u063a\u064a\u0631 \u0635\u0627\u0644\u062d.","date_equals":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0645\u0637\u0627\u0628\u0642\u0627\u064b \u0644\u0644\u062a\u0627\u0631\u064a\u062e :date.","date_format":"\u0625\u0646 :attribute \u063a\u064a\u0631 \u0645\u062a\u0637\u0627\u0628\u0642 \u0645\u0639 \u062a\u0646\u0633\u064a\u0642 :format.","different":"\u0625\u0646 :attribute \u0648 :other \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646\u0627 \u0645\u062e\u062a\u0644\u0641\u064a\u0646.","digits":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 :digits \u0631\u0642\u0645\u064b\u0627\/\u0623\u0631\u0642\u0627\u0645","digits_between":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0628\u064a\u0646 :min \u0648 :max \u0631\u0642\u0645\u064b\u0627\/\u0623\u0631\u0642\u0627\u0645 ","dimensions":"\u0627\u0644\u0640 :attribute \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0623\u0628\u0639\u0627\u062f \u0635\u0648\u0631\u0629 \u063a\u064a\u0631 \u0635\u0627\u0644\u062d\u0629.","distinct":"\u0644\u0644\u062d\u0642\u0644 :attribute \u0642\u064a\u0645\u0629 \u0645\u064f\u0643\u0631\u0651\u0631\u0629.","email":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0635\u062d\u064a\u062d \u0627\u0644\u0628\u064f\u0646\u064a\u0629","ends_with":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0646\u062a\u0647\u064a :attribute \u0628\u0623\u062d\u062f \u0627\u0644\u0642\u064a\u0645 \u0627\u0644\u062a\u0627\u0644\u064a\u0629: :values","exists":"\u0627\u0644\u0642\u064a\u0645\u0629 \u0627\u0644\u0645\u062d\u062f\u062f\u0629 :attribute \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u0629","file":"\u0627\u0644\u0640 :attribute \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0645\u0644\u0641\u0627.","filled":":attribute \u0625\u062c\u0628\u0627\u0631\u064a","gt":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 \u0623\u0643\u062b\u0631 \u0645\u0646 :value \u0639\u0646\u0627\u0635\u0631\/\u0639\u0646\u0635\u0631.","file":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641 :attribute \u0623\u0643\u0628\u0631 \u0645\u0646 :value \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a.","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0642\u064a\u0645\u0629 :attribute \u0623\u0643\u0628\u0631 \u0645\u0646 :value.","string":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0637\u0648\u0644 \u0627\u0644\u0646\u0651\u0635 :attribute \u0623\u0643\u062b\u0631 \u0645\u0646 :value \u062d\u0631\u0648\u0641\u064d\/\u062d\u0631\u0641\u064b\u0627."},"gte":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0639\u0644\u0649 :value \u0639\u064f\u0646\u0635\u0631\u064b\u0627\/\u0639\u0646\u0627\u0635\u0631.","file":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641 :attribute \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 :value \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a.","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0642\u064a\u0645\u0629 :attribute \u0645\u0633\u0627\u0648\u064a\u0629 \u0623\u0648 \u0623\u0643\u0628\u0631 \u0645\u0646 :value.","string":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0637\u0648\u0644 \u0627\u0644\u0646\u0635 :attribute \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 :value \u062d\u0631\u0648\u0641\u064d\/\u062d\u0631\u0641\u064b\u0627."},"image":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0635\u0648\u0631\u0629\u064b","in":":attribute \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f","in_array":":attribute \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f \u0641\u064a :other.","integer":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0639\u062f\u062f\u064b\u0627 \u0635\u062d\u064a\u062d\u064b\u0627","ip":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0639\u0646\u0648\u0627\u0646 IP \u0635\u062d\u064a\u062d\u064b\u0627","ipv4":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0639\u0646\u0648\u0627\u0646 IPv4 \u0635\u062d\u064a\u062d\u064b\u0627.","ipv6":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0639\u0646\u0648\u0627\u0646 IPv6 \u0635\u062d\u064a\u062d\u064b\u0627.","json":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0646\u0635\u0622 \u0645\u0646 \u0646\u0648\u0639 JSON.","lt":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 \u0623\u0642\u0644 \u0645\u0646 :value \u0639\u0646\u0627\u0635\u0631\/\u0639\u0646\u0635\u0631.","file":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641 :attribute \u0623\u0635\u063a\u0631 \u0645\u0646 :value \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a.","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0642\u064a\u0645\u0629 :attribute \u0623\u0635\u063a\u0631 \u0645\u0646 :value.","string":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0637\u0648\u0644 \u0627\u0644\u0646\u0651\u0635 :attribute \u0623\u0642\u0644 \u0645\u0646 :value \u062d\u0631\u0648\u0641\u064d\/\u062d\u0631\u0641\u064b\u0627."},"lte":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u0644\u0627 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 \u0623\u0643\u062b\u0631 \u0645\u0646 :value \u0639\u0646\u0627\u0635\u0631\/\u0639\u0646\u0635\u0631.","file":"\u064a\u062c\u0628 \u0623\u0646 \u0644\u0627 \u064a\u062a\u062c\u0627\u0648\u0632 \u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641 :attribute :value \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a.","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0642\u064a\u0645\u0629 :attribute \u0645\u0633\u0627\u0648\u064a\u0629 \u0623\u0648 \u0623\u0635\u063a\u0631 \u0645\u0646 :value.","string":"\u064a\u062c\u0628 \u0623\u0646 \u0644\u0627 \u064a\u062a\u062c\u0627\u0648\u0632 \u0637\u0648\u0644 \u0627\u0644\u0646\u0651\u0635 :attribute :value \u062d\u0631\u0648\u0641\u064d\/\u062d\u0631\u0641\u064b\u0627."},"max":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u0644\u0627 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 \u0623\u0643\u062b\u0631 \u0645\u0646 :max \u0639\u0646\u0627\u0635\u0631\/\u0639\u0646\u0635\u0631.","file":"\u064a\u062c\u0628 \u0623\u0646 \u0644\u0627 \u064a\u062a\u062c\u0627\u0648\u0632 \u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641 :attribute :max \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0642\u064a\u0645\u0629 :attribute \u0645\u0633\u0627\u0648\u064a\u0629 \u0623\u0648 \u0623\u0635\u063a\u0631 \u0645\u0646 :max.","string":"\u064a\u062c\u0628 \u0623\u0646 \u0644\u0627 \u064a\u062a\u062c\u0627\u0648\u0632 \u0637\u0648\u0644 \u0627\u0644\u0646\u0651\u0635 :attribute :max \u062d\u0631\u0648\u0641\u064d\/\u062d\u0631\u0641\u064b\u0627"},"mimes":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0645\u0644\u0641\u064b\u0627 \u0645\u0646 \u0646\u0648\u0639 : :values.","mimetypes":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0645\u0644\u0641\u064b\u0627 \u0645\u0646 \u0646\u0648\u0639 : :values.","min":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0639\u0644\u0649 :min \u0639\u064f\u0646\u0635\u0631\u064b\u0627\/\u0639\u0646\u0627\u0635\u0631","file":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641 :attribute \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 :min \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0642\u064a\u0645\u0629 :attribute \u0645\u0633\u0627\u0648\u064a\u0629 \u0623\u0648 \u0623\u0643\u0628\u0631 \u0645\u0646 :min.","string":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0637\u0648\u0644 \u0627\u0644\u0646\u0635 :attribute \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 :min \u062d\u0631\u0648\u0641\u064d\/\u062d\u0631\u0641\u064b\u0627"},"not_in":":attribute \u0645\u0648\u062c\u0648\u062f","not_regex":"\u0635\u064a\u063a\u0629 :attribute \u063a\u064a\u0631 \u0635\u062d\u064a\u062d\u0629.","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0631\u0642\u0645\u0627\u064b.","password":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d\u0629.","present":"\u064a\u062c\u0628 \u062a\u0642\u062f\u064a\u0645 :attribute","regex":"\u0635\u064a\u063a\u0629 :attribute .\u063a\u064a\u0631 \u0635\u062d\u064a\u062d\u0629","required":":attribute \u0645\u0637\u0644\u0648\u0628.","required_if":":attribute \u0645\u0637\u0644\u0648\u0628 \u0641\u064a \u062d\u0627\u0644 \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 :other \u064a\u0633\u0627\u0648\u064a :value.","required_unless":":attribute \u0645\u0637\u0644\u0648\u0628 \u0641\u064a \u062d\u0627\u0644 \u0645\u0627 \u0644\u0645 \u064a\u0643\u0646 :other \u064a\u0633\u0627\u0648\u064a :values.","required_with":":attribute \u0645\u0637\u0644\u0648\u0628 \u0625\u0630\u0627 \u062a\u0648\u0641\u0651\u0631 :values.","required_with_all":":attribute \u0645\u0637\u0644\u0648\u0628 \u0625\u0630\u0627 \u062a\u0648\u0641\u0651\u0631 :values.","required_without":":attribute \u0645\u0637\u0644\u0648\u0628 \u0625\u0630\u0627 \u0644\u0645 \u064a\u062a\u0648\u0641\u0651\u0631 :values.","required_without_all":":attribute \u0645\u0637\u0644\u0648\u0628 \u0625\u0630\u0627 \u0644\u0645 \u064a\u062a\u0648\u0641\u0651\u0631 :values.","same":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062a\u0637\u0627\u0628\u0642 :attribute \u0645\u0639 :other","size":{"array":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a :attribute \u0639\u0644\u0649 :size \u0639\u0646\u0635\u0631\u064d\/\u0639\u0646\u0627\u0635\u0631 \u0628\u0627\u0644\u0636\u0628\u0637","file":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641 :attribute :size \u0643\u064a\u0644\u0648\u0628\u0627\u064a\u062a","numeric":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0642\u064a\u0645\u0629 :attribute \u0645\u0633\u0627\u0648\u064a\u0629 \u0644\u0640 :size","string":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u062d\u062a\u0648\u064a \u0627\u0644\u0646\u0635 :attribute \u0639\u0644\u0649 :size \u062d\u0631\u0648\u0641\u064d\/\u062d\u0631\u0641\u064b\u0627 \u0628\u0627\u0644\u0636\u0628\u0637"},"starts_with":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0628\u062f\u0623 :attribute \u0628\u0623\u062d\u062f \u0627\u0644\u0642\u064a\u0645 \u0627\u0644\u062a\u0627\u0644\u064a\u0629: :values","string":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0646\u0635\u0622.","timezone":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 :attribute \u0646\u0637\u0627\u0642\u064b\u0627 \u0632\u0645\u0646\u064a\u064b\u0627 \u0635\u062d\u064a\u062d\u064b\u0627","unique":"\u0642\u064a\u0645\u0629 :attribute \u0645\u064f\u0633\u062a\u062e\u062f\u0645\u0629 \u0645\u0646 \u0642\u0628\u0644","uploaded":"\u0641\u0634\u0644 \u0641\u064a \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0640 :attribute","url":"\u0635\u064a\u063a\u0629 \u0627\u0644\u0631\u0627\u0628\u0637 :attribute \u063a\u064a\u0631 \u0635\u062d\u064a\u062d\u0629","uuid":":attribute \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0628\u0635\u064a\u063a\u0629 UUID \u0633\u0644\u064a\u0645\u0629.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/cs.json b/public/js/langs/cs.json deleted file mode 100644 index 43bf6f3ad1c..00000000000 --- a/public/js/langs/cs.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"P\u0159idat","another_day":"jin\u00fd den","application_description":"Monica is a tool to manage your interactions with your loved ones, friends and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 spr\u00e1vce osobn\u00edch vztah\u016f","back":"Zp\u011bt","breadcrumb_add_note":"P\u0159idat pozn\u00e1mku","breadcrumb_add_significant_other":"P\u0159idat drahou polovi\u010dku","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archivovan\u00e9 kontakty","breadcrumb_dashboard":"N\u00e1st\u011bnka","breadcrumb_dav":"DAV zdroje","breadcrumb_edit_introductions":"Jak jste se setkali","breadcrumb_edit_note":"Upravit pozn\u00e1mku","breadcrumb_edit_significant_other":"Upravit drahou polovi\u010dku","breadcrumb_journal":"Den\u00edk","breadcrumb_list_contacts":"Seznam kontakt\u016f","breadcrumb_profile":"Profil :name","breadcrumb_settings":"Nastaven\u00ed","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Importovat report","breadcrumb_settings_import_upload":"Nahr\u00e1t","breadcrumb_settings_personalization":"P\u0159izp\u016fsoben\u00ed","breadcrumb_settings_security":"Zabezpe\u010den\u00ed","breadcrumb_settings_security_2fa":"Dvouf\u00e1zov\u00e9 ov\u011b\u0159en\u00ed","breadcrumb_settings_subscriptions":"Odb\u011bry","breadcrumb_settings_tags":"Tagy","breadcrumb_settings_users":"U\u017eivatel\u00e9","breadcrumb_settings_users_add":"P\u0159idat u\u017eivatele","cancel":"Zru\u0161it","close":"Zav\u0159\u00edt","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or account and will never do.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Potvrdit","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Kop\u00edrovat","create":"Vytvo\u0159it","date":"Datum","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Smazat","delete_confirm":"Are you sure?","done":"Hotovo","download":"St\u00e1hnout","edit":"Upravit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"Budeme hned zp\u00e1tky.","error_id":"ID chyby: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"Pro tuto instanci zat\u00edm neexistuj\u00ed \u017e\u00e1dn\u00e1 pravidla.","error_save":"Do\u0161lo k chyb\u011b p\u0159i ukl\u00e1d\u00e1n\u00ed dat.","error_title":"Jejda! N\u011bco se pokazilo.","error_try_again":"N\u011bco se pokazilo. Zkuste to znovu.","error_twitter":"Sledujte n\u00e1\u0161 Twitter \u00fa\u010det<\/a> a bu\u010fte upozorn\u011bni, a\u017e slu\u017eba znovu pob\u011b\u017e\u00ed.","error_unauthorized":"Nem\u00e1te pr\u00e1vo upravovat tento zdroj.","error_unavailable":"Slu\u017eba nen\u00ed dostupn\u00e1","error_user_account":"Tento u\u017eivatel nepat\u0159\u00ed k dan\u00e9mu \u00fa\u010dtu.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filtrovat seznam","footer_modal_version_release_away":"Jste jedno vyd\u00e1n\u00ed pozadu za nejnov\u011bj\u0161\u00ed dostupnou verz\u00ed. M\u011bli byste aktualizovat svou instanci.|Jste :number vyd\u00e1n\u00ed pozadu za nejnov\u011bj\u0161\u00ed dostupnou verz\u00ed. M\u011bli byste aktualizovat svou instanci.","footer_modal_version_whats_new":"Novinky","footer_new_version":"A new version of Monica is available","footer_newsletter":"Odb\u011br novinek","footer_privacy":"Podm\u00ednky pou\u017e\u00edv\u00e1n\u00ed","footer_release":"Pozn\u00e1mky k vyd\u00e1n\u00ed","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Monica na GitHubu","footer_version":"Verze: :version","gender_female":"\u017dena","gender_male":"Mu\u017e","gender_no_gender":"\u017d\u00e1dn\u00e9 pohlav\u00ed","gender_none":"Nepov\u00edm","go_back":"J\u00edt zp\u011bt","header_changelog_link":"Zm\u011bny produktu","header_logout_link":"Odhl\u00e1sit","header_settings_link":"Nastaven\u00ed","load_more":"Na\u010d\u00edst dal\u0161\u00ed","loading":"Loading\u2026","main_nav_activities":"Aktivity","main_nav_cta":"P\u0159idat osobu","main_nav_dashboard":"N\u00e1st\u011bnka","main_nav_family":"Kontakty","main_nav_journal":"Den\u00edk","main_nav_tasks":"\u00dakoly","markdown_description":"Chcete pohodln\u011b form\u00e1tovat text? Podporujeme form\u00e1t markdown pro zna\u010den\u00ed tu\u010dn\u011b, kurzivou, vytv\u00e1\u0159en\u00ed seznamu a dal\u0161\u00ed.","markdown_link":"\u010c\u00edst dokumentaci","new":"nov\u00fd","no":"Ne","percent_uploaded":"{percent}% nahr\u00e1no","relationship_type_bestfriend":"nejlep\u0161\u00ed kamar\u00e1d","relationship_type_bestfriend_female":"nejlep\u0161\u00ed kamar\u00e1dka","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"nad\u0159\u00edzen\u00fd","relationship_type_boss_female":"nad\u0159\u00edzen\u00e1","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"syn","relationship_type_child_female":"dcera","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"kolega","relationship_type_colleague_female":"kolegyn\u011b","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"bratranec","relationship_type_cousin_female":"sest\u0159enice","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex husband","relationship_type_ex_husband_female":"ex wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex wife","relationship_type_ex_husband_with_name":":name\u2019s ex husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"kamar\u00e1d","relationship_type_friend_female":"kamar\u00e1dka","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"synovec","relationship_type_nephew_female":"nete\u0159","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"otec","relationship_type_parent_female":"matka","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"bratr","relationship_type_sibling_female":"sestra","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"pod\u0159\u00edzen\u00fd","relationship_type_subordinate_female":"pod\u0159\u00edzen\u00e1","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"str\u00fdc","relationship_type_uncle_female":"teta","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Odstranit","retry":"Opakovat","revoke":"Odvolat","save":"Ulo\u017eit","save_close":"Ulo\u017eit a zav\u0159\u00edt","today":"dnes","type":"Typ","unknown":"Nev\u00edm","update":"Aktualizovat","upgrade":"Upgrade to unlock","upload":"Nahr\u00e1t","verify":"Ov\u011b\u0159it","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"s","yes":"Ano","yesterday":"v\u010dera","zoom":"Zv\u011bt\u0161en\u00ed"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Zp\u011bt na domovskou str\u00e1nku","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Aktu\u00e1ln\u00ed e-mailov\u00e1 adresa:","email_change_new":"Nov\u00e1 e-mailov\u00e1 adresa","email_change_title":"Zm\u011bna e-mailov\u00e9 adresy","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"Tyto p\u0159ihla\u0161ovac\u00ed \u00fadaje neodpov\u00eddaj\u00ed \u017eadn\u00e9mu z\u00e1znamu.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"Nejste opr\u00e1vn\u011bni prov\u00e9st tuto akci","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"Jm\u00e9no","register_firstname_example":"nap\u0159. Jan","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"P\u0159\u00edjmen\u00ed","register_lastname_example":"nap\u0159. Nov\u00e1k","register_login":"Log in<\/a> if you already have an account.","register_password":"Heslo","register_password_confirmation":"Potvrzen\u00ed hesla","register_password_example":"Zadejte bezpe\u010dn\u00e9 heslo","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Nov\u00e9 registrace jsou aktu\u00e1ln\u011b zastaveny","signup_error":"An error occured trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"P\u0159\u00edli\u0161 mnoho pokus\u016f o p\u0159ihl\u00e1\u0161en\u00ed. Zkuste to pros\u00edm znovu za :seconds vte\u0159in.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Aktivit","statistics_contacts":"Kontakt\u016f","statistics_gifts":"D\u00e1rk\u016f","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Opravdu chcete smazat tento den\u00edkov\u00fd z\u00e1znam?","entry_delete_success":"Z\u00e1znam den\u00edku byl \u00fasp\u011b\u0161n\u011b smaz\u00e1n.","journal_add":"P\u0159idat den\u00edkov\u00fd z\u00e1znam","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Ulo\u017eit","journal_add_date":"Date","journal_add_post":"Z\u00e1pis","journal_add_title":"Title (optional)","journal_blank_cta":"P\u0159idej sv\u016fj prvn\u00ed den\u00edkov\u00fd z\u00e1znam","journal_blank_description":"Den\u00edk umo\u017e\u0148uje zaznamen\u00e1v\u00e1n\u00ed ud\u00e1lost\u00ed kter\u00e9 se staly a uleh\u010duje jejich zapamatov\u00e1n\u00ed.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"P\u0159idat, zobrazit, dodat a zm\u011bnit informace k t\u00e9to osob\u011b:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Ahoj :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"P\u0159ipom\u00ednka pro :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Dal\u0161\u00ed \u276f","previous":"\u276e P\u0159edchoz\u00ed"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Heslo bylo obnoveno!","sent":"E-mail s instrukcemi k obnoven\u00ed hesla byl odesl\u00e1n!","throttled":"Please wait before retrying.","token":"Kl\u00ed\u010d pro obnovu hesla je nespr\u00e1vn\u00fd.","user":"Nepoda\u0159ilo se naj\u00edt u\u017eivatele s touto e-mailovou adresou."},"people":{"activities_activity":"Activity Category","activities_add_activity":"P\u0159idat aktivitu","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"Aktivita byla \u00fasp\u011b\u0161n\u011b p\u0159id\u00e1na","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"P\u0159idat aktivitu","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"Aktivita byla \u00fasp\u011b\u0161n\u011b smaz\u00e1na","activities_item_information":":Activity. Stalo se :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Popi\u0161te co jste d\u011blali","activities_update_success":"Aktivita byla \u00fasp\u011b\u0161n\u011b aktualizov\u00e1na","activities_view_activities_report":"View activities report","activities_who_was_involved":"Kdo byl zapojen?","activity_title":"Aktivity","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"j\u00eddlo doma","activity_type_ate_restaurant":"j\u00eddlo v restauraci","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"spole\u010dn\u00fd \u010das","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"promluvili jsme si doma","activity_type_watched_movie_at_home":"sledov\u00e1n\u00ed filmu doma","activity_type_went_bar":"n\u00e1v\u0161t\u011bva baru","activity_type_went_concert":"n\u00e1v\u0161t\u011bva koncertu","activity_type_went_museum":"n\u00e1v\u0161t\u011bva muzea","activity_type_went_play":"n\u00e1v\u0161t\u011bva z\u00e1pasu","activity_type_went_theater":"n\u00e1v\u0161t\u011bva divadla","age_approximate_in_years":"v\u011bk okolo :age","age_exact_birthdate":"narozeniny :date","age_exact_in_years":":age let","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Datum narozen\u00ed nen\u00ed zad\u00e1no","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Zaznamenat telefon\u00e1t","call_delete_confirmation":"Opravdu chcete \u00fadaje o telefon\u00e1tu vymazat?","call_delete_success":"\u00dadaje o telefon\u00e1tu byly \u00fasp\u011b\u0161n\u011b smaz\u00e1ny","call_emotions":"Emotions:","call_empty_comment":"Bez detail\u016f","call_he_called":"{name} called","call_title":"Telefon\u00e1ty","call_you_called":"You called","calls_add_success":"\u00dadaje o telefon\u00e1tu byly ulo\u017eeny.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"P\u0159idat dluh","debt_add_amount":"celkem","debt_add_cta":"P\u0159idat dluh","debt_add_reason":"z n\u00e1sleduj\u00edc\u00edho d\u016fvodu (voliteln\u00e9)","debt_add_success":"Dluh byl \u00fasp\u011b\u0161n\u011b p\u0159id\u00e1n","debt_add_they_owe":":name mi dlu\u017e\u00ed","debt_add_title":"Spr\u00e1va dluh\u016f","debt_add_you_owe":"Dlu\u017e\u00edm :name","debt_delete_confirmation":"Opravdu chcete smazat tento dluh?","debt_delete_success":"Dluh byl \u00fasp\u011b\u0161n\u011b smaz\u00e1n","debt_edit_success":"Dluh byl \u00fasp\u011b\u0161n\u011b aktualizov\u00e1n","debt_edit_update_cta":"Aktualizovat dluh","debt_they_owe":":name mi dlu\u017e\u00ed :amount","debt_title":"Dluh\u016f","debt_you_owe":"Dlu\u017e\u00edm :amount","debts_blank_title":"Spravovat dluh pro :name nebo :name dlu\u017e\u00edc\u00ed mn\u011b","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Upravit informace kontaktu","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Informace o obl\u00edben\u00fdch potravin\u00e1ch ulo\u017eeny","food_preferences_cta":"P\u0159idat up\u0159ednost\u0148ovan\u00e9 potraviny","food_preferences_edit_cta":"Ulo\u017eit informace o potravin\u00e1ch","food_preferences_edit_description":"Mo\u017en\u00e1 m\u00e1 :firstname nebo n\u011bkdo z rodiny :family alergii. Nebo nemus\u00ed n\u011bjak\u00e9 specifick\u00e9 v\u00edno. Pozna\u010dte si to zde, abyste si vzpom\u011bli p\u0159ed p\u0159\u00ed\u0161t\u00edm pozv\u00e1n\u00edm na ve\u010de\u0159i","food_preferences_edit_description_no_last_name":"Mo\u017en\u00e1 m\u00e1 :firstname alergii. Nebo nemus\u00ed n\u011bjak\u00e9 specifick\u00e9 v\u00edno. Pozna\u010dte si to zde, abyste si vzpom\u011bli p\u0159ed p\u0159\u00ed\u0161t\u00edm pozv\u00e1n\u00edm na ve\u010de\u0159i","food_preferences_edit_title":"Zapsat up\u0159ednost\u0148ovan\u00e9 potraviny","food_preferences_title":"Up\u0159ednost\u0148ovan\u00e9 potraviny","gifts_add_comment":"Koment\u00e1\u0159 (voliteln\u00e9)","gifts_add_date":"Date (optional)","gifts_add_gift":"P\u0159idat d\u00e1rek","gifts_add_gift_already_offered":"D\u00e1rek ji\u017e darov\u00e1n","gifts_add_gift_idea":"N\u00e1pad na d\u00e1rek","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"Co je tento d\u00e1rek za\u010d?","gifts_add_link":"Odkaz na webovou str\u00e1nku (voliteln\u00e9)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"D\u00e1rek byl \u00fasp\u011b\u0161n\u011b p\u0159id\u00e1n","gifts_add_title":"Spr\u00e1va d\u00e1rk\u016f pro :name","gifts_add_value":"Hodnota (voliteln\u00e9)","gifts_delete_confirmation":"Opravdu chcete smazat tento d\u00e1rek?","gifts_delete_cta":"Smazat","gifts_delete_success":"D\u00e1rek byl \u00fasp\u011b\u0161n\u011b smaz\u00e1n","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Odkaz","gifts_mark_offered":"Mark as given","gifts_offered":"Darov\u00e1no","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"V\u00edm p\u0159esn\u00e9 datum narozen\u00ed t\u00e9to osoby, kter\u00e9 je","information_edit_firstname":"Jm\u00e9no","information_edit_lastname":"P\u0159\u00edjmen\u00ed (voliteln\u00e9)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"Tato osoba je p\u0159ibli\u017en\u011b","information_edit_success":"Profil byl \u00fasp\u011b\u0161n\u011b aktualizov\u00e1n","information_edit_title":"Upravit osobn\u00ed informace o :name","information_edit_unknown":"Nezn\u00e1m v\u011bk t\u00e9to osoby","information_no_work_defined":"\u017d\u00e1dn\u00e9 informace o pr\u00e1ci","information_work_at":"v :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"O \u010dem byla \u0159e\u010d? (voliteln\u00e9)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"Telefonovali jsme","modal_call_title":"Zaznamenat telefon\u00e1t","modal_call_who_called":"Who called?","notes_add_cta":"P\u0159idat pozn\u00e1mku","notes_create_success":"Pozn\u00e1mka byla \u00fasp\u011b\u0161n\u011b vytvo\u0159ena","notes_delete_confirmation":"Opravdu chcete smazat tuto pozn\u00e1mku? Smaz\u00e1n\u00ed je trval\u00e9.","notes_delete_success":"Pozn\u00e1mka byla \u00fasp\u011b\u0161n\u011b smaz\u00e1na","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"Pozn\u00e1mka byla \u00fasp\u011b\u0161n\u011b ulo\u017eena","people_add_birthday_reminder":"Pop\u0159\u00e1t k narozenin\u00e1m :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"P\u0159idat tuto osobu","people_add_firstname":"Jm\u00e9no","people_add_gender":"Pohlav\u00ed","people_add_import":"Chcete importovat sv\u00e9 kontakty<\/a>?","people_add_lastname":"P\u0159\u00edjmen\u00ed (voliteln\u00e9)","people_add_middlename":"Prost\u0159edn\u00ed jm\u00e9no (voliteln\u00e9)","people_add_missing":"No Person Found Add New One Now","people_add_new":"P\u0159idat novou osobu","people_add_nickname":"P\u0159ezd\u00edvka (voliteln\u00e9)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"P\u0159idat novou osobu","people_delete_confirmation":"Opravdu chcete smazat tento kontakt? Smaz\u00e1n\u00ed je trval\u00e9.","people_delete_message":"Delete contact","people_delete_success":"Kontakt byl smaz\u00e1n","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgradovat nyn\u00ed","people_list_account_upgrade_title":"Upgradujte sv\u016fj \u00fa\u010det a odemkn\u011bte jej na jeho pln\u00fd potenci\u00e1l.","people_list_account_usage":"Vyu\u017eit\u00ed va\u0161eho \u00fa\u010dtu: :current\/:limit kontakt\u016f","people_list_blank_cta":"N\u011bkoho p\u0159idat","people_list_blank_title":"Zat\u00edm jste do sv\u00e9ho \u00fa\u010dtu nikoho nep\u0159idali","people_list_clear_filter":"Vy\u010distit filtr","people_list_contacts_per_tags":"1 kontakt|:count kontakt\u016f","people_list_filter_tag":"Zobrazeny v\u0161echny kontakty s tagem","people_list_filter_untag":"Zobrazen\u00ed v\u0161ech neozna\u010den\u00fdch kontakt\u016f","people_list_firstnameAZ":"\u0158adit podle jm\u00e9na A \u2192 Z","people_list_firstnameZA":"\u0158adit podle jm\u00e9na Z \u2192 A","people_list_hide_dead":"Skr\u00fdt zem\u0159el\u00e9 osoby (:count)","people_list_last_updated":"Naposledy konzultov\u00e1no:","people_list_lastactivitydateNewtoOld":"Se\u0159adit podle posledn\u00edho data aktivity od nejnov\u011bj\u0161\u00edho k nejstar\u0161\u00edmu","people_list_lastactivitydateOldtoNew":"Se\u0159adit podle posledn\u00edho data aktivity od nejnov\u011bj\u0161\u00edho k nejstar\u0161\u00edmu","people_list_lastnameAZ":"\u0158adit podle p\u0159\u00edjmen\u00ed A \u2192 Z","people_list_lastnameZA":"\u0158adit podle p\u0159\u00edjmen\u00ed Z \u2192 A","people_list_number_kids":"1 d\u00edt\u011b|:count d\u011bti","people_list_number_reminders":"1 p\u0159ipom\u00ednka|:count p\u0159ipom\u00ednek","people_list_show_dead":"Zobrazit zem\u0159el\u00e9 osoby (:count)","people_list_sort":"\u0158azen\u00ed","people_list_stats":"1 kontakt|:count kontakt\u016f","people_list_untagged":"Zobrazit neozna\u010den\u00e9 kontakty","people_not_found":"Kontakt nenalezen","people_save_and_add_another_cta":"Odeslat a p\u0159idat n\u011bkoho \u010fa\u013e\u0161\u00edho","people_search":"Prohledat kontakty...","people_search_all":"V\u0161e\u00a0","people_search_next":"Dal\u0161\u00ed","people_search_no_results":"Nenalezen \u017e\u00e1dn\u00fd v\u00fdsledek","people_search_of":"z","people_search_page":"Str\u00e1nka","people_search_prev":"P\u0159edchoz\u00ed","people_search_rows_per_page":"\u0158\u00e1dk\u016f na str\u00e1nku","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"ka\u017ed\u00fd m\u011bs\u00edc|ka\u017ed\u00e9 :number m\u011bs\u00edce","reminder_frequency_one_time":":date","reminder_frequency_week":"ka\u017ed\u00fd t\u00fdden|ka\u017ed\u00e9 :number t\u00fddny","reminder_frequency_year":"ka\u017ed\u00fd rok|ka\u017ed\u00e9 :number roky","reminders_add_cta":"P\u0159idat upozorn\u011bn\u00ed","reminders_add_description":"Pros\u00edm upozornit na...","reminders_add_error_custom_text":"Mus\u00edte zadat text tohoto upozorn\u011bn\u00ed","reminders_add_next_time":"Kdy budete cht\u00edt b\u00fdt na tuto skute\u010dnost p\u0159\u00ed\u0161t\u011b upozorn\u011bni?","reminders_add_once":"Upozornit pouze jedenkr\u00e1t","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Upozornit","reminders_add_starting_from":"po datu zadan\u00e9m v\u00fd\u0161e","reminders_add_title":"Na co chcete b\u00fdt upozor\u0148ov\u00e1ni pro osobu :name?","reminders_birthday":"Narozeniny m\u00e1 :name","reminders_blank_add_activity":"P\u0159idat upozorn\u011bn\u00ed","reminders_blank_title":"Je n\u011bco na co chcete b\u00fdt upozor\u0148ov\u00e1ni pro osobu :name?","reminders_create_success":"Upozorn\u011bn\u00ed bylo \u00fasp\u011b\u0161n\u011b p\u0159id\u00e1no","reminders_cta":"P\u0159idat upozorn\u011bn\u00ed","reminders_delete_confirmation":"Opravdu chcete smazat toto upozorn\u011bn\u00ed?","reminders_delete_cta":"Smazat","reminders_delete_success":"Upozorn\u011bn\u00ed bylo \u00fasp\u011b\u0161n\u011b smaz\u00e1no","reminders_description":"Pro ka\u017ed\u00e9 upozorn\u011bn\u00ed n\u00ed\u017ee bude posl\u00e1n email. Upozorn\u011bn\u00ed jsou rozes\u00edl\u00e1na r\u00e1no v den ud\u00e1losti. Automatick\u00e1 upozorn\u011bn\u00ed pro zadan\u00e1 data narozen\u00ed nelze smazat. Pokud chcete zm\u011bnit tato data, upravte datum narozen\u00ed kontakt\u016f.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"v","reminders_one_time":"Jedenkr\u00e1t","reminders_type_month":"m\u011bs\u00ed\u010dn\u011b","reminders_type_week":"t\u00fddn\u011b","reminders_type_year":"ro\u010dn\u011b","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Aktivity","section_personal_gifts":"D\u00e1rky","section_personal_notes":"Notes","section_personal_reminders":"Upozorn\u011bn\u00ed","section_personal_tasks":"\u00dakoly","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Upravit tag","tag_no_tags":"No tags yet","tasks_add_task":"P\u0159idat \u00fakol","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"\u00dakol \u00fasp\u011b\u0161n\u011b zm\u011bnil sv\u016fj stav","tasks_delete_success":"\u00dakol byl \u00fasp\u011b\u0161n\u011b smaz\u00e1n","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Aktualizovat informace o pr\u00e1ci","work_edit_company":"Spole\u010dnost (voliteln\u00e9)","work_edit_job":"Pracovn\u00ed pozice (voliteln\u00e9)","work_edit_success":"\u00dadaje o zamestnan\u00ed byly aktualizov\u00e1ny","work_edit_title":"Aktualizovat informace o pr\u00e1ci pro :name","work_information":"Work information"},"reminder":{"type_birthday":"Pop\u0159\u00e1t k narozenin\u00e1m","type_birthday_kid":"Pop\u0159\u00e1t k narozenin\u00e1m d\u00edt\u011bti od","type_email":"Email","type_hangout":"Setk\u00e1n\u00ed s","type_lunch":"Ob\u011bd s","type_phone_call":"Zavolat"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"M\u011bna","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Smazat \u00fa\u010det","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Smazat \u00fa\u010det","email":"Emailov\u00e1 adresa","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Vlo\u017eit email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Exportovat data \u00fa\u010dtu","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Importovat vCard","import_blank_description":"Um\u00edme importovat soubory vCard, kter\u00e9 m\u016f\u017eete z\u00edskat z Google Contacts nebo sv\u00e9ho spr\u00e1vce kontakt\u016f.","import_blank_question":"Chcete nyn\u00ed importovat kontakty?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Nahr\u00e1t kontakty","import_in_progress":"Prob\u00edh\u00e1 import. Obnovit str\u00e1nku za jednu minutu.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Datum importu","import_report_number_contacts":"Po\u010det kontakt\u016f v souboru","import_report_number_contacts_imported":"Po\u010det importovan\u00fdch kontakt\u016f","import_report_number_contacts_skipped":"Po\u010det p\u0159esko\u010den\u00fdch kontakt\u016f","import_report_status_imported":"Importov\u00e1no","import_report_status_skipped":"P\u0159esko\u010deno","import_report_title":"Report importu","import_report_type":"Typ importu","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Importovat kontakty do sv\u00e9ho \u00fa\u010dtu","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"V\u00e1\u0161 .vcf<\/code> nebo .vCard<\/code> soubor:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"Podporujeme .vcard<\/code> a .vcf<\/code> soubory.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"M\u00e1me ale n\u011bkolik pravidel:","import_upload_title":"Importovat kontakty z vCard souboru","import_vcard_contact_exist":"Kontakt ji\u017e existuje","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"Zobrazit report","lastname":"Last name","layout":"Vzhled","layout_big":"Pln\u00e1 \u0161\u00ed\u0159ka prohl\u00ed\u017ee\u010de","layout_small":"Maxim\u00e1ln\u011b 1200 pixel\u016f \u0161irok\u00fd","locale":"Jazyk pou\u017eit\u00fd v aplikaci","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"N\u011bm\u010dina","locale_en":"Angli\u010dtina","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"Francouz\u0161tina","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Ru\u0161tina","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Vlastn\u00ed jm\u00e9no: :name","name_order":"\u0158azen\u00ed jmen","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Resetovat \u00fa\u010det","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Resetovat vlastn\u00ed \u00fa\u010det","save":"Aktualizovat p\u0159edvolby","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"P\u0159edvolby aktualizov\u00e1ny!","sidebar_personalization":"Personalization","sidebar_settings":"Nastaven\u00ed \u00fa\u010dtu","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Exportovat data","sidebar_settings_import":"Importovat data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Odb\u011bry","sidebar_settings_tags":"Tag management","sidebar_settings_users":"U\u017eivatel\u00e9","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Aktu\u00e1ln\u00ed pl\u00e1n","subscriptions_account_free_plan":"Vyu\u017e\u00edv\u00e1te bezplatnou verzi.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Neomezen\u00fd po\u010det u\u017eivatel\u016f","subscriptions_account_free_plan_upgrade":"Sv\u016fj \u00fa\u010det m\u016f\u017eete pov\u00fd\u0161it na verzi :name, kter\u00e1 m\u011bs\u00ed\u010dn\u011b stoj\u00ed $:price. Zde jsou v\u00fdhody:","subscriptions_account_invoices":"Faktury","subscriptions_account_invoices_download":"St\u00e1hnout","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Nav\u00fd\u0161it sv\u016fj \u00fa\u010det","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"P\u0159ej\u00edt","subscriptions_downgrade_limitations":"Bezplatn\u00e1 verze m\u00e1 omezen\u00ed. K p\u0159echodu na bezplatnou verzi mus\u00edte proj\u00edt seznam n\u00ed\u017ee:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"Sm\u00edte m\u00edt pouze jednoho u\u017eivatele \u00fa\u010dtu","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"P\u0159ej\u00edt na bezplatnou verzi","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"V\u00e1\u0161 m\u011bs\u00ed\u010dn\u00ed pl\u00e1n :name","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Kreditn\u00ed nebo debetn\u00ed karta","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Nav\u00fd\u0161it sv\u016fj \u00fa\u010det","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tagy jsou \u0161ikovn\u00e9 \u0159e\u0161en\u00ed kategorizace kontakt\u016f.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Opravdu chcete smazat tento tag? Bude smaz\u00e1n pouze vybran\u00fd tag, \u017e\u00e1dn\u00e9 kontakty.","tags_list_delete_success":"Tag byl \u00fasp\u011b\u0161n\u011b smaz\u00e1n","tags_list_description":"Sv\u00e9 kontakty m\u016f\u017eete organizovat pomoc\u00ed tag\u016f. Tagy funguj\u00ed jako adres\u00e1\u0159e, kontakt\u016fm m\u016f\u017eete ale p\u0159idat v\u00edcero tag\u016f. Nov\u00fd tag p\u0159id\u00e1te \u00fapravou vlastn\u00edho kontaktu.","tags_list_title":"Tagy","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"\u010casov\u00e1 z\u00f3na","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Pozvat u\u017eivatele emailem","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Zadejte email osoby, kterou chcete pozvat","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Chcete pozvat n\u011bkoho dal\u0161\u00edho?","users_blank_cta":"N\u011bkoho pozvat","users_blank_description":"Tato osoba bude m\u00edt stejn\u00fd p\u0159\u00edstup a bude schopna p\u0159id\u00e1vat, upravovat a mazat informace kontakt\u016f.","users_blank_title":"Jste zat\u00edm samotn\u00fdm u\u017eivatelem s p\u0159\u00edstupem k tomuto \u00fa\u010dtu.","users_error_already_invited":"Ji\u017e jste tohoto u\u017eivatele pozvali. Vyberte pros\u00edm jinou emailovou adresu.","users_error_email_already_taken":"Email byl ji\u017e pou\u017eit. Vyberte pros\u00edm n\u011bjak\u00fd jin\u00fd","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Potvr\u010fte pros\u00edm, \u017ee chcete p\u0159izvat ?tuto osobu?, ne\u017e bude pozv\u00e1nka zpracov\u00e1na","users_invitation_deleted_confirmation_message":"Pozv\u00e1nka byla \u00fasp\u011b\u0161n\u011b smaz\u00e1na","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Opravdu chcete smazat tuto pozv\u00e1nku?","users_list_add_user":"Pozvat nov\u00e9ho u\u017eivatele","users_list_delete_confirmation":"Opravdu chcete smazat tohoto u\u017eivatele z tohoto \u00fa\u010dtu?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"pozv\u00e1n u\u017eivatelem :name","users_list_invitations_sent_date":"pozv\u00e1n\u00ed odesl\u00e1no :date","users_list_invitations_title":"\u010cekaj\u00edc\u00ed pozv\u00e1nky","users_list_title":"U\u017eivatel\u00e9 s p\u0159\u00edstupem k tomuto \u00fa\u010dtu","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":":attribute mus\u00ed b\u00fdt p\u0159ijat.","active_url":":attribute nen\u00ed platnou URL adresou.","after":":attribute mus\u00ed b\u00fdt datum po :date.","after_or_equal":":attribute mus\u00ed b\u00fdt datum :date nebo pozd\u011bj\u0161\u00ed.","alpha":":attribute m\u016f\u017ee obsahovat pouze p\u00edsmena.","alpha_dash":":attribute m\u016f\u017ee obsahovat pouze p\u00edsmena, \u010d\u00edslice, poml\u010dky a podtr\u017e\u00edtka. \u010cesk\u00e9 znaky (\u00e1, \u00e9, \u00ed, \u00f3, \u00fa, \u016f, \u017e, \u0161, \u010d, \u0159, \u010f, \u0165, \u0148) nejsou podporov\u00e1ny.","alpha_num":":attribute m\u016f\u017ee obsahovat pouze p\u00edsmena a \u010d\u00edslice.","array":":attribute mus\u00ed b\u00fdt pole.","attributes":[],"before":":attribute mus\u00ed b\u00fdt datum p\u0159ed :date.","before_or_equal":"Datum :attribute mus\u00ed b\u00fdt p\u0159ed nebo rovno :date.","between":{"array":":attribute mus\u00ed obsahovat nejm\u00e9n\u011b :min a nesm\u00ed obsahovat v\u00edce ne\u017e :max prvk\u016f.","file":":attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed ne\u017e :min a men\u0161\u00ed ne\u017e :max Kilobyt\u016f.","numeric":":attribute mus\u00ed b\u00fdt hodnota mezi :min a :max.","string":":attribute mus\u00ed b\u00fdt del\u0161\u00ed ne\u017e :min a krat\u0161\u00ed ne\u017e :max znak\u016f."},"boolean":":attribute mus\u00ed b\u00fdt true nebo false","confirmed":":attribute nebylo odsouhlaseno.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute mus\u00ed b\u00fdt platn\u00e9 datum.","date_equals":":attribute mus\u00ed b\u00fdt datum shodn\u00e9 s :date.","date_format":":attribute nen\u00ed platn\u00fd form\u00e1t data podle :format.","different":":attribute a :other se mus\u00ed li\u0161it.","digits":":attribute mus\u00ed b\u00fdt :digits pozic dlouh\u00e9.","digits_between":":attribute mus\u00ed b\u00fdt dlouh\u00e9 nejm\u00e9n\u011b :min a nejv\u00edce :max pozic.","dimensions":":attribute m\u00e1 neplatn\u00e9 rozm\u011bry.","distinct":":attribute m\u00e1 duplicitn\u00ed hodnotu.","email":":attribute nen\u00ed platn\u00fd form\u00e1t.","ends_with":":attribute mus\u00ed kon\u010dit jednou z n\u00e1sleduj\u00edc\u00edch hodnot: :values","exists":"Zvolen\u00e1 hodnota pro :attribute nen\u00ed platn\u00e1.","file":":attribute mus\u00ed b\u00fdt soubor.","filled":":attribute mus\u00ed b\u00fdt vypln\u011bno.","gt":{"array":"Pole :attribute mus\u00ed m\u00edt v\u00edce prvk\u016f ne\u017e :value.","file":"Velikost souboru :attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed ne\u017e :value kB.","numeric":":attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed ne\u017e :value.","string":"Po\u010det znak\u016f :attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed :value."},"gte":{"array":"Pole :attribute mus\u00ed m\u00edt :value prvk\u016f nebo v\u00edce.","file":"Velikost souboru :attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed nebo rovno :value kB.","numeric":":attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed nebo rovno :value.","string":"Po\u010det znak\u016f :attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed nebo rovno :value."},"image":":attribute mus\u00ed b\u00fdt obr\u00e1zek.","in":"Zvolen\u00e1 hodnota pro :attribute je neplatn\u00e1.","in_array":":attribute nen\u00ed obsa\u017een v :other.","integer":":attribute mus\u00ed b\u00fdt cel\u00e9 \u010d\u00edslo.","ip":":attribute mus\u00ed b\u00fdt platnou IP adresou.","ipv4":":attribute mus\u00ed b\u00fdt platn\u00e1 IPv4 adresa.","ipv6":":attribute mus\u00ed b\u00fdt platn\u00e1 IPv6 adresa.","json":":attribute mus\u00ed b\u00fdt platn\u00fd JSON \u0159et\u011bzec.","lt":{"array":":attribute by m\u011bl obsahovat m\u00e9n\u011b ne\u017e :value polo\u017eek.","file":"Velikost souboru :attribute mus\u00ed b\u00fdt men\u0161\u00ed ne\u017e :value kB.","numeric":":attribute mus\u00ed b\u00fdt men\u0161\u00ed ne\u017e :value.","string":":attribute mus\u00ed obsahovat m\u00e9n\u011b ne\u017e :value znak\u016f."},"lte":{"array":":attribute by m\u011bl obsahovat maxim\u00e1ln\u011b :value polo\u017eek.","file":"Velikost souboru :attribute mus\u00ed b\u00fdt men\u0161\u00ed ne\u017e :value kB.","numeric":":attribute mus\u00ed b\u00fdt men\u0161\u00ed nebo rovno ne\u017e :value.","string":":attribute nesm\u00ed b\u00fdt del\u0161\u00ed ne\u017e :value znak\u016f."},"max":{"array":":attribute nesm\u00ed obsahovat v\u00edce ne\u017e :max prvk\u016f.","file":":attribute mus\u00ed b\u00fdt men\u0161\u00ed ne\u017e :max Kilobyt\u016f.","numeric":":attribute mus\u00ed b\u00fdt ni\u017e\u0161\u00ed ne\u017e :max.","string":":attribute mus\u00ed b\u00fdt krat\u0161\u00ed ne\u017e :max znak\u016f."},"mimes":":attribute mus\u00ed b\u00fdt jeden z n\u00e1sleduj\u00edc\u00edch datov\u00fdch typ\u016f :values.","mimetypes":":attribute mus\u00ed b\u00fdt jeden z n\u00e1sleduj\u00edc\u00edch datov\u00fdch typ\u016f :values.","min":{"array":":attribute mus\u00ed obsahovat v\u00edce ne\u017e :min prvk\u016f.","file":":attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed ne\u017e :min Kilobyt\u016f.","numeric":":attribute mus\u00ed b\u00fdt v\u011bt\u0161\u00ed ne\u017e :min.","string":":attribute mus\u00ed b\u00fdt del\u0161\u00ed ne\u017e :min znak\u016f."},"not_in":"Zvolen\u00e1 hodnota pro :attribute je neplatn\u00e1.","not_regex":":attribute mus\u00ed b\u00fdt regul\u00e1rn\u00ed v\u00fdraz.","numeric":":attribute mus\u00ed b\u00fdt \u010d\u00edslo.","password":"The password is incorrect.","present":":attribute mus\u00ed b\u00fdt vypln\u011bno.","regex":":attribute nem\u00e1 spr\u00e1vn\u00fd form\u00e1t.","required":":attribute mus\u00ed b\u00fdt vypln\u011bno.","required_if":":attribute mus\u00ed b\u00fdt vypln\u011bno pokud :other je :value.","required_unless":":attribute mus\u00ed b\u00fdt vypln\u011bno dokud :other je v :values.","required_with":":attribute mus\u00ed b\u00fdt vypln\u011bno pokud :values je vypln\u011bno.","required_with_all":":attribute mus\u00ed b\u00fdt vypln\u011bno pokud :values je zvoleno.","required_without":":attribute mus\u00ed b\u00fdt vypln\u011bno pokud :values nen\u00ed vypln\u011bno.","required_without_all":":attribute mus\u00ed b\u00fdt vypln\u011bno pokud nen\u00ed \u017e\u00e1dn\u00e9 z :values zvoleno.","same":":attribute a :other se mus\u00ed shodovat.","size":{"array":":attribute mus\u00ed obsahovat pr\u00e1v\u011b :size prvk\u016f.","file":":attribute mus\u00ed m\u00edt p\u0159esn\u011b :size Kilobyt\u016f.","numeric":":attribute mus\u00ed b\u00fdt p\u0159esn\u011b :size.","string":":attribute mus\u00ed b\u00fdt p\u0159esn\u011b :size znak\u016f dlouh\u00fd."},"starts_with":":attribute mus\u00ed za\u010d\u00ednat jednou z n\u00e1sleduj\u00edc\u00edch hodnot: :values.","string":":attribute mus\u00ed b\u00fdt \u0159et\u011bzec znak\u016f.","timezone":":attribute mus\u00ed b\u00fdt platn\u00e1 \u010dasov\u00e1 z\u00f3na.","unique":":attribute mus\u00ed b\u00fdt unik\u00e1tn\u00ed.","uploaded":"Nahr\u00e1v\u00e1n\u00ed :attribute se nezda\u0159ilo.","url":"Form\u00e1t :attribute je neplatn\u00fd.","uuid":":attribute mus\u00ed b\u00fdt validn\u00ed UUID.","vue":{"max":{"numeric":"{field} nesm\u00ed b\u00fdt v\u011bt\u0161\u00ed ne\u017e {max}.","string":"{field} nesm\u00ed b\u00fdt dlh\u0161\u00ed ne\u017e {max} znakov."},"required":"{field} je povinn\u00e9.","url":"{field} nen\u00ed platn\u00e1 adresa URL."}}} diff --git a/public/js/langs/da.json b/public/js/langs/da.json deleted file mode 100644 index 6914244f51a..00000000000 --- a/public/js/langs/da.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Tilf\u00f8j","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Tilbage","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Tilpasning","breadcrumb_settings_security":"Sikkerhed","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Annull\u00e9r","close":"Luk","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or account and will never do.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Kopi\u00e9r","create":"Opret","date":"Date","dav_birthdays":"F\u00f8dselsdage","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Kontakter","dav_contacts_description":":name\u2019s kontakter","dav_tasks":"Opgaver","dav_tasks_description":":name\u2019s opgaver","default_save_success":"The data has been saved.","delete":"Slet","delete_confirm":"Are you sure?","done":"Udf\u00f8rt","download":"Download","edit":"Redig\u00e9r","emotion_adoration":"Adoration","emotion_affection":"Hengivenhed","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"\u00c6ngstelighed","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Frygt","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Gl\u00e6de","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"K\u00e6rlighed","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nerv\u00f8sitet","emotion_optimism":"Optimisme","emotion_outrage":"Outrage","emotion_panic":"Panik","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Stolthed","emotion_primary_anger":"Vrede","emotion_primary_fear":"Frygt","emotion_primary_joy":"Joy","emotion_primary_love":"K\u00e6rlighed","emotion_primary_sadness":"S\u00f8rgmodighed","emotion_primary_surprise":"Overrasket","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Tilfredshed","emotion_scorn":"Scorn","emotion_secondary_affection":"Hengivenhed","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"V\u00e6mmelse","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nerv\u00f8sitet","emotion_secondary_optimism":"Optimisme","emotion_secondary_pride":"Stolthed","emotion_secondary_rage":"Raseri","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Overrasket","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"Vi er snart tilbage.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Hovsa! Noget gik galt.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Tjenesten er ikke tilg\u00e6ngelig","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What\u2019s new","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Kvinde","gender_male":"Mand","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"G\u00e5 tilbage","header_changelog_link":"Produkt\u00e6ndringer","header_logout_link":"Log af","header_settings_link":"Indstillinger","load_more":"Indl\u00e6s flere","loading":"Loading\u2026","main_nav_activities":"Aktiviteter","main_nav_cta":"Tilf\u00f8j personer","main_nav_dashboard":"Oversigt","main_nav_family":"Kontakter","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text in a nice way? We support Markdown to add bold, italic, lists and more.","markdown_link":"L\u00e6s dokumentation","new":"ny","no":"Nej","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"bedste ven","relationship_type_bestfriend_female":"bedste veninde","relationship_type_bestfriend_female_with_name":":name\u2019s bedste veninde","relationship_type_bestfriend_with_name":":name\u2019s bedste ven","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"s\u00f8n","relationship_type_child_female":"datter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"kollega","relationship_type_colleague_female":"kollega","relationship_type_colleague_female_with_name":":name\u2019s kollega","relationship_type_colleague_with_name":":name\u2019s kollega","relationship_type_cousin":"f\u00e6tter","relationship_type_cousin_female":"kusine","relationship_type_cousin_female_with_name":":name\u2019s kusine","relationship_type_cousin_with_name":":name\u2019s f\u00e6tter","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"eksk\u00e6reste","relationship_type_ex_female":"eksk\u00e6reste","relationship_type_ex_female_with_name":":name\u2019s eksk\u00e6reste","relationship_type_ex_husband":"eksmand","relationship_type_ex_husband_female":"ekskone","relationship_type_ex_husband_female_with_name":":name\u2019s ekskone","relationship_type_ex_husband_with_name":":name\u2019s eksmand","relationship_type_ex_with_name":":name\u2019s eksk\u00e6reste","relationship_type_friend":"ven","relationship_type_friend_female":"veninde","relationship_type_friend_female_with_name":":name\u2019s veninde","relationship_type_friend_with_name":":name\u2019s ven","relationship_type_godfather":"gudfar","relationship_type_godfather_female":"gudmor","relationship_type_godfather_female_with_name":":name\u2019s gudmor","relationship_type_godfather_with_name":":name\u2019s gudfar","relationship_type_godson":"guds\u00f8n","relationship_type_godson_female":"guddatter","relationship_type_godson_female_with_name":":name\u2019s guddatter","relationship_type_godson_with_name":":name\u2019s guds\u00f8n","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"barnebarn","relationship_type_grandchild_female_with_name":":name\u2019s barnebarn","relationship_type_grandchild_with_name":":name\u2019s barnebarn","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"elsker","relationship_type_lover_female":"elsker","relationship_type_lover_female_with_name":":name\u2019s elsker","relationship_type_lover_with_name":":name\u2019s elsker","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nev\u00f8","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nev\u00f8","relationship_type_parent":"far","relationship_type_parent_female":"mor","relationship_type_parent_female_with_name":":name\u2019s mor","relationship_type_parent_with_name":":name\u2019s far","relationship_type_partner":"partner","relationship_type_partner_female":"partner","relationship_type_partner_female_with_name":":name\u2019s partner","relationship_type_partner_with_name":":name\u2019s partner","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"bror","relationship_type_sibling_female":"s\u00f8ster","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"\u00e6gtef\u00e6lle","relationship_type_spouse_female":"\u00e6gtef\u00e6lle","relationship_type_spouse_female_with_name":":name\u2019s \u00e6gtef\u00e6lle","relationship_type_spouse_with_name":":name\u2019s \u00e6gtef\u00e6lle","relationship_type_stepchild":"steds\u00f8n","relationship_type_stepchild_female":"steddatter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stedfar","relationship_type_stepparent_female":"stedmor","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"onkel","relationship_type_uncle_female":"tante","relationship_type_uncle_female_with_name":":name\u2019s tante","relationship_type_uncle_with_name":":name\u2019s onkel","remove":"Fjern","retry":"Pr\u00f8v igen","revoke":"Tilbagekald","save":"Gem","save_close":"Gem og luk","today":"i dag","type":"Type","unknown":"I don\u2019t know","update":"Opdat\u00e9r","upgrade":"Opgrad\u00e9r for at l\u00e5se op","upload":"Upload","verify":"Bekr\u00e6ft","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Overskyet","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"T\u00e5ge","weather_partly-cloudy-day":"Delvist overskyet dag","weather_partly-cloudy-night":"Delvist overskyet nat","weather_rain":"Regn","weather_sleet":"Slud","weather_snow":"Sne","weather_wind":"Vind","with":"with","yes":"Ja","yesterday":"i g\u00e5r","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"G\u00e5 til startside","button_remember":"Husk mig","change_language":"Skift sprog til :lang","change_language_title":"Skift sprog:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Bekr\u00e6ft din e-mail adresse","create_account":"Create the first account by signing up<\/a>","email":"E-mail","email_change_current_email":"Nuv\u00e6rende e-mail adresse:","email_change_new":"Ny e-mail adresse","email_change_title":"Skift din e-mail adresse","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Log ind","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Adgangskode","password_forget":"Glemt adgangskode?","password_reset":"Nulstil din adgangskode","password_reset_action":"Nulstil adgangskode","password_reset_email":"E-mail adresse","password_reset_email_content":"Klik her for at \u00e6ndre din adgangskode:","password_reset_password":"Adgangskode","password_reset_password_confirm":"Bekr\u00e6ft adgangskode","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Nulstil adgangskode","recovery":"Gendannelseskode","register_action":"Registr\u00e9r","register_create_account":"You need to create an account to use Monica","register_email":"Indtast en gyldig e-mail adresse","register_email_example":"you@home","register_firstname":"Fornavn","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Efternavn","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Kodeord","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Tilmeld dig","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Har du ikke en bruger?","throttle":"Too many login attempts. Please try again in :seconds seconds.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: Denne side er desv\u00e6rre kun p\u00e5 engelsk.","title":"Produkt\u00e6ndringer"},"dashboard":{"dashboard_blank_cta":"Tilf\u00f8j din f\u00f8rste kontakt","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration af Freepik<\/a>","dashboard_blank_title":"Velkommen til din konto!","debts_you_owe":"Du skylder","notes_title":"Du har ingen foretrukne noter endnu.","product_changes":"Produkt\u00e6ndringer","product_view_details":"Se detaljer","reminders_next_months":"Begivenheder de n\u00e6ste 3 m\u00e5neder","reminders_none":"Ingen p\u00e5mindelser denne m\u00e5ned.","statistics_activities":"Aktiviteter","statistics_contacts":"Kontakter","statistics_gifts":"Gaver","tab_calls_blank":"Du har ikke logget nogle opkald endnu.","tab_debts":"G\u00e6ld","tab_debts_blank":"Du har ikke registreret noget g\u00e6ld endnu.","tab_favorite_notes":"Foretrukne noter","tab_recent_calls":"Seneste opkald","tab_tasks":"Opgaver","tab_tasks_blank":"Du har ingen opgaver endnu.","task_add_cta":"Tilf\u00f8j en opgave","tasks_add_note":"Tryk Enter<\/kbd> for at tilf\u00f8je opgaven.","tasks_add_task_placeholder":"Hvad g\u00e5r opgaven ud p\u00e5?","tasks_tab_your_contacts":"Opgaver relateret til dine kontakter","tasks_tab_your_tasks":"Dine opgaver"},"format":{"full_date_year":"d. F Y","full_hour":"H:i","full_month":"F","full_month_year":"F Y","short_date":"d. M","short_date_year":"d. M Y","short_date_year_time":"d. M Y, H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Aktivitet","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Vis kommentar"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Bekr\u00e6ft din e-mail adresse","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept\u00e9r invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Nulstil adgangskode","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"N\u00e6ste \u276f","previous":"\u276e Forrige"},"passwords":{"changed":"Adgangskoden er \u00e6ndret.","invalid":"Adgangskode er forkert.","reset":"Din adgangskode er blevet nulstillet!","sent":"Hvis din e-mail adresse eksisterer i systemet, vil du modtage en e-mail til nulstilling af din adgangskode.","throttled":"Please wait before retrying.","token":"Nulstillingsn\u00f8glen til denne adgangskode er ugyldig.","user":"Hvis din e-mail adresse eksisterer i systemet, vil du modtage en e-mail til nulstilling af din adgangskode."},"people":{"activities_activity":"Aktivitetskategori","activities_add_activity":"Tilf\u00f8j aktivitet","activities_add_category":"Angiv en kategori","activities_add_date_occured":"Aktiviteten skete den...","activities_add_emotions":"Tilf\u00f8j f\u00f8lelser","activities_add_emotions_title":"Vil du logge hvordan du f\u00f8lte dig under denne aktivitet? (valgfrit)","activities_add_error":"Fejl ved tilf\u00f8jelse af aktiviteten","activities_add_more_details":"Tilf\u00f8j flere detaljer","activities_add_participants":"Hvem, udover {name}, deltog i denne aktivitet? (valgfrit)","activities_add_participants_cta":"Tilf\u00f8j deltagere","activities_add_pick_activity":"(Valgfrit) Vil du kategorisere denne aktivitet? Du beh\u00f8ver ikke, men det vil give dig statistik senere","activities_add_success":"Aktiviteten er blevet tilf\u00f8jet","activities_add_title":"Hvad lavede du med {name}?","activities_blank_add_activity":"Tilf\u00f8j en aktivitet","activities_blank_title":"Hold styr p\u00e5, hvad du har lavet med {name} i fortiden, og hvad I har talt om","activities_delete_success":"Aktiviteten er blevet slettet","activities_item_information":":Acitivity. Skete den :date","activities_list_category":"Kategori:","activities_list_date":"Skete den","activities_list_emotions":"F\u00f8lelser f\u00f8lt:","activities_list_participants":"Deltagere:","activities_profile_number_occurences":":value aktivitet|:value aktiviteter","activities_profile_subtitle":"Du har logget :total_activities aktivitet med :name i alt og :activities_last_twelve_months i de sidste 12 m\u00e5neder indtil nu.|Du har logget :total_activities aktiviteter med :name i alt og :activities_last_twelve_months i de sidste 12 m\u00e5neder indtil nu.","activities_profile_title":"Aktivitetsrapport mellem :name og dig","activities_profile_year_summary":"Her er hvad I to har lavet i :year","activities_profile_year_summary_activity_types":"Her er en opdeling af den type aktiviteter, I har lavet sammen i :year","activities_summary":"Beskriv hvad I gjorde","activities_update_success":"Aktiviteten er blevet opdateret","activities_view_activities_report":"Vis aktivitetsoversigt","activities_who_was_involved":"Hvem var med?","activity_title":"Aktiviteter","activity_type_ate_at_his_place":"spiste hos dem","activity_type_ate_at_home":"spiste hjemme","activity_type_ate_restaurant":"spiste p\u00e5 restaurent","activity_type_category_cultural_activities":"Kulturelle aktiviteter","activity_type_category_food":"Mad","activity_type_category_simple_activities":"Simple aktiviteter","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"spillede en sport sammen","activity_type_just_hung_out":"hang bare ud","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"snakkede bare hjemme","activity_type_watched_movie_at_home":"s\u00e5 en film hjemme","activity_type_went_bar":"gik p\u00e5 bar","activity_type_went_concert":"gik til koncert","activity_type_went_museum":"gik p\u00e5 museum","activity_type_went_play":"gik til en forestilling","activity_type_went_theater":"gik i teateret","age_approximate_in_years":"omkring :age \u00e5r","age_exact_birthdate":"f\u00f8dt :date","age_exact_in_years":":age \u00e5r","auditlogs_author":"Efter :name p\u00e5 :date","auditlogs_breadcrumb":"Historik","auditlogs_link":"Historik","auditlogs_title":"Alt, hvad der skete :name","avatar_adorable_avatar":"Det bed\u00e5rende profilbillede","avatar_change_title":"Skift profilbillede","avatar_crop_new_avatar_photo":"Besk\u00e6r nyt profilbillede","avatar_current":"Behold det nuv\u00e6rende profilbillede","avatar_default_avatar":"Standard profilbilledet","avatar_gravatar":"Det Gravatar forbundet med e-mailadressen for denne person. Gravatar<\/a> er et globalt system der g\u00f8r det muligt for brugere at tilknytte e-mailadresser med billeder.","avatar_photo":"Fra et billede, du uploader","avatar_question":"Hvilket profilbillede \u00f8nsker du at bruge?","birthdate_not_set":"F\u00f8dselsdag er ikke angivet","call_blank_desc":"Du ringede til {name}","call_blank_title":"Hold styr p\u00e5 de telefonopkald, du har foretaget med {name}","call_button":"Log et opkald","call_delete_confirmation":"Er du sikker p\u00e5, at du vil slette dette opkald?","call_delete_success":"Opkaldet er blevet slettet","call_emotions":"F\u00f8lelser:","call_empty_comment":"Ingen detaljer","call_he_called":"{name} ringede","call_title":"Opkald","call_you_called":"Du ringede","calls_add_success":"Opkaldet er blevet gemt.","contact_address_form_city":"By (valgfri)","contact_address_form_country":"Land (valgfri)","contact_address_form_latitude":"Breddegrad (kun tal) (valgfrit)","contact_address_form_longitude":"L\u00e6ngdegrad (kun tal) (valgfrit)","contact_address_form_name":"Etiket (valgfrit)","contact_address_form_postal_code":"Postnummer (valgfri)","contact_address_form_province":"Provins (valgfrit)","contact_address_form_street":"Gadenavn (valgfri)","contact_address_title":"Adresser","contact_archive":"Arkiv\u00e9r kontakt","contact_archive_help":"Arkiverede kontakter vil ikke blive vist p\u00e5 kontaktlisten, men vises stadig i s\u00f8geresultater.","contact_field_label_cell":"Mobil","contact_field_label_fax":"Fax","contact_field_label_home":"Hjem","contact_field_label_main":"Prim\u00e6r","contact_field_label_other":"Andet","contact_field_label_pager":"Persons\u00f8ger","contact_field_label_personal":"Personlig","contact_field_label_work":"Arbejde","contact_info_address":"Bor i","contact_info_form_contact_type":"Kontaktype","contact_info_form_content":"Indhold","contact_info_form_personalize":"Tilpas","contact_info_title":"Kontaktoplysninger","contact_unarchive":"Gendan kontakt fra arkiv","conversation_add_another":"Tilf\u00f8j en anden besked","conversation_add_content":"Skriv ned hvad der blev sagt","conversation_add_error":"Du skal angive mindst \u00e9n besked.","conversation_add_how":"Hvordan kommunikerede du?","conversation_add_success":"Samtalen er blevet tilf\u00f8jet.","conversation_add_title":"Opret en ny samtale","conversation_add_what_was_said":"Hvad sagde du?","conversation_add_when":"Hvorn\u00e5r havde du samtalen?","conversation_add_who_wrote":"Hvem sagde dette?","conversation_add_you":"Dig","conversation_blank":"Optag samtaler du har med: navn p\u00e5 sociale medier, SMS, ...","conversation_delete_link":"Slet samtalen","conversation_delete_success":"Samtalen er blevet slettet.","conversation_edit_delete":"Er du sikker p\u00e5, at du \u00f8nsker at slette denne samtale? Denne handling er permanent.","conversation_edit_success":"Samtalen er blevet opdateret.","conversation_edit_title":"Redig\u00e9r samtalen","conversation_list_cta":"Log samtalen","conversation_list_table_content":"Delvis indhold (sidste meddelelse)","conversation_list_table_messages":"Beskeder","conversation_list_title":"Samtaler","debt_add_add_cta":"Tilf\u00f8j g\u00e6ld","debt_add_amount":"summen af","debt_add_cta":"Tilf\u00f8j g\u00e6ld","debt_add_reason":"af f\u00f8lgende \u00e5rsag (valgfri)","debt_add_success":"G\u00e6lden er blevet tilf\u00f8jet","debt_add_they_owe":":name skylder dig","debt_add_title":"G\u00e6ldstyring","debt_add_you_owe":"Du skylder :name","debt_delete_confirmation":"Er du sikker p\u00e5, at du vil slette denne g\u00e6ld?","debt_delete_success":"G\u00e6lden er blevet slettet","debt_edit_success":"G\u00e6lden er blevet opdateret","debt_edit_update_cta":"Opdat\u00e9r g\u00e6ld","debt_they_owe":":name skylder dig :amount","debt_title":"G\u00e6ld","debt_you_owe":"Du skylder :amount","debts_blank_title":"Administrer g\u00e6ld du skylder :name eller :name skylder dig","deceased_add_reminder":"Tilf\u00f8j en p\u00e5mindelse for denne dag","deceased_age":"Alder ved d\u00f8den","deceased_date_label":"Afd\u00f8d dato","deceased_know_date":"Jeg kender dagen, hvor denne person d\u00f8de","deceased_label":"Afd\u00f8d","deceased_label_with_date":"D\u00f8de den :date","deceased_mark_person_deceased":"Mark\u00e9r denne person som afd\u00f8d","deceased_reminder_title":"D\u00f8dsdag for :name","document_list_blank_desc":"Her kan du opbevare dokumenter relateret til denne person.","document_list_cta":"Overf\u00f8r dokument","document_list_title":"Dokumenter","document_upload_zone_cta":"Overf\u00f8r en fil","document_upload_zone_error":"Der opstod en fejl under overf\u00f8rslen af dokumentet. Pr\u00f8v venligst igen.","document_upload_zone_progress":"Overf\u00f8rer dokumentet...","edit_contact_information":"Redig\u00e9r kontaktoplysninger","emotion_this_made_me_feel":"Dette fik dig til at f\u00f8le\u2026","food_preferences_add_success":"Mad preferencer er gemt","food_preferences_cta":"Tilf\u00f8j mad preferencer","food_preferences_edit_cta":"Gem mad preferencer","food_preferences_edit_description":"M\u00e5ske :firstname eller nogen i :family familie har en allergi. Eller kan ikke lide en bestemt flaske vin. Angiv dem her, s\u00e5 du kan huske det n\u00e6ste gang du inviterer dem til middag","food_preferences_edit_description_no_last_name":"M\u00e5ske :firstname har en allergi. Eller kan ikke lide en bestemt flaske vin. Angiv dem her, s\u00e5 du kan huske det n\u00e6ste gang du inviterer dem til middag","food_preferences_edit_title":"Indik\u00e9r mad preferencer","food_preferences_title":"Mad preferencer","gifts_add_comment":"Kommentar (valgfri)","gifts_add_date":"Date (optional)","gifts_add_gift":"Tilf\u00f8j en gave","gifts_add_gift_already_offered":"Gave givet","gifts_add_gift_idea":"Gave id\u00e9","gifts_add_gift_name":"Gavenavn","gifts_add_gift_received":"Gave modtaget","gifts_add_gift_title":"Hvad er gaven?","gifts_add_link":"Link til web side (valgfri)","gifts_add_photo":"Billede (valgfrit)","gifts_add_photo_title":"Tilf\u00f8j et billede til denne gave","gifts_add_recipient":"Modtager (valgfrit)","gifts_add_recipient_field":"Modtager","gifts_add_someone":"Denne gave er til nogen bestemt i {name}s familie","gifts_add_success":"Gaven er blevet tilf\u00f8jet","gifts_add_title":"Gavestyring for :name","gifts_add_value":"V\u00e6rdi (valgfri)","gifts_delete_confirmation":"Er du sikker p\u00e5 at du vil slette denne gave?","gifts_delete_cta":"Slet","gifts_delete_success":"Gaven er blevet slettet","gifts_delete_title":"Slet en gave","gifts_for":"Til: {name}","gifts_ideas":"Gave id\u00e9er","gifts_link":"Link","gifts_mark_offered":"Marker som givet","gifts_offered":"Gaver givet","gifts_offered_as_an_idea":"Mark\u00e9r som id\u00e9","gifts_received":"Gave modtaget","gifts_title":"Gaver","gifts_update_success":"Gaven er blevet opdateret","gifts_view_comment":"Se kommentar","information_edit_birthdate_label":"F\u00f8dselsdag","information_edit_description":"Beskrivelse (valgfrit)","information_edit_description_help":"Bruges p\u00e5 kontaktlisten til at tilf\u00f8je noget sammenh\u00e6ng, hvis det er n\u00f8dvendigt.","information_edit_exact":"Jeg kender den pr\u00e6cise f\u00f8dselsdag p\u00e5 denne person...","information_edit_firstname":"Fornavn","information_edit_lastname":"Efternavn (valgfrit)","information_edit_max_size":"Maks. :size Kb.","information_edit_max_size2":"Maks. {size} Kb.","information_edit_not_year":"Jeg kender dag og m\u00e5ned p\u00e5 denne person's f\u00f8dselsdag, men ikke \u00e5ret\u2026","information_edit_probably":"Denne person er sandsynligvis...","information_edit_success":"Profilen er blevet opdateret","information_edit_title":"Redig\u00e9r :name\u2019s personlige oplysninger","information_edit_unknown":"Jeg kender ikke denne person\u2019s alder","information_no_work_defined":"Ingen arbejdsinformation defineret","information_work_at":"hos :company","introductions_add_reminder":"Tilf\u00f8j en p\u00e5mindelse for at fejre dette m\u00f8de p\u00e5 \u00e5rsdagen denne begivenhed fandt sted","introductions_additional_info":"Beskriv hvordan og hvor I m\u00f8dtes","introductions_blank_cta":"Beskriv hvordan du m\u00f8dte :name","introductions_edit_met_through":"Blev du introduceret til denne person af en anden?","introductions_first_met_date":"Dag I m\u00f8dtes","introductions_first_met_date_known":"Dette er den dato, vi m\u00f8dtes","introductions_met_date":"M\u00f8dtes den :date","introductions_met_through":"M\u00f8dtes gennem :name<\/a>","introductions_no_first_met_date":"Jeg kender ikke den dato, vi m\u00f8dte","introductions_no_met_through":"Ingen","introductions_reminder_title":"\u00c5rsdag for f\u00f8rste gang i m\u00f8dtes","introductions_sidebar_title":"Hvordan I m\u00f8dtes","introductions_title_edit":"Hvordan m\u00f8dte du :name?","introductions_update_success":"Du har opdateret oplysningerne om, hvordan du har m\u00f8dt denne person","last_activity_date":"Sidste aktivitet sammen: :date","last_activity_date_empty":"Sidste aktivitet sammen: ukendt","last_called":"Sidste opkald: :date","last_called_empty":"Sidste opkald: ukendt","life_event_blank":"Log hvad der sker i livet for {name} til din fremtidige reference.","life_event_category_family_relationships":"Familie & relationer","life_event_category_health_wellness":"Sundhed & velv\u00e6re","life_event_category_home_living":"Hjem & liv","life_event_category_travel_experiences":"Rejser & oplevelser","life_event_category_work_education":"Arbejde & uddannelse","life_event_create_add_yearly_reminder":"Tilf\u00f8j en \u00e5rlig p\u00e5mindelse for denne begivenhed","life_event_create_category":"Alle kategorier","life_event_create_date":"Du beh\u00f8ver ikke at angive en m\u00e5ned eller en dag - kun \u00e5ret er obligatorisk.","life_event_create_default_description":"Tilf\u00f8j information om hvad du ved","life_event_create_default_story":"Historie (valgfrit)","life_event_create_default_title":"Titel (valgfrit)","life_event_create_life_event":"Tilf\u00f8j livsbegivenhed","life_event_create_success":"Livsbegivenheden er blevet tilf\u00f8jet","life_event_date_it_happened":"Datoen hvor det skete","life_event_delete_description":"Er du sikker p\u00e5, at du vil slette denne livsbegivenhed? Sletning er permanent.","life_event_delete_success":"Livsbegivenheden er blevet slettet","life_event_delete_title":"Slet en livsbegivenhed","life_event_list_cta":"Tilf\u00f8j livsbegivenhed","life_event_list_tab_life_events":"Livsbegivenheder","life_event_list_tab_other":"Noter, p\u00e5mindelser, ...","life_event_list_title":"Livsbegivenheder","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"\u00c5rsdag","life_event_sentence_bought_a_home":"K\u00f8bte et hjem","life_event_sentence_broken_bone":"Br\u00e6kkede en knogle","life_event_sentence_changed_beliefs":"Skiftede tro","life_event_sentence_dentist":"Gik til tandl\u00e6gen","life_event_sentence_end_of_relationship":"Afsluttede et forhold","life_event_sentence_engagement":"Blev forlovet","life_event_sentence_expecting_a_baby":"Forventer et barn","life_event_sentence_first_kiss":"Kyssede for f\u00f8rste gang","life_event_sentence_first_word":"Snakkede for f\u00f8rste gang","life_event_sentence_holidays":"Tog p\u00e5 ferie","life_event_sentence_home_improvement":"Lavede en forbedring af hjemmet","life_event_sentence_loss_of_a_loved_one":"Mistede en elsket","life_event_sentence_marriage":"Blev gift","life_event_sentence_military_service":"Startede i milit\u00e6ret","life_event_sentence_moved":"Flyttede","life_event_sentence_new_child":"Fik et barn","life_event_sentence_new_eating_habits":"Fik nye spisevaner","life_event_sentence_new_family_member":"Fik et familie medlem","life_event_sentence_new_hobby":"Startede en hobby","life_event_sentence_new_instrument":"L\u00e6rte at spille et instrument","life_event_sentence_new_job":"Startede p\u00e5 nyt arbejde","life_event_sentence_new_language":"L\u00e6rte et ny sprog","life_event_sentence_new_license":"Fik et k\u00f8rekort","life_event_sentence_new_pet":"Fik et k\u00e6ledyr","life_event_sentence_new_relationship":"Startede et forhold","life_event_sentence_new_roommate":"Fik en roommate","life_event_sentence_new_school":"Startede i skole","life_event_sentence_new_sport":"Startede til sport","life_event_sentence_new_vehicle":"Fik et nyt k\u00f8ret\u00f8j","life_event_sentence_overcame_an_illness":"Overvandt en sygdom","life_event_sentence_published_book_or_paper":"Udgav en artikel","life_event_sentence_quit_a_habit":"Stoppede en d\u00e5rlig vane","life_event_sentence_removed_braces":"Fjernede b\u00f8jler","life_event_sentence_retirement":"Pensioneret","life_event_sentence_study_abroad":"Studerede i udlandet","life_event_sentence_surgery":"Undergik en operation","life_event_sentence_tattoo_or_piercing":"Fik en tatovering eller piercing","life_event_sentence_travel":"Rejste","life_event_sentence_volunteer_work":"Begyndt frivilligt arbejde","life_event_sentence_wear_glass_or_contact":"Begynde at g\u00e5 med briller eller linser","life_event_sentence_weight_loss":"Tabte sig","list_link_to_active_contacts":"Du ser arkiverede kontakter. Se i stedet listen over aktive kontakter<\/a>.","list_link_to_archived_contacts":"Liste af arkiverede kontakter","me":"Dette er dig","modal_call_comment":"Hvad snakkede I om? (valgfrit)","modal_call_emotion":"Vil du logge hvordan du f\u00f8lte under dette opkald? (valgfrit)","modal_call_exact_date":"Telefonopkaldet skete den","modal_call_title":"Log et opkald","modal_call_who_called":"Hvem ringede?","notes_add_cta":"Tilf\u00f8j note","notes_create_success":"Noten er blevet oprettet","notes_delete_confirmation":"Er du sikker p\u00e5, at du \u00f8nsker at slette denne note? Denne handling er permanent","notes_delete_success":"Noten er blevet slettet","notes_delete_title":"Slet note","notes_favorite":"Tilf\u00f8j\/Fjern fra favoritter","notes_update_success":"Noten er blevet gemt","people_add_birthday_reminder":"\u00d8nsk :name tillykke","people_add_birthday_reminder_deceased":"P\u00e5 denne dato, :name, ville have fejret hans f\u00f8dselsdag","people_add_cta":"Tilf\u00f8j","people_add_firstname":"Fornavn","people_add_gender":"K\u00f8n","people_add_import":"\u00d8nsker du at importere dine kontakter<\/a>?","people_add_lastname":"Efternavn (valgfrit)","people_add_middlename":"Mellemnavn (valgfrit)","people_add_missing":"Ingen Person Fundet Tilf\u00f8j Ny Nu","people_add_new":"Tilf\u00f8j ny person","people_add_nickname":"Kaldenavn (valgfrit)","people_add_reminder_for_birthday":"Opret en \u00e5rlig p\u00e5mindelse for f\u00f8dselsdagen","people_add_success":":name er blevet oprettet","people_add_title":"Tilf\u00f8j en ny person","people_delete_confirmation":"Er du sikker p\u00e5, at du \u00f8nsker at slette denne kontakt? Denne handling er permanent.","people_delete_message":"Slet kontakt","people_delete_success":"Kontakten er blevet slettet","people_edit_email_error":"Der findes allerede en kontakt p\u00e5 din konto med denne e-mailadresse. V\u00e6lg venligst en anden.","people_export":"Eksport\u00e9r som vCard","people_list_account_upgrade_cta":"Opgrad\u00e9r nu","people_list_account_upgrade_title":"Opgrader din konto for at l\u00e5se den op for dets fulde potentiale.","people_list_account_usage":"Dit konto forbrug: :current\/:limit contacts","people_list_blank_cta":"Tilf\u00f8j en anden person","people_list_blank_title":"Du har endnu ikke nogen p\u00e5 din konto endnu","people_list_clear_filter":"Ryd filter","people_list_contacts_per_tags":"1 kontakt|:count kontakter","people_list_filter_tag":"Viser alle kontakter tagget med","people_list_filter_untag":"Viser alle ikke-taggede kontakter","people_list_firstnameAZ":"Sort\u00e9r p\u00e5 fornavn A \u2192 Z","people_list_firstnameZA":"Sort\u00e9r p\u00e5 fornavn Z \u2192 A","people_list_hide_dead":"Skjul afd\u00f8de (:count)","people_list_last_updated":"Sidste checket:","people_list_lastactivitydateNewtoOld":"Sorter efter seneste aktivitetsdato nyeste til \u00e6ldste","people_list_lastactivitydateOldtoNew":"Sorter efter seneste aktivitetsdato \u00e6ldste til nyeste","people_list_lastnameAZ":"Sort\u00e9r p\u00e5 efternavn A \u2192 Z","people_list_lastnameZA":"Sort\u00e9r p\u00e5 efternavn Z \u2192 A","people_list_number_kids":"1 barn|:count b\u00f8rn","people_list_number_reminders":"1 p\u00e5mindelse|:count p\u00e5mindelser","people_list_show_dead":"Vis afd\u00f8de (:count)","people_list_sort":"Sort\u00e9r","people_list_stats":"1 kontakt|:count kontakter","people_list_untagged":"Vis ikke-taggede kontakter","people_not_found":"Kontakt ikke fundet","people_save_and_add_another_cta":"Indsend og tilf\u00f8j en anden","people_search":"S\u00f8g efter kontakter...","people_search_all":"Alle","people_search_next":"N\u00e6ste","people_search_no_results":"Ingen resultater fundet","people_search_of":"af","people_search_page":"Side","people_search_prev":"Forrige","people_search_rows_per_page":"Rows per page","pets_bird":"Fugl","pets_cat":"Kat","pets_create_success":"K\u00e6ledyret er blevet tilf\u00f8jet","pets_delete_success":"K\u00e6ledyret er blevet slettet","pets_dog":"Hund","pets_fish":"Fisk","pets_hamster":"Hamster","pets_horse":"Hest","pets_kind":"K\u00e6ledyr","pets_name":"Navn (valgfrit)","pets_other":"Andet","pets_rabbit":"Kanin","pets_rat":"Rotte","pets_reptile":"Krybdyr","pets_small_animal":"Lille dyr","pets_title":"K\u00e6ledyr","pets_update_success":"K\u00e6ledyret er blevet opdateret","photo_current_profile_pic":"Nuv\u00e6rende profilbillede","photo_delete":"Slet billede","photo_list_blank_desc":"Du kan gemme billeder om denne kontakt. Upload et nu!","photo_list_cta":"Upload billede","photo_list_title":"Relaterede billeder","photo_make_profile_pic":"Brug som profilbillede","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Billeder","photo_upload_zone_cta":"Tilf\u00f8j et billede","relationship_delete_confirmation":"Er du sikker p\u00e5, at du \u00f8nsker at slette dette forhold? Denne handling er permanent.","relationship_form_add":"Tilf\u00f8j et nyt forhold","relationship_form_add_choice":"Hvem er forholdet med?","relationship_form_add_description":"Dette vil lade dig behandle denne person som enhver anden kontakt.","relationship_form_add_no_existing_contact":"Du har ikke nogen kontakter, der kan v\u00e6re relateret til :name i \u00f8jeblikket.","relationship_form_add_success":"Forholdet er blevet slettet.","relationship_form_also_create_contact":"Opret en kontakt for denne person.","relationship_form_associate_contact":"En eksisterende kontakt","relationship_form_associate_dropdown":"S\u00f8g efter en eksisterende kontakt og v\u00e6lg nedenfor","relationship_form_associate_dropdown_placeholder":"S\u00f8g efter en eksisterende kontakt","relationship_form_create_contact":"Tilf\u00f8j en ny person","relationship_form_deletion_success":"Forholdet er blevet slettet.","relationship_form_edit":"Tilf\u00f8j et eksisterende forhold","relationship_form_is_with":"Denne person er...","relationship_form_is_with_name":":name er...","relationship_unlink_confirmation":"Er du sikker p\u00e5, at du vil slette dette forhold? Personen bliver ikke slettet \u2013 kun forholdet mellem de to.","reminder_frequency_day":"hver dag|hver :number. dag","reminder_frequency_month":"hver m\u00e5ned|hver :number. m\u00e5ned","reminder_frequency_one_time":"den :date","reminder_frequency_week":"hver uge|hver :number. uge","reminder_frequency_year":"hvert \u00e5r|hvert :number. \u00e5r","reminders_add_cta":"Tilf\u00f8j p\u00e5mindelse","reminders_add_description":"P\u00e5mind mig venligst om at...","reminders_add_error_custom_text":"Du skal angive en tekst til denne p\u00e5mindelse","reminders_add_next_time":"Hvorn\u00e5r er den n\u00e6ste gang, du \u00f8nsket at blive mindet om dette?","reminders_add_once":"P\u00e5mind mig om dette en gang","reminders_add_optional_comment":"Valgfri kommentar","reminders_add_recurrent":"P\u00e5mind mig om dette hver","reminders_add_starting_from":"fra den dato, der er angivet ovenfor","reminders_add_title":"Hvad \u00f8nsker du at blive mindet om, om :name?","reminders_birthday":"F\u00f8dselsdag for :name","reminders_blank_add_activity":"Tilf\u00f8j en p\u00e5mindelse","reminders_blank_title":"Er der noget, du \u00f8nsker at blive mindet om, om :name?","reminders_create_success":"P\u00e5mindelsen er blevet tilf\u00f8jet","reminders_cta":"Tilf\u00f8j en p\u00e5mindelse","reminders_delete_confirmation":"Er du sikker p\u00e5, at du vil slette denne p\u00e5mindelse?","reminders_delete_cta":"Slet","reminders_delete_success":"P\u00e5mindelsen er blevet slettet","reminders_description":"Vi vil sende en e-mail for hver enkelt af p\u00e5mindelserne nedenfor. P\u00e5mindelser sendes hver morgen dagen begivenheder vil ske. P\u00e5mindelser tilf\u00f8jet automatisk for f\u00f8dselsdatoer kan ikke slettes. Hvis du \u00f8nsker at \u00e6ndre disse datoer, skal du redigere f\u00f8dselsdatoen for kontakterne.","reminders_edit_update_cta":"Opdat\u00e9r p\u00e5mindelse","reminders_free_plan_warning":"Du er p\u00e5 den gratis plan. Ingen e-mails sendes p\u00e5 denne plan. For at modtage dine p\u00e5mindelser via e-mail, skal du opgradere din konto.","reminders_next_expected_date":"den","reminders_one_time":"En gang","reminders_type_month":"m\u00e5ned","reminders_type_week":"uge","reminders_type_year":"\u00e5r","reminders_update_success":"P\u00e5mindelsen er blevet opdateret","section_contact_information":"Kontaktoplysninger","section_personal_activities":"Aktiviteter","section_personal_gifts":"Gaver","section_personal_notes":"Noter","section_personal_reminders":"P\u00e5mindelser","section_personal_tasks":"Opgaver","set_favorite":"Favoritkontakter er placeret \u00f8verst p\u00e5 kontaktlisten","stay_in_touch":"Hold kontakten","stay_in_touch_frequency":"Hold kontakten hver dag|Hold kontakten hver {count}. dag","stay_in_touch_invalid":"Frekvensen skal v\u00e6re et tal st\u00f8rre end 0.","stay_in_touch_modal_desc":"Vi kan p\u00e5minde dig via e-mail for at holde kontakten med {firstname} med j\u00e6vne mellemrum.","stay_in_touch_modal_label":"Send mig en mail hver... {count} dag|Send mig en mail hver... {count} dage","stay_in_touch_modal_title":"Hold kontakten","stay_in_touch_premium":"Du skal opgradere din konto for at g\u00f8re brug af denne funktion","tag_add":"Tilf\u00f8j tags","tag_add_search":"Tilf\u00f8j eller s\u00f8g tags","tag_edit":"Redig\u00e9r tag","tag_no_tags":"Ingen tags endnu","tasks_add_task":"Tilf\u00f8j en opgave","tasks_blank_title":"Du har ingen opgaver endnu.","tasks_complete_success":"Opgaven har f\u00e5et \u00e6ndret status","tasks_delete_success":"Opgaven er blevet slettet","tasks_form_description":"Beskrivelse (valgfrit)","tasks_form_title":"Titel","tasks_title":"Opgaver","work_add_cta":"Opdat\u00e9r arbejdsoplysninger","work_edit_company":"Virksomhed (valgfri)","work_edit_job":"Jobtitel (valgfri)","work_edit_success":"Work information updated","work_edit_title":"Opdater :names' jobinformation","work_information":"Arbejdsinformation"},"reminder":{"type_birthday":"\u00d8nsk tillykke til","type_birthday_kid":"\u00d8nsk tillykke med barnet til","type_email":"E-mail","type_hangout":"H\u00e6ng ud med","type_lunch":"Frokost med","type_phone_call":"Ring til"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"E-mail adresse","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Indtast e-mail","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invit\u00e9r bruger via e-mail","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/de.json b/public/js/langs/de.json deleted file mode 100644 index 8d941392abd..00000000000 --- a/public/js/langs/de.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Hinzuf\u00fcgen","another_day":"anderen Tag","application_description":"Monica ist ein Werkzeug, um Ihre Interaktionen mit Ihren Lieben, Freunden und Familie zu verwalten.","application_og_title":"Bessere Beziehungen zu deinen Liebsten. Kostenloses Online CRM f\u00fcr Freunde und Familie.","application_title":"Monica \u2013 pers\u00f6nlicher Beziehungsmanager","back":"Zur\u00fcck","breadcrumb_add_note":"Notiz hinzuf\u00fcgen","breadcrumb_add_significant_other":"Lebensgef\u00e4hrte hinzuf\u00fcgen","breadcrumb_api":"API","breadcrumb_archived_contacts":"Gespeicherte Kontakte","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV-Ressourcen","breadcrumb_edit_introductions":"Wie habt ihr euch getroffen","breadcrumb_edit_note":"Notiz bearbeiten","breadcrumb_edit_significant_other":"Lebensgef\u00e4hrte bearbeiten","breadcrumb_journal":"Tagebuch","breadcrumb_list_contacts":"Kontaktliste","breadcrumb_profile":"Profil von :name","breadcrumb_settings":"Einstellungen","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import-Bericht","breadcrumb_settings_import_upload":"Hochladen","breadcrumb_settings_personalization":"Personalisierung","breadcrumb_settings_security":"Sicherheit","breadcrumb_settings_security_2fa":"Zwei-Faktor-Authentifizierung","breadcrumb_settings_subscriptions":"Abonnement","breadcrumb_settings_tags":"Markierungen","breadcrumb_settings_users":"Benutzer","breadcrumb_settings_users_add":"Benutzer hinzuf\u00fcgen","cancel":"Abbrechen","close":"Schlie\u00dfen","compliance_desc":"Wir haben unsere AGBs<\/a> und Datenschutzerkl\u00e4rung<\/a> ge\u00e4ndert. Wir sind gesetzlich dazu verpflichtet zu verlangen, dass du beides durchliest und akzeptierst, damit du deinen Account weiter nutzen kannst.","compliance_desc_end":"Wir machen nichts B\u00f6ses mit deinen Daten oder deinem Account und werden das auch nie tun.","compliance_terms":"Neue AGB und Datenschutzerkl\u00e4rung akzeptieren","compliance_title":"Entschuldige die Unterbrechung.","confirm":"Best\u00e4tigen","contact_list_avatar":"Profilbild","contact_list_description":"Beschreibung","contact_list_name":"Kontakt","copy":"kopieren","create":"Erstellen","date":"Datum","dav_birthdays":"Geburtstage","dav_birthdays_description":"Geburtstage der Kontakte von :name","dav_contacts":"Kontakte","dav_contacts_description":"Kontakte von :name","dav_tasks":"Aufgaben","dav_tasks_description":":names Aufgaben","default_save_success":"Die Daten wurden gespeichert.","delete":"L\u00f6schen","delete_confirm":"Bist du dir sicher?","done":"Fertig","download":"Herunterladen","edit":"Bearbeiten","emotion_adoration":"Verehrung","emotion_affection":"Zuneigung","emotion_aggravation":"Ver\u00e4rgerung","emotion_agitation":"Erregt","emotion_agony":"Pein","emotion_alarm":"Sorge","emotion_alienation":"Entfremdung","emotion_amazement":"Verwunderung","emotion_amusement":"Vergn\u00fcgen","emotion_anger":"Zorn","emotion_anguish":"Qual","emotion_annoyance":"Ver\u00e4rgerung","emotion_anxiety":"Beklommenheit","emotion_apprehension":"Bef\u00fcrchtung","emotion_arousal":"Erregung","emotion_astonishment":"Erstaunen","emotion_attraction":"Anziehung","emotion_bitterness":"Bitterkeit","emotion_bliss":"Gl\u00fcck","emotion_caring":"F\u00fcrsorglich","emotion_cheerfulness":"Fr\u00f6hlichkeit","emotion_compassion":"Mitgef\u00fchl","emotion_contempt":"Verachtung","emotion_contentment":"Zufriedenheit","emotion_defeat":"Versagen","emotion_dejection":"Niedergeschlagenheit","emotion_delight":"Freude","emotion_depression":"Depression","emotion_desire":"Verlangen","emotion_despair":"Verzweiflung","emotion_disappointment":"Entt\u00e4uschung","emotion_disgust":"Ekel","emotion_dislike":"Abneigung","emotion_dismay":"Best\u00fcrzung","emotion_displeasure":"Missfallen","emotion_distress":"Belastung","emotion_dread":"Grauen","emotion_eagerness":"Verlangen","emotion_ecstasy":"Ecstasy","emotion_elation":"Hochgef\u00fchl","emotion_embarrassment":"Peinlichkeit","emotion_enjoyment":"Genuss","emotion_enthrallment":"Begeisterung","emotion_enthusiasm":"Begeisterung","emotion_envy":"Neid","emotion_euphoria":"Euphorie","emotion_exasperation":"Verzweiflung","emotion_excitement":"Aufregung","emotion_exhilaration":"Heiterkeit","emotion_fear":"Angst","emotion_ferocity":"Wildheit","emotion_fondness":"Zuneigung","emotion_fright":"Furcht","emotion_frustration":"Frustration","emotion_fury":"Rage","emotion_gaiety":"Heiterkeit","emotion_gladness":"Freude","emotion_glee":"Freude","emotion_gloom":"Tr\u00fcbsinn","emotion_glumness":"Verdrie\u00dflich","emotion_grief":"Trauer","emotion_grouchiness":"Miesepetrigkeit","emotion_grumpiness":"M\u00fcr\u00adrisch\u00adkeit","emotion_guilt":"Schuld","emotion_happiness":"Gl\u00fcck","emotion_hate":"Hass","emotion_homesickness":"Heimweh","emotion_hope":"Hoffnung","emotion_hopelessness":"Hoffnungslosigkeit","emotion_horror":"Entsetzen","emotion_hostility":"Feindseligkeit","emotion_humiliation":"Dem\u00fctigung","emotion_hurt":"Schmerz","emotion_hysteria":"Hysterie","emotion_infatuation":"Bet\u00f6rung","emotion_insecurity":"Unsicherheit","emotion_insult":"Beleidigung","emotion_irritation":"Irritation","emotion_isolation":"Ausgrenzung","emotion_jealousy":"Eifersucht","emotion_jolliness":"Fr\u00f6hlichkeit","emotion_joviality":"Herzlichkeit","emotion_joy":"Freude","emotion_jubilation":"Jubel","emotion_liking":"Gefallen","emotion_loathing":"Abscheu","emotion_loneliness":"Einsamkeit","emotion_longing":"Sehnsucht","emotion_love":"Liebe","emotion_lust":"Begierde","emotion_melancholy":"Melancholie","emotion_misery":"Elend","emotion_mortification":"Kr\u00e4nkung","emotion_neglect":"Vernachl\u00e4ssigung","emotion_nervousness":"Nervosit\u00e4t","emotion_optimism":"Optimismus","emotion_outrage":"Entr\u00fcstung","emotion_panic":"Panik","emotion_passion":"Leidenschaft","emotion_pity":"Mitleid","emotion_pleasure":"Vergn\u00fcgen","emotion_pride":"Stolz","emotion_primary_anger":"Zorn","emotion_primary_fear":"Angst","emotion_primary_joy":"Freude","emotion_primary_love":"Liebe","emotion_primary_sadness":"Traurigkeit","emotion_primary_surprise":"\u00dcberraschung","emotion_rage":"Wut","emotion_rapture":"Entr\u00fcckung","emotion_regret":"Bedauern","emotion_rejection":"Zur\u00fcckweisung","emotion_relief":"Erleichterung","emotion_remorse":"Reue","emotion_resentment":"Missgunst","emotion_revulsion":"Abscheu","emotion_sadness":"Traurigkeit","emotion_satisfaction":"Zufriedenheit","emotion_scorn":"Verachtung","emotion_secondary_affection":"Zuneigung","emotion_secondary_cheerfulness":"Fr\u00f6hlich","emotion_secondary_contentment":"Zufriedenheit","emotion_secondary_disappointment":"Entt\u00e4uscht","emotion_secondary_disgust":"Ekel","emotion_secondary_enthrallment":"Begeisterung","emotion_secondary_envy":"Neid","emotion_secondary_exasperation":"Verzweiflung","emotion_secondary_horror":"Entsetzen","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Sehnsucht","emotion_secondary_lust":"Begierde","emotion_secondary_neglect":"Vernachl\u00e4ssigung","emotion_secondary_nervousness":"Nervosit\u00e4t","emotion_secondary_optimism":"Optimismus","emotion_secondary_pride":"Stolz","emotion_secondary_rage":"Wut","emotion_secondary_relief":"Erleichterung","emotion_secondary_sadness":"Traurigkeit","emotion_secondary_shame":"Scham","emotion_secondary_suffering":"Leiden","emotion_secondary_surprise":"\u00dcberraschung","emotion_secondary_sympathy":"Sympathie","emotion_secondary_zest":"Elan","emotion_sentimentality":"Sentimentalit\u00e4t","emotion_shame":"Scham","emotion_shock":"Schock","emotion_sorrow":"Bedauern","emotion_spite":"Boshaftigkeit","emotion_suffering":"Leid","emotion_surprise":"\u00dcberraschung","emotion_sympathy":"Sympathie","emotion_tenderness":"Z\u00e4rtlichkeit","emotion_tenseness":"Anspannung","emotion_terror":"Grauen","emotion_thrill":"Nervenkitzel","emotion_uneasiness":"Unbehagen","emotion_unhappiness":"Ungl\u00fccklichkeit","emotion_vengefulness":"Rachsucht","emotion_woe":"Kummer","emotion_worry":"Besorgnis","emotion_wrath":"Zorn","emotion_zeal":"Eifer","emotion_zest":"Elan","error_help":"Wir sind gleich wieder da.","error_id":"Fehler Nr: :id","error_maintenance":"Wartungsarbeiten im Gange. Wir sind gleich wieder f\u00fcr dich da.","error_no_term":"F\u00fcr diese Instanz gibt es noch keine Richtlinie.","error_save":"Beim Versuch die Daten zu speichern ist ein Fehler aufgetreten.","error_title":"Whoops! Da lief etwas falsch.","error_try_again":"Etwas ist schiefgegangen. Bitte versuche es noch mal.","error_twitter":"Folgen Sie uns auf Twitter<\/a> um informiert zu werden, wenn es weitergeht.","error_unauthorized":"Du darfst das leider nicht, da du nicht angemeldet bist.","error_unavailable":"Dienst nicht verf\u00fcgbar","error_user_account":"Dieser Benutzer geh\u00f6rt nicht zum angegebenen Konto.","file_selected":"Eine Datei ausgew\u00e4hlt\u2026|{count} Dateien ausgew\u00e4hlt\u2026","filter":"Liste filtern","footer_modal_version_release_away":"Du bist ein Release hinter der neuesten verf\u00fcgbaren Version. Du solltest deine Installation updaten.|Du bist :number Releases hinter der neuesten verf\u00fcgbaren Version. Du solltest deine Installation updaten.","footer_modal_version_whats_new":"Was gibt's Neues","footer_new_version":"Eine neue Version von Monica ist verf\u00fcgbar","footer_newsletter":"Newsletter","footer_privacy":"Datenschutzrichtlinie","footer_release":"Versionshinweise","footer_remarks":"Anmerkungen?","footer_send_email":"Schreib uns eine E-Mail","footer_source_code":"Monica bei GitHub","footer_version":"Version: :version","gender_female":"Weiblich","gender_male":"M\u00e4nnlich","gender_no_gender":"Kein Geschlecht","gender_none":"M\u00f6chte ich nicht angeben","go_back":"Zur\u00fcck","header_changelog_link":"Produkt\u00e4nderungen","header_logout_link":"Ausloggen","header_settings_link":"Einstellungen","load_more":"Lade mehr","loading":"L\u00e4dt\u2026","main_nav_activities":"Aktivit\u00e4ten","main_nav_cta":"Person hinzuf\u00fcgen","main_nav_dashboard":"Dashboard","main_nav_family":"Personen","main_nav_journal":"Tagebuch","main_nav_tasks":"Aufgaben","markdown_description":"Du m\u00f6chtest deinen Text sch\u00f6ner formatieren? Monica unterst\u00fctzt Markdown.","markdown_link":"\u00d6ffne die Dokumentation","new":"Neu","no":"Nein","percent_uploaded":"{percent}% hochgeladen","relationship_type_bestfriend":"Bester Freund","relationship_type_bestfriend_female":"Beste Freundin","relationship_type_bestfriend_female_with_name":":name's beste Freundin","relationship_type_bestfriend_with_name":":name's bester Freund","relationship_type_boss":"Chef","relationship_type_boss_female":"Chefin","relationship_type_boss_female_with_name":":name's Chefin","relationship_type_boss_with_name":":name's Chef","relationship_type_child":"Sohn","relationship_type_child_female":"Tochter","relationship_type_child_female_with_name":":names Tochter","relationship_type_child_with_name":":names Sohn","relationship_type_colleague":"Kollege","relationship_type_colleague_female":"Kollegin","relationship_type_colleague_female_with_name":":name's Kollegin","relationship_type_colleague_with_name":":name's Kollege","relationship_type_cousin":"Cousin","relationship_type_cousin_female":"Cousine","relationship_type_cousin_female_with_name":":name's Cousine","relationship_type_cousin_with_name":":name's Cousin","relationship_type_date":"Verabredung","relationship_type_date_female":"Verabredung","relationship_type_date_female_with_name":":names Verabredung","relationship_type_date_with_name":":names Verabredung","relationship_type_ex":"Ex-Freund","relationship_type_ex_female":"Ex-Freundin","relationship_type_ex_female_with_name":":name's Ex-Freundin","relationship_type_ex_husband":"Ex-Mann","relationship_type_ex_husband_female":"Ex-Frau","relationship_type_ex_husband_female_with_name":":name\u2019s Ex-Frau","relationship_type_ex_husband_with_name":":name\u2019s Ex-Mann","relationship_type_ex_with_name":":name's Ex-Freund","relationship_type_friend":"Freund","relationship_type_friend_female":"Freundin","relationship_type_friend_female_with_name":":name's Freundin","relationship_type_friend_with_name":":name's Freund","relationship_type_godfather":"Pate","relationship_type_godfather_female":"Patin","relationship_type_godfather_female_with_name":":names Patin","relationship_type_godfather_with_name":":names Pate","relationship_type_godson":"Patenkind","relationship_type_godson_female":"Patenkind","relationship_type_godson_female_with_name":":name's Patenkind","relationship_type_godson_with_name":":name's Patenkind","relationship_type_grandchild":"Enkel","relationship_type_grandchild_female":"Enkelin","relationship_type_grandchild_female_with_name":":name's Enkelin","relationship_type_grandchild_with_name":":name's Enkel","relationship_type_grandparent":"Gro\u00dfvater","relationship_type_grandparent_female":"Gro\u00dfmutter","relationship_type_grandparent_female_with_name":":name's Gro\u00dfmutter","relationship_type_grandparent_with_name":":name's Gro\u00dfvater","relationship_type_group_family":"Familienverh\u00e4ltnisse","relationship_type_group_friend":"Freundschaftsbeziehungen","relationship_type_group_love":"Liebesbeziehungen","relationship_type_group_other":"Andere Art von Beziehungen","relationship_type_group_work":"Arbeitsverh\u00e4ltnisse","relationship_type_inlovewith":"verliebt in","relationship_type_inlovewith_female":"verliebt in","relationship_type_inlovewith_female_with_name":":name ist verliebt in","relationship_type_inlovewith_with_name":":name ist verliebt in","relationship_type_lovedby":"geliebt von","relationship_type_lovedby_female":"geliebt von","relationship_type_lovedby_female_with_name":":names heimliche Verehrerin","relationship_type_lovedby_with_name":":names heimlicher Verehrer","relationship_type_lover":"Liebhaber","relationship_type_lover_female":"Liebhaberin","relationship_type_lover_female_with_name":":names Liebhaberin","relationship_type_lover_with_name":":names Liebhaber","relationship_type_mentor":"Mentor","relationship_type_mentor_female":"Mentorin","relationship_type_mentor_female_with_name":":name's Mentorin","relationship_type_mentor_with_name":":name's Mentor","relationship_type_nephew":"Neffe","relationship_type_nephew_female":"Nichte","relationship_type_nephew_female_with_name":":name's Nichte","relationship_type_nephew_with_name":":name's Neffe","relationship_type_parent":"Vater","relationship_type_parent_female":"Mutter","relationship_type_parent_female_with_name":":name's Mutter","relationship_type_parent_with_name":":names Vater","relationship_type_partner":"Lebensgef\u00e4hrte","relationship_type_partner_female":"Lebensgef\u00e4hrtin","relationship_type_partner_female_with_name":":names Lebensgef\u00e4hrtin","relationship_type_partner_with_name":":names Lebensgef\u00e4hrte","relationship_type_protege":"Sch\u00fctzling","relationship_type_protege_female":"Sch\u00fctzling","relationship_type_protege_female_with_name":":name's Sch\u00fctzling","relationship_type_protege_with_name":":name's Sch\u00fctzling","relationship_type_sibling":"Bruder","relationship_type_sibling_female":"Schwester","relationship_type_sibling_female_with_name":":names Schwester","relationship_type_sibling_with_name":":names Bruder","relationship_type_spouse":"Ehegatte","relationship_type_spouse_female":"Ehegattin","relationship_type_spouse_female_with_name":":names Ehegattin","relationship_type_spouse_with_name":":names Ehegatten","relationship_type_stepchild":"Stiefsohn","relationship_type_stepchild_female":"Stieftochter","relationship_type_stepchild_female_with_name":":names Stieftochter","relationship_type_stepchild_with_name":":names Stiefsohn","relationship_type_stepparent":"Stiefvater","relationship_type_stepparent_female":"Stiefmutter","relationship_type_stepparent_female_with_name":":name's Stiefmutter","relationship_type_stepparent_with_name":":names Stiefvater","relationship_type_subordinate":":name's Untergebener","relationship_type_subordinate_female":":name's Untergebene","relationship_type_subordinate_female_with_name":":name's Mitarbeiterin","relationship_type_subordinate_with_name":":name's Mitarbeiter","relationship_type_uncle":"Onkel","relationship_type_uncle_female":"Tante","relationship_type_uncle_female_with_name":":name's Tante","relationship_type_uncle_with_name":":name's Onkel","remove":"Entfernen","retry":"Wiederholen","revoke":"Aufheben","save":"Speichern","save_close":"Speichern und schlie\u00dfen","today":"heute","type":"Typ","unknown":"Ich wei\u00df es nicht","update":"Aktualisieren","upgrade":"Zum Freischalten aktualisieren","upload":"Hochladen","verify":"\u00dcberpr\u00fcfe","weather_clear-day":"Klarer Tag","weather_clear-night":"Klare Nacht","weather_cloudy":"Bew\u00f6lkt","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Aktuelles Wetter","weather_fog":"Nebel","weather_partly-cloudy-day":"Teilweise bew\u00f6lkter Tag","weather_partly-cloudy-night":"Teilweise bew\u00f6lkte Nacht","weather_rain":"Regen","weather_sleet":"Schneeregen","weather_snow":"Schnee","weather_wind":"Wind","with":"mit","yes":"Ja","yesterday":"gestern","zoom":"vergr\u00f6\u00dfern"},"auth":{"2fa_one_time_password":"Zwei-Faktor-Authentifizierungscode","2fa_otp_help":"\u00d6ffne deine Zwei-Faktor-Authentifizierungs-App und scanne den folgenden QR-Code","2fa_recuperation_code":"Bitte gib deinen Zwei-Faktor-Wiederherstellungscode ein","2fa_title":"Zwei-Faktor-Authentifizierung","2fa_wrong_validation":"Die Zwei-Faktor-Authentifizierung ist fehlgeschlagen.","back_homepage":"Zur\u00fcck zur Seite","button_remember":"Eingeloggt bleiben","change_language":"Sprache \u00e4ndern zu :lang","change_language_title":"Sprache \u00e4ndern:","confirmation_again":"Wenn Sie Ihre E-Mail-Adresse \u00e4ndern m\u00f6chten, klicken Sie bitte hier<\/a>.","confirmation_check":"Bevor sie weitermachen, \u00fcberpr\u00fcfen sie bitte ihre E-mails nach einem Best\u00e4tigungslink.","confirmation_fresh":"Ein Best\u00e4tigungslink wurde an Ihre E-Mail-Adresse geschickt.","confirmation_request_another":"Falls Sie keine E-Mail erhalten haben, klicken Sie hier um eine neue E-Mail zu erhalten<\/a>.","confirmation_title":"E-Mail-Adresse best\u00e4tigen","create_account":"Erstellen Sie ihr erstes Konto, indem sie sich registrieren<\/a>","email":"E-Mail","email_change_current_email":"Aktuelle E-Mail-Adresse:","email_change_new":"Neue E-Mail-Adresse","email_change_title":"E-Mail-Adresse \u00e4ndern","email_changed":"Ihre E-Mail-Adresse wurde ge\u00e4ndert. \u00dcberpr\u00fcfen Sie Ihre E-Mails um sie zu best\u00e4tigen.","failed":"Die Anmeldedaten stimmen nicht.","login":"Einloggen","login_again":"Bitte loggen Sie sich wieder in Ihren Account ein","login_to_account":"In Konto einloggen","login_with_recovery":"Mit einem Wiederherstellungsschl\u00fcssel anmelden","mfa_auth_otp":"Authentifizieren Sie sich mit Ihrem Zwei-Faktor-Ger\u00e4t","mfa_auth_webauthn":"Authentifizieren mit einem Sicherheitsschl\u00fcssel (WebAuthn)","not_authorized":"Du hast keine Berechtigung diese Aktion auszuf\u00fchren","password":"Passwort","password_forget":"Passwort vergessen?","password_reset":"Passwort zur\u00fccksetzen","password_reset_action":"Passwort zur\u00fccksetzen","password_reset_email":"E-Mail-Adresse","password_reset_email_content":"Hier klicken, um das Passwort zur\u00fcckzusetzen:","password_reset_password":"Passwort","password_reset_password_confirm":"Passwort best\u00e4tigen","password_reset_send_link":"E-Mail zum Zur\u00fccksetzen des Passworts senden","password_reset_title":"Passwort zur\u00fccksetzen","recovery":"Wiederherstellungsschl\u00fcssel","register_action":"Anmelden","register_create_account":"Sie ben\u00f6tigen ein Konto, um Monica zu verwenden","register_email":"G\u00fcltige E-Mail Adresse eingeben","register_email_example":"du@zuhause","register_firstname":"Vorname","register_firstname_example":"z.B. Max","register_invitation_email":"Aus Sicherheitsgr\u00fcnden geben Sie bitte die E-Mail-Adresse der Person an, die Sie eingeladen hat, diesem Konto beizutreten. Diese Informationen finden Sie in der Einladungs-E-Mail.","register_lastname":"Nachname","register_lastname_example":"z.B. Mustermann","register_login":"Einloggen<\/a> wenn Sie bereits ein Konto haben.","register_password":"Passwort","register_password_confirmation":"Passwortbest\u00e4tigung","register_password_example":"Sicheres Kennwort eingeben","register_policy":"Deine Anmeldung bedeutet, dass du unsere Datenschutzrichtlinien<\/a> and AGBs<\/a> gelesen und akzeptiert hast.","register_title_create":"Monica Konto erstellen","register_title_welcome":"Herzlich Willkommen in Ihrer neu installierten Instanz von Monica","signup":"Registrieren","signup_disabled":"Neue Registrierungen sind zur Zeit nicht m\u00f6glich","signup_error":"Es ist ein Fehler bei der Registrierung des Benutzers aufgetreten","signup_no_account":"Haben Sie noch kein Konto?","throttle":"Zu viele Anmeldeversuche. Bitte in :seconds Sekunden erneut versuchen.","use_recovery":"Oder sie verwenden einen Wiederherstellungsschl\u00fcssel<\/a>"},"changelog":{"note":"Anmerkung: Diese Seite gibt es leider nur auf englisch.","title":"Produkt\u00e4nderungen"},"dashboard":{"dashboard_blank_cta":"F\u00fcge deinen ersten Kontakt hinzu","dashboard_blank_description":"Monica ist der Ort um all deine Interaktionen zu organisieren die dir wichtig sind.","dashboard_blank_illustration":"Illustration von Freepik<\/a>","dashboard_blank_title":"Herzlich Willkommen auf deinem Account!","debts_you_owe":"Du schuldest","notes_title":"Du hast noch keine Notizen.","product_changes":"Produkt\u00e4nderungen","product_view_details":"Details anzeigen","reminders_next_months":"Ereignisse der n\u00e4chsten 3 Monate","reminders_none":"Keine Erinnerungen f\u00fcr diesen Monat.","statistics_activities":"Aktivit\u00e4ten","statistics_contacts":"Kontakte","statistics_gifts":"Geschenke","tab_calls_blank":"Du hast noch keine Telefonate protokolliert.","tab_debts":"Schulden","tab_debts_blank":"Du hast noch keine Schulden protokolliert.","tab_favorite_notes":"Markierte Notizen","tab_recent_calls":"K\u00fcrzliche Telefonate","tab_tasks":"Aufgaben","tab_tasks_blank":"Sie haben noch keine Aufgaben.","task_add_cta":"Aufgabe hinzuf\u00fcgen","tasks_add_note":"Dr\u00fccken Sie Eingabe<\/kbd> um die Aufgabe hinzuzuf\u00fcgen.","tasks_add_task_placeholder":"Worum geht es bei dieser Aufgabe?","tasks_tab_your_contacts":"Aufgaben im Zusammenhang mit Ihren Kontakten","tasks_tab_your_tasks":"Ihre Aufgaben"},"format":{"full_date_year":"d. F Y","full_hour":"H:i","full_month":"F","full_month_year":"F Y","short_date":"d. M","short_date_year":"d. M Y","short_date_year_time":"d. M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Willst du diesen Eintrag wirklich l\u00f6schen?","entry_delete_success":"Der Tagebucheintrag wurde erfolgreich gel\u00f6scht.","journal_add":"Tagebucheintrag hinzuf\u00fcgen","journal_add_comment":"M\u00f6chtest du einen Kommentar hinzuf\u00fcgen (optional)?","journal_add_cta":"Speichern","journal_add_date":"Datum","journal_add_post":"Eintrag","journal_add_title":"Titel (optional)","journal_blank_cta":"Schreibe deinen ersten Eintrag","journal_blank_description":"Im Tagebuch kannst du deine Erlebnisse festhalten und dich sp\u00e4ter an sie erinnern.","journal_come_back":"Danke. Morgen kannst du wieder deinen Tag bewerten.","journal_created_at":"Erstellt am {date}","journal_created_automatically":"Autmatisch hinzugef\u00fcgt","journal_description":"Hinweis: Das Journal zeigt sowohl manuelle Eintr\u00e4ge, als auch Aktivit\u00e4ten mit deinen Kontakten an. Manuelle Eintr\u00e4ge kannst du hier l\u00f6schen, Aktivit\u00e4ten kannst du auf der jeweiligen Profilseite der beteiligten Person editieren oder l\u00f6schen.","journal_edit":"Tagebucheintrag bearbeiten","journal_empty":"Leeres Tagebuch","journal_entry_rate":"Du hast deinen Tag bewertet","journal_entry_type_activity":"Aktivit\u00e4t","journal_entry_type_journal":"Tagebucheintrag","journal_rate":"Wie war dein Tag? Einmal am Tag kannst du ihn bewerten.","journal_show_comment":"Kommentar anzeigen"},"logs":{"contact_log_contact_created":"Kontakt erstellt.","contact_log_contact_description_cleared":"Beschreibung gel\u00f6scht.","contact_log_contact_description_updated":"Beschreibung aktualisiert.","contact_log_contact_work_updated":"Arbeitsinformationen aktualisiert.","settings_log_company_created":"Firma :name erstellt.","settings_log_contact_created_with_name":":name als Kontakt hinzugef\u00fcgt.","settings_log_contact_description_cleared_with_name":"Beschreibung von :name gel\u00f6scht.","settings_log_contact_description_updated_with_name":":name wurde aktualisiert.","settings_log_contact_work_updated_with_name":"Arbeitsinformationen von :name aktualisiert."},"mail":{"comment":"Kommentar: :comment","confirmation_email_bottom":"Wenn Sie kein Konto erstellt haben, ist keine weitere Aktion erforderlich.","confirmation_email_button":"E-Mail-Adresse best\u00e4tigen","confirmation_email_intro":"Um Ihre E-Mail-Adresse zu validieren, klicken Sie bitte auf den untenstehenden Button","confirmation_email_title":"Monica \u2013 E-Mail-Verifikation","footer_contact_info":"Erg\u00e4nze, betrachte, vervollst\u00e4ndige und \u00e4ndere Informationen zu diesem Kontakt:","footer_contact_info2":"Siehe :name\u2019s profile","footer_contact_info2_link":"Siehe :name Profil","for":"F\u00fcr: :name","greetings":"Hallo :username","invitation_button":"Einladung annehmen","invitation_expiration":"Dieser Link l\u00e4uft in :count Tagen ab.","invitation_intro":"Sie wurden von :name (:email) eingeladen, um Monica zu verwenden, ein Personal Relationship Management Tool.","invitation_link":"Um die Einladung anzunehmen, klicken Sie auf den folgenden Link:","invitation_title":"Monica \u2013 Du wurdest von :name eingeladen","notification_description":"In :count Tagen (am :date), findet folgendes Ereignis statt:","notification_subject_line":"Du hast ein bevorstehendes Ereignis","notifications_footer":"Wenn Sie Probleme beim Klicken auf die Schaltfl\u00e4che \":actionText\" haben, kopieren Sie einfach die folgende URL in die Adresszeile Ihres Webbrowsers: [:actionURL](:actionURL)","notifications_hello":"Hallo!","notifications_regards":"Gr\u00fc\u00dfe","notifications_rights":"Alle Rechte vorbehalten","notifications_whoops":"Hoppla!","password_reset_bottom":"Wenn Sie keine Passwortzur\u00fccksetzung angefordert haben, ist keine weitere Aktion erforderlich.","password_reset_button":"Passwort zur\u00fccksetzen","password_reset_expiration":"Dieser Link zum Zur\u00fccksetzen des Passworts l\u00e4uft in :count Minuten ab.","password_reset_intro":"Sie erhalten diese E-Mail, weil wir eine Anfrage zum Zur\u00fccksetzen des Passworts f\u00fcr Ihr Konto erhalten haben.","password_reset_title":"Monica \u2013 Passwort-Benachrichtigung zur\u00fccksetzen","stay_in_touch_subject_description":"Sie wollten jeden :frequency Tag erinnert werden, um in Kontakt zu bleiben mit :name .| \nSie wollten alle :frequency Tage erinnert werden um in Kontakt zu bleiben mit :name .","stay_in_touch_subject_line":"Mit :name in Kontakt bleiben","subject_line":"Erinnerung f\u00fcr :contact","want_reminded_of":"Sie wollten erinnert werden :reason"},"pagination":{"next":"Weiter \u276f","previous":"\u276e Zur\u00fcck"},"passwords":{"changed":"Das Kennwort wurde erfolgreich ge\u00e4ndert.","invalid":"Das eingegebene Passwort stimmt nicht.","reset":"Dein Passwort wurde zur\u00fcckgesetzt!","sent":"Wenn die E-Mail-Adresse, die du eingegeben hast mit der in unserem System \u00fcbereinstimmt, hast du eine E-Mail mit Reset-Link bekommen.","throttled":"Bitte warte, bevor du es erneut versuchst.","token":"Der Passwort-Reset-Token ist ung\u00fcltig.","user":"Wenn die E-Mail-Adresse, die du eingegeben hast mit der in unserem System \u00fcbereinstimmt, hast du eine E-Mail mit Reset-Link bekommen."},"people":{"activities_activity":"Kategorie","activities_add_activity":"Aktivit\u00e4t hinzuf\u00fcgen","activities_add_category":"Kategorie angeben","activities_add_date_occured":"Die Aktivit\u00e4t war am...","activities_add_emotions":"Emotionen hinzuf\u00fcgen","activities_add_emotions_title":"M\u00f6chtest du protokollieren, wie du dich w\u00e4hrend dieser Aktivit\u00e4t gef\u00fchlt hast? (optional)","activities_add_error":"Fehler beim Hinzuf\u00fcgen der Aktivit\u00e4t","activities_add_more_details":"Weitere Details hinzuf\u00fcgen","activities_add_participants":"Wer hat au\u00dfer {name} an dieser Aktivit\u00e4t teilgenommen? (optional)","activities_add_participants_cta":"Teilnehmer hinzuf\u00fcgen","activities_add_pick_activity":"(Optional) M\u00f6chten Sie diese Aktivit\u00e4t kategorisieren? Das m\u00fcssen Sie nicht, aber es wird Ihnen sp\u00e4ter Statistiken liefern.","activities_add_success":"Aktivit\u00e4t erfolgreich hinzugef\u00fcgt","activities_add_title":"Was hast du mit {name} gemacht?","activities_blank_add_activity":"Aktivit\u00e4t hinzuf\u00fcgen","activities_blank_title":"Behalte im Auge, was du mit {name} unternommen hast und wor\u00fcber ihr geredet habt","activities_delete_success":"Aktivit\u00e4t erfolgreich gel\u00f6scht","activities_item_information":":Activity. Fand am :date statt","activities_list_category":"Kategorie:","activities_list_date":"Geschehen am","activities_list_emotions":"Emotionen gef\u00fchlt:","activities_list_participants":"Teilnehmer:","activities_profile_number_occurences":":value Aktivit\u00e4t|:value Aktivit\u00e4ten","activities_profile_subtitle":"Sie haben gesamt :total_activities Aktivit\u00e4ten mit :name und :activities_last_twelve_months Aktivit\u00e4ten in den letzten 12 Monaten aufgezeichnet.|Sie haben gesamt :total_activities Aktivit\u00e4ten mit :name und :activities_last_twelve_months Aktivit\u00e4ten in den letzten 12 Monaten aufgezeichnet.","activities_profile_title":"Aktivit\u00e4tsbericht zwischen :name und dir","activities_profile_year_summary":"Das haben Sie zwei im :year gemeinsam gemacht","activities_profile_year_summary_activity_types":"Hier ist eine Aufzeichnung von Aktivit\u00e4ten, die Sie gemeinsam im letzten Jahr erlebt haben","activities_summary":"Beschreibe, was ihr gemacht habt","activities_update_success":"Aktivit\u00e4t erfolgreich aktualisiert","activities_view_activities_report":"Aktivit\u00e4tsbericht anzeigen","activities_who_was_involved":"Wer war beteiligt?","activity_title":"Aktivit\u00e4ten","activity_type_ate_at_his_place":"bei Ihnen gegessen","activity_type_ate_at_home":"zu Hause gegessen","activity_type_ate_restaurant":"im Restaurant gegessen","activity_type_category_cultural_activities":"Kulturelle Aktivit\u00e4ten","activity_type_category_food":"Essen","activity_type_category_simple_activities":"Einfacher Zeitvertreib","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"haben zusammen Sport gemacht","activity_type_just_hung_out":"einfach zusammen Zeit verbracht","activity_type_picnicked":"gepicknickt","activity_type_talked_at_home":"zu Hause geredet","activity_type_watched_movie_at_home":"zu Hause einen Film gesehen","activity_type_went_bar":"in eine Bar gegangen","activity_type_went_concert":"zu einem Konzert gegangen","activity_type_went_museum":"ins Museum gegangen","activity_type_went_play":"ein Theaterst\u00fcck angesehen","activity_type_went_theater":"ins Theater gegangen","age_approximate_in_years":"ungef\u00e4hr :age Jahre alt","age_exact_birthdate":"geboren am :date","age_exact_in_years":":age Jahre alt","auditlogs_author":"Nach :name am :date","auditlogs_breadcrumb":"Verlauf","auditlogs_link":"Verlauf","auditlogs_title":"Alles, was :name passiert ist","avatar_adorable_avatar":"Den niedlichen Avatar","avatar_change_title":"Avatar \u00e4ndern","avatar_crop_new_avatar_photo":"Neuen Avatar zuschneiden","avatar_current":"Aktuellen Avatar beibehalten","avatar_default_avatar":"Den Standard-Avatar","avatar_gravatar":"Den Gravatar, welcher der E-Mail-Adresse dieser Person zugeordnet ist. Gravatar<\/a> ist ein globales System, mit dem Benutzer E-Mail-Adressen mit Fotos verkn\u00fcpfen k\u00f6nnen.","avatar_photo":"Ein Foto hochladen","avatar_question":"Welchen Avatar m\u00f6chtest du verwenden?","birthdate_not_set":"Geburtstag noch nicht gesetzt","call_blank_desc":"Du hast {name} angerufen","call_blank_title":"Behalte deine Telefonate mit {name} im Auge","call_button":"Telefonat vermerken","call_delete_confirmation":"M\u00f6chtest du das Telefonat wirklich l\u00f6schen?","call_delete_success":"Das Telefonat wurde erfolgreich gel\u00f6scht","call_emotions":"Emotionen:","call_empty_comment":"Keine Details","call_he_called":"{name} rief an","call_title":"Telefonate","call_you_called":"Du hast angerufen","calls_add_success":"Telefonat gespeichert.","contact_address_form_city":"Stadt (optional)","contact_address_form_country":"Land (optional)","contact_address_form_latitude":"Geographische Breite (nur Nummern) (optional)","contact_address_form_longitude":"Geographische L\u00e4nge (nur Nummern) (optional)","contact_address_form_name":"Titel (optional)","contact_address_form_postal_code":"Postleitzahl (optional)","contact_address_form_province":"Bundesland (optional)","contact_address_form_street":"Stra\u00dfe (optional)","contact_address_title":"Adressen","contact_archive":"Kontakt archivieren","contact_archive_help":"Archivierte Kontakte werden nicht in der Kontaktliste angezeigt, erscheinen aber weiterhin in den Suchergebnissen.","contact_field_label_cell":"Mobil","contact_field_label_fax":"Fax","contact_field_label_home":"Zuhause","contact_field_label_main":"Hauptinformationen","contact_field_label_other":"Sonstiges","contact_field_label_pager":"Pager","contact_field_label_personal":"Pers\u00f6nlich","contact_field_label_work":"Arbeit","contact_info_address":"Wohnt in","contact_info_form_contact_type":"Kontakt Art","contact_info_form_content":"Inhalt","contact_info_form_personalize":"Anpassen","contact_info_title":"Kontaktinformationen","contact_unarchive":"Nicht gespeicherter Kontakt","conversation_add_another":"Eine weitere Nachricht hinzuf\u00fcgen","conversation_add_content":"Schreibe hier, was gesagt wurde","conversation_add_error":"Sie m\u00fcssen mindestens eine Nachricht hinzuf\u00fcgen.","conversation_add_how":"\u00dcber welches Medium habt ihr kommuniziert?","conversation_add_success":"Die Unterhaltung wurde erfolgreich hinzugef\u00fcgt.","conversation_add_title":"Eine neue Unterhaltung ins Logbuch protokollieren","conversation_add_what_was_said":"Was war der Gespr\u00e4chsinhalt?","conversation_add_when":"Wann hattet ihr diese Unterhaltung?","conversation_add_who_wrote":"Wer machte die Aussage?","conversation_add_you":"Ich selber","conversation_blank":"F\u00fchre ein Logbuch \u00fcber die Konversationen, die du mit :name auf Social Media, via SMS etc. hast...","conversation_delete_link":"Unterhaltung l\u00f6schen","conversation_delete_success":"Die Unterhaltung wurde gel\u00f6scht.","conversation_edit_delete":"Bist du sicher, dass du diese Unterhaltung l\u00f6schen willst? Dies kann nicht r\u00fcckg\u00e4ngig gemacht werden.","conversation_edit_success":"Die Unterhaltung wurde erfolgreich aktualisiert.","conversation_edit_title":"Unterhaltung bearbeiten","conversation_list_cta":"Unterhaltung protokollieren","conversation_list_table_content":"Teilinhalt (letzte Nachricht)","conversation_list_table_messages":"Nachrichten","conversation_list_title":"Unterhaltungen","debt_add_add_cta":"Schulden hinzuf\u00fcgen","debt_add_amount":"eine Summe von","debt_add_cta":"Schulden hinzuf\u00fcgen","debt_add_reason":"aus folgendem Grund (optional)","debt_add_success":"Die Schulden wurden erfolgreich hinzugef\u00fcgt","debt_add_they_owe":":name schuldet dir","debt_add_title":"Schuldenverwaltung","debt_add_you_owe":"Du schuldest :name","debt_delete_confirmation":"M\u00f6chtest du die Schulden wirklich l\u00f6schen?","debt_delete_success":"Die Schulden wurden erfolgreich gel\u00f6scht","debt_edit_success":"Die Schulden wurden erfolgreich aktualisiert","debt_edit_update_cta":"Schulden bearbeiten","debt_they_owe":":name schuldet dir :amount","debt_title":"Schulden","debt_you_owe":"Du schuldest :amount","debts_blank_title":"Verwalte die Schulden zwischen dir und :name","deceased_add_reminder":"Erstelle eine Erinnerung f\u00fcr den Todestag","deceased_age":"Todesalter","deceased_date_label":"Todestag","deceased_know_date":"Ich wei\u00df das Datum an dem diese Person verstarb","deceased_label":"Verstorben","deceased_label_with_date":"Verstorben am :date","deceased_mark_person_deceased":"Diese Person ist verstorben","deceased_reminder_title":"Todestag von :name","document_list_blank_desc":"Hier k\u00f6nnen Sie Dokumente im Zusammenhang mit dieser Person speichern.","document_list_cta":"Dokument hochladen","document_list_title":"Dokumente","document_upload_zone_cta":"Datei hochladen","document_upload_zone_error":"Es ist ein Fehler beim hochladen des Dokumentes aufgetreten, bitte versuchen sie es erneut.","document_upload_zone_progress":"Das Dokument wird hochgeladen...","edit_contact_information":"Kontaktinformationen bearbeiten","emotion_this_made_me_feel":"Dadurch f\u00fchlen sie sich\u2026","food_preferences_add_success":"Essensvorlieben gespeichert","food_preferences_cta":"Essensvorlieben hinzuf\u00fcgen","food_preferences_edit_cta":"Speichere Essensvorlieben","food_preferences_edit_description":"Vielleicht hat :firstname oder jemand in der :family Familie eine Allergie oder mag einen bestimmten Wein nicht. Vermerke so etwas hier, damit du dich bei der n\u00e4chsten Einladung zum Abendessen daran erinnerst","food_preferences_edit_description_no_last_name":"Vielleicht hat :firstname eine Allergie oder mag einen bestimmten Wein nicht. Vermerke so etwas hier, damit du dich bei der n\u00e4chsten Einladung zum Abendessen daran erinnerst","food_preferences_edit_title":"Gib Essensvorlieben an","food_preferences_title":"Essensvorlieben","gifts_add_comment":"Kommentar (optional)","gifts_add_date":"Datum (optional)","gifts_add_gift":"Geschenk hinzuf\u00fcgen","gifts_add_gift_already_offered":"Bereits verschenkt","gifts_add_gift_idea":"Geschenkidee","gifts_add_gift_name":"Geschenkname","gifts_add_gift_received":"Geschenk erhalten","gifts_add_gift_title":"Was ist es f\u00fcr ein Geschenk?","gifts_add_link":"Link zur Website (optional)","gifts_add_photo":"Foto (optional)","gifts_add_photo_title":"Foto f\u00fcr dieses Geschenk hinzuf\u00fcgen","gifts_add_recipient":"Empf\u00e4nger (optional)","gifts_add_recipient_field":"Empf\u00e4nger","gifts_add_someone":"Dieses Geschenk ist insbesondere f\u00fcr jemanden in {name}'s Familie","gifts_add_success":"Geschenk erfolgreich hinzugef\u00fcgt","gifts_add_title":"Geschenkverwaltung f\u00fcr :name","gifts_add_value":"Wert (optional)","gifts_delete_confirmation":"M\u00f6chtest du das Geschenk wirklich l\u00f6schen?","gifts_delete_cta":"L\u00f6schen","gifts_delete_success":"Geschenk erfolgreich gel\u00f6scht","gifts_delete_title":"Ein Geschenk l\u00f6schen","gifts_for":"F\u00fcr: {name}","gifts_ideas":"Geschenkideen","gifts_link":"Link","gifts_mark_offered":"Als angeboten markieren","gifts_offered":"Verschenkte Geschenke","gifts_offered_as_an_idea":"Als Idee markieren","gifts_received":"Erhaltene Geschenke","gifts_title":"Geschenke","gifts_update_success":"Das Geschenk wurde erfolgreich aktualisiert","gifts_view_comment":"Kommentar anzeigen","information_edit_birthdate_label":"Geburtstag","information_edit_description":"Beschreibung (optional)","information_edit_description_help":"Wird in der Kontaktliste verwendet, um gegebenenfalls Kontext hinzuzuf\u00fcgen.","information_edit_exact":"Ich kenne den Geburtstag der Person...","information_edit_firstname":"Vorname","information_edit_lastname":"Nachname (Optional)","information_edit_max_size":"Maximal :size Kb.","information_edit_max_size2":"Maximal :size KB","information_edit_not_year":"Ich wei\u00df den Tag und Monat des Geburtsdatums dieser Person, aber nicht das Jahr\u2026","information_edit_probably":"Diese Person ist wahrscheinlich","information_edit_success":"Das Profil wurde erfolgreich aktualisiert","information_edit_title":"\u00c4ndere :name's pers\u00f6nliche Daten","information_edit_unknown":"Ich kenne das Alter dieser Person nicht","information_no_work_defined":"keine Arbeitsplatz-Informationen angegeben","information_work_at":"bei :company","introductions_add_reminder":"Erstelle eine Erinnerung f\u00fcr den Jahrestag unseres ersten Zusammentreffens","introductions_additional_info":"Beschreibe, wo und wann ihr euch kennengelernt habt","introductions_blank_cta":"Beschreibe, wie du :name kennengelernt hast","introductions_edit_met_through":"Hat euch jemand vorgestellt?","introductions_first_met_date":"Datum des ersten Treffens","introductions_first_met_date_known":"An diesem Datum haben wir uns das erste mal getroffen","introductions_met_date":"Am :date","introductions_met_through":"Kennengelernt durch :name<\/a>","introductions_no_first_met_date":"Ich wei\u00df nicht mehr wann wir uns das erste mal getroffen haben","introductions_no_met_through":"Keiner","introductions_reminder_title":"Jahrestag eures ersten Zusammentreffens","introductions_sidebar_title":"Wie ihr euch kennengelernt habt","introductions_title_edit":"Wie hast du :name kennengelernt?","introductions_update_success":"Euer erstes Kennenlernen wurde erfolgreich ge\u00e4ndert","last_activity_date":"Letzte gemeinsame Aktivit\u00e4t: :date","last_activity_date_empty":"Letzte gemeinsame Aktivit\u00e4t: unbekannt","last_called":"Letztes Telefonat: :date","last_called_empty":"Letztes Telefonat: unbekannt","life_event_blank":"Notiere dir zuk\u00fcnftige Lebensereignisse von {name}.","life_event_category_family_relationships":"Familie & Beziehungen","life_event_category_health_wellness":"Gesundheit & Wellness","life_event_category_home_living":"Zuhause & Wohnen","life_event_category_travel_experiences":"Reisen & Erfahrungen","life_event_category_work_education":"Arbeit & Ausbildung","life_event_create_add_yearly_reminder":"Eine j\u00e4hrliche Erinnerung f\u00fcr dieses Ereignis hinzuf\u00fcgen","life_event_create_category":"Alle Kategorien","life_event_create_date":"Du muss keinen Monat oder einen Tag angeben - nur das Jahr ist obligatorisch.","life_event_create_default_description":"F\u00fcgen Sie Informationen hinzu","life_event_create_default_story":"Geschichte (optional)","life_event_create_default_title":"Titel (optional)","life_event_create_life_event":"Lebensereignis hinzuf\u00fcgen","life_event_create_success":"Das Lebensereignis wurde hinzugef\u00fcgt","life_event_date_it_happened":"Tag an dem es passierte","life_event_delete_description":"M\u00f6chten Sie das Lebensereignis l\u00f6schen? Dies kann nicht r\u00fcckg\u00e4ngig gemacht werden.","life_event_delete_success":"Das Ereignis wurde gel\u00f6scht","life_event_delete_title":"Lebensereignis l\u00f6schen","life_event_list_cta":"Lebensereignis hinzuf\u00fcgen","life_event_list_tab_life_events":"Lebensereignisse","life_event_list_tab_other":"Notizen, Erinnerungen, ...","life_event_list_title":"Lebensereignisse","life_event_sentence_achievement_or_award":"Wurde ausgezeichnet","life_event_sentence_anniversary":"Jahrestag","life_event_sentence_bought_a_home":"Ein Haus gekauft","life_event_sentence_broken_bone":"Knochen gebrochen","life_event_sentence_changed_beliefs":"\u00c4nderte \u00dcberzeugung","life_event_sentence_dentist":"Ging zum Zahnarzt","life_event_sentence_end_of_relationship":"Ende einer Beziehung","life_event_sentence_engagement":"Hat sich verlobt","life_event_sentence_expecting_a_baby":"Erwartet ein baby","life_event_sentence_first_kiss":"Der erste Kuss","life_event_sentence_first_word":"Zum ersten mal Gesprochen","life_event_sentence_holidays":"Urlaub machen","life_event_sentence_home_improvement":"Hat das Zuhause renoviert","life_event_sentence_loss_of_a_loved_one":"Einen geliebten Menschen verloren","life_event_sentence_marriage":"Verheiratet seit","life_event_sentence_military_service":"Milit\u00e4rdienst angetreten","life_event_sentence_moved":"Umgezogen","life_event_sentence_new_child":"Hat ein Kind","life_event_sentence_new_eating_habits":"Neue Essgewohnheit begonnen","life_event_sentence_new_family_member":"Familienmitglied hinzugef\u00fcgt","life_event_sentence_new_hobby":"Ein Hobby begonnen","life_event_sentence_new_instrument":"Ein neues Musik-Instrument gelernt","life_event_sentence_new_job":"Neuen Arbeitsplatz angetreten","life_event_sentence_new_language":"Eine neue Sprache gelernt","life_event_sentence_new_license":"Lizenz erhalten","life_event_sentence_new_pet":"Hat ein Haustier","life_event_sentence_new_relationship":"Beginn einer Beziehung","life_event_sentence_new_roommate":"Mitbewohner\/in bekommen","life_event_sentence_new_school":"Schulbeginn","life_event_sentence_new_sport":"Hat eine Sportart begonnen","life_event_sentence_new_vehicle":"Neues Fahrzeug erhalten","life_event_sentence_overcame_an_illness":"Krankheit \u00fcberwunden","life_event_sentence_published_book_or_paper":"Ver\u00f6ffentlicht ein Buch","life_event_sentence_quit_a_habit":"Gewohnheit beendet","life_event_sentence_removed_braces":"Zahnspange entfernt","life_event_sentence_retirement":"Im Ruhestand","life_event_sentence_study_abroad":"Studium im Ausland","life_event_sentence_surgery":"Hatte eine Operation","life_event_sentence_tattoo_or_piercing":"Hat einen Tattoo oder Piercing bekommen","life_event_sentence_travel":"Reise","life_event_sentence_volunteer_work":"Anfang vom Praktikum","life_event_sentence_wear_glass_or_contact":"Hat angefangen, eine Brille oder Kontaktlinsen zu tragen","life_event_sentence_weight_loss":"Gewicht abgenommen","list_link_to_active_contacts":"Dies sind archivierte Kontakte. Hier gelangen Sie zur Liste aktiver Kontakte<\/a>.","list_link_to_archived_contacts":"Liste der archivierten Kontakte","me":"Das bist du","modal_call_comment":"Wor\u00fcber habt ihr geredet? (optional)","modal_call_emotion":"M\u00f6chten sie speichern wie Sie sich w\u00e4hrend das Anrufs f\u00fchlten? (optional)","modal_call_exact_date":"Das Telefonat war am","modal_call_title":"Telefonat vermerken","modal_call_who_called":"Wer hat angerufen?","notes_add_cta":"Notiz hinzuf\u00fcgen","notes_create_success":"Die Notiz wurde erfolgreich hinzugef\u00fcgt","notes_delete_confirmation":"M\u00f6chtest du diese Notiz wirklich l\u00f6schen?","notes_delete_success":"Die Notiz wurde erfolgreich gel\u00f6scht","notes_delete_title":"Notiz l\u00f6schen","notes_favorite":"Markieren\/Markierung entfernen","notes_update_success":"Die Notiz wurde erfolgreich aktualisiert","people_add_birthday_reminder":"Gratuliere :name zum Geburtstag","people_add_birthday_reminder_deceased":"Heute h\u00e4tte, :name, seinen Geburtstag gefeiert","people_add_cta":"Person hinzuf\u00fcgen","people_add_firstname":"Vorname","people_add_gender":"Geschlecht","people_add_import":"M\u00f6chtest du Kontakte importieren<\/a>?","people_add_lastname":"Nachname (Optional)","people_add_middlename":"zweiter Vorname (Optional)","people_add_missing":"Keine Person gefunden - neue Person jetzt anlegen","people_add_new":"Neue Person hinzuf\u00fcgen","people_add_nickname":"Spitzname (optional)","people_add_reminder_for_birthday":"J\u00e4hrliche Geburtstagserinnerung erstellen","people_add_success":":name wurde erfolgreich angelegt.","people_add_title":"Person hinzuf\u00fcgen","people_delete_confirmation":"M\u00f6chtest du den Kontakt wirklich l\u00f6schen? Es gibt kein Zur\u00fcck.","people_delete_message":"Kontakt l\u00f6schen","people_delete_success":"Der Kontakt wurde gel\u00f6scht","people_edit_email_error":"Es gibt bereits ein Kontakt in deinem Konto mit dieser e-Mail-Adresse. Bitte w\u00e4hle eine anderen.","people_export":"Als vCard exportieren","people_list_account_upgrade_cta":"Jetzt upgraden","people_list_account_upgrade_title":"F\u00fchre ein Upgrade aus, um alle Funktionen freizuschalten.","people_list_account_usage":"Dein Account nutzt: :current\/:limit Kontakte","people_list_blank_cta":"Neuer Kontakt","people_list_blank_title":"Du hast noch niemanden in deinem Konto angelegt","people_list_clear_filter":"Filter l\u00f6schen","people_list_contacts_per_tags":"1 Kontakt|:count Kontakte","people_list_filter_tag":"Es werden alle Kontakte mit den folgenden Tags angezeigt","people_list_filter_untag":"Es werden alle Kontakte ohne Tags angezeigt","people_list_firstnameAZ":"Nach Vorname sortieren A \u2192 Z","people_list_firstnameZA":"Nach Vorname sortieren Z \u2192 A","people_list_hide_dead":"Verstorbene Kontakte ausblenden (:count)","people_list_last_updated":"Zuletzt aufgerufen:","people_list_lastactivitydateNewtoOld":"Neueste Aktivit\u00e4ten zuerst anzeigen","people_list_lastactivitydateOldtoNew":"\u00c4lteste Aktivit\u00e4ten zuerst anzeigen","people_list_lastnameAZ":"Nach Nachname sortieren A \u2192 Z","people_list_lastnameZA":"Nach Nachname sortieren Z \u2192 A","people_list_number_kids":"1 Kind|:count Kinder","people_list_number_reminders":"1 Erinnerung|:count Erinnerungen","people_list_show_dead":"Verstorbene Kontakte anzeigen (:count)","people_list_sort":"Sortieren","people_list_stats":"1 Kontakt|:count Kontakte","people_list_untagged":"Unmarkierte Kontakte anzeigen","people_not_found":"Kontakt nicht gefunden","people_save_and_add_another_cta":"Hinzuf\u00fcgen und weitere Person anlegen","people_search":"Suche in deinen Kontakten...","people_search_all":"Alle","people_search_next":"N\u00e4chste","people_search_no_results":"Keine Ergebnisse gefunden","people_search_of":"von","people_search_page":"Seite","people_search_prev":"Vorherige","people_search_rows_per_page":"Eintr\u00e4ge pro Seite","pets_bird":"Vogel","pets_cat":"Katze","pets_create_success":"Das Haustier wurde erfolgreich hinzugef\u00fcgt","pets_delete_success":"Das Haustier wurde erfolgreich entfernt","pets_dog":"Hund","pets_fish":"Fisch","pets_hamster":"Hamster","pets_horse":"Pferd","pets_kind":"Tierart","pets_name":"Name (optional)","pets_other":"Anderes","pets_rabbit":"Hase","pets_rat":"Ratte","pets_reptile":"Reptil","pets_small_animal":"Kleintier","pets_title":"Haustiere","pets_update_success":"Das Haustier wurde erfolgreich ge\u00e4ndert","photo_current_profile_pic":"Aktuelles Profilbild","photo_delete":"Bild l\u00f6schen","photo_list_blank_desc":"Sie k\u00f6nnen Bilder zu diesem Kontakt speichern. Jetzt hochladen!","photo_list_cta":"Foto hochladen","photo_list_title":"Zugeh\u00f6rige Fotos","photo_make_profile_pic":"Zu Profilbild machen","photo_next":"N\u00e4chstes Bild \u276f","photo_previous":"\u276e Vorheriges Bild","photo_title":"Fotos","photo_upload_zone_cta":"Foto hochladen","relationship_delete_confirmation":"Sind Sie sicher, dass Sie diese Beziehung l\u00f6schen wollen? Das L\u00f6schen ist dauerhaft.","relationship_form_add":"Eine neue Beziehung hinzuf\u00fcgen","relationship_form_add_choice":"Wer ist die Beziehung zu?","relationship_form_add_description":"Dies erlaubt dir diese Person wie jeden anderen Kontakt zu verwalten.","relationship_form_add_no_existing_contact":"Sie haben zur Zeit keine Kontakte, die mit :name in Verbindung gebracht werden k\u00f6nnen.","relationship_form_add_success":"Die Beziehung wurde erfolgreich gesetzt.","relationship_form_also_create_contact":"Erstellen Sie einen Kontakt-Eintrag f\u00fcr diese Person.","relationship_form_associate_contact":"Ein bestehender Kontakt","relationship_form_associate_dropdown":"W\u00e4hlen Sie einen vorhandenen Kontakt aus der Dropdown-Liste unten aus","relationship_form_associate_dropdown_placeholder":"Suche und w\u00e4hle einen bestehenden Kontakt","relationship_form_create_contact":"Neue Person hinzuf\u00fcgen","relationship_form_deletion_success":"Die Beziehung wurde gel\u00f6scht.","relationship_form_edit":"Eine bestehende Beziehung \u00e4ndern","relationship_form_is_with":"Diese Person ist...","relationship_form_is_with_name":":name ist...","relationship_unlink_confirmation":"Sind Sie sicher, dass Sie diese Beziehung l\u00f6schen wollen? Diese Person wird nicht gel\u00f6scht - nur die Beziehung zwischen den beiden.","reminder_frequency_day":"jeden Tag | alle :number Tage","reminder_frequency_month":"jeden Monat|alle :number Monate","reminder_frequency_one_time":"am :date","reminder_frequency_week":"jede Woche|alle :number Wochen","reminder_frequency_year":"jedes jahr|alle :number Jahre","reminders_add_cta":"Erinnerung hinzuf\u00fcgen","reminders_add_description":"Erinnere mich daran...","reminders_add_error_custom_text":"Du musst einen Text f\u00fcr die Erinnerung angeben","reminders_add_next_time":"Wann m\u00f6chtest du das n\u00e4chste mal daran erinnert werden?","reminders_add_once":"Erinnere mich daran nur einmal","reminders_add_optional_comment":"Optionaler Kommentar","reminders_add_recurrent":"Erinnere mich daran jeden","reminders_add_starting_from":"angefangen vom oben angegebenen Datum","reminders_add_title":"Woran w\u00fcrdest du gerne \u00fcber :name erinnert werden?","reminders_birthday":"Geburtstag von :name","reminders_blank_add_activity":"Erinnerung hinzuf\u00fcgen","reminders_blank_title":"Gibt es etwas, an das du \u00fcber :name erinnert werden willst?","reminders_create_success":"Die Erinnerung wurde erfolgreich hinzugef\u00fcgt","reminders_cta":"Erinnerung hinzuf\u00fcgen","reminders_delete_confirmation":"M\u00f6chtest du diese Erinnerung wirklich l\u00f6schen?","reminders_delete_cta":"l\u00f6schen","reminders_delete_success":"Die Erinnerung wurde erfolgreich gel\u00f6scht","reminders_description":"Wir werden eine E-Mail f\u00fcr jede der unten stehenden Erinnerungen verschicken. Erinnerungen werden immer morgens verschickt. Erinnerungen, die automatisch f\u00fcr Geburtstage angelegt wurden, k\u00f6nnen nicht gel\u00f6scht werden. Wenn du dieses Datum \u00e4ndern willst, dann \u00e4ndere den Geburtstag des Kontakts.","reminders_edit_update_cta":"Erinnerung \u00e4ndern","reminders_free_plan_warning":"Du befindest dich im kostenlosen Abonnement. Hier werden keine E-Mails versendet. Um die Erinnerungs-E-Mails zu erhalten upgrade deinen Account.","reminders_next_expected_date":"am","reminders_one_time":"Einmal","reminders_type_month":"Monat","reminders_type_week":"Woche","reminders_type_year":"Jahr","reminders_update_success":"Die Erinnerung wurde erfolgreich ge\u00e4ndert","section_contact_information":"Kontaktinformationen","section_personal_activities":"Aktivit\u00e4ten","section_personal_gifts":"Geschenke","section_personal_notes":"Notizen","section_personal_reminders":"Erinnerungen","section_personal_tasks":"Aufgaben","set_favorite":"Favoriten werden in der Kontaktliste ganz oben angezeigt","stay_in_touch":"In Kontakt bleiben","stay_in_touch_frequency":"Jeden Tag in Kontakt bleiben|Alle {count} Tage in Kontakt bleiben","stay_in_touch_invalid":"Die Zahl muss gr\u00f6\u00dfer als 0 sein.","stay_in_touch_modal_desc":"Wir k\u00f6nnen dich per E-Mail daran erinnern, in regelm\u00e4\u00dfigen Abst\u00e4nden mit {firstname} in Kontakt zu bleiben.","stay_in_touch_modal_label":"Sende mir eine E-Mail jeden... {count} Tag|Sende mir eine E-Mail alle... {count} Tage","stay_in_touch_modal_title":"In Kontakt bleiben","stay_in_touch_premium":"Du musst dein Konto upgraden, um diese Funktion nutzen zu k\u00f6nnen","tag_add":"Stichworte hinzuf\u00fcgen","tag_add_search":"Stichwort hinzuf\u00fcgen oder suchen","tag_edit":"Tag bearbeiten","tag_no_tags":"Bisher keine Stichworte vorhanden","tasks_add_task":"Aufgabe hinzuf\u00fcgen","tasks_blank_title":"Du hast noch keine Aufgaben.","tasks_complete_success":"Der Status der Aufgabe wurder erfolgreich ge\u00e4ndert","tasks_delete_success":"Die Aufgabe wurde erfolgreich gel\u00f6scht","tasks_form_description":"Beschreibung (optional)","tasks_form_title":"Titel","tasks_title":"Aufgaben","work_add_cta":"\u00c4ndere Arbeitsplatz-Informationen","work_edit_company":"Firma (optional)","work_edit_job":"Position (optional)","work_edit_success":"Arbeitsplatz-Informationen aktualisiert","work_edit_title":"\u00c4ndere :name's Beruf-Informationen","work_information":"Arbeitsinformationen"},"reminder":{"type_birthday":"Gratuliere","type_birthday_kid":"Gratuliere dem Kind von","type_email":"E-Mail","type_hangout":"Treffen mit","type_lunch":"Essen gehen mit","type_phone_call":"Anrufen"},"settings":{"2fa_disable_description":"Deaktiviere die Zwei-Faktor-Authentifizierung f\u00fcr dein Konto. Achtung, dies reduziert die Sicherheit deines Kontos erheblich!","2fa_disable_error":"Fehler beim Ausschalten der Zwei-Faktor-Authentifizierung","2fa_disable_success":"Zwei-Faktor-Authentifizierung ist nun deaktiviert","2fa_disable_title":"Zwei-Faktor-Authentifizierung deaktivieren","2fa_enable_description":"Richte die Zwei-Faktor-Authentifizierung ein um die Sicherheit deines Kontos zu erh\u00f6hen.","2fa_enable_error":"Fehler beim Einrichten der Zwei-Faktor-Authentifizierung","2fa_enable_error_already_set":"Zwei-Faktor-Authentifizierung ist bereits aktiviert","2fa_enable_otp":"\u00d6ffne deine Zwei-Faktor-Authentifizierungs-App und scanne den folgenden QR-Code:","2fa_enable_otp_help":"Falls deine Zwei-Faktor-Authentifizierungs-App keine QR-Codes unterst\u00fctzt, gib folgenden Code manuell ein:","2fa_enable_otp_validate":"Bitte best\u00e4tige dein neu eingerichtetes Ger\u00e4t:","2fa_enable_success":"Zwei-Faktor-Authentifizierung ist nun aktiviert","2fa_enable_title":"Zwei-Faktor-Authentifizierung aktivieren","2fa_otp_title":"Zwei-Faktor-Authentifizierung Mobileapp","2fa_title":"Zwei-Faktor-Authentifizierung","api_authorized_clients":"Liste der authorisierten Clients","api_authorized_clients_desc":"Diese Liste zeigt dir alle Clients, denen du Zugriff auf deine Anwendung gew\u00e4hrt hast. Du kannst die Authorisierungen jederzeit widerrufen.","api_authorized_clients_name":"Name","api_authorized_clients_none":"Es sind noch keine autorisierten Clients vorhanden.","api_authorized_clients_scopes":"Geltungsbereiche","api_authorized_clients_title":"Zugelassene Anwendungen","api_description":"\u00dcber die API ist es m\u00f6glich, Monica \u00fcber eine externe Applikation zu nutzen, wie z.B. eine App auf deinem Handy.","api_endpoint":"Der API-Endpunkt f\u00fcr diese Monica-Instanz ist:","api_help":"Um die API zu verwenden, ist ein Token obligatorisch. Sie k\u00f6nnen entweder ein pers\u00f6nliches Zugangs-Token (Bearer authentication) erstellen oder einen OAuth-Client autorisieren, es f\u00fcr Sie zu erstellen. Siehe API-Dokumentation<\/a>.","api_oauth_clientid":"Kundennummer","api_oauth_clients":"Deine Oauth Clients","api_oauth_clients_desc":"Hier kannst du deine eigenen OAuth Clients registrieren.","api_oauth_clients_desc2":"Benutzen Sie diese Client-Id, um ein neues Token anzufordern und um Berechtigungscodes f\u00fcr den Zugriff auf Token zu konvertieren. Siehe Laravel Passport-Dokumentation<\/a> f\u00fcr weitere Informationen.","api_oauth_create":"Client erstellen","api_oauth_create_new":"Neuen Client erstellen","api_oauth_edit":"Client bearbeiten","api_oauth_name":"Name","api_oauth_name_help":"Etwas das deine Nutzer erkennen und dem sie vertrauen.","api_oauth_not_created":"Du hast noch keine OAuth-Clients erstellt.","api_oauth_redirecturl":"Weiterleitungs-URL","api_oauth_redirecturl_help":"Die Authorisierungs-Callback-URL deiner Anwendung.","api_oauth_secret":"Geheimbegriff","api_oauth_title":"OAuth-Clients","api_pao_description":"Stelle sicher, dass du dieses Token nur an Quellen gibst, denen du vertraust, denn es erlaubt den Zugriff auf all deine Daten.","api_personal_access_tokens":"Pers\u00f6nliche Zugangscodes","api_title":"API Zugriff","api_token_create":"Token erstellen","api_token_create_new":"Neues Token erstellen","api_token_delete":"L\u00f6schen","api_token_expire":"L\u00e4uft ab am {date}","api_token_help":"Hier ist dein neuer pers\u00f6nlicher Zugangs-Token. Dies ist das einzige Mal, dass er angezeigt wird, also verliere ihn nicht! Du kannst nun diesen Token verwenden, um API-Anfragen zu machen.","api_token_name":"Tokenname","api_token_not_created":"Du hast keine pers\u00f6nlichen Zugangs-Token erstellt.","api_token_scopes":"Geltungsbereiche","api_token_title":"Pers\u00f6nliche Zugangs-Tokens","archive_cta":"Alle Kontakte archivieren","archive_desc":"Dies wird alle Kontakte in deinem Konto archivieren.","archive_title":"Alle Kontakte in deinem Konto archivieren","currency":"W\u00e4hrung","dav_caldav_birthdays_export":"Alle Geburtstage in einer Datei exportieren","dav_caldav_tasks_export":"Alle Aufgaben in einer Datei exportieren","dav_carddav_export":"Alle Kontakte in einer Datei exportieren","dav_clipboard_copied":"Wert in die Zwischenablage kopiert","dav_connect_help":"Sie k\u00f6nnen Ihre Kontakte und\/oder Kalender mit dieser Basis-Url auf Ihrem Telefon oder Computer verbinden.","dav_connect_help2":"Verwenden Sie Ihren Login (E-Mail) und erstellen Sie ein API-Token als Passwort, um sich zu authentifizieren.","dav_copy_help":"In die Zwischenablage kopieren","dav_description":"Hier finden Sie alle Einstellungen f\u00fcr den Einsatz von WebDAV Ressourcen f\u00fcr CardDAV und CalDAV Export.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Basis-Url f\u00fcr alle CardDAV- und CalDAV-Ressourcen:","dav_url_caldav_birthdays":"CalDAV Url f\u00fcr Geburtstage Ressourcen:","dav_url_caldav_tasks":"CalDAV-Url f\u00fcr Aufgabenressourcen:","dav_url_carddav":"CardDAV-Url f\u00fcr Kontaktressourcen:","delete_cta":"Konto l\u00f6schen","delete_desc":"M\u00f6chtest du dein Konto l\u00f6schen? Dies kann nicht r\u00fcckgangig gemacht werden und alle deine Daten werden dauerhaft gel\u00f6scht. Wenn du ein Abonnement hast, wird es sofort storniert.","delete_notice":"Bist du sicher, dass du dein Konto l\u00f6schen m\u00f6chtest? Dies ist dauerhaft und kann nicht r\u00fcckg\u00e4ngig gemacht werden. Alle deine Daten werden gel\u00f6scht und k\u00f6nnen nicht wiederhergestellt werden.","delete_other_desc":"Deine Daten in der Hauptdatenbank werden umgehend gel\u00f6scht. Wie in unseren Datenschutzrichtlinien beschrieben, f\u00fchren wir t\u00e4glich verschl\u00fcsselte Sicherungen durch, welche 30 Tage lang aufbewahrt und danach vollst\u00e4ndig gel\u00f6scht werden. Wir k\u00f6nnen keine einzelnen Daten vor diesem Zeitraum aus den Backups l\u00f6schen. Alle deine Daten werden innerhalb von 30 Tagen nach L\u00f6schung deines Kontos vollst\u00e4ndig gel\u00f6scht.","delete_title":"Konto l\u00f6schen","email":"E-Mail-Adresse","email_help":"Mit dieser Adresse kannst du dich einloggen und dorthin sendet Monica auch deine Erinnerungen.","email_placeholder":"E-Mail eingeben","export_be_patient":"Klicke die Schaltfl\u00e4che um den Export zu starten. Der Exportvorgang kann mehrere Minuten dauern \u2013 bitte bleib geduldig und klicke die Schaltfl\u00e4che nicht mehrfach an.","export_sql_cta":"Daten als SQL-Datei exportieren","export_sql_explanation":"Der SQL-Export erm\u00f6glicht es dir deine Daten in eine eigene Monica Instanz zu importieren. Dies ist nur sinnvoll, wenn du Monica auf deinem eigenen Server betreibst.","export_sql_link_instructions":"Hinweis: Lies die Anleitung<\/a> um mehr \u00fcber das Importieren in die eigene Instanz zu erfahren.","export_title":"Exportiere die Daten deines Kontos","export_title_sql":"Daten als SQL-Datei exportieren","firstname":"Vorname","import_blank_cta":"Importiere vCard","import_blank_description":"Wir k\u00f6nnen vCard-Dateien importieren, die du aus Google Contacts oder deinem Kontakt-Manager erhalten kannst.","import_blank_question":"M\u00f6chtest du jetzt Kontakte importieren?","import_blank_title":"Du has noch keine Kontakte importiert.","import_cta":"Kontakte hochladen","import_in_progress":"Der Import ist im Gange. Lade die Seite in einer Minute neu.","import_need_subscription":"Importieren von Daten erfordert ein Abonnement.","import_report_date":"Importdatum","import_report_number_contacts":"Anzahl der Kontakte in der Datei","import_report_number_contacts_imported":"Anzahl der importieren Kontakte","import_report_number_contacts_skipped":"Anzahl der \u00fcbersprungenden Kontakte","import_report_status_imported":"Importiert","import_report_status_skipped":"\u00dcbersprungen","import_report_title":"Importbericht","import_report_type":"Importtyp","import_result_stat":"vCard mit 1 Kontakt hochgeladen (:total_imported importiert, :total_skipped \u00fcbersprungen)|vCard mit :total_contacts Kontakten hochgeladen (:total_imported importiert, :total_skipped \u00fcbersprungen)","import_stat":"Du hast bisher :number Dateien importiert.","import_title":"Importiere Kontakte in dein Konto","import_upload_behaviour":"Import-Verhalten:","import_upload_behaviour_add":"Neue Kontakte hinzuf\u00fcgen und bestehende \u00fcberspringen","import_upload_behaviour_help":"Ersetzen bedeutet, dass alle Daten mit den Informationen aus der vCard ersetzt werden, wobei existierende Kontaktfelder erhalten bleiben.","import_upload_behaviour_replace":"Ersetze bestehende Kontakte","import_upload_form_file":"Deine .vcf<\/code> oder .vCard<\/code> Datei:","import_upload_rule_cant_revert":"Stell sicher, dass die Daten fehlerfrei sind, da der Upload nicht r\u00fcckg\u00e4ngig gemacht werden kann.","import_upload_rule_format":"Wir unterst\u00fctzen .vcard<\/code> und .vcf<\/code> Dateien.","import_upload_rule_instructions":"Export-Anleitung f\u00fcr MacOS Kontakte<\/a> und Google Kontakte<\/a>.","import_upload_rule_limit":"Die Dateien d\u00fcrfen nicht gr\u00f6\u00dfer als 10 MB sein.","import_upload_rule_multiple":"Wenn deine Kontakte mehrere E-Mail-Adressen und Telefonnummern haben, werden jeweils nur die ersten Eintr\u00e4ge importiert.","import_upload_rule_time":"Es kann bis zu einer Minute dauern die Kontakte hochzuladen und zu verarbeiten. Wir bitten um Geduld.","import_upload_rule_vcard":"Wir unterst\u00fctzen das vCard 3.0 Format, welches der Standard f\u00fcr MacOS und Google Kontakte ist.","import_upload_rules_desc":"Es gibt Einschr\u00e4nkungen:","import_upload_title":"Kontakte aus vCard importieren","import_vcard_contact_exist":"Kontakt existiert bereits","import_vcard_contact_no_firstname":"Kein Vorname (Pflicht)","import_vcard_file_no_entries":"Datei enth\u00e4lt keine Eintr\u00e4ge","import_vcard_file_not_found":"Datei nicht gefunden","import_vcard_parse_error":"Fehler beim Parsen des vCard-Eintrags","import_vcard_unknown_entry":"Unbekannter Kontakt","import_view_report":"Bericht anzeigen","lastname":"Nachname","layout":"Ansicht","layout_big":"Gesamte Breite des Browsers","layout_small":"Maximal 1200 Pixel breit","locale":"Sprache der Anwendung","locale_ar":"Arabisch","locale_cs":"Tschechisch","locale_de":"Deutsch","locale_en":"Englisch","locale_en-GB":"Englisch (Vereinigtes K\u00f6nigreich)","locale_es":"Spanisch","locale_fr":"Franz\u00f6sisch","locale_he":"Hebr\u00e4isch","locale_help":"M\u00f6chtest du bei der \u00dcbersetzung von Monica helfen oder eine neue Sprache hinzuf\u00fcgen? Bitte folge diesem Link f\u00fcr weitere Informationen<\/a>.","locale_hr":"Kroatisch","locale_it":"Italienisch","locale_ja":"Japanisch","locale_nl":"Niederl\u00e4ndisch","locale_pt":"Portugiesisch","locale_pt-BR":"Portugiesisch (Brasilien)","locale_ru":"Russisch","locale_sv":"Schwedisch","locale_tr":"T\u00fcrkisch","locale_zh":"Vereinfachtes Chinesisch","locale_zh-TW":"Chinesisch (Traditionell)","logs_actor":"Benutzer","logs_description":"Beschreibung","logs_object":"Objekt","logs_size":"Gr\u00f6\u00dfe (KB)","logs_subject":"Betroffener Kontakt","logs_timestamp":"Zeitpunkt","logs_title":"Alles, was mit diesem Konto passiert ist","me_choose":"W\u00e4hle dich selbst","me_choose_placeholder":"W\u00e4hle dich selbst","me_help":"Dies ist der Kontakt, der Sie <\/em> in Monica vertritt","me_no_contact":"Es wurde kein Kontakt ausgew\u00e4hlt.","me_remove_contact":"Entfernen Sie die Zuordnung","me_select":"W\u00e4hlen Sie einen Kontakt aus","me_select_click":"Klicken Sie hier, um einen Kontakt auszuw\u00e4hlen.","me_title":"Dein eigener Kontakt","name":"Dein Name: :name","name_order":"Namensortierrichtung","name_order_firstname_lastname":" \u2013 Max Mustermann","name_order_firstname_lastname_nickname":" () \u2013 Max Mustermann (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 Max (Rambo) Mustermann","name_order_lastname_firstname":" \u2013 Mustermann Max","name_order_lastname_firstname_nickname":" () \u2013 Mustermann Max (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Mustermann (Rambo) Max","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Mustermann Max)","password_btn":"Passwort \u00e4ndern","password_change":"Passwort \u00e4ndern","password_current":"Aktuelles Passwort","password_current_placeholder":"Aktuelles Passwort","password_new1":"Neues Passwort","password_new1_placeholder":"Gib dein neues Passwort ein","password_new2":"Best\u00e4tige dein neues Passwort","password_new2_placeholder":"Gib dein neues Passwort erneut ein","personalisation_paid_upgrade":"Dies ist eine Premium-Funktion, die nur im kostenpflichtigen Abo aktiv ist. Upgrade deinen Account unter Einstellungen > Abonnement<\/a>.","personalisation_paid_upgrade_vue":"Dies ist eine Premium-Funktion, die nur im kostenpflichtigen Abo aktiv ist. Upgrade deinen Account unter Einstellungen > Abonnement<\/a>.","personalization_activity_type_add_button":"Neuen Aktivit\u00e4tstyp hinzuf\u00fcgen","personalization_activity_type_category_add":"Neue Aktivit\u00e4tstyp Kategorie hinzuf\u00fcgen","personalization_activity_type_category_description":"Eine Aktivit\u00e4t mit einem deiner Kontakte kann einen Typ und eine Kategorie haben. Dein Konto kommt standardm\u00e4\u00dfig mit einer Reihe vordefinierter Kategorien, aber du kannst diese hier anpassen.","personalization_activity_type_category_modal_add":"Neue Aktivit\u00e4tstyp Kategorie hinzuf\u00fcgen","personalization_activity_type_category_modal_delete":"Eine Aktivit\u00e4tstyp Kategorie l\u00f6schen","personalization_activity_type_category_modal_delete_desc":"Bist du sicher, dass du diese Kategorie l\u00f6schen m\u00f6chtest? Es werden alle zugeh\u00f6rigen Aktivit\u00e4tstypen gel\u00f6scht. T\u00e4tigkeiten, die zu dieser Kategorie geh\u00f6ren, sind nicht von der L\u00f6schung betroffen.","personalization_activity_type_category_modal_delete_error":"Wir k\u00f6nnen diese Aktivit\u00e4tstyp Kategorie nicht finden.","personalization_activity_type_category_modal_edit":"Aktivit\u00e4tstyps Kategorie bearbeiten","personalization_activity_type_category_modal_question":"Wie sollen wir die neue Kategorie nennen?","personalization_activity_type_category_table_actions":"Aktionen","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Aktivit\u00e4tstyp Kategorien","personalization_activity_type_modal_add":"Neuen Aktivit\u00e4tstyp hinzuf\u00fcgen","personalization_activity_type_modal_delete":"Aktivit\u00e4tstyp l\u00f6schen","personalization_activity_type_modal_delete_desc":"Sind Sie sicher, dass Sie diesen Aktivit\u00e4tstyp l\u00f6schen m\u00f6chten? Aktivit\u00e4ten, die dieser Kategorie angeh\u00f6ren, werden von dieser L\u00f6schung nicht betroffen sein.","personalization_activity_type_modal_delete_error":"Wir k\u00f6nnen diesen Aktivit\u00e4tstyp nicht finden.","personalization_activity_type_modal_edit":"Aktivit\u00e4tstyp bearbeiten","personalization_activity_type_modal_question":"Wie sollen wir den neuen Aktivit\u00e4tstyp nennen?","personalization_contact_field_type_add":"Neues Feld hinzuf\u00fcgen","personalization_contact_field_type_add_success":"Das Kontakfeld wurde erfolgreich hinzugef\u00fcgt.","personalization_contact_field_type_delete_success":"Das Kontaktfeld wurde erfolgreich gel\u00f6scht.","personalization_contact_field_type_description":"Du kannst verschiedene Typen von Kontaktfeldern definieren, die du dann bei deinen Kontakten verwenden kannst. Wenn es beispielsweise in der Zukunft ein neues soziales Netzwerk gibt, kannst du diese neue Art der Kommunikation mit deinen Kontakten direkt hier hinzuf\u00fcgen.","personalization_contact_field_type_edit_success":"Das Kontakfeld wurde erfolgreich editiert.","personalization_contact_field_type_modal_delete_description":"Bist du sicher, dass du dieses Kontaktfeld l\u00f6schen m\u00f6chtest? Wenn du dieses Kontaktfeld l\u00f6schst, werden auch alle Eintr\u00e4ge dieses Typs bei bestehenden Kontakten entfernt.","personalization_contact_field_type_modal_delete_title":"Bestehendes Kontaktfeld l\u00f6schen","personalization_contact_field_type_modal_edit_title":"Bestehendes Kontaktfeld bearbeiten","personalization_contact_field_type_modal_icon":"Symbol (Optional)","personalization_contact_field_type_modal_icon_help":"Du kannst ein Icon f\u00fcr dieses Kontaktfeld hinterlegen. Es muss eine Referenz auf ein Font Awesome Icon sein.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protokoll (optional)","personalization_contact_field_type_modal_protocol_help":"Wenn ein Protokoll f\u00fcr ein Kontaktfeld gesetzt ist, wird bei Klick auf das Feld die verkn\u00fcpfte Aktion ausgel\u00f6st.","personalization_contact_field_type_modal_title":"Neues Kontaktfeld hinzuf\u00fcgen","personalization_contact_field_type_table_actions":"Aktionen","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protokoll","personalization_contact_field_type_title":"Kontaktfelder","personalization_genders_add":"Neue Geschlechtsidentit\u00e4t hinzuf\u00fcgen","personalization_genders_default":"Standard Geschlecht","personalization_genders_desc":"Du kannst so viele Geschlechtsidentit\u00e4ten anlegen wie du m\u00f6chtest. Du brauchst mindestens eine Geschlechtsidentit\u00e4t in deinem Account.","personalization_genders_f":"Weiblich","personalization_genders_list_contact_number":"{count} Kontakt|{count} Kontakte","personalization_genders_m":"M\u00e4nnlich","personalization_genders_make_default":"\u00c4ndern Sie das Standardgeschlecht","personalization_genders_modal_add":"Neue Geschlechtsidentit\u00e4t hinzuf\u00fcgen","personalization_genders_modal_default":"Ist dies das standartm\u00e4\u00dfige Geschlecht f\u00fcr einen neuen Kontakt","personalization_genders_modal_delete":"Geschlechtsidentit\u00e4t l\u00f6schen","personalization_genders_modal_delete_desc":"M\u00f6chtest Du das Geschlecht \"{name}\" wirklich l\u00f6schen?","personalization_genders_modal_delete_question":"Du hast aktuell {count} Kontakt mit diesem Geschlecht. Wenn du dieses Geschlecht l\u00f6schst, welches Geschlecht soll der Kontakt dann haben?|Du hast aktuell {count} Kontakte mit diesem Geschlecht. Wenn du dieses Geschlecht l\u00f6schst, welches Geschlecht sollen die Kontakte dann haben?","personalization_genders_modal_delete_question_default":"Dieses Geschlecht ist der aktuelle Standardwert. Wenn du dieses Geschlecht l\u00f6schst, welches soll der neue Standardwert sein?","personalization_genders_modal_edit":"Geschlechtsidentit\u00e4t bearbeiten","personalization_genders_modal_error":"Bitte w\u00e4hle ein Geschlecht aus der Liste.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"Der Name, mit dem das Geschlecht auf einer Kontaktseite angezeigt wird.","personalization_genders_modal_sex":"Geschlecht","personalization_genders_modal_sex_help":"Wird verwendet, um die Beziehungen zu definieren, und w\u00e4hrend des VCard Import\/Export Prozesses.","personalization_genders_n":"Keine oder nicht zutreffend","personalization_genders_o":"Andere","personalization_genders_select_default":"W\u00e4hlen Sie das Standardgeschlecht","personalization_genders_table_default":"Standard","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Geschlecht","personalization_genders_title":"Geschlechter Typen","personalization_genders_u":"Unbekannt","personalization_life_event_category_description":"Eine Lebensereignis kann einen Typ und eine Kategorie haben. Dein Konto verf\u00fcgt \u00fcber eine Reihe vordefinierter Kategorien und Typen, welche du hier anpassen kannst.","personalization_life_event_category_family_relationships":"Familie & Beziehungen","personalization_life_event_category_health_wellness":"Gesundheit & Fitness","personalization_life_event_category_home_living":"Zuhause & Leben","personalization_life_event_category_title":"Lebensereigniskategorien","personalization_life_event_category_travel_experiences":"Reisen & Erfahrungen","personalization_life_event_category_work_education":"Arbeit & Bildung","personalization_life_event_type_achievement_or_award":"Errungenschaft oder Auszeichnung","personalization_life_event_type_add_button":"Neuen Lebensereignis-Typ hinzuf\u00fcgen","personalization_life_event_type_anniversary":"Jahrestag","personalization_life_event_type_bought_a_home":"Ein Haus gekauft","personalization_life_event_type_broken_bone":"Hat sich einen Knochen gebrochen","personalization_life_event_type_changed_beliefs":"\u00dcberzeugung ge\u00e4ndert","personalization_life_event_type_dentist":"Hatte eine Zahnbehandlung","personalization_life_event_type_end_of_relationship":"Ende einer Beziehung","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Erwartet ein Baby","personalization_life_event_type_first_kiss":"Erster Kuss","personalization_life_event_type_first_met":"Erste Begegnung","personalization_life_event_type_first_word":"Erstes Wort","personalization_life_event_type_holidays":"Feiertage","personalization_life_event_type_home_improvement":"Immobilien-Renovierung","personalization_life_event_type_loss_of_a_loved_one":"Einen geliebten Menschen verloren","personalization_life_event_type_marriage":"Heirat","personalization_life_event_type_military_service":"Milit\u00e4rdienst","personalization_life_event_type_modal_add":"Neuen Lebensereignis-Typ hinzuf\u00fcgen","personalization_life_event_type_modal_delete":"Lebensereignis-Typ l\u00f6schen","personalization_life_event_type_modal_delete_desc":"Bist du sicher, dass du diesen Lebensereignis-Typ l\u00f6schen m\u00f6chtest? Lebensereignisse, die zu diesem Typ geh\u00f6ren, werden durch diese Aktion gel\u00f6scht.","personalization_life_event_type_modal_delete_error":"Wir k\u00f6nnen diesen Lebensereignis-Typ nicht finden.","personalization_life_event_type_modal_edit":"Lebensereignis-Typ bearbeiten","personalization_life_event_type_modal_question":"Wie sollen wir den neuen Lebensereignistyp nennen?","personalization_life_event_type_moved":"Umgezogen","personalization_life_event_type_new_child":"Neues Kind","personalization_life_event_type_new_eating_habits":"Neue Essgewohnheiten","personalization_life_event_type_new_family_member":"Neues Familienmitglied","personalization_life_event_type_new_hobby":"Hat ein neues Hobby begonnen","personalization_life_event_type_new_instrument":"Hat angefangen ein neues Instrument zu lernen","personalization_life_event_type_new_job":"Neuer Job","personalization_life_event_type_new_language":"Hat angefangen eine neue Sprache zu lernen","personalization_life_event_type_new_license":"Neue Lizenz","personalization_life_event_type_new_pet":"Neues Haustier","personalization_life_event_type_new_relationship":"Neue Beziehung","personalization_life_event_type_new_roommate":"Neuer Mitbewohner","personalization_life_event_type_new_school":"Neue Schule","personalization_life_event_type_new_sport":"Hat eine neue Sportart begonnen","personalization_life_event_type_new_vehicle":"Neues Fahrzeug","personalization_life_event_type_overcame_an_illness":"Krankheit \u00fcberwunden","personalization_life_event_type_published_book_or_paper":"Buch oder Bericht ver\u00f6ffentlicht","personalization_life_event_type_quit_a_habit":"Gewohnheit beendet","personalization_life_event_type_removed_braces":"Hat die Zahnspange entfernt bekommen","personalization_life_event_type_retirement":"Pensionierung","personalization_life_event_type_study_abroad":"Studium im Ausland","personalization_life_event_type_surgery":"Hatte eine Operation","personalization_life_event_type_tattoo_or_piercing":"Tattoo oder Piercing","personalization_life_event_type_travel":"Reise","personalization_life_event_type_volunteer_work":"Ehrenamtliche Arbeit","personalization_life_event_type_wear_glass_or_contact":"Tr\u00e4gt nun eine Brille oder Kontaktlinsen","personalization_life_event_type_weight_loss":"Gewichts-Verlust","personalization_live_event_category_table_actions":"Aktionen","personalization_live_event_category_table_name":"Name","personalization_module_desc":"M\u00f6glicherweise brauchst du nicht alle Funktionen von Monica. Unten kannst du die Funktionen umschalten, die auf einer Kontaktseite zur Verf\u00fcgung stehen. Diese \u00c4nderungen werden f\u00fcr ALLE Kontakte \u00fcbernommen. Wenn du eine Funktion ausschaltest, gehen die Daten darin nicht verloren, sie werden nur verborgen.","personalization_module_save":"Die \u00c4nderung wurde gespeichert","personalization_module_title":"Funktionen","personalization_reminder_rule_desc":"F\u00fcr jede Erinnerung die du setzt, kann Monica dir ein paar Tage bevor das Ereignis stattfindet eine Email senden. Du kannst diese Benachrichtigungen hier anpassen. Diese Einstellungen gelten nur f\u00fcr monatliche und j\u00e4hrliche Erinnerungen.","personalization_reminder_rule_line":"{count} Tag zuvor|{count} Tage zuvor","personalization_reminder_rule_save":"Die \u00c4nderung wurde gespeichert","personalization_reminder_rule_title":"Erinnerungen","personalization_tab_title":"Personalisiere dein Konto","personalization_title":"Hier findest du verschiedene Einstellungsoptionen f\u00fcr deinen Account. Diese Funktionen sind eher f\u00fcr erfahrene Nutzer gedacht, die maximale Kontrolle \u00fcber Monica m\u00f6chten.","recovery_already_used_help":"Dieser Code wurde bereits verwendet.","recovery_clipboard":"Codes wurden in die Zwischenablage kopiert.","recovery_copy_help":"Codes in die Zwischenablage kopieren","recovery_generate":"Neue Codes generieren\u2026","recovery_generate_help":"Beachte das die Generierung neuer Codes zuvor generierte Codes ung\u00fcltig macht.","recovery_help_information":"Sie k\u00f6nnen jeden Wiederherstellungscode nur einmal verwenden.","recovery_help_intro":"Dies sind Ihre Wiederherstellungscodes:","recovery_show":"Wiederherstellungscodes generieren","recovery_title":"Wiederherstellungsschl\u00fcssel","reminder_time_to_send":"Uhrzeit zu der die Erinnerungen versandt werden","reminder_time_to_send_help":"Der Versand deiner n\u00e4chsten Erinnerung ist f\u00fcr {dateTime}<\/span> geplant.","reset_cta":"Konto zur\u00fccksetzen","reset_desc":"M\u00f6chtest du dein Konto zur\u00fccksetzen? Dies entfernt alle deine Kontakte und die zugeh\u00f6rigen Daten. Dein Konto bleibt erhalten.","reset_notice":"M\u00f6chtest du dein Konto wirklich zur\u00fccksetzen? Dies ist dauerhaft und kann nicht r\u00fcckg\u00e4ngig gemacht werden.","reset_success":"Dein Konto wurde erfolgreich zur\u00fcckgesetzt.","reset_title":"Konto zur\u00fccksetzen","save":"Einstellungen speichern","security_help":"\u00c4ndere die Sicherheitseinstellungen f\u00fcr dein Konto.","security_title":"Sicherheit","settings_success":"Einstellungen aktualisiert!","sidebar_personalization":"Personalisierung","sidebar_settings":"Kontoeinstellungen","sidebar_settings_api":"Schnittstelle (API)","sidebar_settings_auditlogs":"Pr\u00fcfprotokolle","sidebar_settings_dav":"DAV-Ressourcen","sidebar_settings_export":"Daten exportieren","sidebar_settings_import":"Daten importieren","sidebar_settings_security":"Sicherheit","sidebar_settings_storage":"Speicher","sidebar_settings_subscriptions":"Abonnement","sidebar_settings_tags":"Tag-Verwaltung","sidebar_settings_users":"Benutzer","storage_account_info":"Dein Kontolimit ist :accounLimit MB \/ Deine aktuelle Nutzung ist :currentAccountSize MB (ungef\u00e4hr :percentUsage%).","storage_description":"Hier sehen Sie alle Dokumente und Fotos, die Sie \u00fcber Ihre Kontakte hochgeladen haben.","storage_title":"Speicher","storage_upgrade_notice":"Upgraden Sie Ihr Konto, um Dokumente und Fotos hochladen zu k\u00f6nnen.","stripe_error_api_connection":"Netzwerkkommunikation mit Stripe fehlgeschlagen. Versuchen Sie es sp\u00e4ter erneut.","stripe_error_authentication":"Falsche Authentifizierung mit Stripe","stripe_error_card":"Ihre Karte wurde abgelehnt. Grund: :message","stripe_error_invalid_request":"Ung\u00fcltige Parameter. Versuchen Sie es sp\u00e4ter erneut.","stripe_error_rate_limit":"Zu viele Anfragen mit Stripe. Versuchen Sie es sp\u00e4ter erneut.","subscriptions_account_cancel":"Sie k\u00f6nnen Ihr Abonnement<\/a> jederzeit k\u00fcndigen.","subscriptions_account_confirm_payment":"Ihre Zahlung ist derzeit unvollst\u00e4ndig, bitte best\u00e4tigen Sie die Zahlung<\/a>.","subscriptions_account_current_paid_plan":"Sie befinden sich im :name Abo. Vielen Dank f\u00fcr die Anmeldung.","subscriptions_account_current_plan":"Dein aktuelles Abonnement","subscriptions_account_free_plan":"Du hast das kostenlose Abonnement.","subscriptions_account_free_plan_benefits_import_data_vcard":"Importiere Kontakte \u00fcber vCards","subscriptions_account_free_plan_benefits_reminders":"Erinnerungen per email","subscriptions_account_free_plan_benefits_support":"Unterst\u00fctze das Projekt auf lange Sicht, so dass wir mehr gro\u00dfartige Features umsetzen k\u00f6nnen.","subscriptions_account_free_plan_benefits_users":"Beliebige Anzahl von Benutzern","subscriptions_account_free_plan_upgrade":"Du kannst dein Konto auf :name upgraden, was $:price pro Monat kostet. Es beinhaltet folgende Vorteile:","subscriptions_account_invoices":"Rechnungen","subscriptions_account_invoices_download":"Herunterladen","subscriptions_account_invoices_subscription":"Abonnement von :startDate bis :endDate","subscriptions_account_next_billing":"Ihr Abonnement wird automatisch erneuert am :date<\/strong>.","subscriptions_account_payment":"Wie m\u00f6chtest du bezahlen?","subscriptions_account_upgrade":"Konto upgraden","subscriptions_account_upgrade_choice":"W\u00e4hle eines der Abos und schlie\u00dfe dich :customers Personen an, die bereits die Premium-Version von Monica nutzen.","subscriptions_account_upgrade_title":"Upgrade Monica heute und mache deine pers\u00f6nlichen Beziehungen gehaltvoller.","subscriptions_back":"Zur\u00fcck zu Einstellungen","subscriptions_downgrade_cta":"Zur\u00fcckstufen","subscriptions_downgrade_limitations":"Die kostenlose Variante hat Einschr\u00e4nkungen. um downdgraden zu k\u00f6nnen m\u00fcssen folgende Dinge zutreffen:","subscriptions_downgrade_rule_contacts":"Sie d\u00fcrfen nicht mehr als :number aktive Kontakte haben","subscriptions_downgrade_rule_contacts_constraint":"Sie haben derzeit 1 Kontakt <\/a>.|Sie haben derzeit :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"Du darfst keine ausstehenden Einladungen haben","subscriptions_downgrade_rule_invitations_constraint":"Du hast aktuell eine ausstehende Einladung<\/a>.|Du hast aktuell :count ausstehende Einladungen<\/a>.","subscriptions_downgrade_rule_users":"Du darfst nur einen Benutzer in deinem Konto haben","subscriptions_downgrade_rule_users_constraint":"Du hast derzeit 1 Benutzer<\/a> in deinem Konto. | Du hast derzeit :count Benutzer<\/a> in deinem Konto.","subscriptions_downgrade_success":"Du hast das kostenlose Abonnement!","subscriptions_downgrade_thanks":"Vielen Dank, dass du das kostenpflichtige Abo ausprobiert hast. Wir f\u00fcgen kontinuierlich weitere Funktionen hinzu. Vielleicht hast du in Zukunft ja wieder Interesse daran ein Abo abzuschlie\u00dfen.","subscriptions_downgrade_title":"Konto auf kostenlose Variante downgraden","subscriptions_help_change_desc":"Du kannst jederzeit ohne weiteres selber k\u00fcndigen, du musst dazu nicht den Support kontaktieren. Laufende Abos werden jedoch nicht zur\u00fcckerstattet.","subscriptions_help_change_title":"Was passiert, wenn ich meine Meinung \u00e4ndere?","subscriptions_help_discounts_desc":"Ja! Monica ist kostenlos f\u00fcr Sch\u00fcler, Studenten und gemeinn\u00fctzige Organisationen. Kontaktiere einfach den Support<\/a> mit einem entsprechenden Nachweis und wir werden den speziellen Status auf deinen Account anwenden.","subscriptions_help_discounts_title":"Gibt es Erm\u00e4\u00dfigungen f\u00fcr gemeinn\u00fctzige Organisationen und Bildungseinrichtungen?","subscriptions_help_limits_plan":"Ja. Kostenlose Pl\u00e4ne erm\u00f6glichen es Ihnen, :number Kontakte zu verwalten.","subscriptions_help_limits_title":"Gibt es im kostenlosen Abo eine Begrenzung bei der Anzahl an Kontakten, die man haben kann?","subscriptions_help_opensource_desc":"Monica ist ein Open-Source-Projekt. Das bedeutet, es wird von einer Community erstellt, die einfach ein tolles Programm der Allgemeinheit zur Verf\u00fcgung stellen will. Open-Source bedeutet, dass der Quellcode auf GitHub \u00f6ffentlich zug\u00e4nglich ist und von jedermann eingesehen, ver\u00e4ndert oder erweitert werden kann. Alle Einnahmen werden genutzt um das Programm zu verbessern, schnellere Server zu erwerben und andere Kosten zu bezahlen. Vielen Dank f\u00fcr deine Hilfe. Wir k\u00f6nnten das Ganze nicht ohne dich schaffen.","subscriptions_help_opensource_title":"Was ist ein Open-Source-Projekt?","subscriptions_help_title":"Weitere Details, die dich interessieren k\u00f6nnten","subscriptions_payment_cancelled":"Der Bezahlvorgang wurde abgebrochen.","subscriptions_payment_cancelled_title":"Zahlung storniert","subscriptions_payment_confirm_information":"Zur Bearbeitung Ihrer Zahlung ist eine zus\u00e4tzliche Best\u00e4tigung erforderlich. Bitte best\u00e4tigen Sie Ihre Zahlung, indem Sie Ihre Zahlungsinformationen unten ausf\u00fcllen.","subscriptions_payment_confirm_title":"Zahlung best\u00e4tigen","subscriptions_payment_error_name":"Bitte geben Sie Ihren Namen ein.","subscriptions_payment_succeeded":"Diese Zahlung wurde bereits erfolgreich best\u00e4tigt.","subscriptions_payment_succeeded_title":"Zahlung erfolgreich","subscriptions_payment_success":"Zahlung wurde erfolgreich ausgef\u00fchrt.","subscriptions_pdf_title":"Dein :name monatliches Abonnement","subscriptions_plan_choose":"Bitte ein Paket ausw\u00e4hlen","subscriptions_plan_include1":"Bei deinem Upgrade inklusive:","subscriptions_plan_include2":"Unbegrenzte Anzahl an Nutzern \u2022 Erinnerungen per E-Mail \u2022 Importieren per vCard \u2022 Personalisierung der Kontaktseiten","subscriptions_plan_include3":"100% der Einnahmen flie\u00dfen in die Entwicklung dieses gro\u00dfartigen Open-Source-Projektes.","subscriptions_plan_month_bonus":"Jederzeit k\u00fcndbar","subscriptions_plan_month_cost":"$5\/Monat","subscriptions_plan_month_title":"Monatlich zahlen","subscriptions_plan_year_bonus":"Ein ganzes Jahr lang keine Gedanken mehr machen","subscriptions_plan_year_cost":"$45\/Jahr","subscriptions_plan_year_cost_save":"du sparst 25%","subscriptions_plan_year_title":"J\u00e4hrlich zahlen","subscriptions_upgrade_charge":"Wir belasten deine Kreditkarte mit :price. Die n\u00e4chste Geb\u00fchr wird am :date f\u00e4llig sein. Wenn du es dir irgendwann anders \u00fcberlegst, kannst du jederzeit ohne weitere Angaben k\u00fcndigen.","subscriptions_upgrade_charge_handled":"Die Zahlung erfolgt \u00fcber Stripe<\/a>. Keine Kreditkarteninformationen gelangen auf unsere Server.","subscriptions_upgrade_choose":"Du hast das :plan Abonnement ausgew\u00e4hlt.","subscriptions_upgrade_credit":"Kreditkarte","subscriptions_upgrade_infos":"Wir freuen uns sehr. Bitte gebe deine Zahlungsinformationen unten ein.","subscriptions_upgrade_name":"Name auf der Karte","subscriptions_upgrade_submit":"Zahlen {amount}","subscriptions_upgrade_success":"Danke! Du bist nun angemeldet.","subscriptions_upgrade_thanks":"Willkommen in der Community von Leuten, die versuchen die Welt zu einem besseren Ort zu machen.","subscriptions_upgrade_title":"Konto upgraden","subscriptions_upgrade_zip":"Postleitzahl \/ ZIP-Code","tags_blank_description":"Tags funktionieren wie Ordner, wobei ein Kontakt auch mehrere Tags erhalten kann. \u00d6ffne einen Kontakt und tagge einen Freund direkt unter dem Namen. Sobald ein Kontakt getaggt ist, kannst du hier deine Tags verwalten.","tags_blank_title":"Tags bieten eine tolle M\u00f6glichkeit Kontakte zu organisieren.","tags_list_contact_number":"1 Kontakt|:count Kontakte","tags_list_delete_confirmation":"M\u00f6chtest du den Tag wirklich l\u00f6schen? Kontakte werden nicht gel\u00f6scht, sondern nur der Tag.","tags_list_delete_success":"Der Tag wurde erfolgreich gel\u00f6scht","tags_list_description":"Du kannst deine Kontakte mithilfe von Tags organisieren. Tags funktionieren wie Ordner, wobei ein Kontakt auch mehrere Tags erhalten kann. Um einen neuen Tag anzulegen, musst du ihn nur beim Kontakt hinzuf\u00fcgen.","tags_list_title":"Markierungen","temperature_scale":"Temperaturskala","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Zeitzone","title_general":"Allgemeine Information","title_i18n":"Internationale Einstellungen","title_layout":"Layout","users_accept_title":"Einladung annehmen und neues Benutzerkonto erstellen","users_add_confirmation":"Ich best\u00e4tige, dass ich diesen Benutzer zu meinem Account einladen m\u00f6chte. Ich verstehe, dass diese Person Zugriff auf ALLE meine Daten hat und sieht, was ich sehe.","users_add_cta":"Benutzer per E-Mail einladen","users_add_description":"Diese Person wird den gleichen Zugriff wie du haben, einschlie\u00dflich der Einladung oder des L\u00f6schens anderer Benutzer, inklusive dir selbst. Vergewissere dich, dass du dieser Person vertraust, bevor du ihr Zugang gew\u00e4hrst.","users_add_email_field":"Gib die E-Mail-Adresse der Person an, die du einladen m\u00f6chtest","users_add_title":"Einen neuen Benutzer per E-Mail zu deinem Konto einladen","users_blank_add_title":"M\u00f6chtest du jemand anderes einladen?","users_blank_cta":"Jemanden einladen","users_blank_description":"Diese Person wird den gleichen Zugriff auf das System haben wie du und wird Kontakte hinzuf\u00fcgen, \u00e4ndern und l\u00f6schen k\u00f6nnen.","users_blank_title":"Du bist der Einzige mit Zugriff auf dieses Konto.","users_error_already_invited":"Diesen Benutzer hast du schon eingeladen. Bitte andere E-Mail-Adresse w\u00e4hlen.","users_error_email_already_taken":"Diese E-Mail-Adresse ist bereits vergeben. Bitte eine andere w\u00e4hlen.","users_error_email_not_similar":"Dies ist nicht die E-Mail-Adresse der Person, die dich eingeladen hat.","users_error_please_confirm":"Bitte best\u00e4tige, dass du diesen Benutzer einladen willst","users_invitation_deleted_confirmation_message":"Die Einladung wurde erfolgreich gel\u00f6scht","users_invitation_need_subscription":"Das Hinzuf\u00fcgen von weiteren Benutzern erfordert ein Abonnement.","users_invitations_delete_confirmation":"M\u00f6chtest du die Einladung wirklich l\u00f6schen?","users_list_add_user":"Einen Benutzer einladen","users_list_delete_confirmation":"M\u00f6chtest du den Benutzer wirklich aus deinem Konto entfernen?","users_list_invitations_explanation":"Unten stehen Personen, die du als Mithelfer eingeladen hast.","users_list_invitations_invited_by":"eingeladen von :name","users_list_invitations_sent_date":"versendet :date","users_list_invitations_title":"Ausstehende Einladungen","users_list_title":"Benutzer, die Zugriff auf dein Konto haben","users_list_you":"Das bist du","webauthn_buttonAdvise":"Sofern Ihr Sicherheitsschl\u00fcssel einen Knopf hat, dr\u00fccken Sie ihn.","webauthn_delete_confirmation":"Diesen Schl\u00fcssel wirklich l\u00f6schen?","webauthn_delete_success":"Schl\u00fcssel gel\u00f6scht","webauthn_enable_description":"Neuen Sicherheitsschl\u00fcssel hinzuf\u00fcgen","webauthn_error_already_used":"Dieser Schl\u00fcssel ist bereits registriert. Es ist nicht erforderlich, ihn erneut zu registrieren.","webauthn_error_not_allowed":"Die Operation ist entweder abgelaufen oder nicht zul\u00e4ssig.","webauthn_insertKey":"F\u00fcgen Sie Ihren Sicherheitsschl\u00fcssel ein.","webauthn_key_name":"Schl\u00fcssel name:","webauthn_key_name_help":"Geben Sie Ihren Schl\u00fcssel einen Namen.","webauthn_last_use":"Letzte Verwendung: {timestamp}","webauthn_noButtonAdvise":"Wenn nicht, entfernen Sie ihn und f\u00fcgen Sie ihn erneut ein.","webauthn_not_secured":"WebAuthn unterst\u00fctzt nur sichere Verbindungen. Bitte laden Sie diese Seite mit https Schema.","webauthn_not_supported":"Ihr Browser unterst\u00fctzt derzeit nicht WebAuthn.","webauthn_success":"Ihr Schl\u00fcssel wurde erkannt und validiert.","webauthn_title":"Sicherheitsschl\u00fcssel \u2014 WebAuthn Protokoll"},"validation":{"accepted":":attribute muss akzeptiert werden.","active_url":":attribute keine g\u00fcltige URL.","after":":attribute muss ein Datum nach :date sein.","after_or_equal":"Das :attribute muss ein Datum nach oder gleich :date sein.","alpha":":attribute darf nur Buchstaben enthalten.","alpha_dash":":attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.","alpha_num":":attribute darf nur Buchstaben und Nummern enthalten.","array":":attribute muss ein Array sein.","attributes":[],"before":":attribute muss ein Datum vor :date sein.","before_or_equal":"Das :attribute muss ein Datum vor oder gleich :date sein.","between":{"array":":attribute muss zwischen :min und :max Elemente haben.","file":":attribute muss zwischen :min und :max Kilobyte liegen.","numeric":":attribute muss zwischen :min und :max liegen.","string":":attribute muss zwischen :min und :max Zeichen liegen."},"boolean":"Das :attribute Feld muss Wahr oder Falsch sein.","confirmed":"Die :attribute Best\u00e4tigung stimmt nicht \u00fcberein.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute ist kein g\u00fcltiges Datum.","date_equals":":attribute muss ein Datum gleich :date sein.","date_format":":attribute stimmt nicht mit dem Format :format \u00fcberein.","different":":attribute und :other m\u00fcssen sich unterscheiden.","digits":":attribute m\u00fcssen :digits Ziffern sein.","digits_between":":attribute muss zwischen :min und :max Ziffern liegen.","dimensions":"Das :attribute hat ung\u00fcltige Bilddimensionen.","distinct":"Das :attribute Feld hat einen doppelten Wert.","email":":attribute muss eine g\u00fcltige E-Mail-Adresse sein.","ends_with":":attribute muss eine der folgenden Endungen aufweisen: :values.","exists":":attribute ist ung\u00fcltig.","file":"Das :attribute muss eine Datei sein.","filled":"Das :attribute Feld muss einen Wert haben.","gt":{"array":":attribute muss mehr als :value Elemente haben.","file":":attribute muss gr\u00f6\u00dfer als :value Kilobytes sein.","numeric":":attribute muss gr\u00f6\u00dfer als :value sein.","string":":attribute muss l\u00e4nger als :value Zeichen sein."},"gte":{"array":":attribute muss mindestens :value Elemente haben.","file":":attribute muss gr\u00f6\u00dfer oder gleich :value Kilobytes sein.","numeric":":attribute muss gr\u00f6\u00dfer oder gleich :value sein.","string":":attribute muss mindestens :value Zeichen lang sein."},"image":":attribute muss ein Bild sein.","in":":attribute ist ung\u00fcltig.","in_array":"Das :attribute Feld existiert nicht in :other.","integer":":attribute muss eine Ganzzahl sein.","ip":":attribute muss eine g\u00fcltige IP-Adresse sein.","ipv4":":attribute muss eine g\u00fcltige IPv4 Adresse sein.","ipv6":":attribute muss eine g\u00fcltige IPv6 Adresse sein.","json":":attribute muss eine g\u00fcltige JSON-Zeichenfolge sein.","lt":{"array":":attribute muss weniger als :value Elemente haben.","file":":attribute muss kleiner als :value Kilobytes sein.","numeric":":attribute muss kleiner als :value sein.","string":":attribute muss k\u00fcrzer als :value Zeichen sein."},"lte":{"array":":attribute darf maximal :value Elemente haben.","file":":attribute muss kleiner oder gleich :value Kilobytes sein.","numeric":":attribute muss kleiner oder gleich :value sein.","string":":attribute darf maximal :value Zeichen lang sein."},"max":{"array":":attribute darf nicht mehr als :max Elemente haben.","file":":attribute darf nicht gr\u00f6\u00dfer als :max Kilobytes sein.","numeric":":attribute darf nicht gr\u00f6\u00dfer als :max sein.","string":":attribute darf nicht gr\u00f6\u00dfer als :max Zeichen sein."},"mimes":":attribute muss vom typ: :values sein.","mimetypes":":attribute muss den Dateityp :values haben.","min":{"array":":attribute muss mindestens :min Elemente haben.","file":":attribute muss mindestens :min Kilobytes sein.","numeric":":attribute muss mindestens :min sein.","string":":attribute muss mindestens :min Zeichen haben."},"not_in":":attribute ist ung\u00fcltig.","not_regex":"Das Format von :attribute ist ung\u00fcltig.","numeric":":attribute muss eine Zahl sein.","password":"Das Passwort ist falsch.","present":"Das :attribute Feld muss vorhanden sein.","regex":"Das :attribute Format ist ung\u00fcltig.","required":"Das :attribute Feld ist ein Pflichtfeld.","required_if":":attribute ist Pflicht, wenn :other :value ist.","required_unless":":attribute ist Pflicht, au\u00dfer :other ist in :values.","required_with":":attribute ist Pflicht, wenn :values vorhanden ist.","required_with_all":":attribute muss ausgef\u00fcllt werden, wenn :values ausgef\u00fcllt wurde.","required_without":":attribute ist Pflicht, wenn :values nicht vorhanden ist.","required_without_all":":attribute ist Pflicht, wenn keiner der folgenden Werte vorhandne ist :values.","same":":attribute und :other m\u00fcssen \u00fcbereinstimmen.","size":{"array":":attribute muss :size Elemente enthalten.","file":":attribute muss :size Kilobytes sein.","numeric":":attribute muss :size sein.","string":":attribute muss :size Zeichen sein."},"starts_with":":attribute muss mit einem der folgenden Anf\u00e4nge aufweisen: :values.","string":":attribute muss eine Zeichenkette sein.","timezone":":attribute muss eine g\u00fcltige Zone sein.","unique":":attribute muss einzigartig sein.","uploaded":":attribute konnte nicht hochgeladen werden.","url":":attribute hat ein ung\u00fcltiges Format.","uuid":":attribute muss ein UUID sein.","vue":{"max":{"numeric":"{field} darf nicht gr\u00f6\u00dfer sein als {max}.","string":"{field} darf nicht mehr als {max} Zeichen enthalten."},"required":"{field} ist erforderlich.","url":"{field} ist keine g\u00fcltige URL."}}} diff --git a/public/js/langs/el.json b/public/js/langs/el.json deleted file mode 100644 index e02cdcd0e4e..00000000000 --- a/public/js/langs/el.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7","another_day":"\u03ac\u03bb\u03bb\u03b7 \u03bc\u03ad\u03c1\u03b1","application_description":"\u03a4\u03bf Monica \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03c0\u03bf\u03c5 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2 \u03c3\u03b1\u03c2 \u03bc\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2 \u03c3\u03b1\u03c2, \u03c4\u03bf\u03c5\u03c2 \u03c6\u03af\u03bb\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03bf\u03b9\u03ba\u03bf\u03b3\u03ad\u03bd\u03b5\u03b9\u03b1.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ce\u03bd \u03c3\u03c7\u03ad\u03c3\u03b5\u03c9\u03bd","back":"\u03a0\u03af\u03c3\u03c9","breadcrumb_add_note":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7\u03c2","breadcrumb_add_significant_other":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c5\u03bd\u03c4\u03c1\u03cc\u03c6\u03bf\u03c5","breadcrumb_api":"API","breadcrumb_archived_contacts":"\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2","breadcrumb_dashboard":"\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7","breadcrumb_dav":"\u03a0\u03cc\u03c1\u03bf\u03b9 DAV","breadcrumb_edit_introductions":"\u03a0\u03ce\u03c2 \u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03ae\u03ba\u03b1\u03c4\u03b5;","breadcrumb_edit_note":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7\u03c2","breadcrumb_edit_significant_other":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c3\u03c5\u03bd\u03c4\u03c1\u03cc\u03c6\u03bf\u03c5","breadcrumb_journal":"\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03cc \u0397\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf","breadcrumb_list_contacts":"\u039b\u03af\u03c3\u03c4\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd","breadcrumb_profile":"\u03a0\u03c1\u03bf\u03c6\u03af\u03bb \u03c4\u03bf\u03c5 :name","breadcrumb_settings":"\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2","breadcrumb_settings_export":"\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae","breadcrumb_settings_import":"\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae","breadcrumb_settings_import_report":"\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2","breadcrumb_settings_import_upload":"\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7","breadcrumb_settings_personalization":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7","breadcrumb_settings_security":"\u0391\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1","breadcrumb_settings_security_2fa":"\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03a4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u0394\u03c5\u03bf \u03a0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd","breadcrumb_settings_subscriptions":"\u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae","breadcrumb_settings_tags":"\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2","breadcrumb_settings_users":"\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2","breadcrumb_settings_users_add":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7","cancel":"\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7","close":"\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf","compliance_desc":"\u0388\u03c7\u03bf\u03c5\u03bc\u03b5 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03b9 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2<\/a> \u03ba\u03b1\u03b9 \u03c4\u03b7\u03bd \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u0391\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5<\/a>. \u03a3\u03cd\u03bc\u03c6\u03c9\u03bd\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03bd\u03cc\u03bc\u03bf \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b6\u03b7\u03c4\u03ae\u03c3\u03bf\u03c5\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03bb\u03ad\u03b3\u03be\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2.","compliance_desc_end":"\u0394\u03b5\u03bd \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1 \u03ba\u03b1\u03ba\u03cc \u03bc\u03b5 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b1\u03c2 \u03ae \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03b8\u03b1 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03c0\u03bf\u03c4\u03ad.","compliance_terms":"\u0391\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bd\u03ad\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u03b1\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5","compliance_title":"\u039c\u03b5 \u03c3\u03c5\u03b3\u03c7\u03c9\u03c1\u03b5\u03af\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae.","confirm":"\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae","create":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1","date":"\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1","dav_birthdays":"\u0393\u03b5\u03bd\u03ad\u03b8\u03bb\u03b9\u03b1","dav_birthdays_description":"\u0393\u03b5\u03bd\u03ad\u03b8\u03bb\u03b9\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd \u03c4\u03bf\u03c5 :name","dav_contacts":"\u0395\u03c0\u03b1\u03c6\u03ad\u03c2","dav_contacts_description":"\u0395\u03c0\u03b1\u03c6\u03ad\u03c2 \u03c4\u03bf\u03c5 :name","dav_tasks":"\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2","dav_tasks_description":"\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c4\u03bf\u03c5 :name","default_save_success":"\u03a4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd.","delete":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae","delete_confirm":"Are you sure?","done":"\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5","download":"\u039b\u03ae\u03c8\u03b7","edit":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1","emotion_adoration":"\u039b\u03b1\u03c4\u03c1\u03b5\u03af\u03b1","emotion_affection":"\u03a3\u03c4\u03bf\u03c1\u03b3\u03ae","emotion_aggravation":"\u0395\u03c0\u03b9\u03b4\u03b5\u03af\u03bd\u03c9\u03c3\u03b7","emotion_agitation":"\u03a4\u03b1\u03c1\u03b1\u03c7\u03ae","emotion_agony":"\u0391\u03b3\u03c9\u03bd\u03af\u03b1","emotion_alarm":"\u0391\u03bd\u03ae\u03c3\u03c5\u03c7\u03bf\u03c2","emotion_alienation":"\u0391\u03c0\u03bf\u03be\u03ad\u03bd\u03c9\u03c3\u03b7","emotion_amazement":"\u039a\u03b1\u03c4\u03ac\u03c0\u03bb\u03b7\u03be\u03b7","emotion_amusement":"\u03a8\u03c5\u03c7\u03b1\u03b3\u03c9\u03b3\u03af\u03b1","emotion_anger":"\u0398\u03c5\u03bc\u03cc\u03c2","emotion_anguish":"\u039f\u03b4\u03cd\u03bd\u03b7","emotion_annoyance":"\u0395\u03bd\u03cc\u03c7\u03bb\u03b7\u03c3\u03b7","emotion_anxiety":"\u0391\u03bd\u03b7\u03c3\u03c5\u03c7\u03af\u03b1","emotion_apprehension":"\u03a3\u03cd\u03bb\u03bb\u03b7\u03c8\u03b7","emotion_arousal":"\u0394\u03b9\u03ad\u03b3\u03b5\u03c1\u03c3\u03b7","emotion_astonishment":"\u0388\u03ba\u03c0\u03bb\u03b7\u03ba\u03c4\u03bf\u03c2","emotion_attraction":"\u0388\u03bb\u03be\u03b7","emotion_bitterness":"\u03a0\u03b9\u03ba\u03c1\u03af\u03b1","emotion_bliss":"\u0395\u03c5\u03b4\u03b1\u03b9\u03bc\u03bf\u03bd\u03af\u03b1","emotion_caring":"\u039d\u03bf\u03b9\u03ac\u03b6\u03bf\u03bc\u03b1\u03b9","emotion_cheerfulness":"\u03a7\u03b1\u03c1\u03ac","emotion_compassion":"\u03a3\u03c5\u03bc\u03c0\u03cc\u03bd\u03b9\u03b1","emotion_contempt":"\u03a0\u03b5\u03c1\u03b9\u03c6\u03c1\u03cc\u03bd\u03b7\u03c3\u03b7","emotion_contentment":"\u0399\u03ba\u03b1\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7","emotion_defeat":"\u0389\u03c4\u03c4\u03b1","emotion_dejection":"\u039a\u03b1\u03c4\u03ae\u03c6\u03b5\u03b9\u03b1","emotion_delight":"\u0391\u03c0\u03cc\u03bb\u03b1\u03c5\u03c3\u03b7","emotion_depression":"\u039a\u03b1\u03c4\u03ac\u03b8\u03bb\u03b9\u03c8\u03b7","emotion_desire":"\u0395\u03c0\u03b9\u03b8\u03c5\u03bc\u03af\u03b1","emotion_despair":"\u0391\u03c0\u03cc\u03b3\u03bd\u03c9\u03c3\u03b7","emotion_disappointment":"\u0391\u03c0\u03bf\u03b3\u03bf\u03ae\u03c4\u03b5\u03c5\u03c3\u03b7","emotion_disgust":"\u0391\u03b7\u03b4\u03af\u03b1","emotion_dislike":"\u0391\u03bd\u03c4\u03b9\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1","emotion_dismay":"\u03a6\u03cc\u03b2\u03bf\u03c2","emotion_displeasure":"\u0394\u03c5\u03c3\u03b1\u03c1\u03ad\u03c3\u03ba\u03b5\u03b9\u03b1","emotion_distress":"\u0394\u03c5\u03c3\u03c6\u03bf\u03c1\u03af\u03b1","emotion_dread":"\u03a4\u03c1\u03cc\u03bc\u03bf\u03c2","emotion_eagerness":"\u03a0\u03c1\u03bf\u03b8\u03c5\u03bc\u03af\u03b1","emotion_ecstasy":"\u0388\u03ba\u03c3\u03c4\u03b1\u03c3\u03b7","emotion_elation":"\u0388\u03be\u03b1\u03c1\u03c3\u03b7","emotion_embarrassment":"\u039d\u03c4\u03c1\u03bf\u03c0\u03ae","emotion_enjoyment":"\u0391\u03c0\u03cc\u03bb\u03b1\u03c5\u03c3\u03b7","emotion_enthrallment":"\u0395\u03bd\u03b8\u03ac\u03c1\u03c1\u03c5\u03bd\u03c3\u03b7","emotion_enthusiasm":"\u0395\u03bd\u03b8\u03bf\u03c5\u03c3\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2","emotion_envy":"\u03a6\u03b8\u03cc\u03bd\u03bf\u03c2","emotion_euphoria":"\u0395\u03c6\u03bf\u03c1\u03af\u03b1","emotion_exasperation":"\u0395\u03be\u03cc\u03c1\u03b3\u03b9\u03c3\u03b7","emotion_excitement":"\u0395\u03bd\u03b8\u03bf\u03c5\u03c3\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2","emotion_exhilaration":"\u03a7\u03b1\u03c1\u03ac","emotion_fear":"\u03a6\u03cc\u03b2\u03bf\u03c2","emotion_ferocity":"\u0391\u03b3\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1","emotion_fondness":"\u03a3\u03c5\u03bc\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1","emotion_fright":"\u03a4\u03c1\u03bf\u03bc\u03ac\u03c1\u03b1","emotion_frustration":"\u0395\u03ba\u03bd\u03b5\u03c5\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2","emotion_fury":"\u0398\u03c5\u03bc\u03cc\u03c2","emotion_gaiety":"\u0395\u03c5\u03b8\u03c5\u03bc\u03af\u03b1","emotion_gladness":"\u03a7\u03b1\u03c1\u03ac","emotion_glee":"\u03a7\u03b1\u03c1\u03ac","emotion_gloom":"\u039a\u03b1\u03c4\u03b7\u03c6\u03ae\u03c2","emotion_glumness":"\u039a\u03b1\u03c4\u03ae\u03c6\u03b5\u03b9\u03b1","emotion_grief":"\u03a0\u03ad\u03bd\u03b8\u03bf\u03c2","emotion_grouchiness":"\u0394\u03c5\u03c3\u03c4\u03c1\u03bf\u03c0\u03af\u03b1","emotion_grumpiness":"\u0393\u03ba\u03c1\u03af\u03bd\u03b9\u03b1","emotion_guilt":"\u0395\u03bd\u03bf\u03c7\u03ae","emotion_happiness":"\u0395\u03c5\u03c4\u03c5\u03c7\u03af\u03b1","emotion_hate":"\u039c\u03af\u03c3\u03bf\u03c2","emotion_homesickness":"\u039d\u03bf\u03c3\u03c4\u03b1\u03bb\u03b3\u03af\u03b1","emotion_hope":"\u0395\u03bb\u03c0\u03af\u03b4\u03b1","emotion_hopelessness":"\u0391\u03c0\u03b5\u03bb\u03c0\u03b9\u03c3\u03af\u03b1","emotion_horror":"\u03a4\u03c1\u03cc\u03bc\u03bf\u03c2","emotion_hostility":"\u0395\u03c7\u03b8\u03c1\u03cc\u03c4\u03b7\u03c4\u03b1","emotion_humiliation":"\u03a4\u03b1\u03c0\u03b5\u03af\u03bd\u03c9\u03c3\u03b7","emotion_hurt":"\u03a0\u03cc\u03bd\u03bf\u03c2","emotion_hysteria":"\u03a5\u03c3\u03c4\u03b5\u03c1\u03af\u03b1","emotion_infatuation":"\u039e\u03b5\u03bb\u03cc\u03b3\u03b9\u03b1\u03c3\u03bc\u03b1","emotion_insecurity":"\u0391\u03bd\u03b1\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1","emotion_insult":"\u03a0\u03c1\u03bf\u03c3\u03b2\u03bf\u03bb\u03ae","emotion_irritation":"\u0395\u03c1\u03b5\u03b8\u03b9\u03c3\u03bc\u03cc\u03c2","emotion_isolation":"\u0391\u03c0\u03bf\u03bc\u03cc\u03bd\u03c9\u03c3\u03b7","emotion_jealousy":"\u0396\u03ae\u03bb\u03b9\u03b1","emotion_jolliness":"\u0395\u03c5\u03c7\u03b1\u03c1\u03af\u03c3\u03c4\u03b7\u03c3\u03b7","emotion_joviality":"\u039a\u03ad\u03c6\u03b9","emotion_joy":"\u03a7\u03b1\u03c1\u03ac","emotion_jubilation":"\u0391\u03b3\u03b1\u03bb\u03bb\u03af\u03b1\u03c3\u03b7","emotion_liking":"\u0391\u03c1\u03ad\u03c3\u03ba\u03b5\u03b9\u03b1","emotion_loathing":"\u03a3\u03b9\u03c7\u03b1\u03bc\u03ac\u03c1\u03b1","emotion_loneliness":"\u039c\u03bf\u03bd\u03b1\u03be\u03b9\u03ac","emotion_longing":"\u039b\u03b1\u03c7\u03c4\u03ac\u03c1\u03b1","emotion_love":"\u0391\u03b3\u03ac\u03c0\u03b7","emotion_lust":"\u03a0\u03cc\u03b8\u03bf\u03c2","emotion_melancholy":"\u039c\u03b5\u03bb\u03b1\u03b3\u03c7\u03bf\u03bb\u03af\u03b1","emotion_misery":"\u039c\u03b9\u03b6\u03ad\u03c1\u03b9\u03b1","emotion_mortification":"\u03a4\u03b1\u03c0\u03b5\u03af\u03bd\u03c9\u03c3\u03b7","emotion_neglect":"\u03a0\u03b1\u03c1\u03b1\u03bc\u03ad\u03bb\u03b7\u03c3\u03b7","emotion_nervousness":"\u039d\u03b5\u03c5\u03c1\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1","emotion_optimism":"\u0391\u03b9\u03c3\u03b9\u03bf\u03b4\u03bf\u03be\u03af\u03b1","emotion_outrage":"\u03a0\u03c1\u03bf\u03c3\u03b2\u03bf\u03bb\u03ae","emotion_panic":"\u03a0\u03b1\u03bd\u03b9\u03ba\u03cc\u03c2","emotion_passion":"\u03a0\u03ac\u03b8\u03bf\u03c2","emotion_pity":"\u039f\u03af\u03ba\u03c4\u03bf\u03c2","emotion_pleasure":"\u0391\u03c0\u03cc\u03bb\u03b1\u03c5\u03c3\u03b7","emotion_pride":"\u03a0\u03b5\u03c1\u03b7\u03c6\u03ac\u03bd\u03b9\u03b1","emotion_primary_anger":"\u0398\u03c5\u03bc\u03cc\u03c2","emotion_primary_fear":"\u03a6\u03cc\u03b2\u03bf\u03c2","emotion_primary_joy":"\u03a7\u03b1\u03c1\u03ac","emotion_primary_love":"\u0391\u03b3\u03ac\u03c0\u03b7","emotion_primary_sadness":"\u0398\u03bb\u03af\u03c8\u03b7","emotion_primary_surprise":"\u0388\u03ba\u03c0\u03bb\u03b7\u03be\u03b7","emotion_rage":"\u039f\u03c1\u03b3\u03ae","emotion_rapture":"\u0391\u03b3\u03b1\u03bb\u03bb\u03af\u03b1\u03c3\u03b7","emotion_regret":"\u039c\u03b5\u03c4\u03ac\u03bd\u03bf\u03b9\u03b1","emotion_rejection":"\u0391\u03c0\u03cc\u03c1\u03c1\u03b9\u03c8\u03b7","emotion_relief":"\u0391\u03bd\u03b1\u03ba\u03bf\u03cd\u03c6\u03b9\u03c3\u03b7","emotion_remorse":"\u03a4\u03cd\u03c8\u03b5\u03b9\u03c2","emotion_resentment":"\u039c\u03bd\u03b7\u03c3\u03b9\u03ba\u03b1\u03ba\u03af\u03b1","emotion_revulsion":"\u039c\u03b5\u03c4\u03b1\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae","emotion_sadness":"\u0398\u03bb\u03af\u03c8\u03b7","emotion_satisfaction":"\u0399\u03ba\u03b1\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7","emotion_scorn":"\u03a0\u03b5\u03c1\u03b9\u03c6\u03c1\u03cc\u03bd\u03b7\u03c3\u03b7","emotion_secondary_affection":"\u03a3\u03c4\u03bf\u03c1\u03b3\u03ae","emotion_secondary_cheerfulness":"\u03a7\u03b1\u03c1\u03ac","emotion_secondary_contentment":"\u0399\u03ba\u03b1\u03bd\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7","emotion_secondary_disappointment":"\u0391\u03c0\u03bf\u03b3\u03bf\u03ae\u03c4\u03b5\u03c5\u03c3\u03b7","emotion_secondary_disgust":"\u0391\u03b7\u03b4\u03af\u03b1","emotion_secondary_enthrallment":"\u0395\u03bd\u03b8\u03ac\u03c1\u03c1\u03c5\u03bd\u03c3\u03b7","emotion_secondary_envy":"\u0396\u03ae\u03bb\u03b9\u03b1","emotion_secondary_exasperation":"\u0395\u03be\u03cc\u03c1\u03b3\u03b9\u03c3\u03b7","emotion_secondary_horror":"\u03a4\u03c1\u03cc\u03bc\u03bf\u03c2","emotion_secondary_irritation":"\u0395\u03bd\u03cc\u03c7\u03bb\u03b7\u03c3\u03b7","emotion_secondary_longing":"\u039b\u03b1\u03c7\u03c4\u03ac\u03c1\u03b1","emotion_secondary_lust":"\u03a0\u03cc\u03b8\u03bf\u03c2","emotion_secondary_neglect":"\u03a0\u03b1\u03c1\u03b1\u03bc\u03ad\u03bb\u03b7\u03c3\u03b7","emotion_secondary_nervousness":"\u039d\u03b5\u03c5\u03c1\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1","emotion_secondary_optimism":"\u0391\u03b9\u03c3\u03b9\u03bf\u03b4\u03bf\u03be\u03af\u03b1","emotion_secondary_pride":"\u03a0\u03b5\u03c1\u03b7\u03c6\u03ac\u03bd\u03b9\u03b1","emotion_secondary_rage":"\u0398\u03c5\u03bc\u03cc\u03c2","emotion_secondary_relief":"\u0391\u03bd\u03b1\u03ba\u03bf\u03cd\u03c6\u03b9\u03c3\u03b7","emotion_secondary_sadness":"\u0398\u03bb\u03af\u03c8\u03b7","emotion_secondary_shame":"\u039d\u03c4\u03c1\u03bf\u03c0\u03ae","emotion_secondary_suffering":"\u03a4\u03b1\u03bb\u03b1\u03b9\u03c0\u03c9\u03c1\u03af\u03b1","emotion_secondary_surprise":"\u0388\u03ba\u03c0\u03bb\u03b7\u03be\u03b7","emotion_secondary_sympathy":"\u03a3\u03c5\u03bc\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1","emotion_secondary_zest":"\u0396\u03ad\u03c3\u03b7","emotion_sentimentality":"\u03a3\u03c5\u03bd\u03b1\u03b9\u03c3\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1","emotion_shame":"\u039d\u03c4\u03c1\u03bf\u03c0\u03ae","emotion_shock":"\u0388\u03ba\u03c0\u03bb\u03b7\u03be\u03b7","emotion_sorrow":"\u03a0\u03cc\u03bd\u03bf\u03c2","emotion_spite":"\u03a0\u03b5\u03af\u03c3\u03bc\u03b1","emotion_suffering":"\u03a4\u03b1\u03bb\u03b1\u03b9\u03c0\u03c9\u03c1\u03af\u03b1","emotion_surprise":"\u0388\u03ba\u03c0\u03bb\u03b7\u03be\u03b7","emotion_sympathy":"\u03a3\u03c5\u03bc\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1","emotion_tenderness":"\u03a4\u03c1\u03c5\u03c6\u03b5\u03c1\u03cc\u03c4\u03b7\u03c4\u03b1","emotion_tenseness":"\u03a5\u03c0\u03b5\u03c1\u03ad\u03bd\u03c4\u03b1\u03c3\u03b7","emotion_terror":"\u03a4\u03c1\u03cc\u03bc\u03bf\u03c2","emotion_thrill":"\u03a3\u03c5\u03b3\u03ba\u03af\u03bd\u03b7\u03c3\u03b7","emotion_uneasiness":"\u0391\u03bd\u03b7\u03c3\u03c5\u03c7\u03af\u03b1","emotion_unhappiness":"\u0394\u03c5\u03c3\u03c4\u03c5\u03c7\u03af\u03b1","emotion_vengefulness":"\u0395\u03ba\u03b4\u03b9\u03ba\u03b7\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1","emotion_woe":"\u03a3\u03c5\u03bc\u03c6\u03bf\u03c1\u03ac","emotion_worry":"\u0391\u03bd\u03b7\u03c3\u03c5\u03c7\u03af\u03b1","emotion_wrath":"\u039f\u03c1\u03b3\u03ae","emotion_zeal":"\u0396\u03ae\u03bb\u03bf\u03c2","emotion_zest":"\u0396\u03ad\u03c3\u03b7","error_help":"\u0398\u03b1 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03bf\u03c5\u03bc\u03b5 \u03c3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b1.","error_id":"ID \u03a3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b1\u03ba\u03cc\u03bc\u03b7.","error_save":"\u03a5\u03c0\u03ae\u03c1\u03be\u03b5 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd.","error_title":"\u03a9\u03c7... \u03ba\u03ac\u03c4\u03b9 \u03c0\u03ae\u03b3\u03b5 \u03c3\u03c4\u03c1\u03b1\u03b2\u03ac.","error_try_again":"\u039a\u03ac\u03c4\u03b9 \u03c0\u03ae\u03b3\u03b5 \u03c3\u03c4\u03c1\u03b1\u03b2\u03ac. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03be\u03b1\u03bd\u03ac.","error_twitter":"\u0391\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03bc\u03b1\u03c2 \u03c3\u03c4\u03bf Twitter<\/a> \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af\u03c4\u03b5 \u03cc\u03c4\u03b1\u03bd \u03b5\u03c0\u03b1\u03bd\u03ad\u03bb\u03b8\u03bf\u03c5\u03bc\u03b5.","error_unauthorized":"\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b4\u03b9\u03ba\u03b1\u03af\u03c9\u03bc\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1.","error_unavailable":"\u0397 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7","error_user_account":"\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b1\u03bd\u03ae\u03ba\u03b5\u03b9 \u03c3\u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c0\u03bf\u03c5 \u03b4\u03cc\u03b8\u03b7\u03ba\u03b5.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2","footer_modal_version_release_away":"\u0395\u03af\u03c3\u03c4\u03b5 1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c0\u03af\u03c3\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7. \u0398\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c3\u03b1\u03c2.|\u0395\u03af\u03c3\u03c4\u03b5 :number \u03b5\u03ba\u03b4\u03cc\u03c3\u03b5\u03b9\u03c2 \u03c0\u03af\u03c3\u03c9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7. \u0398\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c3\u03b1\u03c2.","footer_modal_version_whats_new":"\u03a4\u03b9 \u03bd\u03ad\u03bf \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9;","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"\u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u03b1\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5","footer_release":"\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"\u03a3\u03c5\u03bc\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b5","footer_version":"\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 :version","gender_female":"\u0393\u03c5\u03bd\u03b1\u03af\u03ba\u03b1","gender_male":"\u0386\u03bd\u03c4\u03c1\u03b1\u03c2","gender_no_gender":"\u03a7\u03c9\u03c1\u03af\u03c2 \u03c6\u03cd\u03bb\u03bf","gender_none":"\u03a7\u03c9\u03c1\u03af\u03c2 \u03b4\u03ae\u03bb\u03c9\u03c3\u03b7","go_back":"\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae","header_changelog_link":"\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2","header_logout_link":"\u0391\u03c0\u03bf\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7","header_settings_link":"\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2","load_more":"\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd","loading":"Loading\u2026","main_nav_activities":"\u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2","main_nav_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03c4\u03cc\u03bc\u03c9\u03bd","main_nav_dashboard":"\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7","main_nav_family":"\u0395\u03c0\u03b1\u03c6\u03ad\u03c2","main_nav_journal":"\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03cc \u0397\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf","main_nav_tasks":"\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2","markdown_description":"\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03c3\u03b1\u03c2 \u03cc\u03bc\u03bf\u03c1\u03c6\u03b1; \u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03c5\u03bc\u03b5 Markdown \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03b5\u03bd\u03c4\u03bf\u03bd\u03b7, \u03c0\u03bb\u03ac\u03b3\u03b9\u03b1 \u03b3\u03c1\u03b1\u03c6\u03ae, \u03bb\u03af\u03c3\u03c4\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1.","markdown_link":"\u0394\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7","new":"\u03bd\u03ad\u03bf","no":"\u038c\u03c7\u03b9","percent_uploaded":"{percent}% \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03c9\u03b8\u03b5\u03af","relationship_type_bestfriend":"\u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03c6\u03af\u03bb\u03bf\u03c2","relationship_type_bestfriend_female":"\u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03c6\u03af\u03bb\u03b7","relationship_type_bestfriend_female_with_name":"\u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03c6\u03af\u03bb\u03b7 \u03c4\u03bf\u03c5 :name","relationship_type_bestfriend_with_name":"\u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03c6\u03af\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_boss":"\u03b1\u03c6\u03b5\u03bd\u03c4\u03b9\u03ba\u03cc","relationship_type_boss_female":"\u03b1\u03c6\u03b5\u03bd\u03c4\u03b9\u03ba\u03cc","relationship_type_boss_female_with_name":"\u03b1\u03c6\u03b5\u03bd\u03c4\u03b9\u03ba\u03cc \u03c4\u03bf\u03c5 :name","relationship_type_boss_with_name":"\u03b1\u03c6\u03b5\u03bd\u03c4\u03b9\u03ba\u03cc \u03c4\u03bf\u03c5 :name","relationship_type_child":"\u03b3\u03b9\u03cc\u03c2","relationship_type_child_female":"\u03ba\u03cc\u03c1\u03b7","relationship_type_child_female_with_name":"\u03ba\u03cc\u03c1\u03b7 :name","relationship_type_child_with_name":"\u03b3\u03b9\u03cc\u03c2 :name","relationship_type_colleague":"\u03c3\u03c5\u03bd\u03ac\u03b4\u03b5\u03bb\u03c6\u03bf\u03c2","relationship_type_colleague_female":"\u03c3\u03c5\u03bd\u03ac\u03b4\u03b5\u03bb\u03c6\u03bf\u03c2","relationship_type_colleague_female_with_name":"\u03c3\u03c5\u03bd\u03ac\u03b4\u03b5\u03bb\u03c6\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_colleague_with_name":"\u03c3\u03c5\u03bd\u03ac\u03b4\u03b5\u03bb\u03c6\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_cousin":"\u03be\u03ac\u03b4\u03b5\u03c1\u03c6\u03bf\u03c2","relationship_type_cousin_female":"\u03be\u03b1\u03b4\u03ad\u03c1\u03c6\u03b7","relationship_type_cousin_female_with_name":"\u03be\u03b1\u03b4\u03ad\u03c1\u03c6\u03b7 \u03c4\u03bf\u03c5 :name","relationship_type_cousin_with_name":"\u03be\u03ac\u03b4\u03b5\u03c1\u03c6\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_date":"\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1","relationship_type_date_female":"\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1","relationship_type_date_female_with_name":"\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 :name","relationship_type_date_with_name":"\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 :name","relationship_type_ex":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c6\u03af\u03bb\u03bf\u03c2","relationship_type_ex_female":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c6\u03af\u03bb\u03b7","relationship_type_ex_female_with_name":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c6\u03af\u03bb\u03b7 :name","relationship_type_ex_husband":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2","relationship_type_ex_husband_female":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2","relationship_type_ex_husband_female_with_name":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2 \u03c4\u03b7\u03c2 :name","relationship_type_ex_husband_with_name":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_ex_with_name":"\u03c0\u03c1\u03ce\u03b7\u03bd \u03c6\u03af\u03bb\u03bf\u03c2 \u03c4\u03b7\u03c2 :name","relationship_type_friend":"\u03c6\u03af\u03bb\u03bf\u03c2","relationship_type_friend_female":"\u03c6\u03af\u03bb\u03b7","relationship_type_friend_female_with_name":"\u03c6\u03af\u03bb\u03b7 \u03c4\u03bf\u03c5 :name","relationship_type_friend_with_name":"\u03c6\u03af\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_godfather":"\u03bd\u03bf\u03bd\u03cc\u03c2","relationship_type_godfather_female":"\u03bd\u03bf\u03bd\u03ac","relationship_type_godfather_female_with_name":"\u03bd\u03bf\u03bd\u03ac \u03c4\u03bf\u03c5 :name","relationship_type_godfather_with_name":"\u03bd\u03bf\u03bd\u03cc\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_godson":"\u03b2\u03b1\u03c6\u03c4\u03b9\u03c3\u03b9\u03bc\u03b9\u03cc\u03c2","relationship_type_godson_female":"\u03b2\u03b1\u03c6\u03c4\u03b9\u03c3\u03b9\u03bc\u03b9\u03ac","relationship_type_godson_female_with_name":"\u03b2\u03b1\u03c6\u03c4\u03b9\u03c3\u03b9\u03bc\u03b9\u03ac \u03c4\u03bf\u03c5 :name","relationship_type_godson_with_name":"\u03b2\u03b1\u03c6\u03c4\u03b9\u03c3\u03b9\u03bc\u03b9\u03cc\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_grandchild":"\u03b5\u03b3\u03b3\u03cc\u03bd\u03b9","relationship_type_grandchild_female":"\u03b5\u03b3\u03b3\u03cc\u03bd\u03b9","relationship_type_grandchild_female_with_name":"\u03b5\u03b3\u03b3\u03bf\u03bd\u03ae \u03c4\u03bf\u03c5 :name","relationship_type_grandchild_with_name":"\u03b5\u03b3\u03b3\u03bf\u03bd\u03cc\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_grandparent":"\u03c0\u03b1\u03c0\u03c0\u03bf\u03cd\u03c2","relationship_type_grandparent_female":"\u03b3\u03b9\u03b1\u03b3\u03b9\u03ac","relationship_type_grandparent_female_with_name":"\u03b3\u03b9\u03b1\u03b3\u03b9\u03ac \u03c4\u03bf\u03c5 :name","relationship_type_grandparent_with_name":"\u03c0\u03b1\u03c0\u03c0\u03bf\u03cd\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_group_family":"\u039f\u03b9\u03ba\u03bf\u03b3\u03b5\u03bd\u03b5\u03b9\u03b1\u03ba\u03ad\u03c2 \u03c3\u03c7\u03ad\u03c3\u03b5\u03b9\u03c2","relationship_type_group_friend":"\u03a6\u03b9\u03bb\u03b9\u03ba\u03ad\u03c2 \u03c3\u03c7\u03ad\u03c3\u03b5\u03b9\u03c2","relationship_type_group_love":"\u0395\u03c1\u03c9\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c3\u03c7\u03ad\u03c3\u03b5\u03b9\u03c2","relationship_type_group_other":"\u03a3\u03c7\u03ad\u03c3\u03b5\u03b9\u03c2 \u03ac\u03bb\u03bb\u03c9\u03bd \u03c4\u03cd\u03c0\u03c9\u03bd","relationship_type_group_work":"\u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03b1\u03ba\u03ad\u03c2 \u03c3\u03c7\u03ad\u03c3\u03b5\u03b9\u03c2","relationship_type_inlovewith":"\u03b5\u03c1\u03c9\u03c4\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c2 \u03bc\u03b5","relationship_type_inlovewith_female":"\u03b5\u03c1\u03c9\u03c4\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c2 \u03bc\u03b5","relationship_type_inlovewith_female_with_name":"\u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03bf\u03bd \u03bf\u03c0\u03bf\u03af\u03bf \u03bf :name \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c1\u03c9\u03c4\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c2","relationship_type_inlovewith_with_name":"\u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03bf\u03bd \u03bf\u03c0\u03bf\u03af\u03bf \u03bf :name \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c1\u03c9\u03c4\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c2","relationship_type_lovedby":"\u03b1\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c4\u03bf\u03c5","relationship_type_lovedby_female":"\u03b1\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c4\u03bf\u03c5","relationship_type_lovedby_female_with_name":"\u03ba\u03c1\u03c5\u03c6\u03cc\u03c2 \u03b5\u03c1\u03b1\u03c3\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 :name","relationship_type_lovedby_with_name":"\u03ba\u03c1\u03c5\u03c6\u03cc\u03c2 \u03b5\u03c1\u03b1\u03c3\u03c4\u03ae\u03c2 :name","relationship_type_lover":"\u03b5\u03c1\u03b1\u03c3\u03c4\u03ae\u03c2","relationship_type_lover_female":"\u03b5\u03c1\u03b1\u03c3\u03c4\u03ae\u03c2","relationship_type_lover_female_with_name":"\u03b5\u03c1\u03b1\u03c3\u03c4\u03ae\u03c2 :name","relationship_type_lover_with_name":"\u03b5\u03c1\u03b1\u03c3\u03c4\u03ae\u03c2 :name","relationship_type_mentor":"\u03c3\u03cd\u03bc\u03b2\u03bf\u03c5\u03bb\u03bf\u03c2","relationship_type_mentor_female":"\u03bc\u03ad\u03bd\u03c4\u03bf\u03c1\u03b1\u03c2","relationship_type_mentor_female_with_name":"\u03c3\u03cd\u03bc\u03b2\u03bf\u03c5\u03bb\u03bf\u03c2 \u03c4\u03b7\u03c2 :name","relationship_type_mentor_with_name":"\u03c3\u03cd\u03bc\u03b2\u03bf\u03c5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_nephew":"\u03b1\u03bd\u03b9\u03c8\u03b9\u03cc\u03c2","relationship_type_nephew_female":"\u03b1\u03bd\u03b9\u03c8\u03b9\u03ac","relationship_type_nephew_female_with_name":"\u03b1\u03bd\u03b9\u03c8\u03b9\u03ac \u03c4\u03bf\u03c5 :name","relationship_type_nephew_with_name":"\u03b1\u03bd\u03b9\u03c8\u03b9\u03cc\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_parent":"\u03c0\u03b1\u03c4\u03ad\u03c1\u03b1\u03c2","relationship_type_parent_female":"\u03bc\u03b7\u03c4\u03ad\u03c1\u03b1","relationship_type_parent_female_with_name":"\u03bc\u03b7\u03c4\u03ad\u03c1\u03b1 :name","relationship_type_parent_with_name":"\u03c0\u03b1\u03c4\u03ad\u03c1\u03b1\u03c2 :name","relationship_type_partner":"\u03c3\u03cd\u03bd\u03c4\u03c1\u03bf\u03c6\u03bf\u03c2","relationship_type_partner_female":"\u03c3\u03cd\u03bd\u03c4\u03c1\u03bf\u03c6\u03bf\u03c2","relationship_type_partner_female_with_name":"\u03c3\u03cd\u03bd\u03c4\u03c1\u03bf\u03c6\u03bf\u03c2 :name","relationship_type_partner_with_name":"\u03c3\u03cd\u03bd\u03c4\u03c1\u03bf\u03c6\u03bf\u03c2 :name","relationship_type_protege":"\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2","relationship_type_protege_female":"\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03b7","relationship_type_protege_female_with_name":"\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c4\u03bf\u03c5 :name","relationship_type_protege_with_name":"\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_sibling":"\u03b1\u03b4\u03b5\u03c1\u03c6\u03cc\u03c2","relationship_type_sibling_female":"\u03b1\u03b4\u03b5\u03c1\u03c6\u03ae","relationship_type_sibling_female_with_name":"\u03b1\u03b4\u03b5\u03c1\u03c6\u03ae \u03c4\u03bf\u03c5 :name","relationship_type_sibling_with_name":"\u03b1\u03b4\u03b5\u03c1\u03c6\u03cc\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_spouse":"\u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2","relationship_type_spouse_female":"\u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2","relationship_type_spouse_female_with_name":"\u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2 :name","relationship_type_spouse_with_name":"\u03c3\u03cd\u03b6\u03c5\u03b3\u03bf\u03c2 :name","relationship_type_stepchild":"\u03b3\u03b9\u03cc\u03c2 \u03b5\u03be' \u03b1\u03b3\u03c7\u03b9\u03c3\u03c4\u03b5\u03af\u03b1\u03c2","relationship_type_stepchild_female":"\u03ba\u03cc\u03c1\u03b7 \u03b5\u03be' \u03b1\u03b3\u03c7\u03b9\u03c3\u03c4\u03b5\u03af\u03b1\u03c2","relationship_type_stepchild_female_with_name":"\u03ba\u03cc\u03c1\u03b7 \u03b5\u03be' \u03b1\u03b3\u03c7\u03b9\u03c3\u03c4\u03b5\u03af\u03b1\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_stepchild_with_name":"\u03b3\u03b9\u03bf\u03c2 \u03b5\u03be' \u03b1\u03b3\u03c7\u03b9\u03c3\u03c4\u03b5\u03af\u03b1\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_stepparent":"\u03c0\u03b1\u03c4\u03c1\u03b9\u03cc\u03c2","relationship_type_stepparent_female":"\u03bc\u03b7\u03c4\u03c1\u03b9\u03ac","relationship_type_stepparent_female_with_name":"\u03c0\u03b1\u03c4\u03c1\u03b9\u03cc\u03c2 :name","relationship_type_stepparent_with_name":"\u03c0\u03b1\u03c4\u03c1\u03af\u03bf\u03c2 :name","relationship_type_subordinate":"\u03c5\u03c6\u03b9\u03c3\u03c4\u03ac\u03bc\u03b5\u03bd\u03bf\u03c2","relationship_type_subordinate_female":"\u03c5\u03c6\u03b9\u03c3\u03c4\u03ac\u03bc\u03b5\u03bd\u03b7","relationship_type_subordinate_female_with_name":"\u03c5\u03c6\u03b9\u03c3\u03c4\u03ac\u03bc\u03b5\u03bd\u03b7 \u03c4\u03bf\u03c5 :name","relationship_type_subordinate_with_name":"\u03c5\u03c6\u03b9\u03c3\u03c4\u03ac\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","relationship_type_uncle":"\u03b8\u03b5\u03af\u03bf\u03c2","relationship_type_uncle_female":"\u03b8\u03b5\u03af\u03b1","relationship_type_uncle_female_with_name":"\u03b8\u03b5\u03af\u03b1 \u03c4\u03bf\u03c5 :name","relationship_type_uncle_with_name":"\u03b8\u03b5\u03af\u03bf\u03c2 \u03c4\u03bf\u03c5 :name","remove":"\u039a\u03b1\u03c4\u03ac\u03c1\u03b3\u03b7\u03c3\u03b7","retry":"\u039e\u03b1\u03bd\u03b1\u03b4\u03bf\u03ba\u03b9\u03bc\u03ac\u03c3\u03c4\u03b5","revoke":"\u0391\u03bd\u03ac\u03ba\u03bb\u03b7\u03c3\u03b7","save":"\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7","save_close":"\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03ba\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf","today":"\u03c3\u03ae\u03bc\u03b5\u03c1\u03b1","type":"\u03a4\u03cd\u03c0\u03bf\u03c2","unknown":"\u0394\u03b5\u03bd \u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03c9","update":"\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7","upgrade":"\u0391\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03b5\u03c4\u03b5","upload":"\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7","verify":"\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7","weather_clear-day":"\u039a\u03b1\u03b8\u03b1\u03c1\u03ae \u03bc\u03ad\u03c1\u03b1","weather_clear-night":"\u039a\u03b1\u03b8\u03b1\u03c1\u03ae \u03bd\u03cd\u03c7\u03c4\u03b1","weather_cloudy":"\u03a3\u03c5\u03bd\u03bd\u03b5\u03c6\u03b9\u03ac","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"\u03a4\u03c1\u03ad\u03c7\u03c9\u03bd \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2","weather_fog":"\u039f\u03bc\u03af\u03c7\u03bb\u03b7","weather_partly-cloudy-day":"\u0391\u03c1\u03b1\u03b9\u03ae \u03c3\u03c5\u03bd\u03bd\u03b5\u03c6\u03b9\u03ac","weather_partly-cloudy-night":"\u0391\u03c1\u03b1\u03b9\u03ae \u03c3\u03c5\u03bd\u03bd\u03b5\u03c6\u03b9\u03ac","weather_rain":"\u0392\u03c1\u03bf\u03c7\u03ae","weather_sleet":"\u03a7\u03b9\u03bf\u03bd\u03cc\u03bd\u03b5\u03c1\u03bf","weather_snow":"\u03a7\u03b9\u03cc\u03bd\u03b9","weather_wind":"\u0386\u03bd\u03b5\u03bc\u03bf\u03c2","with":"\u03bc\u03b5","yes":"\u039d\u03b1\u03b9","yesterday":"\u03c7\u03b8\u03b5\u03c2","zoom":"\u039c\u03b5\u03b3\u03ad\u03b8\u03c5\u03bd\u03c3\u03b7"},"auth":{"2fa_one_time_password":"\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b4\u03cd\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd","2fa_otp_help":"\u0391\u03bd\u03bf\u03af\u03be\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b4\u03cd\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd \u03c3\u03c4\u03bf \u03ba\u03b9\u03bd\u03b7\u03c4\u03cc \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc","2fa_recuperation_code":"\u03a0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b4\u03cd\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd","2fa_title":"\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03a4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u0394\u03c5\u03bf \u03a0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd","2fa_wrong_validation":"\u039f \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b4\u03cd\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5.","back_homepage":"\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c3\u03c4\u03b7\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03ae \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","button_remember":"\u039d\u03b1 \u03bc\u03b5 \u03b8\u03c5\u03bc\u03ac\u03c3\u03b1\u03b9","change_language":"\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u03c3\u03b5 :lang","change_language_title":"\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2:","confirmation_again":"\u0391\u03bd \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email \u03c3\u03b1\u03c2 \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b5\u03b4\u03ce<\/a>.","confirmation_check":"\u03a0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf email \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf \u03b5\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7\u03c2.","confirmation_fresh":"\u0388\u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03c9\u03c4\u03b9\u03ba\u03cc email \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5 \u03c3\u03b1\u03c2.","confirmation_request_another":"\u0391\u03bd \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c0\u03b1\u03c1\u03b1\u03bb\u03ac\u03b2\u03b5\u03b9 \u03c4\u03bf email \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03c3\u03c4\u03b5\u03af\u03bb\u03bf\u03c5\u03bc\u03b5 \u03bd\u03ad\u03bf<\/a>.","confirmation_title":"\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7\u03c2 email","create_account":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03ce\u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03bc\u03b5 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae<\/a>","email":"Email","email_change_current_email":"\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03c4\u03b9\u03b3\u03bc\u03ae:","email_change_new":"\u039d\u03ad\u03b1 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email","email_change_title":"\u0391\u03bb\u03bb\u03ac\u03be\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email \u03c3\u03b1\u03c2","email_changed":"\u0397 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email \u03c3\u03b1\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03b9. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03ba\u03b9\u03b2\u03ce\u03c4\u03b9\u03cc \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03bf \u03b5\u03c0\u03b9\u03ba\u03c5\u03c1\u03ce\u03c3\u03b5\u03c4\u03b5.","failed":"\u03a4\u03b1 \u03b4\u03b9\u03b1\u03c0\u03b9\u03c3\u03c4\u03b5\u03c5\u03c4\u03ae\u03c1\u03b9\u03b1 \u03b4\u03b5\u03bd \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5 \u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b1\u03c2.","login":"\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7","login_again":"\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2 \u03be\u03b1\u03bd\u03ac","login_to_account":"\u03a3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2","login_with_recovery":"\u03a3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03ad\u03bd\u03b1\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7\u03c2","mfa_auth_otp":"\u03a0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03bc\u03b5 \u03c4\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b4\u03cd\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd","mfa_auth_webauthn":"\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03bc\u03b5 \u03ba\u03bb\u03b5\u03b9\u03b4\u03af \u03b1\u03c3\u03c6\u03b1\u03bb\u03b5\u03af\u03b1\u03c2 (WebAuthn)","not_authorized":"\u0394\u03b5\u03bd \u03b5\u03af\u03c3\u03c4\u03b5 \u03b5\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03bf\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf\u03b9 \u03bd\u03b1 \u03b5\u03ba\u03c4\u03b5\u03bb\u03ad\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1","password":"\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2","password_forget":"\u039e\u03b5\u03c7\u03ac\u03c3\u03b1\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2;","password_reset":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_reset_action":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_reset_email":"\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 E-mail","password_reset_email_content":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2:","password_reset_password":"\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_reset_password_confirm":"\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_reset_send_link":"\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_reset_title":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","recovery":"\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7\u03c2","register_action":"\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae","register_create_account":"\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Monica","register_email":"\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email","register_email_example":"\u03b5\u03c3\u03b5\u03af\u03c2@\u03c3\u03c0\u03af\u03c4\u03b9","register_firstname":"\u038c\u03bd\u03bf\u03bc\u03b1","register_firstname_example":"\u03c0.\u03c7. \u039a\u03ce\u03c3\u03c4\u03b1\u03c2","register_invitation_email":"\u0393\u03b9\u03b1 \u03bb\u03cc\u03b3\u03bf\u03c5\u03c2 \u03b1\u03c3\u03c6\u03b1\u03bb\u03b5\u03af\u03b1\u03c2, \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03b1\u03c4\u03cc\u03bc\u03bf\u03c5 \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c3\u03ba\u03ac\u03bb\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03b5\u03af\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc. \u0391\u03c5\u03c4\u03ad\u03c2 \u03bf\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c0\u03b1\u03c1\u03ad\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf email \u03c0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7\u03c2.","register_lastname":"\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf","register_lastname_example":"\u03c0.\u03c7. \u03a0\u03b1\u03c0\u03b1\u03b4\u03cc\u03c0\u03bf\u03c5\u03bb\u03bf\u03c2","register_login":"\u03a3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af\u03c4\u03b5<\/a> \u03b1\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03ae\u03b4\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc.","register_password":"\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","register_password_confirmation":"\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","register_password_example":"\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03b1\u03c3\u03c6\u03b1\u03bb\u03ae \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc","register_policy":"\u0397 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b1\u03c2 \u03c3\u03b7\u03bc\u03b1\u03af\u03bd\u03b5\u03b9 \u03cc\u03c4\u03b9 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b1\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bc\u03c6\u03c9\u03bd\u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03a0\u03bf\u03bb\u03b9\u03c4\u03b9\u03ba\u03ae \u03b1\u03c0\u03bf\u03c1\u03c1\u03ae\u03c4\u03bf\u03c5<\/a> \u03ba\u03b1\u03b9 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03b7\u03c2<\/a>.","register_title_create":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc Monica","register_title_welcome":"\u039a\u03b1\u03bb\u03ce\u03c2 \u03ae\u03bb\u03b8\u03b1\u03c4\u03b5 \u03c3\u03c4\u03b7\u03bd \u03bd\u03ad\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03bf\u03c5 Monica","signup":"\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae","signup_disabled":"\u0397 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7 \u03c3\u03c4\u03b9\u03b3\u03bc\u03ae","signup_error":"\u03a0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7","signup_no_account":"\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc;","throttle":"\u03a0\u03b1\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b5\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03bf\u03ba\u03b9\u03bc\u03ac\u03c3\u03c4\u03b5 \u03be\u03b1\u03bd\u03ac \u03c3\u03b5 :seconds \u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1.","use_recovery":"\u0389 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2<\/a>"},"changelog":{"note":"\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u0394\u03c5\u03c3\u03c4\u03c5\u03c7\u03ce\u03c2 \u03b1\u03c5\u03c4\u03ae \u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03bc\u03cc\u03bd\u03bf \u03c3\u03c4\u03b1 \u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac.","title":"\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2"},"dashboard":{"dashboard_blank_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"\u03a7\u03c1\u03c9\u03c3\u03c4\u03ac\u03c4\u03b5","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03bf\u03c2","product_view_details":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03b5\u03c1\u03b5\u03b9\u03ce\u03bd","reminders_next_months":"\u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c4\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 3 \u03bc\u03ae\u03bd\u03b5\u03c2","reminders_none":"\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03b1.","statistics_activities":"\u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2","statistics_contacts":"\u0395\u03c0\u03b1\u03c6\u03ad\u03c2","statistics_gifts":"\u0394\u03ce\u03c1\u03b1","tab_calls_blank":"\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03b9 \u03ba\u03b1\u03bc\u03af\u03b1 \u03ba\u03bb\u03ae\u03c3\u03b7 \u03b1\u03ba\u03cc\u03bc\u03b1.","tab_debts":"\u03a7\u03c1\u03ad\u03b7","tab_debts_blank":"\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03b9 \u03b1\u03ba\u03cc\u03bc\u03b7 \u03c7\u03c1\u03ad\u03b7.","tab_favorite_notes":"\u0391\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2","tab_recent_calls":"Recent calls","tab_tasks":"\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2","tab_tasks_blank":"\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b1\u03ba\u03cc\u03bc\u03b1 \u03ba\u03b1\u03bc\u03af\u03b1 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"\u03a4\u03b9 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c5\u03c4\u03ae \u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1;","tasks_tab_your_contacts":"\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c3\u03c7\u03b5\u03c4\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2 \u03c3\u03b1\u03c2","tasks_tab_your_tasks":"\u039f\u03b9 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c3\u03b1\u03c2"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"\u0395\u03c5\u03c7\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bc\u03b5. \u0395\u03bb\u03ac\u03c4\u03b5 \u03b1\u03cd\u03c1\u03b9\u03bf \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03be\u03b9\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03bc\u03ad\u03c1\u03b1 \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03ac\u03bb\u03b9.","journal_created_at":"Created at {date}","journal_created_automatically":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"\u03a0\u03ce\u03c2 \u03ae\u03c4\u03b1\u03bd \u03b7 \u03bc\u03ad\u03c1\u03b1 \u03c3\u03b1\u03c2? \u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03be\u03b9\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c6\u03bf\u03c1\u03ac \u03c4\u03b7\u03bd \u03b7\u03bc\u03ad\u03c1\u03b1.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bd\u03ad\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ae.","contact_log_contact_description_cleared":"\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5 \u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae.","contact_log_contact_description_updated":"\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae.","contact_log_contact_work_updated":"\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2.","settings_log_company_created":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 :name.","settings_log_contact_created_with_name":"\u03a0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 :name \u03c9\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae.","settings_log_contact_description_cleared_with_name":"\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5 \u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 :name.","settings_log_contact_description_updated_with_name":"\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 :name.","settings_log_contact_work_updated_with_name":"\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03bf\u03c5 :name."},"mail":{"comment":"\u03a3\u03c7\u03cc\u03bb\u03b9\u03bf: :comment","confirmation_email_bottom":"\u0391\u03bd \u03b4\u03b5\u03bd \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc, \u03b4\u03b5\u03bd \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b1\u03b9\u03c4\u03ad\u03c1\u03c9 \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1.","confirmation_email_button":"\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7\u03c2 email","confirmation_email_intro":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf email \u03c3\u03b1\u03c2, \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03ba\u03bf\u03c5\u03bc\u03c0\u03af","confirmation_email_title":"Monica \u2013 Email \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2","footer_contact_info":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5, \u03b4\u03b5\u03af\u03c4\u03b5, \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae:","footer_contact_info2":"\u0394\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c4\u03bf\u03c5 :name","footer_contact_info2_link":"\u0394\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c4\u03bf\u03c5 :name","for":"\u03a0\u03c1\u03bf\u03c2: :name","greetings":"\u0393\u03b5\u03b9\u03b1 \u03c3\u03bf\u03c5 :username","invitation_button":"\u0391\u03c0\u03bf\u03b4\u03bf\u03c7\u03ae \u03c0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7\u03c2","invitation_expiration":"\u039f \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03b8\u03b1 \u03bb\u03ae\u03be\u03b5\u03b9 \u03c3\u03b5 :count \u03bc\u03ad\u03c1\u03b5\u03c2.","invitation_intro":"\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :name (:email) \u03c3\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c3\u03ba\u03ac\u03bb\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Monica, \u03ad\u03bd\u03b1 \u03c9\u03c1\u03b1\u03af\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ce\u03bd \u03a3\u03c7\u03ad\u03c3\u03b5\u03c9\u03bd.","invitation_link":"\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7, \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9:","invitation_title":"Monica \u2013 \u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :name \u03c3\u03b1\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03ba\u03b1\u03bb\u03ad\u03c3\u03b5\u03b9","notification_description":"\u03a3\u03b5 :count \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2 (:date) \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b5\u03ba\u03b4\u03ae\u03bb\u03c9\u03c3\u03b7:","notification_subject_line":"\u0388\u03c7\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b5\u03ba\u03b4\u03ae\u03bb\u03c9\u03c3\u03b7","notifications_footer":"\u0395\u03ac\u03bd \u03b1\u03bd\u03c4\u03b9\u03bc\u03b5\u03c4\u03c9\u03c0\u03af\u03b6\u03b5\u03c4\u03b5 \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03ba\u03ac\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03bf \u03ba\u03bf\u03c5\u03bc\u03c0\u03af \":actionText\", \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c3\u03c4\u03bf \u03c0\u03c1\u03cc\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2: [:actionURL] (:actionURL)","notifications_hello":"\u0393\u03b5\u03b9\u03ac!","notifications_regards":"\u039c\u03b5 \u03b5\u03ba\u03c4\u03af\u03bc\u03b7\u03c3\u03b7,","notifications_rights":"\u039c\u03b5 \u03b5\u03c0\u03b9\u03c6\u03cd\u03bb\u03b1\u03be\u03b7 \u03c0\u03b1\u03bd\u03c4\u03cc\u03c2 \u03b4\u03b9\u03ba\u03b1\u03b9\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2","notifications_whoops":"\u039f\u03c5\u03c0\u03c2!","password_reset_bottom":"\u0391\u03bd \u03b4\u03b5\u03bd \u03b6\u03b7\u03c4\u03ae\u03c3\u03b1\u03c4\u03b5 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2, \u03b4\u03b5\u03bd \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b1\u03b9\u03c4\u03ad\u03c1\u03c9 \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1.","password_reset_button":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_reset_expiration":"\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b8\u03b1 \u03bb\u03ae\u03be\u03b5\u03b9 \u03c3\u03b5 :count \u03bb\u03b5\u03c0\u03c4\u03ac.","password_reset_intro":"\u039b\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf email \u03b3\u03b9\u03b1\u03c4\u03af \u03bb\u03ac\u03b2\u03b1\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b1\u03af\u03c4\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc.","password_reset_title":"Monica \u2013 \u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","stay_in_touch_subject_description":"\u0396\u03b7\u03c4\u03ae\u03c3\u03b1\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03c5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03b6\u03bf\u03c5\u03bc\u03b5 \u03bd\u03b1 \u03bc\u03ad\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 \u03c4\u03bf\u03bd :name \u03ba\u03ac\u03b8\u03b5 :frequency \u03bc\u03ad\u03c1\u03b1.|\u0396\u03b7\u03c4\u03ae\u03c3\u03b1\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03c5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03b6\u03bf\u03c5\u03bc\u03b5 \u03bd\u03b1 \u03bc\u03ad\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 \u03c4\u03bf\u03bd :name \u03ba\u03ac\u03b8\u03b5 :frequency \u03bc\u03ad\u03c1\u03b5\u03c2.","stay_in_touch_subject_line":"\u039c\u03b5\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 :name","subject_line":"\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03b3\u03b9\u03b1 :contact","want_reminded_of":"\u0395\u03af\u03c7\u03b1\u03c4\u03b5 \u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03b3\u03b9\u03b1 :reason"},"pagination":{"next":"\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u276f","previous":"\u276e \u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7"},"passwords":{"changed":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ac\u03bb\u03bb\u03b1\u03be\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ce\u03c2.","invalid":"\u039f \u03c4\u03c1\u03ad\u03c7\u03c9\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b1\u03c4\u03b5 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c9\u03c3\u03c4\u03cc\u03c2.","reset":"\u0388\u03c7\u03b5\u03b9 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03c3\u03b1\u03c2!","sent":"\u0391\u03bd \u03c4\u03bf\u00a0email \u03c0\u03bf\u03c5 \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03b1\u03c4\u03b5 \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03bc\u03b1\u03c2, \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf \u03b3\u03b9\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2.","throttled":"\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03b5\u03c1\u03b9\u03bc\u03ad\u03bd\u03b5\u03c4\u03b5 \u03c0\u03c1\u03b9\u03bd \u03be\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5.","token":"\u0391\u03c5\u03c4\u03cc \u03c4\u03bf \u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03cc \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf.","user":"\u0391\u03bd \u03c4\u03bf email \u03c0\u03bf\u03c5 \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03b1\u03c4\u03b5 \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03bc\u03b1\u03c2, \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf \u03b3\u03b9\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2."},"people":{"activities_activity":"Activity Category","activities_add_activity":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c5\u03bc\u03bc\u03b5\u03c4\u03b5\u03c7\u03cc\u03bd\u03c4\u03c9\u03bd","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"\u0397 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"\u0397 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","activities_item_information":":Activity. Happened on :date","activities_list_category":"\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1:","activities_list_date":"\u03a3\u03c5\u03bd\u03ad\u03b2\u03b7 \u03c3\u03c4\u03b9\u03c2","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"\u0397 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","activities_view_activities_report":"View activities report","activities_who_was_involved":"\u03a0\u03bf\u03b9\u03cc\u03c2 \u03c3\u03c5\u03bc\u03bc\u03b5\u03c4\u03b5\u03af\u03c7\u03b5;","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"\u03a6\u03b1\u03b3\u03b7\u03c4\u03cc","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"\u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 :age \u03b5\u03c4\u03ce\u03bd","age_exact_birthdate":"\u03b3\u03b5\u03bd\u03bd\u03ae\u03b8\u03b7\u03ba\u03b5 :date","age_exact_in_years":":age \u03b5\u03c4\u03ce\u03bd","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03b7\u03bc\u03ad\u03c1\u03b1 \u03b3\u03b5\u03bd\u03b5\u03b8\u03bb\u03af\u03c9\u03bd","call_blank_desc":"\u039a\u03bb\u03ae\u03c3\u03b7 \u03c3\u03b5 {name}","call_blank_title":"\u03a0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c4\u03b7\u03bb\u03b5\u03c6\u03c9\u03bd\u03b9\u03ba\u03ad\u03c2 \u03ba\u03bb\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae {name}","call_button":"\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u03ba\u03bb\u03ae\u03c3\u03b7\u03c2","call_delete_confirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae;","call_delete_success":"\u0397 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03ad\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","call_emotions":"\u03a3\u03c5\u03bd\u03b1\u03b9\u03c3\u03b8\u03ae\u03bc\u03b1\u03c4\u03b1:","call_empty_comment":"\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2","call_he_called":"\u03ba\u03ac\u03bb\u03b5\u03c3\u03b5 \u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae {name}","call_title":"\u03a4\u03b7\u03bb\u03b5\u03c6\u03c9\u03bd\u03b9\u03ba\u03ad\u03c2 \u03ba\u03bb\u03ae\u03c3\u03b5\u03b9\u03c2","call_you_called":"\u039a\u03b1\u03bb\u03ad\u03c3\u03b1\u03c4\u03b5 \u03b5\u03c3\u03b5\u03af\u03c2","calls_add_success":"\u0397 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2","contact_archive_help":"\u039f\u03b9 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2 \u03b4\u03b5\u03bd \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd, \u03b1\u03bb\u03bb\u03ac \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"\u0391\u03bd\u03ac\u03ba\u03bb\u03b7\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2","conversation_add_another":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03ac\u03bb\u03bb\u03bf \u03ad\u03bd\u03b1 \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1","conversation_add_content":"\u0393\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03b9 \u03b5\u03b9\u03c0\u03ce\u03b8\u03b7\u03ba\u03b5","conversation_add_error":"\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd \u03ad\u03bd\u03b1 \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1.","conversation_add_how":"\u03a0\u03ce\u03c2 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03b1\u03c4\u03b5;","conversation_add_success":"\u0397 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1.","conversation_add_title":"\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b9\u03b1\u03c2 \u03bd\u03ad\u03b1\u03c2 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1\u03c2","conversation_add_what_was_said":"\u03a4\u03b9 \u03b5\u03af\u03c0\u03b1\u03c4\u03b5;","conversation_add_when":"\u03a0\u03cc\u03c4\u03b5 \u03b5\u03af\u03c7\u03b1\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1;","conversation_add_who_wrote":"\u03a0\u03bf\u03b9\u03bf\u03c2 \u03b5\u03af\u03c0\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1;","conversation_add_you":"\u0395\u03c3\u03b5\u03af\u03c2","conversation_blank":"\u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b5\u03c2 \u03c3\u03b1\u03c2 \u03bc\u03b5 :name \u03c3\u03c4\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03b9\u03ba\u03ae\u03c2 \u03b4\u03b9\u03ba\u03c4\u03cd\u03c9\u03c3\u03b7\u03c2, SMS, ...","conversation_delete_link":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1\u03c2","conversation_delete_success":"\u0397 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ce\u03c2.","conversation_edit_delete":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae; \u0394\u03b5\u03bd \u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7.","conversation_edit_success":"\u0397 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1.","conversation_edit_title":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1\u03c2","conversation_list_cta":"\u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03bc\u03af\u03b1 \u03c3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b1","conversation_list_table_content":"\u039c\u03b5\u03c1\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf (\u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1)","conversation_list_table_messages":"\u039c\u03c5\u03bd\u03ae\u03bc\u03b1\u03c4\u03b1","conversation_list_title":"\u03a3\u03c5\u03bd\u03bf\u03bc\u03b9\u03bb\u03af\u03b5\u03c2","debt_add_add_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c7\u03c1\u03ad\u03bf\u03c2","debt_add_amount":"\u03c4\u03bf \u03c3\u03cd\u03bd\u03bf\u03bb\u03bf \u03c4\u03bf\u03c5","debt_add_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c7\u03c1\u03ad\u03bf\u03c2","debt_add_reason":"\u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03bb\u03cc\u03b3\u03bf (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":"\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :name \u03c3\u03bf\u03c5 \u03c7\u03c1\u03c9\u03c3\u03c4\u03ac\u03b5\u03b9","debt_add_title":"\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03c7\u03c1\u03ad\u03bf\u03c5\u03c2","debt_add_you_owe":"\u03a7\u03c1\u03c9\u03c3\u03c4\u03ac\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"\u03a4\u03bf \u03c7\u03c1\u03ad\u03bf\u03c2 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","debt_edit_update_cta":"\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c7\u03c1\u03ad\u03bf\u03c5\u03c2","debt_they_owe":"\u0395 \u03b5\u03c0\u03b1\u03c6\u03ae :name \u03c3\u03b1\u03c2 \u03c7\u03c1\u03c9\u03c3\u03c4\u03ac\u03b5\u03b9 :amount","debt_title":"\u03a7\u03c1\u03ad\u03b7","debt_you_owe":"\u03a7\u03c1\u03c9\u03c3\u03c4\u03ac\u03c4\u03b5 :amount","debts_blank_title":"\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03c7\u03c1\u03ad\u03bf\u03c5\u03c2 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03c9\u03c3\u03c4\u03ac\u03c4\u03b5 \u03ae \u03c3\u03b1\u03c2 \u03c7\u03c1\u03c9\u03c3\u03c4\u03ac\u03b5\u03b9 \u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae :name","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"\u03a3\u03c7\u03cc\u03bb\u03b9\u03bf (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"\u03a0\u03b1\u03c1\u03b1\u03bb\u03ae\u03c0\u03c4\u03b7\u03c2 (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","gifts_add_recipient_field":"\u03a0\u03b1\u03c1\u03b1\u03bb\u03ae\u03c0\u03c4\u03b7\u03c2","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"\u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7 \u03c9\u03c2 \u03bc\u03af\u03b1 \u03b9\u03b4\u03ad\u03b1","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03c7\u03bf\u03bb\u03af\u03bf\u03c5","information_edit_birthdate_label":"\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b3\u03ad\u03bd\u03bd\u03b7\u03c3\u03b7\u03c2","information_edit_description":"\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae (\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"\u039e\u03ad\u03c1\u03c9 \u03c4\u03b7\u03bd \u03b1\u03ba\u03c1\u03b9\u03b2\u03ae \u03b7\u03bc\u03ad\u03c1\u03b1 \u03b3\u03b5\u03bd\u03b5\u03b8\u03bb\u03af\u03c9\u03bd \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03b1\u03c4\u03cc\u03bc\u03bf\u03c5...","information_edit_firstname":"\u038c\u03bd\u03bf\u03bc\u03b1","information_edit_lastname":"\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf (\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","information_edit_max_size":"\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf :size Kb.","information_edit_max_size2":"\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf {size} Kb.","information_edit_not_year":"\u0393\u03bd\u03c9\u03c1\u03af\u03b6\u03c9 \u03c4\u03b7\u03bd \u03b7\u03bc\u03ad\u03c1\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03bc\u03ae\u03bd\u03b1 \u03c4\u03b7\u03c2 \u03b7\u03bc\u03ad\u03c1\u03b1\u03c2 \u03b3\u03b5\u03bd\u03b5\u03b8\u03bb\u03af\u03c9\u03bd \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03b1\u03c4\u03cc\u03bc\u03bf\u03c5, \u03b1\u03bb\u03bb\u03ac \u03cc\u03c7\u03b9 \u03c4\u03bf \u03ad\u03c4\u03bf\u03c2\u2026","information_edit_probably":"\u0391\u03c5\u03c4\u03cc \u03c4\u03bf \u03ac\u03c4\u03bf\u03bc\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5...","information_edit_success":"\u03a0\u03c1\u03bf\u03c6\u03af\u03bb \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","information_edit_title":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2 :name","information_edit_unknown":"\u0394\u03b5\u03bd \u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03c9 \u03c4\u03b7\u03bd \u03b7\u03bb\u03b9\u03ba\u03af\u03b1 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03b1\u03c4\u03cc\u03bc\u03bf\u03c5","information_no_work_defined":"\u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2","information_work_at":"\u03c3\u03c4\u03bf :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"\u039a\u03b1\u03bd\u03ad\u03bd\u03b1\u03c2","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"\u03a0\u03ce\u03c2 \u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03ae\u03ba\u03b1\u03c4\u03b5;","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bc\u03b1\u03b6\u03af: :date","last_activity_date_empty":"\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bc\u03b1\u03b6\u03af: \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf","last_called":"\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03ba\u03bb\u03ae\u03c3\u03b7: :date","last_called_empty":"\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03ba\u03bb\u03ae\u03c3\u03b7: \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"\u038c\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"\u0395\u03ba\u03b4\u03b7\u03bb\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b6\u03c9\u03ae\u03c2","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"\u0395\u03ba\u03b4\u03b7\u03bb\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b6\u03c9\u03ae\u03c2","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"\u03a3\u03c5\u03bd\u03c4\u03b1\u03be\u03b9\u03bf\u03cd\u03c7\u03bf\u03c2","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"\u0392\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2. \u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b5\u03b4\u03ce<\/a> \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2.","list_link_to_archived_contacts":"\u039b\u03af\u03c3\u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03b5\u03c4\u03b7\u03bc\u03ad\u03bd\u03c9\u03bd \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd","me":"\u0391\u03c5\u03c4\u03cc\u03c2 \u03b5\u03af\u03c3\u03b1\u03b9 \u03b5\u03c3\u03cd","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03b1\u03c4\u03b1\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c0\u03c9\u03c2 \u03bd\u03b9\u03ce\u03c3\u03b1\u03c4\u03b5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c4\u03bf\u03c5 \u03c4\u03b7\u03bb\u03b5\u03c6\u03c9\u03bd\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2; (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","modal_call_exact_date":"\u03a4\u03bf \u03c4\u03b7\u03bb\u03b5\u03c6\u03ce\u03bd\u03b7\u03bc\u03b1 \u03ad\u03b3\u03b9\u03bd\u03b5 \u03c3\u03c4\u03b9\u03c2","modal_call_title":"\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u03ba\u03bb\u03ae\u03c3\u03b7\u03c2","modal_call_who_called":"\u03a0\u03bf\u03b9\u03cc\u03c2 \u03c0\u03ae\u03c1\u03b5 \u03c4\u03b7\u03bb\u03ad\u03c6\u03c9\u03bd\u03bf;","notes_add_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7\u03c2","notes_create_success":"\u0397 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03ad\u03c7\u03b5\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"\u0397 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","notes_delete_title":"Delete a note","notes_favorite":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\/\u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c0\u03cc \u03c4\u03b1 \u03b1\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03b1","notes_update_success":"\u0397 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","people_add_birthday_reminder":"\u0395\u03c5\u03c7\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c7\u03c1\u03cc\u03bd\u03b9\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ac \u03c3\u03c4\u03bf\u03bd :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7","people_add_firstname":"\u038c\u03bd\u03bf\u03bc\u03b1","people_add_gender":"\u03a6\u03cd\u03bb\u03bf","people_add_import":"Do you want to import your contacts<\/a>?","people_add_lastname":"\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf (\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","people_add_middlename":"\u039c\u03b5\u03c3\u03b1\u03af\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 (\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","people_add_missing":"\u0394\u03b5\u03bd \u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u0386\u03c4\u03bf\u03bc\u03b1 \u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u0388\u03bd\u03b1 \u03a4\u03ce\u03c1\u03b1","people_add_new":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03b1\u03c4\u03cc\u03bc\u03bf\u03c5","people_add_nickname":"\u03a8\u03b5\u03c5\u03b4\u03ce\u03bd\u03c5\u03bc\u03bf (\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","people_add_reminder_for_birthday":"\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5 \u03bc\u03af\u03b1 \u03b5\u03c4\u03ae\u03c3\u03b9\u03b1 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b7\u03bc\u03ad\u03c1\u03b1 \u03b3\u03b5\u03bd\u03b5\u03b8\u03bb\u03af\u03c9\u03bd","people_add_success":"\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :name \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03af\u03b1","people_add_title":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03b1\u03c4\u03cc\u03bc\u03bf\u03c5","people_delete_confirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae; \u0397 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03b9\u03bc\u03b7.","people_delete_message":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2","people_delete_success":"\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae \u03ad\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af","people_edit_email_error":"\u039c\u03af\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03c3\u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03b9\u03b1\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03af\u03b1 \u03ac\u03bb\u03bb\u03b7.","people_export":"\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c9\u03c2 vCard","people_list_account_upgrade_cta":"\u0391\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03ce\u03c1\u03b1","people_list_account_upgrade_title":"\u0391\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03b5\u03c4\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03c4\u03bf\u03c5.","people_list_account_usage":"\u03a7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c3\u03b1\u03c2: :current\/:limit \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2","people_list_blank_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd","people_list_blank_title":"\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ae \u03c3\u03c4\u03bf\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2 \u03b1\u03ba\u03cc\u03bc\u03b7","people_list_clear_filter":"\u039a\u03b1\u03c4\u03ac\u03c1\u03b3\u03b7\u03c3\u03b7 \u03c6\u03af\u03bb\u03c4\u03c1\u03bf\u03c5","people_list_contacts_per_tags":"1 \u03b5\u03c0\u03b1\u03c6\u03ae|:count \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2","people_list_filter_tag":"\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd \u03bc\u03b5 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1","people_list_filter_untag":"\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd \u03c7\u03c9\u03c1\u03af\u03c2 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2","people_list_firstnameAZ":"\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03bc\u03b5 \u038c\u03bd\u03bf\u03bc\u03b1 \u0391 \u2192 \u03a9","people_list_firstnameZA":"\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03bc\u03b5 \u038c\u03bd\u03bf\u03bc\u03b1 \u03a9 \u2192 \u0391","people_list_hide_dead":"\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03b8\u03b1\u03bd\u03cc\u03bd\u03c4\u03c9\u03bd (:count)","people_list_last_updated":"\u03a3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03b5\u03c5\u03c4\u03ae\u03ba\u03b1\u03c4\u03b5 \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1:","people_list_lastactivitydateNewtoOld":"\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03bc\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03bd\u03b5\u03cc\u03c4\u03b5\u03c1\u03bf \u03ad\u03c9\u03c2 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf","people_list_lastactivitydateOldtoNew":"\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03bc\u03b5 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf \u03c0\u03c1\u03bf\u03c2 \u03bd\u03b5\u03cc\u03c4\u03b5\u03c1\u03bf","people_list_lastnameAZ":"\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03bc\u03b5 \u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf \u0391 \u2192 \u03a9","people_list_lastnameZA":"\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7 \u03bc\u03b5 \u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf \u03a9 \u2192 \u0391","people_list_number_kids":"1 \u03c0\u03b1\u03b9\u03b4\u03af|:count \u03c0\u03b1\u03b9\u03b4\u03b9\u03ac","people_list_number_reminders":"1 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7|:count \u03c5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03c3\u03b5\u03b9\u03c2","people_list_show_dead":"\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b8\u03b1\u03bd\u03cc\u03bd\u03c4\u03c9\u03bd (:count)","people_list_sort":"\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7","people_list_stats":"1 \u03b5\u03c0\u03b1\u03c6\u03ae|:count \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2","people_list_untagged":"\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd \u03c7\u03c9\u03c1\u03af\u03c2 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1","people_not_found":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae","people_save_and_add_another_cta":"\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03bf\u03c5","people_search":"\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2...","people_search_all":"\u038c\u03bb\u03b1","people_search_next":"\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf","people_search_no_results":"\u0394\u03b5 \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1","people_search_of":"\u03b1\u03c0\u03cc","people_search_page":"\u03a3\u03b5\u03bb\u03af\u03b4\u03b1","people_search_prev":"\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf","people_search_rows_per_page":"Rows per page","pets_bird":"\u03a0\u03c4\u03b7\u03bd\u03cc","pets_cat":"\u0393\u03ac\u03c4\u03b1","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"\u03a3\u03ba\u03cd\u03bb\u03bf\u03c2","pets_fish":"\u03a8\u03ac\u03c1\u03b9","pets_hamster":"\u03a7\u03ac\u03bc\u03c3\u03c4\u03b5\u03c1","pets_horse":"\u0386\u03bb\u03bf\u03b3\u03bf","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"\u0386\u03bb\u03bb\u03bf","pets_rabbit":"\u039a\u03bf\u03c5\u03bd\u03ad\u03bb\u03b9","pets_rat":"\u0391\u03c1\u03bf\u03c5\u03c1\u03b1\u03af\u03bf\u03c2","pets_reptile":"\u0395\u03c1\u03c0\u03b5\u03c4\u03cc","pets_small_animal":"\u039c\u03b9\u03ba\u03c1\u03cc \u03b6\u03ce\u03bf","pets_title":"\u039a\u03b1\u03c4\u03bf\u03b9\u03ba\u03af\u03b4\u03b9\u03b1","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c7\u03ad\u03c3\u03b7\u03c2","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"\u03a5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ae","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03b1\u03c4\u03cc\u03bc\u03bf\u03c5","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03b1\u03c2 \u03c3\u03c7\u03ad\u03c3\u03b7\u03c2","relationship_form_is_with":"\u0391\u03c5\u03c4\u03ae \u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae \u03b5\u03af\u03bd\u03b1\u03b9...","relationship_form_is_with_name":"\u0397 \u03b5\u03c0\u03b1\u03c6\u03ae :name \u03b5\u03af\u03bd\u03b1\u03b9...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"\u03a0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c3\u03c7\u03cc\u03bb\u03b9\u03bf","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"\u039c\u03af\u03b1 \u03c6\u03bf\u03c1\u03ac","reminders_type_month":"\u03bc\u03ae\u03bd\u03b1\u03c2","reminders_type_week":"\u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1","reminders_type_year":"\u03ad\u03c4\u03bf\u03c2","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2","section_personal_activities":"\u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2","section_personal_gifts":"\u0394\u03ce\u03c1\u03b1","section_personal_notes":"\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2","section_personal_reminders":"\u03a5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03c3\u03b5\u03b9\u03c2","section_personal_tasks":"\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2","set_favorite":"\u039f\u03b9 \u03b1\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c0\u03ac\u03bd\u03c9 \u03bc\u03ad\u03c1\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ce\u03bd","stay_in_touch":"\u039c\u03b5\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae","stay_in_touch_frequency":"\u039c\u03b5\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae \u03ba\u03ac\u03b8\u03b5 \u03bc\u03ad\u03c1\u03b1|\u039c\u03b5\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae \u03ba\u03ac\u03b8\u03b5 {count} \u03bc\u03ad\u03c1\u03b5\u03c2","stay_in_touch_invalid":"\u0397 \u03c3\u03c5\u03c7\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03c4\u03bf\u03c5 0.","stay_in_touch_modal_desc":"\u039c\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03c5\u03c0\u03b5\u03bd\u03b8\u03c5\u03bc\u03af\u03b6\u03bf\u03c5\u03bc\u03b5 \u03bc\u03b5 email \u03bd\u03b1 \u03bc\u03b5\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b1\u03c6\u03ae {firstname} \u03c3\u03b5 \u03c3\u03c4\u03b1\u03b8\u03b5\u03c1\u03cc \u03c1\u03c5\u03b8\u03bc\u03cc.","stay_in_touch_modal_label":"\u03a3\u03c4\u03b5\u03af\u03bb\u03b5 \u03bc\u03bf\u03c5 email \u03ba\u03ac\u03b8\u03b5... {count} \u03bc\u03ad\u03c1\u03b1|\u03a3\u03c4\u03b5\u03af\u03bb\u03b5 \u03bc\u03bf\u03c5 email \u03ba\u03ac\u03b8\u03b5... {count} \u03bc\u03ad\u03c1\u03b5\u03c2","stay_in_touch_modal_title":"\u039c\u03b5\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae","stay_in_touch_premium":"\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03b1\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1","tag_add":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1\u03c2","tag_add_search":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03ae \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03b5\u03c4\u03b9\u03ba\u03b5\u03c4\u03ce\u03bd","tag_edit":"\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b1\u03c2","tag_no_tags":"\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03b5\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2 \u03b1\u03ba\u03cc\u03bc\u03b7","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2","work_edit_company":"\u0395\u03c4\u03b1\u03b9\u03c1\u03b5\u03af\u03b1 (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","work_edit_job":"\u0395\u03c0\u03b1\u03b3\u03b3\u03b5\u03bb\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf\u03c2 (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc)","work_edit_success":"Work information updated","work_edit_title":"\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03b1\u03c6\u03ae\u03c2 :name","work_information":"\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03c4\u03b1\u03c5\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b4\u03c5\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bd\u03c4\u03c9\u03bd","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"N\u03cc\u03bc\u03b9\u03c3\u03bc\u03b1","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c3\u03b1\u03c2","email":"\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email","email_help":"\u0391\u03c5\u03c4\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf email \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7, \u03ba\u03b1\u03b9 \u03c3\u03c4\u03bf \u03bf\u03c0\u03bf\u03af\u03bf \u03b8\u03b1 \u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b1\u03c2.","email_placeholder":"\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03b5 SQL","export_sql_explanation":"\u0397 \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03b1\u03c2 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae SQL \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03c4\u03b5 \u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b1 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03ba\u03ae \u03c3\u03b1\u03c2 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03af\u03b1 Monica. \u0391\u03c5\u03c4\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03c7\u03c1\u03ae\u03c3\u03b9\u03bc\u03bf \u03bc\u03cc\u03bd\u03bf \u03b1\u03bd \u03c4\u03c1\u03ad\u03c7\u03b5\u03c4\u03b5 Monica \u03c3\u03c4\u03bf \u03b4\u03b9\u03ba\u03cc \u03c3\u03b1\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae.","export_sql_link_instructions":"\u0394\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2<\/a> \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03ac\u03b8\u03b5\u03c4\u03b5 \u03c0\u03ce\u03c2 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03c4\u03b7\u03bd \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03ae \u03c3\u03b1\u03c2.","export_title":"\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c4\u03c9\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c3\u03b1\u03c2","export_title_sql":"\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03b5 SQL","firstname":"\u038c\u03bd\u03bf\u03bc\u03b1","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"\u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03c5\u03bc\u03b5 \u03c4\u03b7 \u03bc\u03bf\u03c1\u03c6\u03ae vCard 3.0, \u03b7 \u03bf\u03c0\u03bf\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03bc\u03bf\u03c1\u03c6\u03ae \u03b3\u03b9\u03b1 \u03c4\u03bf Contacts.app \u03c4\u03bf\u03c5 macOS \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u0395\u03c0\u03b1\u03c6\u03ad\u03c2 Google.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"\u0395\u03c0\u03ce\u03bd\u03c5\u03bc\u03bf","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae","locale_ar":"\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac","locale_cs":"\u03a4\u03c3\u03ad\u03c7\u03b9\u03ba\u03b1","locale_de":"\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac","locale_en":"\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac","locale_en-GB":"\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac (\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03bf\u03c5 \u0392\u03b1\u03c3\u03b9\u03bb\u03b5\u03af\u03bf\u03c5)","locale_es":"\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac","locale_fr":"\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac","locale_he":"\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac","locale_help":"\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b2\u03bf\u03b7\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b7 \u03bc\u03b5\u03c4\u03ac\u03c6\u03c1\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u039c\u03cc\u03bd\u03b9\u03ba\u03b1 \u03ae \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1; \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03ae\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2<\/a>.","locale_hr":"\u039a\u03c1\u03bf\u03ac\u03c4\u03b9\u03b1","locale_it":"\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac","locale_ja":"\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03ac","locale_nl":"\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac","locale_pt":"\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac","locale_pt-BR":"\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac (\u0392\u03c1\u03b1\u03b6\u03b9\u03bb\u03af\u03b1\u03c2)","locale_ru":"\u03a1\u03c9\u03c3\u03b9\u03ba\u03ac","locale_sv":"\u03a3\u03bf\u03c5\u03b7\u03b4\u03b9\u03ba\u03ac","locale_tr":"\u03a4\u03bf\u03c5\u03c1\u03ba\u03b9\u03ba\u03ac","locale_zh":"\u039a\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac (\u03b1\u03c0\u03bb\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b1)","locale_zh-TW":"\u039a\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac (\u03c0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03ac)","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03b5\u03c3\u03ac\u03c2","me_choose_placeholder":"\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03b5\u03c3\u03ac\u03c2","me_help":"\u0391\u03c5\u03c4\u03ae \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u03b5\u03c0\u03b1\u03c6\u03ae \u03c0\u03bf\u03c5 \u03c3\u03b1\u03c2<\/em> \u03b5\u03ba\u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b5\u03af \u03c3\u03c4\u03b7\u03bd Monica","me_no_contact":"\u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af \u03b5\u03c0\u03b1\u03c6\u03ad\u03c2.","me_remove_contact":"\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2","me_select":"\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ae","me_select_click":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03c0\u03b1\u03c6\u03ae.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 \u03a4\u03ac\u03b4\u03b5 \u0394\u03b5\u03af\u03bd\u03b1","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 \u0394\u03b5\u03af\u03bd\u03b1 \u03a4\u03ac\u03b4\u03b5","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_change":"Change your password","password_current":"\u03a4\u03c1\u03ad\u03c7\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_current_placeholder":"\u0395\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c4\u03c1\u03ad\u03c7\u03bf\u03bd\u03c4\u03b1 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_new1":"\u039d\u03ad\u03bf\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03bf\u03c5 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03c3\u03b1\u03c2","save":"\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03c9\u03bd","security_help":"\u0391\u03bb\u03bb\u03ac\u03be\u03c4\u03b5 \u03b8\u03ad\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c3\u03c6\u03b1\u03bb\u03b5\u03af\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2.","security_title":"\u0391\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1","settings_success":"\u039f\u03b9 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b1\u03bd!","sidebar_personalization":"\u0395\u03be\u03b1\u03c4\u03bf\u03bc\u03af\u03ba\u03b5\u03c5\u03c3\u03b7","sidebar_settings":"\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd","sidebar_settings_api":"API","sidebar_settings_auditlogs":"\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5","sidebar_settings_dav":"\u03a0\u03cc\u03c1\u03bf\u03b9 DAV","sidebar_settings_export":"\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd","sidebar_settings_import":"\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd","sidebar_settings_security":"\u0391\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1","sidebar_settings_storage":"\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b9\u03ba\u03cc\u03c2 \u03c7\u03ce\u03c1\u03bf\u03c2","sidebar_settings_subscriptions":"\u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae","sidebar_settings_tags":"\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03b5\u03c4\u03b9\u03ba\u03b5\u03c4\u03ce\u03bd","sidebar_settings_users":"\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"\u039a\u03bb\u03af\u03bc\u03b1\u03ba\u03b1 \u03b8\u03b5\u03c1\u03bc\u03bf\u03ba\u03c1\u03b1\u03c3\u03af\u03b1\u03c2","temperature_scale_celsius":"\u039a\u03b5\u03bb\u03c3\u03af\u03bf\u03c5","temperature_scale_fahrenheit":"\u03a6\u03b1\u03c1\u03b5\u03bd\u03ac\u03b9\u03c4","timezone":"\u0396\u03ce\u03bd\u03b7 \u03ce\u03c1\u03b1\u03c2","title_general":"\u0393\u03b5\u03bd\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2","title_i18n":"\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae\u03c2","title_layout":"\u0394\u03b9\u03ac\u03c4\u03b1\u03be\u03b7","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03c0\u03bf \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2: :values.","exists":"\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf :attribute \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf.","file":"T\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf.","filled":"To \u03c0\u03b5\u03b4\u03af\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c4\u03b9\u03bc\u03ae.","gt":{"array":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b1\u03c0\u03cc :value \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1.","file":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc :value kilobytes.","numeric":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc :value.","string":"T\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc :value \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2."},"gte":{"array":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 :value \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1 \u03ae \u03c0\u03b1\u03c1\u03b1\u03c0\u03ac\u03bd\u03c9.","file":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03ae \u03af\u03c3\u03bf \u03bc\u03b5 :value kilobytes.","numeric":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03ae \u03af\u03c3\u03bf \u03b1\u03c0\u03cc :value.","string":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03ae \u03af\u03c3\u03bf \u03b1\u03c0\u03cc :value \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2."},"image":"T\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1.","in":"\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf :attribute \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf.","in_array":"\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf :attribute \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c3\u03b5 :other.","integer":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03ad\u03c1\u03b1\u03b9\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2.","ip":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP.","ipv4":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IPv4.","ipv6":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 IPv6 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7.","json":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03c3\u03c5\u03bc\u03b2\u03bf\u03bb\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac JSON.","lt":{"array":"T\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03bb\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b1\u03c0\u03cc :value \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1.","file":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc :value kilobytes.","numeric":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03c4\u03bf\u03c5 :value.","string":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc :value kilobytes."},"lte":{"array":"T\u03bf :attribute \u03b4\u03b5\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b1\u03c0\u03cc :value \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1.","file":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03ae \u03af\u03c3\u03bf \u03c4\u03bf\u03c5 :value kilobytes.","numeric":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03ae \u03af\u03c3\u03bf \u03c4\u03bf\u03c5 :value.","string":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf \u03ae \u03af\u03c3\u03bf \u03c4\u03bf\u03c5 :value kilobytes."},"max":{"array":"\u03a4\u03bf :attribute \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b1\u03c0\u03cc :max \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1.","file":"To :attribute \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc :max kilobytes.","numeric":"T\u03bf :attribute \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc :max.","string":"\u03a4\u03bf :attribute \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc :max \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2."},"mimes":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c4\u03cd\u03c0\u03bf\u03c5: :values.","mimetypes":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c4\u03cd\u03c0\u03bf\u03c5: :values.","min":{"array":"The :attribute must have at least :min items.","file":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd :min kilobytes.","numeric":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd :min.","string":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd :min \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2."},"not_in":"\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf :attribute \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf.","not_regex":"\u0397 \u03bc\u03bf\u03c1\u03c6\u03ae \u03c4\u03bf\u03c5 :attribute \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7.","numeric":"To :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2.","password":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c3\u03c6\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf\u03c2.","present":"T\u03bf \u03c0\u03b5\u03b4\u03af\u03bf :attribute \u03b4\u03b5\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b1\u03c1\u03b1\u03bb\u03b5\u03af\u03c0\u03b5\u03c4\u03b1\u03b9.","regex":"\u0397 \u03bc\u03bf\u03c1\u03c6\u03ae \u03c4\u03bf\u03c5 :attribute \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7.","required":"\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf :attribute \u03b5\u03af\u03bd\u03b1\u03b9 \u03c5\u03c0\u03bf\u03c7\u03c1\u03b5\u03c9\u03c4\u03b9\u03ba\u03cc.","required_if":"\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf :attribute \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03bf \u03cc\u03c4\u03b1\u03bd \u03b7 \u03c4\u03b9\u03bc\u03ae \u03c4\u03bf\u03c5 :other \u03b5\u03af\u03bd\u03b1\u03b9 :value.","required_unless":"\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf :attribute \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03bf \u03b5\u03ba\u03c4\u03cc\u03c2 \u03b1\u03bd \u03c4\u03bf :other \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b1 :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf :attribute \u03b5\u03af\u03bd\u03b1\u03b9 \u03c5\u03c0\u03bf\u03c7\u03c1\u03b5\u03c9\u03c4\u03b9\u03ba\u03cc \u03cc\u03c4\u03b1\u03bd \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b1 :values \u03b4\u03b5\u03bd \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9.","same":"\u03a4\u03bf :attribute \u03ba\u03b1\u03b9 :other \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd.","size":{"array":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 :size \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1.","file":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 :size kilobytes.","numeric":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 :size.","string":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 :size \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2."},"starts_with":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2: :values.","string":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf.","timezone":"\u03a4\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03af\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b6\u03ce\u03bd\u03b7.","unique":"\u03a4\u03bf :attribute \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf.","uploaded":"\u03a4\u03bf :attribute \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03c9\u03b8\u03b5\u03af.","url":"\u0397 \u03bc\u03bf\u03c1\u03c6\u03ae \u03c4\u03bf\u03c5 :attribute \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7.","uuid":"T\u03bf :attribute \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/en-GB.json b/public/js/langs/en-GB.json deleted file mode 100644 index 30a7e4f9e8b..00000000000 --- a/public/js/langs/en-GB.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or account and will never do.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Are you sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What\u2019s new","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading\u2026","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text in a nice way? We support Markdown to add bold, italic, lists and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","today":"today","type":"Type","unknown":"I don\u2019t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_error":"An error occurred trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organise all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"d F Y","full_hour":"H:i","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M Y","short_date_year_time":"d M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next \u276f","previous":"\u276e Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you\u2019ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you\u2019ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"Date this activity occurred","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name\u2019s personal information","information_edit_unknown":"I do not know this person\u2019s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favourites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_birthday_reminder_deceased":"On this date, :name would have celebrated their birthday","people_add_cta":"Add","people_add_firstname":"First name","people_add_gender":"Gender","people_add_import":"Do you want to import your contacts<\/a>?","people_add_lastname":"Last name (Optional)","people_add_middlename":"Middle name (Optional)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"Add a new person","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"Delete contact","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"Add someone","people_list_blank_title":"You don\u2019t have anyone in your account yet","people_list_clear_filter":"Clear filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sort by first name A \u2192 Z","people_list_firstnameZA":"Sort by first name Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"Sort by last name A \u2192 Z","people_list_lastnameZA":"Sort by last name Z \u2192 A","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sort","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"Search your contacts...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Activities","section_personal_gifts":"Gifts","section_personal_notes":"Notes","section_personal_reminders":"Reminders","section_personal_tasks":"Tasks","set_favorite":"Favourite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information updated","work_edit_title":"Update :name\u2019s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorised to access your application data. You can revoke this authorisation at any time.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorised clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorisation codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (KB)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customise these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customise life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure you want to reset your account? This removes all data permanently and it cannot be undone.","reset_success":"Your account has been successfully reset.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit log","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/en.json b/public/js/langs/en.json deleted file mode 100644 index b43d4e491c7..00000000000 --- a/public/js/langs/en.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Are you sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What\u2019s new","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading\u2026","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","today":"today","type":"Type","unknown":"I don\u2019t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next \u276f","previous":"\u276e Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you\u2019ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you\u2019ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name\u2019s personal information","information_edit_unknown":"I do not know this person\u2019s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"Add","people_add_firstname":"First name","people_add_gender":"Gender","people_add_import":"Do you want to import your contacts<\/a>?","people_add_lastname":"Last name (Optional)","people_add_middlename":"Middle name (Optional)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"Add a new person","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"Delete contact","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"Add someone","people_list_blank_title":"You don\u2019t have anyone in your account yet","people_list_clear_filter":"Clear filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sort by first name A \u2192 Z","people_list_firstnameZA":"Sort by first name Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"Sort by last name A \u2192 Z","people_list_lastnameZA":"Sort by last name Z \u2192 A","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sort","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"Search your contacts...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Activities","section_personal_gifts":"Gifts","section_personal_notes":"Notes","section_personal_reminders":"Reminders","section_personal_tasks":"Tasks","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information updated","work_edit_title":"Update :name\u2019s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/es.json b/public/js/langs/es.json deleted file mode 100644 index ac5fb1e6bbc..00000000000 --- a/public/js/langs/es.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"A\u00f1adir","another_day":"otro d\u00eda","application_description":"Monica es una herramienta para gestionar tus interacciones con tus seres queridos, amigos y familiares.","application_og_title":"Mejora la relaci\u00f3n con tus seres queridos. CRM gratis en l\u00ednea para amigos y familia.","application_title":"Monica \u2013 gestor de relaciones personales","back":"Volver","breadcrumb_add_note":"A\u00f1adir una nota","breadcrumb_add_significant_other":"A\u00f1adir relaci\u00f3n","breadcrumb_api":"API","breadcrumb_archived_contacts":"Contactos archivados","breadcrumb_dashboard":"Panel de control","breadcrumb_dav":"Recursos DAV","breadcrumb_edit_introductions":"C\u00f3mo os conocisteis","breadcrumb_edit_note":"Editar una nota","breadcrumb_edit_significant_other":"Editar relaci\u00f3n","breadcrumb_journal":"Diario","breadcrumb_list_contacts":"Lista de personas","breadcrumb_profile":"Perfil de :name","breadcrumb_settings":"Ajustes","breadcrumb_settings_export":"Exportar","breadcrumb_settings_import":"Importar","breadcrumb_settings_import_report":"Informe de importaci\u00f3n","breadcrumb_settings_import_upload":"Subir","breadcrumb_settings_personalization":"Personalizaci\u00f3n","breadcrumb_settings_security":"Seguridad","breadcrumb_settings_security_2fa":"Autenticaci\u00f3n en dos pasos","breadcrumb_settings_subscriptions":"Suscripci\u00f3n","breadcrumb_settings_tags":"Etiquetas","breadcrumb_settings_users":"Usuarios","breadcrumb_settings_users_add":"A\u00f1adir un usuario","cancel":"Cancelar","close":"Cerrar","compliance_desc":"Hemos cambiado nuestros Terminos de Uso<\/a> y Pol\u00edtica de Privacidad<\/a>. Por ley tenemos que pedirte que los revises y los aceptes para que puedas seguir usando tu cuenta.","compliance_desc_end":"No hacemos nada dudoso con tus datos o con tu cuenta, y nunca lo haremos.","compliance_terms":"Aceptar nuevos t\u00e9rminos y pol\u00edtica de privacidad","compliance_title":"Lamentamos la interrupci\u00f3n.","confirm":"Confirmar","contact_list_avatar":"Avatar","contact_list_description":"Descripci\u00f3n","contact_list_name":"Contacto","copy":"Copiar","create":"Crear","date":"Fecha","dav_birthdays":"Cumplea\u00f1os","dav_birthdays_description":"Cumplea\u00f1os del contacto :name","dav_contacts":"Contactos","dav_contacts_description":"Contactos de :name","dav_tasks":"Tareas","dav_tasks_description":"Tareas de :name","default_save_success":"Los datos han sido guardados.","delete":"Eliminar","delete_confirm":"\u00bfSeguro?","done":"Hecho","download":"Descargar","edit":"Editar","emotion_adoration":"Adoration","emotion_affection":"Afecto","emotion_aggravation":"Agravaci\u00f3n","emotion_agitation":"Agitaci\u00f3n","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Asombro","emotion_amusement":"Amusement","emotion_anger":"Enfado","emotion_anguish":"Anguish","emotion_annoyance":"Molestia","emotion_anxiety":"Ansiedad","emotion_apprehension":"Aprensi\u00f3n","emotion_arousal":"Arousal","emotion_astonishment":"Asombro","emotion_attraction":"Attraction","emotion_bitterness":"Amargura","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Satisfacci\u00f3n","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Deleite","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Desagrado","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Angustia","emotion_dread":"Pavor","emotion_eagerness":"Af\u00e1n","emotion_ecstasy":"\u00c9xtasis","emotion_elation":"Elaci\u00f3n","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Disfrute","emotion_enthrallment":"Incitaci\u00f3n","emotion_enthusiasm":"Entusiasmo","emotion_envy":"Envy","emotion_euphoria":"Euforia","emotion_exasperation":"Exasperaci\u00f3n","emotion_excitement":"Excitaci\u00f3n","emotion_exhilaration":"Regocijo","emotion_fear":"Fear","emotion_ferocity":"Ferocidad","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustraci\u00f3n","emotion_fury":"Furia","emotion_gaiety":"Gaiety","emotion_gladness":"Gozo","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Mal humor","emotion_grumpiness":"Mal humor","emotion_guilt":"Guilt","emotion_happiness":"Felicidad","emotion_hate":"Odio","emotion_homesickness":"Homesickness","emotion_hope":"Esperanza","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostilidad","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Inseguridad","emotion_insult":"Insult","emotion_irritation":"Irritaci\u00f3n","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Alegr\u00eda","emotion_jubilation":"J\u00fabilo","emotion_liking":"Liking","emotion_loathing":"Aversi\u00f3n","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Amor","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortificaci\u00f3n","emotion_neglect":"Neglect","emotion_nervousness":"Nerviosismo","emotion_optimism":"Optimismo","emotion_outrage":"Ira","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Placer","emotion_pride":"Orgullo","emotion_primary_anger":"Enfado","emotion_primary_fear":"Miedo","emotion_primary_joy":"Alegr\u00eda","emotion_primary_love":"Amor","emotion_primary_sadness":"Tristeza","emotion_primary_surprise":"Sorpresa","emotion_rage":"Ira","emotion_rapture":"\u00c9xtasis","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Alivio","emotion_remorse":"Remordimiento","emotion_resentment":"Resentimiento","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfacci\u00f3n","emotion_scorn":"Desprecio","emotion_secondary_affection":"Afecto","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Decepci\u00f3n","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envidia","emotion_secondary_exasperation":"Exasperaci\u00f3n","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritaci\u00f3n","emotion_secondary_longing":"Nostalgia","emotion_secondary_lust":"Lujuria","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimismo","emotion_secondary_pride":"Orgullo","emotion_secondary_rage":"Ira","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Tristeza","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Sorpresa","emotion_secondary_sympathy":"Simpat\u00eda","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Verg\u00fcenza","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Rencor","emotion_suffering":"Suffering","emotion_surprise":"Sorpresa","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tensi\u00f3n","emotion_terror":"Terror","emotion_thrill":"Estremecimiento","emotion_uneasiness":"Inquietud","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Venganza","emotion_woe":"Woe","emotion_worry":"Preocupaci\u00f3n","emotion_wrath":"C\u00f3lera","emotion_zeal":"Celo","emotion_zest":"\u00c1nimo","error_help":"Enseguida regresamos.","error_id":"Error ID: :id","error_maintenance":"Mantenimiento en curso. Enseguida regresamos.","error_no_term":"Todav\u00eda no hay ninguna pol\u00edtica para esta instancia.","error_save":"Tuvimos un error tratando de guardar los datos.","error_title":"\u00a1Ups! algo ha fallado.","error_try_again":"Se ha producido un error. Por favor, int\u00e9ntelo de nuevo.","error_twitter":"Siguenos en nuestra cuenta de Twitter<\/a> para saber cuando estamos de vuelta.","error_unauthorized":"No tienes permisos para editar este recurso.","error_unavailable":"Servicio no disponible","error_user_account":"Este usuario no pertenece a la cuenta dada.","file_selected":"1 archivo seleccionado\u2026|{count} archivos seleccionados\u2026","filter":"Filtrar la lista","footer_modal_version_release_away":"Est\u00e1s una versi\u00f3n por detr\u00e1s de la \u00faltima disponible. Deber\u00edas actualizar tu instancia. | Est\u00e1s :number versiones por detr\u00e1s de la \u00faltima versi\u00f3n disponible. Deber\u00edas actualizar tu instancia.","footer_modal_version_whats_new":"Qu\u00e9 hay de nuevo","footer_new_version":"Una nueva versi\u00f3n de Monica est\u00e1 disponible","footer_newsletter":"Bolet\u00edn","footer_privacy":"Pol\u00edticas de privacidad","footer_release":"Notas de la versi\u00f3n","footer_remarks":"Comentarios","footer_send_email":"Env\u00edanos un correo electr\u00f3nico","footer_source_code":"Contribuir","footer_version":"Versi\u00f3n :version","gender_female":"Mujer","gender_male":"Hombre","gender_no_gender":"Sin g\u00e9nero","gender_none":"Prefiero no decirlo","go_back":"Volver atr\u00e1s","header_changelog_link":"Cambios del producto","header_logout_link":"Salir","header_settings_link":"Configuraci\u00f3n","load_more":"Cargar m\u00e1s","loading":"Cargando\u2026","main_nav_activities":"Actividades","main_nav_cta":"A\u00f1adir personas","main_nav_dashboard":"Panel de control","main_nav_family":"Contactos","main_nav_journal":"Diario","main_nav_tasks":"Tareas","markdown_description":"\u00bfQuieres dar formato al texto de una manera agradable? Soportamos el uso de Markdown para a\u00f1adir negrita, cursiva, listas y m\u00e1s.","markdown_link":"Leer documentaci\u00f3n","new":"nuevo","no":"No","percent_uploaded":"{percent}% cargado","relationship_type_bestfriend":"mejor amigo","relationship_type_bestfriend_female":"mejor amiga","relationship_type_bestfriend_female_with_name":"mejor amiga de :name","relationship_type_bestfriend_with_name":"mejor amigo de :name","relationship_type_boss":"jefe","relationship_type_boss_female":"jefa","relationship_type_boss_female_with_name":"jefe de :name","relationship_type_boss_with_name":"jefe de :name","relationship_type_child":"hijo","relationship_type_child_female":"hija","relationship_type_child_female_with_name":"hija de :name","relationship_type_child_with_name":"hijo de :name","relationship_type_colleague":"colega","relationship_type_colleague_female":"colega","relationship_type_colleague_female_with_name":"colega de :name","relationship_type_colleague_with_name":"colega de :name","relationship_type_cousin":"primo\/a","relationship_type_cousin_female":"prima","relationship_type_cousin_female_with_name":"prima de :name","relationship_type_cousin_with_name":"primo de :name","relationship_type_date":"cita","relationship_type_date_female":"cita","relationship_type_date_female_with_name":"la cita de :name","relationship_type_date_with_name":"la cita de :name","relationship_type_ex":"ex-novio","relationship_type_ex_female":"ex-novia","relationship_type_ex_female_with_name":"ex-novia de :name","relationship_type_ex_husband":"ex marido","relationship_type_ex_husband_female":"ex esposa","relationship_type_ex_husband_female_with_name":"ex mujer de :name","relationship_type_ex_husband_with_name":"ex marido de :name","relationship_type_ex_with_name":"ex-novio de :name","relationship_type_friend":"amigo","relationship_type_friend_female":"amigo","relationship_type_friend_female_with_name":"amiga de :name","relationship_type_friend_with_name":"amigo de :name","relationship_type_godfather":"padrino","relationship_type_godfather_female":"madrina","relationship_type_godfather_female_with_name":"madrina de :name","relationship_type_godfather_with_name":"padrino de :name","relationship_type_godson":"ahijado","relationship_type_godson_female":"ahijada","relationship_type_godson_female_with_name":"madrina de :name","relationship_type_godson_with_name":"ahijado de :name","relationship_type_grandchild":"nieto","relationship_type_grandchild_female":"nieto","relationship_type_grandchild_female_with_name":"nieto de :name","relationship_type_grandchild_with_name":"nieto de :name","relationship_type_grandparent":"abuelo","relationship_type_grandparent_female":"abuelo","relationship_type_grandparent_female_with_name":"abuelo de :name","relationship_type_grandparent_with_name":"abuelo de :name","relationship_type_group_family":"Relaciones familiares","relationship_type_group_friend":"Relaciones de amistad","relationship_type_group_love":"Relaciones amorosas","relationship_type_group_other":"Otro tipo de relaciones","relationship_type_group_work":"Relaciones laborales","relationship_type_inlovewith":"enamorado de","relationship_type_inlovewith_female":"enamorada de","relationship_type_inlovewith_female_with_name":"alguien :name est\u00e1 enamorado de","relationship_type_inlovewith_with_name":"alguien :name est\u00e1 enamorado de","relationship_type_lovedby":"querido por","relationship_type_lovedby_female":"querido por","relationship_type_lovedby_female_with_name":"amante secreto de :name","relationship_type_lovedby_with_name":"amante secreto de :name","relationship_type_lover":"amante","relationship_type_lover_female":"amante","relationship_type_lover_female_with_name":"la amante de :name","relationship_type_lover_with_name":"el amante de :name","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentora","relationship_type_mentor_female_with_name":"mentora de :name","relationship_type_mentor_with_name":"mentor de :name","relationship_type_nephew":"sobrino","relationship_type_nephew_female":"sobrina","relationship_type_nephew_female_with_name":"sobrina de :name","relationship_type_nephew_with_name":"sobrino de :name","relationship_type_parent":"padre","relationship_type_parent_female":"madre","relationship_type_parent_female_with_name":"madre de :name","relationship_type_parent_with_name":"padre de :name","relationship_type_partner":"pareja","relationship_type_partner_female":"pareja","relationship_type_partner_female_with_name":"la pareja de :name","relationship_type_partner_with_name":"la pareja de :name","relationship_type_protege":"protegido","relationship_type_protege_female":"protegida","relationship_type_protege_female_with_name":"protegida de :name","relationship_type_protege_with_name":"protegido de :name","relationship_type_sibling":"hermano","relationship_type_sibling_female":"hermana","relationship_type_sibling_female_with_name":"hermana de :name","relationship_type_sibling_with_name":"hermano de :name","relationship_type_spouse":"esposa","relationship_type_spouse_female":"esposa","relationship_type_spouse_female_with_name":"la esposa de :name","relationship_type_spouse_with_name":"la esposa de :name","relationship_type_stepchild":"hijastro","relationship_type_stepchild_female":"hijastra","relationship_type_stepchild_female_with_name":"hijastra de :name","relationship_type_stepchild_with_name":"hijastro de :name","relationship_type_stepparent":"padrastro","relationship_type_stepparent_female":"madrastra","relationship_type_stepparent_female_with_name":"madre de :name","relationship_type_stepparent_with_name":"padrastro de :name","relationship_type_subordinate":"subordinado","relationship_type_subordinate_female":"subordinada","relationship_type_subordinate_female_with_name":"subordinada de :name","relationship_type_subordinate_with_name":"subordinado de :name","relationship_type_uncle":"t\u00edo","relationship_type_uncle_female":"t\u00eda","relationship_type_uncle_female_with_name":"t\u00eda de :name","relationship_type_uncle_with_name":"t\u00edo de :name","remove":"Eliminar","retry":"Reintentar","revoke":"Revocar","save":"Guardar","save_close":"Guardar y cerrar","today":"hoy","type":"Tipo","unknown":"No lo s\u00e9","update":"Actualizar","upgrade":"Actualiza para desbloquear","upload":"Subir","verify":"Verificar","weather_clear-day":"D\u00eda despejado","weather_clear-night":"Noche despejada","weather_cloudy":"Nublado","weather_current_temperature_celsius":":temperatura \u00baC","weather_current_temperature_fahrenheit":":temperatura \u00baF","weather_current_title":"Clima actual","weather_fog":"Niebla","weather_partly-cloudy-day":"D\u00eda parcialmente nublado","weather_partly-cloudy-night":"Noche parcialmente nublada","weather_rain":"Lluvia","weather_sleet":"Aguanieve","weather_snow":"Nieve","weather_wind":"Viento","with":"con","yes":"Si","yesterday":"ayer","zoom":"Zoom"},"auth":{"2fa_one_time_password":"C\u00f3digo de autenticaci\u00f3n en dos pasos","2fa_otp_help":"Abre t\u00fa aplicaci\u00f3n m\u00f3vil de autenticaci\u00f3n en dos pasos y copia el c\u00f3digo","2fa_recuperation_code":"Introduce un c\u00f3digo de recuperaci\u00f3n de autenticaci\u00f3n en dos pasos","2fa_title":"Autenticaci\u00f3n en dos pasos","2fa_wrong_validation":"La autenticaci\u00f3n en dos pasos ha fallado.","back_homepage":"Volver al inicio","button_remember":"Recordarme","change_language":"Cambiar el idioma a :lang","change_language_title":"Cambiar idioma:","confirmation_again":"Si deseas cambiar tu direcci\u00f3n de correo electr\u00f3nico, puedes hacer clic aqu\u00ed<\/a>.","confirmation_check":"Antes de proceder, por favor comprueba el link de verificaci\u00f3n en tu correo electr\u00f3nico.","confirmation_fresh":"Se ha enviado un correo electr\u00f3nico con el enlace de verificaci\u00f3n a tu direcci\u00f3n de correo electr\u00f3nico.","confirmation_request_another":"Si no has recibido el correo electr\u00f3nico haz clic aqu\u00ed para solicitar otro<\/a>.","confirmation_title":"Verifica tu direcci\u00f3n de correo electr\u00f3nico","create_account":"Crea la primera cuenta registr\u00e1ndote<\/a>","email":"Email","email_change_current_email":"Direcci\u00f3n de correo electr\u00f3nico actual:","email_change_new":"Nueva direcci\u00f3n de correo electr\u00f3nico","email_change_title":"Cambiar tu direcci\u00f3n de correo electr\u00f3nico","email_changed":"Tu direcci\u00f3n de correo electr\u00f3nico ha sido cambiada. Revisa tu bandeja de correo para validarla.","failed":"Estas credenciales no coinciden con nuestros registros.","login":"Identificarse","login_again":"Por favor inicia sesi\u00f3n de nuevo en tu cuenta","login_to_account":"Inicia sesi\u00f3n en tu cuenta","login_with_recovery":"Inicia sesi\u00f3n con un c\u00f3digo de recuperaci\u00f3n","mfa_auth_otp":"Autent\u00edcate con t\u00fa dispositivo de dos pasos","mfa_auth_webauthn":"Autenticar con una clave de seguridad (WebAuthn)","not_authorized":"Usted no esta autorizado para ejecutar esta acci\u00f3n","password":"Contrase\u00f1a","password_forget":"\u00bfOlvidaste tu contrase\u00f1a?","password_reset":"Restablece tu contrase\u00f1a","password_reset_action":"Restablecer contrase\u00f1a","password_reset_email":"Correo Eletr\u00f3nico","password_reset_email_content":"Haz clic aqu\u00ed para restablecer tu contrase\u00f1a:","password_reset_password":"Contrase\u00f1a","password_reset_password_confirm":"Confirma Contrase\u00f1a","password_reset_send_link":"Enviar enlace para restablecer la contrase\u00f1a","password_reset_title":"Restablecer contrase\u00f1a","recovery":"C\u00f3digo de recuperaci\u00f3n","register_action":"Registrarse","register_create_account":"Debes crear una cuenta para usar Monica","register_email":"Introduzca una direcci\u00f3n de correo electr\u00f3nico v\u00e1lida","register_email_example":"you@home","register_firstname":"Nombre","register_firstname_example":"ej. John","register_invitation_email":"Por motivos de seguridad, porfavor indica el email de la persona que te ha invitado a unirte a esta cuenta. Esta informaci\u00f3n aparece in el email de invitaci\u00f3n.","register_lastname":"Apellidos","register_lastname_example":"ej. Doe","register_login":"Inicia sesi\u00f3n<\/a> si ya tienes una cuenta.","register_password":"Contrase\u00f1a","register_password_confirmation":"Confirmar contrase\u00f1a","register_password_example":"Escribe una contrase\u00f1a segura","register_policy":"Registrarte implica que has leido y aceptas nuestra Pol\u00edtica de Privacidad<\/a> y T\u00e9rminos de uso<\/a>.","register_title_create":"Crea tu cuenta de Monica","register_title_welcome":"Bienvenido a tu nueva instancia de Monica","signup":"Reg\u00edstrate","signup_disabled":"La registraci\u00f3n se encuentra actualmente deshabilitada","signup_error":"Se ha producido un error al intentar registrar el usuario","signup_no_account":"\u00bfNo tienes una cuenta?","throttle":"Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.","use_recovery":"O puedes usar un c\u00f3digo de recuperaci\u00f3n<\/a>"},"changelog":{"note":"Nota: desafortunadamente, esta p\u00e1gina est\u00e1 solo en ingl\u00e9s.","title":"Cambios del producto"},"dashboard":{"dashboard_blank_cta":"A\u00f1ade tu primer contacto","dashboard_blank_description":"Monica es el lugar donde organizar todas las interacciones con los que te importan.","dashboard_blank_illustration":"Ilustraci\u00f3n por Freepik<\/a>","dashboard_blank_title":"\u00a1Bienvenido\/a a tu cuenta!","debts_you_owe":"Le debes a","notes_title":"Todav\u00eda no tienes notas destacadas.","product_changes":"Cambios del producto","product_view_details":"Ver detalles","reminders_next_months":"Eventos en los pr\u00f3ximos 3 meses","reminders_none":"Ning\u00fan recordatorio este mes.","statistics_activities":"Actividades","statistics_contacts":"Contactos","statistics_gifts":"Regalos","tab_calls_blank":"Todav\u00eda no has registrado una llamada.","tab_debts":"Deudas","tab_debts_blank":"Todav\u00eda no has registrado una deuda.","tab_favorite_notes":"Notas favoritas","tab_recent_calls":"Llamadas recientes","tab_tasks":"Tareas","tab_tasks_blank":"Todav\u00eda no tienes ninguna tarea.","task_add_cta":"A\u00f1adir una tarea","tasks_add_note":"Presiona Enter<\/kbd> para a\u00f1adir la tarea.","tasks_add_task_placeholder":"\u00bfEn qu\u00e9 consiste esta tarea?","tasks_tab_your_contacts":"Tareas relacionadas con tus contactos","tasks_tab_your_tasks":"Tus tareas"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"j M","short_date_year":"j M Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u00bfSeguro que deseas eliminar esta entrada de tu diario?","entry_delete_success":"La entrada de diario ha sido eliminada correctamente.","journal_add":"Agregar una entrada de diario","journal_add_comment":"\u00bfQuieres a\u00f1adir un comentario (opcional)?","journal_add_cta":"Guardar","journal_add_date":"Fecha","journal_add_post":"Entrada","journal_add_title":"T\u00edtulo (opcional)","journal_blank_cta":"A\u00f1ade tu primera entrada de diario","journal_blank_description":"El diario te permite escribir eventos que te han pasado y recordarlos.","journal_come_back":"Gracias. Vuelve ma\u00f1ana para puntuar tu d\u00eda de nuevo.","journal_created_at":"Creada: {date}","journal_created_automatically":"Creada autm\u00e1ticamente","journal_description":"Nota: el diario lista las entradas del diario y las autom\u00e1ticas como Actividades con tus contactos. Aunque puedes borrar las entradas del diario manualmente, la actividad tendr\u00e1s que borrarla directamente en la p\u00e1gina del contacto.","journal_edit":"Editar p\u00e1gina de diario","journal_empty":"Borrar diario","journal_entry_rate":"Valoraste t\u00fa d\u00eda.","journal_entry_type_activity":"Actividad","journal_entry_type_journal":"Entrada de diario","journal_rate":"\u00bfC\u00f3mo fue tu d\u00eda? Puedes valorarlo una vez al d\u00eda.","journal_show_comment":"Mostrar comentario"},"logs":{"contact_log_contact_created":"Contacto creado.","contact_log_contact_description_cleared":"Descripci\u00f3n eliminada.","contact_log_contact_description_updated":"Descripci\u00f3n actualizada.","contact_log_contact_work_updated":"Actualizada informaci\u00f3n laboral.","settings_log_company_created":"Creada una empresa llamada :name.","settings_log_contact_created_with_name":"Contacto a\u00f1adido como :name.","settings_log_contact_description_cleared_with_name":"Descripci\u00f3n de :name eliminada.","settings_log_contact_description_updated_with_name":"Actualizada la descripci\u00f3n de :name.","settings_log_contact_work_updated_with_name":"Actualizada informaci\u00f3n laboral de :name."},"mail":{"comment":"Comentario: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verificar la direcci\u00f3n de correo electr\u00f3nico","confirmation_email_intro":"Para validar tu email haz click en el bot\u00f3n de abajo","confirmation_email_title":"Monica \u2013 Email de verificaci\u00f3n","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"Ver el perfil de :name: :url","for":"Para: :name","greetings":"Hola, :username","invitation_button":"Aceptar invitaci\u00f3n","invitation_expiration":"Este enlace caducar\u00e1 en :count d\u00edas.","invitation_intro":"Has sido invitado por :name (:email) a usar Monica, una buena herramienta de administraci\u00f3n de relaciones personales.","invitation_link":"Para aceptar la invitaci\u00f3n haz clic en el siguiente enlace:","invitation_title":"Monica \u2013 Has sido invitado por :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"Tiene un evento pr\u00f3ximo","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"\u00a1Hola!","notifications_regards":"Saludos","notifications_rights":"Todos los derechos reservados","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Restablecer contrase\u00f1a","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Mantenga el contacto con :name","subject_line":"Recordatorio para :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Siguiente \u276f","previous":"\u276e Anterior"},"passwords":{"changed":"Contrase\u00f1a cambiada con \u00e9xito.","invalid":"La contrase\u00f1a que ingresaste no es correcta.","reset":"\u00a1Tu contrase\u00f1a ha sido reestablecida!","sent":"Si el correo eletr\u00f3nico que ingresaste existe en nuestros registros te hemos enviado un correo para restablecer tu contrase\u00f1a.","throttled":"Por favor, espera antes de intentarlo de nuevo.","token":"Este token para reestablecer la contrase\u00f1a no es v\u00e1lido.","user":"Si el correo eletr\u00f3nico que ingresaste existe en nuestros registros te hemos enviado un correo para restablecer tu contrase\u00f1a."},"people":{"activities_activity":"Categor\u00eda de la Actividad","activities_add_activity":"A\u00f1adir actividad","activities_add_category":"Indicar una categor\u00eda","activities_add_date_occured":"La actividad tuvo lugar el...","activities_add_emotions":"A\u00f1adir emociones","activities_add_emotions_title":"\u00bfDeseas registrar c\u00f3mo te sentiste durante esta llamada? (opcional)","activities_add_error":"Ocurri\u00f3 un error al a\u00f1adir la actividad","activities_add_more_details":"A\u00f1adir m\u00e1s detalles","activities_add_participants":"\u00bfQui\u00e9n, aparte de {name}, particip\u00f3 en esta actividad? (opcional)","activities_add_participants_cta":"A\u00f1adir participantes","activities_add_pick_activity":"(Opcional) \u00bfTe gustar\u00eda categorizar esta actividad? No tienes que hacerlo, pero esto te dar\u00e1 estad\u00edsticas en el futuro","activities_add_success":"La actividad ha sido a\u00f1adida exitosamente","activities_add_title":"\u00bfQu\u00e9 hiciste con {name}?","activities_blank_add_activity":"A\u00f1adir una actividad","activities_blank_title":"Dale seguimiento a lo que has hecho con {name} en el pasado, y de que han hablado","activities_delete_success":"La actividad ha sido eliminada exitosamente","activities_item_information":":Activity. Sucedi\u00f3 el :date","activities_list_category":"Categor\u00eda:","activities_list_date":"Ocurri\u00f3 el","activities_list_emotions":"Emociones sentidas:","activities_list_participants":"Participantes:","activities_profile_number_occurences":":value actividad|:value actividades","activities_profile_subtitle":"Has registrado :total_activities actividad con :name en total, y :activities_last_twelve_months en los \u00faltimos 12 meses.|Has registrado :total_activities actividades con :name en total, y :activities_last_twelve_months en los \u00faltimos 12 meses.","activities_profile_title":"Reporte de actividades entre :name y tu","activities_profile_year_summary":"Aqu\u00ed tienes lo que han hecho en :year","activities_profile_year_summary_activity_types":"Aqu\u00ed tienes un desglose del tipo de actvidades que han tenido juntos en :year","activities_summary":"Describe lo que hiciste","activities_update_success":"La actividad ha sido actualizada exitosamente","activities_view_activities_report":"Ver reporte de actividades","activities_who_was_involved":"\u00bfQui\u00e9n estuvo envuelto?","activity_title":"Actividades","activity_type_ate_at_his_place":"comimos en su casa","activity_type_ate_at_home":"comimos en casa","activity_type_ate_restaurant":"comimos en un restaurante","activity_type_category_cultural_activities":"Actividades culturales","activity_type_category_food":"Comida","activity_type_category_simple_activities":"Actividades simples","activity_type_category_sport":"Deportes","activity_type_did_sport_activities_together":"hicimos deporte juntos","activity_type_just_hung_out":"solo pasamos el rato","activity_type_picnicked":"fuimos de picnic","activity_type_talked_at_home":"solo hablamos en casa","activity_type_watched_movie_at_home":"vimos una pel\u00edcula en casa","activity_type_went_bar":"fuimos al bar","activity_type_went_concert":"fuimos a un concierto","activity_type_went_museum":"fuimos al museo","activity_type_went_play":"fuimos a jugar","activity_type_went_theater":"fuimos al teatro","age_approximate_in_years":"aproximadamente :age a\u00f1os de edad","age_exact_birthdate":"naci\u00f3 el :date","age_exact_in_years":":age a\u00f1os de edad","auditlogs_author":"Por :name el :date","auditlogs_breadcrumb":"Historial","auditlogs_link":"Historial","auditlogs_title":"Todo lo que le pas\u00f3 a :name","avatar_adorable_avatar":"El avatar Adorable","avatar_change_title":"Cambiar el avatar","avatar_crop_new_avatar_photo":"Recortar nueva foto de avatar","avatar_current":"Mantener el avatar actual","avatar_default_avatar":"El avatar por defecto","avatar_gravatar":"El \"Gravatar\" asociado con la direcci\u00f3n de correo electr\u00f3nico de esta persona. Gravatar<\/a> es un sistema global que permite a los usuarios asociar direcciones de correo electr\u00f3nico con fotos.","avatar_photo":"De una foto que subes","avatar_question":"\u00bfQu\u00e9 avatar deseas usar?","birthdate_not_set":"La fecha de nacimiento no ha establecida","call_blank_desc":"Has llamado a {name}","call_blank_title":"Mant\u00e9n un seguimiento de las llamadas realizadas con {name}","call_button":"Registrar una llamada","call_delete_confirmation":"\u00bfEst\u00e1s seguro que deseas eliminar esta llamada?","call_delete_success":"La llamada telef\u00f3nica ha sido eliminada exitosamente","call_emotions":"Emociones:","call_empty_comment":"No hay detalles","call_he_called":"{name} llam\u00f3","call_title":"Llamadas telef\u00f3nicas","call_you_called":"Has llamado","calls_add_success":"La llamada telef\u00f3nica ha sido guardada.","contact_address_form_city":"Ciudad (opcional)","contact_address_form_country":"Pa\u00eds (opcional)","contact_address_form_latitude":"Latitud (s\u00f3lo n\u00fameros) (opcional)","contact_address_form_longitude":"Longitud (s\u00f3lo n\u00fameros) (opcional)","contact_address_form_name":"Etiqueta (opcional)","contact_address_form_postal_code":"C\u00f3digo postal (opcional)","contact_address_form_province":"Provincia (opcional)","contact_address_form_street":"Calle (opcional)","contact_address_title":"Direcciones","contact_archive":"Archivar contacto","contact_archive_help":"Los contactos archivados no aparecer\u00e1n en la lista de contactos, pero siguen apareciendo en los resultados de las b\u00fasquedas.","contact_field_label_cell":"M\u00f3vil\/Celular","contact_field_label_fax":"Fax","contact_field_label_home":"Casa","contact_field_label_main":"Principal","contact_field_label_other":"Otro","contact_field_label_pager":"Busca","contact_field_label_personal":"Personal","contact_field_label_work":"Trabajo","contact_info_address":"Vive en","contact_info_form_contact_type":"Tipo de contacto","contact_info_form_content":"Contenido","contact_info_form_personalize":"Personalizar","contact_info_title":"Informaci\u00f3n de contacto","contact_unarchive":"Des-archivar contacto","conversation_add_another":"A\u00f1ade otro mensaje","conversation_add_content":"Escribe lo que se dijo","conversation_add_error":"Debes a\u00f1adir al menos un mensaje.","conversation_add_how":"\u00bfQu\u00e9 medio utilizaste para comunicarte?","conversation_add_success":"La conversaci\u00f3n ha sido a\u00f1adida con \u00e9xito.","conversation_add_title":"Registrar una nueva conversaci\u00f3n","conversation_add_what_was_said":"\u00bfQu\u00e9 fue lo que dijiste?","conversation_add_when":"\u00bfCu\u00e1ndo tuviste esta conversaci\u00f3n?","conversation_add_who_wrote":"\u00bfQui\u00e9n dijo esto?","conversation_add_you":"Tu","conversation_blank":"Registra conversaciones que has tenido con :name por redes sociales, SMS, ...","conversation_delete_link":"Borrar conversaci\u00f3n","conversation_delete_success":"La conversaci\u00f3n ha sido eliminada exitosamente.","conversation_edit_delete":"\u00bfEst\u00e1s seguro que quieres eliminar esta conversaci\u00f3n? Esta acci\u00f3n es permanente.","conversation_edit_success":"La conversaci\u00f3n ha sido actualizada con \u00e9xito.","conversation_edit_title":"Editar conversaci\u00f3n","conversation_list_cta":"Registrar conversaci\u00f3n","conversation_list_table_content":"Contenido parcial (\u00faltimo mensaje)","conversation_list_table_messages":"Mensajes","conversation_list_title":"Conversaciones","debt_add_add_cta":"A\u00f1adir deuda","debt_add_amount":"la cantidad de","debt_add_cta":"A\u00f1adir deuda","debt_add_reason":"por la siguiente raz\u00f3n (opcional)","debt_add_success":"La deuda ha sido a\u00f1adida exitosamente","debt_add_they_owe":":name te debe","debt_add_title":"Gesti\u00f3n de deudas","debt_add_you_owe":"T\u00fa le debes a :name","debt_delete_confirmation":"\u00bfEst\u00e1 seguro de que desea eliminar esta deuda?","debt_delete_success":"La deuda ha sido eliminada exitosamente","debt_edit_success":"La deuda ha sido actualizada exitosamente","debt_edit_update_cta":"Actualizar deuda","debt_they_owe":":name te debe :amount","debt_title":"Deudas","debt_you_owe":"T\u00fa debes :amount","debts_blank_title":"Gestiona deudas que tienes con :name \u00f3 deudas que :name te debe","deceased_add_reminder":"A\u00f1adir un recordatorio para esta fecha","deceased_age":"Edad al momento del fallecimiento","deceased_date_label":"Fecha de defunci\u00f3n","deceased_know_date":"Conozco la fecha que esta persona falleci\u00f3","deceased_label":"Fallecido","deceased_label_with_date":"Fallecido el","deceased_mark_person_deceased":"Marcar esta persona como fallecida","deceased_reminder_title":"Aniversario de la muerte de :name","document_list_blank_desc":"Aqu\u00ed usted puede almacenar documentos relacionados con esta persona.","document_list_cta":"Subir documento","document_list_title":"Documentos","document_upload_zone_cta":"Subir un fichero","document_upload_zone_error":"Se produjo un error al subir el archivo. Por favor int\u00e9ntelo de nuevo.","document_upload_zone_progress":"Subiendo el documento...","edit_contact_information":"Editar informaci\u00f3n de contacto","emotion_this_made_me_feel":"Esto te hizo sentir\u2026","food_preferences_add_success":"Las preferencias de comida han sido guardadas","food_preferences_cta":"A\u00f1adir preferencias en comida","food_preferences_edit_cta":"Guardar preferencias en comida","food_preferences_edit_description":"Tal vez :firstname o alguien en la familia :family tiene una alergia. O no le gusta una botella espec\u00edfica de vino. Indica eso aqu\u00ed, as\u00ed lo recordaras la pr\u00f3xima vez que los invites a cenar","food_preferences_edit_description_no_last_name":"Tal vez :firstname tiene una alergia. O no le gusta una botella espec\u00edfica de vino. Indica eso aqu\u00ed, as\u00ed lo recordaras la pr\u00f3xima vez que lo invites a cenar","food_preferences_edit_title":"Indica preferencias en comida","food_preferences_title":"Preferencias de comida","gifts_add_comment":"Comentario (opcional)","gifts_add_date":"Fecha (opcional)","gifts_add_gift":"A\u00f1adir un regalo","gifts_add_gift_already_offered":"Regalo dado","gifts_add_gift_idea":"Idea de regalo","gifts_add_gift_name":"Nombre del regalo","gifts_add_gift_received":"Regalos recibidos","gifts_add_gift_title":"\u00bfQu\u00e9 es este regalo?","gifts_add_link":"Enlace al sitio web (opcional)","gifts_add_photo":"Foto (opcional)","gifts_add_photo_title":"A\u00f1adir una foto para este regalo","gifts_add_recipient":"Destinatario (opcional)","gifts_add_recipient_field":"Destinatario","gifts_add_someone":"Este regalo es para alguien en particular de la familia de {name}","gifts_add_success":"El regalo ha sido a\u00f1adido exitosamente","gifts_add_title":"Gesti\u00f3n de regalos para :name","gifts_add_value":"Valor (opcional)","gifts_delete_confirmation":"\u00bfEst\u00e1s seguro que deseas eliminar este regalo?","gifts_delete_cta":"Eliminar","gifts_delete_success":"El regalo ha sido eliminado exitosamente","gifts_delete_title":"Borrar un regalo","gifts_for":"Para: {name}","gifts_ideas":"Idea de regalo","gifts_link":"Enlace","gifts_mark_offered":"Marcar como dado","gifts_offered":"Regalos dados","gifts_offered_as_an_idea":"Marcar como una idea","gifts_received":"Regalos recibidos","gifts_title":"Regalos","gifts_update_success":"El regalo ha sido actualizado exitosamente","gifts_view_comment":"Ver comentario","information_edit_birthdate_label":"Fecha de Nacimiento","information_edit_description":"Descripci\u00f3n (opcional)","information_edit_description_help":"Usado en la lista de contactos para agregar contexto, si fuera necesario.","information_edit_exact":"S\u00e9 la fecha exacta de nacimiento de esta persona...","information_edit_firstname":"Nombre","information_edit_lastname":"Apellido (Opcional)","information_edit_max_size":"M\u00e1ximo :size Kb.","information_edit_max_size2":"M\u00e1ximo {size} kB.","information_edit_not_year":"S\u00e9 el d\u00eda y mes de la fecha de nacimiento de esta persona, pero no el a\u00f1o\u2026","information_edit_probably":"Esta persona probablemente tiene...","information_edit_success":"El perfil ha sido actualizado exitosamente","information_edit_title":"Editar la informaci\u00f3n personal de :name","information_edit_unknown":"No s\u00e9 la edad de esta persona","information_no_work_defined":"Informaci\u00f3n de trabajo no definida","information_work_at":"en: company","introductions_add_reminder":"A\u00f1adir un recordatorio para celebrar este encuentro en el aniversario de cuando este evento sucedi\u00f3","introductions_additional_info":"Explica c\u00f3mo y d\u00f3nde se conocieron","introductions_blank_cta":"Indica como conociste a :name","introductions_edit_met_through":"\u00bfAlguien te ha presentado esta persona?","introductions_first_met_date":"Fecha que se conocieron","introductions_first_met_date_known":"Esta es la fecha que nos conocimos","introductions_met_date":"Nos conocimos en :date","introductions_met_through":"Nos conocimos a trav\u00e9s de :name<\/a>","introductions_no_first_met_date":"No s\u00e9 la fecha que nos conocimos","introductions_no_met_through":"Nadie","introductions_reminder_title":"Aniversario del d\u00eda que se conocieron","introductions_sidebar_title":"C\u00f3mo nos conocimos","introductions_title_edit":"\u00bfC\u00f3mo conociste a :name?","introductions_update_success":"Has actualizado con \u00e9xito la informaci\u00f3n sobre c\u00f3mo conociste a esta persona","last_activity_date":"\u00daltima actividad juntos: :date","last_activity_date_empty":"\u00daltima actividad juntos: desconocido","last_called":"\u00daltima llamada: :date","last_called_empty":"\u00daltima llamada: desconocido","life_event_blank":"Apunta los hechos de la vida de {name} Para tu futura referencia.","life_event_category_family_relationships":"Familia y amistades","life_event_category_health_wellness":"Salud y bienestar","life_event_category_home_living":"Hogar y estilo de vida","life_event_category_travel_experiences":"Viajes y experiencias","life_event_category_work_education":"Trabajo y educaci\u00f3n","life_event_create_add_yearly_reminder":"A\u00f1adir un recordatorio anual para este evento","life_event_create_category":"Todas las categor\u00edas","life_event_create_date":"No necesitar\u00e1 indicar un mes o un d\u00eda - s\u00f3lo el a\u00f1o es obligatorio.","life_event_create_default_description":"A\u00f1adir informaci\u00f3n sobre lo que sabes","life_event_create_default_story":"Historia (opcional)","life_event_create_default_title":"T\u00edtulo (opcional)","life_event_create_life_event":"A\u00f1ade un evento notable","life_event_create_success":"El evento notable ha sido a\u00f1adido","life_event_date_it_happened":"Fecha cuando ocurri\u00f3","life_event_delete_description":"\u00bfEst\u00e1s seguro que quieres eliminar este evento notable? Esta acci\u00f3n es permanente.","life_event_delete_success":"El evento notable ha sido eliminado","life_event_delete_title":"Borrar un evento notable","life_event_list_cta":"A\u00f1ade un evento notable","life_event_list_tab_life_events":"Eventos cotidianos","life_event_list_tab_other":"Notas, recordatorios...","life_event_list_title":"Eventos cotidianos","life_event_sentence_achievement_or_award":"Consigui\u00f3 un logro o premio","life_event_sentence_anniversary":"Aniversario","life_event_sentence_bought_a_home":"Compr\u00f3 una casa","life_event_sentence_broken_bone":"Se rompi\u00f3 un hueso","life_event_sentence_changed_beliefs":"Creencias cambiadas","life_event_sentence_dentist":"Fue al dentista","life_event_sentence_end_of_relationship":"Finaliz\u00f3 una relaci\u00f3n","life_event_sentence_engagement":"Se comprometi\u00f3","life_event_sentence_expecting_a_baby":"Espera un beb\u00e9","life_event_sentence_first_kiss":"Su primer beso","life_event_sentence_first_word":"Habl\u00f3 por primera vez","life_event_sentence_holidays":"Se fue de vacaciones","life_event_sentence_home_improvement":"Hizo unas mejoras en el hogar","life_event_sentence_loss_of_a_loved_one":"Perdi\u00f3 un ser querido","life_event_sentence_marriage":"Se cas\u00f3","life_event_sentence_military_service":"Comenz\u00f3 el servicio militar","life_event_sentence_moved":"Se traslad\u00f3","life_event_sentence_new_child":"Tuvo un hijo","life_event_sentence_new_eating_habits":"Empez\u00f3 nuevos h\u00e1bitos alimenticios","life_event_sentence_new_family_member":"A\u00f1adido un miembro familiar","life_event_sentence_new_hobby":"Comenz\u00f3 un hobby","life_event_sentence_new_instrument":"Aprendi\u00f3 un nuevo instrumento","life_event_sentence_new_job":"Comenz\u00f3 un nuevo trabajo","life_event_sentence_new_language":"Aprendi\u00f3 un idioma adicional","life_event_sentence_new_license":"Consigui\u00f3 un permiso","life_event_sentence_new_pet":"Consigui\u00f3 una mascota","life_event_sentence_new_relationship":"Comenz\u00f3 una relaci\u00f3n","life_event_sentence_new_roommate":"Encontr\u00f3 alguien para compartir piso","life_event_sentence_new_school":"Comenz\u00f3 la escuela","life_event_sentence_new_sport":"Inici\u00f3 la pr\u00e1ctica de un deporte","life_event_sentence_new_vehicle":"Consigui\u00f3 un veh\u00edculo nuevo","life_event_sentence_overcame_an_illness":"Super\u00f3 una enfermedad","life_event_sentence_published_book_or_paper":"Public\u00f3 un art\u00edculo","life_event_sentence_quit_a_habit":"Dej\u00f3 un vicio","life_event_sentence_removed_braces":"Se quit\u00f3 los brackets","life_event_sentence_retirement":"Jubilado","life_event_sentence_study_abroad":"Estudi\u00f3 en el extranjero","life_event_sentence_surgery":"Tuvo una operaci\u00f3n","life_event_sentence_tattoo_or_piercing":"Se hizo un tatuaje o piercing","life_event_sentence_travel":"Viajado","life_event_sentence_volunteer_work":"Comenz\u00f3 a ser voluntario","life_event_sentence_wear_glass_or_contact":"Empez\u00f3 a llevar gafas o lentillas","life_event_sentence_weight_loss":"Perdi\u00f3 peso","list_link_to_active_contacts":"Usted est\u00e1 viendo los contactos archivados. Cambiar a ver la lista de contactos activos<\/a>.","list_link_to_archived_contacts":"Lista de contactos archivados","me":"Este eres t\u00fa","modal_call_comment":"\u00bfDe qu\u00e9 hablaron? (Opcional)","modal_call_emotion":"\u00bfDeseas registrar c\u00f3mo te sentiste durante esta llamada? (opcional)","modal_call_exact_date":"La llamada telef\u00f3nica ocurri\u00f3 el","modal_call_title":"Registrar una llamada","modal_call_who_called":"Qui\u00e9n llam\u00f3?","notes_add_cta":"A\u00f1adir nota","notes_create_success":"La nota ha sido creada exitosamente","notes_delete_confirmation":"\u00bfEst\u00e1s seguro que deseas eliminar esta nota? Esta acci\u00f3n es permanente","notes_delete_success":"La nota ha sido eliminada exitosamente","notes_delete_title":"Eliminar una nota","notes_favorite":"A\u00f1adir\/remover de favoritos","notes_update_success":"La nota ha sido guardada exitosamente","people_add_birthday_reminder":"Desearle feliz cumplea\u00f1os a :name","people_add_birthday_reminder_deceased":"En esta fecha, :name habr\u00eda celebrado su cumplea\u00f1os","people_add_cta":"A\u00f1adir","people_add_firstname":"Nombre","people_add_gender":"G\u00e9nero","people_add_import":"\u00bfQuieres importar tus contactos<\/a>?","people_add_lastname":"Apellido (Opcional)","people_add_middlename":"Segundo Nombre (Opcional)","people_add_missing":"Ninguna Persona Encontrada, A\u00f1ade Una Nueva Ahora","people_add_new":"A\u00f1adir a una nueva persona","people_add_nickname":"Apodo (Opcional)","people_add_reminder_for_birthday":"Crear un recordatorio anual para el cumplea\u00f1os","people_add_success":":name ha sido creado exitosamente","people_add_title":"A\u00f1ade a una nueva persona","people_delete_confirmation":"\u00bfEst\u00e1s seguro que quieres eliminar este usuario? Esta acci\u00f3n es permanente.","people_delete_message":"Borrar contacto","people_delete_success":"El contacto ha sido eliminado","people_edit_email_error":"Ya existe un contacto en tu cuenta con esta direcci\u00f3n de correo electr\u00f3nico. Por favor, elije otro.","people_export":"Exportar como vCard","people_list_account_upgrade_cta":"Actualizar ahora","people_list_account_upgrade_title":"Actualiza tu cuenta para desbloquear todo su potencial.","people_list_account_usage":"Es uso de tu cuenta: :current\/:limit contactos","people_list_blank_cta":"A\u00f1ade a alguien","people_list_blank_title":"Todav\u00eda no tienes a nadie en tu cuenta","people_list_clear_filter":"Quitar filtro","people_list_contacts_per_tags":"1 contacto|:count contactos","people_list_filter_tag":"Mostrar todos los contactos etiquetados con","people_list_filter_untag":"Mostrando todos los contactos sin etiqueta","people_list_firstnameAZ":"Ordenar por nombre A \u2192 Z","people_list_firstnameZA":"Ordenar por nombre Z \u2192 A","people_list_hide_dead":"Ocultar fallecidos (:count)","people_list_last_updated":"\u00daltima consulta:","people_list_lastactivitydateNewtoOld":"Ordenar por fecha de \u00faltima actividad de m\u00e1s reciente a m\u00e1s antiguo","people_list_lastactivitydateOldtoNew":"Ordenar por fecha de \u00faltima actividad de m\u00e1s antiguo a m\u00e1s reciente","people_list_lastnameAZ":"Ordenar por apellido A \u2192 Z","people_list_lastnameZA":"Ordenar por apellido Z \u2192 A","people_list_number_kids":"1 ni\u00f1o|:count ni\u00f1os","people_list_number_reminders":"1 recordatorio|:count recordatorios","people_list_show_dead":"Mostrar fallecidos (:count)","people_list_sort":"Ordenar","people_list_stats":"1 contacto|:count contactos","people_list_untagged":"Ver contactos sin etiqueta","people_not_found":"Contacto no encontrado","people_save_and_add_another_cta":"A\u00f1adir y agregar a alguien m\u00e1s","people_search":"Buscar en tus contactos...","people_search_all":"Todos","people_search_next":"Siguiente","people_search_no_results":"No se encontraron resultados","people_search_of":"de","people_search_page":"P\u00e1gina","people_search_prev":"Anterior","people_search_rows_per_page":"Filas por p\u00e1gina","pets_bird":"Ave","pets_cat":"Gato","pets_create_success":"La mascota ha sido a\u00f1adida","pets_delete_success":"La mascota ha sido eliminada","pets_dog":"Perro","pets_fish":"Pez","pets_hamster":"H\u00e1mster","pets_horse":"Caballo","pets_kind":"Tipo de mascota","pets_name":"Nombre (opcional)","pets_other":"Otro","pets_rabbit":"Conejo","pets_rat":"Rata","pets_reptile":"Reptil","pets_small_animal":"Animal peque\u00f1o","pets_title":"Mascotas","pets_update_success":"La mascota ha sido actualizada","photo_current_profile_pic":"Foto de perfil actual","photo_delete":"Eliminar foto","photo_list_blank_desc":"Puede almacenar im\u00e1genes acerca de este contacto. \u00a1Suba una ahora!","photo_list_cta":"Subir foto","photo_list_title":"Fotos relacionadas","photo_make_profile_pic":"Usar como foto de perfil","photo_next":"Siguiente foto \u276f","photo_previous":"\u276e Foto anterior","photo_title":"Fotos","photo_upload_zone_cta":"Carga una foto","relationship_delete_confirmation":"\u00bfEst\u00e1s seguro de que deseas eliminar esta relaci\u00f3n? Esto es permanente.","relationship_form_add":"A\u00f1adir una nueva relaci\u00f3n","relationship_form_add_choice":"\u00bfCon qui\u00e9n es esta relaci\u00f3n?","relationship_form_add_description":"Esto te permitir\u00e1 tratar a esta persona como cualquier otro de tus contactos.","relationship_form_add_no_existing_contact":"No tienes ning\u00fan contacto que se pueda relacionar con :name al momento.","relationship_form_add_success":"La relaci\u00f3n ha sido creada exitosamente.","relationship_form_also_create_contact":"Crear una entrada de contacto para esta persona.","relationship_form_associate_contact":"Un contacto existente","relationship_form_associate_dropdown":"Busca y selecciona un contacto existente del men\u00fa desplegable a continuaci\u00f3n","relationship_form_associate_dropdown_placeholder":"Busca y selecciona un contacto existente","relationship_form_create_contact":"A\u00f1ade a una nueva persona","relationship_form_deletion_success":"La relaci\u00f3n ha sido eliminada.","relationship_form_edit":"Editar una relaci\u00f3n existente","relationship_form_is_with":"Esta persona es...","relationship_form_is_with_name":":name es...","relationship_unlink_confirmation":"\u00bfEst\u00e1s seguro de que deseas eliminar esta relaci\u00f3n? Esta persona no ser\u00e1 eliminada - solo la relaci\u00f3n entre estas dos personas.","reminder_frequency_day":"cada d\u00eda|cada :number d\u00edas","reminder_frequency_month":"cada mes|cada :number meses","reminder_frequency_one_time":"el :date","reminder_frequency_week":"cada semana|cada :number semanas","reminder_frequency_year":"cada a\u00f1o|cada :number a\u00f1os","reminders_add_cta":"A\u00f1adir recordatorio","reminders_add_description":"Por favor recordarme...","reminders_add_error_custom_text":"Necesitas indicar un texto para este recordatorio","reminders_add_next_time":"\u00bfCu\u00e1ndo es la pr\u00f3xima vez que te gustar\u00eda que te recordaramos sobre esto?","reminders_add_once":"Recuerdame sobre esto solo una vez","reminders_add_optional_comment":"Comentario opcional","reminders_add_recurrent":"Recuerdame sobre esto cada","reminders_add_starting_from":"a partir de la fecha indicada arriba","reminders_add_title":"\u00bfQu\u00e9 te gustar\u00eda que se te recordara sobre :name?","reminders_birthday":"Cumplea\u00f1os de :name","reminders_blank_add_activity":"Agregar un recordatorio","reminders_blank_title":"\u00bfHay algo en lo que quisieras ser recordado sobre :name?","reminders_create_success":"El recordatorio ha sido a\u00f1adido exitosamente","reminders_cta":"Agregar un recordatorio","reminders_delete_confirmation":"\u00bfEst\u00e1s seguro de que deseas eliminar este recordatorio?","reminders_delete_cta":"Eliminar","reminders_delete_success":"El recordatorio ha sido eliminado exitosamente","reminders_description":"Te enviaremos un correo electr\u00f3nico por cada uno de los siguientes recordatorios. Los recordatorios son enviados la ma\u00f1ana del d\u00eda que el evento ocurre. Recordatorios autom\u00e1ticamente a\u00f1adidos para cumplea\u00f1os no pueden ser eliminados. Si quieres cambiar esa fecha, edita la fecha de cumplea\u00f1os de los contactos.","reminders_edit_update_cta":"Actualizar recordatorio","reminders_free_plan_warning":"Estas en el plan gratuito. Correos electr\u00f3nicos no son enviados para este plan. Para recibir recordatorio por correo electr\u00f3nico actualiza tu cuenta.","reminders_next_expected_date":"en","reminders_one_time":"Una vez","reminders_type_month":"mes","reminders_type_week":"semana","reminders_type_year":"a\u00f1o","reminders_update_success":"El recordatorio ha sido actualizado exitosamente","section_contact_information":"Informaci\u00f3n de contacto","section_personal_activities":"Actividades","section_personal_gifts":"Regalos","section_personal_notes":"Notas","section_personal_reminders":"Recordatorios","section_personal_tasks":"Tareas","set_favorite":"Los contactos favoritos son colocados en la parte superior de la lista de contactos","stay_in_touch":"Mantenerse en contacto","stay_in_touch_frequency":"Mantenerse en contacto cada d\u00eda|Mantenerse en contacto cada {count} d\u00edas","stay_in_touch_invalid":"La frecuencia debe ser un n\u00famero mayor que 0.","stay_in_touch_modal_desc":"Podemos recordarte que te mantengas en contacto con {firstname} regularmente por correo electr\u00f3nico.","stay_in_touch_modal_label":"Env\u00edame un correo cada d\u00eda|Env\u00edame un correo electr\u00f3nico cada... {count} d\u00edas","stay_in_touch_modal_title":"Mantenerse en contacto","stay_in_touch_premium":"Necesitas actualizar tu cuenta para hacer uso de esta caracter\u00edstica","tag_add":"Agregar etiquetas","tag_add_search":"A\u00f1adir o buscar etiquetas","tag_edit":"Editar etiqueta","tag_no_tags":"No hay etiquetas a\u00fan","tasks_add_task":"A\u00f1adir una tarea","tasks_blank_title":"A\u00fan no tienes tareas.","tasks_complete_success":"La tarea ha cambiado de estado exitosamente","tasks_delete_success":"La tarea ha sido eliminada exitosamente","tasks_form_description":"Descripci\u00f3n (opcional)","tasks_form_title":"T\u00edtulo","tasks_title":"Tareas","work_add_cta":"Actualizar la informaci\u00f3n de trabajo","work_edit_company":"Empresa (opcional)","work_edit_job":"T\u00edtulo (opcional)","work_edit_success":"Informaci\u00f3n de trabajo actualizada","work_edit_title":"Actualizar la informaci\u00f3n de trabajo de :name","work_information":"Informaci\u00f3n de trabajo"},"reminder":{"type_birthday":"Desear feliz cumplea\u00f1os a","type_birthday_kid":"Desear feliz cumplea\u00f1os al hijo de","type_email":"Email","type_hangout":"Salir con","type_lunch":"Comer con","type_phone_call":"Llamar a"},"settings":{"2fa_disable_description":"Desactivar la autenticaci\u00f3n de dos factores para tu cuenta. \u00a1Ten cuidado, tu cuenta ser\u00e1 mucho menos segura!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Activar autenticaci\u00f3n en dos pasos para aumentar la seguridad de tu cuenta.","2fa_enable_error":"Se ha producido al activar la Autenticaci\u00f3n en dos pasos","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Por favor, valida el dispositivo que acabas de configurar:","2fa_enable_success":"Autenticaci\u00f3n en dos pasos activada","2fa_enable_title":"Activar autenticaci\u00f3n de dos pasos","2fa_otp_title":"Aplicaci\u00f3n m\u00f3vil de autenticaci\u00f3n en dos pasos","2fa_title":"Autenticaci\u00f3n en dos pasos","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Usa este id de cliente para solicitar un nuevo token y convertir c\u00f3digos de autorizaci\u00f3n para los tokens de acceso. Consulta la documentaci\u00f3n de Laravel Passport<\/a> para m\u00e1s informaci\u00f3n.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Moneda","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Eliminar cuenta","delete_desc":"\u00bfDeseas eliminar tu cuenta? La eliminaci\u00f3n es permanente, todos tus datos se perder\u00e1n de manera permanente. Si tienes una suscripci\u00f3n, se cancelar\u00e1 inmediatamente.","delete_notice":"\u00bfEst\u00e1s seguro de que deseas eliminar tu cuenta? Esto es permanente y no se puede deshacer. Todos tus datos ser\u00e1n eliminados y no se podr\u00e1n recuperar.","delete_other_desc":"Tus datos en la base de datos principal se borrar\u00e1n inmediatamente. Tal y como explica nuestra pol\u00edtica de privacidad, hacemos copias de seguridad diarias, cifradas de forma segura, que retenemos durante 30 d\u00edas, tras los cuales se borran completamente. No podemos borrar informaci\u00f3n espec\u00edfica de las copias de seguridad antes de este plazo de 30 d\u00edas. Todos tus datos se borrar\u00e1n completamente a los 30 d\u00edas del borrado de tu cuenta.","delete_title":"Eliminar tu cuenta","email":"Correo electr\u00f3nico","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Ingrese un email","export_be_patient":"Haz clic en el bot\u00f3n para comenzar la exportaci\u00f3n. El proceso puede tardar varios minutos. S\u00e9 paciente, no repitas el clic sobre el bot\u00f3n.","export_sql_cta":"Exportar datos en formato SQL","export_sql_explanation":"Exportar en formato SQL te permite mover tu informaci\u00f3n e importarla en otra instancia de Monica. Es \u00fatil si ejecutas tu propia instancia de Monica.","export_sql_link_instructions":"Lee las instrucciones<\/a> para entender c\u00f3mo importar este fichero en tu instancia.","export_title":"Exportar los datos de tu cuenta","export_title_sql":"Exportar datos en formato SQL","firstname":"Nombre","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Fecha de importaci\u00f3n","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Importados","import_report_status_skipped":"Skipped","import_report_title":"Importando reporte","import_report_type":"Tipo de importaci\u00f3n","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"Soportamos archivos .vcard<\/code> y .vcf<\/code>.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Apellidos","layout":"Disposici\u00f3n","layout_big":"Usar ancho del navegador","layout_small":"M\u00e1ximo 1200 pixels de ancho","locale":"Idiomas utilizados en la aplicaci\u00f3n","locale_ar":"\u00c1rabe","locale_cs":"Checo","locale_de":"Alem\u00e1n","locale_en":"Ingles","locale_en-GB":"English (United Kingdom)","locale_es":"Espa\u00f1ol","locale_fr":"Frances","locale_he":"Hebreo","locale_help":"\u00bfQuieres ayudar a traducir Monica o a\u00f1adir un nuevo idioma? Sigue este enlace para m\u00e1s informaci\u00f3n<\/a>.","locale_hr":"Croata","locale_it":"Italiano","locale_ja":"Japanese","locale_nl":"Alem\u00e1n","locale_pt":"Portugues","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Ruso","locale_sv":"Swedish","locale_tr":"Turco","locale_zh":"Chino simplificado","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Descripci\u00f3n","logs_object":"Objeto","logs_size":"Tama\u00f1o (kB)","logs_subject":"Asunto","logs_timestamp":"Fecha y Hora","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"Este es el contacto que te representa a ti<\/em> en Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Eliminar la asociaci\u00f3n","me_select":"Selecciona un contacto","me_select_click":"Haz clic aqu\u00ed para seleccionar un contacto.","me_title":"Me as a contact","name":"Tu nombre: :name","name_order":"Orden de los nombres","name_order_firstname_lastname":" \u2013 Juan P\u00e9rez","name_order_firstname_lastname_nickname":" () \u2013 Juan P\u00e9rez (el Nota)","name_order_firstname_nickname_lastname":" () \u2013 Juan (el Nota) P\u00e9rez","name_order_lastname_firstname":" \u2013 P\u00e9rez Juan","name_order_lastname_firstname_nickname":" () \u2013 P\u00e9rez Juan (el Nota)","name_order_lastname_nickname_firstname":" () \u2013 P\u00e9rez (el Nota) Juan","name_order_nickname":" \u2014 el Nota","name_order_nickname_firstname_lastname":" ( ) \u2013 El Nota (P\u00e9rez Juan)","password_btn":"Cambiar Contrase\u00f1a","password_change":"Change your password","password_current":"Contrase\u00f1a actual","password_current_placeholder":"Introduce tu contrase\u00f1a actual","password_new1":"Nueva contrase\u00f1a","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"Puedes usar cada c\u00f3digo de recuperaci\u00f3n una vez.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Resetear tu cuenta","reset_desc":"\u00bfDeseas reiniciar tu cuenta? Esto borrar\u00e1 todos tus contactos, y todos los datos asociados con ellos. Tu cuenta no se eliminar\u00e1.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Resetear tu cuenta","save":"Actualiza preferencias","security_help":"Cambiar configuraci\u00f3n de seguridad para tu cuenta.","security_title":"Seguridad","settings_success":"Preferencias actualizadas!","sidebar_personalization":"Personalizaci\u00f3n","sidebar_settings":"Configuraci\u00f3n de cuenta","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"Recursos DAV","sidebar_settings_export":"Exportar datos","sidebar_settings_import":"Importar datos","sidebar_settings_security":"Seguridad","sidebar_settings_storage":"Almacenamiento","sidebar_settings_subscriptions":"Subscripci\u00f3n","sidebar_settings_tags":"Gesti\u00f3n de etiquetas","sidebar_settings_users":"Usuarios","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"T\u00fa plan actual es :name. Muchas gracias por tu suscripci\u00f3n.","subscriptions_account_current_plan":"Tu plan actual","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Respaldar el proyecto a largo plazo, para que podamos seguir a\u00f1adiendo estupendas mejoras.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Volver a ajustes","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Muchas gracias por probar el plan de pago. Seguimos a\u00f1adiendo nuevas mejoras en Monica todo el tiempo, as\u00ed que tal vez quieras volver en el futuro para ver si est\u00e1s interesado en suscribirte de nuevo.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Se necesita confirmaci\u00f3n adicional para procesar tu pago. Por favor, confirma tu pago completando los detalles de tu pago a continuaci\u00f3n.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"El pago es gestionado por Stripe<\/a>. Ninguna informaci\u00f3n de la tarjeta toca nuestro servidor.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Escala de temperatura","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Zona horaria","title_general":"Informaci\u00f3n general","title_i18n":"Configuraci\u00f3n internacional","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"Confirmo que quiero invitar a este usuario a mi cuenta. Entiendo que esta persona tendr\u00e1 acceso a TODOS mis datos y ver\u00e1 exactamente lo mismo que yo veo.","users_add_cta":"Invitar usuario por email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invitar a alguien","users_blank_description":"Esta persona tendr\u00e1 el mismo acceso que t\u00fa y podr\u00e1 a\u00f1adir, editar o eliminar la informaci\u00f3n de contactos.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"A\u00f1adir m\u00e1s usuarios requiere una suscripci\u00f3n.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"\u00bfEst\u00e1s seguro que deseas borar este usuario de tu cuenta?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Invitaciones pendientes","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":":attribute debe ser aceptado.","active_url":":attribute no es una URL v\u00e1lida.","after":":attribute debe ser una fecha posterior a :date.","after_or_equal":":attribute debe ser una fecha posterior o igual a :date.","alpha":":attribute s\u00f3lo debe contener letras.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":":attribute s\u00f3lo debe contener letras y n\u00fameros.","array":":attribute debe ser un conjunto.","attributes":[],"before":":attribute debe ser una fecha anterior a :date.","before_or_equal":":attribute debe ser una fecha anterior o igual a :date.","between":{"array":":attribute tiene que tener entre :min - :max \u00edtems.","file":":attribute debe pesar entre :min - :max kilobytes.","numeric":":attribute tiene que estar entre :min - :max.","string":":attribute tiene que tener entre :min - :max caracteres."},"boolean":"El campo :attribute debe tener un valor verdadero o falso.","confirmed":"La confirmaci\u00f3n de :attribute no coincide.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute no es una fecha v\u00e1lida.","date_equals":"The :attribute must be a date equal to :date.","date_format":":attribute no corresponde al formato :format.","different":":attribute y :other deben ser diferentes.","digits":":attribute debe tener :digits d\u00edgitos.","digits_between":":attribute debe tener entre :min y :max d\u00edgitos.","dimensions":"Las dimensiones de la imagen :attribute no son v\u00e1lidas.","distinct":"El campo :attribute contiene un valor duplicado.","email":":attribute no es un correo v\u00e1lido.","ends_with":"The :attribute must end with one of the following: :values.","exists":":attribute es inv\u00e1lido.","file":"El campo :attribute debe ser un archivo.","filled":"El campo :attribute es obligatorio.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":":attribute debe ser una imagen.","in":":attribute es inv\u00e1lido.","in_array":"El campo :attribute no existe en :other.","integer":":attribute debe ser un n\u00famero entero.","ip":":attribute debe ser una direcci\u00f3n IP v\u00e1lida.","ipv4":":attribute debe ser un direcci\u00f3n IPv4 v\u00e1lida.","ipv6":":attribute debe ser un direcci\u00f3n IPv6 v\u00e1lida.","json":"El campo :attribute debe tener una cadena JSON v\u00e1lida.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":":attribute no debe tener m\u00e1s de :max elementos.","file":":attribute no debe ser mayor que :max kilobytes.","numeric":":attribute no debe ser mayor a :max.","string":":attribute no debe ser mayor que :max caracteres."},"mimes":":attribute debe ser un archivo con formato: :values.","mimetypes":":attribute debe ser un archivo con formato: :values.","min":{"array":":attribute debe tener al menos :min elementos.","file":"El tama\u00f1o de :attribute debe ser de al menos :min kilobytes.","numeric":"El tama\u00f1o de :attribute debe ser de al menos :min.","string":":attribute debe contener al menos :min caracteres."},"not_in":":attribute es inv\u00e1lido.","not_regex":"El formato del campo :attribute no es v\u00e1lido.","numeric":":attribute debe ser num\u00e9rico.","password":"The password is incorrect.","present":"El campo :attribute debe estar presente.","regex":"El formato de :attribute es inv\u00e1lido.","required":"El campo :attribute es obligatorio.","required_if":"El campo :attribute es obligatorio cuando :other es :value.","required_unless":"El campo :attribute es obligatorio a menos que :other est\u00e9 en :values.","required_with":"El campo :attribute es obligatorio cuando :values est\u00e1 presente.","required_with_all":"The :attribute field is required when :values are present.","required_without":"El campo :attribute es obligatorio cuando :values no est\u00e1 presente.","required_without_all":"El campo :attribute es obligatorio cuando ninguno de :values est\u00e9n presentes.","same":":attribute y :other deben coincidir.","size":{"array":":attribute debe contener :size elementos.","file":"El tama\u00f1o de :attribute debe ser :size kilobytes.","numeric":"El tama\u00f1o de :attribute debe ser :size.","string":":attribute debe contener :size caracteres."},"starts_with":"The :attribute must start with one of the following: :values.","string":"El campo :attribute debe ser una cadena de caracteres.","timezone":"El :attribute debe ser una zona v\u00e1lida.","unique":"El campo :attribute ya ha sido registrado.","uploaded":"Subir :attribute ha fallado.","url":"El formato :attribute es inv\u00e1lido.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} no puede ser mayor que {max}.","string":"{field} no debe ser mayor que {max} caracteres."},"required":"{field} es obligatorio.","url":"{field} no es una direcci\u00f3n URL v\u00e1lida."}}} diff --git a/public/js/langs/fa.json b/public/js/langs/fa.json deleted file mode 100644 index b43d4e491c7..00000000000 --- a/public/js/langs/fa.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Are you sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What\u2019s new","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading\u2026","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","today":"today","type":"Type","unknown":"I don\u2019t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next \u276f","previous":"\u276e Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you\u2019ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you\u2019ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name\u2019s personal information","information_edit_unknown":"I do not know this person\u2019s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"Add","people_add_firstname":"First name","people_add_gender":"Gender","people_add_import":"Do you want to import your contacts<\/a>?","people_add_lastname":"Last name (Optional)","people_add_middlename":"Middle name (Optional)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"Add a new person","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"Delete contact","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"Add someone","people_list_blank_title":"You don\u2019t have anyone in your account yet","people_list_clear_filter":"Clear filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sort by first name A \u2192 Z","people_list_firstnameZA":"Sort by first name Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"Sort by last name A \u2192 Z","people_list_lastnameZA":"Sort by last name Z \u2192 A","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sort","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"Search your contacts...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Activities","section_personal_gifts":"Gifts","section_personal_notes":"Notes","section_personal_reminders":"Reminders","section_personal_tasks":"Tasks","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information updated","work_edit_title":"Update :name\u2019s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/fr.json b/public/js/langs/fr.json deleted file mode 100644 index 298997303c7..00000000000 --- a/public/js/langs/fr.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Ajouter","another_day":"un autre jour","application_description":"Monica est un outil pour g\u00e9rer vos interactions avec vos proches, vos amis et votre famille.","application_og_title":"Ayez de meilleures relations avec vos proches. GRC gratuit en ligne pour les amis et la famille.","application_title":"Monica \u2013 gestionnaire de relations personnelles","back":"Pr\u00e9c\u00e9dent","breadcrumb_add_note":"Ajouter une note","breadcrumb_add_significant_other":"Ajouter un partenaire","breadcrumb_api":"API","breadcrumb_archived_contacts":"Contacts archiv\u00e9s","breadcrumb_dashboard":"Tableau de bord","breadcrumb_dav":"Ressources DAV","breadcrumb_edit_introductions":"Comment vous vous \u00eates rencontr\u00e9s","breadcrumb_edit_note":"Modifier la note","breadcrumb_edit_significant_other":"Mettre \u00e0 jour un partenaire","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"Liste de contacts","breadcrumb_profile":"Profil de :name","breadcrumb_settings":"Param\u00e8tres","breadcrumb_settings_export":"Exporter","breadcrumb_settings_import":"Importer","breadcrumb_settings_import_report":"Rapport d\u2019import","breadcrumb_settings_import_upload":"T\u00e9l\u00e9versez","breadcrumb_settings_personalization":"Personnalisation","breadcrumb_settings_security":"S\u00e9curit\u00e9","breadcrumb_settings_security_2fa":"Authentification \u00e0 deux facteurs","breadcrumb_settings_subscriptions":"Abonnement","breadcrumb_settings_tags":"\u00c9tiquettes","breadcrumb_settings_users":"Utilisateurs","breadcrumb_settings_users_add":"Ajouter un utilisateur","cancel":"Annuler","close":"Fermer","compliance_desc":"Nous avons chang\u00e9 nos Conditions d\u2019Utilisation<\/a> et notre Politique de Confidentialit\u00e9<\/a>. Nous devons vous demander de les consulter et les accepter si vous voulez continuer \u00e0 utiliser votre compte.","compliance_desc_end":"Nous ne faisons rien de m\u00e9chant avec vos donn\u00e9es ou votre compte et nous ne le ferons jamais.","compliance_terms":"Accepter les nouvelles conditions et politique de confidentialit\u00e9","compliance_title":"D\u00e9sol\u00e9 pour l\u2019interruption.","confirm":"Confirmer","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copier","create":"Cr\u00e9er","date":"Date","dav_birthdays":"Anniversaires","dav_birthdays_description":"Anniversaires des contacts de :name","dav_contacts":"Contacts","dav_contacts_description":"Contacts de :name","dav_tasks":"T\u00e2ches","dav_tasks_description":"T\u00e2ches de :name","default_save_success":"Les modifications ont \u00e9t\u00e9 enregistr\u00e9es.","delete":"Supprimer","delete_confirm":"\u00cates-vous s\u00fbr(e) ?","done":"Termin\u00e9","download":"T\u00e9l\u00e9charger","edit":"\u00c9diter","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agonie","emotion_alarm":"Inquiet","emotion_alienation":"Ali\u00e9nation","emotion_amazement":"Stup\u00e9faction","emotion_amusement":"Amusement","emotion_anger":"Col\u00e8re","emotion_anguish":"Angoisse","emotion_annoyance":"G\u00eane","emotion_anxiety":"Anxi\u00e9t\u00e9","emotion_apprehension":"Appr\u00e9hension","emotion_arousal":"Excitation","emotion_astonishment":"\u00c9tonnement","emotion_attraction":"Attraction","emotion_bitterness":"Amertume","emotion_bliss":"B\u00e9atitude","emotion_caring":"Soucieux","emotion_cheerfulness":"Bonne humeur","emotion_compassion":"Sympathie","emotion_contempt":"M\u00e9pris","emotion_contentment":"Satisfaction","emotion_defeat":"\u00c9chec","emotion_dejection":"D\u00e9couragement","emotion_delight":"Plaisir","emotion_depression":"D\u00e9pression","emotion_desire":"D\u00e9sir","emotion_despair":"D\u00e9sespoir","emotion_disappointment":"D\u00e9ception","emotion_disgust":"D\u00e9go\u00fbt","emotion_dislike":"D\u00e9samour","emotion_dismay":"Consternation","emotion_displeasure":"M\u00e9contentement","emotion_distress":"D\u00e9tresse","emotion_dread":"Effroi","emotion_eagerness":"Ardeur","emotion_ecstasy":"Extase","emotion_elation":"Exultation","emotion_embarrassment":"Embarras","emotion_enjoyment":"Jouissance","emotion_enthrallment":"Captivation","emotion_enthusiasm":"Enthousiasme","emotion_envy":"Envie","emotion_euphoria":"Euphorie","emotion_exasperation":"Exasp\u00e9ration","emotion_excitement":"Excitation","emotion_exhilaration":"Euphorie","emotion_fear":"Peur","emotion_ferocity":"F\u00e9rocit\u00e9","emotion_fondness":"Tendresse","emotion_fright":"Frayeur","emotion_frustration":"Frustration","emotion_fury":"Fureur","emotion_gaiety":"Gaiet\u00e9","emotion_gladness":"All\u00e9gresse","emotion_glee":"All\u00e9gresse","emotion_gloom":"D\u00e9sesp\u00e9rance","emotion_glumness":"Morose","emotion_grief":"Afflicion","emotion_grouchiness":"Rogne","emotion_grumpiness":"Mauvaise humeur","emotion_guilt":"Culpabilit\u00e9","emotion_happiness":"Bonheur","emotion_hate":"Haine","emotion_homesickness":"Mal du pays","emotion_hope":"Espoir","emotion_hopelessness":"D\u00e9solation","emotion_horror":"Horreur","emotion_hostility":"Hostilit\u00e9","emotion_humiliation":"Humiliation","emotion_hurt":"Douloureux","emotion_hysteria":"Hyst\u00e9rie","emotion_infatuation":"Engouement","emotion_insecurity":"Ins\u00e9curit\u00e9","emotion_insult":"Insulte","emotion_irritation":"Irritation","emotion_isolation":"Isolement","emotion_jealousy":"Jalousie","emotion_jolliness":"Ga\u00eet\u00e9","emotion_joviality":"Jovialit\u00e9","emotion_joy":"Joie","emotion_jubilation":"Jubilation","emotion_liking":"Affectation","emotion_loathing":"R\u00e9pugnance","emotion_loneliness":"Solitude","emotion_longing":"Nostalgie","emotion_love":"Amour","emotion_lust":"Luxure","emotion_melancholy":"M\u00e9lancolie","emotion_misery":"Mis\u00e8re","emotion_mortification":"Humili\u00e9","emotion_neglect":"N\u00e9gligence","emotion_nervousness":"Nervosit\u00e9","emotion_optimism":"Optimisme","emotion_outrage":"Indignation","emotion_panic":"Panique","emotion_passion":"Passion","emotion_pity":"Dommage","emotion_pleasure":"Plaisir","emotion_pride":"Fiert\u00e9","emotion_primary_anger":"Col\u00e8re","emotion_primary_fear":"Peur","emotion_primary_joy":"Joie","emotion_primary_love":"Amour","emotion_primary_sadness":"Tristesse","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Ravissement","emotion_regret":"Regret","emotion_rejection":"Rejet","emotion_relief":"Soulagement","emotion_remorse":"Remords","emotion_resentment":"Ressentiment","emotion_revulsion":"R\u00e9pulsion","emotion_sadness":"Tristesse","emotion_satisfaction":"Satisfaction","emotion_scorn":"M\u00e9pris","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Bonne humeur","emotion_secondary_contentment":"Satisfaction","emotion_secondary_disappointment":"D\u00e9ception","emotion_secondary_disgust":"D\u00e9go\u00fbt","emotion_secondary_enthrallment":"Captivation","emotion_secondary_envy":"Envie","emotion_secondary_exasperation":"Exasp\u00e9ration","emotion_secondary_horror":"Horreur","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Nostalgie","emotion_secondary_lust":"Luxure","emotion_secondary_neglect":"N\u00e9gligence","emotion_secondary_nervousness":"Nervosit\u00e9","emotion_secondary_optimism":"Optimisme","emotion_secondary_pride":"Fiert\u00e9","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Soulagement","emotion_secondary_sadness":"Tristesse","emotion_secondary_shame":"Honte","emotion_secondary_suffering":"Souffrance","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathie","emotion_secondary_zest":"Entrain","emotion_sentimentality":"Sentimentalit\u00e9","emotion_shame":"Honte","emotion_shock":"Choc","emotion_sorrow":"Chagrin","emotion_spite":"D\u00e9pit","emotion_suffering":"Souffrance","emotion_surprise":"Surprise","emotion_sympathy":"Sympathie","emotion_tenderness":"Tendresse","emotion_tenseness":"Tension","emotion_terror":"Terreur","emotion_thrill":"Frisson","emotion_uneasiness":"Malaise","emotion_unhappiness":"Malheur","emotion_vengefulness":"Vengeance","emotion_woe":"Malheur","emotion_worry":"Inqui\u00e9tude","emotion_wrath":"Rage","emotion_zeal":"Ferveur","emotion_zest":"Entrain","error_help":"On revient tout de suite.","error_id":"Erreur num\u00e9ro\u00a0:\u00a0:id","error_maintenance":"Maintenance en cours. On revient vite !","error_no_term":"Il n\u2019y a pas encore de politique pour cette instance.","error_save":"Une erreur est intervenue pendant la sauvegarde des donn\u00e9es.","error_title":"Oups\u00a0! Une erreur est survenue.","error_try_again":"Une erreur s\u2019est produite. Merci d\u2019essayer \u00e0 nouveau.","error_twitter":"Suivez notre compte Twitter<\/a> pour \u00eatre alert\u00e9 de l\u2019\u00e9volution de la situation.","error_unauthorized":"Vous n\u2019avez pas le droit de modifier cette ressource.","error_unavailable":"Service indisponible","error_user_account":"Cet utilisateur n\u2019appartient pas au compte donn\u00e9.","file_selected":"{count} fichier s\u00e9lectionn\u00e9\u2026|{count} fichiers s\u00e9lectionn\u00e9s\u2026","filter":"Filtrer la liste","footer_modal_version_release_away":"Vous avez une version de retard par rapport \u00e0 la derni\u00e8re version disponible.|Vous avez :number versions de retard par rapport \u00e0 la derni\u00e8re version disponible. Vous devriez mettre \u00e0 jour votre instance.","footer_modal_version_whats_new":"Quoi de neuf ?","footer_new_version":"Une nouvelle version de Monica est disponible","footer_newsletter":"Infolettre","footer_privacy":"Politique de confidentialit\u00e9","footer_release":"Notes de version","footer_remarks":"Commentaires ?","footer_send_email":"Envoyez nous un courriel","footer_source_code":"Contribuer","footer_version":"Version : :version","gender_female":"Femme","gender_male":"Homme","gender_no_gender":"Aucun genre","gender_none":"Aucun","go_back":"Revenir en arri\u00e8re","header_changelog_link":"\u00c9volutions du produit","header_logout_link":"D\u00e9connexion","header_settings_link":"Param\u00e8tres","load_more":"Charger plus","loading":"Chargement\u2026","main_nav_activities":"Activit\u00e9s","main_nav_cta":"Ajouter des gens","main_nav_dashboard":"Tableau de bord","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"T\u00e2ches","markdown_description":"Souhaitez-vous formatter votre texte d\u2019une belle mani\u00e8re ? Nous supportons le format Markdown pour ajouter du gras, italique, des listes et plus encore.","markdown_link":"Lire la documentation","new":"nouveau","no":"Non","percent_uploaded":"{percent}% t\u00e9l\u00e9charg\u00e9s","relationship_type_bestfriend":"meilleur ami","relationship_type_bestfriend_female":"meilleure amie","relationship_type_bestfriend_female_with_name":"meilleure amie de :name","relationship_type_bestfriend_with_name":"meilleur ami de :name","relationship_type_boss":"patron","relationship_type_boss_female":"patronne","relationship_type_boss_female_with_name":"patronne de :name","relationship_type_boss_with_name":"patron de :name","relationship_type_child":"fils","relationship_type_child_female":"fille","relationship_type_child_female_with_name":"fille de :name","relationship_type_child_with_name":"fils de :name","relationship_type_colleague":"coll\u00e8gue","relationship_type_colleague_female":"coll\u00e8gue","relationship_type_colleague_female_with_name":"coll\u00e8gue de :name","relationship_type_colleague_with_name":"coll\u00e8gue de :name","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousine","relationship_type_cousin_female_with_name":"cousine de :name","relationship_type_cousin_with_name":"cousin de :name","relationship_type_date":"rendez-vous","relationship_type_date_female":"rendez-vous","relationship_type_date_female_with_name":"rendez-vous de :name","relationship_type_date_with_name":"rendez-vous de :name","relationship_type_ex":"ex-petit ami","relationship_type_ex_female":"ex-petite amie","relationship_type_ex_female_with_name":"ex-petite amie de :name","relationship_type_ex_husband":"ex-mari","relationship_type_ex_husband_female":"ex-femme","relationship_type_ex_husband_female_with_name":"ex-femme de :name","relationship_type_ex_husband_with_name":"ex-mari de :name","relationship_type_ex_with_name":"ex-petit ami de :name","relationship_type_friend":"ami","relationship_type_friend_female":"amie","relationship_type_friend_female_with_name":"amie de :name","relationship_type_friend_with_name":"ami de :name","relationship_type_godfather":"parrain","relationship_type_godfather_female":"marraine","relationship_type_godfather_female_with_name":"marraine de :name","relationship_type_godfather_with_name":"parrain de :name","relationship_type_godson":"filleul","relationship_type_godson_female":"filleule","relationship_type_godson_female_with_name":"filleule de :name","relationship_type_godson_with_name":"filleul de :name","relationship_type_grandchild":"petit-fils","relationship_type_grandchild_female":"petite-fille","relationship_type_grandchild_female_with_name":"petite-fille de :name","relationship_type_grandchild_with_name":"petit-fils de :name","relationship_type_grandparent":"grand-p\u00e8re","relationship_type_grandparent_female":"grand-m\u00e8re","relationship_type_grandparent_female_with_name":"grand-m\u00e8re de :name","relationship_type_grandparent_with_name":"grand-p\u00e8re de :name","relationship_type_group_family":"Relations familiales","relationship_type_group_friend":"Relations amicales","relationship_type_group_love":"Relations amoureuses","relationship_type_group_other":"Autre type de relations","relationship_type_group_work":"Relations de travail","relationship_type_inlovewith":"amoureux","relationship_type_inlovewith_female":"amoureuse","relationship_type_inlovewith_female_with_name":"une personne dont :name est amoureuse","relationship_type_inlovewith_with_name":"une personne dont :name est amoureux","relationship_type_lovedby":"aim\u00e9 par","relationship_type_lovedby_female":"aim\u00e9e par","relationship_type_lovedby_female_with_name":"amante secr\u00e8te de :name","relationship_type_lovedby_with_name":"amant secret de :name","relationship_type_lover":"amant","relationship_type_lover_female":"amante","relationship_type_lover_female_with_name":"amante de :name","relationship_type_lover_with_name":"amant de :name","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentore","relationship_type_mentor_female_with_name":"mentore de :name","relationship_type_mentor_with_name":"mentor de :name","relationship_type_nephew":"neveu","relationship_type_nephew_female":"ni\u00e8ce","relationship_type_nephew_female_with_name":"ni\u00e8ce de :name","relationship_type_nephew_with_name":"neuveu de :name","relationship_type_parent":"p\u00e8re","relationship_type_parent_female":"m\u00e8re","relationship_type_parent_female_with_name":"m\u00e8re de :name","relationship_type_parent_with_name":"p\u00e8re de :name","relationship_type_partner":"conjoint","relationship_type_partner_female":"conjointe","relationship_type_partner_female_with_name":"conjointe de :name","relationship_type_partner_with_name":"conjoint de :name","relationship_type_protege":"prot\u00e9g\u00e9","relationship_type_protege_female":"prot\u00e9g\u00e9e","relationship_type_protege_female_with_name":"prot\u00e9g\u00e9e de :name","relationship_type_protege_with_name":"prot\u00e9g\u00e9 de :name","relationship_type_sibling":"fr\u00e8re","relationship_type_sibling_female":"s\u0153ur","relationship_type_sibling_female_with_name":"s\u0153ur de :name","relationship_type_sibling_with_name":"fr\u00e8re de :name","relationship_type_spouse":"\u00e9pouse","relationship_type_spouse_female":"\u00e9pouse","relationship_type_spouse_female_with_name":"\u00e9pouse de :name","relationship_type_spouse_with_name":"\u00e9pouse de :name","relationship_type_stepchild":"beau fils","relationship_type_stepchild_female":"belle fille","relationship_type_stepchild_female_with_name":"belle fille de :name","relationship_type_stepchild_with_name":"beau fils de :name","relationship_type_stepparent":"beau p\u00e8re","relationship_type_stepparent_female":"belle m\u00e8re","relationship_type_stepparent_female_with_name":"belle m\u00e8re de :name","relationship_type_stepparent_with_name":"beau p\u00e8re de :name","relationship_type_subordinate":"employ\u00e9","relationship_type_subordinate_female":"employ\u00e9e","relationship_type_subordinate_female_with_name":"employ\u00e9e de :name","relationship_type_subordinate_with_name":"employ\u00e9 de :name","relationship_type_uncle":"oncle","relationship_type_uncle_female":"tante","relationship_type_uncle_female_with_name":"tante de :name","relationship_type_uncle_with_name":"oncle de :name","remove":"Enlever","retry":"R\u00e9essayer","revoke":"R\u00e9voquer","save":"Sauver","save_close":"Enregistrer et fermer","today":"aujourd\u2019hui","type":"Type","unknown":"Je ne sais pas","update":"Mettre \u00e0 jour","upgrade":"Mettre \u00e0 jour pour d\u00e9bloquer","upload":"Envoyer","verify":"V\u00e9rifier","weather_clear-day":"Temps clair","weather_clear-night":"Nuit claire","weather_cloudy":"Nuageux","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"M\u00e9t\u00e9o actuelle","weather_fog":"Brouillard","weather_partly-cloudy-day":"Nuit partiellement nuageuse","weather_partly-cloudy-night":"Jour partiellement nuageux","weather_rain":"Pluie","weather_sleet":"Neige fondue","weather_snow":"Neige","weather_wind":"Vent","with":"avec","yes":"Oui","yesterday":"hier","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Code d\u2019authentification \u00e0 deux facteurs","2fa_otp_help":"Ouvrez votre application mobile pour l\u2019authentification \u00e0 deux facteurs et copiez le Qr code suivant","2fa_recuperation_code":"Entrez le code de r\u00e9cup\u00e9ration de deux facteurs","2fa_title":"Authentification \u00e0 deux facteurs","2fa_wrong_validation":"L\u2019authentification \u00e0 deux facteurs a \u00e9chou\u00e9.","back_homepage":"Retour \u00e0 la page d\u2019accueil","button_remember":"Se souvenir de moi","change_language":"Afficher la page en :lang","change_language_title":"Changer la langue\u00a0:","confirmation_again":"Si vous souhaitez modifier votre adresse courriel vous pouvez cliquer ici<\/a>.","confirmation_check":"Avant de continuer, veuillez v\u00e9rifier votre bo\u00eete mail pour un lien de v\u00e9rification.","confirmation_fresh":"Un nouveau lien de v\u00e9rification a \u00e9t\u00e9 envoy\u00e9 \u00e0 votre adresse courriel.","confirmation_request_another":"Si vous n\u2019avez pas re\u00e7u le courriel cliquez ici pour en demander un autre<\/a>.","confirmation_title":"V\u00e9rifiez votre adresse courriel","create_account":"Cr\u00e9er le premier compte en vous enregistrant<\/a>","email":"Courriel","email_change_current_email":"Adresse courriel actuelle\u00a0:","email_change_new":"Nouvelle adresse courriel","email_change_title":"Modifier votre adresse courriel","email_changed":"Votre adresse courriel a \u00e9t\u00e9 modif\u00e9e. V\u00e9rifiez votre bo\u00eete aux lettres pour la valider.","failed":"Ces identifiants ne correspondent pas \u00e0 nos enregistrements.","login":"Connexion","login_again":"Merci de vous connecter \u00e0 nouveau \u00e0 votre compte","login_to_account":"Connectez-vous \u00e0 votre compte","login_with_recovery":"Connexion avec un code de r\u00e9cup\u00e9ration","mfa_auth_otp":"S\u2019authentifier avec votre dispositif \u00e0 deux facteurs","mfa_auth_webauthn":"Authentifier avec une cl\u00e9 de s\u00e9curit\u00e9 (WebAuthn)","not_authorized":"Vous n\u2019\u00eates pas autoris\u00e9 \u00e0 ex\u00e9cuter cette action","password":"Mot de passe","password_forget":"Mot de passe oubli\u00e9 ?","password_reset":"R\u00e9initialisez votre mot de passe","password_reset_action":"R\u00e9initialiser le mot de passe","password_reset_email":"Adresse courriel","password_reset_email_content":"Cliquez ici pour r\u00e9initialiser votre mot de passe :","password_reset_password":"Mot de passe","password_reset_password_confirm":"Confirmez le mot de passe","password_reset_send_link":"Envoyer un lien pour r\u00e9initialiser le mot de passe","password_reset_title":"R\u00e9initialiser le mot de passe","recovery":"Code de r\u00e9cup\u00e9ration","register_action":"Enregistrement","register_create_account":"Vous devez cr\u00e9er un compte pour utiliser Monica","register_email":"Entrez une adresse courriel valide","register_email_example":"vous@maison","register_firstname":"Pr\u00e9nom","register_firstname_example":"ex : Pierre","register_invitation_email":"Pour des raisons de s\u00e9curit\u00e9, merci d\u2019indiquer l\u2019adresse courriel de la personne qui vous a invit\u00e9 \u00e0 joindre son compte. Cette information est indiqu\u00e9e dans le courriel d\u2019invitation.","register_lastname":"Nom de famille","register_lastname_example":"ex : Dupont","register_login":"Connectez-vous<\/a> si vous avez d\u00e9j\u00e0 un compte.","register_password":"Mot de passe","register_password_confirmation":"Confirmez le mot de passe","register_password_example":"Entrez un mot de passe s\u00e9curis\u00e9","register_policy":"L\u2019inscription signifie vous avez lu et acceptez notre Politique de Confidentialit\u00e9<\/a> et nos Conditions d\u2019Utilisation<\/a>.","register_title_create":"Cr\u00e9ez votre compte Monica","register_title_welcome":"Bienvenue \u00e0 votre nouvelle instance Monica","signup":"S\u2019inscrire","signup_disabled":"L\u2019inscription est actuellement d\u00e9sactiv\u00e9e","signup_error":"Une erreur est survenue lors de l\u2019ajout de l\u2019utilisateur","signup_no_account":"Vous n\u2019avez pas de compte ?","throttle":"Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.","use_recovery":"Ou vous pouvez utiliser un code de r\u00e9cup\u00e9ration<\/a>"},"changelog":{"note":"Remarque\u00a0: malheureusement, cette page est uniquement en Anglais.","title":"\u00c9volutions du produit"},"dashboard":{"dashboard_blank_cta":"Ajoutez votre premier contact","dashboard_blank_description":"Monica est l\u2019endroit pour organiser toutes les interactions que vous avez avec ceux qui vous sont chers.","dashboard_blank_illustration":"Illustration par Freepik<\/a>","dashboard_blank_title":"Bienvenue chez vous !","debts_you_owe":"Vous devez","notes_title":"Vous n\u2019avez pas encore de note favorite.","product_changes":"\u00c9volutions du produit","product_view_details":"Afficher les d\u00e9tails","reminders_next_months":"\u00c9v\u00e8nements dans les 3 prochains mois","reminders_none":"Aucun rappel pour ce mois-ci.","statistics_activities":"Activit\u00e9s","statistics_contacts":"Contacts","statistics_gifts":"Cadeaux","tab_calls_blank":"Vous n\u2019avez encore enregistr\u00e9 aucun appel.","tab_debts":"Dettes","tab_debts_blank":"Vous n\u2019avez encore enregistr\u00e9 aucune dette.","tab_favorite_notes":"Notes favorites","tab_recent_calls":"Appels r\u00e9cents","tab_tasks":"T\u00e2ches","tab_tasks_blank":"Vous n\u2019avez encore aucune t\u00e2che.","task_add_cta":"Ajouter une t\u00e2che","tasks_add_note":"Appuyez sur Entr\u00e9e<\/kbd> pour ajouter la t\u00e2che.","tasks_add_task_placeholder":"En quoi consiste cette t\u00e2che\u00a0?","tasks_tab_your_contacts":"T\u00e2ches li\u00e9es \u00e0 vos contacts","tasks_tab_your_tasks":"Vos t\u00e2ches"},"format":{"full_date_year":"d F Y","full_hour":"H:i","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M Y","short_date_year_time":"d M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cette entr\u00e9e ?","entry_delete_success":"L\u2019entr\u00e9e a \u00e9t\u00e9 supprim\u00e9e avec succ\u00e8s.","journal_add":"Ajouter une entr\u00e9e","journal_add_comment":"Ajouter un commentaire (optionnel)\u00a0?","journal_add_cta":"Sauvegarder","journal_add_date":"Date","journal_add_post":"Entr\u00e9e","journal_add_title":"Titre (optionnel)","journal_blank_cta":"Ajouter votre premi\u00e8re entr\u00e9e dans le journal","journal_blank_description":"Le journal vous permet de vous rappeler d\u2019\u00e9v\u00e8nements pass\u00e9s, ou \u00e0 venir.","journal_come_back":"Merci. Revenez demain pour voter \u00e0 nouveau.","journal_created_at":"Cr\u00e9\u00e9 le {date}","journal_created_automatically":"Cr\u00e9\u00e9e automatiquement","journal_description":"Note : le journal liste les entr\u00e9es manuelles, ainsi que les entr\u00e9es automatiques comme les activit\u00e9s que vous faites avec vos contacts. Bien que vous puissiez supprimer les entr\u00e9es manuelles, vous devrez supprimer les activit\u00e9s directement de la page du contact pour les supprimer du journal.","journal_edit":"\u00c9diter une entr\u00e9e de journal","journal_empty":"Journal vide","journal_entry_rate":"Vous avez \u00e9valu\u00e9 votre journ\u00e9e.","journal_entry_type_activity":"Activit\u00e9","journal_entry_type_journal":"Note de journal","journal_rate":"Comment s\u2019est pass\u00e9 votre journ\u00e9e ? Vous pouvez voter une fois par jour.","journal_show_comment":"Afficher le commentaire"},"logs":{"contact_log_contact_created":"A cr\u00e9\u00e9 un contact.","contact_log_contact_description_cleared":"Suppression de la description.","contact_log_contact_description_updated":"Modification de la description.","contact_log_contact_work_updated":"Modification des informations professionnelles.","settings_log_company_created":"Cr\u00e9ation d\u2019une soci\u00e9t\u00e9 nomm\u00e9e :name.","settings_log_contact_created_with_name":"Ajout de :name en tant que contact.","settings_log_contact_description_cleared_with_name":"Suppression de la description de :name.","settings_log_contact_description_updated_with_name":"Modification de la description de :name.","settings_log_contact_work_updated_with_name":"Modification des informations professionnelles de :name."},"mail":{"comment":"Commentaire : :comment","confirmation_email_bottom":"Si vous n\u2019avez pas cr\u00e9\u00e9 de compte, aucune autre action n\u2019est requise.","confirmation_email_button":"V\u00e9rifiez l\u2019adresse courriel","confirmation_email_intro":"Pour valider votre adresse courriel, cliquez sur le bouton ci-dessous","confirmation_email_title":"Monica \u2013 v\u00e9rification d\u2019adresse courriel","footer_contact_info":"Ajouter, afficher, compl\u00e9ter et modifier les informations sur ce contact\u00a0:","footer_contact_info2":"Voir le profil de :name","footer_contact_info2_link":"Voir le profil de :name : :url","for":"Pour : :name","greetings":"Bonjour :username","invitation_button":"Accepter l\u2019invitation","invitation_expiration":"Ce lien expirera dans :count jours.","invitation_intro":"Vous avez \u00e9t\u00e9 invit\u00e9 par :name (:email) \u00e0 utiliser Monica, un outil de gestion de relations personnelles.","invitation_link":"Pour accepter l\u2019invitation, cliquez sur le lien ci-dessous :","invitation_title":"Monica \u2013 Vous \u00eates invit\u00e9 par :name","notification_description":"Dans :count jours (le :date), l\u2019\u00e9v\u00e8nement suivant se produira\u00a0:","notification_subject_line":"Vous avez un \u00e9v\u00e8nement \u00e0 venir","notifications_footer":"Si vous rencontrez des probl\u00e8mes en cliquant sur le bouton \u00ab\u00a0:actionText\u00a0\u00bb, copiez et collez l\u2019URL ci-dessous dans votre navigateur web\u00a0: [:actionURL](:actionURL)","notifications_hello":"Bonjour !","notifications_regards":"Cordialement","notifications_rights":"Tous droits r\u00e9serv\u00e9s","notifications_whoops":"Oups !","password_reset_bottom":"Si vous n\u2019avez pas demand\u00e9 de r\u00e9initialisation du mot de passe, aucune autre action n\u2019est requise.","password_reset_button":"R\u00e9initialiser le mot de passe","password_reset_expiration":"Ce lien de r\u00e9initialisation du mot de passe expirera dans :count minutes.","password_reset_intro":"Vous recevez ce courriel car nous avons re\u00e7u une demande de r\u00e9initialisation de mot de passe pour votre compte.","password_reset_title":"Monica \u2013 R\u00e9initialisation du mot de passe","stay_in_touch_subject_description":"Vous avez demand\u00e9 \u00e0 \u00eatre rappel\u00e9 de rester en contact avec :name tous les :frequency jour.|Vous avez demand\u00e9 \u00e0 \u00eatre rappel\u00e9 de rester en contact avec :name tous les :frequency jours.","stay_in_touch_subject_line":"Rester en contact avec :name","subject_line":"Rappel pour :contact","want_reminded_of":"Vous souhaitez \u00eatre rappel\u00e9\u00a0de :reason"},"pagination":{"next":"Suivant \u276f","previous":"\u276e Pr\u00e9c\u00e9dent"},"passwords":{"changed":"Mot de passe chang\u00e9 avec succ\u00e8s.","invalid":"Le mot de passe que vous avez saisi est incorrect.","reset":"Votre mot de passe a \u00e9t\u00e9 r\u00e9initialis\u00e9 !","sent":"Nous vous avons envoy\u00e9 par courriel le lien de r\u00e9initialisation du mot de passe.","throttled":"Merci de patienter avant de r\u00e9essayer.","token":"Ce jeton de r\u00e9initialisation du mot de passe n\u2019est pas valide.","user":"Si l\u2019email que vous avez entr\u00e9 correspond chez nous, un email de r\u00e9initialisation du mot de passe vous a \u00e9t\u00e9 envoy\u00e9."},"people":{"activities_activity":"Cat\u00e9gorie d\u2019activit\u00e9","activities_add_activity":"Ajouter une activit\u00e9","activities_add_category":"Indiquer une cat\u00e9gorie","activities_add_date_occured":"Date de l\u2019activit\u00e9","activities_add_emotions":"Ajouter une \u00e9motion","activities_add_emotions_title":"Voulez vous enregistrer ce que vous avez ressenti au cours de cette activit\u00e9\u00a0? (optionnel)","activities_add_error":"Erreur lors de l\u2019ajout de l\u2019activit\u00e9","activities_add_more_details":"Ajouter plus de d\u00e9tails","activities_add_participants":"Qui, \u00e0 part {name}, a particip\u00e9 \u00e0 l\u2019activit\u00e9 ? (optionnel)","activities_add_participants_cta":"Ajouter des participants","activities_add_pick_activity":"(optionnel) Souhaitez-vous cat\u00e9goriser cette activit\u00e9 ? Vous n\u2019avez pas \u00e0 le faire, mais cela nous permettra de faire des statistiques plus tard","activities_add_success":"L\u2019activit\u00e9 a \u00e9t\u00e9 ajout\u00e9e avec succ\u00e8s","activities_add_title":"Qu\u2019avez-vous fait avec {name} ?","activities_blank_add_activity":"Ajouter une activit\u00e9","activities_blank_title":"Gardez une trace de ce que vous avez fait avec {name} dans le pass\u00e9, et de ce dont vous avez parl\u00e9","activities_delete_success":"L\u2019activit\u00e9 a \u00e9t\u00e9 supprim\u00e9e avec succ\u00e8s","activities_item_information":":Activity. S\u2019est pass\u00e9e le :date","activities_list_category":"Cat\u00e9gorie :","activities_list_date":"Arriv\u00e9 le","activities_list_emotions":"\u00c9motions ressenties :","activities_list_participants":"Participants :","activities_profile_number_occurences":":value activit\u00e9|:value activit\u00e9s","activities_profile_subtitle":"Vous avez enregistr\u00e9 :total_activities activit\u00e9 avec :name au total et :activities_last_twelve_months au cours des 12 derniers mois.|Vous avez enregistr\u00e9 :total_activities activit\u00e9s avec :name au total et :activities_last_twelve_months au cours des 12 derniers mois.","activities_profile_title":"Rapports d\u2019activit\u00e9s entre :name et vous","activities_profile_year_summary":"Voici ce que vous avez fait ensemble en :year","activities_profile_year_summary_activity_types":"Voici une ventilation du type d\u2019activit\u00e9s que vous avez faites ensemble en :year","activities_summary":"D\u00e9crivez ce que vous avez fait","activities_update_success":"L\u2019activit\u00e9 a \u00e9t\u00e9 mise \u00e0 jour avec succ\u00e8s","activities_view_activities_report":"Afficher les rapports d\u2019activit\u00e9s","activities_who_was_involved":"Qui \u00e9tait impliqu\u00e9 ?","activity_title":"Activit\u00e9s","activity_type_ate_at_his_place":"mang\u00e9 chez lui\u00b7elle","activity_type_ate_at_home":"manger \u00e0 la maison","activity_type_ate_restaurant":"aller au restaurant","activity_type_category_cultural_activities":"Activit\u00e9s culturelles","activity_type_category_food":"Gastronomie","activity_type_category_simple_activities":"Activit\u00e9s simples","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"fait du sport ensemble","activity_type_just_hung_out":"tra\u00eener ensemble","activity_type_picnicked":"pique-niqu\u00e9","activity_type_talked_at_home":"parler ensemble \u00e0 la maison","activity_type_watched_movie_at_home":"regarder un film \u00e0 la maison ensemble","activity_type_went_bar":"aller dans un bar","activity_type_went_concert":"aller \u00e0 un concert","activity_type_went_museum":"aller au mus\u00e9e","activity_type_went_play":"aller au th\u00e9\u00e2tre","activity_type_went_theater":"aller au cin\u00e9ma","age_approximate_in_years":"env. :age ans","age_exact_birthdate":"n\u00e9 le :date","age_exact_in_years":":age ans","auditlogs_author":"Par :name le :date","auditlogs_breadcrumb":"Historique","auditlogs_link":"Historique","auditlogs_title":"Tout ce qui est arriv\u00e9 \u00e0 :name","avatar_adorable_avatar":"La photo de profil Adorable","avatar_change_title":"Changer de photo de profil","avatar_crop_new_avatar_photo":"Recadrer la nouvelle photo de profil","avatar_current":"Conserver la photo de profil actuelle","avatar_default_avatar":"La photo de profil par d\u00e9faut","avatar_gravatar":"Le Gravatar associ\u00e9 \u00e0 l\u2019adresse courriel de cette personne. Gravatar<\/a> est un syst\u00e8me global qui permet aux utilisateurs d\u2019associer des adresses courriel avec des photos.","avatar_photo":"\u00c0 partir d\u2019une photo que vous t\u00e9l\u00e9chargez","avatar_question":"Quelle photo de profil souhaitez-vous utiliser ?","birthdate_not_set":"Non indiqu\u00e9.","call_blank_desc":"Vous avez appel\u00e9 {name}","call_blank_title":"Gardez la trace des appels t\u00e9l\u00e9phoniques que vous avez fait avec {name}","call_button":"Enregistrer un appel t\u00e9l\u00e9phonique","call_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cet appel ?","call_delete_success":"L\u2019appel a \u00e9t\u00e9 supprim\u00e9 avec succ\u00e8s","call_emotions":"\u00c9motions :","call_empty_comment":"Aucun details","call_he_called":"{name} a appel\u00e9","call_title":"Appels t\u00e9l\u00e9phoniques","call_you_called":"Vous avez appel\u00e9","calls_add_success":"L\u2019appel t\u00e9l\u00e9phonique a \u00e9t\u00e9 enregistr\u00e9.","contact_address_form_city":"Ville (optionnel)","contact_address_form_country":"Pays (optionnel)","contact_address_form_latitude":"Latitude (chiffres uniquement) (optionnel)","contact_address_form_longitude":"Longitude (chiffres uniquement) (optionnel)","contact_address_form_name":"Nom (optionnel)","contact_address_form_postal_code":"Code postal (optionnel)","contact_address_form_province":"Province (optionnel)","contact_address_form_street":"Rue et num\u00e9ro (optionnel)","contact_address_title":"Adresses","contact_archive":"Archiver le contact","contact_archive_help":"Les contacts archiv\u00e9s n\u2019appara\u00eetront pas sur la liste de contacts, mais appara\u00eetront toujours dans les r\u00e9sultats de recherches.","contact_field_label_cell":"Portable","contact_field_label_fax":"Fax","contact_field_label_home":"Domicile","contact_field_label_main":"Principal","contact_field_label_other":"Autre","contact_field_label_pager":"Bipeur","contact_field_label_personal":"Personnalis\u00e9","contact_field_label_work":"Bureau","contact_info_address":"Habite \u00e0","contact_info_form_contact_type":"Type de contact","contact_info_form_content":"Contenu","contact_info_form_personalize":"Personaliser","contact_info_title":"Coordonn\u00e9es","contact_unarchive":"D\u00e9sarchiver le contact","conversation_add_another":"Ajoutez un nouveau message","conversation_add_content":"\u00c9crivez ce que vous avez dit","conversation_add_error":"Vous devez ajouter au moins un message.","conversation_add_how":"Comment avez-vous communiqu\u00e9 ?","conversation_add_success":"La discussion a \u00e9t\u00e9 ajout\u00e9e avec succ\u00e8s.","conversation_add_title":"Enregistrer une discussion","conversation_add_what_was_said":"Qu\u2019avez-vous dit\u00a0?","conversation_add_when":"Quand avez-vous eu cette discussion ?","conversation_add_who_wrote":"Qui a \u00e9crit ce message ?","conversation_add_you":"Vous","conversation_blank":"Enregistrer les discussions que vous avez avec :name sur les r\u00e9seaux sociaux, par SMS, etc.","conversation_delete_link":"Supprimer la discussion","conversation_delete_success":"La discussion a \u00e9t\u00e9 supprim\u00e9e avec succ\u00e8s.","conversation_edit_delete":"\u00cates-vous s\u00fbr de vouloir supprimer la discussion ? La suppression est permanente.","conversation_edit_success":"La discussion a \u00e9t\u00e9 mise \u00e0 jour avec succ\u00e8s.","conversation_edit_title":"\u00c9diter la discussion","conversation_list_cta":"Journal de conversation","conversation_list_table_content":"Contenu partiel (dernier message)","conversation_list_table_messages":"Messages","conversation_list_title":"Discussions","debt_add_add_cta":"Ajouter la dette","debt_add_amount":"la somme de","debt_add_cta":"Ajouter une dette","debt_add_reason":"pour la raison suivante (optionnelle)","debt_add_success":"La dette a \u00e9t\u00e9 ajout\u00e9e avec succ\u00e8s","debt_add_they_owe":":name vous doit","debt_add_title":"Gestion des dettes","debt_add_you_owe":"Vous devez \u00e0 :name","debt_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir effacer cette dette ?","debt_delete_success":"La dette a \u00e9t\u00e9 effac\u00e9e avec succ\u00e8s","debt_edit_success":"La dette a \u00e9t\u00e9 modifi\u00e9e avec succ\u00e8s","debt_edit_update_cta":"Mettre \u00e0 jour la dette","debt_they_owe":":name vous doit :amount","debt_title":"Dettes","debt_you_owe":"Vous devez :amount","debts_blank_title":"G\u00e9rez les dettes que vous devez \u00e0 :name ou que :name vous doit","deceased_add_reminder":"Ajouter un rappel pour cette date","deceased_age":"Age au moment du d\u00e9c\u00e8s","deceased_date_label":"Date de d\u00e9c\u00e8s","deceased_know_date":"Je connais la date de d\u00e9c\u00e8s de cette personne","deceased_label":"D\u00e9c\u00e9d\u00e9","deceased_label_with_date":"D\u00e9c\u00e9d\u00e9 le :date","deceased_mark_person_deceased":"Indiquer cette personne comme d\u00e9c\u00e9d\u00e9e","deceased_reminder_title":"Anniversaire de la mort de :name","document_list_blank_desc":"Ici vous pouvez stocker les documents reli\u00e9s \u00e0 cette personne.","document_list_cta":"T\u00e9l\u00e9charger un document","document_list_title":"Documents","document_upload_zone_cta":"T\u00e9l\u00e9charger un fichier","document_upload_zone_error":"Une erreur est survenue durant le t\u00e9l\u00e9chargement du document. Veuillez r\u00e9essayer plus tard.","document_upload_zone_progress":"T\u00e9l\u00e9charger le document...","edit_contact_information":"Mettre \u00e0 jour les coordonn\u00e9es","emotion_this_made_me_feel":"Cela vous fait sentir \u2026","food_preferences_add_success":"Les pr\u00e9f\u00e9rences alimentaires ont \u00e9t\u00e9 mises \u00e0 jour.","food_preferences_cta":"Ajouter des pr\u00e9f\u00e9rences alimentaires","food_preferences_edit_cta":"Enregistrer les pr\u00e9f\u00e9rences alimentaires","food_preferences_edit_description":"Peut-\u00eatre que :firstname ou quelqu\u2019un dans la famille :family a une allergie. Ou peut-\u00eatre qu\u2019il n\u2019aime pas un vin sp\u00e9cifique. Indiquez ici ses pr\u00e9f\u00e9rences alimentaires afin que vous vous en rappeliez la prochaine fois que vous l\u2019inviterez \u00e0 d\u00eener","food_preferences_edit_description_no_last_name":"Peut-\u00eatre que :firstname a une allergie. Ou peut-\u00eatre qu\u2019il n\u2019aime pas un vin sp\u00e9cifique. Indiquez ici ses pr\u00e9f\u00e9rences alimentaires afin que vous vous en rappeliez la prochaine fois que vous l\u2019inviterez \u00e0 d\u00eener","food_preferences_edit_title":"Modification des pr\u00e9f\u00e9rences alimentaires","food_preferences_title":"Pr\u00e9f\u00e9rences alimentaires","gifts_add_comment":"Commentaire (optionnel)","gifts_add_date":"Date (facultatif)","gifts_add_gift":"Ajouter un cadeau","gifts_add_gift_already_offered":"Cadeau d\u00e9j\u00e0 offert","gifts_add_gift_idea":"Id\u00e9e de cadeau","gifts_add_gift_name":"Cadeau","gifts_add_gift_received":"Cadeau re\u00e7u","gifts_add_gift_title":"Quel est ce cadeau ?","gifts_add_link":"Lien de la page web (optionnel)","gifts_add_photo":"Photo (optionnelle)","gifts_add_photo_title":"Ajouter une photo pour ce cadeau","gifts_add_recipient":"Destinataire (optionnel)","gifts_add_recipient_field":"Destinataire","gifts_add_someone":"Ce cadeau est destin\u00e9 \u00e0 quelqu\u2019un de la famille de {name} en particulier","gifts_add_success":"Le cadeau a \u00e9t\u00e9 ajout\u00e9 avec succ\u00e8s","gifts_add_title":"Gestion des cadeaux pour :name","gifts_add_value":"Valeur (optionnel)","gifts_delete_confirmation":"Etes-vous s\u00fbr de vouloir supprimer ce cadeau ?","gifts_delete_cta":"Supprimer","gifts_delete_success":"Le cadeau a \u00e9t\u00e9 supprim\u00e9","gifts_delete_title":"Supprimer un cadeau","gifts_for":"Pour : {name}","gifts_ideas":"Id\u00e9es cadeaux","gifts_link":"Lien","gifts_mark_offered":"Marquer comme offert","gifts_offered":"Cadeaux d\u00e9j\u00e0 offerts","gifts_offered_as_an_idea":"Marquer comme id\u00e9e","gifts_received":"Cadeaux re\u00e7us","gifts_title":"Cadeaux","gifts_update_success":"Le cadeau a \u00e9t\u00e9 mis \u00e0 jour avec succ\u00e8s","gifts_view_comment":"Voir commentaire","information_edit_birthdate_label":"Date de naissance","information_edit_description":"Description (facultatif)","information_edit_description_help":"Utilis\u00e9 sur la liste de contacts pour ajouter un contexte, si n\u00e9cessaire.","information_edit_exact":"Je connais la date de naissance pr\u00e9cise, qui est \u2026","information_edit_firstname":"Pr\u00e9nom","information_edit_lastname":"Nom de famille (optionnel)","information_edit_max_size":"Maximum :size Ko.","information_edit_max_size2":"Maximum {size} Ko.","information_edit_not_year":"Je connais le jour et le mois de sa naissance, mais pas l\u2019ann\u00e9e\u2026","information_edit_probably":"Cette personne a probablement \u2026","information_edit_success":"Le profil a \u00e9t\u00e9 mis \u00e0 jour avec succ\u00e8s","information_edit_title":"Mettre \u00e0 jour les informations personnelles de :name","information_edit_unknown":"Je ne connais pas son \u00e2ge","information_no_work_defined":"Aucune information professionnelle d\u00e9finie","information_work_at":"chez :company","introductions_add_reminder":"Ajouter un rappel pour c\u00e9l\u00e9brer la rencontre \u00e0 la date anniversaire, rappelant chaque ann\u00e9e quand cet \u00e9v\u00e8nement s\u2019est pass\u00e9","introductions_additional_info":"Expliquez quand et comment vous vous \u00eates rencontr\u00e9s","introductions_blank_cta":"Indiquez comment vous avez rencontr\u00e9 :name","introductions_edit_met_through":"Est-ce que quelqu\u2019un vous a introduit \u00e0 cette personne ?","introductions_first_met_date":"Date de la rencontre","introductions_first_met_date_known":"Voici la date de notre rencontre","introductions_met_date":"Rencontr\u00e9 le :date","introductions_met_through":"Rencontr\u00e9\u00b7e via :name<\/a>","introductions_no_first_met_date":"Je ne connais pas la date de cette rencontre","introductions_no_met_through":"Personne","introductions_reminder_title":"Anniversaire de la date de la premi\u00e8re rencontre","introductions_sidebar_title":"Comment vous vous \u00eates rencontr\u00e9","introductions_title_edit":"Comment avez-vous rencontr\u00e9 :name ?","introductions_update_success":"Vous avez mis \u00e0 jour avec succ\u00e8s vos informations de rencontre","last_activity_date":"Derni\u00e8re activit\u00e9 ensemble : :date","last_activity_date_empty":"Derni\u00e8re activit\u00e9 ensemble : inconnu","last_called":"Dernier appel : :date","last_called_empty":"Dernier appel : inconnu","life_event_blank":"Prenez des notes sur ce qui arrive dans la vie de {name} pour votre r\u00e9f\u00e9rence future.","life_event_category_family_relationships":"Famille & relations","life_event_category_health_wellness":"Sant\u00e9 & bien-\u00eatre","life_event_category_home_living":"Foyer & vie domestique","life_event_category_travel_experiences":"Voyages & exp\u00e9riences","life_event_category_work_education":"Travail & formation","life_event_create_add_yearly_reminder":"Ajouter un rappel annuel pour cet \u00e9v\u00e8nement","life_event_create_category":"Toutes les cat\u00e9gories","life_event_create_date":"Vous n\u2019avez pas \u00e0 renseigner le mois ou le jour - seule l\u2019ann\u00e9e est obligatoire.","life_event_create_default_description":"Ajouter des informations sur ce que vous savez","life_event_create_default_story":"Histoire (optionnel)","life_event_create_default_title":"Titre (optionnel)","life_event_create_life_event":"Ajouter l\u2019\u00e9v\u00e8nement marquant","life_event_create_success":"L\u2019\u00e9v\u00e8nement a \u00e9t\u00e9 sauvegard\u00e9","life_event_date_it_happened":"Date de l\u2019\u00e9v\u00e8nement","life_event_delete_description":"\u00cates-vous s\u00fbr de vouloir supprimer cet \u00e9v\u00e8nement marquant ? La suppression est permanente.","life_event_delete_success":"L\u2019\u00e9v\u00e8nement marquant a \u00e9t\u00e9 supprim\u00e9","life_event_delete_title":"Supprimer l\u2019\u00e9v\u00e8nement","life_event_list_cta":"Ajouter un \u00e9v\u00e8nement marquant","life_event_list_tab_life_events":"\u00c9v\u00e8nements marquants","life_event_list_tab_other":"Notes, rappels, ...","life_event_list_title":"\u00c9v\u00e8nements marquants","life_event_sentence_achievement_or_award":"A eu une r\u00e9compense ou un prix","life_event_sentence_anniversary":"Anniversaire","life_event_sentence_bought_a_home":"A achet\u00e9 une maison","life_event_sentence_broken_bone":"S\u2019est cass\u00e9 un os","life_event_sentence_changed_beliefs":"A chang\u00e9 de croyances","life_event_sentence_dentist":"Est all\u00e9 chez le dentiste","life_event_sentence_end_of_relationship":"Fin d\u2019une relation","life_event_sentence_engagement":"S\u2019est fianc\u00e9","life_event_sentence_expecting_a_baby":"Attend un b\u00e9b\u00e9","life_event_sentence_first_kiss":"A eu son premier baiser","life_event_sentence_first_word":"A parl\u00e9 pour la premi\u00e8re fois","life_event_sentence_holidays":"Est all\u00e9 en vacances","life_event_sentence_home_improvement":"A fait des r\u00e9novations","life_event_sentence_loss_of_a_loved_one":"A perdu un \u00eatre cher","life_event_sentence_marriage":"S\u2019est mari\u00e9","life_event_sentence_military_service":"A d\u00e9marr\u00e9 le service militaire","life_event_sentence_moved":"A d\u00e9m\u00e9nag\u00e9","life_event_sentence_new_child":"A eu un enfant","life_event_sentence_new_eating_habits":"A commenc\u00e9 de nouvelles habitudes alimentaires","life_event_sentence_new_family_member":"Nouveau membre dans la famille","life_event_sentence_new_hobby":"A commenc\u00e9 un passe-temps","life_event_sentence_new_instrument":"A commenc\u00e9 \u00e0 apprendre un nouvel instrument","life_event_sentence_new_job":"A commenc\u00e9 un nouveau travail","life_event_sentence_new_language":"A commenc\u00e9 \u00e0 apprendre une nouvelle langue","life_event_sentence_new_license":"A eu le permis","life_event_sentence_new_pet":"A eu un animal de compagnie","life_event_sentence_new_relationship":"A commenc\u00e9 une relation","life_event_sentence_new_roommate":"A eu un colocataire","life_event_sentence_new_school":"A commenc\u00e9 l\u2019\u00e9cole","life_event_sentence_new_sport":"A commenc\u00e9 un sport","life_event_sentence_new_vehicle":"Acquisition d\u02bcun nouveau v\u00e9hicule","life_event_sentence_overcame_an_illness":"A surmont\u00e9 une maladie","life_event_sentence_published_book_or_paper":"A publi\u00e9 un document","life_event_sentence_quit_a_habit":"A quitt\u00e9 une habitude","life_event_sentence_removed_braces":"S\u2019est fait retir\u00e9 un appareil dentaire","life_event_sentence_retirement":"A pris sa retraite","life_event_sentence_study_abroad":"A \u00e9tudier \u00e0 l\u2019\u00e9tranger","life_event_sentence_surgery":"A eu une chirurgie","life_event_sentence_tattoo_or_piercing":"S\u2019est fait tatou\u00e9 ou perc\u00e9","life_event_sentence_travel":"A voyag\u00e9","life_event_sentence_volunteer_work":"A commenc\u00e9 \u00e0 faire du b\u00e9n\u00e9volat","life_event_sentence_wear_glass_or_contact":"A commenc\u00e9 \u00e0 porter des lunettes ou des lentilles de contact","life_event_sentence_weight_loss":"A perdu du poids","list_link_to_active_contacts":"Vous visualisez les contacts archiv\u00e9s. Afficher la liste des contacts actifs<\/a> \u00e0 la place.","list_link_to_archived_contacts":"Liste de contacts archiv\u00e9s","me":"C\u2019est vous","modal_call_comment":"De quoi avez-vous parl\u00e9 ? (optionnel)","modal_call_emotion":"Voulez vous enregistrer ce que vous avez ressenti au cours de cet appel\u00a0? (optionnel)","modal_call_exact_date":"L\u2019appel s\u2019est pass\u00e9 le","modal_call_title":"Enregistrer un appel t\u00e9l\u00e9phonique","modal_call_who_called":"Qui a appel\u00e9\u00a0?","notes_add_cta":"Ajouter une note","notes_create_success":"La note a \u00e9t\u00e9 ajout\u00e9e avec succ\u00e8s","notes_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cette note ? La suppression est permanente","notes_delete_success":"La note a \u00e9t\u00e9 supprim\u00e9e avec succ\u00e8s","notes_delete_title":"Supprimer une note","notes_favorite":"Ajouter\/retirer des favoris","notes_update_success":"La note a \u00e9t\u00e9 modifi\u00e9e avec succ\u00e8s","people_add_birthday_reminder":"Souhaiter un bon anniversaire \u00e0 :name","people_add_birthday_reminder_deceased":"\u00c0 cette date, :name aurait c\u00e9l\u00e9br\u00e9 son anniversaire","people_add_cta":"Ajouter","people_add_firstname":"Pr\u00e9nom","people_add_gender":"Genre","people_add_import":"Souhaitez-vous importer vos contacts<\/a> ?","people_add_lastname":"Nom de famille (optionnel)","people_add_middlename":"Deuxi\u00e8me pr\u00e9nom (optionnel)","people_add_missing":"Nous n\u2019avons trouv\u00e9 personne. Ajoutez quelqu\u2019un maintenant","people_add_new":"Ajouter une nouvelle personne","people_add_nickname":"Surnom (optionnel)","people_add_reminder_for_birthday":"Cr\u00e9er un rappel annuel pour l\u2019anniversaire","people_add_success":":name a \u00e9t\u00e9 cr\u00e9e avec succ\u00e8s","people_add_title":"Ajouter une nouvelle personne","people_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer ce contact ? La suppression est permanente.","people_delete_message":"Supprimer le contact","people_delete_success":"Le contact a \u00e9t\u00e9 supprim\u00e9","people_edit_email_error":"Il y a d\u00e9j\u00e0 quelqu\u2019un dans votre compte avec cette adresse courriel. Merci d\u2019en choisir une autre.","people_export":"Exporter en tant que vCard","people_list_account_upgrade_cta":"Passez au plan sup\u00e9rieur","people_list_account_upgrade_title":"Passez au plan sup\u00e9rieur pour d\u00e9bloquer votre compte et l\u2019amener \u00e0 son plein potentiel.","people_list_account_usage":"Votre utilisation de compte : :current\/:limit contacts","people_list_blank_cta":"Ajouter quelqu\u2019un","people_list_blank_title":"Vous n\u2019avez encore ajout\u00e9 aucun contact","people_list_clear_filter":"Enlever le filtre","people_list_contacts_per_tags":":count contact|:count contacts","people_list_filter_tag":"Affichage des contacts avec l\u2019\u00e9tiquette","people_list_filter_untag":"Afficher les contacts sans aucune \u00e9tiquette","people_list_firstnameAZ":"Tri par pr\u00e9nom A \u2192 Z","people_list_firstnameZA":"Tri par pr\u00e9nom Z \u2192 A","people_list_hide_dead":"Masquer les contacts d\u00e9c\u00e9d\u00e9s (:count)","people_list_last_updated":"Derni\u00e8re consultation :","people_list_lastactivitydateNewtoOld":"Trier par date de derni\u00e8re activit\u00e9 (r\u00e9cent \u00e0 vieux)","people_list_lastactivitydateOldtoNew":"Trier par date de derni\u00e8re activit\u00e9 (vieux \u00e0 r\u00e9cent)","people_list_lastnameAZ":"Tri par nom de famille A \u2192 Z","people_list_lastnameZA":"Tri par nom de famille Z \u2192 A","people_list_number_kids":":count enfant|:count enfants","people_list_number_reminders":":count rappel|:count rappels","people_list_show_dead":"Afficher les contacts d\u00e9c\u00e9d\u00e9s (:count)","people_list_sort":"Tri","people_list_stats":":count contact|:count contacts","people_list_untagged":"Afficher les contacts sans \u00e9tiquette","people_not_found":"Contact non trouv\u00e9","people_save_and_add_another_cta":"Sauver et ajouter un autre contact","people_search":"Recherchez dans vos contacts...","people_search_all":"Tous","people_search_next":"Suivant","people_search_no_results":"Aucun r\u00e9sultat","people_search_of":"de","people_search_page":"Page","people_search_prev":"Pr\u00e9c\u00e9dent","people_search_rows_per_page":"R\u00e9sultats par page","pets_bird":"Oiseau","pets_cat":"Chat","pets_create_success":"L\u2019animal a \u00e9t\u00e9 ajout\u00e9 avec succ\u00e8s","pets_delete_success":"L\u2019animal a \u00e9t\u00e9 supprim\u00e9","pets_dog":"Chien","pets_fish":"Poisson","pets_hamster":"Hamster","pets_horse":"Cheval","pets_kind":"Sorte d\u2019animal","pets_name":"Nom (optionnel)","pets_other":"Autre","pets_rabbit":"Lapin","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Petit animal","pets_title":"Animaux de compagnie","pets_update_success":"L\u2019animal a \u00e9t\u00e9 mis \u00e0 jour","photo_current_profile_pic":"Photo de profil actuelle","photo_delete":"Supprimer la photo","photo_list_blank_desc":"Vous pouvez enregistrer des images sur ce contact. T\u00e9l\u00e9chargez-en une maintenant\u00a0!","photo_list_cta":"T\u00e9l\u00e9charger une photo","photo_list_title":"Photos associ\u00e9es","photo_make_profile_pic":"Utiliser comme photo de profil","photo_next":"Photo suivante \u276f","photo_previous":"\u276e Photo pr\u00e9c\u00e9dente","photo_title":"Photos","photo_upload_zone_cta":"T\u00e9l\u00e9charger une photo","relationship_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cette relation ? La suppression est permanente.","relationship_form_add":"Ajouter une relation","relationship_form_add_choice":"Quelle est cette relation\u00a0?","relationship_form_add_description":"Ceci vous permettra de traiter cette personne comme tous les autres contacts de votre compte.","relationship_form_add_no_existing_contact":"Vous n\u2019avez aucun contact qui puisse \u00eatre associ\u00e9 \u00e0 :name pour le moment.","relationship_form_add_success":"La relation a \u00e9t\u00e9 cr\u00e9\u00e9e avec succ\u00e8s.","relationship_form_also_create_contact":"Cr\u00e9er un contact pour cette personne.","relationship_form_associate_contact":"Un contact existant","relationship_form_associate_dropdown":"Recherchez et s\u00e9lectionnez un contact existant dans la liste d\u00e9roulante ci-dessous","relationship_form_associate_dropdown_placeholder":"Recherchez et s\u00e9lectionnez un contact existant","relationship_form_create_contact":"Ajouter une nouvelle personne","relationship_form_deletion_success":"La relation a \u00e9t\u00e9 supprim\u00e9e.","relationship_form_edit":"Modifier une relation existante","relationship_form_is_with":"Cette personne est...","relationship_form_is_with_name":":name est ...","relationship_unlink_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cette relation ? La personne ne sera pas supprim\u00e9e \u2013 seulement la relation entre les deux.","reminder_frequency_day":"chaque jour|chaque :number jours","reminder_frequency_month":"chaque mois|chaque :number mois","reminder_frequency_one_time":"le :date","reminder_frequency_week":"chaque semaine|chaque :number semaines","reminder_frequency_year":"chaque ann\u00e9e|chaque :number ann\u00e9es","reminders_add_cta":"Ajouter le rappel","reminders_add_description":"Merci de me tenir inform\u00e9 de \u2026","reminders_add_error_custom_text":"Vous devez indiquer un texte pour ce rappel.","reminders_add_next_time":"Quand voulez-vous \u00eatre rappel\u00e9 \u00e0 propos de ceci ?","reminders_add_once":"Rappelez-moi juste une fois","reminders_add_optional_comment":"Commentaire (optionnel)","reminders_add_recurrent":"Rappelez-moi tous les","reminders_add_starting_from":"\u00e0 compter de la date d\u00e9finie ci-apr\u00e8s","reminders_add_title":"De quoi souhaitez-vous \u00eatre rappel\u00e9 \u00e0 propos de :name ?","reminders_birthday":"Anniversaire de :name","reminders_blank_add_activity":"Ajouter un rappel","reminders_blank_title":"De quoi souhaitez-vous \u00eatre rappel\u00e9 \u00e0 propos de :name ?","reminders_create_success":"Le rappel a \u00e9t\u00e9 ajout\u00e9 avec succ\u00e8s.","reminders_cta":"Ajouter un rappel","reminders_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer ce rappel ?","reminders_delete_cta":"Supprimer","reminders_delete_success":"Le rappel a \u00e9t\u00e9 supprim\u00e9 avec succ\u00e8s.","reminders_description":"Nous vous enverrons un courriel pour chacun des rappels ci-dessous. Les rappels sont envoy\u00e9s le matin du jour o\u00f9 l\u2019\u00e9v\u00e9nement se passe.","reminders_edit_update_cta":"Mettre \u00e0 jour le rappel","reminders_free_plan_warning":"Vous \u00eates sur le plan gratuit. Aucun courriel ne sera envoy\u00e9 avec ce plan. Pour recevoir vos rappels par courriel, passez au plan sup\u00e9rieur.","reminders_next_expected_date":"le","reminders_one_time":"Unique","reminders_type_month":"mois","reminders_type_week":"semaine","reminders_type_year":"ann\u00e9e","reminders_update_success":"Le rappel a \u00e9t\u00e9 mis \u00e0 jour avec succ\u00e8s","section_contact_information":"Coordonn\u00e9es","section_personal_activities":"Activit\u00e9s","section_personal_gifts":"Cadeaux","section_personal_notes":"Notes","section_personal_reminders":"Rappels","section_personal_tasks":"T\u00e2ches","set_favorite":"Les contacts favoris sont plac\u00e9s en haut de la liste des contacts","stay_in_touch":"Restez en contact","stay_in_touch_frequency":"Rester en contact chaque jour|Rester en contact chaque jour|Rester en contact tous les {count} jours","stay_in_touch_invalid":"La fr\u00e9quence doit \u00eatre un nombre sup\u00e9rieur \u00e0 0.","stay_in_touch_modal_desc":"Nous pouvons vous rappeler par courriel pour rester en contact avec {firstname} \u00e0 intervalle r\u00e9gulier.","stay_in_touch_modal_label":"Envoyez-moi un email tous les... {count} jour|Envoyez-moi un email tous les... {count} jours","stay_in_touch_modal_title":"Restez en contact","stay_in_touch_premium":"Vous devez mettre \u00e0 jour votre compte pour pouvoir profiter de cette fonctionnalit\u00e9","tag_add":"Ajouter des \u00e9tiquettes","tag_add_search":"Ajouter ou rechercher une \u00e9tiquette","tag_edit":"Modifier le tag","tag_no_tags":"Aucune \u00e9tiquette","tasks_add_task":"Ajouter une t\u00e2che","tasks_blank_title":"Vous n\u2019avez aucune t\u00e2che pour le moment.","tasks_complete_success":"La t\u00e2che a \u00e9t\u00e9 mise \u00e0 jour avec succ\u00e8s","tasks_delete_success":"La t\u00e2che a \u00e9t\u00e9 supprim\u00e9e avec succ\u00e8s.","tasks_form_description":"Description (optionnel)","tasks_form_title":"Titre","tasks_title":"T\u00e2ches","work_add_cta":"Mettre \u00e0 jour les informations professionnelles","work_edit_company":"Entreprise (optionnel)","work_edit_job":"Poste (optionnel)","work_edit_success":"Informations professionnelles mises \u00e0 jour","work_edit_title":"Mettre \u00e0 jour les informations professionnelles de :name","work_information":"Information sur le travail"},"reminder":{"type_birthday":"Souhait d\u2019anniversaire pour","type_birthday_kid":"Souhaiter l\u2019anniversaire de l\u2019enfant de","type_email":"Envoyer un email \u00e0","type_hangout":"Aller voir","type_lunch":"Manger avec","type_phone_call":"Appeler"},"settings":{"2fa_disable_description":"D\u00e9sactiver l\u2019authentification \u00e0 deux facteurs pour votre compte. Attention, votre compte ne sera plus s\u00e9curis\u00e9\u00a0!","2fa_disable_error":"Erreur lors de la d\u00e9sactivation de l\u2019authentification \u00e0 deux facteurs","2fa_disable_success":"L\u2019authentification \u00e0 deux facteurs a \u00e9t\u00e9 d\u00e9sactiv\u00e9e","2fa_disable_title":"D\u00e9sactiver l\u2019authentification \u00e0 deux facteurs","2fa_enable_description":"Activer l\u2019authentification \u00e0 deux facteurs pour renforcer la s\u00e9curit\u00e9 de votre compte.","2fa_enable_error":"Erreur lors de l\u2019activation de l\u2019authentification \u00e0 deux facteurs","2fa_enable_error_already_set":"L\u2019authentification \u00e0 deux facteurs est d\u00e9j\u00e0 activ\u00e9","2fa_enable_otp":"Ouvrez votre application mobile pour l\u2019authentification \u00e0 deux facteurs et scannez le QR code suivant\u00a0:","2fa_enable_otp_help":"Si votre application mobile pour l\u2019authentification \u00e0 deux facteurs ne supporte pas les QR codes, entrez le code suivant\u00a0:","2fa_enable_otp_validate":"Merci de valider le nouvel appareil que vous venez de configurer\u00a0:","2fa_enable_success":"L\u2019authentification \u00e0 deux facteurs est active","2fa_enable_title":"Activer l\u2019authentification \u00e0 deux facteurs","2fa_otp_title":"Application mobile d\u2019authentification \u00e0 deux facteurs","2fa_title":"Authentification \u00e0 deux facteurs","api_authorized_clients":"Liste de clients autoris\u00e9s","api_authorized_clients_desc":"Cette section liste tous les clients que vous avez autoris\u00e9 \u00e0 acc\u00e9der aux donn\u00e9es de votre demande. Vous pouvez r\u00e9voquer cette autorisation \u00e0 tout moment.","api_authorized_clients_name":"Nom","api_authorized_clients_none":"Il n\u2019y a pas encore de client autoris\u00e9.","api_authorized_clients_scopes":"P\u00e9rim\u00e8tres","api_authorized_clients_title":"Applications autoris\u00e9es","api_description":"L\u2019API peut \u00eatre utilis\u00e9e pour manipuler les donn\u00e9es de Monica depuis une application externe, comme une application mobile par exemple.","api_endpoint":"Le point de terminaison de l\u2019API pour cette instance Monica est :","api_help":"Pour utiliser l\u2019API, un jeton est obligatoire. Vous pouvez soit cr\u00e9er un jeton d\u2019acc\u00e8s personnel (authentification Bearer), soit autoriser un client OAuth \u00e0 le cr\u00e9er pour vous. Voir la documentation de l\u2019API<\/a>.","api_oauth_clientid":"Identifiant du client","api_oauth_clients":"Vos clients OAuth","api_oauth_clients_desc":"Cette section vous permet d\u2019enregistrer votre propre client OAuth.","api_oauth_clients_desc2":"Utilisez cet identifiant de client pour demander un nouveau jeton et convertir les codes d\u2019autorisation pour acc\u00e9der aux jetons. Voir la documentation de Laravel Passport<\/a> pour plus d\u2019informations.","api_oauth_create":"Cr\u00e9er un client","api_oauth_create_new":"Cr\u00e9er de nouveaux clients","api_oauth_edit":"Modifier le client","api_oauth_name":"Nom","api_oauth_name_help":"Quelque chose que vos utilisateurs reconna\u00eetront et inspirera la confiance.","api_oauth_not_created":"Vous n\u2019avez pas encore cr\u00e9\u00e9 de client OAuth.","api_oauth_redirecturl":"URL de redirection","api_oauth_redirecturl_help":"URL de rappel d\u2019autorisation de votre application.","api_oauth_secret":"Secret","api_oauth_title":"Clients OAuth","api_pao_description":"Faites attention \u00e0 ne fournir ce jeton qu\u2019\u00e0 des personnes de confiance \u2013 elles pourront acc\u00e9der \u00e0 toutes vos donn\u00e9es.","api_personal_access_tokens":"Jeton d\u2019acc\u00e8s personnel","api_title":"Acc\u00e8s avec l\u2019API","api_token_create":"Cr\u00e9er un jeton","api_token_create_new":"Cr\u00e9er un nouveau jeton","api_token_delete":"Supprimer","api_token_expire":"Expire le {date}","api_token_help":"Voici votre nouveau jeton d\u2019acc\u00e8s personnel. Ceci est la seule fois o\u00f9 vous pourrez le voir, ne le perdez pas ! Vous pouvez d\u00e8s \u00e0 pr\u00e9sent utiliser ce jeton pour lancer des requ\u00eates avec l\u2019API.","api_token_name":"Nom du jeton","api_token_not_created":"Vous n\u2019avez pas encore cr\u00e9\u00e9 de jeton d\u2019acc\u00e8s personnel.","api_token_scopes":"P\u00e9rim\u00e8tres","api_token_title":"Jetons d\u2019acc\u00e8s personnels","archive_cta":"Archiver tous vos contacts","archive_desc":"Ceci va archiver tous les contacts de votre compte.","archive_title":"Archiver tous les contacts de votre compte","currency":"Devise","dav_caldav_birthdays_export":"Exporter tous les anniversaires dans un seul fichier","dav_caldav_tasks_export":"Exporter toutes les t\u00e2ches dans un seul fichier","dav_carddav_export":"Exporter tous les contacts dans un seul fichier","dav_clipboard_copied":"Valeur copi\u00e9e dans le presse-papier","dav_connect_help":"Vous pouvez connecter vos contacts et\/ou calendriers avec cette url de base sur votre t\u00e9l\u00e9phone ou ordinateur.","dav_connect_help2":"Utilisez votre login (email) et cr\u00e9ez un jeton API en tant que mot de passe pour vous authentifier.","dav_copy_help":"Copier dans votre presse-papier","dav_description":"Vous trouverez ici tous les param\u00e8tres pour utiliser les ressources WebDAV pour CardDAV et CalDAV.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Url de base pour toutes les ressources CardDAV et CalDAV\u00a0:","dav_url_caldav_birthdays":"Url CalDAV pour les Anniversaires\u00a0:","dav_url_caldav_tasks":"Url CalDAV pour les T\u00e2ches\u00a0:","dav_url_carddav":"Url CardDAV pour les Contacts\u00a0:","delete_cta":"Effacer le compte","delete_desc":"Voulez-vous supprimer votre compte ? La suppression est permanente et toutes vos donn\u00e9es seront d\u00e9finitivement supprim\u00e9es. Si vous avez un abonnement, il sera imm\u00e9diatement annul\u00e9.","delete_notice":"\u00cates-vous s\u00fbr de vouloir supprimer votre compte ? Cette action est permanente et ne peut pas \u00eatre annul\u00e9e. Toutes vos donn\u00e9es seront supprim\u00e9es et ne seront pas r\u00e9cup\u00e9rables.","delete_other_desc":"Vos donn\u00e9es dans la base de donn\u00e9es principale seront supprim\u00e9es imm\u00e9diatement. Comme d\u00e9crit dans notre politique de confidentialit\u00e9, nous faisons des sauvegardes quotidiennes et s\u00e9curis\u00e9es de la base de donn\u00e9es et cette sauvegarde est conserv\u00e9e pendant 30 jours, puis elle est compl\u00e8tement supprim\u00e9e. Nous ne pouvons pas supprimer des donn\u00e9es sp\u00e9cifiques des sauvegardes que nous effectuons auparavant. Toutes vos donn\u00e9es seront compl\u00e8tement supprim\u00e9es dans les 30 jours suivant la suppression de votre compte.","delete_title":"Supprimer votre compte","email":"Adresse courriel","email_help":"Cette adresse courriel est utilis\u00e9e pour vous connecter \u00e0 votre compte, et c'est aussi l'adresse \u00e0 laquelle Monica enverra vos rappels.","email_placeholder":"Entrez l\u2019adresse courriel","export_be_patient":"Cliquez sur le bouton pour commencer l\u2019export. Cela peut prendre plusieurs minutes pour pr\u00e9parer l\u2019export \u2013 merci d\u2019\u00eatre patient et de ne pas re-clicker sur le bouton.","export_sql_cta":"Exporter les donn\u00e9es en SQL","export_sql_explanation":"Exporter les donn\u00e9es au format SQL vous permet de r\u00e9cup\u00e9rer vos donn\u00e9es et de les importer dans votre propre instance de Monica. Ceci n\u2019a d\u2019int\u00e9r\u00eat que si vous avez votre propre serveur.","export_sql_link_instructions":"Lisez les instructions<\/a> afin d\u2019en savoir plus sur comment importer ce fichier dans votre instance.","export_title":"Exporter les donn\u00e9es de votre compte","export_title_sql":"Exporter les donn\u00e9es en SQL","firstname":"Pr\u00e9nom","import_blank_cta":"Importer une vCard","import_blank_description":"Nous pouvons importer les fichiers vCard que vous avez dans votre Google Contacts ou votre gestionnaire de contacts.","import_blank_question":"Souhaitez-vous importer vos contacts maintenant ?","import_blank_title":"Vous n\u2019avez encore import\u00e9 aucun contact.","import_cta":"Importer des contacts","import_in_progress":"L\u2019import est en cours. Veuillez recharger la page dans quelques minutes.","import_need_subscription":"L\u2019importation de donn\u00e9es n\u00e9cessite une souscription.","import_report_date":"Date de l\u2019import","import_report_number_contacts":"Nombre de contacts dans le fichier","import_report_number_contacts_imported":"Nombre de contacts import\u00e9s","import_report_number_contacts_skipped":"Nombre de contacts ignor\u00e9s","import_report_status_imported":"Import\u00e9s","import_report_status_skipped":"Ignor\u00e9s","import_report_title":"Rapport d\u2019import","import_report_type":"Type d\u2019import","import_result_stat":":count contact vCard envoy\u00e9 (:total_imported import\u00e9, :total_skipped ignor\u00e9)|:count contacts vCard envoy\u00e9s (:total_imported import\u00e9s, :total_skipped ignor\u00e9s)","import_stat":"Vous avez import\u00e9 :number fichiers jusqu\u2019\u00e0 pr\u00e9sent.","import_title":"Importer les contacts dans votre compte","import_upload_behaviour":"Comportement pour l\u2019importation\u00a0:","import_upload_behaviour_add":"Ajouter les nouveaux contacts et passer les contacts existants","import_upload_behaviour_help":"Remplacer les contacts mettra \u00e0 jour toutes les donn\u00e9es trouv\u00e9es dans la vCard, mais gardera les autre valeurs existantes du contact.","import_upload_behaviour_replace":"Remplacer les contacts existants","import_upload_form_file":"Votre fichier .vcf<\/code> ou .vCard<\/code> :","import_upload_rule_cant_revert":"Veuillez vous assurer que les donn\u00e9es sont fiables avant d\u2019importer, car l\u2019import ne peut \u00eatre annul\u00e9.","import_upload_rule_format":"Nous supportons les formats .vcard<\/code> et .vcf<\/code>.","import_upload_rule_instructions":"Instructions d\u2019export pour macOS Contacts.app<\/a> et Google Contacts<\/a>.","import_upload_rule_limit":"Les fichiers sont limit\u00e9s \u00e0 10 Mo.","import_upload_rule_multiple":"Si vos contacts ont plusieurs adresses courriels ou num\u00e9ros de t\u00e9l\u00e9phone, seule la premi\u00e8re entr\u00e9e sera sauvegard\u00e9e.","import_upload_rule_time":"Cela peut prendre une minute pour importer les contacts et les traiter. Merci de votre patience.","import_upload_rule_vcard":"Nous supportons le format vCard 3.0, qui est le format par d\u00e9faut de l\u2019application macOS Contacts.app et Google Contacts.","import_upload_rules_desc":"Nous avons toutefois quelques r\u00e8gles :","import_upload_title":"Importer vos contacts depuis un fichier vCard","import_vcard_contact_exist":"Le contact existe d\u00e9j\u00e0","import_vcard_contact_no_firstname":"Pas de pr\u00e9nom (obligatoire)","import_vcard_file_no_entries":"Le fichier ne contient pas de donn\u00e9e","import_vcard_file_not_found":"Fichier non trouv\u00e9","import_vcard_parse_error":"Erreur lors de l\u2019analyse de l\u2019entr\u00e9e vCard","import_vcard_unknown_entry":"Nom de contact inconnu","import_view_report":"Voir le rapport","lastname":"Nom de famille","layout":"Disposition","layout_big":"Largeur maximale du navigateur","layout_small":"Maximum de 1200 pixels de large","locale":"Langue","locale_ar":"Arabe","locale_cs":"Tch\u00e8que","locale_de":"Allemand","locale_en":"Anglais","locale_en-GB":"Anglais (Royaume-Uni)","locale_es":"Espagnol","locale_fr":"Francais","locale_he":"H\u00e9breu","locale_help":"Voulez-vous aider \u00e0 traduire Monica ou ajouter une nouvelle langue ? Veuillez suivre ce lien pour plus d\u2019informations<\/a>.","locale_hr":"Croate","locale_it":"Italien","locale_ja":"Japonais","locale_nl":"N\u00e9erlandais","locale_pt":"Portugais","locale_pt-BR":"Portugais (Br\u00e9sil)","locale_ru":"Russe","locale_sv":"Su\u00e9dois","locale_tr":"Turc","locale_zh":"Chinois Simplifi\u00e9","locale_zh-TW":"Chinois Traditionnel","logs_actor":"Acteur","logs_description":"Description","logs_object":"Objet","logs_size":"Taille (Ko)","logs_subject":"Sujet","logs_timestamp":"Horodatage","logs_title":"Tout ce qui est arriv\u00e9 \u00e0 ce compte","me_choose":"Choisissez votre contact","me_choose_placeholder":"Choisissez votre contact","me_help":"Ceci est le contact qui vous<\/em> repr\u00e9sente sur Monica","me_no_contact":"Aucun contact s\u00e9lectionn\u00e9.","me_remove_contact":"Supprimer l\u2019association","me_select":"S\u00e9lectionner un contact","me_select_click":"Cliquer ici pour s\u00e9lectionner un contact.","me_title":"Moi en tant que contact","name":"Votre nom : :name","name_order":"Ordre des noms","name_order_firstname_lastname":" \u2013 Jean Dupont","name_order_firstname_lastname_nickname":" () \u2013 Jean Dupont (Jojo)","name_order_firstname_nickname_lastname":" () \u2013 Jean (Jojo) Dupont","name_order_lastname_firstname":" \u2013 Dupont Jean","name_order_lastname_firstname_nickname":" () \u2013 Dupont Jean (Jojo)","name_order_lastname_nickname_firstname":" () \u2013 Dupont (Jojo) Jean","name_order_nickname":" \u2013 Jojo","name_order_nickname_firstname_lastname":" ( ) \u2013 Jojo (Dupont Jean)","password_btn":"Changer votre mot de passe","password_change":"Modifier votre mot de passe","password_current":"Mot de passe actuel","password_current_placeholder":"Entrez votre mot de passe actuel","password_new1":"Nouveau mot de passe","password_new1_placeholder":"Entrez votre nouveau mot de passe","password_new2":"Confirmez votre nouveau mot de passe","password_new2_placeholder":"Retapez votre nouveau mot de passe","personalisation_paid_upgrade":"Il s\u2019agit d\u2019une fonctionnalit\u00e9 premium qui n\u00e9cessite un abonnement payant pour \u00eatre activ\u00e9e. Mettez \u00e0 niveau votre compte en visitant Param\u00e8tres > Abonnement<\/a>.","personalisation_paid_upgrade_vue":"Il s\u2019agit d\u2019une fonctionnalit\u00e9 premium qui n\u00e9cessite un abonnement payant pour \u00eatre activ\u00e9e. Mettez \u00e0 niveau votre compte en visitant Param\u00e8tres > Abonnement<\/a>.","personalization_activity_type_add_button":"Ajouter un nouveau type d\u2019activit\u00e9","personalization_activity_type_category_add":"Ajouter une nouvelle cat\u00e9gorie de type d\u2019activit\u00e9","personalization_activity_type_category_description":"Une activit\u00e9 avec l\u2019un de vos contacts peut avoir un type et un type de cat\u00e9gorie. Votre compte est configur\u00e9 par d\u00e9faut avec un ensemble de types de cat\u00e9gories pr\u00e9d\u00e9finies, mais vous pouvez les personnaliser ici.","personalization_activity_type_category_modal_add":"Ajouter une nouvelle cat\u00e9gorie de type d\u2019activit\u00e9","personalization_activity_type_category_modal_delete":"Supprimer une cat\u00e9gorie de type d\u2019activit\u00e9","personalization_activity_type_category_modal_delete_desc":"\u00cates-vous s\u00fbr de vouloir supprimer cette cat\u00e9gorie\u00a0? La suppression entra\u00eenera la suppression de tous les types d\u2019activit\u00e9s associ\u00e9es. Les activit\u00e9s qui appartiennent \u00e0 cette cat\u00e9gorie ne seront pas affect\u00e9es par cette suppression.","personalization_activity_type_category_modal_delete_error":"Impossible de trouver cette cat\u00e9gorie de type d\u2019activit\u00e9.","personalization_activity_type_category_modal_edit":"Modifier une cat\u00e9gorie de type d\u2019activit\u00e9","personalization_activity_type_category_modal_question":"Comment nommer cette nouvelle cat\u00e9gorie ?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Nom","personalization_activity_type_category_title":"Cat\u00e9gories de types d\u2019activit\u00e9","personalization_activity_type_modal_add":"Ajouter un nouveau type d\u2019activit\u00e9","personalization_activity_type_modal_delete":"Supprimer un type d\u2019activit\u00e9","personalization_activity_type_modal_delete_desc":"\u00cates-vous s\u00fbr de vouloir supprimer ce type d\u2019activit\u00e9\u00a0? Les activit\u00e9s qui appartiennent \u00e0 cette cat\u00e9gorie ne seront pas affect\u00e9es par cette suppression.","personalization_activity_type_modal_delete_error":"Impossible de trouver ce type d\u2019activit\u00e9.","personalization_activity_type_modal_edit":"Modifier un type d\u2019activit\u00e9","personalization_activity_type_modal_question":"Comment nommer ce nouveau type d\u2019activit\u00e9\u00a0?","personalization_contact_field_type_add":"Ajouter un nouveau type de champ","personalization_contact_field_type_add_success":"Le type de champ de contact a \u00e9t\u00e9 ajout\u00e9 avec succ\u00e8s.","personalization_contact_field_type_delete_success":"Le type de champ de contact a \u00e9t\u00e9 supprim\u00e9 avec succ\u00e8s.","personalization_contact_field_type_description":"Vous pouvez configurer les diff\u00e9rents type de champs de contact que vous pouvez associer \u00e0 tous vos contacts. Par exemple si un nouveau r\u00e9seau social appara\u00eet, vous pourrez ajouter un nouveau type de communication pour vos contacts ici.","personalization_contact_field_type_edit_success":"Le type de champ de contact a \u00e9t\u00e9 mis \u00e0 jour avec succ\u00e8s.","personalization_contact_field_type_modal_delete_description":"\u00cates-vous s\u00fbr de vouloir supprimer ce type de champ de contact ? Supprimer ce type de contact effacera TOUTES les donn\u00e9es avec ce type de champ pour tous vos contacts.","personalization_contact_field_type_modal_delete_title":"Supprimer un type de champ existant","personalization_contact_field_type_modal_edit_title":"Editer un type de champ existant","personalization_contact_field_type_modal_icon":"Icone (optionnel)","personalization_contact_field_type_modal_icon_help":"Vous pouvez associer un ic\u00f4ne pour ce champ. Vous devez utiliser une r\u00e9f\u00e9rence vers une ic\u00f4ne FontAwesome.","personalization_contact_field_type_modal_name":"Nom","personalization_contact_field_type_modal_protocol":"Protocole (optionnel)","personalization_contact_field_type_modal_protocol_help":"Chaque nouveau type de champ de contact peut \u00eatre cliquable. Si un protocole est d\u00e9fini, nous l\u2019utiliserons pour lancer l\u2019action indiqu\u00e9e par le navigateur.","personalization_contact_field_type_modal_title":"Ajouter un nouveau type de champ","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Nom","personalization_contact_field_type_table_protocol":"Protocole","personalization_contact_field_type_title":"Types de champs de contact","personalization_genders_add":"Ajouter un nouveau type de genre","personalization_genders_default":"Genre par d\u00e9faut","personalization_genders_desc":"Vous pouvez d\u00e9finir autant de genres dont vous avez besoin. Il vous faut avoir au moins un type de genre dans votre compte.","personalization_genders_f":"F\u00e9minin","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Masculin","personalization_genders_make_default":"Modifier le genre par d\u00e9faut","personalization_genders_modal_add":"Ajouter un nouveau type de genre","personalization_genders_modal_default":"S\u00e9lectionnez le genre par d\u00e9faut pour un nouveau contact","personalization_genders_modal_delete":"Supprimer le type de genre","personalization_genders_modal_delete_desc":"Voulez-vous vraiment supprimer le genre \u00ab {name} \u00bb\u00a0?","personalization_genders_modal_delete_question":"Vous avez actuellement {count} contact utilisant ce genre. Si vous supprimez ce genre, quel genre ce contact devrait avoir ?|Vous avez actuellement {count} contacts utilisant ce genre. Si vous supprimez ce genre, quel genre ces contacts devraient avoir ?","personalization_genders_modal_delete_question_default":"Ce genre est celui par d\u00e9faut. Si vous le supprimez, quel sera le prochain genre par d\u00e9faut ?","personalization_genders_modal_edit":"Mettre \u00e0 jour le type de genre","personalization_genders_modal_error":"Merci de choisir un genre depuis cette liste.","personalization_genders_modal_name":"Nom","personalization_genders_modal_name_help":"Nom utilis\u00e9 pour afficher le genre sur la page d\u2019un contact.","personalization_genders_modal_sex":"Sexe","personalization_genders_modal_sex_help":"Utilis\u00e9 pour d\u00e9finir les relations, et pendant le processus d\u2019importation\/exportation VCard.","personalization_genders_n":"Aucun ou non applicable","personalization_genders_o":"Autre","personalization_genders_select_default":"Choisir le genre par d\u00e9faut","personalization_genders_table_default":"D\u00e9faut","personalization_genders_table_name":"Nom","personalization_genders_table_sex":"Sexe","personalization_genders_title":"Types de genre","personalization_genders_u":"Inconnu","personalization_life_event_category_description":"Un \u00e9v\u00e8nement marquant peut avoir un type et une cat\u00e9gorie. Votre compte est fourni par d\u00e9faut avec un ensemble de cat\u00e9gories et types pr\u00e9d\u00e9finis, mais vous pouvez personnaliser les types d\u2019\u00e9v\u00e8nements marquants ici.","personalization_life_event_category_family_relationships":"Famille & relations","personalization_life_event_category_health_wellness":"Sant\u00e9 & bien-\u00eatre","personalization_life_event_category_home_living":"Foyer & vie domestique","personalization_life_event_category_title":"Cat\u00e9gories d\u2019\u00e9v\u00e8nements marquants","personalization_life_event_category_travel_experiences":"Voyages & exp\u00e9riences","personalization_life_event_category_work_education":"Travail & formation","personalization_life_event_type_achievement_or_award":"R\u00e9compense ou prix","personalization_life_event_type_add_button":"Ajouter un nouveau type d\u2019\u00e9v\u00e8nement","personalization_life_event_type_anniversary":"Anniversaire","personalization_life_event_type_bought_a_home":"Nouvelle maison","personalization_life_event_type_broken_bone":"S\u2019est cass\u00e9 un os","personalization_life_event_type_changed_beliefs":"Changement de croyances","personalization_life_event_type_dentist":"A eu un traitement dentaire","personalization_life_event_type_end_of_relationship":"Fin de relation","personalization_life_event_type_engagement":"Fian\u00e7ailles","personalization_life_event_type_expecting_a_baby":"Attend un b\u00e9b\u00e9","personalization_life_event_type_first_kiss":"Premier baiser","personalization_life_event_type_first_met":"Premi\u00e8re rencontre","personalization_life_event_type_first_word":"Premier mot","personalization_life_event_type_holidays":"Vacances","personalization_life_event_type_home_improvement":"Am\u00e9liorations de la maison","personalization_life_event_type_loss_of_a_loved_one":"Perte d\u2019un \u00eatre cher","personalization_life_event_type_marriage":"Mariage","personalization_life_event_type_military_service":"Service militaire","personalization_life_event_type_modal_add":"Ajouter un nouveau type d\u2019\u00e9v\u00e8nement","personalization_life_event_type_modal_delete":"Supprimer un type d\u2019\u00e9v\u00e8nement","personalization_life_event_type_modal_delete_desc":"\u00cates-vous s\u00fbr de vouloir supprimer ce type d\u2019\u00e9v\u00e9nement ? Les \u00e9v\u00e8nements qui appartiennent \u00e0 ce type seront supprim\u00e9s en effectuant cette action.","personalization_life_event_type_modal_delete_error":"Impossible de trouver ce type d\u2019\u00e9v\u00e8nement.","personalization_life_event_type_modal_edit":"\u00c9diter un type d\u2019\u00e9v\u00e8nement","personalization_life_event_type_modal_question":"Comment nommer ce nouveau type d\u2019\u00e9v\u00e8nement ?","personalization_life_event_type_moved":"D\u00e9m\u00e9nagement","personalization_life_event_type_new_child":"Nouvel enfant","personalization_life_event_type_new_eating_habits":"Nouvelles habitudes alimentaires","personalization_life_event_type_new_family_member":"Nouveau membre dans la famille","personalization_life_event_type_new_hobby":"A commenc\u00e9 un nouveau passe-temps","personalization_life_event_type_new_instrument":"A commenc\u00e9 \u00e0 jouer d\u2019un nouvel instrument","personalization_life_event_type_new_job":"Nouveau travail","personalization_life_event_type_new_language":"A commenc\u00e9 \u00e0 apprendre une nouvelle langue","personalization_life_event_type_new_license":"Nouveau permis","personalization_life_event_type_new_pet":"Nouvel animal de compagnie","personalization_life_event_type_new_relationship":"Nouvelle relation","personalization_life_event_type_new_roommate":"Nouveau colocataire","personalization_life_event_type_new_school":"Nouvelle \u00e9cole","personalization_life_event_type_new_sport":"A commenc\u00e9 un nouveau sport","personalization_life_event_type_new_vehicle":"Nouveau v\u00e9hicule","personalization_life_event_type_overcame_an_illness":"A surmont\u00e9 une maladie","personalization_life_event_type_published_book_or_paper":"Publication d\u2019un livre ou d\u2019un papier","personalization_life_event_type_quit_a_habit":"Perte d\u2019une habitude","personalization_life_event_type_removed_braces":"S\u2019est fait retir\u00e9 son appareil dentaire","personalization_life_event_type_retirement":"Retraite","personalization_life_event_type_study_abroad":"All\u00e9 \u00e9tudier \u00e0 l\u2019\u00e9tranger","personalization_life_event_type_surgery":"A eu une op\u00e9ration chirurgicale","personalization_life_event_type_tattoo_or_piercing":"Tatouage ou piercing","personalization_life_event_type_travel":"Voyage","personalization_life_event_type_volunteer_work":"Travail b\u00e9n\u00e9vole","personalization_life_event_type_wear_glass_or_contact":"A commenc\u00e9 \u00e0 porter des lunettes ou des lentilles de contact","personalization_life_event_type_weight_loss":"Perte de poids","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Nom","personalization_module_desc":"Vous n\u2019avez peut-\u00eatre pas besoin de toutes ces fonctionnalit\u00e9s. Ci-dessous vous pouvez activer ou d\u00e9sactiver des fonctionnalit\u00e9s sp\u00e9cifiques qui sont utilis\u00e9es sur la vue d\u2019un contact. Ces modifications s\u2019appliqueront \u00e0 tous vos contacts. D\u00e9sactiver une fonctionnalit\u00e9 ne supprime aucune donn\u00e9e, cela masque juste la fonctionnalit\u00e9.","personalization_module_save":"Les modifications ont \u00e9t\u00e9 enregistr\u00e9es","personalization_module_title":"Fonctionnalit\u00e9s","personalization_reminder_rule_desc":"Pour chaque rappel que vous mettez en place, Monica peut envoyer un courriel plusieurs jours avant que l\u2019\u00e9v\u00e8nement se passe. Vous pouvez ajuster ces pr\u00e9f\u00e9rences de notifications ici. Ces notifications ne s\u2019appliquent qu\u2019aux rappels mensuels et annuels.","personalization_reminder_rule_line":"{count} jour avant|{count} jours avant","personalization_reminder_rule_save":"Les modifications ont \u00e9t\u00e9 enregistr\u00e9es","personalization_reminder_rule_title":"R\u00e8gles de rappel","personalization_tab_title":"Personnalisez votre compte","personalization_title":"Ici vous pouvez configurer les diff\u00e9rents param\u00e8tres de votre compte. Ces fonctionnalit\u00e9s sont pour les \u00ab utilisateurs avanc\u00e9s \u00bb qui veulent un contr\u00f4le maximal sur Monica.","recovery_already_used_help":"Ce code a d\u00e9j\u00e0 \u00e9t\u00e9 utilis\u00e9.","recovery_clipboard":"Codes copi\u00e9s dans le presse-papiers.","recovery_copy_help":"Copier les codes dans votre presse-papiers","recovery_generate":"G\u00e9n\u00e9rer de nouveaux codes \u2026","recovery_generate_help":"G\u00e9n\u00e9rez de nouveaux codes invalidera les codes g\u00e9n\u00e9r\u00e9s pr\u00e9c\u00e9demment.","recovery_help_information":"Vous pouvez utiliser chaque code de r\u00e9cup\u00e9ration une fois.","recovery_help_intro":"Voici vos codes de r\u00e9cup\u00e9ration :","recovery_show":"Obtenez des codes de r\u00e9cup\u00e9ration","recovery_title":"Codes de r\u00e9cup\u00e9ration","reminder_time_to_send":"Heure du jour \u00e0 laquelle les rappels doivent \u00eatre envoy\u00e9s","reminder_time_to_send_help":"Votre prochain rappel sera envoy\u00e9 le {dateTime}<\/span>.","reset_cta":"Remettre \u00e0 z\u00e9ro","reset_desc":"Souhaitez-vous remettre \u00e0 z\u00e9ro votre compte ? Ceci effacera tous les contacts ainsi que les donn\u00e9es associ\u00e9es. Votre compte ne sera pas effac\u00e9.","reset_notice":"\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser votre compte ? Ceci est permanent et ne peut pas \u00eatre annul\u00e9.","reset_success":"Votre compte a \u00e9t\u00e9 r\u00e9initialis\u00e9.","reset_title":"Remettre \u00e0 z\u00e9ro votre compte","save":"Mettre \u00e0 jour","security_help":"Changer les questions de s\u00e9curit\u00e9 pour votre compte.","security_title":"S\u00e9curit\u00e9","settings_success":"Pr\u00e9f\u00e9rences mises \u00e0 jour","sidebar_personalization":"Personnalisation","sidebar_settings":"Param\u00e8tres du compte","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Journal d\u2019audit","sidebar_settings_dav":"Ressources DAV","sidebar_settings_export":"Exporter les donn\u00e9es","sidebar_settings_import":"Importation de donn\u00e9es","sidebar_settings_security":"S\u00e9curit\u00e9","sidebar_settings_storage":"Espace de stockage","sidebar_settings_subscriptions":"Abonnement","sidebar_settings_tags":"Gestion des \u00e9tiquettes","sidebar_settings_users":"Utilisateurs","storage_account_info":"La limite de votre compte est\u00a0:\u00a0:accountLimit Mo. Votre utilisation actuelle est\u00a0:\u00a0:currentAccountSize Mo (environ :percentUsage %).","storage_description":"Ici vous pouvez voir tous les documents et photos t\u00e9l\u00e9charg\u00e9s sur vos contacts.","storage_title":"Espace de stockage","storage_upgrade_notice":"Mettez \u00e0 niveau votre compte pour pouvoir t\u00e9l\u00e9charger des documents et des photos.","stripe_error_api_connection":"Probl\u00e8mes de communication avec Stripe. Veuillez r\u00e9essayer plus tard.","stripe_error_authentication":"Mauvaise authentification avec Stripe","stripe_error_card":"Votre carte est refus\u00e9e. Le message de refus est : :message","stripe_error_invalid_request":"Param\u00e8tres invalides. R\u00e9essayez plus tard.","stripe_error_rate_limit":"Trop de requ\u00eates avec Stripe actuellement. Veuillez r\u00e9essayer plus tard.","subscriptions_account_cancel":"Vous pouvez annuler l\u2019abonnement<\/a> quand vous le souhaitez.","subscriptions_account_confirm_payment":"Votre paiement est actuellement incomplet, merci de confirmer votre paiement<\/a>.","subscriptions_account_current_paid_plan":"Vous \u00eates sur l\u2019offre :name. Merci beaucoup pour votre inscription.","subscriptions_account_current_plan":"Votre offre actuelle","subscriptions_account_free_plan":"Vous \u00eates sur l\u2019offre gratuite.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import de vos contacts au format vCard","subscriptions_account_free_plan_benefits_reminders":"Rappels par courriel","subscriptions_account_free_plan_benefits_support":"Supporter le projet sur le long terme, afin de pouvoir vous proposer plus de fonctionnalit\u00e9s.","subscriptions_account_free_plan_benefits_users":"Nombre illimit\u00e9 d\u2019utilisateurs","subscriptions_account_free_plan_upgrade":"Vous pouvez mettre \u00e0 niveau votre compte en passant \u00e0 l\u2019offre :name, qui co\u00fbte :price $ par mois. En voici les avantages :","subscriptions_account_invoices":"Factures","subscriptions_account_invoices_download":"T\u00e9l\u00e9charger","subscriptions_account_invoices_subscription":"Abonnement du :startDate au :endDate","subscriptions_account_next_billing":"Votre abonnement va \u00eatre renouvel\u00e9 automatiquement le :date<\/strong>.","subscriptions_account_payment":"Quelle option de paiement vous convient le mieux\u00a0?","subscriptions_account_upgrade":"Mettre \u00e0 jour votre compte","subscriptions_account_upgrade_choice":"Choisissez une offre ci-dessous et rejoignez plus de :customers personnes qui ont mis \u00e0 niveau leur Monica.","subscriptions_account_upgrade_title":"Mettez \u00e0 niveau Monica aujourd\u2019hui et ayez des relations encore plus significatives.","subscriptions_back":"Retourner aux param\u00e8tres","subscriptions_downgrade_cta":"Passer au plan inf\u00e9rieur","subscriptions_downgrade_limitations":"L\u2019offre gratuite a des limitations. Afin de pouvoir passer \u00e0 cette offre, vous devez passer les points suivants :","subscriptions_downgrade_rule_contacts":"Vous ne devez pas avoir plus de :number contacts actifs","subscriptions_downgrade_rule_contacts_constraint":"Vous avez actuellement :count contact<\/a>.|Vous avez actuellement :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"Vous ne devez pas avoir d\u2019invitation en attente","subscriptions_downgrade_rule_invitations_constraint":"Vous avez actuellement 1 invitiation<\/a> en attente.|Vous avez actuellement :count invitations<\/a> en attente.","subscriptions_downgrade_rule_users":"Vous devez avoir un seul utilisateur dans votre compte","subscriptions_downgrade_rule_users_constraint":"Vous avez actuellement :count utilisateur<\/a> dans votre compte.|Vous avez actuellement :count utilisateurs<\/a> dans votre compte.","subscriptions_downgrade_success":"Vous \u00eates de retour sur l\u2019offre gratuite\u00a0!","subscriptions_downgrade_thanks":"Merci beaucoup d\u2019avoir essay\u00e9 l\u2019offre payante. Nous continuons \u00e0 apporter de nouvelles fonctionnalit\u00e9s sur Monica tout le temps \u2013 vous pouvez donc revenir \u00e0 l\u2019occasion pour voir si vous pourriez \u00e0 nouveau \u00eatre int\u00e9ress\u00e9\u00b7e pour prendre un abonnement.","subscriptions_downgrade_title":"Passez votre compte sur l\u2019offre gratuite","subscriptions_help_change_desc":"Vous pouvez annuler \u00e0 tout moment, sans question, et par vous-m\u00eame \u2013 aucun support requis. Toutefois, vous ne serez pas rembours\u00e9 pour la p\u00e9riode en cours.","subscriptions_help_change_title":"Que se passe-t-il si je change d\u2019avis ?","subscriptions_help_discounts_desc":"En effet ! Monica est gratuit pour les \u00e9tudiants, les organismes sans but lucratif et les organismes de bienfaisance. Il suffit de contacter le support<\/a> avec un justificatif de votre statut et nous allons appliquer ce statut sp\u00e9cial dans votre compte.","subscriptions_help_discounts_title":"Avez-vous des r\u00e9ductions pour les organismes sans but lucratif et les organismes d\u2019\u00e9ducation\u00a0?","subscriptions_help_limits_plan":"Oui. L\u2019offre gratuite vous permet de g\u00e9rer\u00a0:number contacts.","subscriptions_help_limits_title":"Y a-t-il une limite au nombre de contacts que nous pouvons avoir sur l\u2019offre gratuite\u00a0?","subscriptions_help_opensource_desc":"Monica est un projet open source. Il est le fruit du travail d\u2019une communaut\u00e9 de b\u00e9n\u00e9voles qui veulent juste cr\u00e9er un outil pour le bien de tous. \u00catre un projet open source signifie que le code est disponible pour tous sur GitHub, et que tout le monde peut l\u2019inspecter, le modifier et l\u2019am\u00e9liorer. Tout l\u2019argent que nous r\u00e9coltons sert uniquement \u00e0 cr\u00e9er des fonctionnalit\u00e9s, payer de nouveaux serveurs puissants, et autres co\u00fbts. Merci pour votre aide. Nous ne pourrions rien faire sans vous.","subscriptions_help_opensource_title":"Qu\u2019est-ce qu\u2019un projet open source\u00a0?","subscriptions_help_title":"D\u00e9tails suppl\u00e9mentaires, qui peuvent attiser votre curiosit\u00e9","subscriptions_payment_cancelled":"Ce paiement a \u00e9t\u00e9 annul\u00e9.","subscriptions_payment_cancelled_title":"Paiement annul\u00e9","subscriptions_payment_confirm_information":"Une confirmation suppl\u00e9mentaire est n\u00e9cessaire pour traiter votre paiement. Veuillez confirmer votre paiement en remplissant vos informations de paiement ci-dessous.","subscriptions_payment_confirm_title":"Confirmez votre paiement de :amount","subscriptions_payment_error_name":"Veuillez fournir votre nom.","subscriptions_payment_succeeded":"Ce paiement a d\u00e9j\u00e0 \u00e9t\u00e9 confirm\u00e9 avec succ\u00e8s.","subscriptions_payment_succeeded_title":"Paiement valid\u00e9","subscriptions_payment_success":"Votre paiement a \u00e9t\u00e9 effectu\u00e9.","subscriptions_pdf_title":"Votre abonnement :name mensuel","subscriptions_plan_choose":"Choisir cette offre","subscriptions_plan_include1":"Inclus avec votre mise \u00e0 niveau\u00a0:","subscriptions_plan_include2":"Nombre illimit\u00e9 de contacts \u2022 Nombre illimit\u00e9 d\u2019utilisateurs \u2022 Rappels par courriel \u2022 Importer des vCard \u2022 Personnalisation de la vue d\u2019un contact","subscriptions_plan_include3":"100% des b\u00e9n\u00e9fices vont \u00e0 l\u2019\u00e9laboration de ce beau projet open source.","subscriptions_plan_month_bonus":"Annuler \u00e0 tout moment","subscriptions_plan_month_cost":"5$\/mois","subscriptions_plan_month_title":"Payer tous les mois","subscriptions_plan_year_bonus":"Tranquillit\u00e9 d\u2019esprit pendant toute une ann\u00e9e","subscriptions_plan_year_cost":"45$\/ann\u00e9e","subscriptions_plan_year_cost_save":"vous \u00e9conomisez 25%","subscriptions_plan_year_title":"Payer annuellement","subscriptions_upgrade_charge":"Nous d\u00e9biterons votre carte de :price maintenant. Le prochain paiement aura lieu le :date. Si jamais vous changez d\u2019avis, vous pourrez annuler \u00e0 tout moment, sans poser de questions.","subscriptions_upgrade_charge_handled":"Le paiement est g\u00e9r\u00e9 par Stripe<\/a>. Aucune information bancaire n\u2019arrive sur notre serveur.","subscriptions_upgrade_choose":"Vous avez choisi l\u2019offre :plan.","subscriptions_upgrade_credit":"Carte de cr\u00e9dit ou de d\u00e9bit","subscriptions_upgrade_infos":"Nous ne pourrions \u00eatre plus heureux. Entrez vos informations de paiement ci-dessous.","subscriptions_upgrade_name":"Nom sur la carte","subscriptions_upgrade_submit":"Payer {amount}","subscriptions_upgrade_success":"Merci\u00a0! Vous \u00eates maintenant inscrit.","subscriptions_upgrade_thanks":"Bienvenue dans la communaut\u00e9 de personnes qui essaient de rendre le monde un peu meilleur.","subscriptions_upgrade_title":"Passer au plan sup\u00e9rieur","subscriptions_upgrade_zip":"Code postal","tags_blank_description":"Les \u00e9tiquettent fonctionnent comme des dossiers, mais vous pouvez ajouter plus d'une \u00e9tiquette \u00e0 un contact. Allez \u00e0 un contact et taguez un ami, juste en dessous du nom. Une fois qu'un contact est \u00e9tiquet\u00e9, revenez ici pour g\u00e9rer toutes les \u00e9tiquettes de votre compte.","tags_blank_title":"Les \u00e9tiquettes sont une excellente mani\u00e8re de cat\u00e9goriser vos contacts.","tags_list_contact_number":":count contact|:count contacts","tags_list_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cette \u00e9tiquette ? Aucun contact ne sera supprim\u00e9, seulement l\u2019\u00e9tiquette.","tags_list_delete_success":"L\u2019\u00e9tiquette a \u00e9t\u00e9 supprim\u00e9e avec succ\u00e8s","tags_list_description":"Vous pouvez organiser vos contact avec des \u00e9tiquettes. Les \u00e9tiquettes sont comme des dossiers, mais vous pouvez avoir autant d\u2019\u00e9tiquettes que vous le souhaitez par contact.","tags_list_title":"\u00c9tiquettes","temperature_scale":"\u00c9chelle de temp\u00e9rature","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Fuseau horaire","title_general":"Informations g\u00e9n\u00e9rales","title_i18n":"Param\u00e8tres internationaux","title_layout":"Disposition","users_accept_title":"Accepter l\u2019invitation et cr\u00e9er un nouveau compte","users_add_confirmation":"Je confirme que je veux inviter cet utilisateur dans mon compte. Je comprends que cette personne aura acc\u00e8s \u00e0 toutes mes donn\u00e9es et verra exactement ce que je vois.","users_add_cta":"Inviter l\u2019utilisateur par courriel","users_add_description":"Cette personne aura le m\u00eame acc\u00e8s que vous, et pourra \u00e9galement inviter ou supprimer d\u2019autres utilisateurs, vous compris. Assurez-vous de faire confiance \u00e0 cette personne avant de lui donner ces acc\u00e8s.","users_add_email_field":"Entrez le courriel de la personne que vous souhaitez inviter","users_add_title":"Invitez un nouvel utilisateur \u00e0 votre compte par courriel","users_blank_add_title":"Souhaitez-vous inviter quelqu\u2019un d\u2019autre\u00a0?","users_blank_cta":"Inviter quelqu\u2019un","users_blank_description":"Cette personne aura le m\u00eame acc\u00e8s que vous et sera en mesure d\u2019ajouter, modifier ou supprimer les informations de contact.","users_blank_title":"Vous \u00eates la seule personne qui a acc\u00e8s \u00e0 ce compte.","users_error_already_invited":"Vous avez d\u00e9j\u00e0 invit\u00e9 cet utilisateur. Veuillez choisir une autre adresse courriel.","users_error_email_already_taken":"Cette adresse courriel est d\u00e9j\u00e0 prise. Veuillez en choisir une autre","users_error_email_not_similar":"Ce n\u2019est pas le courriel de la personne qui vous a invit\u00e9.","users_error_please_confirm":"Merci de confirmer que vous souhaitez bien inviter cette personne avant d\u2019envoyer l\u2019invitation","users_invitation_deleted_confirmation_message":"L\u2019invitation a \u00e9t\u00e9 supprim\u00e9e avec succ\u00e8s","users_invitation_need_subscription":"L\u2019ajout d\u2019utilisateurs n\u00e9cessite un abonnement.","users_invitations_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer de cette invitation ?","users_list_add_user":"Inviter un nouvel utilisateur","users_list_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cet utilisateur de votre compte ?","users_list_invitations_explanation":"Voici les personnes que vous avez invit\u00e9 \u00e0 rejoindre Monica comme collaborateurs.","users_list_invitations_invited_by":"invit\u00e9 par :name","users_list_invitations_sent_date":"envoy\u00e9 le :date","users_list_invitations_title":"Invitations en attente","users_list_title":"Utilisateurs avec acc\u00e8s \u00e0 votre compte","users_list_you":"C\u2019est vous","webauthn_buttonAdvise":"Si votre cl\u00e9 de s\u00e9curit\u00e9 dispose d\u2019un bouton, appuyez dessus.","webauthn_delete_confirmation":"\u00cates-vous s\u00fbr de vouloir supprimer cette cl\u00e9 ?","webauthn_delete_success":"Cl\u00e9 supprim\u00e9e","webauthn_enable_description":"Ajouter une nouvelle cl\u00e9 de s\u00e9curit\u00e9","webauthn_error_already_used":"Cette cl\u00e9 est d\u00e9j\u00e0 enregistr\u00e9e. Il n\u2019est pas n\u00e9cessaire de l\u2019enregistrer \u00e0 nouveau.","webauthn_error_not_allowed":"L\u2019op\u00e9ration a expir\u00e9 ou n\u2019a pas \u00e9t\u00e9 autoris\u00e9e.","webauthn_insertKey":"Ins\u00e9rer votre cl\u00e9 de s\u00e9curit\u00e9.","webauthn_key_name":"Nom de la cl\u00e9 :","webauthn_key_name_help":"Donnez un nom \u00e0 votre cl\u00e9.","webauthn_last_use":"Derni\u00e8re utilisation\u00a0: {timestamp}","webauthn_noButtonAdvise":"Si ce n\u2019est pas le cas, enlevez-la et ins\u00e9rez l\u00e0 \u00e0 nouveau.","webauthn_not_secured":"WebAuthn ne supporte que les connexions s\u00e9curis\u00e9es. Veuillez charger cette page en https.","webauthn_not_supported":"Votre navigateur ne supporte pas encore WebAuthn.","webauthn_success":"Votre cl\u00e9 est d\u00e9tect\u00e9e et valid\u00e9e.","webauthn_title":"Cl\u00e9 de s\u00e9curit\u00e9 \u2014 Protocole WebAuthn"},"validation":{"accepted":"Le champ :attribute doit \u00eatre accept\u00e9.","active_url":"Le champ :attribute n\u2019est pas une URL valide.","after":"Le champ :attribute doit \u00eatre une date post\u00e9rieure au :date.","after_or_equal":":attribute doit \u00eatre une date post\u00e9rieure ou \u00e9gale \u00e0 :date.","alpha":"Le champ :attribute doit seulement contenir des lettres.","alpha_dash":"Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.","alpha_num":"Le champ :attribute doit seulement contenir des chiffres et des lettres.","array":"Le champ :attribute doit \u00eatre un tableau.","attributes":[],"before":"Le champ :attribute doit \u00eatre une date ant\u00e9rieure au :date.","before_or_equal":":attribute doit \u00eatre une date ant\u00e9rieure ou \u00e9gale \u00e0 :date.","between":{"array":"Le tableau :attribute doit contenir entre :min et :max \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute doit \u00eatre comprise entre :min et :max kilo-octets.","numeric":"La valeur de :attribute doit \u00eatre comprise entre :min et :max.","string":"Le texte :attribute doit contenir entre :min et :max caract\u00e8res."},"boolean":"Le champ :attribute doit \u00eatre vrai ou faux.","confirmed":"Le champ de confirmation :attribute ne correspond pas.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"Le champ :attribute n\u2019est pas une date valide.","date_equals":"Le champ :attribute doit \u00eatre une date \u00e9gale \u00e0 :date.","date_format":"Le champ :attribute ne correspond pas au format :format.","different":"Les champs :attribute et :other doivent \u00eatre diff\u00e9rents.","digits":"Le champ :attribute doit contenir :digits chiffres.","digits_between":"Le champ :attribute doit contenir entre :min et :max chiffres.","dimensions":":attribute a des dimensions d\u2019image invalides.","distinct":"Le champ :attribute a une valeur dupliqu\u00e9e.","email":"Le champ :attribute doit \u00eatre une adresse e-mail valide.","ends_with":"Le champ :attribute doit se terminer par une des valeurs suivantes : :values","exists":"Le champ :attribute s\u00e9lectionn\u00e9 est invalide.","file":":attribute doit \u00eatre un fichier.","filled":"Le champ :attribute doit avoir une valeur.","gt":{"array":"Le tableau :attribute doit contenir plus de :value \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute doit \u00eatre sup\u00e9rieure \u00e0 :value kilo-octets.","numeric":"La valeur de :attribute doit \u00eatre sup\u00e9rieure \u00e0 :value.","string":"Le texte :attribute doit contenir plus de :value caract\u00e8res."},"gte":{"array":"Le tableau :attribute doit contenir au moins :value \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute doit \u00eatre sup\u00e9rieure ou \u00e9gale \u00e0 :value kilo-octets.","numeric":"La valeur de :attribute doit \u00eatre sup\u00e9rieure ou \u00e9gale \u00e0 :value.","string":"Le texte :attribute doit contenir au moins :value caract\u00e8res."},"image":"Le champ :attribute doit \u00eatre une image.","in":"Le champ :attribute est invalide.","in_array":"Le champ :attribute n\u2019existe pas dans :other.","integer":"Le champ :attribute doit \u00eatre un entier.","ip":"Le champ :attribute doit \u00eatre une adresse IP valide.","ipv4":":attribute doit \u00eatre une adresse IPv4 valide.","ipv6":":attribute doit \u00eatre une adresse IPv6 valide.","json":"Le champ :attribute doit \u00eatre un document JSON valide.","lt":{"array":"Le tableau :attribute doit contenir moins de :value \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute doit \u00eatre inf\u00e9rieure \u00e0 :value kilo-octets.","numeric":"La valeur de :attribute doit \u00eatre inf\u00e9rieure \u00e0 :value.","string":"Le texte :attribute doit contenir moins de :value caract\u00e8res."},"lte":{"array":"Le tableau :attribute doit contenir au plus :value \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute doit \u00eatre inf\u00e9rieure ou \u00e9gale \u00e0 :value kilo-octets.","numeric":"La valeur de :attribute doit \u00eatre inf\u00e9rieure ou \u00e9gale \u00e0 :value.","string":"Le texte :attribute doit contenir au plus :value caract\u00e8res."},"max":{"array":"Le tableau :attribute ne peut contenir plus de :max \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute ne peut pas d\u00e9passer :max kilo-octets.","numeric":"La valeur de :attribute ne peut \u00eatre sup\u00e9rieure \u00e0 :max.","string":"Le texte de :attribute ne peut contenir plus de :max caract\u00e8res."},"mimes":"Le champ :attribute doit \u00eatre un fichier de type : :values.","mimetypes":":attribute doit \u00eatre un fichier de type : :values.","min":{"array":"Le tableau :attribute doit contenir au moins :min \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute doit \u00eatre sup\u00e9rieure \u00e0 :min kilo-octets.","numeric":"La valeur de :attribute doit \u00eatre sup\u00e9rieure ou \u00e9gale \u00e0 :min.","string":"Le texte :attribute doit contenir au moins :min caract\u00e8res."},"not_in":"Le champ :attribute s\u00e9lectionn\u00e9 n\u2019est pas valide.","not_regex":"Le format du champ :attribute est invalide.","numeric":"Le champ :attribute doit contenir un nombre.","password":"Le mot de passe est incorrect.","present":"Le champ :attribute doit \u00eatre pr\u00e9sent.","regex":"Le format du champ :attribute est invalide.","required":"Le champ :attribute est obligatoire.","required_if":"Le champ :attribute est obligatoire quand la valeur de :other est :value.","required_unless":"Le champ :attribute est obligatoire sauf si :other est :values.","required_with":"Le champ :attribute est obligatoire quand :values est pr\u00e9sent.","required_with_all":"Le champ :attribute est obligatoire quand :values sont pr\u00e9sents.","required_without":"Le champ :attribute est obligatoire quand :values n\u2019est pas pr\u00e9sent.","required_without_all":"Le champ :attribute est requis quand aucun de :values n\u2019est pr\u00e9sent.","same":"Les champs :attribute et :other doivent \u00eatre identiques.","size":{"array":"Le tableau :attribute doit contenir :size \u00e9l\u00e9ments.","file":"La taille du fichier de :attribute doit \u00eatre de :size kilo-octets.","numeric":"La valeur de :attribute doit \u00eatre :size.","string":"Le texte de :attribute doit contenir :size caract\u00e8res."},"starts_with":"Le champ :attribute doit commencer avec une des valeurs suivantes : :values","string":"Le champ :attribute doit \u00eatre une cha\u00eene de caract\u00e8res.","timezone":"Le champ :attribute doit \u00eatre un fuseau horaire valide.","unique":"La valeur du champ :attribute est d\u00e9j\u00e0 utilis\u00e9e.","uploaded":":attribute n\u2019a pas pu \u00eatre t\u00e9l\u00e9vers\u00e9.","url":"Le format de l\u2019Url de :attribute n\u2019est pas valide.","uuid":"Le champ :attribute doit \u00eatre un UUID valide","vue":{"max":{"numeric":"{field} ne peut pas \u00eatre plus grand que {max}.","string":"{field} ne peut pas avoir plus de {max} caract\u00e8res."},"required":"{field} est obligatoire.","url":"{field} n\u2019est pas une URL valide."}}} diff --git a/public/js/langs/he.json b/public/js/langs/he.json deleted file mode 100644 index 6549159ddd0..00000000000 --- a/public/js/langs/he.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"\u05d4\u05d5\u05e1\u05e4\u05d4","another_day":"\u05d9\u05d5\u05dd \u05d0\u05d7\u05e8","application_description":"\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d4\u05d9\u05d0 \u05db\u05dc\u05d9 \u05dc\u05e0\u05d9\u05d4\u05d5\u05dc \u05d4\u05e7\u05e9\u05e8\u05d9\u05dd \u05d4\u05d7\u05d1\u05e8\u05ea\u05d9\u05d9\u05dd \u05e9\u05dc\u05da \u05e2\u05dd \u05d0\u05d4\u05d5\u05d1\u05d9\u05da, \u05d7\u05d1\u05e8\u05d9\u05da \u05d5\u05de\u05e9\u05e4\u05d7\u05ea\u05da.","application_og_title":"\u05d7\u05d9\u05d6\u05d5\u05e7 \u05d4\u05e7\u05e9\u05e8 \u05e2\u05dd \u05d0\u05d4\u05d5\u05d1\u05d9\u05da. \u05de\u05e2\u05e8\u05db\u05ea \u05e0\u05d9\u05d4\u05d5\u05dc \u05e7\u05e9\u05e8\u05d9\u05dd \u05e2\u05dd \u05d7\u05d1\u05e8\u05d9\u05dd \u05d5\u05de\u05e9\u05e4\u05d7\u05d4, \u05de\u05e7\u05d5\u05d5\u05e0\u05ea \u05d5\u05d1\u05d7\u05d9\u05e0\u05dd.","application_title":"\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 - \u05e0\u05d9\u05d4\u05d5\u05dc \u05d9\u05d7\u05e1\u05d9\u05dd \u05d1\u05d9\u05e0\u05d0\u05d9\u05e9\u05d9\u05d9\u05dd","back":"\u05d7\u05d6\u05e8\u05d4","breadcrumb_add_note":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d4\u05e2\u05e8\u05d4","breadcrumb_add_significant_other":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05e9\u05e8 \u05d6\u05d5\u05d2\u05d9","breadcrumb_api":"API","breadcrumb_archived_contacts":"\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05d1\u05d0\u05e8\u05db\u05d9\u05d5\u05df","breadcrumb_dashboard":"\u05dc\u05d5\u05d7 \u05de\u05d7\u05d5\u05d5\u05e0\u05d9\u05dd","breadcrumb_dav":"\u05de\u05e9\u05d0\u05d1\u05d9 DAV","breadcrumb_edit_introductions":"\u05d0\u05d9\u05da \u05d4\u05db\u05e8\u05ea\u05dd","breadcrumb_edit_note":"\u05e2\u05e8\u05d9\u05db\u05ea \u05d4\u05e2\u05e8\u05d4","breadcrumb_edit_significant_other":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e7\u05e9\u05e8 \u05d6\u05d5\u05d2\u05d9","breadcrumb_journal":"\u05d9\u05d5\u05de\u05df","breadcrumb_list_contacts":"\u05e8\u05e9\u05d9\u05de\u05ea \u05d0\u05e0\u05e9\u05d9\u05dd","breadcrumb_profile":"\u05d4\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05e9\u05dc :name","breadcrumb_settings":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea","breadcrumb_settings_export":"\u05d9\u05e6\u05d5\u05d0","breadcrumb_settings_import":"\u05d9\u05d1\u05d5\u05d0","breadcrumb_settings_import_report":"\u05d3\u05d5\u05d7 \u05d9\u05d1\u05d5\u05d0","breadcrumb_settings_import_upload":"\u05d4\u05e2\u05dc\u05d0\u05d4","breadcrumb_settings_personalization":"\u05d4\u05ea\u05d0\u05de\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea","breadcrumb_settings_security":"\u05d0\u05d1\u05d8\u05d7\u05d4","breadcrumb_settings_security_2fa":"\u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","breadcrumb_settings_subscriptions":"\u05d4\u05e8\u05e9\u05de\u05d4","breadcrumb_settings_tags":"\u05ea\u05d2\u05d9\u05d5\u05ea","breadcrumb_settings_users":"\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd","breadcrumb_settings_users_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05e9\u05ea\u05de\u05e9","cancel":"\u05d1\u05d9\u05d8\u05d5\u05dc","close":"\u05e1\u05d2\u05d9\u05e8\u05d4","compliance_desc":"\u05e2\u05e8\u05db\u05e0\u05d5 \u05d0\u05ea \u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05de\u05d5\u05e9<\/a> \u05d5\u05d0\u05ea \u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea<\/a> \u05e9\u05dc\u05e0\u05d5. \u05de\u05db\u05d5\u05d7 \u05d4\u05d7\u05d5\u05e7 \u05e2\u05dc\u05d9\u05e0\u05d5 \u05dc\u05d1\u05e7\u05e9 \u05de\u05de\u05da \u05dc\u05e2\u05d9\u05d9\u05df \u05d1\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d5\u05dc\u05d0\u05e9\u05e8 \u05d0\u05ea \u05d4\u05e1\u05db\u05de\u05ea\u05da \u05dc\u05d4\u05dd \u05db\u05d3\u05d9 \u05dc\u05d4\u05de\u05e9\u05d9\u05da \u05dc\u05d0\u05e4\u05e9\u05e8 \u05dc\u05da \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05da.","compliance_desc_end":"\u05d0\u05e0\u05d5 \u05dc\u05d0 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05dc\u05d0\u05e3 \u05de\u05d8\u05e8\u05d4 \u05d6\u05d3\u05d5\u05e0\u05d9\u05ea \u05d5\u05d2\u05dd \u05dc\u05d0 \u05e0\u05e2\u05e9\u05d4 \u05d6\u05d0\u05ea \u05d1\u05e2\u05ea\u05d9\u05d3.","compliance_terms":"\u05e7\u05d1\u05dc\u05ea \u05d4\u05ea\u05e0\u05d0\u05d9\u05dd \u05d5\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea \u05d4\u05d7\u05d3\u05e9\u05d9\u05dd","compliance_title":"\u05e1\u05dc\u05d9\u05d7\u05d4 \u05e2\u05dc \u05d4\u05d4\u05e4\u05e8\u05e2\u05d4.","confirm":"\u05d0\u05d9\u05e9\u05d5\u05e8","contact_list_avatar":"\u05ea\u05de\u05d5\u05e0\u05d4 \u05d9\u05d9\u05e6\u05d5\u05d2\u05d9\u05ea","contact_list_description":"\u05ea\u05d9\u05d0\u05d5\u05e8","contact_list_name":"\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8","copy":"\u05d4\u05e2\u05ea\u05e7\u05d4","create":"\u05d9\u05e6\u05d9\u05e8\u05d4","date":"\u05ea\u05d0\u05e8\u05d9\u05da","dav_birthdays":"\u05d9\u05de\u05d9 \u05d4\u05d5\u05dc\u05d3\u05ea","dav_birthdays_description":"\u05d9\u05de\u05d9 \u05d4\u05d4\u05d5\u05dc\u05d3\u05ea \u05e9\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc :name","dav_contacts":"\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","dav_contacts_description":"\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc :name","dav_tasks":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea","dav_tasks_description":"\u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e9\u05dc :name","default_save_success":"\u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e0\u05e9\u05de\u05e8\u05d5.","delete":"\u05de\u05d7\u05d9\u05e7\u05d4","delete_confirm":"\u05dc\u05d4\u05de\u05e9\u05d9\u05da?","done":"\u05e1\u05d9\u05d5\u05dd","download":"\u05d4\u05d5\u05e8\u05d3\u05d4","edit":"\u05e2\u05e8\u05d9\u05db\u05d4","emotion_adoration":"\u05d4\u05e2\u05e8\u05e6\u05d4","emotion_affection":"\u05d0\u05d4\u05d3\u05d4","emotion_aggravation":"\u05e2\u05d2\u05de\u05ea \u05e0\u05e4\u05e9","emotion_agitation":"\u05e1\u05e2\u05e8\u05ea \u05e0\u05e4\u05e9","emotion_agony":"\u05d9\u05d9\u05e1\u05d5\u05e8\u05d9\u05dd","emotion_alarm":"\u05d3\u05e8\u05d9\u05db\u05d5\u05ea","emotion_alienation":"\u05e0\u05d9\u05db\u05d5\u05e8","emotion_amazement":"\u05e4\u05dc\u05d9\u05d0\u05d4","emotion_amusement":"\u05e9\u05e2\u05e9\u05d5\u05e2","emotion_anger":"\u05db\u05e2\u05e1","emotion_anguish":"\u05d7\u05dc\u05d7\u05dc\u05d4","emotion_annoyance":"\u05de\u05d8\u05e8\u05d3","emotion_anxiety":"\u05d7\u05e8\u05d3\u05d4","emotion_apprehension":"\u05d7\u05e9\u05e9","emotion_arousal":"\u05d2\u05d9\u05e8\u05d5\u05d9","emotion_astonishment":"\u05ea\u05d3\u05d4\u05de\u05d4","emotion_attraction":"\u05de\u05e9\u05d9\u05db\u05d4","emotion_bitterness":"\u05de\u05e8\u05d9\u05e8\u05d5\u05ea","emotion_bliss":"\u05d0\u05d5\u05e9\u05e8 \u05e2\u05d9\u05dc\u05d0\u05d9","emotion_caring":"\u05d0\u05db\u05e4\u05ea\u05d9\u05d5\u05ea","emotion_cheerfulness":"\u05e2\u05dc\u05d9\u05d6\u05d5\u05ea","emotion_compassion":"\u05d7\u05de\u05dc\u05d4","emotion_contempt":"\u05d1\u05d5\u05d6","emotion_contentment":"\u05e9\u05d1\u05d9\u05e2\u05d5\u05ea \u05e8\u05e6\u05d5\u05df","emotion_defeat":"\u05ea\u05d1\u05d5\u05e1\u05d4","emotion_dejection":"\u05e2\u05e6\u05d1\u05d5\u05ea","emotion_delight":"\u05e2\u05d5\u05e0\u05d2","emotion_depression":"\u05d3\u05d9\u05db\u05d0\u05d5\u05df","emotion_desire":"\u05e9\u05e7\u05d9\u05e7\u05d4","emotion_despair":"\u05d9\u05d9\u05d0\u05d5\u05e9","emotion_disappointment":"\u05d0\u05db\u05d6\u05d1\u05d4","emotion_disgust":"\u05d2\u05d5\u05e2\u05dc","emotion_dislike":"\u05e1\u05dc\u05d9\u05d3\u05d4","emotion_dismay":"\u05e8\u05e4\u05d9\u05d5\u05df \u05d9\u05d3\u05d9\u05d9\u05dd","emotion_displeasure":"\u05d0\u05d9 \u05e9\u05d1\u05d9\u05e2\u05d5\u05ea \u05e8\u05e6\u05d5\u05df","emotion_distress":"\u05de\u05e6\u05d5\u05e7\u05d4","emotion_dread":"\u05de\u05d5\u05e8\u05d0","emotion_eagerness":"\u05de\u05ea\u05dc\u05d4\u05d1","emotion_ecstasy":"\u05d0\u05e7\u05e1\u05d8\u05d6\u05d4","emotion_elation":"\u05d4\u05ea\u05e2\u05dc\u05d5\u05ea","emotion_embarrassment":"\u05de\u05d1\u05d5\u05db\u05d4","emotion_enjoyment":"\u05e9\u05e2\u05e9\u05d5\u05e2","emotion_enthrallment":"\u05e8\u05d9\u05d2\u05d5\u05e9","emotion_enthusiasm":"\u05d4\u05ea\u05dc\u05d4\u05d1\u05d5\u05ea","emotion_envy":"\u05e7\u05e0\u05d0\u05d4","emotion_euphoria":"\u05d6\u05d7\u05d9\u05d7\u05d5\u05ea","emotion_exasperation":"\u05de\u05e8\u05de\u05d5\u05e8","emotion_excitement":"\u05d4\u05ea\u05e8\u05d2\u05e9\u05d5\u05ea","emotion_exhilaration":"\u05d4\u05e8\u05e0\u05e0\u05d4","emotion_fear":"\u05e4\u05d7\u05d3","emotion_ferocity":"\u05d0\u05db\u05d6\u05e8\u05d9\u05d5\u05ea","emotion_fondness":"\u05d7\u05d9\u05d1\u05d4","emotion_fright":"\u05d1\u05e2\u05ea\u05d4","emotion_frustration":"\u05ea\u05e1\u05db\u05d5\u05dc","emotion_fury":"\u05d6\u05e2\u05e3","emotion_gaiety":"\u05e2\u05dc\u05d9\u05e6\u05d5\u05ea","emotion_gladness":"\u05e8\u05d9\u05e0\u05d4","emotion_glee":"\u05e6\u05d4\u05dc\u05d4","emotion_gloom":"\u05d9\u05d2\u05d5\u05df","emotion_glumness":"\u05d3\u05db\u05d3\u05d5\u05da","emotion_grief":"\u05ea\u05d5\u05d2\u05d4","emotion_grouchiness":"\u05e0\u05e8\u05d2\u05e0\u05d5\u05ea","emotion_grumpiness":"\u05e8\u05d2\u05d6\u05e0\u05d5\u05ea","emotion_guilt":"\u05d0\u05e9\u05de\u05d4","emotion_happiness":"\u05d0\u05d5\u05e9\u05e8","emotion_hate":"\u05e9\u05e0\u05d0\u05d4","emotion_homesickness":"\u05d2\u05e2\u05d2\u05d5\u05e2\u05d9\u05dd \u05d4\u05d1\u05d9\u05ea\u05d4","emotion_hope":"\u05ea\u05e7\u05d5\u05d5\u05d4","emotion_hopelessness":"\u05d7\u05d5\u05e1\u05e8 \u05ea\u05e7\u05d5\u05d5\u05d4","emotion_horror":"\u05d0\u05d9\u05de\u05d4","emotion_hostility":"\u05e2\u05d5\u05d9\u05e0\u05d5\u05ea","emotion_humiliation":"\u05d4\u05e9\u05e4\u05dc\u05d4","emotion_hurt":"\u05e4\u05d2\u05d9\u05e2\u05d4","emotion_hysteria":"\u05d4\u05d9\u05e1\u05d8\u05e8\u05d9\u05d4","emotion_infatuation":"\u05d0\u05d4\u05d1\u05d4 \u05e2\u05d9\u05d5\u05d5\u05e8\u05ea","emotion_insecurity":"\u05d7\u05d5\u05e1\u05e8 \u05d1\u05d9\u05d8\u05d7\u05d5\u05df","emotion_insult":"\u05e2\u05dc\u05d1\u05d5\u05df","emotion_irritation":"\u05d4\u05e8\u05d2\u05d6\u05d4","emotion_isolation":"\u05d1\u05d9\u05d3\u05d5\u05d3","emotion_jealousy":"\u05e7\u05e0\u05d0\u05d4","emotion_jolliness":"\u05d3\u05d9\u05e6\u05d4","emotion_joviality":"\u05d2\u05d9\u05dc\u05d4","emotion_joy":"\u05e9\u05de\u05d7\u05d4","emotion_jubilation":"\u05e9\u05e9\u05d5\u05df","emotion_liking":"\u05d4\u05ea\u05d7\u05d1\u05d1\u05d5\u05ea","emotion_loathing":"\u05ea\u05d9\u05e2\u05d5\u05d1","emotion_loneliness":"\u05d1\u05d3\u05d9\u05d3\u05d5\u05ea","emotion_longing":"\u05d2\u05e2\u05d2\u05d5\u05e2\u05d9\u05dd","emotion_love":"\u05d0\u05d4\u05d1\u05d4","emotion_lust":"\u05ea\u05d0\u05d5\u05d5\u05d4","emotion_melancholy":"\u05d3\u05db\u05d0\u05d5\u05df","emotion_misery":"\u05d0\u05d5\u05de\u05dc\u05dc\u05d5\u05ea","emotion_mortification":"\u05d4\u05de\u05ea\u05d4","emotion_neglect":"\u05d4\u05d6\u05e0\u05d7\u05d4","emotion_nervousness":"\u05e2\u05e6\u05d1\u05e0\u05d5\u05ea","emotion_optimism":"\u05d0\u05d5\u05e4\u05d8\u05d9\u05de\u05d9\u05d5\u05ea","emotion_outrage":"\u05e2\u05dc\u05d1\u05d5\u05df \u05d7\u05de\u05d5\u05e8","emotion_panic":"\u05e4\u05d0\u05e0\u05d9\u05e7\u05d4","emotion_passion":"\u05d7\u05e9\u05e7\u05e0\u05d5\u05ea","emotion_pity":"\u05e8\u05d7\u05de\u05d9\u05dd","emotion_pleasure":"\u05d4\u05e0\u05d0\u05d4","emotion_pride":"\u05d2\u05d0\u05d5\u05d5\u05d4","emotion_primary_anger":"\u05db\u05e2\u05e1","emotion_primary_fear":"\u05e4\u05d7\u05d3","emotion_primary_joy":"\u05e9\u05de\u05d7\u05d4","emotion_primary_love":"\u05d0\u05d4\u05d1\u05d4","emotion_primary_sadness":"\u05e2\u05e6\u05d1","emotion_primary_surprise":"\u05d4\u05e4\u05ea\u05e2\u05d4","emotion_rage":"\u05d6\u05e2\u05dd","emotion_rapture":"\u05d4\u05ea\u05dc\u05d4\u05d1\u05d5\u05ea","emotion_regret":"\u05d7\u05e8\u05d8\u05d4","emotion_rejection":"\u05d3\u05d7\u05d9\u05d9\u05d4","emotion_relief":"\u05e8\u05d2\u05d9\u05e2\u05d4","emotion_remorse":"\u05e0\u05e7\u05d9\u05e4\u05ea \u05dc\u05d1","emotion_resentment":"\u05d8\u05d9\u05e0\u05d4","emotion_revulsion":"\u05d1\u05d7\u05d9\u05dc\u05d4","emotion_sadness":"\u05e2\u05e6\u05d1","emotion_satisfaction":"\u05e1\u05d9\u05e4\u05d5\u05e7","emotion_scorn":"\u05d1\u05d5\u05d6","emotion_secondary_affection":"\u05d0\u05d4\u05d3\u05d4","emotion_secondary_cheerfulness":"\u05e2\u05dc\u05d9\u05d6\u05d5\u05ea","emotion_secondary_contentment":"\u05e1\u05d9\u05e4\u05d5\u05e7","emotion_secondary_disappointment":"\u05d0\u05db\u05d6\u05d1\u05d4","emotion_secondary_disgust":"\u05d2\u05d5\u05e2\u05dc","emotion_secondary_enthrallment":"\u05e7\u05e1\u05dd","emotion_secondary_envy":"\u05e7\u05e0\u05d0\u05d4","emotion_secondary_exasperation":"\u05de\u05e8\u05de\u05d5\u05e8","emotion_secondary_horror":"\u05d0\u05d9\u05de\u05d4","emotion_secondary_irritation":"\u05e7\u05e0\u05d8\u05e8\u05e0\u05d5\u05ea","emotion_secondary_longing":"\u05d2\u05e2\u05d2\u05d5\u05e2\u05d9\u05dd","emotion_secondary_lust":"\u05ea\u05e9\u05d5\u05e7\u05d4","emotion_secondary_neglect":"\u05d4\u05d6\u05e0\u05d7\u05d4","emotion_secondary_nervousness":"\u05e2\u05e6\u05d1\u05e0\u05d5\u05ea","emotion_secondary_optimism":"\u05d0\u05d5\u05e4\u05d8\u05d9\u05de\u05d9\u05d5\u05ea","emotion_secondary_pride":"\u05d2\u05d0\u05d5\u05d5\u05d4","emotion_secondary_rage":"\u05d6\u05e2\u05dd","emotion_secondary_relief":"\u05e8\u05d2\u05d9\u05e2\u05d4","emotion_secondary_sadness":"\u05e2\u05e6\u05d1","emotion_secondary_shame":"\u05d1\u05d5\u05e9\u05d4","emotion_secondary_suffering":"\u05e1\u05d1\u05dc","emotion_secondary_surprise":"\u05d4\u05e4\u05ea\u05e2\u05d4","emotion_secondary_sympathy":"\u05d0\u05d4\u05d3\u05d4","emotion_secondary_zest":"\u05dc\u05d4\u05d8","emotion_sentimentality":"\u05e8\u05d2\u05e9\u05e0\u05d5\u05ea","emotion_shame":"\u05d1\u05d5\u05e9\u05d4","emotion_shock":"\u05d4\u05dc\u05dd","emotion_sorrow":"\u05e6\u05e2\u05e8","emotion_spite":"\u05d4\u05e7\u05e0\u05d8\u05d4","emotion_suffering":"\u05e1\u05d1\u05dc","emotion_surprise":"\u05d4\u05e4\u05ea\u05e2\u05d4","emotion_sympathy":"\u05d0\u05d4\u05d3\u05d4","emotion_tenderness":"\u05e8\u05d5\u05da","emotion_tenseness":"\u05de\u05ea\u05d9\u05d7\u05d5\u05ea","emotion_terror":"\u05d8\u05e8\u05d5\u05e8","emotion_thrill":"\u05de\u05ea\u05e8\u05d2\u05e9","emotion_uneasiness":"\u05d7\u05d5\u05e1\u05e8 \u05e0\u05d5\u05d7\u05d5\u05ea","emotion_unhappiness":"\u05d4\u05e2\u05d3\u05e8 \u05e9\u05de\u05d7\u05d4","emotion_vengefulness":"\u05e0\u05e7\u05de\u05d4","emotion_woe":"\u05e6\u05e2\u05e8 \u05e2\u05de\u05d5\u05e7","emotion_worry":"\u05d3\u05d0\u05d2\u05d4","emotion_wrath":"\u05d7\u05e8\u05d5\u05df","emotion_zeal":"\u05de\u05ea\u05dc\u05d4\u05d1","emotion_zest":"\u05dc\u05d4\u05d8","error_help":"\u05de\u05d9\u05d3 \u05e0\u05e9\u05d5\u05d1.","error_id":"\u05de\u05d6\u05d4\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4: :id","error_maintenance":"\u05de\u05ea\u05d1\u05e6\u05e2\u05d5\u05ea \u05e2\u05d1\u05d5\u05d3\u05d5\u05ea \u05ea\u05d7\u05d6\u05d5\u05e7\u05d4. \u05ea\u05db\u05e3 \u05e0\u05e9\u05d5\u05d1.","error_no_term":"\u05e2\u05d3\u05d9\u05d9\u05df \u05d0\u05d9\u05df \u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 \u05d4\u05e2\u05d5\u05ea\u05e7 \u05d4\u05d6\u05d4.","error_save":"\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05e9\u05de\u05d9\u05e8\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd.","error_title":"\u05d0\u05d5\u05e4\u05e1! \u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9.","error_try_again":"\u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9. \u05e0\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1.","error_twitter":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e2\u05e7\u05d5\u05d1 \u05d0\u05d7\u05e8 \u05d7\u05e9\u05d1\u05d5\u05df \u05d4\u05d8\u05d5\u05d5\u05d9\u05d8\u05e8 \u05e9\u05dc\u05e0\u05d5<\/a> \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05e2\u05d3\u05db\u05df \u05d0\u05dd \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05e9\u05d1 \u05dc\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea.","error_unauthorized":"\u05d0\u05d9\u05df \u05dc\u05da \u05d0\u05ea \u05d4\u05d4\u05e8\u05e9\u05d0\u05d4 \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05de\u05e9\u05d0\u05d1 \u05d4\u05d6\u05d4.","error_unavailable":"\u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05d0\u05d9\u05e0\u05d5 \u05d6\u05de\u05d9\u05df","error_user_account":"\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05d0\u05d9\u05e0\u05d5 \u05e9\u05d9\u05d9\u05da \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05e6\u05d5\u05d9\u05df.","file_selected":"\u05e0\u05d1\u05d7\u05e8 \u05e7\u05d5\u05d1\u05e5 \u05d0\u05d7\u05d3\u2026|{count} \u05e7\u05d1\u05e6\u05d9\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5\u2026","filter":"\u05e1\u05d9\u05e0\u05d5\u05df \u05d4\u05e8\u05e9\u05d9\u05de\u05d4","footer_modal_version_release_away":"\u05d2\u05e8\u05e1\u05d4 \u05d6\u05d5 \u05d9\u05e6\u05d0\u05d4 \u05dc\u05d0\u05d5\u05e8 \u05d2\u05e8\u05e1\u05d4 \u05d0\u05d7\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05d2\u05e8\u05e1\u05d4 \u05d4\u05e2\u05d3\u05db\u05e0\u05d9\u05ea \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea. \u05e2\u05dc\u05d9\u05da \u05dc\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05d4\u05e2\u05d5\u05ea\u05e7 \u05e9\u05dc\u05da.|\u05d2\u05e8\u05e1\u05d4 \u05d6\u05d5 \u05d9\u05e6\u05d0\u05d4 \u05dc\u05d0\u05d5\u05e8 :number \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05d2\u05e8\u05e1\u05d4 \u05d4\u05e2\u05d3\u05db\u05e0\u05d9\u05ea \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea. \u05e2\u05dc\u05d9\u05da \u05dc\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05d4\u05e2\u05d5\u05ea\u05e7 \u05e9\u05dc\u05da.","footer_modal_version_whats_new":"\u05de\u05d4 \u05d7\u05d3\u05e9","footer_new_version":"\u05d2\u05e8\u05e1\u05d4 \u05d7\u05d3\u05e9\u05d4 \u05e9\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d6\u05de\u05d9\u05e0\u05d4","footer_newsletter":"\u05e8\u05e9\u05d9\u05de\u05ea \u05d3\u05d9\u05d5\u05d5\u05e8","footer_privacy":"\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05e4\u05e8\u05d8\u05d9\u05d5\u05ea","footer_release":"\u05d4\u05e2\u05e8\u05d5\u05ea \u05d4\u05d5\u05e6\u05d0\u05d4 \u05dc\u05d0\u05d5\u05e8","footer_remarks":"\u05d4\u05e2\u05e8\u05d5\u05ea?","footer_send_email":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05e0\u05d5 \u05d3\u05d5\u05d0\u05f4\u05dc","footer_source_code":"\u05ea\u05e8\u05d5\u05de\u05d4","footer_version":"\u05d2\u05e8\u05e1\u05d4: :version","gender_female":"\u05d0\u05d9\u05e9\u05d4","gender_male":"\u05d2\u05d1\u05e8","gender_no_gender":"\u05d0\u05d9\u05df \u05de\u05d2\u05d3\u05e8","gender_none":"\u05e9\u05de\u05d5\u05e8 \u05d1\u05de\u05e2\u05e8\u05db\u05ea","go_back":"\u05d7\u05d6\u05e8\u05d4","header_changelog_link":"\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05de\u05d5\u05e6\u05e8","header_logout_link":"\u05d9\u05e6\u05d9\u05d0\u05d4","header_settings_link":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea","load_more":"\u05dc\u05d8\u05e2\u05d5\u05df \u05e2\u05d5\u05d3","loading":"\u05d1\u05d8\u05e2\u05d9\u05e0\u05d4\u2026","main_nav_activities":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea","main_nav_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05e0\u05e9\u05d9\u05dd","main_nav_dashboard":"\u05dc\u05d5\u05d7 \u05de\u05d7\u05d5\u05d5\u05e0\u05d9\u05dd","main_nav_family":"\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","main_nav_journal":"\u05d9\u05d5\u05de\u05df","main_nav_tasks":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea","markdown_description":"\u05e8\u05d5\u05e6\u05d4 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05e7\u05e6\u05ea \u05e2\u05e0\u05d9\u05d9\u05df \u05dc\u05d8\u05e7\u05e1\u05d8 \u05e9\u05dc\u05da? \u05d1\u05de\u05e2\u05e8\u05db\u05ea \u05d6\u05d5 \u05e7\u05d9\u05d9\u05de\u05ea \u05ea\u05de\u05d9\u05db\u05d4 \u05d1\u05beMarkdown \u05db\u05d3\u05d9 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d4\u05d3\u05d2\u05e9\u05d4, \u05d4\u05d8\u05d9\u05d4, \u05e8\u05e9\u05d9\u05de\u05d5\u05ea \u05d5\u05e2\u05d5\u05d3.","markdown_link":"\u05e7\u05e8\u05d9\u05d0\u05ea \u05d4\u05ea\u05d9\u05e2\u05d5\u05d3","new":"\u05d7\u05d3\u05e9\/\u05d4","no":"\u05dc\u05d0","percent_uploaded":"{percent}% \u05e0\u05e9\u05dc\u05d7\u05d5","relationship_type_bestfriend":"\u05d4\u05d7\u05d1\u05e8 \u05d4\u05d8\u05d5\u05d1 \u05d1\u05d9\u05d5\u05ea\u05e8","relationship_type_bestfriend_female":"\u05d4\u05d7\u05d1\u05e8\u05d4 \u05d4\u05d8\u05d5\u05d1\u05d4 \u05d1\u05d9\u05d5\u05ea\u05e8","relationship_type_bestfriend_female_with_name":"\u05d4\u05d7\u05d1\u05e8\u05d4 \u05d4\u05db\u05d9 \u05d8\u05d5\u05d1\u05d4 \u05e9\u05dc :name","relationship_type_bestfriend_with_name":"\u05d4\u05d7\u05d1\u05e8 \u05d4\u05db\u05d9 \u05d8\u05d5\u05d1 \u05e9\u05dc :name","relationship_type_boss":"\u05de\u05e0\u05d4\u05dc","relationship_type_boss_female":"\u05de\u05e0\u05d4\u05dc\u05ea","relationship_type_boss_female_with_name":"\u05de\u05e0\u05d4\u05dc\u05ea \u05e9\u05dc :name","relationship_type_boss_with_name":"\u05de\u05e0\u05d4\u05dc \u05e9\u05dc :name","relationship_type_child":"\u05d1\u05df","relationship_type_child_female":"\u05d1\u05ea","relationship_type_child_female_with_name":"\u05d1\u05ea \u05e9\u05dc :name","relationship_type_child_with_name":"\u05d1\u05df \u05e9\u05dc :name","relationship_type_colleague":"\u05e2\u05de\u05d9\u05ea \u05dc\u05e2\u05d1\u05d5\u05d3\u05d4","relationship_type_colleague_female":"\u05e2\u05de\u05d9\u05ea\u05d4 \u05dc\u05e2\u05d1\u05d5\u05d3\u05d4","relationship_type_colleague_female_with_name":"\u05e2\u05de\u05d9\u05ea\u05d4 \u05dc\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc :name","relationship_type_colleague_with_name":"\u05e2\u05de\u05d9\u05ea \u05dc\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc :name","relationship_type_cousin":"\u05d1\u05df \u05d3\u05d5\u05d3","relationship_type_cousin_female":"\u05d1\u05ea \u05d3\u05d5\u05d3\u05d4","relationship_type_cousin_female_with_name":"\u05d1\u05ea \u05d3\u05d5\u05d3\u05d4 \u05e9\u05dc :name","relationship_type_cousin_with_name":"\u05d1\u05df \u05d3\u05d5\u05d3 \u05e9\u05dc :name","relationship_type_date":"\u05dc\u05d9\u05e6\u05d9\u05d0\u05d4","relationship_type_date_female":"\u05d9\u05d5\u05e6\u05d0\u05ea \u05e7\u05d1\u05d5\u05e2","relationship_type_date_female_with_name":"\u05d9\u05d5\u05e6\u05d0\u05ea \u05e7\u05d1\u05d5\u05e2 \u05e2\u05dd :name","relationship_type_date_with_name":"\u05d9\u05d5\u05e6\u05d0 \u05e7\u05d1\u05d5\u05e2 \u05e2\u05dd :name","relationship_type_ex":"\u05d7\u05d1\u05e8 \u05dc\u05e9\u05e2\u05d1\u05e8","relationship_type_ex_female":"\u05d7\u05d1\u05e8\u05d4 \u05dc\u05e9\u05e2\u05d1\u05e8","relationship_type_ex_female_with_name":"\u05d7\u05d1\u05e8\u05d4 \u05dc\u05e9\u05e2\u05d1\u05e8 \u05e9\u05dc :name","relationship_type_ex_husband":"\u05d2\u05e8\u05d5\u05e9","relationship_type_ex_husband_female":"\u05d2\u05e8\u05d5\u05e9\u05d4","relationship_type_ex_husband_female_with_name":"\u05d4\u05d2\u05e8\u05d5\u05e9\u05d4 \u05e9\u05dc :name","relationship_type_ex_husband_with_name":"\u05d4\u05d2\u05e8\u05d5\u05e9 \u05e9\u05dc :name","relationship_type_ex_with_name":"\u05d7\u05d1\u05e8 \u05dc\u05e9\u05e2\u05d1\u05e8 \u05e9\u05dc :name","relationship_type_friend":"\u05d7\u05d1\u05e8","relationship_type_friend_female":"\u05d7\u05d1\u05e8\u05d4","relationship_type_friend_female_with_name":"\u05d7\u05d1\u05e8\u05d4 \u05e9\u05dc :name","relationship_type_friend_with_name":"\u05d7\u05d1\u05e8 \u05e9\u05dc :name","relationship_type_godfather":"\u05e1\u05e0\u05d3\u05e7","relationship_type_godfather_female":"\u05e1\u05e0\u05d3\u05e7\u05d9\u05ea","relationship_type_godfather_female_with_name":"\u05d4\u05e1\u05e0\u05d3\u05e7\u05d9\u05ea \u05e9\u05dc :name","relationship_type_godfather_with_name":"\u05d4\u05e1\u05e0\u05d3\u05e7 \u05e9\u05dc :name","relationship_type_godson":"\u05d1\u05df \u05e1\u05e0\u05d3\u05e7\u05d5\u05ea","relationship_type_godson_female":"\u05d1\u05ea \u05e1\u05e0\u05d3\u05e7\u05d5\u05ea","relationship_type_godson_female_with_name":"\u05d1\u05ea \u05d4\u05e1\u05e0\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc :name","relationship_type_godson_with_name":"\u05d1\u05df \u05d4\u05e1\u05e0\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc :name","relationship_type_grandchild":"\u05e0\u05db\u05d3","relationship_type_grandchild_female":"\u05e0\u05db\u05d3\u05d4","relationship_type_grandchild_female_with_name":"\u05e0\u05db\u05d3\u05d4 \u05e9\u05dc :name","relationship_type_grandchild_with_name":"\u05e0\u05db\u05d3 \u05e9\u05dc :name","relationship_type_grandparent":"\u05e1\u05d1\u05d0","relationship_type_grandparent_female":"\u05e1\u05d1\u05ea\u05d0","relationship_type_grandparent_female_with_name":"\u05e1\u05d1\u05ea\u05d0 \u05e9\u05dc :name","relationship_type_grandparent_with_name":"\u05e1\u05d1\u05d0 \u05e9\u05dc :name","relationship_type_group_family":"\u05e7\u05e9\u05e8\u05d9\u05dd \u05de\u05e9\u05e4\u05d7\u05ea\u05d9\u05d9\u05dd","relationship_type_group_friend":"\u05e7\u05e9\u05e8\u05d9\u05dd \u05d7\u05d1\u05e8\u05ea\u05d9\u05d9\u05dd","relationship_type_group_love":"\u05e7\u05e9\u05e8\u05d9\u05dd \u05e8\u05d5\u05de\u05e0\u05d8\u05d9\u05d9\u05dd","relationship_type_group_other":"\u05e1\u05d5\u05d2\u05d9 \u05e7\u05e9\u05e8 \u05d0\u05d7\u05e8\u05d9\u05dd","relationship_type_group_work":"\u05e7\u05e9\u05e8\u05d9 \u05e2\u05d1\u05d5\u05d3\u05d4","relationship_type_inlovewith":"\u05de\u05d0\u05d5\u05d4\u05d1","relationship_type_inlovewith_female":"\u05de\u05d0\u05d5\u05d4\u05d1\u05ea","relationship_type_inlovewith_female_with_name":"\u05de\u05d5\u05e9\u05d0 \u05d0\u05d4\u05d1\u05ea\u05d4 \u05e9\u05dc :name","relationship_type_inlovewith_with_name":"\u05de\u05d5\u05e9\u05d0 \u05d0\u05d4\u05d1\u05ea\u05d5 \u05e9\u05dc :name","relationship_type_lovedby":"\u05e0\u05d0\u05d4\u05d1 \u05e2\u05dc \u05d9\u05d3\u05d9","relationship_type_lovedby_female":"\u05e0\u05d0\u05d4\u05d1\u05ea \u05e2\u05dc \u05d9\u05d3\u05d9","relationship_type_lovedby_female_with_name":"\u05de\u05d0\u05d4\u05d1\u05ea \u05e1\u05d5\u05d3\u05d9\u05ea \u05e9\u05dc :name","relationship_type_lovedby_with_name":"\u05de\u05d0\u05d4\u05d1 \u05e1\u05d5\u05d3\u05d9 \u05e9\u05dc :name","relationship_type_lover":"\u05de\u05d0\u05d4\u05d1","relationship_type_lover_female":"\u05de\u05d0\u05d4\u05d1\u05ea","relationship_type_lover_female_with_name":"\u05de\u05d0\u05d4\u05d1\u05ea \u05e9\u05dc :name","relationship_type_lover_with_name":"\u05de\u05d0\u05d4\u05d1 \u05e9\u05dc :name","relationship_type_mentor":"\u05d7\u05d5\u05e0\u05da","relationship_type_mentor_female":"\u05d7\u05d5\u05e0\u05db\u05ea","relationship_type_mentor_female_with_name":"\u05d7\u05d5\u05e0\u05da \u05e9\u05dc :name","relationship_type_mentor_with_name":"\u05d7\u05d5\u05e0\u05da \u05e9\u05dc :name","relationship_type_nephew":"\u05d0\u05d7\u05d9\u05d9\u05df","relationship_type_nephew_female":"\u05d0\u05d7\u05d9\u05d9\u05e0\u05d9\u05ea","relationship_type_nephew_female_with_name":"\u05d0\u05d7\u05d9\u05d9\u05e0\u05d9\u05ea \u05e9\u05dc :name","relationship_type_nephew_with_name":"\u05d0\u05d7\u05d9\u05d9\u05df \u05e9\u05dc :name","relationship_type_parent":"\u05d0\u05d1\u05d0","relationship_type_parent_female":"\u05d0\u05d9\u05de\u05d0","relationship_type_parent_female_with_name":"\u05d0\u05d9\u05de\u05d0 \u05e9\u05dc :name","relationship_type_parent_with_name":"\u05d0\u05d1\u05d0 \u05e9\u05dc :name","relationship_type_partner":"\u05d1\u05df \u05d6\u05d5\u05d2","relationship_type_partner_female":"\u05d1\u05ea \u05d6\u05d5\u05d2","relationship_type_partner_female_with_name":"\u05d1\u05ea \u05d4\u05d6\u05d5\u05d2 \u05e9\u05dc :name","relationship_type_partner_with_name":"\u05d1\u05df \u05d4\u05d6\u05d5\u05d2 \u05e9\u05dc :name","relationship_type_protege":"\u05d7\u05e0\u05d9\u05da","relationship_type_protege_female":"\u05d7\u05e0\u05d9\u05db\u05d4","relationship_type_protege_female_with_name":"\u05d7\u05e0\u05d9\u05db\u05d4 \u05e9\u05dc :name","relationship_type_protege_with_name":"\u05d7\u05e0\u05d9\u05da \u05e9\u05dc :name","relationship_type_sibling":"\u05d0\u05d7","relationship_type_sibling_female":"\u05d0\u05d7\u05d5\u05ea","relationship_type_sibling_female_with_name":"\u05d0\u05d7\u05d5\u05ea \u05e9\u05dc :name","relationship_type_sibling_with_name":"\u05d0\u05d7 \u05e9\u05dc :name","relationship_type_spouse":"\u05d1\u05e2\u05dc","relationship_type_spouse_female":"\u05d0\u05d9\u05e9\u05d4","relationship_type_spouse_female_with_name":"\u05d0\u05e9\u05ea\u05d5 \u05e9\u05dc :name","relationship_type_spouse_with_name":"\u05d1\u05e2\u05dc\u05d4 \u05e9\u05dc :name","relationship_type_stepchild":"\u05d1\u05df \u05d7\u05d5\u05e8\u05d2","relationship_type_stepchild_female":"\u05d1\u05ea \u05d7\u05d5\u05e8\u05d2\u05ea","relationship_type_stepchild_female_with_name":"\u05d1\u05ea \u05d7\u05d5\u05e8\u05d2\u05ea \u05e9\u05dc :name","relationship_type_stepchild_with_name":"\u05d1\u05df \u05d7\u05d5\u05e8\u05d2 \u05e9\u05dc :name","relationship_type_stepparent":"\u05d0\u05d1 \u05d7\u05d5\u05e8\u05d2","relationship_type_stepparent_female":"\u05d0\u05dd \u05d7\u05d5\u05e8\u05d2\u05ea","relationship_type_stepparent_female_with_name":"\u05d0\u05dd \u05d7\u05d5\u05e8\u05d2\u05ea \u05e9\u05dc :name","relationship_type_stepparent_with_name":"\u05d0\u05d1 \u05d7\u05d5\u05e8\u05d2 \u05e9\u05dc :name","relationship_type_subordinate":"\u05db\u05e4\u05d5\u05e3","relationship_type_subordinate_female":"\u05db\u05e4\u05d5\u05e4\u05d4","relationship_type_subordinate_female_with_name":"\u05db\u05e4\u05d5\u05e4\u05d4 \u05dc:name","relationship_type_subordinate_with_name":"\u05db\u05e4\u05d5\u05e3 \u05dc:name","relationship_type_uncle":"\u05d3\u05d5\u05d3","relationship_type_uncle_female":"\u05d3\u05d5\u05d3\u05d4","relationship_type_uncle_female_with_name":"\u05d3\u05d5\u05d3\u05d4 \u05e9\u05dc :name","relationship_type_uncle_with_name":"\u05d3\u05d5\u05d3 \u05e9\u05dc :name","remove":"\u05d4\u05e1\u05e8\u05d4","retry":"\u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1","revoke":"\u05e9\u05dc\u05d9\u05dc\u05d4","save":"\u05e9\u05de\u05d9\u05e8\u05d4","save_close":"\u05e9\u05de\u05d9\u05e8\u05d4 \u05d5\u05e1\u05d2\u05d9\u05e8\u05d4","today":"\u05d4\u05d9\u05d5\u05dd","type":"\u05e1\u05d5\u05d2","unknown":"\u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2 \u05dc\u05d9","update":"\u05e2\u05d3\u05db\u05d5\u05df","upgrade":"\u05d9\u05e9 \u05dc\u05e9\u05d3\u05e8\u05d2 \u05db\u05d3\u05d9 \u05dc\u05e9\u05d7\u05e8\u05e8","upload":"\u05d4\u05e2\u05dc\u05d0\u05d4","verify":"\u05d0\u05d9\u05de\u05d5\u05ea","weather_clear-day":"\u05d9\u05d5\u05dd \u05d1\u05d4\u05d9\u05e8","weather_clear-night":"\u05dc\u05d9\u05dc\u05d4 \u05d1\u05d4\u05d9\u05e8","weather_cloudy":"\u05de\u05e2\u05d5\u05e0\u05df","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"\u05de\u05d6\u05d2 \u05d0\u05d5\u05d5\u05d9\u05e8 \u05e0\u05d5\u05db\u05d7\u05d9","weather_fog":"\u05e2\u05e8\u05e4\u05dc","weather_partly-cloudy-day":"\u05d9\u05d5\u05dd \u05de\u05e2\u05d5\u05e0\u05df \u05d7\u05dc\u05e7\u05d9\u05ea","weather_partly-cloudy-night":"\u05dc\u05d9\u05dc\u05d4 \u05de\u05e2\u05d5\u05e0\u05df \u05d7\u05dc\u05e7\u05d9\u05ea","weather_rain":"\u05d2\u05e9\u05dd","weather_sleet":"\u05d2\u05e9\u05dd \u05e9\u05dc\u05d2","weather_snow":"\u05e9\u05dc\u05d2","weather_wind":"\u05e8\u05d5\u05d7","with":"\u05e2\u05dd","yes":"\u05db\u05df","yesterday":"\u05d0\u05ea\u05de\u05d5\u05dc","zoom":"\u05ea\u05e7\u05e8\u05d9\u05d1"},"auth":{"2fa_one_time_password":"\u05e7\u05d5\u05d3 \u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_otp_help":"\u05d9\u05e9 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05d0\u05ea \u05d9\u05d9\u05e9\u05d5\u05de\u05d5\u05df \u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05e9\u05dc\u05da \u05d5\u05dc\u05d4\u05e2\u05ea\u05d9\u05e7 \u05d0\u05ea \u05d4\u05e7\u05d5\u05d3","2fa_recuperation_code":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05e7\u05d5\u05d3 \u05d4\u05e9\u05d7\u05d6\u05d5\u05e8 \u05dc\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_title":"\u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_wrong_validation":"\u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05e0\u05db\u05e9\u05dc.","back_homepage":"\u05d7\u05d6\u05e8\u05d4 \u05dc\u05d3\u05e3 \u05d4\u05d1\u05d9\u05ea","button_remember":"\u05dc\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05dd \u05e9\u05dc\u05d9","change_language":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05d4\u05e9\u05e4\u05d4 \u05dc:lang","change_language_title":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05e9\u05e4\u05d4:","confirmation_again":"\u05db\u05d3\u05d9 \u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da \u05e0\u05d0 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05db\u05d0\u05df<\/a>.","confirmation_check":"\u05d1\u05d8\u05e8\u05dd \u05d4\u05de\u05e9\u05da \u05d4\u05ea\u05d4\u05dc\u05d9\u05da, \u05e0\u05d0 \u05dc\u05d7\u05e4\u05e9 \u05d0\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d1\u05ea\u05d9\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da.","confirmation_fresh":"\u05e0\u05e9\u05dc\u05d7 \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d0\u05d9\u05de\u05d5\u05ea \u05d8\u05e8\u05d9 \u05dc\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da.","confirmation_request_another":"\u05d0\u05dd \u05dc\u05d0 \u05e7\u05d9\u05d1\u05dc\u05ea \u05d0\u05ea \u05d4\u05d4\u05d5\u05d3\u05e2\u05d4 \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05d9\u05e9 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05db\u05d0\u05df \u05db\u05d3\u05d9 \u05dc\u05d1\u05e7\u05e9 \u05d0\u05d7\u05ea \u05e0\u05d5\u05e1\u05e4\u05ea<\/a>.","confirmation_title":"\u05d0\u05d9\u05de\u05d5\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da","create_account":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05d4\u05e8\u05d0\u05e9\u05d5\u05df \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d4\u05e8\u05e9\u05de\u05d4<\/a>","email":"\u05d3\u05d5\u05d0\u05f4\u05dc","email_change_current_email":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea:","email_change_new":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \u05d7\u05d3\u05e9\u05d4","email_change_title":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da","email_changed":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da \u05d4\u05d5\u05d7\u05dc\u05e4\u05d4. \u05e0\u05d0 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d1\u05ea\u05d9\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05dc\u05d0\u05de\u05ea \u05d0\u05d5\u05ea\u05d4.","failed":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05d6\u05d4\u05d5\u05ea \u05d4\u05d0\u05dc\u05d4 \u05d0\u05d9\u05e0\u05dd \u05ea\u05d5\u05d0\u05de\u05d9\u05dd \u05d0\u05ea \u05e8\u05d9\u05e9\u05d5\u05de\u05d9\u05e0\u05d5.","login":"\u05db\u05e0\u05d9\u05e1\u05d4","login_again":"\u05e0\u05d0 \u05dc\u05d4\u05d9\u05db\u05e0\u05e1 \u05dc\u05d7\u05e9\u05d1\u05d5\u05e0\u05da \u05e4\u05e2\u05dd \u05e0\u05d5\u05e1\u05e4\u05ea","login_to_account":"\u05db\u05e0\u05d9\u05e1\u05d4 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","login_with_recovery":"\u05db\u05e0\u05d9\u05e1\u05d4 \u05e2\u05dd \u05e7\u05d5\u05d3 \u05e9\u05d7\u05d6\u05d5\u05e8","mfa_auth_otp":"\u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05dd \u05d4\u05d4\u05ea\u05e7\u05df \u05e9\u05dc\u05da \u05dc\u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","mfa_auth_webauthn":"\u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05dd \u05de\u05e4\u05ea\u05d7 \u05d0\u05d1\u05d8\u05d7\u05d4 (WebAuthn)","not_authorized":"\u05d0\u05d9\u05df \u05dc\u05da \u05d4\u05e8\u05e9\u05d0\u05d4 \u05dc\u05d4\u05e8\u05d9\u05e5 \u05d0\u05ea \u05d4\u05e4\u05e2\u05d5\u05dc\u05d4 \u05d4\u05d6\u05d0\u05ea","password":"\u05e1\u05e1\u05de\u05d4","password_forget":"\u05e9\u05db\u05d7\u05ea \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05e9\u05dc\u05da?","password_reset":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05e1\u05e1\u05de\u05d4 \u05e9\u05dc\u05da","password_reset_action":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05e1\u05de\u05d4","password_reset_email":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc","password_reset_email_content":"\u05d9\u05e9 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05db\u05d0\u05df \u05db\u05d3\u05d9 \u05dc\u05d0\u05e4\u05e1 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05e9\u05dc\u05da:","password_reset_password":"\u05e1\u05e1\u05de\u05d4","password_reset_password_confirm":"\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05e1\u05e1\u05de\u05d4","password_reset_send_link":"\u05e9\u05dc\u05d9\u05d7\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8 \u05dc\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05e1\u05e1\u05de\u05d4","password_reset_title":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05e1\u05de\u05d4","recovery":"\u05e7\u05d5\u05d3 \u05e9\u05d7\u05d6\u05d5\u05e8","register_action":"\u05e8\u05d9\u05e9\u05d5\u05dd","register_create_account":"\u05e2\u05dc\u05d9\u05da \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d7\u05e9\u05d1\u05d5\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d5\u05e0\u05d9\u05e7\u05d4","register_email":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \u05ea\u05e7\u05e0\u05d9\u05ea","register_email_example":"you@home","register_firstname":"\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9","register_firstname_example":"\u05dc\u05de\u05e9\u05dc: \u05d9\u05e8\u05d5\u05df","register_invitation_email":"\u05de\u05d8\u05e2\u05de\u05d9 \u05d0\u05d1\u05d8\u05d7\u05d4, \u05e0\u05d0 \u05dc\u05e6\u05d9\u05d9\u05df \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc \u05de\u05d9 \u05e9\u05d4\u05d6\u05de\u05d9\u05df \u05d0\u05d5\u05ea\u05da \u05dc\u05d4\u05e6\u05d8\u05e8\u05e3 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05d4\u05d6\u05d4. \u05d4\u05de\u05d9\u05d3\u05e2 \u05d4\u05d6\u05d4 \u05de\u05d5\u05e4\u05d9\u05e2 \u05d1\u05d4\u05d5\u05d3\u05e2\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d4.","register_lastname":"\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4","register_lastname_example":"\u05dc\u05de\u05e9\u05dc: \u05db\u05d4\u05df","register_login":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d9\u05db\u05e0\u05e1<\/a> \u05d0\u05dd \u05db\u05d1\u05e8 \u05d9\u05e9 \u05dc\u05da \u05d7\u05e9\u05d1\u05d5\u05df.","register_password":"\u05e1\u05e1\u05de\u05d4","register_password_confirmation":"\u05d0\u05d9\u05de\u05d5\u05ea \u05e1\u05e1\u05de\u05d4","register_password_example":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05e1\u05e1\u05de\u05d4 \u05de\u05d0\u05d5\u05d1\u05d8\u05d7\u05ea","register_policy":"\u05d4\u05e8\u05e9\u05de\u05d4 \u05de\u05d0\u05de\u05ea\u05ea \u05e9\u05e7\u05e8\u05d0\u05ea \u05d5\u05d4\u05e1\u05db\u05de\u05ea \u05dc\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea<\/a> \u05d5\u05dc\u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05de\u05d5\u05e9<\/a> \u05e9\u05dc\u05e0\u05d5.","register_title_create":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05d7\u05e9\u05d1\u05d5\u05df \u05d0\u05e6\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4","register_title_welcome":"\u05d1\u05e8\u05d5\u05da \u05d1\u05d5\u05d0\u05da \u05dc\u05e2\u05d5\u05ea\u05e7 \u05d4\u05d7\u05d3\u05e9 \u05e9\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05e9\u05d6\u05d4 \u05e2\u05ea\u05d4 \u05d4\u05ea\u05e7\u05e0\u05ea","signup":"\u05d4\u05e8\u05e9\u05de\u05d4","signup_disabled":"\u05d4\u05d4\u05e8\u05e9\u05de\u05d4 \u05de\u05d5\u05e9\u05d1\u05ea\u05ea \u05db\u05e8\u05d2\u05e2","signup_error":"\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05e8\u05d9\u05e9\u05d5\u05dd \u05d4\u05de\u05e9\u05ea\u05de\u05e9","signup_no_account":"\u05d0\u05d9\u05df \u05dc\u05da \u05d7\u05e9\u05d1\u05d5\u05df?","throttle":"\u05d1\u05d5\u05e6\u05e2\u05d5 \u05d9\u05d5\u05ea\u05e8 \u05de\u05d3\u05d9 \u05e0\u05d9\u05e1\u05d9\u05d5\u05e0\u05d5\u05ea \u05db\u05e0\u05d9\u05e1\u05d4 \u05db\u05d5\u05e9\u05dc\u05d9\u05dd. \u05e0\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1 \u05d1\u05e2\u05d5\u05d3 :seconds \u05e9\u05e0\u05d9\u05d5\u05ea.","use_recovery":"\u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d2\u05dd \u05d1\u05e7\u05d5\u05d3 \u05e9\u05d7\u05d6\u05d5\u05e8<\/a>"},"changelog":{"note":"\u05d4\u05e2\u05e8\u05d4: \u05dc\u05e8\u05d5\u05e2 \u05d4\u05de\u05d6\u05dc, \u05e2\u05de\u05d5\u05d3 \u05d6\u05d4 \u05d4\u05d5\u05d0 \u05d1\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05d1\u05dc\u05d1\u05d3.","title":"\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05de\u05d5\u05e6\u05e8"},"dashboard":{"dashboard_blank_cta":"\u05e0\u05d0 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05e8\u05d0\u05e9\u05d5\u05df \u05e9\u05dc\u05da","dashboard_blank_description":"\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d4\u05d5\u05d0 \u05d4\u05de\u05e7\u05d5\u05dd \u05dc\u05d0\u05e8\u05d2\u05df \u05d0\u05ea \u05db\u05dc \u05d4\u05de\u05d2\u05e2 \u05d4\u05d7\u05d1\u05e8\u05ea\u05d9 \u05e9\u05dc\u05da \u05e2\u05dd \u05d0\u05dc\u05d5 \u05e9\u05d0\u05db\u05e4\u05ea \u05dc\u05da \u05de\u05d4\u05dd.","dashboard_blank_illustration":"\u05e6\u05d9\u05d5\u05e8 \u05de\u05d0\u05ea Freepik<\/a>","dashboard_blank_title":"\u05d1\u05e8\u05d5\u05da \u05d1\u05d5\u05d0\u05da \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da!","debts_you_owe":"\u05d7\u05d5\u05d1\u05da \u05d4\u05d5\u05d0","notes_title":"\u05d0\u05d9\u05df \u05dc\u05da \u05d4\u05e2\u05e8\u05d5\u05ea \u05e9\u05e1\u05d9\u05de\u05e0\u05ea \u05d1\u05db\u05d5\u05db\u05d1 \u05e2\u05d3\u05d9\u05d9\u05df.","product_changes":"\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05de\u05d5\u05e6\u05e8","product_view_details":"\u05d4\u05e6\u05d2\u05ea \u05e4\u05e8\u05d8\u05d9\u05dd","reminders_next_months":"\u05d0\u05d9\u05e8\u05d5\u05e2\u05d9\u05dd \u05d1\u05be3 \u05d4\u05d7\u05d5\u05d3\u05e9\u05d9\u05dd \u05d4\u05e7\u05e8\u05d5\u05d1\u05d9\u05dd","reminders_none":"\u05d0\u05d9\u05df \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05dc\u05d7\u05d5\u05d3\u05e9 \u05d4\u05d6\u05d4.","statistics_activities":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea","statistics_contacts":"\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","statistics_gifts":"\u05de\u05ea\u05e0\u05d5\u05ea","tab_calls_blank":"\u05dc\u05d0 \u05ea\u05d9\u05e2\u05d3\u05ea \u05d0\u05e3 \u05e9\u05d9\u05d7\u05d4 \u05e2\u05d3\u05d9\u05d9\u05df.","tab_debts":"\u05d7\u05d5\u05d1\u05d5\u05ea","tab_debts_blank":"\u05dc\u05d0 \u05ea\u05d9\u05e2\u05d3\u05ea \u05d7\u05d5\u05d1\u05d5\u05ea \u05e2\u05d3\u05d9\u05d9\u05df.","tab_favorite_notes":"\u05d4\u05e2\u05e8\u05d5\u05ea \u05de\u05d5\u05e2\u05d3\u05e4\u05d5\u05ea","tab_recent_calls":"\u05e9\u05d9\u05d7\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea","tab_tasks":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea","tab_tasks_blank":"\u05d0\u05d9\u05df \u05dc\u05da \u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e2\u05d3\u05d9\u05d9\u05df.","task_add_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05e9\u05d9\u05de\u05d4","tasks_add_note":"\u05e0\u05d0 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05e2\u05dc Enter<\/kbd> \u05db\u05d3\u05d9 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d4.","tasks_add_task_placeholder":"\u05de\u05d4 \u05de\u05d4\u05d5\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d4 \u05d4\u05d6\u05d0\u05ea?","tasks_tab_your_contacts":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e9\u05e7\u05e9\u05d5\u05e8\u05d5\u05ea \u05dc\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da","tasks_tab_your_tasks":"\u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e9\u05dc\u05da"},"format":{"full_date_year":"d \u05d1F, Y","full_hour":"H.i","full_month":"F","full_month_year":"F Y","short_date":"d \u05d1M","short_date_year":"d \u05d1M, Y","short_date_year_time":"d \u05d1M,\u200f Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e8\u05e9\u05d5\u05de\u05d4 \u05d4\u05d6\u05d0\u05ea \u05d1\u05d9\u05d5\u05de\u05df?","entry_delete_success":"\u05d4\u05e8\u05e9\u05d5\u05de\u05d4 \u05d1\u05d9\u05d5\u05de\u05df \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","journal_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e8\u05e9\u05d5\u05de\u05d4 \u05d1\u05d9\u05d5\u05de\u05df","journal_add_comment":"\u05de\u05e2\u05e0\u05d9\u05d9\u05df \u05d0\u05d5\u05ea\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d4\u05e2\u05e8\u05d4 (\u05e8\u05e9\u05d5\u05ea)?","journal_add_cta":"\u05e9\u05de\u05d9\u05e8\u05d4","journal_add_date":"\u05ea\u05d0\u05e8\u05d9\u05da","journal_add_post":"\u05e8\u05e9\u05d5\u05de\u05d4","journal_add_title":"\u05db\u05d5\u05ea\u05e8\u05ea (\u05e8\u05e9\u05d5\u05ea)","journal_blank_cta":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05e8\u05e9\u05d5\u05de\u05ea \u05d4\u05d9\u05d5\u05de\u05df \u05d4\u05e8\u05d0\u05e9\u05d5\u05e0\u05d4 \u05e9\u05dc\u05da","journal_blank_description":"\u05d4\u05d9\u05d5\u05de\u05df \u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05da \u05dc\u05db\u05ea\u05d5\u05d1 \u05d0\u05d9\u05e8\u05d5\u05e2\u05d9\u05dd \u05e9\u05e2\u05d1\u05e8\u05d5 \u05e2\u05dc\u05d9\u05da \u05d5\u05dc\u05d6\u05db\u05d5\u05e8 \u05d0\u05d5\u05ea\u05dd.","journal_come_back":"\u05ea\u05d5\u05d3\u05d4. \u05de\u05d6\u05de\u05d9\u05e0\u05d9\u05dd \u05d0\u05d5\u05ea\u05da \u05dc\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d9\u05d5\u05de\u05da \u05d2\u05dd \u05de\u05d7\u05e8.","journal_created_at":"\u05e0\u05d5\u05e6\u05e8 \u05d1\u05be{date}","journal_created_automatically":"\u05e0\u05d5\u05e6\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea","journal_description":"\u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1\u05da: \u05d1\u05d9\u05d5\u05de\u05df \u05de\u05d5\u05e4\u05d9\u05e2\u05d9\u05dd \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d9\u05d3\u05e0\u05d9\u05d5\u05ea \u05dc\u05e6\u05d3 \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05d5\u05ea \u05db\u05d2\u05d5\u05df \u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea \u05e9\u05e7\u05d9\u05d9\u05de\u05ea \u05e2\u05dd \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da. \u05d1\u05e2\u05d5\u05d3 \u05e9\u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05d7\u05d5\u05e7 \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d1\u05d9\u05d5\u05de\u05df \u05d9\u05d3\u05e0\u05d9\u05ea, \u05d9\u05d4\u05d9\u05d4 \u05e2\u05dc\u05d9\u05da \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d1\u05e2\u05de\u05d5\u05d3 \u05e9\u05dc \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8.","journal_edit":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e8\u05e9\u05d5\u05de\u05d4 \u05d1\u05d9\u05d5\u05de\u05df","journal_empty":"\u05d9\u05d5\u05de\u05df \u05e8\u05d9\u05e7","journal_entry_rate":"\u05d3\u05d9\u05e8\u05d2\u05ea \u05d0\u05ea \u05d4\u05d9\u05d5\u05dd \u05e9\u05dc\u05da.","journal_entry_type_activity":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","journal_entry_type_journal":"\u05e8\u05e9\u05d5\u05de\u05d4 \u05d1\u05d9\u05d5\u05de\u05df","journal_rate":"\u05d0\u05d9\u05da \u05e2\u05d1\u05e8 \u05e2\u05dc\u05d9\u05da \u05d4\u05d9\u05d5\u05dd? \u05e0\u05d9\u05ea\u05df \u05dc\u05d3\u05e8\u05d2 \u05e4\u05e2\u05dd \u05d1\u05d9\u05d5\u05dd.","journal_show_comment":"\u05d4\u05e6\u05d2\u05ea \u05d4\u05e2\u05e8\u05d4"},"logs":{"contact_log_contact_created":"\u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05e0\u05d5\u05e6\u05e8.","contact_log_contact_description_cleared":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e0\u05de\u05d7\u05e7.","contact_log_contact_description_updated":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e2\u05d5\u05d3\u05db\u05df.","contact_log_contact_work_updated":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e2\u05d5\u05d3\u05db\u05e0\u05d5.","settings_log_company_created":"\u05e0\u05d5\u05e6\u05e8\u05d4 \u05d7\u05d1\u05e8\u05d4 \u05d1\u05e9\u05dd :name.","settings_log_contact_created_with_name":"\u05d4\u05d5\u05e1\u05e4\u05d4 \u05e9\u05dc :name \u05db\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8.","settings_log_contact_description_cleared_with_name":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e9\u05dc :name \u05e0\u05de\u05d7\u05e7.","settings_log_contact_description_updated_with_name":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e9\u05dc :name \u05e2\u05d5\u05d3\u05db\u05df.","settings_log_contact_work_updated_with_name":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc :name \u05e2\u05d5\u05d3\u05db\u05e0\u05d5."},"mail":{"comment":"\u05d4\u05e2\u05e8\u05d4: :comment","confirmation_email_bottom":"\u05d0\u05dd \u05dc\u05d0 \u05d9\u05e6\u05e8\u05ea \u05d7\u05e9\u05d1\u05d5\u05df, \u05dc\u05d0 \u05e0\u05d3\u05e8\u05e9\u05d5\u05ea \u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea.","confirmation_email_button":"\u05d0\u05d9\u05de\u05d5\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc","confirmation_email_intro":"\u05db\u05d3\u05d9 \u05dc\u05d0\u05de\u05ea \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da \u05e0\u05d0 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05e2\u05dc \u05d4\u05db\u05e4\u05ea\u05d5\u05e8 \u05e9\u05dc\u05d4\u05dc\u05df","confirmation_email_title":"\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u2013 \u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc","footer_contact_info":"\u05d4\u05d5\u05e1\u05e4\u05d4, \u05e6\u05e4\u05d9\u05d9\u05d4, \u05d4\u05e9\u05dc\u05de\u05d4 \u05d5\u05e9\u05d9\u05e0\u05d5\u05d9 \u05de\u05d9\u05d3\u05e2 \u05e2\u05dc \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d6\u05d4:","footer_contact_info2":"\u05d4\u05e6\u05d2\u05ea \u05d4\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05e9\u05dc :profile","footer_contact_info2_link":"\u05d4\u05e6\u05d2\u05ea \u05d4\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05e9\u05dc :name\u200f :url","for":"\u05e2\u05d1\u05d5\u05e8: :name","greetings":"\u05d4\u05d9\u05d9 :username","invitation_button":"\u05e7\u05d1\u05dc\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d4","invitation_expiration":"\u05d4\u05e7\u05d9\u05e9\u05d5\u05e8 \u05d9\u05e4\u05d5\u05d2 \u05ea\u05d5\u05da :count \u05d9\u05de\u05d9\u05dd.","invitation_intro":"\u05d4\u05d5\u05d6\u05de\u05e0\u05ea \u05e2\u05dc \u05d9\u05d3\u05d9 :name (:email) \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d5\u05e0\u05d9\u05e7\u05d4, \u05db\u05dc\u05d9 \u05e0\u05d7\u05de\u05d3 \u05dc\u05e0\u05d9\u05d4\u05d5\u05dc \u05e7\u05e9\u05e8\u05d9\u05dd \u05d0\u05d9\u05e9\u05d9\u05d9\u05dd.","invitation_link":"\u05db\u05d3\u05d9 \u05dc\u05e7\u05d1\u05dc \u05d0\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d4, \u05d9\u05e9 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05e2\u05dc \u05d4\u05e7\u05d9\u05e9\u05d5\u05e8 \u05dc\u05d4\u05dc\u05df:","invitation_title":"\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u2013 \u05e7\u05d9\u05d1\u05dc\u05ea \u05d4\u05d6\u05de\u05e0\u05d4 \u05de\u05d0\u05ea :name","notification_description":"\u05d1\u05e2\u05d5\u05d3 :count \u05d9\u05de\u05d9\u05dd (\u05d1\u05be:date), \u05d9\u05ea\u05e8\u05d7\u05e9 \u05d4\u05d0\u05d9\u05e8\u05d5\u05e2 \u05d4\u05d1\u05d0:","notification_subject_line":"\u05d9\u05e9 \u05dc\u05da \u05d0\u05d9\u05e8\u05d5\u05e2 \u05e7\u05e8\u05d1","notifications_footer":"\u05d0\u05dd \u05e0\u05ea\u05e7\u05dc\u05ea \u05d1\u05d1\u05e2\u05d9\u05d4 \u05d1\u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc \u05d4\u05db\u05e4\u05ea\u05d5\u05e8 \u201e:actionText\u201d, \u05d9\u05e9 \u05dc\u05d4\u05e2\u05ea\u05d9\u05e7 \u05d5\u05dc\u05d4\u05d3\u05d1\u05d9\u05e7 \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05dc\u05d4\u05dc\u05df \u05dc\u05ea\u05d5\u05da \u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da: [:actionURL](:actionURL)","notifications_hello":"\u05e9\u05dc\u05d5\u05dd!","notifications_regards":"\u05d1\u05d1\u05e8\u05db\u05d4","notifications_rights":"\u05db\u05dc \u05d4\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea","notifications_whoops":"\u05d0\u05d5\u05e4\u05e1!","password_reset_bottom":"\u05d0\u05dd \u05dc\u05d0 \u05d1\u05d9\u05e7\u05e9\u05ea \u05dc\u05d0\u05e4\u05e1 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4, \u05dc\u05d0 \u05e0\u05d3\u05e8\u05e9\u05d5\u05ea \u05e4\u05e2\u05d5\u05dc\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea.","password_reset_button":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05e1\u05de\u05d4","password_reset_expiration":"\u05e7\u05d9\u05e9\u05d5\u05e8 \u05d6\u05d4 \u05dc\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05e1\u05e1\u05de\u05d4 \u05d9\u05e4\u05d5\u05d2 \u05d1\u05e2\u05d5\u05d3 :count \u05d3\u05e7\u05d5\u05ea.","password_reset_intro":"\u05d4\u05d5\u05d3\u05e2\u05d4 \u05d6\u05d5 \u05e0\u05e9\u05dc\u05d7\u05d4 \u05d0\u05dc\u05d9\u05da \u05db\u05d9 \u05d4\u05ea\u05e7\u05d1\u05dc\u05d4 \u05d1\u05e7\u05e9\u05d4 \u05dc\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05e1\u05e1\u05de\u05d4 \u05d1\u05d7\u05e9\u05d1\u05d5\u05e0\u05da.","password_reset_title":"\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 - \u05d4\u05ea\u05e8\u05d0\u05ea \u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05e1\u05de\u05d4","stay_in_touch_subject_description":"{1}\u05d1\u05d9\u05e7\u05e9\u05ea \u05dc\u05e7\u05d1\u05dc \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e7\u05e9\u05e8 \u05e2\u05dd :name \u05db\u05dc \u05d9\u05d5\u05dd.|{2}\u05d1\u05d9\u05e7\u05e9\u05ea \u05dc\u05e7\u05d1\u05dc \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e7\u05e9\u05e8 \u05e2\u05dd :name \u05db\u05dc \u05d9\u05d5\u05de\u05d9\u05d9\u05dd.|{3,n}\u05d1\u05d9\u05e7\u05e9\u05ea \u05dc\u05e7\u05d1\u05dc \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e7\u05e9\u05e8 \u05e2\u05dd :name \u05db\u05dc :frequency \u05d9\u05de\u05d9\u05dd.","stay_in_touch_subject_line":"\u05dc\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05e7\u05e9\u05e8 \u05e2\u05dd :name","subject_line":"\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e2\u05d1\u05d5\u05e8 :contact","want_reminded_of":"\u05e8\u05e6\u05d9\u05ea \u05e9\u05d0\u05d6\u05db\u05d9\u05e8 \u05dc\u05da \u05d0\u05ea :reason"},"pagination":{"next":"\u05d4\u05d1\u05d0 \u276f","previous":"\u276e \u05d4\u05e7\u05d5\u05d3\u05dd"},"passwords":{"changed":"\u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05d5\u05d7\u05dc\u05e4\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","invalid":"\u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea \u05e9\u05d4\u05e7\u05dc\u05d3\u05ea \u05e9\u05d2\u05d5\u05d9\u05d4.","reset":"\u05d4\u05e1\u05e1\u05de\u05d4 \u05e9\u05dc\u05da \u05d0\u05d5\u05e4\u05e1\u05d4!","sent":"\u05d0\u05dd \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05d4\u05d6\u05e0\u05ea \u05e7\u05d9\u05d9\u05de\u05ea \u05d1\u05e8\u05d9\u05e9\u05d5\u05de\u05d9\u05dd \u05e9\u05dc\u05e0\u05d5, \u05e0\u05e9\u05dc\u05d7 \u05d0\u05dc\u05d9\u05da \u05e7\u05d9\u05e9\u05d5\u05e8 \u05dc\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05e1\u05e1\u05de\u05d4.","throttled":"\u05e0\u05d0 \u05dc\u05d4\u05de\u05ea\u05d9\u05df \u05dc\u05e4\u05e0\u05d9 \u05d1\u05d9\u05e6\u05d5\u05e2 \u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05e0\u05d5\u05e1\u05e3.","token":"\u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05d6\u05d0\u05ea \u05e9\u05d2\u05d5\u05d9.","user":"\u05d0\u05dd \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05d4\u05d6\u05e0\u05ea \u05e7\u05d9\u05d9\u05de\u05ea \u05d1\u05e8\u05d9\u05e9\u05d5\u05de\u05d9\u05dd \u05e9\u05dc\u05e0\u05d5, \u05e0\u05e9\u05dc\u05d7 \u05d0\u05dc\u05d9\u05da \u05e7\u05d9\u05e9\u05d5\u05e8 \u05dc\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05e1\u05e1\u05de\u05d4."},"people":{"activities_activity":"\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","activities_add_activity":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","activities_add_category":"\u05e6\u05d9\u05d5\u05df \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4","activities_add_date_occured":"\u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \u05d1\u2026","activities_add_emotions":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e8\u05d2\u05e9\u05d5\u05ea","activities_add_emotions_title":"\u05de\u05e2\u05e0\u05d9\u05d9\u05df \u05d0\u05d5\u05ea\u05da \u05dc\u05ea\u05e2\u05d3 \u05d0\u05d9\u05da \u05d4\u05e8\u05d2\u05e9\u05ea \u05d1\u05de\u05d4\u05dc\u05da \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea? (\u05e8\u05e9\u05d5\u05ea)","activities_add_error":"\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05d4\u05d5\u05e1\u05e4\u05ea \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","activities_add_more_details":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e4\u05e8\u05d8\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd","activities_add_participants":"\u05de\u05d9, \u05dc\u05de\u05e2\u05d8 {name}, \u05d4\u05e9\u05ea\u05ea\u05e3 \u05d1\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05d6\u05d0\u05ea? (\u05e8\u05e9\u05d5\u05ea)","activities_add_participants_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05e9\u05ea\u05ea\u05e4\u05d9\u05dd","activities_add_pick_activity":"(\u05e8\u05e9\u05d5\u05ea) \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e1\u05d5\u05d5\u05d2 \u05d0\u05ea \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05d6\u05d0\u05ea? \u05dc\u05d0 \u05d7\u05d5\u05d1\u05d4 \u05d0\u05da \u05e1\u05d9\u05d5\u05d5\u05d2 \u05d9\u05d0\u05e4\u05e9\u05e8 \u05dc\u05da \u05dc\u05e2\u05e8\u05d5\u05da \u05e1\u05d8\u05d8\u05d9\u05e1\u05d8\u05d9\u05e7\u05d4 \u05d1\u05d4\u05de\u05e9\u05da","activities_add_success":"\u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","activities_add_title":"\u05de\u05d4 \u05e2\u05e9\u05d9\u05ea \u05e2\u05dd {name}?","activities_blank_add_activity":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","activities_blank_title":"\u05de\u05e2\u05e7\u05d1 \u05d0\u05d7\u05e8 \u05de\u05d4 \u05e9\u05e2\u05e9\u05d9\u05ea \u05e2\u05dd {name} \u05d1\u05e2\u05d1\u05e8 \u05d5\u05e2\u05dc \u05de\u05d4 \u05d3\u05d9\u05d1\u05e8\u05ea\u05dd","activities_delete_success":"\u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","activities_item_information":":Activity. \u05d4\u05ea\u05e7\u05d9\u05d9\u05de\u05d4 \u05d1\u05be:date","activities_list_category":"\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4:","activities_list_date":"\u05de\u05d5\u05e2\u05d3 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","activities_list_emotions":"\u05e8\u05d2\u05e9\u05d5\u05ea \u05e9\u05d4\u05e8\u05d2\u05e9\u05ea:","activities_list_participants":"\u05de\u05e9\u05ea\u05ea\u05e4\u05d9\u05dd:","activities_profile_number_occurences":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d0\u05d7\u05ea|:value \u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea","activities_profile_subtitle":"\u05ea\u05d9\u05e2\u05d3\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d0\u05d7\u05ea \u05e2\u05dd :name \u05d1\u05e1\u05da \u05d4\u05db\u05d5\u05dc \u05d5\u05be:activities_last_twelve_months \u05d1\u05be12 \u05d4\u05d7\u05d5\u05d3\u05e9\u05d9\u05dd \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd \u05e2\u05d3 \u05db\u05d4.|\u05ea\u05d9\u05e2\u05d3\u05ea :total_activities \u05e2\u05dd :name \u05d1\u05e1\u05da \u05d4\u05db\u05d5\u05dc \u05d5\u05be:activities_last_twelve_months \u05d1\u05be12 \u05d4\u05d7\u05d5\u05d3\u05e9\u05d9\u05dd \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd \u05e2\u05d3 \u05db\u05d4.","activities_profile_title":"\u05d3\u05d5\u05d7 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8\u05da \u05d5\u05e2\u05d1\u05d5\u05e8 :name","activities_profile_year_summary":"\u05d4\u05e0\u05d4 \u05de\u05d4 \u05e9\u05e2\u05e9\u05d9\u05ea\u05dd \u05d9\u05d7\u05d3 \u05d1\u05be:year","activities_profile_year_summary_activity_types":"\u05dc\u05d4\u05dc\u05df \u05e4\u05d9\u05dc\u05d5\u05d7 \u05e9\u05dc \u05e1\u05d5\u05d2\u05d9 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea \u05d0\u05d5\u05ea\u05df \u05d1\u05d9\u05e6\u05e2\u05ea\u05dd \u05d9\u05d7\u05d3\u05d9\u05d5 \u05d1\u05be:year","activities_summary":"\u05e0\u05d0 \u05dc\u05ea\u05d0\u05e8 \u05d0\u05ea \u05d0\u05d5\u05e4\u05df \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","activities_update_success":"\u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","activities_view_activities_report":"\u05d4\u05e6\u05d2\u05ea \u05d3\u05d5\u05d7 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","activities_who_was_involved":"\u05de\u05d9 \u05d4\u05d9\u05d4 \u05de\u05e2\u05d5\u05e8\u05d1?","activity_title":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea","activity_type_ate_at_his_place":"\u05d0\u05db\u05dc\u05ea\u05dd \u05d0\u05e6\u05dc\u05dd","activity_type_ate_at_home":"\u05d0\u05db\u05dc\u05ea\u05dd \u05d1\u05d1\u05d9\u05ea","activity_type_ate_restaurant":"\u05d0\u05db\u05dc\u05ea\u05dd \u05d1\u05de\u05e1\u05e2\u05d3\u05d4","activity_type_category_cultural_activities":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea \u05ea\u05e8\u05d1\u05d5\u05ea\u05d9\u05d5\u05ea","activity_type_category_food":"\u05d0\u05d5\u05db\u05dc","activity_type_category_simple_activities":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea \u05e4\u05e9\u05d5\u05d8\u05d5\u05ea","activity_type_category_sport":"\u05e1\u05e4\u05d5\u05e8\u05d8","activity_type_did_sport_activities_together":"\u05e2\u05e1\u05e7\u05ea\u05dd \u05d1\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05e1\u05e4\u05d5\u05e8\u05d8\u05d9\u05d1\u05d9\u05ea \u05de\u05e9\u05d5\u05ea\u05e4\u05ea","activity_type_just_hung_out":"\u05d1\u05d9\u05dc\u05d5\u05d9 \u05de\u05e9\u05d5\u05ea\u05e3","activity_type_picnicked":"\u05e4\u05d9\u05e7\u05e0\u05d9\u05e7","activity_type_talked_at_home":"\u05d3\u05d9\u05d1\u05e8\u05ea\u05dd \u05d1\u05d1\u05d9\u05ea","activity_type_watched_movie_at_home":"\u05e6\u05e4\u05d9\u05ea\u05dd \u05d1\u05e1\u05e8\u05d8 \u05d1\u05d1\u05d9\u05ea","activity_type_went_bar":"\u05d4\u05dc\u05db\u05ea \u05dc\u05d1\u05e8","activity_type_went_concert":"\u05d4\u05dc\u05db\u05ea\u05dd \u05dc\u05d4\u05d5\u05e4\u05e2\u05d4","activity_type_went_museum":"\u05d4\u05dc\u05db\u05ea\u05dd \u05dc\u05de\u05d5\u05d6\u05d9\u05d0\u05d5\u05df","activity_type_went_play":"\u05d4\u05dc\u05db\u05ea\u05dd \u05dc\u05d4\u05e6\u05d2\u05d4","activity_type_went_theater":"\u05d4\u05dc\u05db\u05ea\u05dd \u05dc\u05ea\u05d9\u05d0\u05d8\u05e8\u05d5\u05df","age_approximate_in_years":"\u05d4\u05d2\u05d9\u05dc \u05d4\u05d5\u05d0 \u05d1\u05e2\u05e8\u05da :age","age_exact_birthdate":"\u05dc\u05d9\u05d3\u05d4 \u05d1\u05be:date","age_exact_in_years":"{1}\u05d1\u05d2\u05d9\u05dc \u05e9\u05e0\u05d4|{2}\u05d1\u05d2\u05d9\u05dc \u05e9\u05e0\u05ea\u05d9\u05d9\u05dd|[3,*]\u05d1\u05d2\u05d9\u05dc :age \u05e9\u05e0\u05d9\u05dd","auditlogs_author":"\u05de\u05d0\u05ea :name \u05d1\u05be:date","auditlogs_breadcrumb":"\u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d4","auditlogs_link":"\u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d4","auditlogs_title":"\u05db\u05dc\u05d4 \u05de\u05d4 \u05e9\u05e7\u05e8\u05d4 \u05dc:name","avatar_adorable_avatar":"\u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d9\u05d9\u05e6\u05d5\u05d2\u05d9\u05ea \u05d4\u05de\u05e7\u05e1\u05d9\u05de\u05d4","avatar_change_title":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d9\u05d9\u05e6\u05d5\u05d2\u05d9\u05ea \u05e9\u05dc\u05da","avatar_crop_new_avatar_photo":"\u05d7\u05d9\u05ea\u05d5\u05da \u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d9\u05d9\u05e6\u05d5\u05d2\u05d9\u05ea \u05d4\u05d7\u05d3\u05e9\u05d4","avatar_current":"\u05dc\u05d4\u05e9\u05d0\u05d9\u05e8 \u05d0\u05ea \u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d9\u05d9\u05e6\u05d5\u05d2\u05d9\u05ea \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea","avatar_default_avatar":"\u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d9\u05d9\u05e6\u05d5\u05d2\u05d9\u05ea \u05db\u05d1\u05e8\u05e8\u05ea \u05de\u05d7\u05d3\u05dc","avatar_gravatar":"\u05d4\u05beGravatar \u05e9\u05de\u05e9\u05d5\u05d9\u05da \u05dc\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4. Gravatar<\/a> \u05d4\u05d9\u05d0 \u05de\u05e2\u05e8\u05db\u05ea \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9\u05ea \u05e9\u05de\u05d0\u05e4\u05e9\u05e8\u05ea \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05e9\u05d9\u05d9\u05da \u05db\u05ea\u05d5\u05d1\u05d5\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \u05dc\u05ea\u05de\u05d5\u05e0\u05d5\u05ea.","avatar_photo":"\u05de\u05ea\u05de\u05d5\u05e0\u05d4 \u05e9\u05d4\u05e2\u05dc\u05d9\u05ea","avatar_question":"\u05d1\u05d0\u05d9\u05d6\u05d5 \u05ea\u05de\u05d5\u05e0\u05d4 \u05d9\u05d9\u05e6\u05d5\u05d2\u05d9\u05ea \u05dc\u05d4\u05e9\u05ea\u05de\u05e9?","birthdate_not_set":"\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05dc\u05d9\u05d3\u05d4 \u05dc\u05d0 \u05d4\u05d5\u05d2\u05d3\u05e8","call_blank_desc":"\u05d4\u05ea\u05e7\u05e9\u05e8\u05ea \u05d0\u05dc {name}","call_blank_title":"\u05de\u05e2\u05e7\u05d1 \u05d0\u05d7\u05e8 \u05e9\u05d9\u05d7\u05d5\u05ea \u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05e9\u05e7\u05d9\u05d9\u05de\u05ea \u05e2\u05dd {name}","call_button":"\u05ea\u05d9\u05e2\u05d5\u05d3 \u05e9\u05d9\u05d7\u05d4","call_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e9\u05d9\u05d7\u05d4 \u05d4\u05d6\u05d0\u05ea?","call_delete_success":"\u05e9\u05d9\u05d7\u05ea \u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","call_emotions":"\u05e8\u05d2\u05e9\u05d5\u05ea:","call_empty_comment":"\u05d0\u05d9\u05df \u05e4\u05e8\u05d8\u05d9\u05dd","call_he_called":"\u05e7\u05d9\u05d1\u05dc\u05ea \u05e9\u05d9\u05d7\u05d4 \u05de\u05d0\u05ea {name}","call_title":"\u05e9\u05d9\u05d7\u05d5\u05ea \u05d8\u05dc\u05e4\u05d5\u05df","call_you_called":"\u05d4\u05ea\u05e7\u05e9\u05e8\u05ea","calls_add_success":"\u05e9\u05d9\u05d7\u05ea \u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05e0\u05e9\u05de\u05e8\u05d4.","contact_address_form_city":"\u05e2\u05d9\u05e8 (\u05e8\u05e9\u05d5\u05ea)","contact_address_form_country":"\u05d0\u05e8\u05e5 (\u05e8\u05e9\u05d5\u05ea)","contact_address_form_latitude":"\u05e8\u05d5\u05d7\u05d1 (\u05de\u05e1\u05e4\u05e8\u05d9\u05dd \u05d1\u05dc\u05d1\u05d3) (\u05e8\u05e9\u05d5\u05ea)","contact_address_form_longitude":"\u05d0\u05d5\u05e8\u05da (\u05de\u05e1\u05e4\u05e8\u05d9\u05dd \u05d1\u05dc\u05d1\u05d3) (\u05e8\u05e9\u05d5\u05ea)","contact_address_form_name":"\u05ea\u05d5\u05d5\u05d9\u05ea (\u05e8\u05e9\u05d5\u05ea)","contact_address_form_postal_code":"\u05de\u05d9\u05e7\u05d5\u05d3 (\u05e8\u05e9\u05d5\u05ea)","contact_address_form_province":"\u05de\u05d7\u05d5\u05d6 (\u05e8\u05e9\u05d5\u05ea)","contact_address_form_street":"\u05e8\u05d7\u05d5\u05d1 (\u05e8\u05e9\u05d5\u05ea)","contact_address_title":"\u05db\u05ea\u05d5\u05d1\u05d5\u05ea","contact_archive":"\u05d4\u05e2\u05d1\u05e8\u05ea \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df","contact_archive_help":"\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05d1\u05d0\u05e8\u05db\u05d9\u05d5\u05df \u05d9\u05d5\u05e4\u05d9\u05e2\u05d5 \u05d1\u05e8\u05e9\u05d9\u05de\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d0\u05da \u05e2\u05d3\u05d9\u05d9\u05df \u05d9\u05d5\u05e4\u05d9\u05e2\u05d5 \u05d1\u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9.","contact_field_label_cell":"\u05e0\u05d9\u05d9\u05d3","contact_field_label_fax":"\u05e4\u05e7\u05e1","contact_field_label_home":"\u05d1\u05d9\u05ea","contact_field_label_main":"\u05e2\u05d9\u05e7\u05e8\u05d9","contact_field_label_other":"\u05d0\u05d7\u05e8","contact_field_label_pager":"\u05d6\u05d9\u05de\u05d5\u05e0\u05d9\u05ea","contact_field_label_personal":"\u05d0\u05d9\u05e9\u05d9","contact_field_label_work":"\u05e2\u05d1\u05d5\u05d3\u05d4","contact_info_address":"\u05de\u05e7\u05d5\u05dd \u05de\u05d2\u05d5\u05e8\u05d9\u05dd","contact_info_form_contact_type":"\u05e1\u05d5\u05d2 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8","contact_info_form_content":"\u05ea\u05d5\u05db\u05df","contact_info_form_personalize":"\u05d4\u05ea\u05d0\u05de\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea","contact_info_title":"\u05e4\u05e8\u05d8\u05d9 \u05e7\u05e9\u05e8","contact_unarchive":"\u05d4\u05d5\u05e6\u05d0\u05ea \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05de\u05d4\u05d0\u05e8\u05db\u05d9\u05d5\u05df","conversation_add_another":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d4\u05d5\u05d3\u05e2\u05d4 \u05e0\u05d5\u05e1\u05e4\u05ea","conversation_add_content":"\u05e0\u05d0 \u05dc\u05db\u05ea\u05d5\u05d1 \u05d0\u05ea \u05de\u05d4 \u05e9\u05d0\u05de\u05e8\u05ea","conversation_add_error":"\u05e2\u05dc\u05d9\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d4\u05d5\u05d3\u05e2\u05d4 \u05d0\u05d7\u05ea \u05dc\u05e4\u05d7\u05d5\u05ea.","conversation_add_how":"\u05d0\u05d9\u05da \u05ea\u05e7\u05e9\u05e8\u05ea\u05dd?","conversation_add_success":"\u05d4\u05d3\u05d9\u05d5\u05df \u05e0\u05d5\u05e1\u05e3 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","conversation_add_title":"\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d3\u05d9\u05d5\u05df \u05d7\u05d3\u05e9","conversation_add_what_was_said":"\u05de\u05d4 \u05d0\u05de\u05e8\u05ea?","conversation_add_when":"\u05de\u05ea\u05d9 \u05d4\u05d3\u05d9\u05d5\u05df \u05d4\u05d6\u05d4 \u05d4\u05ea\u05e8\u05d7\u05e9?","conversation_add_who_wrote":"\u05dc\u05de\u05d9 \u05e9\u05d9\u05d9\u05db\u05ea \u05d4\u05d4\u05d5\u05d3\u05e2\u05d4 \u05d4\u05d6\u05d5?","conversation_add_you":"\u05d0\u05e0\u05d9","conversation_blank":"\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d3\u05d9\u05d5\u05e0\u05d9\u05dd \u05e9\u05e2\u05e8\u05db\u05ea \u05e2\u05dd :name \u05d1\u05e8\u05e9\u05ea\u05d5\u05ea \u05d7\u05d1\u05e8\u05ea\u05d9\u05d5\u05ea, \u05de\u05e1\u05e8\u05d5\u05e0\u05d9\u05dd \u05d5\u05db\u05d5\u05f3\u2026","conversation_delete_link":"\u05de\u05d7\u05d9\u05e7\u05ea \u05d4\u05d3\u05d9\u05d5\u05df","conversation_delete_success":"\u05d4\u05d3\u05d9\u05d5\u05df \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","conversation_edit_delete":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d3\u05d9\u05d5\u05df? \u05de\u05d7\u05d9\u05e7\u05d4 \u05d4\u05d9\u05d0 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea.","conversation_edit_success":"\u05d4\u05d3\u05d9\u05d5\u05df \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","conversation_edit_title":"\u05e2\u05e8\u05d9\u05db\u05ea \u05d4\u05d3\u05d9\u05d5\u05df","conversation_list_cta":"\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d3\u05d9\u05d5\u05df \u05d1\u05d9\u05d5\u05de\u05df","conversation_list_table_content":"\u05ea\u05d5\u05db\u05df \u05d7\u05dc\u05e7\u05d9 (\u05d4\u05d5\u05d3\u05e2\u05d4 \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4)","conversation_list_table_messages":"\u05d4\u05d5\u05d3\u05e2\u05d5\u05ea","conversation_list_title":"\u05d3\u05d9\u05d5\u05e0\u05d9\u05dd","debt_add_add_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d7\u05d5\u05d1","debt_add_amount":"\u05e2\u05dc \u05e1\u05da \u05e9\u05dc","debt_add_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d7\u05d5\u05d1","debt_add_reason":"\u05de\u05d4\u05e1\u05d9\u05d1\u05d4 \u05d4\u05d1\u05d0\u05d4 (\u05e8\u05e9\u05d5\u05ea)","debt_add_success":"\u05d4\u05d7\u05d5\u05d1 \u05e0\u05d5\u05e1\u05e3 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","debt_add_they_owe":"\u05dc\u05be:name \u05d9\u05e9 \u05d7\u05d5\u05d1 \u05de\u05d5\u05dc\u05da","debt_add_title":"\u05e0\u05d9\u05d4\u05d5\u05dc \u05d7\u05d5\u05d1\u05d5\u05ea","debt_add_you_owe":"\u05d9\u05e9 \u05dc\u05da \u05d7\u05d5\u05d1 \u05de\u05d5\u05dc :name","debt_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d7\u05d5\u05d1 \u05d4\u05d6\u05d4?","debt_delete_success":"\u05d4\u05d7\u05d5\u05d1 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","debt_edit_success":"\u05d4\u05d7\u05d5\u05d1 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","debt_edit_update_cta":"\u05e2\u05d3\u05db\u05d5\u05df \u05d7\u05d5\u05d1","debt_they_owe":"\u05d4\u05d7\u05d5\u05d1 \u05e9\u05dc :name \u05db\u05dc\u05e4\u05d9\u05da \u05d4\u05d5\u05d0 :amount","debt_title":"\u05d7\u05d5\u05d1\u05d5\u05ea","debt_you_owe":"\u05d4\u05d7\u05d5\u05d1 \u05e9\u05dc\u05da \u05d4\u05d5\u05d0 :amount","debts_blank_title":"\u05e0\u05d9\u05d4\u05d5\u05dc \u05d7\u05d5\u05d1\u05d5\u05ea \u05de\u05d5\u05dc :name \u05d0\u05d5 \u05d7\u05d5\u05d1 \u05e9\u05dc :name \u05de\u05d5\u05dc\u05da","deceased_add_reminder":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05dc\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d6\u05d4","deceased_age":"\u05d2\u05d9\u05dc \u05d1\u05e2\u05ea \u05d4\u05e4\u05d8\u05d9\u05e8\u05d4","deceased_date_label":"\u05de\u05d5\u05e2\u05d3 \u05d4\u05e4\u05d8\u05d9\u05e8\u05d4","deceased_know_date":"\u05de\u05d5\u05e2\u05d3 \u05d4\u05e4\u05d8\u05d9\u05e8\u05d4 \u05e9\u05dc \u05d4\u05d0\u05d3\u05dd \u05d4\u05d6\u05d4 \u05d9\u05d3\u05d5\u05e2 \u05dc\u05d9","deceased_label":"\u05e4\u05d8\u05d9\u05e8\u05d4","deceased_label_with_date":"\u05e4\u05d8\u05d9\u05e8\u05d4 \u05d1\u05be:date","deceased_mark_person_deceased":"\u05e1\u05d9\u05de\u05d5\u05df \u05e4\u05d8\u05d9\u05e8\u05d4 \u05e2\u05dc \u05d0\u05d3\u05dd \u05d6\u05d4","deceased_reminder_title":"\u05d4\u05d0\u05d6\u05db\u05e8\u05d4 \u05e9\u05dc :name","document_list_blank_desc":"\u05db\u05d0\u05df \u05e0\u05d9\u05ea\u05df \u05dc\u05d0\u05d7\u05e1\u05df \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05e9\u05e7\u05e9\u05d5\u05e8\u05d9\u05dd \u05dc\u05d0\u05d3\u05dd \u05d6\u05d4.","document_list_cta":"\u05d4\u05e2\u05dc\u05d0\u05ea \u05de\u05e1\u05de\u05da","document_list_title":"\u05de\u05e1\u05de\u05db\u05d9\u05dd","document_upload_zone_cta":"\u05d4\u05e2\u05dc\u05d0\u05ea \u05e7\u05d5\u05d1\u05e5","document_upload_zone_error":"\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05d4\u05e2\u05dc\u05d0\u05ea \u05d4\u05de\u05e1\u05de\u05da. \u05e0\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1 \u05dc\u05d4\u05dc\u05df.","document_upload_zone_progress":"\u05d4\u05de\u05e1\u05de\u05da \u05e0\u05e9\u05dc\u05d7\u2026","edit_contact_information":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e4\u05e8\u05d8\u05d9\u05dd \u05dc\u05d9\u05e6\u05d9\u05e8\u05ea \u05e7\u05e9\u05e8","emotion_this_made_me_feel":"\u05d4\u05ea\u05d7\u05d5\u05e9\u05d4 \u05e9\u05e7\u05d9\u05d1\u05dc\u05ea \u05d4\u05d9\u05d0\u2026","food_preferences_add_success":"\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05d4\u05de\u05d6\u05d5\u05df \u05e0\u05e9\u05de\u05e8\u05d5","food_preferences_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05de\u05d6\u05d5\u05df","food_preferences_edit_cta":"\u05e9\u05de\u05d9\u05e8\u05ea \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05de\u05d6\u05d5\u05df","food_preferences_edit_description":"\u05d0\u05d5\u05dc\u05d9 \u05dc:firstname \u05d0\u05d5 \u05dc\u05de\u05d9\u05e9\u05d4\u05d5 \u05de\u05de\u05e9\u05e4\u05d7\u05ea :family \u05d9\u05e9 \u05d0\u05dc\u05e8\u05d2\u05d9\u05d4. \u05d0\u05d5 \u05d0\u05d9\u05d6\u05d4 \u05e1\u05d5\u05d2 \u05d9\u05d9\u05df \u05dc\u05d0 \u05d0\u05d4\u05d5\u05d1 \u05d1\u05de\u05d9\u05d5\u05d7\u05d3. \u05e0\u05d9\u05ea\u05df \u05dc\u05e6\u05d9\u05d9\u05df \u05d0\u05ea \u05d0\u05dc\u05d4 \u05db\u05d0\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05d9\u05d6\u05db\u05e8 \u05d1\u05d4\u05dd \u05d1\u05d4\u05d6\u05de\u05e0\u05d4 \u05d4\u05d1\u05d0\u05d4 \u05dc\u05d0\u05e8\u05d5\u05d7\u05ea \u05e2\u05e8\u05d1","food_preferences_edit_description_no_last_name":"\u05d0\u05d5\u05dc\u05d9 \u05dc\u05be:firstname \u05d9\u05e9 \u05d0\u05dc\u05e8\u05d2\u05d9\u05d4. \u05d0\u05d5 \u05d0\u05d9\u05d6\u05d4 \u05e1\u05d5\u05d2 \u05d9\u05d9\u05df \u05dc\u05d0 \u05d0\u05d4\u05d5\u05d1 \u05d1\u05de\u05d9\u05d5\u05d7\u05d3. \u05e0\u05d9\u05ea\u05df \u05dc\u05e6\u05d9\u05d9\u05df \u05d0\u05ea \u05d0\u05dc\u05d4 \u05db\u05d0\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05d9\u05d6\u05db\u05e8 \u05d1\u05d4\u05dd \u05d1\u05d4\u05d6\u05de\u05e0\u05d4 \u05d4\u05d1\u05d0\u05d4 \u05dc\u05d0\u05e8\u05d5\u05d7\u05ea \u05e2\u05e8\u05d1","food_preferences_edit_title":"\u05e6\u05d9\u05d5\u05df \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05de\u05d6\u05d5\u05df","food_preferences_title":"\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05de\u05d6\u05d5\u05df","gifts_add_comment":"\u05d4\u05e2\u05e8\u05d4 (\u05e8\u05e9\u05d5\u05ea)","gifts_add_date":"\u05ea\u05d0\u05e8\u05d9\u05da (\u05e8\u05e9\u05d5\u05ea)","gifts_add_gift":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05ea\u05e0\u05d4","gifts_add_gift_already_offered":"\u05d4\u05d5\u05e2\u05e0\u05e7\u05d4 \u05de\u05ea\u05e0\u05d4","gifts_add_gift_idea":"\u05e8\u05e2\u05d9\u05d5\u05df \u05dc\u05de\u05ea\u05e0\u05d4","gifts_add_gift_name":"\u05e9\u05dd \u05d4\u05de\u05ea\u05e0\u05d4","gifts_add_gift_received":"\u05de\u05ea\u05e0\u05d4 \u05e9\u05d4\u05ea\u05e7\u05d1\u05dc\u05d4","gifts_add_gift_title":"\u05de\u05d4 \u05d6\u05d5 \u05d4\u05de\u05ea\u05e0\u05d4 \u05d4\u05d6\u05d5?","gifts_add_link":"\u05e7\u05d9\u05e9\u05d5\u05e8 \u05dc\u05d0\u05ea\u05e8 \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 (\u05e8\u05e9\u05d5\u05ea)","gifts_add_photo":"\u05ea\u05de\u05d5\u05e0\u05d4 (\u05e8\u05e9\u05d5\u05ea)","gifts_add_photo_title":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05de\u05d5\u05e0\u05d4 \u05dc\u05de\u05ea\u05e0\u05d4 \u05d4\u05d6\u05d0\u05ea","gifts_add_recipient":"\u05dc\u05de\u05d9 \u05de\u05d9\u05d5\u05e2\u05d3\u05ea \u05d4\u05de\u05ea\u05e0\u05d4 (\u05e8\u05e9\u05d5\u05ea)","gifts_add_recipient_field":"\u05e0\u05de\u05e2\u05df","gifts_add_someone":"\u05de\u05ea\u05e0\u05d4 \u05d6\u05d5 \u05de\u05d9\u05d5\u05e2\u05d3\u05ea \u05d1\u05de\u05d9\u05d5\u05d7\u05d3 \u05dc\u05de\u05d9\u05e9\u05d4\u05d5 \u05de\u05d4\u05de\u05e9\u05e4\u05d7\u05d4 \u05e9\u05dc {name}","gifts_add_success":"\u05d4\u05de\u05ea\u05e0\u05d4 \u05d4\u05d6\u05d0\u05ea \u05e0\u05d5\u05e1\u05e4\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","gifts_add_title":"\u05e0\u05d9\u05d4\u05d5\u05dc \u05de\u05ea\u05e0\u05d5\u05ea \u05e2\u05d1\u05d5\u05e8 :name","gifts_add_value":"\u05e2\u05e8\u05da (\u05e8\u05e9\u05d5\u05ea)","gifts_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05de\u05ea\u05e0\u05d4 \u05d4\u05d6\u05d0\u05ea?","gifts_delete_cta":"\u05de\u05d7\u05d9\u05e7\u05d4","gifts_delete_success":"\u05d4\u05de\u05ea\u05e0\u05d4 \u05d4\u05d6\u05d0\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","gifts_delete_title":"\u05de\u05d7\u05d9\u05e7\u05ea \u05de\u05ea\u05e0\u05d4","gifts_for":"\u05e2\u05d1\u05d5\u05e8: {name}","gifts_ideas":"\u05e8\u05e2\u05d9\u05d5\u05e0\u05d5\u05ea \u05dc\u05de\u05ea\u05e0\u05d5\u05ea","gifts_link":"\u05e7\u05d9\u05e9\u05d5\u05e8","gifts_mark_offered":"\u05e1\u05d9\u05de\u05d5\u05df \u05e9\u05e0\u05d9\u05ea\u05e0\u05d4","gifts_offered":"\u05d4\u05d5\u05e2\u05e0\u05e7\u05d5 \u05de\u05ea\u05e0\u05d5\u05ea","gifts_offered_as_an_idea":"\u05e1\u05d9\u05de\u05d5\u05df \u05db\u05e8\u05e2\u05d9\u05d5\u05df","gifts_received":"\u05de\u05ea\u05e0\u05d5\u05ea \u05e9\u05d4\u05ea\u05e7\u05d1\u05dc\u05d5","gifts_title":"\u05de\u05ea\u05e0\u05d5\u05ea","gifts_update_success":"\u05d4\u05de\u05ea\u05e0\u05d4 \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","gifts_view_comment":"\u05e6\u05e4\u05d9\u05d9\u05d4 \u05d1\u05d4\u05e2\u05e8\u05d4","information_edit_birthdate_label":"\u05ea\u05d0\u05e8\u05d9\u05da \u05dc\u05d9\u05d3\u05d4","information_edit_description":"\u05ea\u05d9\u05d0\u05d5\u05e8 (\u05e8\u05e9\u05d5\u05ea)","information_edit_description_help":"\u05de\u05e9\u05de\u05e9 \u05e2\u05d1\u05d5\u05e8 \u05e8\u05e9\u05d9\u05de\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05db\u05d3\u05d9 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d4\u05e7\u05e9\u05e8 \u05d0\u05dd \u05d9\u05e9 \u05e6\u05d5\u05e8\u05da \u05d1\u05db\u05da.","information_edit_exact":"\u05de\u05d5\u05e2\u05d3 \u05d4\u05dc\u05d9\u05d3\u05d4 \u05d4\u05de\u05d3\u05d5\u05d9\u05e7 \u05e9\u05dc \u05d0\u05d3\u05dd \u05d6\u05d4 \u05d9\u05d3\u05d5\u05e2 \u05dc\u05d9\u2026","information_edit_firstname":"\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9","information_edit_lastname":"\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4 (\u05e8\u05e9\u05d5\u05ea)","information_edit_max_size":":size \u05e7\u05f4\u05d1 \u05dc\u05db\u05dc \u05d4\u05d9\u05d5\u05ea\u05e8.","information_edit_max_size2":"{size} \u05e7\u05d9\u05dc\u05d5\u05e1\u05d9\u05d1\u05d9\u05d5\u05ea \u05dc\u05db\u05dc \u05d4\u05d9\u05d5\u05ea\u05e8.","information_edit_not_year":"\u05d9\u05d3\u05d5\u05e2\u05d9\u05dd \u05dc\u05d9 \u05d4\u05d9\u05d5\u05dd \u05d5\u05d4\u05d7\u05d5\u05d3\u05e9 \u05e9\u05dc \u05d4\u05d5\u05dc\u05d3\u05ea \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8, \u05d0\u05da \u05dc\u05d0 \u05d4\u05e9\u05e0\u05d4\u2026","information_edit_probably":"\u05d4\u05d2\u05d9\u05dc \u05e9\u05dc \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d5\u05d0 \u05db\u05e0\u05e8\u05d0\u05d4\u2026","information_edit_success":"\u05d4\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","information_edit_title":"\u05e2\u05e8\u05d9\u05db\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05dd \u05d4\u05d0\u05d9\u05e9\u05d9\u05d9\u05dd \u05e9\u05dc :name","information_edit_unknown":"\u05d2\u05d9\u05dc \u05d4\u05d0\u05d3\u05dd \u05d4\u05d6\u05d4 \u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2 \u05dc\u05d9","information_no_work_defined":"\u05dc\u05d0 \u05e6\u05d5\u05d9\u05e0\u05d5 \u05e4\u05e8\u05d8\u05d9 \u05e2\u05d1\u05d5\u05d3\u05d4","information_work_at":"\u05d1:company","introductions_add_reminder":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05dc\u05d7\u05d2\u05d5\u05d2 \u05d0\u05ea \u05d9\u05d5\u05dd \u05d4\u05e9\u05e0\u05d4 \u05dc\u05d4\u05d9\u05db\u05e8\u05d5\u05ea\u05db\u05dd","introductions_additional_info":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e1\u05d1\u05d9\u05e8 \u05d0\u05d9\u05da \u05d5\u05d0\u05d9\u05e4\u05d4 \u05e0\u05e4\u05d2\u05e9\u05ea\u05dd","introductions_blank_cta":"\u05e6\u05d9\u05d5\u05df \u05db\u05d9\u05e6\u05d3 \u05e4\u05d2\u05e9\u05ea \u05d0\u05ea :name","introductions_edit_met_through":"\u05e0\u05e2\u05e8\u05db\u05d4 \u05dc\u05da \u05d4\u05d9\u05db\u05e8\u05d5\u05ea \u05e2\u05dc \u05d9\u05d3\u05d9 \u05de\u05d9\u05e9\u05d4\u05d5 \u05e2\u05dd \u05d4\u05d0\u05d3\u05dd \u05d4\u05d6\u05d4?","introductions_first_met_date":"\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05de\u05e4\u05d2\u05e9","introductions_first_met_date_known":"\u05d6\u05d4 \u05d4\u05ea\u05d0\u05e8\u05d9\u05da \u05d1\u05d5 \u05e0\u05e4\u05d2\u05e9\u05e0\u05d5","introductions_met_date":"\u05e0\u05e4\u05d2\u05e9\u05ea\u05dd \u05d1\u05be:date","introductions_met_through":"\u05d4\u05db\u05e8\u05ea\u05dd \u05d3\u05e8\u05da :name<\/a>","introductions_no_first_met_date":"\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05de\u05e4\u05d2\u05e9 \u05d0\u05d9\u05e0\u05d5 \u05d9\u05d3\u05d5\u05e2 \u05dc\u05d9","introductions_no_met_through":"\u05d0\u05e3 \u05d0\u05d7\u05d3","introductions_reminder_title":"\u05d9\u05d5\u05dd \u05d4\u05e9\u05e0\u05d4 \u05dc\u05de\u05d5\u05e2\u05d3 \u05d4\u05d4\u05d9\u05db\u05e8\u05d5\u05ea \u05d1\u05d9\u05e0\u05d9\u05db\u05dd","introductions_sidebar_title":"\u05d0\u05d9\u05da \u05e0\u05e4\u05d2\u05e9\u05ea\u05dd","introductions_title_edit":"\u05d0\u05d9\u05da \u05e4\u05d2\u05e9\u05ea \u05d0\u05ea :name?","introductions_update_success":"\u05e2\u05d3\u05db\u05e0\u05ea \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4 \u05d0\u05ea \u05d4\u05de\u05d9\u05d3\u05e2 \u05d1\u05e0\u05d5\u05d2\u05e2 \u05dc\u05d0\u05d5\u05e4\u05d9 \u05d4\u05de\u05e4\u05d2\u05e9 \u05e9\u05dc\u05da \u05e2\u05dd \u05d0\u05d3\u05dd \u05d6\u05d4","last_activity_date":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05d9\u05d7\u05d3: :date","last_activity_date_empty":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05d9\u05d7\u05d3: \u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2","last_called":"\u05e9\u05d9\u05d7\u05ea \u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4: :date","last_called_empty":"\u05e9\u05d9\u05d7\u05ea \u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4: \u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2","life_event_blank":"\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d0\u05d9\u05e8\u05d5\u05e2\u05d9\u05dd \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9\u05d9\u05dd \u05d1\u05d7\u05d9\u05d9\u05dd \u05e9\u05dc {name} \u05dc\u05d4\u05e4\u05e0\u05d9\u05d4 \u05e2\u05ea\u05d9\u05d3\u05d9\u05ea.","life_event_category_family_relationships":"\u05de\u05e9\u05e4\u05d7\u05d4 \u05d5\u05d9\u05d7\u05e1\u05d9\u05dd","life_event_category_health_wellness":"\u05d1\u05e8\u05d9\u05d0\u05d5\u05ea \u05d5\u05e8\u05d5\u05d5\u05d7\u05d4","life_event_category_home_living":"\u05d1\u05d9\u05ea \u05d5\u05de\u05d7\u05d9\u05d9\u05d4","life_event_category_travel_experiences":"\u05d8\u05d9\u05d5\u05dc \u05d5\u05d7\u05d5\u05d5\u05d9\u05d5\u05ea","life_event_category_work_education":"\u05e2\u05d1\u05d5\u05d3\u05d4 \u05d5\u05d4\u05e9\u05db\u05dc\u05d4","life_event_create_add_yearly_reminder":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e9\u05e0\u05ea\u05d9\u05ea \u05dc\u05d0\u05d9\u05e8\u05d5\u05e2 \u05d4\u05d6\u05d4","life_event_create_category":"\u05db\u05dc \u05d4\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea","life_event_create_date":"\u05d0\u05d9\u05df \u05e6\u05d5\u05e8\u05da \u05dc\u05e6\u05d9\u05d9\u05df \u05d7\u05d5\u05d3\u05e9 \u05d0\u05d5 \u05d9\u05d5\u05dd - \u05d7\u05d5\u05d1\u05d4 \u05dc\u05e6\u05d9\u05d9\u05df \u05e9\u05e0\u05d4 \u05d1\u05dc\u05d1\u05d3.","life_event_create_default_description":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d4\u05de\u05d9\u05d3\u05e2 \u05db\u05e4\u05d9 \u05e9\u05d9\u05d3\u05d5\u05e2 \u05dc\u05da","life_event_create_default_story":"\u05e1\u05d9\u05e4\u05d5\u05e8 (\u05e8\u05e9\u05d5\u05ea)","life_event_create_default_title":"\u05db\u05d5\u05ea\u05e8\u05ea (\u05e8\u05e9\u05d5\u05ea)","life_event_create_life_event":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05d9\u05e8\u05d5\u05e2 \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9","life_event_create_success":"\u05d4\u05d0\u05d9\u05e8\u05d5\u05e2 \u05d4\u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9 \u05e0\u05d5\u05e1\u05e3","life_event_date_it_happened":"\u05d4\u05ea\u05d0\u05e8\u05d9\u05da \u05d1\u05d5 \u05d6\u05d4 \u05d4\u05ea\u05e8\u05d7\u05e9","life_event_delete_description":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d0\u05d9\u05e8\u05d5\u05e2 \u05d4\u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9 \u05d4\u05d6\u05d4? \u05de\u05d7\u05d9\u05e7\u05d4 \u05d4\u05d9\u05d0 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea.","life_event_delete_success":"\u05d4\u05d0\u05d9\u05e8\u05d5\u05e2 \u05d4\u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9 \u05e0\u05de\u05d7\u05e7","life_event_delete_title":"\u05de\u05d7\u05d9\u05e7\u05ea \u05d0\u05d9\u05e8\u05d5\u05e2 \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9","life_event_list_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05d9\u05e8\u05d5\u05e2 \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9","life_event_list_tab_life_events":"\u05d0\u05d9\u05e8\u05d5\u05e2\u05d9\u05dd \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9\u05d9\u05dd","life_event_list_tab_other":"\u05e4\u05ea\u05e7\u05d9\u05d5\u05ea, \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea, \u2026","life_event_list_title":"\u05d0\u05d9\u05e8\u05d5\u05e2\u05d9\u05dd \u05de\u05e9\u05de\u05e2\u05d5\u05ea\u05d9\u05d9\u05dd","life_event_sentence_achievement_or_award":"\u05e7\u05d1\u05dc\u05ea \u05d4\u05d9\u05e9\u05d2 \u05d0\u05d5 \u05e4\u05e8\u05e1","life_event_sentence_anniversary":"\u05d9\u05d5\u05dd \u05d4\u05e9\u05e0\u05d4","life_event_sentence_bought_a_home":"\u05e8\u05db\u05d9\u05e9\u05ea \u05d3\u05d9\u05e8\u05d4","life_event_sentence_broken_bone":"\u05e9\u05d1\u05d9\u05e8\u05ea \u05e2\u05e6\u05dd","life_event_sentence_changed_beliefs":"\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d0\u05de\u05d5\u05e0\u05d4","life_event_sentence_dentist":"\u05d8\u05d9\u05e4\u05d5\u05dc \u05e9\u05d9\u05e0\u05d9\u05d9\u05dd","life_event_sentence_end_of_relationship":"\u05e1\u05d9\u05d5\u05dd \u05e7\u05e9\u05e8","life_event_sentence_engagement":"\u05d0\u05d9\u05e8\u05d5\u05e1\u05d9\u05df","life_event_sentence_expecting_a_baby":"\u05e6\u05d9\u05e4\u05d9\u05d9\u05d4 \u05dc\u05ea\u05d9\u05e0\u05d5\u05e7","life_event_sentence_first_kiss":"\u05e0\u05e9\u05d9\u05e7\u05d4 \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4","life_event_sentence_first_word":"\u05d3\u05d9\u05d1\u05d5\u05e8 \u05d1\u05e4\u05e2\u05dd \u05d4\u05e8\u05d0\u05e9\u05d5\u05e0\u05d4","life_event_sentence_holidays":"\u05d9\u05e6\u05d9\u05d0\u05d4 \u05dc\u05d7\u05d5\u05e4\u05e9","life_event_sentence_home_improvement":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e9\u05d9\u05e4\u05d5\u05e5","life_event_sentence_loss_of_a_loved_one":"\u05d0\u05d5\u05d1\u05d3\u05df \u05e9\u05dc \u05d0\u05d3\u05dd \u05e7\u05e8\u05d5\u05d1","life_event_sentence_marriage":"\u05e0\u05d9\u05e9\u05d5\u05d0\u05d9\u05df","life_event_sentence_military_service":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05e9\u05d9\u05e8\u05d5\u05ea \u05e6\u05d1\u05d0\u05d9","life_event_sentence_moved":"\u05de\u05e2\u05d1\u05e8 \u05d3\u05d9\u05e8\u05d4","life_event_sentence_new_child":"\u05d4\u05e6\u05d8\u05e8\u05e4\u05d5\u05ea \u05d9\u05dc\u05d3\/\u05d4 \u05dc\u05d7\u05d9\u05d9\u05dd","life_event_sentence_new_eating_habits":"\u05d0\u05d9\u05de\u05d5\u05e5 \u05d4\u05e8\u05d2\u05dc\u05d9 \u05d0\u05db\u05d9\u05dc\u05d4 \u05d7\u05d3\u05e9\u05d9\u05dd","life_event_sentence_new_family_member":"\u05d4\u05ea\u05d5\u05d5\u05e1\u05e4\u05d5\u05ea \u05d7\u05d1\u05e8\/\u05d4 \u05dc\u05de\u05e9\u05e4\u05d7\u05d4","life_event_sentence_new_hobby":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05ea\u05d7\u05d1\u05d9\u05d1","life_event_sentence_new_instrument":"\u05dc\u05de\u05d9\u05d3\u05ea \u05db\u05dc\u05d9 \u05e0\u05d2\u05d9\u05e0\u05d4 \u05d7\u05d3\u05e9","life_event_sentence_new_job":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05e2\u05d1\u05d5\u05d3\u05d4 \u05d7\u05d3\u05e9\u05d4","life_event_sentence_new_language":"\u05dc\u05de\u05d9\u05d3\u05ea \u05e9\u05e4\u05d4 \u05d7\u05d3\u05e9\u05d4","life_event_sentence_new_license":"\u05d4\u05d5\u05e6\u05d0\u05ea \u05e8\u05d9\u05e9\u05d9\u05d5\u05df","life_event_sentence_new_pet":"\u05d0\u05d9\u05de\u05d5\u05e5 \u05d7\u05d9\u05d9\u05ea \u05de\u05d7\u05de\u05d3","life_event_sentence_new_relationship":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05e7\u05e9\u05e8","life_event_sentence_new_roommate":"\u05d4\u05ea\u05d5\u05d5\u05e1\u05e4\u05d5\u05ea \u05e9\u05d5\u05ea\u05e4\u05d5\u05ea","life_event_sentence_new_school":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05dc\u05d9\u05de\u05d5\u05d3\u05d9\u05dd","life_event_sentence_new_sport":"\u05d4\u05ea\u05d7\u05dc\u05d4 \u05e9\u05dc \u05e1\u05e4\u05d5\u05e8\u05d8","life_event_sentence_new_vehicle":"\u05e7\u05d1\u05dc\u05ea \u05db\u05dc\u05d9 \u05e8\u05db\u05d1 \u05d7\u05d3\u05e9","life_event_sentence_overcame_an_illness":"\u05d4\u05d7\u05dc\u05de\u05d4 \u05de\u05de\u05d7\u05dc\u05d4","life_event_sentence_published_book_or_paper":"\u05e4\u05e8\u05e1\u05d5\u05dd \u05de\u05d0\u05de\u05e8","life_event_sentence_quit_a_habit":"\u05d2\u05de\u05d9\u05dc\u05d4","life_event_sentence_removed_braces":"\u05d4\u05e1\u05e8\u05ea \u05d2\u05e9\u05e8","life_event_sentence_retirement":"\u05d9\u05e6\u05d9\u05d0\u05d4 \u05dc\u05e4\u05e0\u05e1\u05d9\u05d4","life_event_sentence_study_abroad":"\u05d9\u05e6\u05d9\u05d0\u05d4 \u05dc\u05dc\u05d9\u05de\u05d5\u05d3\u05d9\u05dd \u05d1\u05d7\u05d5\u05f4\u05dc","life_event_sentence_surgery":"\u05dc\u05d0\u05d7\u05e8 \u05e0\u05d9\u05ea\u05d5\u05d7","life_event_sentence_tattoo_or_piercing":"\u05e7\u05e2\u05e7\u05d5\u05e2 \u05d0\u05d5 \u05e4\u05d9\u05e8\u05e1\u05d9\u05e0\u05d2 \u05d7\u05d3\u05e9","life_event_sentence_travel":"\u05d8\u05d9\u05d5\u05dc","life_event_sentence_volunteer_work":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05d4\u05ea\u05e0\u05d3\u05d1\u05d5\u05ea","life_event_sentence_wear_glass_or_contact":"\u05d4\u05e8\u05db\u05d1\u05ea \u05de\u05e9\u05e7\u05e4\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e2\u05d3\u05e9\u05d5\u05ea \u05de\u05d2\u05e2 \u05dc\u05e8\u05d0\u05e9\u05d5\u05e0\u05d4","life_event_sentence_weight_loss":"\u05d9\u05e8\u05d9\u05d3\u05d4 \u05d1\u05de\u05e9\u05e7\u05dc","list_link_to_active_contacts":"\u05d4\u05e8\u05e9\u05d9\u05de\u05d4 \u05d4\u05de\u05d5\u05e6\u05d2\u05ea \u05d4\u05d9\u05d0 \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05d1\u05d0\u05e8\u05db\u05d9\u05d5\u05df. \u05e2\u05dc\u05d9\u05da \u05dc\u05e6\u05e4\u05d5\u05ea \u05d1\u05e8\u05e9\u05d9\u05de\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d9\u05dd<\/a> \u05d1\u05de\u05e7\u05d5\u05dd.","list_link_to_archived_contacts":"\u05d4\u05e6\u05d2\u05ea \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05d1\u05d0\u05e8\u05db\u05d9\u05d5\u05df","me":"\u05de\u05d3\u05d5\u05d1\u05e8 \u05d1\u05da","modal_call_comment":"\u05e2\u05dc \u05de\u05d4 \u05d3\u05d9\u05d1\u05e8\u05ea\u05dd? (\u05e8\u05e9\u05d5\u05ea)","modal_call_emotion":"\u05de\u05e2\u05e0\u05d9\u05d9\u05df \u05d0\u05d5\u05ea\u05da \u05dc\u05ea\u05e2\u05d3 \u05d0\u05d9\u05da \u05d4\u05e8\u05d2\u05e9\u05ea \u05d1\u05de\u05d4\u05dc\u05da \u05d4\u05e9\u05d9\u05d7\u05d4? (\u05e8\u05e9\u05d5\u05ea)","modal_call_exact_date":"\u05e9\u05d9\u05d7\u05ea \u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05d4\u05ea\u05e7\u05d9\u05d9\u05de\u05d4 \u05d1\u05be","modal_call_title":"\u05ea\u05d9\u05e2\u05d5\u05d3 \u05e9\u05d9\u05d7\u05d4","modal_call_who_called":"\u05de\u05d9 \u05d4\u05d9\u05d4 \u05d1\u05d8\u05dc\u05e4\u05d5\u05df?","notes_add_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d4\u05e2\u05e8\u05d4","notes_create_success":"\u05d4\u05d4\u05e2\u05e8\u05d4 \u05e0\u05d5\u05e6\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","notes_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d4\u05e2\u05e8\u05d4 \u05d4\u05d6\u05d0\u05ea? \u05de\u05d7\u05d9\u05e7\u05d4 \u05d0\u05d9\u05e0\u05d4 \u05d4\u05e4\u05d9\u05db\u05d4","notes_delete_success":"\u05d4\u05d4\u05e2\u05e8\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","notes_delete_title":"\u05de\u05d7\u05d9\u05e7\u05ea \u05d4\u05e2\u05e8\u05d4","notes_favorite":"\u05d4\u05d5\u05e1\u05e4\u05d4\/\u05d4\u05e1\u05e8\u05d4 \u05de\u05d4\u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd","notes_update_success":"\u05d4\u05d4\u05e2\u05e8\u05d4 \u05e0\u05e9\u05de\u05e8\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","people_add_birthday_reminder":"\u05e0\u05d0 \u05dc\u05d0\u05d7\u05dc \u05d9\u05d5\u05dd \u05d4\u05d5\u05dc\u05d3\u05ea \u05e9\u05de\u05d7 \u05dc\u05be:name","people_add_birthday_reminder_deceased":"\u05d1\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d6\u05d4, \u05d0\u05de\u05d5\u05e8 \u05d4\u05d9\u05d4 \u05dc\u05d4\u05d7\u05d2\u05d2 \u05d9\u05d5\u05dd \u05d4\u05d4\u05d5\u05dc\u05d3\u05ea \u05e9\u05dc :name","people_add_cta":"\u05d4\u05d5\u05e1\u05e4\u05d4","people_add_firstname":"\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9","people_add_gender":"\u05de\u05d2\u05d3\u05e8","people_add_import":"\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d9\u05d9\u05d1\u05d0 \u05d0\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da<\/a>?","people_add_lastname":"\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4 (\u05e8\u05e9\u05d5\u05ea)","people_add_middlename":"\u05e9\u05dd \u05d0\u05de\u05e6\u05e2\u05d9 (\u05e8\u05e9\u05d5\u05ea)","people_add_missing":"\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05d0\u05e0\u05e9\u05d9\u05dd, \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05d7\u05d3 \u05db\u05e2\u05ea","people_add_new":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05d3\u05dd \u05d7\u05d3\u05e9","people_add_nickname":"\u05db\u05d9\u05e0\u05d5\u05d9 (\u05e8\u05e9\u05d5\u05ea)","people_add_reminder_for_birthday":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e9\u05e0\u05ea\u05d9\u05ea \u05dc\u05d9\u05d5\u05dd \u05d4\u05d4\u05d5\u05dc\u05d3\u05ea","people_add_success":"\u05d4\u05d9\u05e6\u05d9\u05e8\u05d4 \u05e9\u05dc :name \u05d4\u05d5\u05e9\u05dc\u05de\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","people_add_title":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05d3\u05dd \u05d7\u05d3\u05e9","people_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d6\u05d4? \u05de\u05d7\u05d9\u05e7\u05d4 \u05d4\u05d9\u05d0 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea.","people_delete_message":"\u05de\u05d7\u05d9\u05e7\u05ea \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8","people_delete_success":"\u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05e0\u05de\u05d7\u05e7","people_edit_email_error":"\u05db\u05d1\u05e8 \u05d9\u05e9 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05e2\u05dd \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05d4\u05d6\u05d5. \u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d1\u05d0\u05d7\u05d3 \u05d0\u05d7\u05e8.","people_export":"\u05d9\u05d9\u05e6\u05d5\u05d0 \u05db\u05bevCard","people_list_account_upgrade_cta":"\u05dc\u05e9\u05d3\u05e8\u05d2 \u05db\u05e2\u05ea","people_list_account_upgrade_title":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05dc\u05d9\u05d4\u05e0\u05d5\u05ea \u05de\u05e9\u05e4\u05e2 \u05d4\u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05e9\u05d9\u05e9 \u05dc\u05e0\u05d5 \u05dc\u05d4\u05e6\u05d9\u05e2.","people_list_account_usage":"\u05e0\u05d9\u05e6\u05d5\u05dc\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da: :current\/:limit \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","people_list_blank_cta":"\u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05de\u05d9\u05e9\u05d4\u05d5","people_list_blank_title":"\u05d0\u05d9\u05df \u05d0\u05e3 \u05d0\u05d7\u05d3 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05e2\u05d3\u05d9\u05d9\u05df","people_list_clear_filter":"\u05e0\u05d9\u05e7\u05d5\u05d9 \u05de\u05e1\u05e0\u05df","people_list_contacts_per_tags":"\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d0\u05d7\u05d3|:count \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","people_list_filter_tag":"\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e2\u05dd \u05d4\u05ea\u05d2\u05d9\u05ea","people_list_filter_untag":"\u05de\u05d5\u05e6\u05d2\u05d9\u05dd \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05dc\u05dc\u05d0 \u05ea\u05d9\u05d5\u05d2","people_list_firstnameAZ":"\u05de\u05d9\u05d5\u05df \u05dc\u05e4\u05d9 \u05e9\u05dd \u05e4\u05e8\u05d8\u05d9 \u05d0 \u2190 \u05ea","people_list_firstnameZA":"\u05de\u05d9\u05d5\u05df \u05dc\u05e4\u05d9 \u05e9\u05dd \u05e4\u05e8\u05d8\u05d9 \u05ea \u2190 \u05d0","people_list_hide_dead":"\u05d4\u05e1\u05ea\u05e8\u05ea \u05de\u05e0\u05d5\u05d7\u05d9\u05dd (:count)","people_list_last_updated":"\u05d9\u05e2\u05d5\u05e5 \u05d0\u05d7\u05e8\u05d5\u05df:","people_list_lastactivitydateNewtoOld":"\u05de\u05d9\u05d5\u05df \u05dc\u05e4\u05d9 \u05de\u05d5\u05e2\u05d3 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05de\u05d4\u05d7\u05d3\u05e9\u05d4 \u05dc\u05d9\u05e9\u05e0\u05d4","people_list_lastactivitydateOldtoNew":"\u05de\u05d9\u05d5\u05df \u05dc\u05e4\u05d9 \u05de\u05d5\u05e2\u05d3 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05de\u05d4\u05d9\u05e9\u05e0\u05d4 \u05dc\u05d7\u05d3\u05e9\u05d4","people_list_lastnameAZ":"\u05de\u05d9\u05d5\u05df \u05dc\u05e4\u05d9 \u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4 \u05d0 \u2190 \u05ea","people_list_lastnameZA":"\u05de\u05d9\u05d5\u05df \u05dc\u05e4\u05d9 \u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4 \u05ea \u2190 \u05d0","people_list_number_kids":"\u05d9\u05dc\u05d3 \u05d0\u05d7\u05d3|:count \u05d9\u05dc\u05d3\u05d9\u05dd","people_list_number_reminders":"\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05d0\u05d7\u05ea|:count \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea","people_list_show_dead":"\u05d4\u05e6\u05d2\u05ea \u05de\u05e0\u05d5\u05d7\u05d9\u05dd (:count)","people_list_sort":"\u05de\u05d9\u05d5\u05df","people_list_stats":"\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d0\u05d7\u05d3|:count \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","people_list_untagged":"\u05d4\u05e6\u05d2\u05ea \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05dc\u05dc\u05d0 \u05ea\u05d9\u05d5\u05d2","people_not_found":"\u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0","people_save_and_add_another_cta":"\u05d4\u05d2\u05e9\u05d4 \u05d5\u05d4\u05d5\u05e1\u05e4\u05ea \u05e2\u05d5\u05d3 \u05de\u05d9\u05e9\u05d4\u05d5","people_search":"\u05d7\u05d9\u05e4\u05d5\u05e9 \u05d1\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da\u2026","people_search_all":"\u05d4\u05db\u05d5\u05dc","people_search_next":"\u05d4\u05d1\u05d0","people_search_no_results":"\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea","people_search_of":"\u05de\u05ea\u05d5\u05da","people_search_page":"\u05e2\u05de\u05d5\u05d3","people_search_prev":"\u05d4\u05e7\u05d5\u05d3\u05dd","people_search_rows_per_page":"\u05e9\u05d5\u05e8\u05d5\u05ea \u05d1\u05db\u05dc \u05e2\u05de\u05d5\u05d3","pets_bird":"\u05e6\u05d9\u05e4\u05d5\u05e8","pets_cat":"\u05d7\u05ea\u05d5\u05dc","pets_create_success":"\u05d7\u05d9\u05d9\u05ea \u05d4\u05de\u05d7\u05de\u05d3 \u05e0\u05d5\u05e1\u05e4\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","pets_delete_success":"\u05d7\u05d9\u05d9\u05ea \u05d4\u05de\u05d7\u05de\u05d3 \u05e0\u05de\u05d7\u05e7\u05d4","pets_dog":"\u05db\u05dc\u05d1","pets_fish":"\u05d3\u05d2","pets_hamster":"\u05d0\u05d5\u05d2\u05e8","pets_horse":"\u05e1\u05d5\u05e1","pets_kind":"\u05e1\u05d5\u05d2 \u05d7\u05d9\u05d9\u05ea \u05de\u05d7\u05de\u05d3","pets_name":"\u05e9\u05dd (\u05e8\u05e9\u05d5\u05ea)","pets_other":"\u05d0\u05d7\u05e8","pets_rabbit":"\u05d0\u05e8\u05e0\u05d1","pets_rat":"\u05d7\u05d5\u05dc\u05d3\u05d4","pets_reptile":"\u05d6\u05d5\u05d7\u05dc","pets_small_animal":"\u05d7\u05d9\u05d4 \u05e7\u05d8\u05e0\u05d4","pets_title":"\u05d7\u05d9\u05d5\u05ea \u05de\u05d7\u05de\u05d3","pets_update_success":"\u05d7\u05d9\u05d9\u05ea \u05d4\u05de\u05d7\u05de\u05d3 \u05e2\u05d5\u05d3\u05db\u05e0\u05d4","photo_current_profile_pic":"\u05ea\u05de\u05d5\u05e0\u05ea \u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05e0\u05d5\u05db\u05d7\u05d9\u05ea","photo_delete":"\u05de\u05d7\u05d9\u05e7\u05ea \u05ea\u05de\u05d5\u05e0\u05d4","photo_list_blank_desc":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d0\u05d7\u05e1\u05df \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e9\u05dc \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d6\u05d4. \u05d0\u05e4\u05d9\u05dc\u05d5 \u05de\u05de\u05e9 \u05d1\u05e8\u05d2\u05e2 \u05d6\u05d4!","photo_list_cta":"\u05d4\u05e2\u05dc\u05d0\u05ea \u05ea\u05de\u05d5\u05e0\u05d4","photo_list_title":"\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05e9\u05d5\u05e8\u05d5\u05ea","photo_make_profile_pic":"\u05d4\u05db\u05e0\u05ea \u05ea\u05de\u05d5\u05e0\u05ea \u05e4\u05e8\u05d5\u05e4\u05d9\u05dc","photo_next":"\u05dc\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05d1\u05d0\u05d4 \u276f","photo_previous":"\u276e \u05dc\u05ea\u05de\u05d5\u05e0\u05d4 \u05d4\u05e7\u05d5\u05d3\u05de\u05ea","photo_title":"\u05ea\u05de\u05d5\u05e0\u05d5\u05ea","photo_upload_zone_cta":"\u05d4\u05e2\u05dc\u05d0\u05ea \u05ea\u05de\u05d5\u05e0\u05d4","relationship_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d6\u05d4? \u05de\u05d7\u05d9\u05e7\u05d4 \u05d4\u05d9\u05d0 \u05d1\u05dc\u05ea\u05d9 \u05d4\u05e4\u05d9\u05db\u05d4.","relationship_form_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05e9\u05e8 \u05d7\u05d3\u05e9","relationship_form_add_choice":"\u05e2\u05dd \u05de\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d6\u05d4 \u05de\u05ea\u05e7\u05d9\u05d9\u05dd?","relationship_form_add_description":"\u05d1\u05d7\u05d9\u05e8\u05d4 \u05d6\u05d5 \u05ea\u05d0\u05e4\u05e9\u05e8 \u05dc\u05da \u05dc\u05d4\u05ea\u05d9\u05d9\u05d7\u05e1 \u05dc\u05d0\u05d3\u05dd \u05db\u05de\u05d5 \u05dc\u05db\u05dc \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d0\u05d7\u05e8.","relationship_form_add_no_existing_contact":"\u05d0\u05d9\u05df \u05dc\u05da \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05e9\u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05e7\u05d9\u05d9\u05dd \u05d0\u05d9\u05d6\u05e9\u05d4\u05d5 \u05e7\u05e9\u05e8 \u05de\u05d5\u05dc :name \u05db\u05e8\u05d2\u05e2.","relationship_form_add_success":"\u05d4\u05e7\u05e9\u05e8 \u05d4\u05d5\u05d2\u05d3\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","relationship_form_also_create_contact":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05e8\u05e9\u05d5\u05de\u05ea \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05dc\u05d0\u05d3\u05dd \u05d6\u05d4.","relationship_form_associate_contact":"\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05e7\u05d9\u05d9\u05dd","relationship_form_associate_dropdown":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d7\u05e4\u05e9 \u05d5\u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05e7\u05d9\u05d9\u05dd \u05de\u05d4\u05e8\u05e9\u05d9\u05de\u05d4 \u05d4\u05e0\u05d2\u05dc\u05dc\u05ea \u05e9\u05dc\u05d4\u05dc\u05df","relationship_form_associate_dropdown_placeholder":"\u05d7\u05d9\u05e4\u05d5\u05e9 \u05d5\u05d1\u05d7\u05d9\u05e8\u05d4 \u05d1\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05e7\u05d9\u05d9\u05dd","relationship_form_create_contact":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05d3\u05dd \u05d7\u05d3\u05e9","relationship_form_deletion_success":"\u05d4\u05e7\u05e9\u05e8 \u05e0\u05de\u05d7\u05e7.","relationship_form_edit":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e7\u05e9\u05e8 \u05e7\u05d9\u05d9\u05dd","relationship_form_is_with":"\u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d5\u05d0\u2026","relationship_form_is_with_name":":name\u2026","relationship_unlink_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e7\u05e9\u05e8 \u05d4\u05d6\u05d4? \u05d4\u05d0\u05d3\u05dd \u05dc\u05d0 \u05d9\u05d9\u05de\u05d7\u05e7 \u2013 \u05e8\u05e7 \u05d4\u05e7\u05e9\u05e8 \u05d1\u05d9\u05df \u05d4\u05e9\u05e0\u05d9\u05d9\u05dd.","reminder_frequency_day":"{1} \u05db\u05dc \u05d9\u05d5\u05dd|{2} \u05db\u05dc \u05d9\u05d5\u05de\u05d9\u05d9\u05dd|[3,*] \u05db\u05dc :number \u05d9\u05de\u05d9\u05dd","reminder_frequency_month":"{1} \u05db\u05dc \u05d7\u05d5\u05d3\u05e9| {2} \u05db\u05dc \u05d7\u05d5\u05d3\u05e9\u05d9\u05d9\u05dd|[3,*] \u05db\u05dc :number \u05d7\u05d5\u05d3\u05e9\u05d9\u05dd","reminder_frequency_one_time":"\u05d1\u05be:date","reminder_frequency_week":"{1} \u05db\u05dc \u05e9\u05d1\u05d5\u05e2| {2} \u05db\u05dc \u05e9\u05d1\u05d5\u05e2\u05d9\u05d9\u05dd|[3,*] \u05db\u05dc :number \u05e9\u05d1\u05d5\u05e2\u05d5\u05ea","reminder_frequency_year":"{1} \u05db\u05dc \u05e9\u05e0\u05d4| {2} \u05db\u05dc \u05e9\u05e0\u05ea\u05d9\u05d9\u05dd|[3,*] \u05db\u05dc :number \u05e9\u05e0\u05d9\u05dd","reminders_add_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d6\u05db\u05d5\u05e8\u05ea","reminders_add_description":"\u05e0\u05d0 \u05dc\u05d4\u05d6\u05db\u05d9\u05e8 \u05dc\u05d9 \u05dc\u05e2\u05e9\u05d5\u05ea\u2026","reminders_add_error_custom_text":"\u05e2\u05dc\u05d9\u05da \u05dc\u05e6\u05d9\u05d9\u05df \u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05d4\u05d6\u05d5","reminders_add_next_time":"\u05de\u05d4 \u05d4\u05e4\u05e2\u05dd \u05d4\u05d1\u05d0\u05d4 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e7\u05d1\u05dc \u05e2\u05dc \u05db\u05da \u05ea\u05d6\u05db\u05d5\u05e8\u05ea?","reminders_add_once":"\u05dc\u05d4\u05d6\u05db\u05d9\u05e8 \u05dc\u05d9 \u05e2\u05dc \u05db\u05da \u05e4\u05e2\u05dd \u05d0\u05d7\u05ea \u05d1\u05dc\u05d1\u05d3","reminders_add_optional_comment":"\u05d4\u05e2\u05e8\u05ea \u05e8\u05e9\u05d5\u05ea","reminders_add_recurrent":"\u05dc\u05d4\u05d6\u05db\u05d9\u05e8 \u05dc\u05d9 \u05e2\u05dc \u05db\u05da \u05db\u05dc","reminders_add_starting_from":"\u05d4\u05d7\u05dc \u05de\u05d4\u05d9\u05d5\u05dd \u05e9\u05e6\u05d5\u05d9\u05df \u05dc\u05d4\u05dc\u05df","reminders_add_title":"\u05de\u05d4 \u05dc\u05d4\u05d6\u05db\u05d9\u05e8 \u05dc\u05da \u05d1\u05e0\u05d5\u05d2\u05e2 \u05dc\u05be:name?","reminders_birthday":"\u05d9\u05d5\u05dd \u05d4\u05d4\u05d5\u05dc\u05d3\u05ea \u05e9\u05dc :name","reminders_blank_add_activity":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d6\u05db\u05d5\u05e8\u05ea","reminders_blank_title":"\u05d9\u05e9 \u05de\u05e9\u05d4\u05d5 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e7\u05d1\u05dc \u05e2\u05dc\u05d9\u05d5 \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05d1\u05e0\u05d5\u05d2\u05e2 \u05dc\u05be:name?","reminders_create_success":"\u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e0\u05d5\u05e1\u05e4\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","reminders_cta":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d6\u05db\u05d5\u05e8\u05ea","reminders_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05d4\u05d6\u05d5?","reminders_delete_cta":"\u05de\u05d7\u05d9\u05e7\u05d4","reminders_delete_success":"\u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","reminders_description":"\u05d0\u05e0\u05d5 \u05e0\u05e9\u05dc\u05d7 \u05d3\u05d5\u05d0\u05f4\u05dc \u05e2\u05d1\u05d5\u05e8 \u05db\u05dc \u05d0\u05d7\u05ea \u05de\u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05e9\u05dc\u05d4\u05dc\u05df. \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05e0\u05e9\u05dc\u05d7\u05d5\u05ea \u05db\u05dc \u05d1\u05d5\u05e7\u05e8 \u05d1\u05d9\u05d5\u05dd \u05d1\u05d5 \u05de\u05ea\u05e7\u05d9\u05d9\u05dd \u05d4\u05d0\u05d9\u05e8\u05d5\u05e2. \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05dc\u05d9\u05de\u05d9 \u05d4\u05d5\u05dc\u05d3\u05ea \u05d5\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05d5\u05ea\u05df. \u05dc\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d4\u05ea\u05d0\u05e8\u05d9\u05db\u05d9\u05dd \u05d4\u05d0\u05dc\u05d4 \u05d9\u05e9 \u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05ea \u05ea\u05d0\u05e8\u05d9\u05db\u05d9 \u05d4\u05dc\u05d9\u05d3\u05d4 \u05e9\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8.","reminders_edit_update_cta":"\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d6\u05db\u05d5\u05e8\u05ea","reminders_free_plan_warning":"\u05d4\u05ea\u05db\u05e0\u05d9\u05ea \u05e9\u05dc\u05da \u05d4\u05d9\u05d0 \u05d4\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05d7\u05d9\u05e0\u05de\u05d9\u05ea. \u05d1\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05d6\u05d0\u05ea \u05dc\u05d0 \u05e0\u05e9\u05dc\u05d7\u05d5\u05ea \u05d4\u05d5\u05d3\u05e2\u05d5\u05ea \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc. \u05db\u05d3\u05d9 \u05dc\u05e7\u05d1\u05dc \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05d9\u05e9 \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da.","reminders_next_expected_date":"\u05d1\u05be","reminders_one_time":"\u05d7\u05d3 \u05e4\u05e2\u05de\u05d9","reminders_type_month":"\u05d7\u05d5\u05d3\u05e9","reminders_type_week":"\u05e9\u05d1\u05d5\u05e2","reminders_type_year":"\u05e9\u05e0\u05d4","reminders_update_success":"\u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","section_contact_information":"\u05e4\u05e8\u05d8\u05d9 \u05e7\u05e9\u05e8","section_personal_activities":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea","section_personal_gifts":"\u05de\u05ea\u05e0\u05d5\u05ea","section_personal_notes":"\u05d4\u05e2\u05e8\u05d5\u05ea","section_personal_reminders":"\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea","section_personal_tasks":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea","set_favorite":"\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd \u05e2\u05d5\u05dc\u05d9\u05dd \u05dc\u05e8\u05d0\u05e9 \u05e8\u05e9\u05d9\u05de\u05ea \u05d0\u05e0\u05d9 \u05d4\u05e7\u05e9\u05e8","stay_in_touch":"\u05dc\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05e7\u05e9\u05e8","stay_in_touch_frequency":"\u05dc\u05d4\u05d9\u05e9\u05d0\u05e8 \u05d1\u05e7\u05e9\u05e8 \u05db\u05dc \u05d9\u05d5\u05dd|\u05dc\u05d4\u05d9\u05e9\u05d0\u05e8 \u05d1\u05e7\u05e9\u05e8 \u05db\u05dc \u05d9\u05d5\u05de\u05d9\u05d9\u05dd|\u05dc\u05d4\u05d9\u05e9\u05d0\u05e8 \u05d1\u05e7\u05e9\u05e8 \u05db\u05dc {count} \u05d9\u05de\u05d9\u05dd","stay_in_touch_invalid":"\u05d4\u05ea\u05d3\u05d9\u05e8\u05d5\u05ea \u05d7\u05d9\u05d9\u05d1\u05ea \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05e1\u05e4\u05e8 \u05d2\u05d3\u05d5\u05dc \u05de\u05be0.","stay_in_touch_modal_desc":"\u05e0\u05d5\u05db\u05dc \u05dc\u05d4\u05d6\u05db\u05d9\u05e8 \u05dc\u05da \u05d1\u05d4\u05d5\u05d3\u05e2\u05d4 \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05dc\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05e7\u05e9\u05e8 \u05e2\u05dd {firstname} \u05d1\u05de\u05e8\u05d5\u05d5\u05d7\u05d9 \u05d6\u05de\u05df \u05e7\u05d1\u05d5\u05e2\u05d9\u05dd.","stay_in_touch_modal_label":"\u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d9 \u05d4\u05d5\u05d3\u05e2\u05d4 \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05db\u05dc \u05d9\u05d5\u05dd|\u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d9 \u05d4\u05d5\u05d3\u05e2\u05d4 \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05db\u05dc \u05d9\u05d5\u05de\u05d9\u05d9\u05dd|\u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d9 \u05d4\u05d5\u05d3\u05e2\u05d4 \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05db\u05dc\u2026 {count} \u05d9\u05de\u05d9\u05dd|\u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d9 \u05d4\u05d5\u05d3\u05e2\u05d4 \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05db\u05dc\u2026 {count} \u05d9\u05de\u05d9\u05dd","stay_in_touch_modal_title":"\u05dc\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05e7\u05e9\u05e8","stay_in_touch_premium":"\u05e2\u05dc\u05d9\u05da \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5","tag_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05ea\u05d2\u05d9\u05d5\u05ea","tag_add_search":"\u05d4\u05d5\u05e1\u05e4\u05d4 \u05d0\u05d5 \u05d7\u05d9\u05e4\u05d5\u05e9 \u05ea\u05d2\u05d9\u05d5\u05ea","tag_edit":"\u05e2\u05e8\u05d9\u05db\u05ea \u05ea\u05d2\u05d9\u05ea","tag_no_tags":"\u05d0\u05d9\u05df \u05ea\u05d2\u05d9\u05d5\u05ea \u05e2\u05d3\u05d9\u05d9\u05df","tasks_add_task":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05e9\u05d9\u05de\u05d4","tasks_blank_title":"\u05d0\u05d9\u05df \u05dc\u05da \u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e2\u05d3\u05d9\u05d9\u05df.","tasks_complete_success":"\u05de\u05e6\u05d1 \u05d4\u05de\u05e9\u05d9\u05de\u05d4 \u05d4\u05e9\u05ea\u05e0\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","tasks_delete_success":"\u05d4\u05de\u05e9\u05d9\u05de\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","tasks_form_description":"\u05ea\u05d9\u05d0\u05d5\u05e8 (\u05e8\u05e9\u05d5\u05ea)","tasks_form_title":"\u05db\u05d5\u05ea\u05e8\u05ea","tasks_title":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea","work_add_cta":"\u05e2\u05d3\u05db\u05d5\u05df \u05e4\u05e8\u05d8\u05d9 \u05e2\u05d1\u05d5\u05d3\u05d4","work_edit_company":"\u05d7\u05d1\u05e8\u05d4 (\u05e8\u05e9\u05d5\u05ea)","work_edit_job":"\u05ea\u05e4\u05e7\u05d9\u05d3 (\u05e8\u05e9\u05d5\u05ea)","work_edit_success":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e2\u05d5\u05d3\u05db\u05e0\u05d5","work_edit_title":"\u05e2\u05d3\u05db\u05d5\u05df \u05e4\u05e8\u05d8\u05d9 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc :name","work_information":"\u05e4\u05e8\u05d8\u05d9 \u05ea\u05e2\u05e1\u05d5\u05e7\u05d4"},"reminder":{"type_birthday":"\u05e0\u05d0 \u05dc\u05d0\u05d7\u05dc \u05d9\u05d5\u05dd \u05d4\u05d5\u05dc\u05d3\u05ea \u05e9\u05de\u05d7 \u05dc\u05be","type_birthday_kid":"\u05e0\u05d0 \u05dc\u05d0\u05d7\u05dc \u05d9\u05d5\u05dd \u05d4\u05d5\u05dc\u05d3\u05ea \u05e9\u05de\u05d7 \u05dc\u05d9\u05dc\u05d3 \u05e9\u05dc","type_email":"\u05d3\u05d5\u05d0\u05f4\u05dc","type_hangout":"\u05d1\u05d9\u05dc\u05d5\u05d9 \u05de\u05e9\u05d5\u05ea\u05e3 \u05e2\u05dd","type_lunch":"\u05d0\u05e8\u05d5\u05d7\u05ea \u05e6\u05d4\u05e8\u05d9\u05d9\u05dd \u05e2\u05dd","type_phone_call":"\u05e9\u05d9\u05d7\u05d4"},"settings":{"2fa_disable_description":"\u05d4\u05e9\u05d1\u05ea\u05ea \u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da. \u05e0\u05d0 \u05dc\u05d4\u05d9\u05d6\u05d4\u05e8, \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05d9\u05d4\u05d9\u05d4 \u05d4\u05e8\u05d1\u05d4 \u05e4\u05d7\u05d5\u05ea \u05de\u05d0\u05d5\u05d1\u05d8\u05d7!","2fa_disable_error":"\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05d4\u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05dc\u05d4\u05e9\u05d1\u05d9\u05ea \u05d0\u05ea \u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_disable_success":"\u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05de\u05d5\u05e9\u05d1\u05ea","2fa_disable_title":"\u05d4\u05e9\u05d1\u05ea\u05ea \u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_enable_description":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05db\u05d3\u05d9 \u05dc\u05d4\u05d2\u05d1\u05d9\u05e8 \u05d0\u05ea \u05d4\u05d0\u05d1\u05d8\u05d7\u05d4 \u05e9\u05dc \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da.","2fa_enable_error":"\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05d4\u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_enable_error_already_set":"\u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05db\u05d1\u05e8 \u05de\u05d5\u05e4\u05e2\u05dc","2fa_enable_otp":"\u05d9\u05e9 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05d0\u05ea \u05d9\u05d9\u05e9\u05d5\u05de\u05d5\u05df \u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05e9\u05dc\u05da \u05d5\u05dc\u05e1\u05e8\u05d5\u05e7 \u05d0\u05ea \u05d1\u05e8\u05e7\u05d5\u05d3 \u05d4\u05beQR \u05e9\u05dc\u05d4\u05dc\u05df:","2fa_enable_otp_help":"\u05d0\u05dd \u05d9\u05d9\u05e9\u05d5\u05de\u05d5\u05df \u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05ea\u05d5\u05de\u05da \u05d1\u05e7\u05d5\u05d3\u05d9\u05dd \u05de\u05e1\u05d5\u05d2 QR, \u05d9\u05e9 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05d4\u05e7\u05d5\u05d3 \u05e9\u05dc\u05d4\u05dc\u05df:","2fa_enable_otp_validate":"\u05e0\u05d0 \u05dc\u05d0\u05de\u05ea \u05d0\u05ea \u05d4\u05d4\u05ea\u05e7\u05df \u05d4\u05d7\u05d3\u05e9 \u05e9\u05d6\u05d4 \u05e2\u05ea\u05d4 \u05d4\u05d2\u05d3\u05e8\u05ea:","2fa_enable_success":"\u05d4\u05d5\u05e4\u05e2\u05dc \u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_enable_title":"\u05d4\u05e4\u05e2\u05dc\u05ea \u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_otp_title":"\u05d9\u05d9\u05e9\u05d5\u05de\u05d5\u05df \u05dc\u05e0\u05d9\u05d9\u05d3 \u05dc\u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","2fa_title":"\u05d0\u05d9\u05de\u05d5\u05ea \u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9","api_authorized_clients":"\u05e8\u05e9\u05d9\u05de\u05ea \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea \u05de\u05d5\u05e8\u05e9\u05d9\u05dd","api_authorized_clients_desc":"\u05d0\u05d2\u05e3 \u05d6\u05d4 \u05de\u05e6\u05d9\u05d2 \u05d0\u05ea \u05db\u05dc \u05d4\u05dc\u05e7\u05d5\u05d7\u05d5\u05ea \u05dc\u05d4\u05dd \u05d4\u05e2\u05e0\u05e7\u05ea \u05d2\u05d9\u05e9\u05d4 \u05dc\u05e0\u05ea\u05d5\u05e0\u05d9 \u05d4\u05d9\u05d9\u05e9\u05d5\u05de\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da. \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05dc\u05d5\u05dc \u05d0\u05ea \u05d4\u05d0\u05d9\u05e9\u05d5\u05e8 \u05d4\u05d6\u05d4 \u05d1\u05db\u05dc \u05e2\u05ea.","api_authorized_clients_name":"\u05e9\u05dd","api_authorized_clients_none":"\u05e2\u05d3\u05d9\u05d9\u05df \u05d0\u05d9\u05df \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea \u05de\u05d0\u05d5\u05de\u05ea\u05d9\u05dd.","api_authorized_clients_scopes":"\u05ea\u05d7\u05d5\u05de\u05d9\u05dd","api_authorized_clients_title":"\u05d9\u05d9\u05e9\u05d5\u05de\u05d9\u05dd \u05de\u05d0\u05d5\u05e9\u05e8\u05d9\u05dd","api_description":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05beAPI \u05db\u05d3\u05d9 \u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d3\u05e8\u05da \u05d9\u05d9\u05e9\u05d5\u05dd \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9, \u05db\u05d2\u05d5\u05df \u05d9\u05d9\u05e9\u05d5\u05de\u05d5\u05df \u05dc\u05e0\u05d9\u05d9\u05d3 \u05dc\u05de\u05e9\u05dc.","api_endpoint":"\u05e0\u05e7\u05d5\u05d3\u05ea \u05d4\u05d2\u05d9\u05e9\u05d4 \u05dc\u05beAPI \u05e9\u05dc \u05d4\u05e2\u05d5\u05ea\u05e7 \u05d4\u05d6\u05d4 \u05e9\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d4\u05d9\u05d0:","api_help":"\u05db\u05d3\u05d9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05beAPI, \u05d7\u05d5\u05d1\u05d4 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d0\u05e1\u05d9\u05de\u05d5\u05df. \u05e0\u05d9\u05ea\u05df \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d2\u05d9\u05e9\u05d4 \u05d0\u05d9\u05e9\u05d9 (\u05d0\u05d9\u05de\u05d5\u05ea \u05d7\u05e9\u05d5\u05e3 \u05d9\u05d5\u05ea\u05e8) \u05d0\u05d5 \u05dc\u05d0\u05de\u05ea \u05dc\u05e7\u05d5\u05d7 OAuth \u05db\u05d3\u05d9 \u05e9\u05d9\u05d9\u05e6\u05d5\u05e8 \u05d0\u05d5\u05ea\u05d5 \u05e2\u05d1\u05d5\u05e8\u05da. \u05db\u05d3\u05d0\u05d9 \u05dc\u05e2\u05d9\u05d9\u05df \u05d1\u05ea\u05d9\u05e2\u05d5\u05d3 \u05e9\u05dc \u05d4\u05beAPI<\/a>.","api_oauth_clientid":"\u05de\u05d6\u05d4\u05d4 \u05dc\u05e7\u05d5\u05d7","api_oauth_clients":"\u05dc\u05e7\u05d5\u05d7\u05d5\u05ea \u05d4\u05beOAuth \u05e9\u05dc\u05da","api_oauth_clients_desc":"\u05d0\u05d2\u05e3 \u05d6\u05d4 \u05de\u05e1\u05d9\u05d9\u05e2 \u05dc\u05da \u05dc\u05e8\u05e9\u05d5\u05dd \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea OAuth \u05de\u05e9\u05dc\u05da.","api_oauth_clients_desc2":"\u05d9\u05e9 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d6\u05d4\u05d4 \u05dc\u05e7\u05d5\u05d7 \u05d6\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d1\u05e7\u05e9 \u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d7\u05d3\u05e9 \u05d5\u05dc\u05d4\u05de\u05d9\u05e8 \u05d0\u05ea \u05d4\u05e7\u05d5\u05d3\u05d9\u05dd \u05dc\u05de\u05d8\u05e8\u05ea \u05d2\u05d9\u05e9\u05d4 \u05dc\u05d0\u05e1\u05d9\u05de\u05d5\u05e0\u05d9 \u05d2\u05d9\u05e9\u05d4. \u05d9\u05e9 \u05dc\u05e2\u05d9\u05d9\u05df \u05d1\u05ea\u05d9\u05e2\u05d5\u05d3 \u05e9\u05dcLaravel Passport<\/a> \u05dc\u05e7\u05d1\u05dc\u05ea \u05de\u05d9\u05d3\u05e2 \u05e0\u05d5\u05e1\u05e3.","api_oauth_create":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05dc\u05e7\u05d5\u05d7","api_oauth_create_new":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05dc\u05e7\u05d5\u05d7 \u05d7\u05d3\u05e9","api_oauth_edit":"\u05e2\u05e8\u05d9\u05db\u05ea \u05dc\u05e7\u05d5\u05d7","api_oauth_name":"\u05e9\u05dd","api_oauth_name_help":"\u05de\u05e9\u05d4\u05d5 \u05e9\u05d4\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d6\u05d4\u05d5 \u05d5\u05d9\u05d0\u05de\u05d9\u05e0\u05d5 \u05d1\u05d5.","api_oauth_not_created":"\u05dc\u05d0 \u05d9\u05e6\u05e8\u05ea \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea OAuth \u05db\u05dc\u05e9\u05d4\u05dd.","api_oauth_redirecturl":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05e4\u05e0\u05d9\u05d4","api_oauth_redirecturl_help":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05e7\u05e8\u05d9\u05d0\u05d4 \u05d4\u05d7\u05d5\u05d6\u05e8\u05ea \u05dc\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d9\u05d9\u05e9\u05d5\u05dd \u05e9\u05dc\u05da.","api_oauth_secret":"\u05e1\u05d5\u05d3","api_oauth_title":"\u05dc\u05e7\u05d5\u05d7\u05d5\u05ea OAuth","api_pao_description":"\u05e0\u05d0 \u05dc\u05d5\u05d5\u05d3\u05d0 \u05e9\u05d4\u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d4\u05d6\u05d4 \u05de\u05d5\u05e2\u05d1\u05e8 \u05dc\u05d9\u05d3\u05d9\u05d9\u05dd \u05de\u05d4\u05d9\u05de\u05e0\u05d5\u05ea - \u05db\u05d9\u05d5\u05d5\u05df \u05e9\u05d4\u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05de\u05e2\u05e0\u05d9\u05e7 \u05d2\u05d9\u05e9\u05d4 \u05dc\u05db\u05dc \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da.","api_personal_access_tokens":"\u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05dc\u05d2\u05d9\u05e9\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea","api_title":"\u05d2\u05d9\u05e9\u05ea API","api_token_create":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05d0\u05e1\u05d9\u05de\u05d5\u05df","api_token_create_new":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d7\u05d3\u05e9","api_token_delete":"\u05de\u05d7\u05d9\u05e7\u05d4","api_token_expire":"\u05d9\u05e4\u05d5\u05d2 \u05d1\u05be{date}","api_token_help":"\u05d4\u05e0\u05d4 \u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d4\u05d2\u05d9\u05e9\u05d4 \u05d4\u05d0\u05d9\u05e9\u05d9\u05ea \u05d4\u05d7\u05d3\u05e9 \u05e9\u05dc\u05da. \u05d6\u05d0\u05ea \u05d4\u05e4\u05e2\u05dd \u05d4\u05d9\u05d7\u05d9\u05d3\u05d4 \u05e9\u05d4\u05d5\u05d0 \u05d9\u05d5\u05e4\u05d9\u05e2 \u05db\u05da \u05e9\u05e2\u05d3\u05d9\u05e3 \u05dc\u05d0 \u05dc\u05d0\u05d1\u05d3 \u05d0\u05d5\u05ea\u05d5! \u05db\u05e2\u05ea \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05d4\u05d6\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d1\u05e6\u05e2 \u05d1\u05e7\u05e9\u05d5\u05ea API.","api_token_name":"\u05e9\u05dd \u05d4\u05d0\u05e1\u05d9\u05de\u05d5\u05df","api_token_not_created":"\u05dc\u05d0 \u05d9\u05e6\u05e8\u05ea \u05d0\u05e1\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05dc\u05d2\u05d9\u05e9\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea.","api_token_scopes":"\u05ea\u05d7\u05d5\u05de\u05d9\u05dd","api_token_title":"\u05d0\u05e1\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05dc\u05d2\u05d9\u05e9\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea","archive_cta":"\u05d4\u05e2\u05d1\u05e8\u05ea \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df","archive_desc":"\u05e4\u05e2\u05d5\u05dc\u05d4 \u05d6\u05d5 \u05ea\u05e2\u05d1\u05d9\u05e8 \u05d0\u05ea \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df.","archive_title":"\u05d4\u05e2\u05d1\u05e8\u05ea \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df","currency":"\u05de\u05d8\u05d1\u05e2","dav_caldav_birthdays_export":"\u05d9\u05d9\u05e6\u05d5\u05d0 \u05db\u05dc \u05d9\u05de\u05d9 \u05d4\u05d4\u05d5\u05dc\u05d3\u05ea \u05d1\u05e7\u05d5\u05d1\u05e5 \u05d0\u05d7\u05d3","dav_caldav_tasks_export":"\u05d9\u05d9\u05e6\u05d5\u05d0 \u05db\u05dc \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d1\u05e7\u05d5\u05d1\u05e5 \u05d0\u05d7\u05d3","dav_carddav_export":"\u05d9\u05d9\u05e6\u05d5\u05d0 \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d1\u05e7\u05d5\u05d1\u05e5 \u05d0\u05d7\u05d3","dav_clipboard_copied":"\u05d4\u05e2\u05e8\u05da \u05d4\u05d5\u05e2\u05ea\u05e7 \u05dc\u05dc\u05d5\u05d7 \u05d4\u05d2\u05d6\u05d9\u05e8\u05d9\u05dd \u05e9\u05dc\u05da","dav_connect_help":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05ea\u05d7\u05d1\u05e8 \u05dc\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d5\/\u05d0\u05d5 \u05dc\u05dc\u05d5\u05d7\u05d5\u05ea \u05d4\u05e9\u05e0\u05d4 \u05e9\u05dc\u05da \u05e2\u05dd \u05db\u05ea\u05d5\u05d1\u05ea \u05d1\u05e1\u05d9\u05e1 \u05d6\u05d5 \u05de\u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05d0\u05d5 \u05d4\u05de\u05d7\u05e9\u05d1 \u05e9\u05dc\u05da.","dav_connect_help2":"\u05e2\u05dc\u05d9\u05da \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e9\u05dd \u05d4\u05db\u05e0\u05d9\u05e1\u05d4 \u05e9\u05dc\u05da (\u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc) \u05d5\u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05e1\u05d9\u05de\u05d5\u05df API \u05d1\u05ea\u05d5\u05e8 \u05e1\u05e1\u05de\u05d4 \u05dc\u05d0\u05d9\u05de\u05d5\u05ea.","dav_copy_help":"\u05d4\u05e2\u05ea\u05e7\u05d4 \u05dc\u05dc\u05d5\u05d7 \u05d4\u05d2\u05d6\u05d9\u05e8\u05d9\u05dd \u05e9\u05dc\u05da","dav_description":"\u05dc\u05d4\u05dc\u05df \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05db\u05dc \u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05de\u05e9\u05d0\u05d1\u05d9 WebDAV \u05e2\u05d1\u05d5\u05e8 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05de\u05d9\u05d5\u05e6\u05d0\u05d9\u05dd \u05de\u05e1\u05d5\u05d2 CardDAV \u05d5\u05beCalDAV.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d1\u05e1\u05d9\u05e1 \u05dc\u05db\u05dc \u05d4\u05de\u05e9\u05d0\u05d1\u05d9\u05dd \u05de\u05e1\u05d5\u05d2 CardDAV \u05d5\u05beCalDAV:","dav_url_caldav_birthdays":"\u05db\u05ea\u05d5\u05d1\u05ea CalDAV \u05dc\u05de\u05e9\u05d0\u05d1\u05d9 \u05d9\u05de\u05d9 \u05d4\u05d5\u05dc\u05d3\u05ea:","dav_url_caldav_tasks":"\u05db\u05ea\u05d5\u05d1\u05ea CalDAV \u05e2\u05d1\u05d5\u05e8 \u05de\u05e9\u05d0\u05d1\u05d9 \u05de\u05e9\u05d9\u05de\u05d5\u05ea:","dav_url_carddav":"\u05db\u05ea\u05d5\u05d1\u05ea CardDAV \u05dc\u05de\u05e9\u05d0\u05d1\u05d9 \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8:","delete_cta":"\u05de\u05d7\u05d9\u05e7\u05ea \u05d7\u05e9\u05d1\u05d5\u05df","delete_desc":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da? \u05de\u05d7\u05d9\u05e7\u05d4 \u05d4\u05d9\u05d0 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea \u05d5\u05db\u05dc \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea \u05d2\u05dd \u05d4\u05dd. \u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05de\u05d9\u05e0\u05d5\u05d9, \u05d4\u05d5\u05d0 \u05d9\u05d1\u05d5\u05d8\u05dc \u05de\u05d9\u05d9\u05d3\u05d9\u05ea.","delete_notice":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da? \u05e4\u05e2\u05d5\u05dc\u05d4 \u05d6\u05d5 \u05d4\u05d9\u05d0 \u05dc\u05e6\u05de\u05d9\u05ea\u05d5\u05ea \u05d5\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05ea\u05e7\u05dd \u05de\u05de\u05e0\u05d4. \u05db\u05dc \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05d5\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05d9\u05d4\u05d9\u05d4 \u05dc\u05e9\u05d7\u05d6\u05e8 \u05d0\u05d5\u05ea\u05dd.","delete_other_desc":"\u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d1\u05de\u05e1\u05d3 \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d4\u05e8\u05d0\u05e9\u05d9 \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05de\u05d9\u05d9\u05d3\u05d9\u05ea. \u05db\u05e4\u05d9 \u05e9\u05de\u05d5\u05e4\u05d9\u05e2 \u05d1\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea \u05e9\u05dc\u05e0\u05d5, \u05d0\u05e0\u05d5 \u05e2\u05d5\u05e8\u05db\u05d9\u05dd \u05d2\u05d9\u05d1\u05d5\u05d9\u05d9\u05dd \u05d9\u05d5\u05de\u05d9\u05d9\u05dd, \u05de\u05d5\u05e6\u05e4\u05e0\u05d9\u05dd \u05d1\u05d1\u05d8\u05d7\u05d4, \u05e9\u05dc \u05de\u05e1\u05d3 \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d5\u05d4\u05dd \u05e0\u05e9\u05de\u05e8\u05d9\u05dd \u05dc\u05de\u05e9\u05da 30 \u05d9\u05de\u05d9\u05dd \u05dc\u05d0\u05d7\u05e8 \u05de\u05d7\u05d9\u05e7\u05d4 \u05de\u05d5\u05d7\u05dc\u05d8\u05ea. \u05d0\u05d9\u05df \u05dc\u05e0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05d7\u05d5\u05e7 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05de\u05e1\u05d5\u05d9\u05de\u05d9\u05dd \u05de\u05ea\u05d5\u05da \u05d4\u05d2\u05d9\u05d1\u05d5\u05d9\u05d9\u05dd \u05e9\u05d0\u05e0\u05d5 \u05de\u05d7\u05d6\u05d9\u05e7\u05d9\u05dd \u05dc\u05e4\u05e0\u05d9 \u05de\u05d5\u05e2\u05d3 \u05ea\u05e4\u05d5\u05d2\u05ea \u05d4\u05ea\u05d5\u05e7\u05e3. \u05db\u05dc \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05dc\u05d7\u05dc\u05d5\u05d8\u05d9\u05df \u05ea\u05d5\u05da 30 \u05d9\u05de\u05d9\u05dd \u05de\u05de\u05d7\u05d9\u05e7\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da.","delete_title":"\u05de\u05d7\u05d9\u05e7\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","email":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc","email_help":"\u05d6\u05d5 \u05d4\u05d9\u05d0 \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05d4\u05de\u05e9\u05de\u05e9\u05ea \u05dc\u05db\u05e0\u05d9\u05e1\u05d4 \u05d5\u05dc\u05e9\u05dd \u05d2\u05dd \u05ea\u05e9\u05dc\u05d7 \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d0\u05ea \u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05e9\u05dc\u05da.","email_placeholder":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc","export_be_patient":"\u05d9\u05e9 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05e2\u05dc \u05d4\u05db\u05e4\u05ea\u05d5\u05e8 \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05d4\u05d9\u05d9\u05e6\u05d5\u05d0. \u05e2\u05d9\u05d1\u05d5\u05d3 \u05d4\u05d9\u05d9\u05e6\u05d5\u05d0 \u05e2\u05e9\u05d5\u05d9 \u05dc\u05d0\u05e8\u05d5\u05da \u05de\u05e1\u05e4\u05e8 \u05d3\u05e7\u05d5\u05ea - \u05e0\u05d0 \u05dc\u05d4\u05ea\u05d0\u05d6\u05e8 \u05d1\u05e1\u05d1\u05dc\u05e0\u05d5\u05ea \u05d5\u05dc\u05d0 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05e2\u05dc \u05d4\u05db\u05e4\u05ea\u05d5\u05e8 \u05e9\u05d5\u05d1.","export_sql_cta":"\u05d9\u05d9\u05e6\u05d5\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05dc\u05beSQL","export_sql_explanation":"\u05d9\u05e6\u05d5\u05d0 \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d1\u05de\u05d1\u05e0\u05d4 SQL \u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05da \u05dc\u05e7\u05d7\u05ea \u05d0\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d5\u05dc\u05d9\u05d9\u05d1\u05d0 \u05d0\u05d5\u05ea\u05dd \u05dc\u05e2\u05d5\u05ea\u05e7 \u05e9\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05de\u05e9\u05dc\u05da. \u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05e9\u05d9\u05de\u05d5\u05e9\u05d9\u05ea \u05dc\u05de\u05e7\u05e8\u05d4 \u05e9\u05d9\u05e9 \u05dc\u05da \u05e2\u05d5\u05ea\u05e7 \u05e9\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05e2\u05dc \u05e9\u05e8\u05ea \u05de\u05e9\u05dc\u05da.","export_sql_link_instructions":"\u05d9\u05e9 \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d0\u05ea \u05d4\u05d4\u05e0\u05d7\u05d9\u05d5\u05ea<\/a> \u05db\u05d3\u05d9 \u05dc\u05d4\u05d1\u05d9\u05df \u05d9\u05d5\u05ea\u05e8 \u05dc\u05e2\u05d5\u05de\u05e7 \u05db\u05d9\u05e6\u05d3 \u05dc\u05d9\u05d9\u05d1\u05d0 \u05d0\u05ea \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d4\u05d6\u05d4 \u05dc\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05ea\u05e7 \u05e9\u05dc\u05da.","export_title":"\u05d9\u05e6\u05d5\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9 \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","export_title_sql":"\u05d9\u05d9\u05e6\u05d5\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05dc\u05beSQL","firstname":"\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9","import_blank_cta":"\u05d9\u05d1\u05d5\u05d0 vCard","import_blank_description":"\u05d9\u05e9 \u05dc\u05e0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d9\u05d9\u05d1\u05d0 \u05e7\u05d5\u05d1\u05e6\u05d9 vCard \u05e9\u05e0\u05d9\u05ea\u05df \u05dc\u05e7\u05d1\u05dc \u05de\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d1\u05beGoogle \u05d0\u05d5 \u05de\u05de\u05e0\u05d4\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da.","import_blank_question":"\u05dc\u05d9\u05d9\u05d1\u05d0 \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05db\u05e2\u05ea?","import_blank_title":"\u05dc\u05d0 \u05d9\u05d9\u05d1\u05d0\u05ea \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05e2\u05d3\u05d9\u05d9\u05df.","import_cta":"\u05e2\u05d3\u05db\u05d5\u05df \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","import_in_progress":"\u05d4\u05d9\u05d9\u05d1\u05d5\u05d0 \u05de\u05ea\u05d1\u05e6\u05e2 \u05db\u05e2\u05ea. \u05d9\u05e9 \u05dc\u05e8\u05e2\u05e0\u05df \u05d0\u05ea \u05d4\u05e2\u05de\u05d5\u05d3 \u05d1\u05e2\u05d5\u05d3 \u05d3\u05e7\u05d4.","import_need_subscription":"\u05d9\u05d1\u05d5\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d3\u05d5\u05e8\u05e9 \u05de\u05d9\u05e0\u05d5\u05d9.","import_report_date":"\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d9\u05d9\u05d1\u05d5\u05d0","import_report_number_contacts":"\u05de\u05e1\u05e4\u05e8 \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05d1\u05e7\u05d5\u05d1\u05e5","import_report_number_contacts_imported":"\u05de\u05e1\u05e4\u05e8 \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05d9\u05d9\u05d5\u05d1\u05d0\u05d5","import_report_number_contacts_skipped":"\u05de\u05e1\u05e4\u05e8 \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05d3\u05d5\u05dc\u05d2\u05d5","import_report_status_imported":"\u05d9\u05d5\u05d1\u05d0\u05d5","import_report_status_skipped":"\u05d3\u05d5\u05dc\u05d2\u05d5","import_report_title":"\u05d3\u05d5\u05d7 \u05d9\u05d1\u05d5\u05d0","import_report_type":"\u05e1\u05d5\u05d2 \u05d4\u05d9\u05d9\u05d1\u05d5\u05d0","import_result_stat":"\u05d4\u05d5\u05e2\u05dc\u05d4 vCard \u05e2\u05dd \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d0\u05d7\u05d3 (:total_imported \u05d9\u05d5\u05d1\u05d0, :total_skipped \u05dc\u05d0 \u05d9\u05d5\u05d1\u05d0)|\u05d4\u05d5\u05e2\u05dc\u05d4 vCard \u05e2\u05dd :total_contacts \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 (:total_imported \u05d9\u05d5\u05d1\u05d0\u05d5, :total_skipped \u05dc\u05d0 \u05d9\u05d5\u05d1\u05d0\u05d5)","import_stat":"\u05d9\u05d9\u05d1\u05d0\u05ea :number \u05e7\u05d1\u05e6\u05d9\u05dd \u05e2\u05d3 \u05db\u05d4.","import_title":"\u05d9\u05d1\u05d5\u05d0 \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","import_upload_behaviour":"\u05d4\u05ea\u05e0\u05d4\u05d2\u05d5\u05ea \u05d4\u05d9\u05d9\u05d1\u05d5\u05d0:","import_upload_behaviour_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05d7\u05d3\u05e9\u05d9\u05dd \u05d5\u05d3\u05d9\u05dc\u05d5\u05d2 \u05e2\u05dc \u05d4\u05e7\u05d9\u05d9\u05de\u05d9\u05dd","import_upload_behaviour_help":"\u05d4\u05d7\u05dc\u05e4\u05d4 \u05ea\u05d5\u05d1\u05d9\u05dc \u05dc\u05d4\u05d7\u05dc\u05e4\u05ea \u05db\u05dc \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05e0\u05de\u05e6\u05d0\u05d9\u05dd \u05d1\u05bevCard \u05d0\u05da \u05d4\u05e9\u05d3\u05d5\u05ea \u05d4\u05e7\u05d9\u05d9\u05de\u05d9\u05dd \u05d9\u05d9\u05e9\u05de\u05e8\u05d5.","import_upload_behaviour_replace":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05e7\u05d9\u05d9\u05de\u05d9\u05dd","import_upload_form_file":"\u05e7\u05d5\u05d1\u05e5 \u05d4\u05be.vcf<\/code> \u05d0\u05d5 \u05d4\u05be.vCard<\/code> \u05e9\u05dc\u05da:","import_upload_rule_cant_revert":"\u05e0\u05d0 \u05dc\u05d5\u05d5\u05d3\u05d0 \u05e9\u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05de\u05d3\u05d5\u05d9\u05e7\u05d9\u05dd \u05d1\u05d8\u05e8\u05dd \u05d4\u05d4\u05e2\u05dc\u05d0\u05d4, \u05db\u05d9\u05d5\u05d5\u05df \u05e9\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d8\u05dc \u05d4\u05e2\u05dc\u05d0\u05d4.","import_upload_rule_format":"\u05d0\u05e0\u05d5 \u05ea\u05d5\u05de\u05db\u05d9\u05dd \u05d1\u05e7\u05d1\u05e6\u05d9\u05dd \u05de\u05d4\u05e1\u05d5\u05d2\u05d9\u05dd .vcard<\/code> \u05d5\u05be.vcf<\/code>","import_upload_rule_instructions":"\u05d4\u05e0\u05d7\u05d9\u05d5\u05ea \u05d9\u05e6\u05d5\u05d0 \u05e2\u05d1\u05d5\u05e8 Contacts.app \u05e9\u05dc macOS<\/a> \u05d5\u05e2\u05d1\u05d5\u05e8 \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc Google<\/a>.","import_upload_rule_limit":"\u05e7\u05d1\u05e6\u05d9\u05dd \u05de\u05d5\u05d2\u05d1\u05dc\u05d9\u05dd \u05dc\u05be10 \u05de\u05f4\u05d1.","import_upload_rule_multiple":"\u05d0\u05dd \u05dc\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05d9\u05e9 \u05de\u05d2\u05d5\u05d5\u05df \u05db\u05ea\u05d5\u05d1\u05d5\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \u05d0\u05d5 \u05de\u05e1\u05e4\u05e8\u05d9 \u05d8\u05dc\u05e4\u05d5\u05df, \u05e8\u05e7 \u05d4\u05e8\u05e9\u05d5\u05de\u05d4 \u05d4\u05e8\u05d0\u05e9\u05d5\u05e0\u05d4 \u05ea\u05d9\u05e9\u05de\u05e8.","import_upload_rule_time":"\u05d4\u05d4\u05e2\u05dc\u05d0\u05d4 \u05d5\u05e2\u05d9\u05d1\u05d5\u05d3 \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e2\u05e9\u05d5\u05d9\u05d9\u05dd \u05dc\u05d0\u05e8\u05d5\u05da \u05e2\u05d3 \u05d3\u05e7\u05d4. \u05e0\u05d0 \u05dc\u05d4\u05ea\u05d0\u05d6\u05e8 \u05d1\u05e1\u05d1\u05dc\u05e0\u05d5\u05ea.","import_upload_rule_vcard":"\u05d0\u05e0\u05d5 \u05ea\u05d5\u05de\u05db\u05d9\u05dd \u05d1\u05bevCard \u05d2\u05e8\u05e1\u05d4 3.0, \u05e9\u05d4\u05d9\u05d0 \u05d2\u05e8\u05e1\u05ea \u05d1\u05e8\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc \u05e2\u05d1\u05d5\u05e8 Contacts.app \u05e9\u05dc macOS \u05d5\u05e2\u05d1\u05d5\u05e8 Google Contacts.","import_upload_rules_desc":"\u05e2\u05dd \u05d6\u05d0\u05ea, \u05d7\u05dc\u05d9\u05dd \u05db\u05d0\u05df \u05d7\u05d5\u05e7\u05d9\u05dd \u05db\u05dc\u05e9\u05d4\u05dd:","import_upload_title":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d9\u05d9\u05d1\u05d0 \u05d0\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05de\u05e7\u05d5\u05d1\u05e5 vCard","import_vcard_contact_exist":"\u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05db\u05d1\u05e8 \u05e7\u05d9\u05d9\u05dd","import_vcard_contact_no_firstname":"\u05d0\u05d9\u05df \u05e9\u05dd \u05e4\u05e8\u05d8\u05d9 (\u05d7\u05d5\u05d1\u05d4)","import_vcard_file_no_entries":"\u05d0\u05d9\u05df \u05e8\u05e9\u05d5\u05de\u05d5\u05ea \u05d1\u05e7\u05d5\u05d1\u05e5","import_vcard_file_not_found":"\u05d4\u05e7\u05d5\u05d1\u05e5 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0","import_vcard_parse_error":"\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05e0\u05d9\u05ea\u05d5\u05d7 \u05e8\u05e9\u05d5\u05de\u05ea vCard","import_vcard_unknown_entry":"\u05e9\u05dd \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05d0\u05d9\u05e0\u05d5 \u05de\u05d5\u05db\u05e8","import_view_report":"\u05e6\u05e4\u05d9\u05d9\u05d4 \u05d1\u05d3\u05d5\u05f4\u05d7","lastname":"\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4","layout":"\u05e4\u05e8\u05d9\u05e1\u05d4","layout_big":"\u05d4\u05e8\u05d5\u05d7\u05d1 \u05d4\u05de\u05dc\u05d0 \u05e9\u05dc \u05d4\u05d3\u05e4\u05d3\u05e4\u05df","layout_small":"\u05e8\u05d5\u05d7\u05d1 \u05e9\u05dc 1200 \u05e4\u05d9\u05e7\u05e1\u05dc\u05d9\u05dd \u05dc\u05db\u05dc \u05d4\u05d9\u05d5\u05ea\u05e8","locale":"\u05e9\u05e4\u05d4 \u05d1\u05d4 \u05e0\u05e2\u05e9\u05d4 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d9\u05d9\u05e9\u05d5\u05dd","locale_ar":"\u05e2\u05e8\u05d1\u05d9\u05ea","locale_cs":"\u05e6\u05f3\u05db\u05d9\u05ea","locale_de":"\u05d2\u05e8\u05de\u05e0\u05d9\u05ea","locale_en":"\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea","locale_en-GB":"\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea \u05d1\u05e8\u05d9\u05d8\u05d9\u05ea","locale_es":"\u05e1\u05e4\u05e8\u05d3\u05d9\u05ea","locale_fr":"\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea","locale_he":"\u05e2\u05d1\u05e8\u05d9\u05ea","locale_help":"\u05de\u05e2\u05e0\u05d9\u05d9\u05df \u05d0\u05d5\u05ea\u05da \u05dc\u05e1\u05d9\u05d9\u05e2 \u05d1\u05ea\u05e8\u05d2\u05d5\u05dd \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05dc\u05e9\u05e4\u05d4 \u05d7\u05d3\u05e9\u05d4? \u05e0\u05d0 \u05dc\u05d4\u05d9\u05db\u05e0\u05e1 \u05dc\u05e7\u05d9\u05e9\u05d5\u05e8 \u05d4\u05d1\u05d0 \u05dc\u05e7\u05d1\u05dc\u05ea \u05de\u05d9\u05d3\u05e2 \u05e0\u05d5\u05e1\u05e3<\/a>.","locale_hr":"\u05e7\u05e8\u05d5\u05d0\u05d8\u05d9\u05ea","locale_it":"\u05d0\u05d9\u05d8\u05dc\u05e7\u05d9\u05ea","locale_ja":"\u05d9\u05e4\u05e0\u05d9\u05ea","locale_nl":"\u05d4\u05d5\u05dc\u05e0\u05d3\u05d9\u05ea","locale_pt":"\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05dc\u05d9\u05ea","locale_pt-BR":"\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05dc\u05d9\u05ea \u05d1\u05e8\u05d6\u05d9\u05dc\u05d0\u05d9\u05ea","locale_ru":"\u05e8\u05d5\u05e1\u05d9\u05ea","locale_sv":"\u05e9\u05d5\u05d5\u05d3\u05d9\u05ea","locale_tr":"\u05d8\u05d5\u05e8\u05e7\u05d9\u05ea","locale_zh":"\u05e1\u05d9\u05e0\u05d9\u05ea \u05de\u05e4\u05d5\u05e9\u05d8\u05ea","locale_zh-TW":"\u05e1\u05d9\u05e0\u05d9\u05ea \u05de\u05e1\u05d5\u05e8\u05ea\u05d9\u05ea","logs_actor":"\u05d2\u05d5\u05e8\u05dd","logs_description":"\u05ea\u05d9\u05d0\u05d5\u05e8","logs_object":"\u05e2\u05e6\u05dd","logs_size":"\u05d2\u05d5\u05d3\u05dc (\u05e7\u05f4\u05e1)","logs_subject":"\u05e0\u05d5\u05e9\u05d0","logs_timestamp":"\u05d7\u05d5\u05ea\u05de\u05ea \u05d6\u05de\u05df","logs_title":"\u05db\u05dc \u05de\u05d4 \u05e9\u05e7\u05e8\u05d4 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05d4\u05d6\u05d4","me_choose":"\u05d1\u05d7\u05d9\u05e8\u05d4 \u05e2\u05e6\u05de\u05d9\u05ea","me_choose_placeholder":"\u05d1\u05d7\u05d9\u05e8\u05d4 \u05e2\u05e6\u05de\u05d9\u05ea","me_help":"\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d6\u05d4 \u05d0\u05d5 \u05d4\u05d9\u05d9\u05e6\u05d5\u05d2 \u05e9\u05dc\u05da<\/em> \u05d1\u05de\u05d5\u05e0\u05d9\u05e7\u05d4","me_no_contact":"\u05d8\u05e8\u05dd \u05e0\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8.","me_remove_contact":"\u05d4\u05e1\u05e8\u05ea \u05d4\u05e9\u05d9\u05d5\u05da","me_select":"\u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8","me_select_click":"\u05d9\u05e9 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05db\u05d0\u05df \u05db\u05d3\u05d9 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8.","me_title":"\u05d0\u05d5\u05ea\u05d9 \u05db\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8","name":"\u05e9\u05de\u05da: :name","name_order":"\u05e1\u05d3\u05e8 \u05d4\u05e9\u05de\u05d5\u05ea","name_order_firstname_lastname":"<\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> <\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> \u2013 \u05d9\u05e9\u05e8\u05d0\u05dc \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9","name_order_firstname_lastname_nickname":"<\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> <\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> (<\u05db\u05d9\u05e0\u05d5\u05d9>) \u2013 \u05d9\u05e9\u05e8\u05d0\u05dc \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7)","name_order_firstname_nickname_lastname":"<\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> (<\u05db\u05d9\u05e0\u05d5\u05d9>) <\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> \u2013 \u05d9\u05e9\u05e8\u05d0\u05dc (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7) \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9","name_order_lastname_firstname":"<\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> <\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> \u2013 \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 \u05d9\u05e9\u05e8\u05d0\u05dc","name_order_lastname_firstname_nickname":" () \u2013 \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 \u05d9\u05e9\u05e8\u05d0\u05dc (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7)","name_order_lastname_nickname_firstname":" () \u2013 \u05d9\u05e9\u05e8\u05d0\u05dc (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7) \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9","name_order_nickname":"<\u05db\u05d9\u05e0\u05d5\u05d9> \u2013 \u05e9\u05e8\u05d5\u05dc\u05d9\u05e7","name_order_nickname_firstname_lastname":"<\u05db\u05d9\u05e0\u05d5\u05d9>\u200f (<\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> <\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9>) \u2013 \u05e9\u05e8\u05d5\u05dc\u05d9\u05e7 (\u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 \u05d9\u05e9\u05e8\u05d0\u05dc)","password_btn":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05e1\u05e1\u05de\u05d4","password_change":"\u05dc\u05d4\u05d7\u05dc\u05d9\u05e3 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05e9\u05dc\u05da","password_current":"\u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea","password_current_placeholder":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea \u05e9\u05dc\u05da","password_new1":"\u05e1\u05e1\u05de\u05d4 \u05d7\u05d3\u05e9\u05d4","password_new1_placeholder":"\u05dc\u05de\u05dc\u05d0 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4 \u05e9\u05dc\u05da","password_new2":"\u05d0\u05d9\u05e9\u05d5\u05e8 \u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4 \u05e9\u05dc\u05da","password_new2_placeholder":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4 \u05e9\u05dc\u05da \u05e9\u05d5\u05d1","personalisation_paid_upgrade":"\u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05d4\u05d9\u05d0 \u05ea\u05db\u05d5\u05e0\u05ea \u05e4\u05e8\u05de\u05d9\u05d5\u05dd \u05e9\u05d3\u05d5\u05e8\u05e9\u05ea \u05d4\u05e4\u05e2\u05dc\u05ea \u05de\u05d9\u05e0\u05d5\u05d9 \u05d1\u05ea\u05e9\u05dc\u05d5\u05dd. \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05e2\u05dc \u05d9\u05d3\u05d9 \u05de\u05e2\u05d1\u05e8 \u05dc\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea > \u05de\u05d9\u05e0\u05d5\u05d9<\/a>.","personalisation_paid_upgrade_vue":"\u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05d4\u05d9\u05d0 \u05ea\u05db\u05d5\u05e0\u05ea \u05e4\u05e8\u05de\u05d9\u05d5\u05dd \u05e9\u05d3\u05d5\u05e8\u05e9\u05ea \u05d4\u05e4\u05e2\u05dc\u05ea \u05de\u05d9\u05e0\u05d5\u05d9 \u05d1\u05ea\u05e9\u05dc\u05d5\u05dd. \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05e2\u05dc \u05d9\u05d3\u05d9 \u05de\u05e2\u05d1\u05e8 \u05dc\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea > \u05de\u05d9\u05e0\u05d5\u05d9<\/a>.","personalization_activity_type_add_button":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d7\u05d3\u05e9","personalization_activity_type_category_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d7\u05d3\u05e9\u05d4","personalization_activity_type_category_description":"\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05e2\u05dd \u05d0\u05d7\u05d3 \u05de\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05d9\u05db\u05d5\u05dc\u05d4 \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05e1\u05d5\u05d2 \u05d5\u05e1\u05d5\u05d2 \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05de\u05e1\u05d5\u05d9\u05de\u05d9\u05dd. \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05de\u05d5\u05d2\u05d3\u05e8 \u05de\u05e8\u05d0\u05e9 \u05e2\u05dd \u05e1\u05d5\u05d2\u05d9 \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea \u05db\u05dc\u05e9\u05d4\u05dd \u05db\u05d1\u05e8\u05e8\u05ea \u05de\u05d7\u05d3\u05dc, \u05d0\u05da \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05ea\u05d0\u05d9\u05dd \u05d0\u05d5\u05ea\u05dd \u05d3\u05e8\u05da \u05db\u05d0\u05df.","personalization_activity_type_category_modal_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d7\u05d3\u05e9\u05d4","personalization_activity_type_category_modal_delete":"\u05de\u05d7\u05d9\u05e7\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","personalization_activity_type_category_modal_delete_desc":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05d4\u05d6\u05d0\u05ea? \u05de\u05d7\u05d9\u05e7\u05ea\u05d4 \u05ea\u05de\u05d7\u05e7 \u05d0\u05ea \u05db\u05dc \u05e1\u05d5\u05d2\u05d9 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05de\u05e9\u05d5\u05d9\u05db\u05d9\u05dd. \u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea \u05e9\u05d0\u05d9\u05e0\u05df \u05e9\u05d9\u05d9\u05db\u05d5\u05ea \u05dc\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05d4\u05d6\u05d0\u05ea \u05dc\u05d0 \u05ea\u05d5\u05e9\u05e4\u05e2\u05e0\u05d4 \u05de\u05d4\u05de\u05d7\u05d9\u05e7\u05d4.","personalization_activity_type_category_modal_delete_error":"\u05d0\u05d9\u05df \u05dc\u05e0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05e1\u05d5\u05d2 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05d6\u05d5.","personalization_activity_type_category_modal_edit":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d9\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","personalization_activity_type_category_modal_question":"\u05d0\u05d9\u05da \u05d9\u05e9 \u05dc\u05e7\u05e8\u05d5\u05d0 \u05dc\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4?","personalization_activity_type_category_table_actions":"\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea","personalization_activity_type_category_table_name":"\u05e9\u05dd","personalization_activity_type_category_title":"\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea \u05e1\u05d5\u05d2\u05d9 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","personalization_activity_type_modal_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d7\u05d3\u05e9","personalization_activity_type_modal_delete":"\u05de\u05d7\u05d9\u05e7\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","personalization_activity_type_modal_delete_desc":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05e1\u05d5\u05d2 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05d4\u05d6\u05d4? \u05e4\u05e2\u05d9\u05dc\u05d5\u05d9\u05d5\u05ea \u05e9\u05e9\u05d9\u05d9\u05db\u05d5\u05ea \u05dc\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05d6\u05d5 \u05dc\u05d0 \u05ea\u05d5\u05e9\u05e4\u05e2\u05e0\u05d4 \u05de\u05d4\u05de\u05d7\u05d9\u05e7\u05d4 \u05d4\u05d6\u05d0\u05ea.","personalization_activity_type_modal_delete_error":"\u05d0\u05d9\u05df \u05dc\u05e0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05e1\u05d5\u05d2 \u05d4\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea.","personalization_activity_type_modal_edit":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e1\u05d5\u05d2 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","personalization_activity_type_modal_question":"\u05d0\u05d9\u05da \u05d9\u05e9 \u05dc\u05e7\u05e8\u05d5\u05d0 \u05dc\u05e1\u05d5\u05d2 \u05d4\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4 \u05d4\u05d7\u05d3\u05e9?","personalization_contact_field_type_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d7\u05d3\u05e9","personalization_contact_field_type_add_success":"\u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05e0\u05d5\u05e1\u05e3 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","personalization_contact_field_type_delete_success":"\u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05e0\u05de\u05d7\u05e7 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","personalization_contact_field_type_description":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05d0\u05ea \u05db\u05dc \u05d4\u05e1\u05d5\u05d2\u05d9\u05dd \u05d4\u05e9\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc \u05e9\u05d3\u05d5\u05ea \u05e9\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d9\u05d9\u05da \u05dc\u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da. \u05dc\u05de\u05e9\u05dc, \u05d0\u05dd \u05d1\u05e2\u05ea\u05d9\u05d3 \u05ea\u05d5\u05e4\u05d9\u05e2 \u05e8\u05e9\u05ea \u05d7\u05d1\u05e8\u05ea\u05d9\u05ea \u05d7\u05d3\u05e9\u05d4, \u05ea\u05d4\u05d9\u05d4 \u05dc\u05da \u05d4\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05d3\u05e8\u05da \u05d4\u05ea\u05e7\u05e9\u05d5\u05e8\u05ea \u05d4\u05d7\u05d3\u05e9\u05d4 \u05d4\u05d6\u05d0\u05ea \u05de\u05d5\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05de\u05de\u05e9 \u05de\u05db\u05d0\u05df.","personalization_contact_field_type_edit_success":"\u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","personalization_contact_field_type_modal_delete_description":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05e1\u05d5\u05d2 \u05d4\u05e9\u05d3\u05d4 \u05d4\u05d6\u05d4 \u05e9\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8? \u05de\u05d7\u05d9\u05e7\u05ea \u05e1\u05d5\u05d2 \u05d6\u05d4 \u05e9\u05dc \u05e9\u05d3\u05d4 \u05dc\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05d9\u05de\u05d7\u05e7 \u05d0\u05ea \u05db\u05dc \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05de\u05e1\u05d5\u05d2 \u05d6\u05d4 \u05e2\u05d1\u05d5\u05e8 \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da.","personalization_contact_field_type_modal_delete_title":"\u05de\u05d7\u05d9\u05e7\u05ea \u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05e7\u05d9\u05d9\u05dd \u05dc\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","personalization_contact_field_type_modal_edit_title":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05e7\u05d9\u05d9\u05dd \u05dc\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","personalization_contact_field_type_modal_icon":"\u05e1\u05de\u05dc (\u05e8\u05e9\u05d5\u05ea)","personalization_contact_field_type_modal_icon_help":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d9\u05d9\u05da \u05e1\u05de\u05dc \u05e2\u05dd \u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d6\u05d4. \u05d9\u05d4\u05d9\u05d4 \u05e2\u05dc\u05d9\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d4\u05e4\u05e0\u05d9\u05d4 \u05dc\u05e1\u05de\u05dc \u05de\u05ea\u05d5\u05da Font Awesome.","personalization_contact_field_type_modal_name":"\u05e9\u05dd","personalization_contact_field_type_modal_protocol":"\u05e4\u05e8\u05d5\u05d8\u05d5\u05e7\u05d5\u05dc (\u05e8\u05e9\u05d5\u05ea)","personalization_contact_field_type_modal_protocol_help":"\u05db\u05dc \u05e1\u05d5\u05d2 \u05d7\u05d3\u05e9 \u05e9\u05dc \u05e9\u05d3\u05d4 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d0\u05de\u05d5\u05e8 \u05dc\u05ea\u05de\u05d5\u05da \u05d1\u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc\u05d9\u05d5. \u05d0\u05dd \u05de\u05d5\u05d2\u05d3\u05e8 \u05e4\u05e8\u05d5\u05d8\u05d5\u05e7\u05d5\u05dc, \u05d0\u05e0\u05d5 \u05e0\u05e9\u05ea\u05de\u05e9 \u05d1\u05dc\u05d7\u05d9\u05e6\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05d0\u05ea \u05d4\u05e4\u05e2\u05d5\u05dc\u05d4 \u05e9\u05d4\u05d5\u05d2\u05d3\u05e8\u05d4.","personalization_contact_field_type_modal_title":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05e9\u05d3\u05d4 \u05d7\u05d3\u05e9 \u05dc\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","personalization_contact_field_type_table_actions":"\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea","personalization_contact_field_type_table_name":"\u05e9\u05dd","personalization_contact_field_type_table_protocol":"\u05e4\u05e8\u05d5\u05d8\u05d5\u05e7\u05d5\u05dc","personalization_contact_field_type_title":"\u05e1\u05d5\u05d2\u05d9 \u05e9\u05d3\u05d5\u05ea \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","personalization_genders_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05de\u05d2\u05d3\u05e8 \u05d7\u05d3\u05e9","personalization_genders_default":"\u05de\u05d2\u05d3\u05e8 \u05d1\u05e8\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc","personalization_genders_desc":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05db\u05de\u05d4 \u05de\u05d2\u05d3\u05e8\u05d9\u05dd \u05e9\u05d9\u05e9 \u05dc\u05da \u05e6\u05d5\u05e8\u05da \u05d1\u05d4\u05dd. \u05e6\u05e8\u05d9\u05da \u05dc\u05e4\u05d7\u05d5\u05ea \u05e1\u05d5\u05d2 \u05de\u05d2\u05d3\u05e8 \u05d0\u05d7\u05d3 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da.","personalization_genders_f":"\u05e0\u05e7\u05d1\u05d4","personalization_genders_list_contact_number":"\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d0\u05d7\u05d3|{count} \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","personalization_genders_m":"\u05d6\u05db\u05e8","personalization_genders_make_default":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05de\u05d2\u05d3\u05e8 \u05d1\u05e8\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc","personalization_genders_modal_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05de\u05d2\u05d3\u05e8","personalization_genders_modal_default":"\u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05ea \u05de\u05d2\u05d3\u05e8 \u05d1\u05e8\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc \u05dc\u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05d7\u05d3\u05e9\u05d9\u05dd","personalization_genders_modal_delete":"\u05de\u05d7\u05d9\u05e7\u05ea \u05e1\u05d5\u05d2 \u05de\u05d2\u05d3\u05e8","personalization_genders_modal_delete_desc":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05de\u05d2\u05d3\u05e8 \u201e{name}\u201d?","personalization_genders_modal_delete_question":"\u05dc\u05d0\u05d7\u05d3 \u05de\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05de\u05d5\u05d2\u05d3\u05e8 \u05d4\u05de\u05d2\u05d3\u05e8 \u05d4\u05d6\u05d4. \u05d0\u05dd \u05d4\u05de\u05d2\u05d3\u05e8 \u05d9\u05d9\u05de\u05d7\u05e7, \u05dc\u05d0\u05d9\u05d6\u05d4 \u05de\u05d2\u05d3\u05e8 \u05dc\u05e9\u05d9\u05d9\u05da \u05d0\u05ea \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8?|\u05dc\u05be{count} \u05de\u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05de\u05d5\u05d2\u05d3\u05e8 \u05d4\u05de\u05d2\u05d3\u05e8 \u05d4\u05d6\u05d4. \u05d0\u05dd \u05d4\u05de\u05d2\u05d3\u05e8 \u05d9\u05d9\u05de\u05d7\u05e7, \u05dc\u05d0\u05d9\u05d6\u05d4 \u05de\u05d2\u05d3\u05e8 \u05dc\u05e9\u05d9\u05d9\u05da \u05d0\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8?","personalization_genders_modal_delete_question_default":"\u05de\u05d2\u05d3\u05e8 \u05d6\u05d4 \u05d4\u05d5\u05d0 \u05d1\u05e8\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc. \u05dc\u05d0\u05d7\u05e8 \u05de\u05d7\u05d9\u05e7\u05ea \u05de\u05d2\u05d3\u05e8 \u05d6\u05d4, \u05d0\u05d9\u05d6\u05d4 \u05de\u05d2\u05d3\u05e8 \u05d9\u05d5\u05d2\u05d3\u05e8 \u05db\u05d1\u05e8\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc \u05d4\u05d7\u05d3\u05e9\u05d4?","personalization_genders_modal_edit":"\u05e2\u05d3\u05db\u05d5\u05df \u05e1\u05d5\u05d2 \u05de\u05d2\u05d3\u05e8","personalization_genders_modal_error":"\u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d1\u05de\u05d2\u05d3\u05e8 \u05de\u05d4\u05e8\u05e9\u05d9\u05de\u05d4.","personalization_genders_modal_name":"\u05e9\u05dd","personalization_genders_modal_name_help":"\u05d4\u05e9\u05dd \u05d4\u05de\u05e9\u05de\u05e9 \u05dc\u05d4\u05e6\u05d2\u05ea \u05d4\u05de\u05d2\u05d3\u05e8 \u05d1\u05e2\u05de\u05d5\u05d3 \u05d9\u05e6\u05d9\u05e8\u05ea \u05d4\u05e7\u05e9\u05e8.","personalization_genders_modal_sex":"\u05de\u05d2\u05d3\u05e8","personalization_genders_modal_sex_help":"\u05de\u05e9\u05de\u05e9 \u05dc\u05e6\u05d9\u05d5\u05df \u05d9\u05d7\u05e1\u05d9\u05dd \u05d5\u05de\u05d4\u05dc\u05da \u05d9\u05d9\u05d1\u05d5\u05d0\/\u05d9\u05d9\u05e6\u05d5\u05d0 \u05e9\u05dc \u05db\u05e8\u05d8\u05d9\u05e1 \u05d1\u05d9\u05e7\u05d5\u05e8 - vCard.","personalization_genders_n":"\u05d0\u05d9\u05df \u05d0\u05d5 \u05e9\u05dc\u05d0 \u05de\u05e9\u05e0\u05d4","personalization_genders_o":"\u05d0\u05d7\u05e8","personalization_genders_select_default":"\u05d1\u05d7\u05d9\u05e8\u05ea \u05de\u05d2\u05d3\u05e8 \u05d1\u05e8\u05e8\u05ea \u05de\u05d7\u05d3\u05dc","personalization_genders_table_default":"\u05d1\u05e8\u05e8\u05ea \u05de\u05d7\u05d3\u05dc","personalization_genders_table_name":"\u05e9\u05dd","personalization_genders_table_sex":"\u05de\u05d2\u05d3\u05e8","personalization_genders_title":"\u05e1\u05d5\u05d2\u05d9 \u05de\u05d2\u05d3\u05e8","personalization_genders_u":"\u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2","personalization_life_event_category_description":"\u05dc\u05d0\u05d9\u05e8\u05d5\u05e2 \u05d7\u05d9\u05d9\u05dd \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05e1\u05d5\u05d2 \u05d5\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d4. \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05db\u05d1\u05e8 \u05e0\u05d5\u05e6\u05e8\u05d5 \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea \u05d5\u05e1\u05d5\u05d2\u05d9\u05dd \u05db\u05d1\u05e8\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05d0\u05da \u05e0\u05d9\u05ea\u05df \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05e1\u05d5\u05d2\u05d9 \u05d0\u05d9\u05e8\u05d5\u05e2\u05d9 \u05d4\u05d7\u05d9\u05d9\u05dd \u05dc\u05d4\u05dc\u05df.","personalization_life_event_category_family_relationships":"\u05de\u05e9\u05e4\u05d7\u05d4 \u05d5\u05d9\u05d7\u05e1\u05d9\u05dd","personalization_life_event_category_health_wellness":"\u05d1\u05e8\u05d9\u05d0\u05d5\u05ea \u05d5\u05e8\u05d5\u05d5\u05d7\u05d4","personalization_life_event_category_home_living":"\u05d1\u05d9\u05ea \u05d5\u05de\u05d7\u05d9\u05d9\u05d4","personalization_life_event_category_title":"\u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea \u05d0\u05d9\u05e8\u05d5\u05e2\u05d9 \u05d7\u05d9\u05d9\u05dd","personalization_life_event_category_travel_experiences":"\u05d8\u05d9\u05d5\u05dc \u05d5\u05d7\u05d5\u05d5\u05d9\u05d5\u05ea","personalization_life_event_category_work_education":"\u05e2\u05d1\u05d5\u05d3\u05d4 \u05d5\u05d4\u05e9\u05db\u05dc\u05d4","personalization_life_event_type_achievement_or_award":"\u05d4\u05d9\u05e9\u05d2 \u05d0\u05d5 \u05e4\u05e8\u05e1","personalization_life_event_type_add_button":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05d7\u05d3\u05e9 \u05e9\u05dc \u05d0\u05d9\u05e8\u05d5\u05e2 \u05d7\u05d9\u05d9\u05dd","personalization_life_event_type_anniversary":"\u05d9\u05d5\u05dd \u05d4\u05e9\u05e0\u05d4","personalization_life_event_type_bought_a_home":"\u05e8\u05db\u05d9\u05e9\u05ea \u05d3\u05d9\u05e8\u05d4","personalization_life_event_type_broken_bone":"\u05e9\u05d1\u05d9\u05e8\u05ea \u05e2\u05e6\u05dd","personalization_life_event_type_changed_beliefs":"\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d0\u05de\u05d5\u05e0\u05d4","personalization_life_event_type_dentist":"\u05dc\u05d0\u05d7\u05e8 \u05d8\u05d9\u05e4\u05d5\u05dc \u05e9\u05d9\u05e0\u05d9\u05d9\u05dd","personalization_life_event_type_end_of_relationship":"\u05e1\u05d9\u05d5\u05dd \u05e7\u05e9\u05e8","personalization_life_event_type_engagement":"\u05d0\u05d9\u05e8\u05d5\u05e1\u05d9\u05df","personalization_life_event_type_expecting_a_baby":"\u05d1\u05e6\u05d9\u05e4\u05d9\u05d9\u05d4 \u05dc\u05ea\u05d9\u05e0\u05d5\u05e7","personalization_life_event_type_first_kiss":"\u05e0\u05e9\u05d9\u05e7\u05d4 \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4","personalization_life_event_type_first_met":"\u05e4\u05d2\u05d9\u05e9\u05d4 \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4","personalization_life_event_type_first_word":"\u05de\u05d9\u05dc\u05d4 \u05e8\u05d0\u05e9\u05d5\u05e0\u05d4","personalization_life_event_type_holidays":"\u05d7\u05d2\u05d9\u05dd","personalization_life_event_type_home_improvement":"\u05e9\u05d9\u05e4\u05d5\u05e5 \u05d4\u05d1\u05d9\u05ea","personalization_life_event_type_loss_of_a_loved_one":"\u05d0\u05d5\u05d1\u05d3\u05df \u05e9\u05dc \u05d0\u05d3\u05dd \u05e7\u05e8\u05d5\u05d1","personalization_life_event_type_marriage":"\u05e0\u05d9\u05e9\u05d5\u05d0\u05d9\u05df","personalization_life_event_type_military_service":"\u05e9\u05d9\u05e8\u05d5\u05ea \u05e6\u05d1\u05d0\u05d9","personalization_life_event_type_modal_add":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05e1\u05d5\u05d2 \u05d7\u05d3\u05e9 \u05e9\u05dc \u05d0\u05d9\u05e8\u05d5\u05e2 \u05d7\u05d9\u05d9\u05dd","personalization_life_event_type_modal_delete":"\u05de\u05d7\u05d9\u05e7\u05ea \u05e1\u05d5\u05d2 \u05d0\u05d9\u05e8\u05d5\u05e2 \u05d7\u05d9\u05d9\u05dd","personalization_life_event_type_modal_delete_desc":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05e1\u05d5\u05d2 \u05d0\u05d9\u05e8\u05d5\u05e2 \u05d7\u05d9\u05d9\u05dd? \u05d0\u05d9\u05e8\u05d5\u05e2\u05d9 \u05d7\u05d9\u05d9\u05dd \u05e9\u05e9\u05d9\u05d9\u05db\u05d9\u05dd \u05dc\u05e1\u05d5\u05d2 \u05d4\u05d6\u05d4 \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05e2\u05dd \u05d1\u05d9\u05e6\u05d5\u05e2 \u05d4\u05e4\u05e2\u05d5\u05dc\u05d4.","personalization_life_event_type_modal_delete_error":"\u05dc\u05d0 \u05d4\u05e6\u05dc\u05d7\u05e0\u05d5 \u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05e1\u05d5\u05d2 \u05d0\u05d9\u05e8\u05d5\u05e2 \u05d7\u05d9\u05d9\u05dd \u05d6\u05d4.","personalization_life_event_type_modal_edit":"\u05e2\u05e8\u05d9\u05db\u05ea \u05e1\u05d5\u05d2 \u05d0\u05d9\u05e8\u05d5\u05e2 \u05d7\u05d9\u05d9\u05dd","personalization_life_event_type_modal_question":"\u05d0\u05d9\u05da \u05d9\u05e9 \u05dc\u05e7\u05e8\u05d5\u05d0 \u05dc\u05e1\u05d5\u05d2 \u05d0\u05d9\u05e8\u05d5\u05e2 \u05d4\u05d7\u05d9\u05d9\u05dd \u05d4\u05d7\u05d3\u05e9?","personalization_life_event_type_moved":"\u05de\u05e2\u05d1\u05e8 \u05d3\u05d9\u05e8\u05d4","personalization_life_event_type_new_child":"\u05d9\u05dc\u05d3 \u05d7\u05d3\u05e9","personalization_life_event_type_new_eating_habits":"\u05d4\u05e8\u05d2\u05dc\u05d9 \u05d0\u05db\u05d9\u05dc\u05d4 \u05d7\u05d3\u05e9\u05d9\u05dd","personalization_life_event_type_new_family_member":"\u05d7\u05d1\u05e8 \u05d7\u05d3\u05e9 \u05d1\u05de\u05e9\u05e4\u05d7\u05d4","personalization_life_event_type_new_hobby":"\u05d0\u05d9\u05de\u05d5\u05e5 \u05ea\u05d7\u05d1\u05d9\u05d1 \u05d7\u05d3\u05e9","personalization_life_event_type_new_instrument":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05dc\u05de\u05d9\u05d3\u05ea \u05db\u05dc\u05d9 \u05e0\u05d2\u05d9\u05e0\u05d4 \u05d7\u05d3\u05e9","personalization_life_event_type_new_job":"\u05e2\u05d1\u05d5\u05d3\u05d4 \u05d7\u05d3\u05e9\u05d4","personalization_life_event_type_new_language":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05e8\u05db\u05d9\u05e9\u05ea \u05e9\u05e4\u05d4 \u05d7\u05d3\u05e9\u05d4","personalization_life_event_type_new_license":"\u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05d7\u05d3\u05e9","personalization_life_event_type_new_pet":"\u05d7\u05d9\u05d9\u05ea \u05de\u05d7\u05de\u05d3 \u05d7\u05d3\u05e9\u05d4","personalization_life_event_type_new_relationship":"\u05e7\u05e9\u05e8 \u05d7\u05d3\u05e9","personalization_life_event_type_new_roommate":"\u05e9\u05d5\u05ea\u05e3\/\u05e9\u05d5\u05ea\u05e4\u05d4 \u05d7\u05d3\u05e9\/\u05d4","personalization_life_event_type_new_school":"\u05d1\u05d9\u05ea \u05e1\u05e4\u05e8 \u05d7\u05d3\u05e9","personalization_life_event_type_new_sport":"\u05e2\u05d9\u05e1\u05d5\u05e7 \u05d1\u05e1\u05e4\u05d5\u05e8\u05d8 \u05d7\u05d3\u05e9","personalization_life_event_type_new_vehicle":"\u05db\u05dc\u05d9 \u05e8\u05db\u05d1 \u05d7\u05d3\u05e9","personalization_life_event_type_overcame_an_illness":"\u05d4\u05d7\u05dc\u05de\u05d4 \u05de\u05de\u05d7\u05dc\u05d4","personalization_life_event_type_published_book_or_paper":"\u05e4\u05e8\u05e1\u05d5\u05dd \u05e9\u05dc \u05e1\u05e4\u05e8 \u05d0\u05d5 \u05de\u05d0\u05de\u05e8","personalization_life_event_type_quit_a_habit":"\u05d2\u05de\u05d9\u05dc\u05d4","personalization_life_event_type_removed_braces":"\u05d4\u05e1\u05e8\u05ea \u05d2\u05e9\u05e8 \u05d1\u05e9\u05d9\u05e0\u05d9\u05d9\u05dd","personalization_life_event_type_retirement":"\u05e4\u05e8\u05d9\u05e9\u05d4","personalization_life_event_type_study_abroad":"\u05dc\u05d9\u05de\u05d5\u05d3\u05d9\u05dd \u05d1\u05d7\u05d5\u05f4\u05dc","personalization_life_event_type_surgery":"\u05dc\u05d0\u05d7\u05e8 \u05e0\u05d9\u05ea\u05d5\u05d7","personalization_life_event_type_tattoo_or_piercing":"\u05e7\u05e2\u05e7\u05d5\u05e2 \u05d0\u05d5 \u05e4\u05d9\u05e8\u05e1\u05d9\u05e0\u05d2","personalization_life_event_type_travel":"\u05d8\u05d9\u05d5\u05dc","personalization_life_event_type_volunteer_work":"\u05e2\u05d1\u05d5\u05d3\u05d4 \u05d4\u05ea\u05e0\u05d3\u05d1\u05d5\u05ea\u05d9\u05ea","personalization_life_event_type_wear_glass_or_contact":"\u05d4\u05ea\u05d7\u05dc\u05ea \u05d4\u05e8\u05db\u05d1\u05ea \u05de\u05e9\u05e7\u05e4\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e2\u05d3\u05e9\u05d5\u05ea \u05de\u05d2\u05e2","personalization_life_event_type_weight_loss":"\u05d9\u05e8\u05d9\u05d3\u05d4 \u05d1\u05de\u05e9\u05e7\u05dc","personalization_live_event_category_table_actions":"\u05e4\u05e2\u05d5\u05dc\u05d5\u05ea","personalization_live_event_category_table_name":"\u05e9\u05dd","personalization_module_desc":"\u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05e9\u05d0\u05d9\u05df \u05dc\u05da \u05e6\u05d5\u05e8\u05da \u05d1\u05db\u05dc \u05d4\u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05e9\u05dc \u05de\u05d5\u05e0\u05d9\u05e7\u05d4. \u05dc\u05d4\u05dc\u05df \u05e0\u05d9\u05ea\u05df \u05dc\u05db\u05d1\u05d5\u05ea \u05d0\u05d5 \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05de\u05e1\u05d5\u05d9\u05de\u05d5\u05ea \u05e9\u05de\u05e9\u05de\u05e9\u05d5\u05ea \u05d0\u05d5\u05ea\u05da \u05d1\u05d2\u05d9\u05dc\u05d9\u05d5\u05df \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8. \u05d4\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d4\u05d6\u05d4 \u05d9\u05e9\u05e4\u05d9\u05e2 \u05e2\u05dc \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da. \u05db\u05d9\u05d1\u05d5\u05d9 \u05d4\u05ea\u05db\u05d5\u05e0\u05d4 \u05d4\u05d6\u05d0\u05ea \u05dc\u05d0 \u05de\u05d5\u05d7\u05e7 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd, \u05d4\u05d5\u05d0 \u05e4\u05e9\u05d5\u05d8 \u05de\u05e1\u05ea\u05d9\u05e8 \u05d0\u05d5\u05ea\u05d4.","personalization_module_save":"\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9 \u05e0\u05e9\u05de\u05e8","personalization_module_title":"\u05ea\u05db\u05d5\u05e0\u05d5\u05ea","personalization_reminder_rule_desc":"\u05dc\u05db\u05dc \u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05e9\u05de\u05d5\u05d2\u05d3\u05e8\u05ea, \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d9\u05db\u05d5\u05dc\u05d4 \u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05da \u05d4\u05d5\u05d3\u05e2\u05d4 \u05db\u05de\u05d4 \u05d9\u05de\u05d9\u05dd \u05dc\u05e4\u05e0\u05d9 \u05e9\u05d4\u05d0\u05d9\u05e8\u05d5\u05e2 \u05de\u05ea\u05e8\u05d7\u05e9. \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05ea\u05d0\u05d9\u05dd \u05d0\u05ea \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d4\u05d4\u05ea\u05e8\u05d0\u05d5\u05ea \u05d4\u05d0\u05dc\u05d5 \u05db\u05d0\u05df. \u05d4\u05d4\u05ea\u05e8\u05d0\u05d5\u05ea \u05d7\u05dc\u05d5\u05ea \u05e2\u05dc \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05d7\u05d5\u05d3\u05e9\u05d9\u05d5\u05ea \u05d5\u05e9\u05e0\u05ea\u05d9\u05d5\u05ea.","personalization_reminder_rule_line":"\u05d9\u05d5\u05dd \u05dc\u05e4\u05e0\u05d9|\u05d9\u05d5\u05de\u05d9\u05d9\u05dd \u05dc\u05e4\u05e0\u05d9|{count} \u05d9\u05de\u05d9\u05dd \u05dc\u05e4\u05e0\u05d9","personalization_reminder_rule_save":"\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9 \u05e0\u05e9\u05de\u05e8","personalization_reminder_rule_title":"\u05db\u05dc\u05dc\u05d9 \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea","personalization_tab_title":"\u05d4\u05ea\u05d0\u05de\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","personalization_title":"\u05dc\u05d4\u05dc\u05df \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05e6\u05d5\u05d0 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e9\u05d5\u05e0\u05d5\u05ea \u05dc\u05d4\u05ea\u05d0\u05de\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da. \u05d4\u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05d4\u05d0\u05dc\u05d5 \u05de\u05d9\u05d5\u05e2\u05d3\u05d5\u05ea \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05de\u05ea\u05e7\u05d3\u05de\u05d9\u05dd \u05e9\u05e8\u05d5\u05e6\u05d9\u05dd \u05dc\u05e7\u05d1\u05dc \u05e9\u05dc\u05d9\u05d8\u05d4 \u05de\u05dc\u05d0\u05d4 \u05d1\u05de\u05d5\u05e0\u05d9\u05e7\u05d4.","recovery_already_used_help":"\u05db\u05d1\u05e8 \u05e0\u05e2\u05e9\u05d4 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05e7\u05d5\u05d3 \u05d4\u05d6\u05d4.","recovery_clipboard":"\u05d4\u05e7\u05d5\u05d3\u05d9\u05dd \u05d4\u05d5\u05e2\u05ea\u05e7\u05d5 \u05dc\u05dc\u05d5\u05d7 \u05d4\u05d2\u05d6\u05d9\u05e8\u05d9\u05dd.","recovery_copy_help":"\u05d4\u05e2\u05ea\u05e7\u05ea \u05e7\u05d5\u05d3\u05d9\u05dd \u05dc\u05dc\u05d5\u05d7 \u05d4\u05d2\u05d6\u05d9\u05e8\u05d9\u05dd \u05e9\u05dc\u05da","recovery_generate":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05e7\u05d5\u05d3\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd\u2026","recovery_generate_help":"\u05d9\u05e6\u05d9\u05e8\u05ea \u05e7\u05d5\u05d3\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd \u05ea\u05e9\u05dc\u05d5\u05dc \u05d0\u05ea \u05d4\u05e7\u05d5\u05d3\u05d9\u05dd \u05e9\u05e0\u05d5\u05e6\u05e8\u05d5 \u05dc\u05e4\u05e0\u05d9\u05d4\u05dd.","recovery_help_information":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05db\u05dc \u05e7\u05d5\u05d3 \u05e9\u05d7\u05d6\u05d5\u05e8 \u05e4\u05e2\u05dd \u05d0\u05d7\u05ea \u05d1\u05dc\u05d1\u05d3.","recovery_help_intro":"\u05d0\u05dc\u05d5 \u05d4\u05e7\u05d5\u05d3\u05d9\u05dd \u05e9\u05dc\u05da \u05dc\u05d8\u05d5\u05d1\u05ea \u05e9\u05d7\u05d6\u05d5\u05e8:","recovery_show":"\u05e7\u05d1\u05dc\u05ea \u05e7\u05d5\u05d3\u05d9\u05dd \u05dc\u05e9\u05d7\u05d6\u05d5\u05e8","recovery_title":"\u05e7\u05d5\u05d3\u05d9\u05dd \u05dc\u05e9\u05d7\u05d6\u05d5\u05e8","reminder_time_to_send":"\u05d4\u05e9\u05e2\u05d4 \u05d1\u05d9\u05d5\u05dd \u05d1\u05d4 \u05ea\u05d9\u05e9\u05dc\u05d7\u05e0\u05d4 \u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea","reminder_time_to_send_help":"\u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05d4\u05d1\u05d0\u05d4 \u05e9\u05dc\u05da \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05dc\u05d4\u05d9\u05e9\u05dc\u05d7 \u05d1\u05be{dateTime}<\/span>.","reset_cta":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d7\u05e9\u05d1\u05d5\u05df","reset_desc":"\u05dc\u05d0\u05e4\u05e1 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da? \u05e4\u05e2\u05d5\u05dc\u05d4 \u05d6\u05d5 \u05ea\u05e1\u05d9\u05e8 \u05d0\u05ea \u05db\u05dc \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05d5\u05d0\u05ea \u05db\u05dc \u05d4\u05de\u05d9\u05d3\u05e2 \u05d4\u05de\u05e9\u05d5\u05d9\u05da \u05dc\u05d4\u05dd. \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05dc\u05d0 \u05d9\u05d9\u05de\u05d7\u05e7.","reset_notice":"\u05dc\u05d0\u05e4\u05e1 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da? \u05d6\u05d0\u05ea \u05e4\u05e2\u05d5\u05dc\u05d4 \u05d1\u05dc\u05ea\u05d9 \u05d4\u05e4\u05d9\u05db\u05d4.","reset_success":"\u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05d0\u05d5\u05e4\u05e1 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","reset_title":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","save":"\u05e2\u05d3\u05db\u05d5\u05df \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea","security_help":"\u05e9\u05d9\u05e0\u05d5\u05d9 \u05e0\u05d3\u05d1\u05db\u05d9 \u05d4\u05d0\u05d1\u05d8\u05d7\u05d4 \u05e9\u05dc \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da.","security_title":"\u05d0\u05d1\u05d8\u05d7\u05d4","settings_success":"\u05d4\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05e2\u05d5\u05d3\u05db\u05e0\u05d5!","sidebar_personalization":"\u05d4\u05ea\u05d0\u05de\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea","sidebar_settings":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d7\u05e9\u05d1\u05d5\u05df","sidebar_settings_api":"API","sidebar_settings_auditlogs":"\u05d9\u05d5\u05de\u05e0\u05d9 \u05d1\u05d9\u05e7\u05d5\u05e8\u05ea","sidebar_settings_dav":"\u05de\u05e9\u05d0\u05d1\u05d9 DAV","sidebar_settings_export":"\u05d9\u05e6\u05d5\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd","sidebar_settings_import":"\u05d9\u05d1\u05d5\u05d0 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd","sidebar_settings_security":"\u05d0\u05d1\u05d8\u05d7\u05d4","sidebar_settings_storage":"\u05d0\u05d7\u05e1\u05d5\u05df","sidebar_settings_subscriptions":"\u05d4\u05e8\u05e9\u05de\u05d4","sidebar_settings_tags":"\u05e0\u05d9\u05d4\u05d5\u05dc \u05ea\u05d2\u05d9\u05d5\u05ea","sidebar_settings_users":"\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd","storage_account_info":"\u05de\u05d2\u05d1\u05dc\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05d4\u05d9\u05d0: :accountLimit \u05de\u05d2\u05d4 \u05d1\u05ea\u05d9\u05dd. \u05d4\u05e0\u05d9\u05e6\u05d5\u05dc\u05ea \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea \u05e9\u05dc\u05da \u05d4\u05d9\u05d0: :currentAccountSize \u05de\u05d2\u05d4 \u05d1\u05ea\u05d9\u05dd (\u05d1\u05e2\u05e8\u05da :percentUsage%).","storage_description":"\u05db\u05d0\u05df \u05e0\u05d9\u05ea\u05df \u05dc\u05e6\u05e4\u05d5\u05ea \u05d1\u05db\u05dc \u05d4\u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d5\u05d4\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e9\u05d4\u05d5\u05e2\u05dc\u05d5 \u05dc\u05d8\u05d5\u05d1\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da.","storage_title":"\u05d0\u05d7\u05e1\u05d5\u05df","storage_upgrade_notice":"\u05e2\u05dc\u05d9\u05da \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05e9\u05ea\u05d4\u05d9\u05d4 \u05dc\u05da \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d4\u05e2\u05dc\u05d5\u05ea \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d5\u05ea\u05de\u05d5\u05e0\u05d5\u05ea.","stripe_error_api_connection":"\u05d4\u05ea\u05e7\u05e9\u05d5\u05e8\u05ea \u05e2\u05dd Stripe \u05e0\u05db\u05e9\u05dc\u05d4. \u05e0\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1 \u05de\u05d0\u05d5\u05d7\u05e8 \u05d9\u05d5\u05ea\u05e8.","stripe_error_authentication":"\u05d0\u05d9\u05de\u05d5\u05ea \u05e9\u05d2\u05d5\u05d9 \u05de\u05d5\u05dc Stripe","stripe_error_card":"\u05d4\u05db\u05e8\u05d8\u05d9\u05e1 \u05e9\u05dc\u05da \u05e0\u05d3\u05d7\u05d4. \u05d4\u05d5\u05d3\u05e2\u05d4 \u05d4\u05d3\u05d7\u05d9\u05d9\u05d4 \u05d4\u05d9\u05d0: :message","stripe_error_invalid_request":"\u05de\u05e9\u05ea\u05e0\u05d9\u05dd \u05e9\u05d2\u05d5\u05d9\u05d9\u05dd. \u05e0\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1 \u05de\u05d0\u05d5\u05d7\u05e8 \u05d9\u05d5\u05ea\u05e8.","stripe_error_rate_limit":"\u05d4\u05d2\u05d9\u05e2\u05d5 \u05d9\u05d5\u05ea\u05e8 \u05de\u05d3\u05d9 \u05d1\u05e7\u05e9\u05d5\u05ea \u05d0\u05dc Stripe \u05db\u05e8\u05d2\u05e2. \u05e0\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1 \u05de\u05d0\u05d5\u05d7\u05e8 \u05d9\u05d5\u05ea\u05e8.","subscriptions_account_cancel":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d8\u05dc \u05d0\u05ea \u05d4\u05de\u05d9\u05e0\u05d5\u05d9<\/a> \u05d1\u05db\u05dc \u05e2\u05ea.","subscriptions_account_confirm_payment":"\u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da \u05dc\u05d0 \u05d4\u05d5\u05e9\u05dc\u05dd, \u05e0\u05d0 \u05dc\u05d0\u05e9\u05e8 \u05d0\u05ea \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da<\/a>.","subscriptions_account_current_paid_plan":"\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc\u05da \u05db\u05e8\u05d2\u05e2 \u05d4\u05d9\u05d0 :name. \u05ea\u05d5\u05d3\u05d4 \u05dc\u05da \u05e2\u05dc \u05d4\u05d4\u05e8\u05e9\u05de\u05d4.","subscriptions_account_current_plan":"\u05d4\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea \u05e9\u05dc\u05da","subscriptions_account_free_plan":"\u05d4\u05ea\u05db\u05e0\u05d9\u05ea \u05e9\u05dc\u05da \u05d4\u05d9\u05d0 \u05d4\u05d7\u05d9\u05e0\u05de\u05d9\u05ea.","subscriptions_account_free_plan_benefits_import_data_vcard":"\u05d9\u05d1\u05d5\u05d0 \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05e2\u05dd vCard","subscriptions_account_free_plan_benefits_reminders":"\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05dc\u05e4\u05d9 \u05d3\u05d5\u05d0\u05f4\u05dc","subscriptions_account_free_plan_benefits_support":"\u05db\u05d3\u05d0\u05d9 \u05dc\u05ea\u05de\u05d5\u05da \u05d1\u05de\u05d9\u05d6\u05dd \u05dc\u05d8\u05d5\u05d5\u05d7 \u05d4\u05e8\u05d7\u05d5\u05e7 \u05db\u05d3\u05d9 \u05e9\u05e0\u05d5\u05db\u05dc \u05dc\u05d4\u05e9\u05d9\u05e7 \u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05e0\u05e4\u05dc\u05d0\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea.","subscriptions_account_free_plan_benefits_users":"\u05de\u05e1\u05e4\u05e8 \u05d1\u05dc\u05ea\u05d9 \u05de\u05d5\u05d2\u05d1\u05dc \u05e9\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd","subscriptions_account_free_plan_upgrade":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05dc\u05ea\u05db\u05e0\u05d9\u05ea :name, \u05e9\u05e2\u05d5\u05dc\u05d4 $:price \u05dc\u05d7\u05d5\u05d3\u05e9. \u05dc\u05d4\u05dc\u05df \u05d4\u05d9\u05ea\u05e8\u05d5\u05e0\u05d5\u05ea:","subscriptions_account_invoices":"\u05d7\u05e9\u05d1\u05d5\u05e0\u05d9\u05d5\u05ea","subscriptions_account_invoices_download":"\u05d4\u05d5\u05e8\u05d3\u05d4","subscriptions_account_invoices_subscription":"\u05de\u05d9\u05e0\u05d5\u05d9 \u05de\u05be:startDate \u05e2\u05d3 :endDate","subscriptions_account_next_billing":"\u05d4\u05de\u05d9\u05e0\u05d5\u05d9 \u05e9\u05dc\u05da \u05d9\u05d7\u05d5\u05d3\u05e9 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05d1\u05be:date<\/strong>.","subscriptions_account_payment":"\u05de\u05d4 \u05d3\u05e8\u05da \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d4\u05de\u05d5\u05e2\u05d3\u05e4\u05ea \u05e2\u05dc\u05d9\u05da?","subscriptions_account_upgrade":"\u05e9\u05d3\u05e8\u05d5\u05d2 \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","subscriptions_account_upgrade_choice":"\u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d1\u05ea\u05db\u05e0\u05d9\u05ea \u05dc\u05d4\u05dc\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05e6\u05d8\u05e8\u05e3 \u05dc\u05be:customers \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea \u05e9\u05e9\u05d3\u05e8\u05d2\u05d5 \u05d0\u05ea \u05d4\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05e9\u05dc\u05d4\u05dd.","subscriptions_account_upgrade_title":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d3\u05e8\u05d2 \u05d0\u05ea \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e2\u05e9\u05d9\u05e8 \u05d0\u05ea \u05d4\u05e7\u05e9\u05e8\u05d9\u05dd \u05d4\u05d1\u05d9\u05df \u05d0\u05d9\u05e9\u05d9\u05d9\u05dd \u05e9\u05dc\u05da.","subscriptions_back":"\u05d7\u05d6\u05e8\u05d4 \u05dc\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea","subscriptions_downgrade_cta":"\u05e9\u05e0\u05de\u05d5\u05da","subscriptions_downgrade_limitations":"\u05dc\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05d7\u05d5\u05e4\u05e9\u05d9\u05ea \u05d9\u05e9 \u05de\u05d2\u05d1\u05dc\u05d5\u05ea. \u05db\u05d3\u05d9 \u05dc\u05e9\u05e0\u05de\u05da, \u05e2\u05dc\u05d9\u05da \u05dc\u05e2\u05d1\u05d5\u05e8 \u05d5\u05dc\u05d0\u05de\u05ea \u05d0\u05ea \u05d4\u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05d1\u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc\u05d4\u05dc\u05df:","subscriptions_downgrade_rule_contacts":"\u05dc\u05d0 \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d4\u05d9\u05d5\u05ea \u05dc\u05da \u05d9\u05d5\u05ea\u05e8 \u05de\u05be:number \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd","subscriptions_downgrade_rule_contacts_constraint":"\u05db\u05e8\u05d2\u05e2 \u05d9\u05e9 \u05dc\u05da \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d9\u05d7\u05d9\u05d3<\/a>.|\u05db\u05e8\u05d2\u05e2 \u05d9\u05e9 \u05dc\u05da :count \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8<\/a>.","subscriptions_downgrade_rule_invitations":"\u05d0\u05e1\u05d5\u05e8 \u05e9\u05ea\u05d4\u05d9\u05d9\u05e0\u05d4 \u05dc\u05da \u05d4\u05d6\u05de\u05e0\u05d5\u05ea \u05de\u05de\u05ea\u05d9\u05e0\u05d5\u05ea \u05db\u05dc\u05e9\u05d4\u05df","subscriptions_downgrade_rule_invitations_constraint":"\u05d9\u05e9 \u05dc\u05da \u05db\u05e8\u05d2\u05e2 \u05d4\u05d6\u05de\u05e0\u05d4 \u05d0\u05d7\u05ea \u05d1\u05d4\u05de\u05ea\u05e0\u05d4<\/a>.|\u05d9\u05e9 \u05dc\u05da \u05db\u05e8\u05d2\u05e2 :count \u05d4\u05d6\u05de\u05e0\u05d5\u05ea \u05d1\u05d4\u05de\u05ea\u05e0\u05d4<\/a>.","subscriptions_downgrade_rule_users":"\u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05dc\u05da \u05e8\u05e7 \u05de\u05e9\u05ea\u05de\u05e9 \u05d0\u05d7\u05d3 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df","subscriptions_downgrade_rule_users_constraint":"\u05d9\u05e9 \u05dc\u05da \u05de\u05e9\u05ea\u05de\u05e9 \u05d0\u05d7\u05d3<\/a> \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05db\u05e8\u05d2\u05e2.|\u05d9\u05e9 \u05dc\u05da :count \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd<\/a> \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05db\u05e8\u05d2\u05e2.","subscriptions_downgrade_success":"\u05d7\u05d6\u05e8\u05ea \u05dc\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05d7\u05d9\u05e0\u05de\u05d9\u05ea!","subscriptions_downgrade_thanks":"\u05ea\u05d5\u05d3\u05d4 \u05dc\u05da \u05e2\u05dc \u05d4\u05d4\u05ea\u05e0\u05e1\u05d5\u05ea \u05d1\u05ea\u05db\u05e0\u05d9\u05ea \u05d1\u05ea\u05e9\u05dc\u05d5\u05dd. \u05d0\u05e0\u05d5 \u05de\u05de\u05e9\u05d9\u05db\u05d9\u05dd \u05d5\u05de\u05d5\u05e1\u05d9\u05e4\u05d9\u05dd \u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05dc\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05db\u05dc \u05d4\u05d6\u05de\u05df - \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05e9\u05db\u05d3\u05d0\u05d9 \u05dc\u05da \u05dc\u05e7\u05e4\u05d5\u05e5 \u05d1\u05d4\u05de\u05e9\u05da \u05db\u05d3\u05d9 \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05dd \u05de\u05e2\u05e0\u05d9\u05d9\u05df \u05d0\u05d5\u05ea\u05da \u05dc\u05d4\u05d9\u05e8\u05e9\u05dd \u05de\u05d7\u05d3\u05e9.","subscriptions_downgrade_title":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05e0\u05de\u05da \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05dc\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05d7\u05d9\u05e0\u05de\u05d9\u05ea","subscriptions_help_change_desc":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d8\u05dc \u05d1\u05db\u05dc \u05e2\u05ea, \u05dc\u05dc\u05d0 \u05e9\u05d0\u05dc\u05d5\u05ea \u05de\u05d9\u05d5\u05ea\u05e8\u05d5\u05ea \u05d5\u05d1\u05d0\u05d5\u05e4\u05df \u05e2\u05e6\u05de\u05d0\u05d9 \u05dc\u05d7\u05dc\u05d5\u05d8\u05d9\u05df - \u05d0\u05d9\u05df \u05e6\u05d5\u05e8\u05da \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e7\u05e9\u05e8 \u05e2\u05dd \u05d4\u05ea\u05de\u05d9\u05db\u05d4. \u05e2\u05dd \u05d6\u05d0\u05ea, \u05dc\u05d0 \u05d9\u05d1\u05d5\u05e6\u05e2 \u05d6\u05d9\u05db\u05d5\u05d9 \u05e2\u05dc \u05d4\u05ea\u05e7\u05d5\u05e4\u05d4 \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea.","subscriptions_help_change_title":"\u05de\u05d4 \u05d0\u05dd \u05d4\u05ea\u05d7\u05e8\u05d8\u05ea\u05d9?","subscriptions_help_discounts_desc":"\u05d9\u05e9 \u05dc\u05e0\u05d5! \u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05de\u05d5\u05e6\u05e2\u05ea \u05d1\u05d7\u05d9\u05e0\u05dd \u05dc\u05ea\u05dc\u05de\u05d9\u05d3\u05d9\u05dd \u05d5\u05dc\u05d0\u05e8\u05d2\u05d5\u05e0\u05d9 \u05e6\u05d3\u05e7\u05d4 \u05dc\u05dc\u05d0 \u05de\u05d8\u05e8\u05d5\u05ea \u05e8\u05d5\u05d5\u05d7. \u05e2\u05dc\u05d9\u05da \u05e8\u05e7 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e7\u05e9\u05e8 \u05e2\u05dd \u05d4\u05ea\u05de\u05d9\u05db\u05d4<\/a> \u05e2\u05dd \u05d4\u05d5\u05db\u05d7\u05d4 \u05e2\u05dc \u05d4\u05de\u05e6\u05d1 \u05e9\u05dc\u05da \u05d5\u05d0\u05e0\u05d5 \u05e0\u05d7\u05d9\u05dc \u05d4\u05de\u05e6\u05d1 \u05d4\u05de\u05d9\u05d5\u05d7\u05d3 \u05d4\u05d6\u05d4 \u05e2\u05dc \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da.","subscriptions_help_discounts_title":"\u05d9\u05e9 \u05dc\u05db\u05dd \u05d4\u05e0\u05d7\u05d4 \u05dc\u05d0\u05e8\u05d2\u05d5\u05e0\u05d9\u05dd \u05dc\u05dc\u05d0 \u05de\u05d8\u05e8\u05d5\u05ea \u05e8\u05d5\u05d5\u05d7 \u05d5\u05de\u05d5\u05e1\u05d3\u05d5\u05ea \u05d7\u05d9\u05e0\u05d5\u05da?","subscriptions_help_limits_plan":"\u05db\u05df. \u05d4\u05ea\u05db\u05e0\u05d9\u05d5\u05ea \u05d4\u05d7\u05d9\u05e0\u05de\u05d9\u05d5\u05ea \u05de\u05d0\u05e4\u05e9\u05e8\u05ea \u05dc\u05da \u05dc\u05e0\u05d4\u05dc :number \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8.","subscriptions_help_limits_title":"\u05d4\u05d0\u05dd \u05d9\u05e9 \u05de\u05d2\u05d1\u05dc\u05d4 \u05db\u05dc\u05e9\u05d4\u05d9 \u05e2\u05dc \u05de\u05e1\u05e4\u05e8 \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05d0\u05d5\u05db\u05dc \u05dc\u05e0\u05d4\u05dc \u05d1\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05d7\u05d9\u05e0\u05de\u05d9\u05ea?","subscriptions_help_opensource_desc":"\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05d4\u05d5\u05d0 \u05de\u05d9\u05d6\u05dd \u05d1\u05e7\u05d5\u05d3 \u05e4\u05ea\u05d5\u05d7. \u05de\u05e9\u05de\u05e2\u05d5\u05ea \u05d4\u05d3\u05d1\u05e8 \u05d4\u05d9\u05d0 \u05e9\u05d4\u05d5\u05d0 \u05e0\u05d1\u05e0\u05d4 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05e7\u05d4\u05d9\u05dc\u05d4 \u05e9\u05e8\u05d5\u05e6\u05d4 \u05dc\u05e1\u05e4\u05e7 \u05db\u05dc\u05d9 \u05e0\u05d4\u05d3\u05e8 \u05dc\u05d8\u05d5\u05d1\u05ea \u05d4\u05db\u05dc\u05dc. \u05e7\u05d5\u05d3 \u05e4\u05ea\u05d5\u05d7 \u05de\u05e9\u05de\u05e2\u05d5 \u05e9\u05d4\u05e7\u05d5\u05d3 \u05d2\u05dc\u05d5\u05d9 \u05dc\u05e2\u05d9\u05e0\u05d9 \u05d4\u05e6\u05d9\u05d1\u05d5\u05e8 \u05d1\u05beGitHub \u05d5\u05db\u05d5\u05dc\u05dd \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d1\u05d7\u05d5\u05df, \u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05d5 \u05dc\u05e9\u05e4\u05e8 \u05d0\u05d5\u05ea\u05d5. \u05db\u05dc \u05d4\u05db\u05e1\u05e3 \u05e9\u05de\u05d2\u05d5\u05d9\u05e1 \u05de\u05d5\u05e9\u05e7\u05e2 \u05dc\u05d8\u05d5\u05d1\u05ea \u05e4\u05d9\u05ea\u05d5\u05d7 \u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05d8\u05d5\u05d1\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8, \u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05dc \u05e9\u05e8\u05ea\u05d9\u05dd \u05d7\u05d6\u05e7\u05d9\u05dd \u05d9\u05d5\u05ea\u05e8 \u05d5\u05ea\u05e9\u05dc\u05d5\u05dd \u05d4\u05d5\u05e6\u05d0\u05d5\u05ea \u05e9\u05d5\u05e0\u05d5\u05ea. \u05ea\u05d5\u05d3\u05d4 \u05dc\u05da \u05e2\u05dc \u05d4\u05e1\u05d9\u05d5\u05e2. \u05dc\u05d0 \u05d4\u05d9\u05d9\u05e0\u05d5 \u05de\u05e6\u05dc\u05d9\u05d7\u05d9\u05dd \u05dc\u05e2\u05e9\u05d5\u05ea \u05d6\u05d0\u05ea \u05d1\u05dc\u05e2\u05d3\u05d9\u05da.","subscriptions_help_opensource_title":"\u05de\u05d4 \u05d4\u05d5\u05d0 \u05de\u05d9\u05d6\u05dd \u05d1\u05e7\u05d5\u05d3 \u05e4\u05ea\u05d5\u05d7?","subscriptions_help_title":"\u05e4\u05e8\u05d8\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd \u05e9\u05e2\u05e9\u05d5\u05d9\u05d9\u05dd \u05dc\u05e2\u05e0\u05d9\u05d9\u05df \u05d0\u05d5\u05ea\u05da","subscriptions_payment_cancelled":"\u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05d5\u05d8\u05dc.","subscriptions_payment_cancelled_title":"\u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05d5\u05d8\u05dc","subscriptions_payment_confirm_information":"\u05e0\u05d3\u05e8\u05e9 \u05d0\u05d9\u05de\u05d5\u05ea \u05e0\u05d5\u05e1\u05e3 \u05db\u05d3\u05d9 \u05dc\u05e2\u05d1\u05d3 \u05d0\u05ea \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da. \u05e0\u05d0 \u05dc\u05d0\u05e9\u05e8 \u05d0\u05ea \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05dc \u05d9\u05d3\u05d9 \u05de\u05d9\u05dc\u05d5\u05d9 \u05e4\u05e8\u05d8\u05d9 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05d4\u05dc\u05df.","subscriptions_payment_confirm_title":"\u05d0\u05d9\u05e9\u05d5\u05e8 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da \u05e2\u05dc \u05e1\u05da :amount","subscriptions_payment_error_name":"\u05e0\u05d0 \u05dc\u05e6\u05d9\u05d9\u05df \u05d0\u05ea \u05e9\u05de\u05da.","subscriptions_payment_succeeded":"\u05ea\u05e9\u05dc\u05d5\u05dd \u05d6\u05d4 \u05db\u05d1\u05e8 \u05d0\u05d5\u05e9\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","subscriptions_payment_succeeded_title":"\u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05d1\u05e8 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","subscriptions_payment_success":"\u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05d5\u05e6\u05e2 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4.","subscriptions_pdf_title":"\u05d4\u05de\u05d9\u05e0\u05d5\u05d9 \u05d4\u05d7\u05d5\u05d3\u05e9\u05d9 \u05e9\u05dc\u05da \u05de\u05e1\u05d5\u05d2 :name","subscriptions_plan_choose":"\u05d1\u05d7\u05d9\u05e8\u05d4 \u05d1\u05ea\u05db\u05e0\u05d9\u05ea \u05d4\u05d6\u05d0\u05ea","subscriptions_plan_include1":"\u05db\u05dc\u05d5\u05dc \u05d1\u05e9\u05d3\u05e8\u05d5\u05d2 \u05e9\u05dc\u05da:","subscriptions_plan_include2":"\u05de\u05e1\u05e4\u05e8 \u05d1\u05dc\u05ea\u05d9 \u05de\u05d5\u05d2\u05d1\u05dc \u05e9\u05dc \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8 \u2022 \u05de\u05e1\u05e4\u05e8 \u05d1\u05dc\u05ea\u05d9 \u05de\u05d5\u05d2\u05d1\u05dc \u05e9\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u2022 \u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u2022 \u05d9\u05d9\u05d1\u05d5\u05d0 \u05e2\u05dd vCard \u2022 \u05d4\u05ea\u05d0\u05de\u05d4 \u05d0\u05d9\u05e9\u05d9\u05ea \u05e9\u05dc \u05d2\u05d9\u05dc\u05d9\u05d5\u05df \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8","subscriptions_plan_include3":"100% \u05de\u05d4\u05e8\u05d5\u05d5\u05d7\u05d9\u05dd \u05de\u05d5\u05e9\u05e7\u05e2\u05d9\u05dd \u05d1\u05e4\u05d9\u05ea\u05d5\u05d7 \u05de\u05d9\u05d6\u05dd \u05d4\u05e7\u05d5\u05d3 \u05d4\u05e4\u05ea\u05d5\u05d7 \u05d4\u05e0\u05d4\u05d3\u05e8 \u05d4\u05d6\u05d4.","subscriptions_plan_month_bonus":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d8\u05dc \u05d1\u05db\u05dc \u05e2\u05ea","subscriptions_plan_month_cost":"$5 \u05dc\u05d7\u05d5\u05d3\u05e9","subscriptions_plan_month_title":"\u05ea\u05e9\u05dc\u05d5\u05dd \u05d7\u05d5\u05d3\u05e9\u05d9","subscriptions_plan_year_bonus":"\u05e9\u05e7\u05d8 \u05e0\u05e4\u05e9\u05d9 \u05dc\u05e9\u05e0\u05d4 \u05e9\u05dc\u05de\u05d4","subscriptions_plan_year_cost":"$45 \u05dc\u05e9\u05e0\u05d4","subscriptions_plan_year_cost_save":"\u05d7\u05d9\u05e1\u05db\u05d5\u05df \u05e9\u05dc 25%","subscriptions_plan_year_title":"\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05e0\u05ea\u05d9","subscriptions_upgrade_charge":"\u05d0\u05e0\u05d5 \u05e0\u05d7\u05d9\u05d9\u05d1 \u05d0\u05ea \u05d4\u05db\u05e8\u05d8\u05d9\u05e1 \u05e9\u05dc\u05da \u05d1\u05e1\u05db\u05d5\u05dd \u05e9\u05dc :price \u05db\u05e2\u05ea. \u05d4\u05d7\u05d9\u05d5\u05d1 \u05d4\u05d1\u05d0 \u05d9\u05d4\u05d9\u05d4 \u05d1\u05be:date. \u05d1\u05de\u05e7\u05e8\u05d4 \u05e9\u05e9\u05d9\u05e0\u05d9\u05ea \u05d0\u05ea \u05d3\u05e2\u05ea\u05da, \u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d8\u05dc \u05d1\u05db\u05dc \u05e2\u05ea, \u05d1\u05dc\u05d9 \u05e9\u05d0\u05dc\u05d5\u05ea \u05de\u05d9\u05d5\u05ea\u05e8\u05d5\u05ea.","subscriptions_upgrade_charge_handled":"\u05d4\u05e1\u05dc\u05d9\u05e7\u05d4 \u05de\u05d1\u05d5\u05e6\u05e2\u05ea \u05e2\u05dc \u05d9\u05d3\u05d9 Stripe<\/a>. \u05d4\u05de\u05d9\u05d3\u05e2 \u05e2\u05dc \u05d4\u05db\u05e8\u05d8\u05d9\u05e1 \u05dc\u05d0 \u05e2\u05d5\u05d1\u05e8 \u05d3\u05e8\u05da \u05d4\u05e9\u05e8\u05ea \u05e9\u05dc\u05e0\u05d5.","subscriptions_upgrade_choose":"\u05d1\u05d7\u05e8\u05ea \u05d1\u05ea\u05db\u05e0\u05d9\u05ea :plan.","subscriptions_upgrade_credit":"\u05db\u05e8\u05d8\u05d9\u05e1 \u05d0\u05e9\u05e8\u05d0\u05d9 \u05d0\u05d5 \u05d7\u05d9\u05d5\u05d1","subscriptions_upgrade_infos":"\u05d0\u05d9\u05df \u05de\u05d0\u05d5\u05e9\u05e8\u05d9\u05dd \u05de\u05d0\u05ea\u05e0\u05d5. \u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05e4\u05e8\u05d8\u05d9 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da \u05dc\u05d4\u05dc\u05df.","subscriptions_upgrade_name":"\u05d4\u05e9\u05dd \u05e2\u05dc \u05d4\u05db\u05e8\u05d8\u05d9\u05e1","subscriptions_upgrade_submit":"\u05dc\u05e9\u05dc\u05dd {amount}","subscriptions_upgrade_success":"\u05ea\u05d5\u05d3\u05d4 \u05dc\u05da! \u05e0\u05e8\u05e9\u05de\u05ea \u05db\u05e2\u05ea.","subscriptions_upgrade_thanks":"\u05d1\u05e8\u05d5\u05da \u05d1\u05d5\u05d0\u05da \u05dc\u05e7\u05d4\u05d9\u05dc\u05d4 \u05e9\u05dc \u05d0\u05e0\u05e9\u05d9\u05dd \u05e9\u05de\u05e0\u05e1\u05d9\u05dd \u05dc\u05d4\u05e4\u05d5\u05da \u05d0\u05ea \u05d4\u05e2\u05d5\u05dc\u05dd \u05dc\u05de\u05e7\u05d5\u05dd \u05d8\u05d5\u05d1 \u05d9\u05d5\u05ea\u05e8.","subscriptions_upgrade_title":"\u05e9\u05d3\u05e8\u05d5\u05d2 \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","subscriptions_upgrade_zip":"\u05de\u05d9\u05e7\u05d5\u05d3 \u05d0\u05d5 \u05ea\u05d0 \u05d3\u05d5\u05d0\u05e8","tags_blank_description":"\u05ea\u05d2\u05d9\u05d5\u05ea \u05e2\u05d5\u05d1\u05d3\u05d5\u05ea \u05db\u05de\u05d5 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea, \u05d0\u05da \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d9\u05d5\u05ea\u05e8 \u05de\u05ea\u05d2\u05d9\u05ea \u05d0\u05d7\u05ea \u05dc\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8. \u05d9\u05e9 \u05dc\u05d2\u05e9\u05ea \u05dc\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d5\u05dc\u05ea\u05d9\u05d9\u05d2 \u05db\u05d7\u05d1\u05e8, \u05de\u05d9\u05d3 \u05de\u05ea\u05d7\u05ea \u05dc\u05e9\u05dd. \u05dc\u05d0\u05d7\u05e8 \u05ea\u05d9\u05d5\u05d2 \u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8, \u05e0\u05d9\u05ea\u05df \u05dc\u05d7\u05d6\u05d5\u05e8 \u05dc\u05db\u05d0\u05df \u05db\u05d3\u05d9 \u05dc\u05e0\u05d4\u05dc \u05d0\u05ea \u05db\u05dc \u05d4\u05ea\u05d2\u05d9\u05d5\u05ea \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da.","tags_blank_title":"\u05ea\u05d2\u05d9\u05d5\u05ea \u05d4\u05df \u05d3\u05e8\u05da \u05e0\u05d4\u05d3\u05e8\u05ea \u05dc\u05d0\u05e8\u05d2\u05d5\u05df \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da.","tags_list_contact_number":"\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8 \u05d0\u05d7\u05d3|:count \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8","tags_list_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05ea\u05d2\u05d9\u05ea? \u05dc\u05d0 \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05d0\u05e0\u05e9\u05d9 \u05e7\u05e9\u05e8, \u05e8\u05e7 \u05d4\u05ea\u05d2\u05d9\u05ea.","tags_list_delete_success":"\u05d4\u05ea\u05d2\u05d9\u05ea \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","tags_list_description":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d0\u05e8\u05d2\u05df \u05d0\u05ea \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d4\u05d2\u05d3\u05e8\u05ea \u05ea\u05d2\u05d9\u05d5\u05ea. \u05ea\u05d2\u05d9\u05d5\u05ea \u05e2\u05d5\u05d1\u05d3\u05d5\u05ea \u05db\u05de\u05d5 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea \u05d0\u05da \u05d9\u05e9 \u05dc\u05da \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d9\u05d5\u05ea\u05e8 \u05de\u05ea\u05d2\u05d9\u05ea \u05d0\u05d7\u05ea \u05dc\u05d0\u05d9\u05e9 \u05e7\u05e9\u05e8. \u05db\u05d3\u05d9 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05ea\u05d2\u05d9\u05ea \u05d7\u05d3\u05e9\u05d4, \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05d5\u05ea\u05d4 \u05e2\u05dc \u05d0\u05d9\u05e9 \u05d4\u05e7\u05e9\u05e8 \u05e2\u05e6\u05de\u05d5.","tags_list_title":"\u05ea\u05d2\u05d9\u05d5\u05ea","temperature_scale":"\u05d9\u05d7\u05d9\u05d3\u05d5\u05ea \u05d8\u05de\u05e4\u05e8\u05d8\u05d5\u05e8\u05d4","temperature_scale_celsius":"\u05e6\u05dc\u05d6\u05d9\u05d5\u05e1","temperature_scale_fahrenheit":"\u05e4\u05e8\u05e0\u05d4\u05d9\u05d9\u05d8","timezone":"\u05d0\u05d6\u05d5\u05e8 \u05d6\u05de\u05df","title_general":"\u05de\u05d9\u05d3\u05e2 \u05db\u05dc\u05dc\u05d9","title_i18n":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d1\u05d9\u05e0\u05dc\u05d0\u05d5\u05de\u05d9\u05d5\u05ea","title_layout":"\u05e4\u05e8\u05d9\u05e1\u05d4","users_accept_title":"\u05e7\u05d1\u05dc\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d4 \u05d5\u05d9\u05e6\u05d9\u05e8\u05ea \u05d7\u05e9\u05d1\u05d5\u05df \u05d7\u05d3\u05e9","users_add_confirmation":"\u05de\u05d5\u05e1\u05db\u05dd \u05e2\u05dc\u05d9 \u05dc\u05d4\u05d6\u05de\u05d9\u05df \u05d0\u05ea \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05d4\u05d6\u05d4 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05d9. \u05d1\u05e8\u05d5\u05e8 \u05dc\u05d9 \u05e9\u05dc\u05d0\u05d3\u05dd \u05d4\u05d6\u05d4 \u05ea\u05d4\u05d9\u05d4 \u05d2\u05d9\u05e9\u05d4 \u05dc\u05db\u05dc \u05d4\u05de\u05d9\u05d3\u05e2 \u05e9\u05dc\u05d9 \u05d5\u05d9\u05d5\u05db\u05dc \u05dc\u05e8\u05d0\u05d5\u05ea \u05d1\u05d3\u05d9\u05d5\u05e7 \u05de\u05d4 \u05e9\u05d0\u05e0\u05d9 \u05e8\u05d5\u05d0\u05d4.","users_add_cta":"\u05d4\u05d6\u05de\u05e0\u05ea \u05de\u05e9\u05ea\u05de\u05e9 \u05d3\u05e8\u05da \u05d3\u05d5\u05d0\u05f4\u05dc","users_add_description":"\u05dc\u05d0\u05d3\u05dd \u05d6\u05d4 \u05d9\u05e9 \u05d0\u05ea \u05d0\u05d5\u05ea\u05d4 \u05e8\u05de\u05ea \u05d2\u05d9\u05e9\u05d4 \u05db\u05de\u05d5\u05da, \u05dc\u05e8\u05d1\u05d5\u05ea \u05d4\u05d6\u05de\u05e0\u05ea \u05d0\u05d5 \u05de\u05d7\u05d9\u05e7\u05ea \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd, \u05db\u05d5\u05dc\u05dc \u05d0\u05d5\u05ea\u05da. \u05e0\u05d0 \u05dc\u05d5\u05d5\u05d3\u05d0 \u05e9\u05de\u05d3\u05d5\u05d1\u05e8 \u05d1\u05d0\u05d3\u05dd \u05de\u05d4\u05d9\u05de\u05df \u05d1\u05d8\u05e8\u05dd \u05de\u05ea\u05df \u05d4\u05d2\u05d9\u05e9\u05d4.","users_add_email_field":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc \u05d4\u05d0\u05d3\u05dd \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d6\u05de\u05d9\u05df","users_add_title":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d6\u05de\u05d9\u05df \u05de\u05e9\u05ea\u05de\u05e9 \u05d7\u05d3\u05e9 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc","users_blank_add_title":"\u05dc\u05d4\u05d6\u05de\u05d9\u05df \u05de\u05d9\u05e9\u05d4\u05d5 \u05e0\u05d5\u05e1\u05e3?","users_blank_cta":"\u05dc\u05d4\u05d6\u05de\u05d9\u05df \u05de\u05d9\u05e9\u05d4\u05d5","users_blank_description":"\u05dc\u05d0\u05d3\u05dd \u05d4\u05d6\u05d4 \u05d9\u05e9 \u05d0\u05ea \u05d0\u05d5\u05ea\u05d4 \u05e8\u05de\u05ea \u05d4\u05d2\u05d9\u05e9\u05d4 \u05db\u05de\u05d5\u05da \u05d5\u05ea\u05d4\u05d9\u05d4 \u05dc\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3, \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05d5 \u05dc\u05de\u05d7\u05d5\u05e7 \u05e4\u05e8\u05d8\u05d9 \u05e7\u05e9\u05e8.","users_blank_title":"\u05e8\u05e7 \u05dc\u05da \u05d9\u05e9 \u05d2\u05d9\u05e9\u05d4 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05d4\u05d6\u05d4.","users_error_already_invited":"\u05db\u05d1\u05e8 \u05d4\u05d6\u05de\u05e0\u05ea \u05d0\u05ea \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05d4\u05d6\u05d4. \u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d1\u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \u05d0\u05d7\u05e8\u05ea.","users_error_email_already_taken":"\u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \u05d6\u05d5 \u05db\u05d1\u05e8 \u05ea\u05e4\u05d5\u05e1\u05d4. \u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d1\u05d0\u05d7\u05ea \u05d0\u05d7\u05e8\u05ea","users_error_email_not_similar":"\u05d6\u05d0\u05ea \u05dc\u05d0 \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc \u05d4\u05d0\u05d3\u05dd \u05e9\u05d4\u05d6\u05de\u05e0\u05ea.","users_error_please_confirm":"\u05e0\u05d0 \u05dc\u05d4\u05e1\u05db\u05d9\u05dd \u05dc\u05d4\u05d6\u05de\u05e0\u05ea \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05d4\u05d6\u05d4 \u05d1\u05d8\u05e8\u05dd \u05d4\u05de\u05e9\u05da \u05ea\u05d4\u05dc\u05d9\u05da \u05d4\u05d4\u05d6\u05de\u05e0\u05d4","users_invitation_deleted_confirmation_message":"\u05d4\u05d4\u05d6\u05de\u05e0\u05d4 \u05e0\u05de\u05d7\u05e7\u05d4 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","users_invitation_need_subscription":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd \u05d3\u05d5\u05e8\u05e9\u05ea \u05e8\u05d9\u05e9\u05d5\u05dd.","users_invitations_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d4 \u05d4\u05d6\u05d0\u05ea?","users_list_add_user":"\u05d4\u05d6\u05de\u05e0\u05ea \u05de\u05e9\u05ea\u05de\u05e9 \u05d7\u05d3\u05e9","users_list_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05d4\u05d6\u05d4 \u05de\u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da?","users_list_invitations_explanation":"\u05dc\u05d4\u05dc\u05df \u05de\u05d5\u05e4\u05d9\u05e2\u05d9\u05dd \u05d4\u05d0\u05e0\u05e9\u05d9\u05dd \u05e9\u05d4\u05d6\u05de\u05e0\u05ea \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d5\u05e0\u05d9\u05e7\u05d4 \u05db\u05e9\u05d5\u05ea\u05e4\u05d9\u05dd.","users_list_invitations_invited_by":"\u05d4\u05d6\u05de\u05e0\u05d4 \u05de\u05d0\u05ea :name","users_list_invitations_sent_date":"\u05e0\u05e9\u05dc\u05d7 \u05d1\u05be:date","users_list_invitations_title":"\u05d4\u05d6\u05de\u05e0\u05d5\u05ea \u05de\u05de\u05ea\u05d9\u05e0\u05d5\u05ea","users_list_title":"\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e2\u05dd \u05d2\u05d9\u05e9\u05d4 \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","users_list_you":"\u05de\u05d3\u05d5\u05d1\u05e8 \u05d1\u05da","webauthn_buttonAdvise":"\u05d0\u05dd \u05dc\u05de\u05e4\u05ea\u05d7 \u05d4\u05d0\u05d1\u05d8\u05d7\u05d4 \u05e9\u05dc\u05da \u05d9\u05e9 \u05db\u05e4\u05ea\u05d5\u05e8, \u05d9\u05e9 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05e2\u05dc\u05d9\u05d5.","webauthn_delete_confirmation":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05de\u05e4\u05ea\u05d7 \u05d4\u05d6\u05d4?","webauthn_delete_success":"\u05d4\u05de\u05e4\u05ea\u05d7 \u05e0\u05de\u05d7\u05e7","webauthn_enable_description":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05e4\u05ea\u05d7 \u05d0\u05d1\u05d8\u05d7\u05d4 \u05d7\u05d3\u05e9","webauthn_error_already_used":"\u05d4\u05de\u05e4\u05ea\u05d7 \u05d4\u05d6\u05d4 \u05db\u05d1\u05e8 \u05e8\u05e9\u05d5\u05dd. \u05d0\u05d9\u05df \u05d6\u05d4 \u05d4\u05db\u05e8\u05d7\u05d9 \u05dc\u05e8\u05e9\u05d5\u05dd \u05d0\u05d5\u05ea\u05d5 \u05e9\u05d5\u05d1.","webauthn_error_not_allowed":"\u05d4\u05d6\u05de\u05df \u05e9\u05d4\u05d5\u05e7\u05e6\u05d1 \u05dc\u05e4\u05e2\u05d5\u05dc\u05d4 \u05e4\u05d2 \u05d0\u05d5 \u05e9\u05d0\u05d9\u05df \u05d0\u05d9\u05e9\u05d5\u05e8.","webauthn_insertKey":"\u05e0\u05d0 \u05dc\u05d4\u05db\u05e0\u05d9\u05e1 \u05d0\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05d0\u05d1\u05d8\u05d7\u05d4 \u05e9\u05dc\u05da.","webauthn_key_name":"\u05e9\u05dd \u05de\u05e4\u05ea\u05d7:","webauthn_key_name_help":"\u05e0\u05d0 \u05dc\u05ea\u05ea \u05dc\u05de\u05e4\u05ea\u05d7 \u05e9\u05dc\u05da \u05e9\u05dd.","webauthn_last_use":"\u05e9\u05d9\u05de\u05d5\u05e9 \u05d0\u05d7\u05e8\u05d5\u05df: {timestamp}","webauthn_noButtonAdvise":"\u05d0\u05dd \u05d0\u05d9\u05df \u05dc\u05d5, \u05d9\u05e9 \u05dc\u05d4\u05e1\u05d9\u05e8 \u05d0\u05d5\u05ea\u05d5 \u05d5\u05dc\u05d4\u05db\u05e0\u05d9\u05e1 \u05e9\u05d5\u05d1.","webauthn_not_secured":"WebAuthn \u05e0\u05ea\u05de\u05da \u05e2\u05dd \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05de\u05d0\u05d5\u05d1\u05d8\u05d7\u05d9\u05dd \u05d1\u05dc\u05d1\u05d3. \u05e0\u05d0 \u05dc\u05d8\u05e2\u05d5\u05df \u05d0\u05ea \u05d4\u05e2\u05de\u05d5\u05d3 \u05d4\u05d6\u05d4 \u05d1\u05ea\u05e6\u05d5\u05e8\u05ea https.","webauthn_not_supported":"\u05d1\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05e2\u05d3\u05d9\u05d9\u05df \u05d0\u05d9\u05df \u05ea\u05de\u05d9\u05db\u05d4 \u05d1\u05beWebAuthn.","webauthn_success":"\u05d4\u05de\u05e4\u05ea\u05d7 \u05e9\u05dc\u05da \u05de\u05d6\u05d5\u05d4\u05d4 \u05d5\u05e2\u05d5\u05d1\u05e8 \u05d5\u05d9\u05d3\u05d5\u05d0.","webauthn_title":"\u05de\u05e4\u05ea\u05d7 \u05d0\u05d1\u05d8\u05d7\u05d4 \u2014 \u05e4\u05e8\u05d5\u05d8\u05d5\u05e7\u05d5\u05dc WebAuthn"},"validation":{"accepted":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05e1\u05d5\u05de\u05df.","active_url":":attribute \u05d0\u05d9\u05e0\u05d4 \u05db\u05ea\u05d5\u05d1\u05ea \u05ea\u05e7\u05e0\u05d9\u05ea.","after":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05ea\u05d0\u05e8\u05d9\u05da \u05dc\u05d0\u05d7\u05e8 :date.","after_or_equal":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d4\u05ea\u05d0\u05e8\u05d9\u05da :date \u05d0\u05d5 \u05d0\u05d7\u05e8\u05d9\u05d5.","alpha":":attribute \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05db\u05d9\u05dc \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d1\u05dc\u05d1\u05d3.","alpha_dash":"\u05e9\u05d3\u05d4 :attribute \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05db\u05d9\u05dc \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea, \u05de\u05e1\u05e4\u05e8\u05d9\u05dd \u05d5\u05de\u05e7\u05e4\u05d9\u05dd \u05d1\u05dc\u05d1\u05d3.","alpha_num":":attribute \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05db\u05d9\u05dc \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d5\u05de\u05e1\u05e4\u05e8\u05d9\u05dd \u05d1\u05dc\u05d1\u05d3.","array":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05e2\u05e8\u05da.","attributes":[],"before":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05ea\u05d0\u05e8\u05d9\u05da \u05dc\u05e4\u05e0\u05d9 :date.","before_or_equal":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d4\u05ea\u05d0\u05e8\u05d9\u05da :date \u05d0\u05d5 \u05dc\u05e4\u05e0\u05d9\u05d5.","between":{"array":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d9\u05df :min \u05dc\u05d1\u05d9\u05df :max \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd.","file":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d9\u05df :min \u05dc\u05d1\u05d9\u05df :max \u05e7\u05d9\u05dc\u05d5\u05d1\u05ea\u05d9\u05dd.","numeric":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d9\u05df :min \u05dc\u05d1\u05d9\u05df :max.","string":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d9\u05df :min \u05dc\u05d1\u05d9\u05df :max \u05ea\u05d5\u05d5\u05d9\u05dd."},"boolean":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d0\u05de\u05ea \u05d0\u05d5 \u05e9\u05e7\u05e8.","confirmed":"\u05d4\u05d0\u05d9\u05de\u05d5\u05ea \u05e9\u05dc :attribute \u05dc\u05d0 \u05ea\u05d5\u05d0\u05dd.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute \u05d0\u05d9\u05e0\u05d5 \u05ea\u05d0\u05e8\u05d9\u05da \u05ea\u05e7\u05e0\u05d9.","date_equals":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05ea\u05d0\u05e8\u05d9\u05da \u05e9\u05d5\u05d5\u05d4 \u05dc- :date.","date_format":":attribute \u05dc\u05d0 \u05ea\u05d5\u05d0\u05dd \u05d0\u05ea \u05d4\u05de\u05d1\u05e0\u05d4 :format.","different":":attribute \u05d5\u05d2\u05dd :other \u05d7\u05d9\u05d9\u05d1\u05d9\u05dd \u05dc\u05d4\u05d9\u05d5\u05ea \u05e9\u05d5\u05e0\u05d9\u05dd \u05d6\u05d4 \u05de\u05d6\u05d4.","digits":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d0\u05d5\u05e8\u05da :digits \u05e1\u05e4\u05e8\u05d5\u05ea.","digits_between":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d9\u05df :min \u05dc\u05be:max \u05e1\u05e4\u05e8\u05d5\u05ea.","dimensions":"\u05de\u05de\u05d3\u05d9 \u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05e9\u05dc :attribute \u05e9\u05d2\u05d5\u05d9\u05d9\u05dd.","distinct":"\u05dc\u05e9\u05d3\u05d4 :attribute \u05d9\u05e9 \u05e2\u05e8\u05da \u05db\u05e4\u05d5\u05dc.","email":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \u05ea\u05e7\u05e0\u05d9\u05ea.","ends_with":"\u05e9\u05d3\u05d4 :attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05e1\u05ea\u05d9\u05d9\u05dd \u05d1\u05d0\u05d7\u05d3 \u05de\u05d4\u05d1\u05d0\u05d9\u05dd: :values","exists":":attribute \u05d4\u05e0\u05d1\u05d7\u05e8 \u05e9\u05d2\u05d5\u05d9.","file":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d5\u05d1\u05e5.","filled":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05db\u05d9\u05dc \u05dc\u05e2\u05e8\u05da.","gt":{"array":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05db\u05dc\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05de- :value \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd.","file":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05de- :value \u05e7\u05d9\u05dc\u05d5-\u05d1\u05ea\u05d9\u05dd.","numeric":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05de- :value.","string":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05de- :value \u05ea\u05d5\u05d5\u05d9\u05dd."},"gte":{"array":"\u05d4 :attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05db\u05dc\u05d5\u05dc :value \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd \u05d0\u05d5 \u05d9\u05d5\u05ea\u05e8.","file":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05d0\u05d5 \u05e9\u05d5\u05d5\u05d4 \u05dc- :value \u05e7\u05d9\u05dc\u05d5-\u05d1\u05ea\u05d9\u05dd.","numeric":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05d0\u05d5 \u05e9\u05d5\u05d5\u05d4 \u05dc- :value.","string":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05d0\u05d5 \u05e9\u05d5\u05d5\u05d4 \u05dc- :value \u05ea\u05d5\u05d5\u05d9\u05dd."},"image":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05ea\u05de\u05d5\u05e0\u05d4.","in":":attribute \u05d4\u05e0\u05d1\u05d7\u05e8 \u05e9\u05d2\u05d5\u05d9.","in_array":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05dc\u05d0 \u05e7\u05d9\u05d9\u05dd \u05ea\u05d7\u05ea :other.","integer":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05e1\u05e4\u05e8 \u05e9\u05dc\u05dd \u05d5\u05d7\u05d9\u05d5\u05d1\u05d9.","ip":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05db\u05ea\u05d5\u05d1\u05ea IP \u05ea\u05e7\u05e0\u05d9\u05ea.","ipv4":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05db\u05ea\u05d5\u05d1\u05ea IPv4 \u05ea\u05e7\u05e0\u05d9\u05ea.","ipv6":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05db\u05ea\u05d5\u05d1\u05ea IPv6 \u05ea\u05e7\u05e0\u05d9\u05ea.","json":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d7\u05e8\u05d5\u05d6\u05ea JSON \u05ea\u05e7\u05e0\u05d9\u05ea.","lt":{"array":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05db\u05dc\u05d5\u05dc \u05e4\u05d7\u05d5\u05ea \u05de- :value \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd.","file":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d8\u05df \u05de\u05be:value \u05e7\u05d9\u05dc\u05d5\u05d1\u05ea\u05d9\u05dd.","numeric":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05e0\u05de\u05d5\u05da \u05d9\u05d5\u05ea\u05e8 \u05de- :value.","string":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05db\u05d9\u05dc \u05e4\u05d7\u05d5\u05ea \u05de- :value \u05ea\u05d5\u05d5\u05d9\u05dd."},"lte":{"array":"\u05d4 :attribute \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05db\u05dc\u05d5\u05dc \u05d9\u05d5\u05ea\u05e8 \u05de\u05d0\u05e9\u05e8 :value \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd.","file":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d8\u05df \u05d9\u05d5\u05ea\u05e8 \u05d0\u05d5 \u05e9\u05d5\u05d5\u05d4 \u05dc- :value \u05e7\u05d9\u05dc\u05d5-\u05d1\u05ea\u05d9\u05dd.","numeric":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05e0\u05de\u05d5\u05da \u05d0\u05d5 \u05e9\u05d5\u05d5\u05d4 \u05dc- :value.","string":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05db\u05d9\u05dc :value \u05ea\u05d5\u05d5\u05d9\u05dd \u05d0\u05d5 \u05e4\u05d7\u05d5\u05ea."},"max":{"array":"\u05ea\u05d7\u05ea :attribute \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d4\u05d9\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8 \u05de\u05be:max \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd.","file":":attribute \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05de\u05be:max \u05e7\u05d9\u05dc\u05d5\u05d1\u05ea\u05d9\u05dd.","numeric":":attribute \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8 \u05d2\u05d3\u05d5\u05dc \u05de\u05d0\u05e9\u05e8 :max.","string":":attribute \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05de\u05be:max \u05ea\u05d5\u05d5\u05d9\u05dd."},"mimes":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d5\u05d1\u05e5 \u05de\u05e1\u05d5\u05d2: :values.","mimetypes":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d5\u05d1\u05e5 \u05de\u05e1\u05d5\u05d2: :values.","min":{"array":"\u05ea\u05d7\u05ea :attribute \u05d7\u05d9\u05d9\u05d1\u05d9\u05dd \u05dc\u05d4\u05d9\u05d5\u05ea \u05dc\u05e4\u05d7\u05d5\u05ea :min \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd.","file":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d2\u05d5\u05d3\u05dc \u05e9\u05dc \u05dc\u05e4\u05d7\u05d5\u05ea :min \u05e7\u05d9\u05dc\u05d5\u05d1\u05ea\u05d9\u05dd.","numeric":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05dc\u05e4\u05d7\u05d5\u05ea :min.","string":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d0\u05d5\u05e8\u05da \u05e9\u05dc \u05dc\u05e4\u05d7\u05d5\u05ea :min \u05ea\u05d5\u05d5\u05d9\u05dd."},"not_in":":attribute \u05d4\u05e0\u05d1\u05d7\u05e8 \u05e9\u05d2\u05d5\u05d9.","not_regex":"\u05d4\u05ea\u05d1\u05e0\u05d9\u05ea :attribute \u05e9\u05d2\u05d5\u05d9\u05d4.","numeric":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05e1\u05e4\u05e8.","password":"\u05d4\u05e1\u05e1\u05de\u05d4 \u05e9\u05d2\u05d5\u05d9\u05d4.","present":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e0\u05d5\u05db\u05d7.","regex":"\u05d4\u05de\u05d1\u05e0\u05d4 :attribute \u05e9\u05d2\u05d5\u05d9.","required":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05e0\u05d7\u05d5\u05e5.","required_if":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05e0\u05d7\u05d5\u05e5 \u05db\u05d0\u05e9\u05e8 :other \u05d4\u05d5\u05d0 :value.","required_unless":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05e0\u05d7\u05d5\u05e5 \u05d0\u05dc\u05de\u05dc\u05d0 :other \u05e7\u05d9\u05d9\u05dd \u05d1\u05ea\u05d5\u05da :values.","required_with":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05e0\u05d7\u05d5\u05e5 \u05db\u05d0\u05e9\u05e8 :values \u05e7\u05d9\u05d9\u05de\u05d9\u05dd.","required_with_all":"\u05e9\u05d3\u05d4 :attribute \u05e0\u05d7\u05d5\u05e5 \u05db\u05d0\u05e9\u05e8 :values \u05e0\u05de\u05e6\u05d0.","required_without":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05e0\u05d7\u05d5\u05e5 \u05db\u05d0\u05e9\u05e8 :values \u05d0\u05d9\u05e0\u05dd \u05e7\u05d9\u05d9\u05de\u05d9\u05dd.","required_without_all":"\u05d4\u05e9\u05d3\u05d4 :attribute \u05e0\u05d7\u05d5\u05e5 \u05db\u05d0\u05e9\u05e8 \u05d0\u05e3 \u05d0\u05d7\u05d3 \u05de\u05d1\u05d9\u05df :values \u05e7\u05d9\u05d9\u05dd.","same":":attribute \u05d5\u05d2\u05dd :other \u05d7\u05d9\u05d9\u05d1\u05d9\u05dd \u05dc\u05d4\u05d9\u05d5\u05ea \u05ea\u05d5\u05d0\u05de\u05d9\u05dd.","size":{"array":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05db\u05d9\u05dc :size \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd.","file":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d2\u05d5\u05d3\u05dc \u05e9\u05dc :size \u05e7\u05d9\u05dc\u05d5\u05d1\u05ea\u05d9\u05dd.","numeric":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d2\u05d5\u05d3\u05dc :size.","string":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d1\u05d0\u05d5\u05e8\u05da \u05e9\u05dc :size \u05ea\u05d5\u05d5\u05d9\u05dd."},"starts_with":"\u05d4 :attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05e2\u05dd \u05d0\u05d7\u05d3 \u05de\u05d4\u05d1\u05d0\u05d9\u05dd: :values","string":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d5\u05d1\u05e5.","timezone":":attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d0\u05d6\u05d5\u05e8 \u05ea\u05e7\u05e0\u05d9.","unique":":attribute \u05db\u05d1\u05e8 \u05ea\u05e4\u05d5\u05e1.","uploaded":"\u05d4\u05e2\u05dc\u05d0\u05ea :attribute \u05e0\u05db\u05e9\u05dc\u05d4.","url":"\u05d4\u05ea\u05d1\u05e0\u05d9\u05ea :attribute \u05e9\u05d2\u05d5\u05d9\u05d4.","uuid":"\u05d4 :attribute \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d6\u05d4\u05d4 \u05d9\u05d9\u05d7\u05d5\u05d3\u05d9 \u05d0\u05d5\u05e0\u05d9\u05d1\u05e8\u05e1\u05dc\u05d9 (UUID) \u05d7\u05d5\u05e7\u05d9.","vue":{"max":{"numeric":"{field} \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc \u05de\u05d4\u05e2\u05e8\u05da {max}.","string":"{field} \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d7\u05e8\u05d5\u05d2 \u05de\u05e2\u05d1\u05e8 \u05dc\u05be{max} \u05ea\u05d5\u05d5\u05d9\u05dd."},"required":"{field} \u05d4\u05d5\u05d0 \u05e9\u05d3\u05d4 \u05d7\u05d5\u05d1\u05d4.","url":"{field} \u05d0\u05d9\u05e0\u05d4 \u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05ea\u05e8 \u05ea\u05e7\u05e0\u05d9\u05ea."}}} diff --git a/public/js/langs/hr.json b/public/js/langs/hr.json deleted file mode 100644 index 4ba32810ac6..00000000000 --- a/public/js/langs/hr.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Dodaj","another_day":"drugi dan","application_description":"Monica is a tool to manage your interactions with your loved ones, friends and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 upravljanje osobnim odnosima","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Poni\u0161ti","close":"Zatvori","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or account and will never do.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Dodaj","date":"Datum","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Obri\u0161i","delete_confirm":"Are you sure?","done":"Gotovo","download":"Preuzmi","edit":"Uredi","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"\u0160to je novo","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Pravila privatnosti","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Pridonesite","footer_version":"Verzija :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Odjava","header_settings_link":"Postavke","load_more":"U\u010ditaj vi\u0161e","loading":"Loading\u2026","main_nav_activities":"Aktivnosti","main_nav_cta":"Dodajte osobu","main_nav_dashboard":"Nadzorna plo\u010da","main_nav_family":"Kontakti","main_nav_journal":"Dnevnik","main_nav_tasks":"Zadaci","markdown_description":"Want to format your text in a nice way? We support Markdown to add bold, italic, lists and more.","markdown_link":"Pro\u010ditajte dokumentaciju","new":"novo","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex husband","relationship_type_ex_husband_female":"ex wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex wife","relationship_type_ex_husband_with_name":":name\u2019s ex husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"druga vrsta odnosa","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"partner","relationship_type_partner_female":"partnerica","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Izbri\u0161i","retry":"Retry","revoke":"Opozovi","save":"Spremi","save_close":"Spremi i zatvori","today":"danas","type":"Vrsta","unknown":"Nepoznato","update":"A\u017euriraj","upgrade":"Upgrade to unlock","upload":"Uploadaj","verify":"Potvrdi","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"s","yes":"Yes","yesterday":"ju\u010der","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"Ovi podaci ne odgovaraju na\u0161ima.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"Previ\u0161e poku\u0161aja prijave. Molim Vas poku\u0161ajte ponovno za :seconds sekundi.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Sljede\u0107a \u276f","previous":"\u276e Prethodna"},"passwords":{"changed":"Password changed successfully.","invalid":"Lozinka koju ste unijeli nije to\u010dna.","reset":"Lozinka je postavljena!","sent":"Poveznica za ponovono postavljanje lozinke je poslana!","throttled":"Please wait before retrying.","token":"Oznaka za ponovno postavljanje lozinke vi\u0161e nije va\u017ee\u0107a.","user":"Korisnik nije prona\u0111en."},"people":{"activities_activity":"Kategorija aktivnosti","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"Uspje\u0161no brisanje aktivnosti","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value aktivnost|:value aktivnosti","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Izvje\u0161taj aktivnosti izme\u0111u tebe i osobe: :name ","activities_profile_year_summary":"Pregled aktivnosti u godini :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"Uspje\u0161no a\u017euriranje aktivnosti","activities_view_activities_report":"Izvje\u0161taj aktivnosti","activities_who_was_involved":"Tko je sudjelovao?","activity_title":"Activities","activity_type_ate_at_his_place":"jeli u gostima","activity_type_ate_at_home":"jeli doma","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Kultura","activity_type_category_food":"hrana","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"dru\u017eenje","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"razgovarali doma","activity_type_watched_movie_at_home":"gledali film doma","activity_type_went_bar":"bili u kafi\u0107u","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"oko :age godina","age_exact_birthdate":"ro\u0111en\/a :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Datum ro\u0111enja nije unesen","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Zabilje\u017ei poziv","call_delete_confirmation":"Jeste li sigurni da \u017eelite izbrisati ovaj poziv?","call_delete_success":"Poziv je uspje\u0161no obrisan","call_emotions":"Emotions:","call_empty_comment":"Nema pojedinosti","call_he_called":"{name} called","call_title":"Telefonski pozivi","call_you_called":"You called","calls_add_success":"Poziv je uspje\u0161no unesen.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Dodajte jo\u0161 jednu poruku","conversation_add_content":"Zapi\u0161ite ono \u0161to je re\u010deno","conversation_add_error":"You must add at least one message.","conversation_add_how":"Kako ste komunicirali?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Unesi novi razgovor","conversation_add_what_was_said":"\u0160to ste vi rekli?","conversation_add_when":"Kada ste imali ovaj razgovor?","conversation_add_who_wrote":"Tko je napisao ovu poruku?","conversation_add_you":"Vi","conversation_blank":"Bilje\u017ei razgovore koje ste imali vi i :name imali na socijalnim mre\u017eama.","conversation_delete_link":"Izbri\u0161i razgovor","conversation_delete_success":"Razgovor je uspje\u0161no izbrisan.","conversation_edit_delete":"Jeste li sigurni da \u017eelite izbrisati razgovor? Brisanje je trajno.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Uredi razgovor","conversation_list_cta":"Zabilje\u017ei razgovor","conversation_list_table_content":"Djelomi\u010dni sadr\u017eaj (zadnja poruka)","conversation_list_table_messages":"Poruke","conversation_list_title":"Razgovori","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Dodaj dug","debt_add_reason":"for the following reason (optional)","debt_add_success":"Uspje\u0161no dodavanje duga","debt_add_they_owe":":name owes you","debt_add_title":"Ure\u0111ivanje dugova za osobu: :name","debt_add_you_owe":"Ti duguje\u0161 osobi: :name","debt_delete_confirmation":"Jeste li sigurni da \u017eelite izbrisati ovaj dug?","debt_delete_success":"Uspje\u0161no brisanje duga","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name duguje tebi :amount","debt_title":"Dugovi","debt_you_owe":"Duguje\u0161 :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Uredi kontakt","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Komentar (opcionalno)","gifts_add_date":"Date (optional)","gifts_add_gift":"Dodaj poklon","gifts_add_gift_already_offered":"Ve\u0107 poklonjeno","gifts_add_gift_idea":"Ideja za poklon","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Primljen poklon","gifts_add_gift_title":"\u0160to je bio ovaj poklon?","gifts_add_link":"Poveznica na web stranicu (opcionalno)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"Uspje\u0161no dodavanje poklona","gifts_add_title":"Ure\u0111ivanje poklona za osobu: :name","gifts_add_value":"Vrijednost (opcionalno)","gifts_delete_confirmation":"Jeste li sigurni da \u017eelite izbrisati ovaj poklon?","gifts_delete_cta":"Obri\u0161i","gifts_delete_success":"Uspje\u0161no brisanje poklona","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Ideje za poklone","gifts_link":"Poveznica","gifts_mark_offered":"Ozna\u010di kao poklonjeno","gifts_offered":"Ve\u0107 poklonjeno","gifts_offered_as_an_idea":"Ozna\u010di kao ideju","gifts_received":"Primljeni pokloni","gifts_title":"Pokloni","gifts_update_success":"Uspje\u0161no a\u017euriranje poklona","gifts_view_comment":"Pogledaj komentar","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"Ime","information_edit_lastname":"Prezime (opcionalno)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"Ova osoba je otprilike...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name\u2019s personal information","information_edit_unknown":"Ne znam starost ove osobe","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"O \u010demu ste razgovarali? (opcionalno)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"Poziv se dogodio","modal_call_title":"Zabilje\u017ei poziv","modal_call_who_called":"Who called?","notes_add_cta":"Dodaj bilje\u0161ku","notes_create_success":"Uspje\u0161no dodavanje bilje\u0161ke","notes_delete_confirmation":"Jeste li sigurni da \u017eelite izbrisati ovu bilje\u0161ku? Brisanje je trajno","notes_delete_success":"Bilje\u0161ka je uspje\u0161no obrisana","notes_delete_title":"Izbri\u0161i bilje\u0161ku","notes_favorite":"Dodaj\/ukloni iz favorita","notes_update_success":"Uspje\u0161no spremanje bilje\u0161ke","people_add_birthday_reminder":"Za\u017eeli sretan ro\u0111endan :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"Dodaj","people_add_firstname":"Ime","people_add_gender":"Spol","people_add_import":"\u017delite li uvesti svoje kontakte<\/a>?","people_add_lastname":"Prezime (opcionalno)","people_add_middlename":"Srednje ime (opcionalno)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nadimak (opcionalno)","people_add_reminder_for_birthday":"Napravi godi\u0161nji podsjetnik za ro\u0111endan","people_add_success":"Kontakt :name je uspje\u0161no unesen","people_add_title":"Dodajte novu osobu","people_delete_confirmation":"Jeste li sigurni da \u017eelite izbrisati kontakt? Brisanje je trajno.","people_delete_message":"Delete contact","people_delete_success":"Kontakt je obrisan","people_edit_email_error":"Ve\u0107 postoji kontakt s ovom email adresom. Molimo unesite drugu.","people_export":"Izvezi kao vCard","people_list_account_upgrade_cta":"Nadogradi sada","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"Novi kontakt","people_list_blank_title":"Jo\u0161 nemate unesenih kontakata","people_list_clear_filter":"O\u010disti filter","people_list_contacts_per_tags":"1 kontakt|:count kontakata","people_list_filter_tag":"Prikazuju se svi kontakti ozna\u010deni sa","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sortiraj po imenu A \u2192 Z","people_list_firstnameZA":"Sortiraj po imenu Z \u2192 A","people_list_hide_dead":"Sakrij umrle osobe (:count)","people_list_last_updated":"Posljednji a\u017eurirani:","people_list_lastactivitydateNewtoOld":"Sortiraj po datumu zadnje aktivnosti (najnoviji prema najstarijem)","people_list_lastactivitydateOldtoNew":"Sortiraj po datumu zadnje aktivnosti (najstariji prema najnovijem)","people_list_lastnameAZ":"Sortiraj po prezimenu A \u2192 Z","people_list_lastnameZA":"Sortiraj po prezimenu Z \u2192 A","people_list_number_kids":"1 dijete|:count djece","people_list_number_reminders":"1 podsjetnik|:count podsjetnika","people_list_show_dead":"Poka\u017ei umrle osobe (:count)","people_list_sort":"Sortiraj","people_list_stats":"1 kontakt|:count kontakata","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Unesi pa dodaj drugu osobu","people_search":"Pretra\u017ei svoje kontakte...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Dodaj novi odnos","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"Dodaj postoje\u0107i kontakt","relationship_form_associate_dropdown":"Pretra\u017ei i odaberi postoje\u0107i kontakt iz padaju\u0107eg izbornika","relationship_form_associate_dropdown_placeholder":"Pretra\u017ei i odaberi postoje\u0107i kontakt","relationship_form_create_contact":"Dodajte novu osobu","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Uredi postoje\u0107i odnos","relationship_form_is_with":"Ova osoba je...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Molim podsjeti me da...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"Kada sljede\u0107i put \u017eelite dobiti podsjetnik?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"\u0160to \u017eeli\u0161 zapamtiti za :name?","reminders_birthday":"Ro\u0111endan :name","reminders_blank_add_activity":"Dodaj podsjetnik","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"mjesec","reminders_type_week":"tjedan","reminders_type_year":"godina","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Informacije o kontaktu","section_personal_activities":"Aktivnosti","section_personal_gifts":"Pokloni","section_personal_notes":"Bilje\u0161ke","section_personal_reminders":"Podsjetnici","section_personal_tasks":"Zadaci","set_favorite":"Omiljeni kontakti smje\u0161teni su na vrhu popisa","stay_in_touch":"Ostani u kontaktu","stay_in_touch_frequency":"Ostanite u kontaktu svaki dan|Ostanite u kontaktu svaka\/ih {count} dana","stay_in_touch_invalid":"U\u010destalost treba biti broj ve\u0107i od 0.","stay_in_touch_modal_desc":"Mo\u017eemo vas mailom podsjetiti da radovito ostenete u kontaktu sa {firstname}.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Ostani u kontaktu","stay_in_touch_premium":"Potrebno je nadograditi ra\u010dun za kori\u0161tenje ove opcije","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information updated","work_edit_title":"Update :name\u2019s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"Polje :attribute mora biti prihva\u0107eno.","active_url":"Polje :attribute nije ispravan URL.","after":"Polje :attribute mora biti datum nakon :date.","after_or_equal":"Polje :attribute mora biti datum ve\u0107i ili jednak :date.","alpha":"Polje :attribute smije sadr\u017eavati samo slova.","alpha_dash":"Polje :attribute smije sadr\u017eavati samo slova, brojeve i crtice.","alpha_num":"Polje :attribute smije sadr\u017eavati samo slova i brojeve.","array":"Polje :attribute mora biti niz.","attributes":[],"before":"Polje :attribute mora biti datum prije :date.","before_or_equal":"Polje :attribute mora biti datum manji ili jednak :date.","between":{"array":"Polje :attribute mora imati izme\u0111u :min - :max stavki.","file":"Polje :attribute mora biti izme\u0111u :min - :max kilobajta.","numeric":"Polje :attribute mora biti izme\u0111u :min - :max.","string":"Polje :attribute mora biti izme\u0111u :min - :max znakova."},"boolean":"Polje :attribute mora biti false ili true.","confirmed":"Potvrda polja :attribute se ne podudara.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"Polje :attribute nije ispravan datum.","date_equals":"Stavka :attribute mora biti jednaka :date.","date_format":"Polje :attribute ne podudara s formatom :format.","different":"Polja :attribute i :other moraju biti razli\u010dita.","digits":"Polje :attribute mora sadr\u017eavati :digits znamenki.","digits_between":"Polje :attribute mora imati izme\u0111u :min i :max znamenki.","dimensions":"Polje :attribute ima neispravne dimenzije slike.","distinct":"Polje :attribute ima dupliciranu vrijednost.","email":"Polje :attribute mora biti ispravna e-mail adresa.","ends_with":"The :attribute must end with one of the following: :values.","exists":"Odabrano polje :attribute nije ispravno.","file":"Polje :attribute mora biti datoteka.","filled":"The :attribute field is required.","gt":{"array":"Polje :attribute mora biti ve\u0107e od :value stavki.","file":"Polje :attribute mora biti ve\u0107e od :value kilobajta.","numeric":"Polje :attribute mora biti ve\u0107e od :value.","string":"Polje :attribute mora biti ve\u0107e od :value karaktera."},"gte":{"array":"Polje :attribute mora imati :value stavki ili vi\u0161e.","file":"Polje :attribute mora biti ve\u0107e ili jednako :value kilobajta.","numeric":"Polje :attribute mora biti ve\u0107e ili jednako :value.","string":"Polje :attribute mora biti ve\u0107e ili jednako :value znakova."},"image":"Polje :attribute mora biti slika.","in":"Odabrano polje :attribute nije ispravno.","in_array":"Polje :attribute ne postoji u :other.","integer":"Polje :attribute mora biti broj.","ip":"Polje :attribute mora biti ispravna IP adresa.","ipv4":"Polje :attribute mora biti ispravna IPv4 adresa.","ipv6":"Polje :attribute mora biti ispravna IPv6 adresa.","json":"Polje :attribute mora biti ispravan JSON string.","lt":{"array":"Polje :attribute mora biti manje od :value stavki.","file":"Polje :attribute mora biti manje od :value kilobajta.","numeric":"Polje :attribute mora biti manje od :value.","string":"Polje :attribute mora biti manje od :value znakova."},"lte":{"array":"Polje :attribute ne smije imati vi\u0161e od :value stavki.","file":"Polje :attribute mora biti manje ili jednako :value kilobajta.","numeric":"Polje :attribute mora biti manje ili jednako :value.","string":"Polje :attribute mora biti manje ili jednako :value znakova."},"max":{"array":"Polje :attribute ne smije imati vi\u0161e od :max stavki.","file":"Polje :attribute mora biti manje od :max kilobajta.","numeric":"Polje :attribute mora biti manje od :max.","string":"Polje :attribute mora sadr\u017eavati manje od :max znakova."},"mimes":"Polje :attribute mora biti datoteka tipa: :values.","mimetypes":"Polje :attribute mora biti datoteka tipa: :values.","min":{"array":"Polje :attribute mora sadr\u017eavati najmanje :min stavki.","file":"Polje :attribute mora biti najmanje :min kilobajta.","numeric":"Polje :attribute mora biti najmanje :min.","string":"Polje :attribute mora sadr\u017eavati najmanje :min znakova."},"not_in":"Odabrano polje :attribute nije ispravno.","not_regex":"Format polja :attribute je neispravan.","numeric":"Polje :attribute mora biti broj.","password":"The password is incorrect.","present":"Polje :attribute mora biti prisutno.","regex":"Polje :attribute se ne podudara s formatom.","required":"Polje :attribute je obavezno.","required_if":"Polje :attribute je obavezno kada polje :other sadr\u017ei :value.","required_unless":"Polje :attribute je obavezno osim :other je u :values.","required_with":"Polje :attribute je obavezno kada postoji polje :values.","required_with_all":"Polje :attribute je obavezno kada postje polja :values.","required_without":"Polje :attribute je obavezno kada ne postoji polje :values.","required_without_all":"Polje :attribute je obavezno kada nijedno od polja :values ne postoji.","same":"Polja :attribute i :other se moraju podudarati.","size":{"array":"Polje :attribute mora sadr\u017eavati :size stavki.","file":"Polje :attribute mora biti :size kilobajta.","numeric":"Polje :attribute mora biti :size.","string":"Polje :attribute mora biti :size znakova."},"starts_with":"Stavka :attribute mora zapo\u010dinjati jednom od narednih stavki: :values","string":"Polje :attribute mora biti string.","timezone":"Polje :attribute mora biti ispravna vremenska zona.","unique":"Polje :attribute ve\u0107 postoji.","uploaded":"Polje :attribute nije uspe\u0161no u\u010ditano.","url":"Polje :attribute nije ispravnog formata.","uuid":"Stavka :attribute mora biti valjani UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/id.json b/public/js/langs/id.json deleted file mode 100644 index 0791e51c0f3..00000000000 --- a/public/js/langs/id.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Tambah","another_day":"hari yang lain","application_description":"Monica adalah sebuah alat untuk mengelola interaksi Anda dengan orang yang Anda sayangi, teman, dan keluarga.","application_og_title":"Bangun hubungan yang lebih baik dengan orang yang Anda sayangi. CRM bebas untuk teman dan keluarga.","application_title":"Monica \u2013 pengelola kontak relasi pribadi","back":"Kembali","breadcrumb_add_note":"Tambah sebuah catatan","breadcrumb_add_significant_other":"Tambahkan orang yang berarti","breadcrumb_api":"API","breadcrumb_archived_contacts":"Kontak yang diarsipkan","breadcrumb_dashboard":"Dasbor","breadcrumb_dav":"Sumberdaya DAV","breadcrumb_edit_introductions":"Bagaimana Anda bertemu","breadcrumb_edit_note":"Sunting sebuah catatan","breadcrumb_edit_significant_other":"Sunting orang yang berarti","breadcrumb_journal":"Jurnal","breadcrumb_list_contacts":"Daftar orang","breadcrumb_profile":"Profil dari :name","breadcrumb_settings":"Pengaturan","breadcrumb_settings_export":"Ekspor","breadcrumb_settings_import":"Impor","breadcrumb_settings_import_report":"Impor laporan","breadcrumb_settings_import_upload":"Unggah","breadcrumb_settings_personalization":"Personalisasi","breadcrumb_settings_security":"Keamanan","breadcrumb_settings_security_2fa":"Otentikasi Dua Faktor","breadcrumb_settings_subscriptions":"Berlangganan","breadcrumb_settings_tags":"Tag","breadcrumb_settings_users":"Pengguna","breadcrumb_settings_users_add":"Tambah seorang pengguna","cancel":"Batalkan","close":"Tutup","compliance_desc":"Kami telah merubah Ketentuan Penggunaan<\/a> dan Kebijakan Privasi<\/a> kami. Berdasarkan hukum, kami harus meminta Anda untuk meninjau kebijakan tersebut dan menyetujuinya agar Anda dapat melanjutkan untuk menggunakan akun Anda.","compliance_desc_end":"Kami tidak melakukan sesuatu yang buruk terhadap data atau akun Anda dan kami tidak akan pernah melakukannya.","compliance_terms":"Setujui ketentuan dan kebijakan privasi yang baru","compliance_title":"Maaf untuk gangguan ini.","confirm":"Konfirmasi","contact_list_avatar":"Avatar","contact_list_description":"Deskripsi","contact_list_name":"Kontak","copy":"Salin","create":"Buat","date":"Tanggal","dav_birthdays":"Ulang tahun","dav_birthdays_description":"Ulang tahun kontak :name","dav_contacts":"Kontak","dav_contacts_description":"Kontak :name","dav_tasks":"Tugas","dav_tasks_description":"Tugas :name","default_save_success":"Data telah disimpan.","delete":"Hapus","delete_confirm":"Apakah Anda yakin?","done":"Selesai","download":"Unduh","edit":"Sunting","emotion_adoration":"Pemujaan","emotion_affection":"Kasih sayang","emotion_aggravation":"Kejengkelan","emotion_agitation":"Agitasi","emotion_agony":"Penderitaan Mendalam","emotion_alarm":"Khawatir","emotion_alienation":"Pengasingan","emotion_amazement":"Kekaguman","emotion_amusement":"Hiburan","emotion_anger":"Marah","emotion_anguish":"Penderitaan Berat","emotion_annoyance":"Gangguan","emotion_anxiety":"Kegelisahan","emotion_apprehension":"Prihatin","emotion_arousal":"Gairah","emotion_astonishment":"Keheranan","emotion_attraction":"Daya Tarik","emotion_bitterness":"Kepahitan","emotion_bliss":"Kebahagiaan","emotion_caring":"Kepedulian","emotion_cheerfulness":"Kegembiraan","emotion_compassion":"Belas Kasih","emotion_contempt":"Penghinaan","emotion_contentment":"Nafsu","emotion_defeat":"Kekalahan","emotion_dejection":"Kekesalan","emotion_delight":"Kegembiraan","emotion_depression":"Depresi","emotion_desire":"Keinginan","emotion_despair":"Putus Asa","emotion_disappointment":"Kecewa","emotion_disgust":"Kenajisan","emotion_dislike":"Tidak suka","emotion_dismay":"Kecemasan","emotion_displeasure":"Ketidaksenangan","emotion_distress":"Kesulitan","emotion_dread":"Ketakutan","emotion_eagerness":"Keinginan","emotion_ecstasy":"Sukacita","emotion_elation":"Kegirangan Hati","emotion_embarrassment":"Rasa Malu","emotion_enjoyment":"Kenikmatan","emotion_enthrallment":"Kekaguman","emotion_enthusiasm":"Antusiasme","emotion_envy":"Iri","emotion_euphoria":"Uforia","emotion_exasperation":"Kejengkelan","emotion_excitement":"Kegembiraan","emotion_exhilaration":"Kegembiraan","emotion_fear":"Takut","emotion_ferocity":"Keganasan","emotion_fondness":"Kesukaan","emotion_fright":"Ketakutan","emotion_frustration":"Frustrasi","emotion_fury":"Marah Besar","emotion_gaiety":"Keriangan","emotion_gladness":"Kepuasan","emotion_glee":"Keriaan","emotion_gloom":"Suram","emotion_glumness":"Kesuraman","emotion_grief":"Duka","emotion_grouchiness":"Menggerutu","emotion_grumpiness":"Sifat galak","emotion_guilt":"Rasa Bersalah","emotion_happiness":"Kebahagiaan","emotion_hate":"Benci","emotion_homesickness":"Rindu Rumah","emotion_hope":"Harapan","emotion_hopelessness":"Keputusasan","emotion_horror":"Kengerian","emotion_hostility":"Perseteruan","emotion_humiliation":"Penghinaan","emotion_hurt":"Tersakiti","emotion_hysteria":"Histeris","emotion_infatuation":"Jatuh Hati","emotion_insecurity":"Gelisah","emotion_insult":"Menghina","emotion_irritation":"Iritasi","emotion_isolation":"Isolasi","emotion_jealousy":"Kecemburuan","emotion_jolliness":"Kegirangan","emotion_joviality":"Keriangan","emotion_joy":"Gembira","emotion_jubilation":"Sorak Sorai","emotion_liking":"Kesukaan","emotion_loathing":"Kebencian","emotion_loneliness":"Kesendirian","emotion_longing":"Kangen","emotion_love":"Percintaan","emotion_lust":"Nafsu","emotion_melancholy":"Melankolis","emotion_misery":"Penderitaan","emotion_mortification":"Malu","emotion_neglect":"Ditinggalkan","emotion_nervousness":"Gerogi","emotion_optimism":"Optimisme","emotion_outrage":"Kekejaman","emotion_panic":"Panik","emotion_passion":"Semangat","emotion_pity":"Mengasihani","emotion_pleasure":"Kesenangan","emotion_pride":"Kebanggaan","emotion_primary_anger":"Marah","emotion_primary_fear":"Takut","emotion_primary_joy":"Gembira","emotion_primary_love":"Percintaan","emotion_primary_sadness":"Sedih","emotion_primary_surprise":"Kejutan","emotion_rage":"Marah","emotion_rapture":"Kegirangan","emotion_regret":"Penyesalan","emotion_rejection":"Penolakan","emotion_relief":"Kelegaan","emotion_remorse":"Penyesalan","emotion_resentment":"Kebencian","emotion_revulsion":"Rasa Muka","emotion_sadness":"Kesedihan","emotion_satisfaction":"Kepuasan","emotion_scorn":"Cemooh","emotion_secondary_affection":"Kasih sayang","emotion_secondary_cheerfulness":"Kegembiraan","emotion_secondary_contentment":"Nafsu","emotion_secondary_disappointment":"Kecewa","emotion_secondary_disgust":"Kenajisan","emotion_secondary_enthrallment":"Kekaguman","emotion_secondary_envy":"Iri","emotion_secondary_exasperation":"Kejengkelan","emotion_secondary_horror":"Kengerian","emotion_secondary_irritation":"Iritasi","emotion_secondary_longing":"Kangen","emotion_secondary_lust":"Nafsu","emotion_secondary_neglect":"Ditinggalkan","emotion_secondary_nervousness":"Gerogi","emotion_secondary_optimism":"Optimisme","emotion_secondary_pride":"Kebanggaan","emotion_secondary_rage":"Kemarahan","emotion_secondary_relief":"Kelegaan","emotion_secondary_sadness":"Kesedihan","emotion_secondary_shame":"Malu","emotion_secondary_suffering":"Kesakitan","emotion_secondary_surprise":"Kejutan","emotion_secondary_sympathy":"Simpati","emotion_secondary_zest":"Gembira","emotion_sentimentality":"Sentimental","emotion_shame":"Malu","emotion_shock":"Syok","emotion_sorrow":"Nestapa","emotion_spite":"Dendam","emotion_suffering":"Kesakitan","emotion_surprise":"Kejutan","emotion_sympathy":"Simpati","emotion_tenderness":"Kelembutan","emotion_tenseness":"Ketegangan","emotion_terror":"Teror","emotion_thrill":"Sensasi","emotion_uneasiness":"Rasa Gelisah","emotion_unhappiness":"Ketidakbahagiaan","emotion_vengefulness":"Rasa Dendam","emotion_woe":"Duka","emotion_worry":"Khawatir","emotion_wrath":"Wrath","emotion_zeal":"Semangat","emotion_zest":"Gembira","error_help":"Kami akan segera kembali lagi.","error_id":"ID Kesalahan: :id","error_maintenance":"Sedang dalam mode pemeliharaan. Kami akan segera kembali.","error_no_term":"Belum ada kebijakan untuk contoh ini.","error_save":"Kami mengalami kesalahan ketika mencoba menyimpan data.","error_title":"Uppss Kakak! Suatu kesalahan telah terjadi.","error_try_again":"Terjadi sesuatu kesalahan. Silahkan coba lagi.","error_twitter":"Ikuti akun Twitter kami<\/a> untuk pemberitahuan ketika sudah berjalan kembali.","error_unauthorized":"Anda tidak punya izin untuk menyunting sumber daya ini.","error_unavailable":"Layanan tidak tersedia","error_user_account":"Pengguna ini bukan termasuk dalam akun yang diberikan.","file_selected":"Satu berkas dipilih\u2026|{count} berkas dipilih\u2026","filter":"Filter daftar","footer_modal_version_release_away":"Anda tertinggal 1 rilisan dibelakang versi baru yang tersedia. Anda harus memperbarui pemasangan Anda.|Anda tertinggal :number rilisan dibelakang versi baru yang tersedia. Anda harus memperbarui pemasangan Anda.","footer_modal_version_whats_new":"Apa yang baru","footer_new_version":"Sebuah versi baru dari Monica tersedia","footer_newsletter":"Newsletter","footer_privacy":"Kebijakan privasi","footer_release":"Catatan rilis","footer_remarks":"Komentar?","footer_send_email":"Kirim kami sebuah email","footer_source_code":"Kontribusi","footer_version":"Versi: :version","gender_female":"Perempuan","gender_male":"Laki-laki","gender_no_gender":"Tidak ada jenis kelamin","gender_none":"Lebih baik tidak mengatakan","go_back":"Kembali","header_changelog_link":"Perubahan produk","header_logout_link":"Keluar","header_settings_link":"Pengaturan","load_more":"Muat lebih banyak","loading":"Memuat\u2026","main_nav_activities":"Aktifitas","main_nav_cta":"Tambah orang","main_nav_dashboard":"Dasbor","main_nav_family":"Kontak","main_nav_journal":"Jurnal","main_nav_tasks":"Tugas","markdown_description":"Ingin memformat teks Anda lebih bagus? Kami mendukung format Markdown untuk menambahkan tekstebal, italik, daftar, dan banyak lagi.","markdown_link":"Baca dokumentasi","new":"baru","no":"Tidak","percent_uploaded":"{percent}% diunggah","relationship_type_bestfriend":"teman akrab","relationship_type_bestfriend_female":"teman akrab","relationship_type_bestfriend_female_with_name":"Sahabat :name","relationship_type_bestfriend_with_name":"Sahabat :name","relationship_type_boss":"bos","relationship_type_boss_female":"bos","relationship_type_boss_female_with_name":"bos :name","relationship_type_boss_with_name":"bos :name","relationship_type_child":"putra","relationship_type_child_female":"putri","relationship_type_child_female_with_name":"Putri :name","relationship_type_child_with_name":"Putra :name","relationship_type_colleague":"kolega","relationship_type_colleague_female":"kolega","relationship_type_colleague_female_with_name":"Kolega :name","relationship_type_colleague_with_name":"Kolega :name","relationship_type_cousin":"saudara","relationship_type_cousin_female":"saudara","relationship_type_cousin_female_with_name":"saudara :name","relationship_type_cousin_with_name":"saudara :name","relationship_type_date":"tanggal","relationship_type_date_female":"tanggal","relationship_type_date_female_with_name":"Tanggal :name","relationship_type_date_with_name":"Tanggal :name","relationship_type_ex":"mantan pacar","relationship_type_ex_female":"mantan pacar","relationship_type_ex_female_with_name":"Mantan pacar :name","relationship_type_ex_husband":"mantan suami","relationship_type_ex_husband_female":"mantan istri","relationship_type_ex_husband_female_with_name":"Mantan istri :name","relationship_type_ex_husband_with_name":"Mantan suami :name","relationship_type_ex_with_name":"Mantan pacar :name","relationship_type_friend":"teman","relationship_type_friend_female":"teman","relationship_type_friend_female_with_name":"Teman :name","relationship_type_friend_with_name":"Teman :name","relationship_type_godfather":"wali laki-laki","relationship_type_godfather_female":"wali perempuan","relationship_type_godfather_female_with_name":"Wali perempuan :name","relationship_type_godfather_with_name":"Wali laki-laki :name","relationship_type_godson":"anak laki-laki wali","relationship_type_godson_female":"anak perempuan wali","relationship_type_godson_female_with_name":"Anak perempuan wali :name","relationship_type_godson_with_name":"Anak laki-laki wali :name","relationship_type_grandchild":"cucu","relationship_type_grandchild_female":"cucu","relationship_type_grandchild_female_with_name":"Cucu :name","relationship_type_grandchild_with_name":"Cucu :name","relationship_type_grandparent":"eyang","relationship_type_grandparent_female":"eyang","relationship_type_grandparent_female_with_name":"Eyang :nama","relationship_type_grandparent_with_name":"Eyang :nama","relationship_type_group_family":"Hubungan keluarga","relationship_type_group_friend":"Hubungan pertemanan","relationship_type_group_love":"Hubungan percintaan","relationship_type_group_other":"Jenis hubungan lainnya","relationship_type_group_work":"Hubungan pekerjaan","relationship_type_inlovewith":"jatuh cinta dengan","relationship_type_inlovewith_female":"jatuh cinta dengan","relationship_type_inlovewith_female_with_name":"seseorang :name jatuh cinta dengan","relationship_type_inlovewith_with_name":"seseorang :name jatuh cinta dengan","relationship_type_lovedby":"dicintai oleh","relationship_type_lovedby_female":"dicintai oleh","relationship_type_lovedby_female_with_name":"Kekasih rahasia :name","relationship_type_lovedby_with_name":"Kekasih rahasia :name","relationship_type_lover":"kekasih","relationship_type_lover_female":"kekasih","relationship_type_lover_female_with_name":"kekasih :name","relationship_type_lover_with_name":"kekasih :name","relationship_type_mentor":"pelatih","relationship_type_mentor_female":"pelatih","relationship_type_mentor_female_with_name":"Pelatih :name","relationship_type_mentor_with_name":"Pelatih :name","relationship_type_nephew":"keponakan","relationship_type_nephew_female":"ponakan","relationship_type_nephew_female_with_name":"Ponakan :name","relationship_type_nephew_with_name":"Keponakan :name","relationship_type_parent":"ayah","relationship_type_parent_female":"ibu","relationship_type_parent_female_with_name":"Ibu :name","relationship_type_parent_with_name":"Ayah :name","relationship_type_partner":"orang yang berarti","relationship_type_partner_female":"orang yang berarti","relationship_type_partner_female_with_name":":name orang yang berarti lainnya","relationship_type_partner_with_name":":name orang yang berarti lainnya","relationship_type_protege":"anak didik","relationship_type_protege_female":"anak didik","relationship_type_protege_female_with_name":"Anak didik :name","relationship_type_protege_with_name":"Anak didik :name","relationship_type_sibling":"saudara laki","relationship_type_sibling_female":"saudara perempuan","relationship_type_sibling_female_with_name":"Saudara perempuan :name","relationship_type_sibling_with_name":"Saudara laki :name","relationship_type_spouse":"pasangan","relationship_type_spouse_female":"pasangan","relationship_type_spouse_female_with_name":"pasangan :name","relationship_type_spouse_with_name":"pasangan :name","relationship_type_stepchild":"putra tiri","relationship_type_stepchild_female":"putri tiri","relationship_type_stepchild_female_with_name":"Putri tiri :name","relationship_type_stepchild_with_name":"Putra tiri :name","relationship_type_stepparent":"ayah tiri","relationship_type_stepparent_female":"ibu tiri","relationship_type_stepparent_female_with_name":"Ibu tiri :name","relationship_type_stepparent_with_name":"Ayah tiri :name","relationship_type_subordinate":"bawahan","relationship_type_subordinate_female":"bawahan","relationship_type_subordinate_female_with_name":"bawahan :name","relationship_type_subordinate_with_name":"bawahan :name","relationship_type_uncle":"paman","relationship_type_uncle_female":"bibi","relationship_type_uncle_female_with_name":"Bibi :name","relationship_type_uncle_with_name":"Paman :name","remove":"Hapus","retry":"Coba Lagi","revoke":"Cabut","save":"Simpan","save_close":"Simpan dan tutup dialog","today":"hari ini","type":"Jenis","unknown":"Saya tidak tau","update":"Perbarui","upgrade":"Perbarui untuk membuka","upload":"Unggah","verify":"Verifikasi","weather_clear-day":"Hari yang cerah","weather_clear-night":"Malam yang cerah","weather_cloudy":"Berawan","weather_current_temperature_celsius":":temperatur \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Cuaca saat ini","weather_fog":"Kabut","weather_partly-cloudy-day":"Hari sebagian cerah","weather_partly-cloudy-night":"Malam sebagian berawan","weather_rain":"Hujan","weather_sleet":"Hujan Es","weather_snow":"Salju","weather_wind":"Angin","with":"dengan","yes":"Ya","yesterday":"kemarin","zoom":"Perbesar"},"auth":{"2fa_one_time_password":"Kode otentikasi dua faktor","2fa_otp_help":"Buka aplikasi seluler otentikasi dua faktor Anda dan salin kode tersebut","2fa_recuperation_code":"Masukkan sebuah kode pemulihan dua faktor","2fa_title":"Otentikasi Dua Faktor","2fa_wrong_validation":"Otentikasi dua faktor telah gagal.","back_homepage":"Kembali ke halaman beranda","button_remember":"Ingat Saya","change_language":"Ganti bahasa ke :lang","change_language_title":"Ganti bahasa:","confirmation_again":"Jika Anda ingin mengganti alamat email Anda, Anda bisa klik di sini<\/a>.","confirmation_check":"Sebelum melanjutkan, silakan periksa email Anda untuk sebuah tautan verifikasi.","confirmation_fresh":"Tautan verifikasi baru telah dikirimkan ke alamat email Anda.","confirmation_request_another":"Jika Anda tidak menerima email >klik di sini untuk meminta lagi<\/a>.","confirmation_title":"Verifikasi Alamat Email Anda","create_account":"Buat akun pertama dengan mendaftar<\/a>","email":"Email","email_change_current_email":"Alamat email saat ini:","email_change_new":"Alamat email baru","email_change_title":"Ganti alamat email Anda","email_changed":"Alamat email Anda telah diubah. Periksa kotak surat Anda untuk memvalidasinya.","failed":"Kredensial ini tidak cocok dengan catatan kami.","login":"Masuk","login_again":"Silakan masuk lagi ke akun Anda","login_to_account":"Masuk ke akun Anda","login_with_recovery":"Masuk dengan sebuah kode pemulihan","mfa_auth_otp":"Otentikasi dengan perangkat dua faktor Anda","mfa_auth_webauthn":"Otentikasi dengan sebuah kunci keamanan (WebAuthn)","not_authorized":"Anda tidak memiliki izin untuk menjalankan tindakan ini","password":"Kata sandi","password_forget":"Lupa kata sandi Anda?","password_reset":"Atur ulang kata sandi Anda","password_reset_action":"Atur ulang kata sandi","password_reset_email":"Alamat Email","password_reset_email_content":"Klik di sini untuk mengatur ulang kata sandi Anda:","password_reset_password":"Kata sandi","password_reset_password_confirm":"Komfirmasi Kata Sandi","password_reset_send_link":"Kirim Tautan Atur Ulang Kata Sandi","password_reset_title":"Atur ulang kata sandi","recovery":"Kode pemulihan","register_action":"Daftar","register_create_account":"Anda harus membuat sebuah akun untuk menggunakan Monica","register_email":"Masukkan sebuah alamat email yang valid","register_email_example":"kamu@beranda","register_firstname":"Nama depan","register_firstname_example":"mis. Asep","register_invitation_email":"Untuk tujuan keamanan, silahkan cantumkan email orang yang telah mengundang Anda untuk bergabung dengan akun ini. Informasi ini disediakan dalam email invitasi.","register_lastname":"Nama keluarga","register_lastname_example":"mis. Surasep","register_login":"Masuk<\/a> jika Anda sudah memiliki akun.","register_password":"Kata sandi","register_password_confirmation":"Konfirmasi kata sandi","register_password_example":"Masukkan sebuah kata sandi yang aman","register_policy":"Dengan mendaftar menandakan Anda telah membaca dan menyetujui Kebijakan Privasi <\/a> dan Ketentuan penggunaan<\/a>.","register_title_create":"Buat Akun Monica Anda","register_title_welcome":"Selamat datang di contoh Monica Anda yang baru saja dipasang","signup":"Daftar","signup_disabled":"Pendaftaran saat ini dinonaktifkan","signup_error":"Terjadi kesalahan saat mencoba mendaftarkan pengguna","signup_no_account":"Tidak punya akun?","throttle":"Terlalu banyak upaya login. Silakan coba lagi dalam :seconds detik.","use_recovery":"Atau kamu bisa menggunakan sebuah kode pemulihan<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Tambahkan kontak pertama Anda","dashboard_blank_description":"Monica adalah tempat untuk mengatur semua interaksi yang Anda miliki dengan orang-orang yang Anda sayangi.","dashboard_blank_illustration":"Ilustrasi oleh Freepik<\/a>","dashboard_blank_title":"Wilujeng sumping di akun Anda!","debts_you_owe":"Anda berhutang","notes_title":"Anda belum punya catatan apa pun yang telah dilihat.","product_changes":"Perubahan produk","product_view_details":"Lihat rincian","reminders_next_months":"Peristiwa dalam 3 bulan ke depan","reminders_none":"Tidak ada pengingat untuk bulan ini.","statistics_activities":"Aktifitas","statistics_contacts":"Kontak","statistics_gifts":"Hadiah","tab_calls_blank":"Anda belum mencatat panggilan.","tab_debts":"Hutang","tab_debts_blank":"Anda belum mencatat hutang apa pun.","tab_favorite_notes":"Catatan favorit","tab_recent_calls":"Panggilan terbaru","tab_tasks":"Tugas","tab_tasks_blank":"Anda belum punya tugas apa pun.","task_add_cta":"Tambahkan sebuah tugas","tasks_add_note":"Tekan Enter<\/kbd> untuk menambahkan tugas.","tasks_add_task_placeholder":"Tugas ini tentang apa?","tasks_tab_your_contacts":"Tugas yang berhubungan dengan kontak Anda","tasks_tab_your_tasks":"Tugas Anda"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Apakah Anda yakin ingin menghapus entri jurnal ini?","entry_delete_success":"Entri jurnal telah berhasil dihapus.","journal_add":"Tambahkan sebuah entri jurnal","journal_add_comment":"Apakah Anda ingin untuk menambahkan komentar (opsional)?","journal_add_cta":"Simpan","journal_add_date":"Tanggal","journal_add_post":"Entri","journal_add_title":"Judul (opsional)","journal_blank_cta":"Tambahkan entri jurnal pertama Anda","journal_blank_description":"Jurnal memungkinkan Anda menulis peristiwa yang terjadi pada Anda, dan mengingatnya.","journal_come_back":"Terima kasih. Kembalilah besok untuk menilai hari Anda lagi.","journal_created_at":"Dibuat pada {date}","journal_created_automatically":"Dibuat secara otomatis","journal_description":"Catatan: Jurnal mencantumkan entri jurnal mandiri, dan entri otomatis seperti Aktifitas yang telah selesai dilakukan dengan kontak Anda. Meskipun Anda dapat menghapus entri jurnal secara mandiri, Anda harus menghapus aktifitas secara langsung pada halaman kontak.","journal_edit":"Sunting sebuah entri jurnal","journal_empty":"Jurnal kosong","journal_entry_rate":"Anda telah menilai hari Anda.","journal_entry_type_activity":"Aktifitas","journal_entry_type_journal":"Entri jurnal","journal_rate":"Bagaimana hari Anda? Anda bisa menilainya sekali setiap hari.","journal_show_comment":"Tampilkan komentar"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Komentar: :comment","confirmation_email_bottom":"Jika Anda tidak membuat sebuah akun, tidak diperlukan tindakan lebih lanjut.","confirmation_email_button":"Verifikasi alamat email","confirmation_email_intro":"Untuk memvalidasi email Anda klik pada tombol di bawah ini","confirmation_email_title":"Monica - Verifikasi email","footer_contact_info":"Tambah, lihat, lengkapi, dan ubah informasi tentang kontak ini:","footer_contact_info2":"Lihat profil :name","footer_contact_info2_link":"Lihat profil :name: :url","for":"Untuk: :name","greetings":"Hai :username","invitation_button":"Terima undangan","invitation_expiration":"Tautan ini akan berakhir pada :count hari.","invitation_intro":"Kamu telah diundang oleh :name (:email) untuk menggunakan Monica, sebuah alat Pengelola Kontak Relasi Pribadi yang bagus.","invitation_link":"Untuk menerima undangan, klik tautan di bawah ini:","invitation_title":"Monica - Anda diundang oleh :name","notification_description":"Di :count hari (pada :date), peristiwa berikut akan terjadi:","notification_subject_line":"Anda memiliki sebuah peristiwa didepan","notifications_footer":"Jika Anda mengalami masalah meng-klik tombol \":actionText\", salin dan tempel alamat URL dibawah ini ke peramban web Anda : [:actionURL](:actionURL)","notifications_hello":"Halo!","notifications_regards":"Salam","notifications_rights":"Hak cipta","notifications_whoops":"Waduh!","password_reset_bottom":"Jika Anda tidak meminta pengaturan ulang kata sandi, tidak diperlukan tindakan lebih lanjut.","password_reset_button":"Atur Ulang Kata Sandi","password_reset_expiration":"Tautan pengaturan ulang kata sandi ini akan beerakhir dalam :count menit.","password_reset_intro":"Anda menerima email ini karena kami menerima permintaan pengaturan ulang kata sandi untuk akun Anda.","password_reset_title":"Monica - Pemberitahuan Atur Ulang Kata Sandi","stay_in_touch_subject_description":"Anda meminta untuk diingatkan untuk tetap berhubungan dengan :name setiap :frequency day.|Anda meminta untuk diingatkan untuk tetap berhubungan dengan :name setiap :frequency day.","stay_in_touch_subject_line":"Tetap berhubungan dengan :name","subject_line":"Pengingat untuk :contact","want_reminded_of":"Anda ingin diingatkan tentang :reason"},"pagination":{"next":"Selanjutnya \u276f","previous":"\u276e Sebelumnya"},"passwords":{"changed":"Kata sandi berhasil diganti.","invalid":"Kata sandi yang Anda masukkan saat ini tidak benar.","reset":"Kata sandi Anda telah diatur ulang!","sent":"Jika email yang Anda masukkan ada\/tersedia dalam catatan kami, Anda telah dikirimkan sebuah tautan pengaturan ulang kata sandi.","throttled":"Silahkan tunggu sebelum mencoba lagi.","token":"Token pengaturan ulang kata sandi ini tidak valid.","user":"Jika email yang Anda masukkan ada\/tersedia dalam catatan kami, Anda telah dikirimkan sebuah tautan pengaturan ulang kata sandi."},"people":{"activities_activity":"Kategori Aktifitas","activities_add_activity":"Tambah aktifitas","activities_add_category":"Cantumkan sebuah kategori","activities_add_date_occured":"Aktifitas terjadi pada...","activities_add_emotions":"Tambahkan perasaan","activities_add_emotions_title":"Apakah Anda ingin mencatat bagaimana perasaan Anda selama aktifitas ini? (opsional)","activities_add_error":"Kesalahan saat menambahkan aktifitas tersebut","activities_add_more_details":"Tambah lebih banyak rincian","activities_add_participants":"Siapa, selain dari {name}, yang berpartisipasi dalam aktifitas ini? (opsional)","activities_add_participants_cta":"Tambah orang\/peserta","activities_add_pick_activity":"(Opsional) Apakah Anda ingin mengkategorikan aktifitas ini? Anda tidak perlu melakukannya, tetapi hal itu nanti akan memberi Anda statistik","activities_add_success":"Aktifitas telah berhasil ditambahkan","activities_add_title":"Apa yang telah Anda lakukan dengan {name}?","activities_blank_add_activity":"Tambah sebuah aktifitas","activities_blank_title":"Pantau apa yang telah Anda lakukan dengan {name} di masa lalu, dan apa yang telah Anda bicarakan","activities_delete_success":"Aktifitas telas berhasil dihapus","activities_item_information":":Activity. Terjadi pada :date","activities_list_category":"Kategori:","activities_list_date":"Terjadi pada","activities_list_emotions":"Perasaan yang dirasakan:","activities_list_participants":"Orang\/Peserta:","activities_profile_number_occurences":"Aktifitas :value|Aktifitas :value","activities_profile_subtitle":"Anda telah mencatat aktifitas :total_activities dengan :nama secara total dan :activities_last_twelve_months dalam 12 bulan terakhir sejauh ini.|Anda telah mencatat aktifitas :total_activities dengan :nama secara total dan :activities_last_twelve_months dalam 12 bulan terakhir sejauh ini.","activities_profile_title":"Laporan aktifitas antara :name dan Anda","activities_profile_year_summary":"Inilah yang telah kalian lakukan dalam :year","activities_profile_year_summary_activity_types":"Ini adalah rincian dari jenis aktifitas yang telah Anda lakukan bersama dalam :year","activities_summary":"Jelaskan apa yang Anda telah lakukan","activities_update_success":"Aktifitas telah berhasil diperbarui","activities_view_activities_report":"Lihat laporan aktifitas","activities_who_was_involved":"Siapa yang terlibat?","activity_title":"Aktifitas","activity_type_ate_at_his_place":"makan di tempat mereka","activity_type_ate_at_home":"makan di rumah","activity_type_ate_restaurant":"makan di sebuah restoran","activity_type_category_cultural_activities":"Aktifitas budaya","activity_type_category_food":"Makanan","activity_type_category_simple_activities":"Aktifitas sederhana","activity_type_category_sport":"Olahraga","activity_type_did_sport_activities_together":"bersama memainkan sebuah olahraga","activity_type_just_hung_out":"hanya nongkrong","activity_type_picnicked":"berpiknik","activity_type_talked_at_home":"baru saja ngobrol di rumah","activity_type_watched_movie_at_home":"menonton sebuah film di rumah","activity_type_went_bar":"pergi ke sebuah kios indomie :)","activity_type_went_concert":"pergi nonton sebuah konser","activity_type_went_museum":"pergi ke museum","activity_type_went_play":"pergi ke sebuah pertunjukan","activity_type_went_theater":"pergi ke bioskop","age_approximate_in_years":"sekitar :age tahun","age_exact_birthdate":"lahir :date","age_exact_in_years":":age tahun","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Tanggal lahir tidak diatur","call_blank_desc":"Anda memanggil {name}","call_blank_title":"Pantau panggilan telepon yang telah Anda lakukan dengan {name}","call_button":"Catat sebuah panggilan","call_delete_confirmation":"Apakah Anda ingin menghapus panggilan ini?","call_delete_success":"Panggilan telah berhasil dihapus","call_emotions":"Perasaan:","call_empty_comment":"Tanpa rincian","call_he_called":"{name} memanggil","call_title":"Panggilan telepon","call_you_called":"Anda memanggil","calls_add_success":"Panggilan telepon telah disimpan.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Arsipkan kontak","contact_archive_help":"Kontak yang diarsipkan tidak akan ditampilkan pada daftar kontak, tetapi masih tetap muncul pada hasil pencarian.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Batal Arsipkan kontak","conversation_add_another":"Tambah pesan lainnya","conversation_add_content":"Tulis apa yang telah dikatakan","conversation_add_error":"Anda harus menambahkan setidaknya satu pesan.","conversation_add_how":"Bagaimana Anda berkomunikasi?","conversation_add_success":"Percakapan telah berhasil ditambahkan.","conversation_add_title":"Rekam sebuah percakapan baru","conversation_add_what_was_said":"Apa yang Anda katakan?","conversation_add_when":"Kapan Anda melakukan percakapan ini?","conversation_add_who_wrote":"Siapa yang mengatakan pesan ini?","conversation_add_you":"Anda","conversation_blank":"Rekam percakapan yang Anda miliki dengan :name di media sosial, SMS, ...","conversation_delete_link":"Hapus percakapan","conversation_delete_success":"Percakapan telah berhasil dihapus.","conversation_edit_delete":"Apakah kamu yakin ingin menghapus percakapan ini? Penghapusan bersifat permanen.","conversation_edit_success":"Percakapan telah berhasil diperbarui.","conversation_edit_title":"Sunting percakapan","conversation_list_cta":"Catat percakapan","conversation_list_table_content":"Konten sebagian (pesan terakhir)","conversation_list_table_messages":"Pesan","conversation_list_title":"Percakapan","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Sunting informasi kontak","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Preferensi makanan telah disimpan","food_preferences_cta":"Tambahkan preferensi makanan","food_preferences_edit_cta":"Simpan preferensi makanan","food_preferences_edit_description":"Mungkin :firstname atau seseorang di keluarga :family memiliki sebuah alergi. Atau tidak suka sebotol anggur tertentu. Cantumkan mereka di sini sehingga Anda akan mengingatnya lain kali Anda mengundang mereka untuk makan malam","food_preferences_edit_description_no_last_name":"Mungkin :firstname memiliki alergi. Atau tidak suka sebotol anggur tertentu. Cantumkan mereka di sini sehingga Anda akan mengingatnya lain kali Anda mengundang mereka untuk makan malam","food_preferences_edit_title":"Cantumkan preferensi makanan","food_preferences_title":"Preferensi makanan","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Tanggal lahir","information_edit_description":"Deskripsi (Opsional)","information_edit_description_help":"Digunakan pada daftar kontak untuk menambahkan beberapa konteks, jika diperlukan.","information_edit_exact":"Saya tau percis tanggal kelahiran orang ini...","information_edit_firstname":"Nama depan","information_edit_lastname":"Nama belakang (opsional)","information_edit_max_size":"Maks :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"Saya tau hari dan bulan tanggal lahir orang ini, tetapi tidak tahun nya\u2026","information_edit_probably":"Orang ini mungkin...","information_edit_success":"Profil telah berhasil diperbarui","information_edit_title":"Sunting informasi pribadi :name","information_edit_unknown":"Saya tidak tau umur orang ini","information_no_work_defined":"Tidak ada informasi pekerjaan yang ditentukan","information_work_at":"di :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Aktifitas terakhir bersama: :date","last_activity_date_empty":"Aktifitas terakhir bersama: :date","last_called":"Terakhir memanggil: :date","last_called_empty":"Terakhir memanggil: :date","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"Anda sedang melihat kontak yang diarsipkan. Lihat daftar kontak aktif<\/a> sebagai gantinya.","list_link_to_archived_contacts":"Daftar kontak yang diarsipkan","me":"Ini adalah Anda","modal_call_comment":"Yang Anda bicarakan tentang apa? (opsional)","modal_call_emotion":"Apakah Anda ingin mencatat bagaimana perasaan Anda selama panggilan ini? (opsional)","modal_call_exact_date":"Panggilan telepon tersebut terjadi pada","modal_call_title":"Catat sebuah panggilan","modal_call_who_called":"Siapa yang memanggil?","notes_add_cta":"Add note","notes_create_success":"Catatan telah berhasil dibuat","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"Catatan telah berhasil disimpan","people_add_birthday_reminder":"Ucapkan selamat ulang tahun ke :name","people_add_birthday_reminder_deceased":"Pada tanggal ini, :name, telah merayakan hari ulang tahunnya","people_add_cta":"Tambah","people_add_firstname":"Nama depan","people_add_gender":"Jenis kelamin","people_add_import":"Apakah Anda ingin mengimpor kontak Anda<\/a>?","people_add_lastname":"Nama belakang (opsional)","people_add_middlename":"Nama tengah (opsional)","people_add_missing":"Tidak Ada Orang Ditemukan Tambahkan Sekarang","people_add_new":"Tambah orang baru","people_add_nickname":"Nama panggilan (opsional)","people_add_reminder_for_birthday":"Buat sebuah pengingat tahunan untuk ulang tahun","people_add_success":":name telah berhasil dibuat","people_add_title":"Tambah orang baru","people_delete_confirmation":"Apakah Anda yakin ingin menghapus kontak ini? Penghapusan bersifat permanen.","people_delete_message":"Hapus kontak","people_delete_success":"Kontak telah dihapus","people_edit_email_error":"Telah ada sebuah kontak dengan alamat email ini pada kontak Anda. Silahkan pilih yang lain.","people_export":"Ekspor sebagai vCard","people_list_account_upgrade_cta":"Perbarui sekarang","people_list_account_upgrade_title":"Perbarui akun Anda untuk membukanya dengan potensial penuh.","people_list_account_usage":"Pemakaian akun Anda: :current\/:limit kontak","people_list_blank_cta":"Tambahkan seseorang","people_list_blank_title":"Anda tidak mempunyai siapapun di akun Anda","people_list_clear_filter":"Hapus filter","people_list_contacts_per_tags":"1 kontak|:count kontak","people_list_filter_tag":"Menampilkan semua kontak dengan tag","people_list_filter_untag":"Menampilkan semua kontak tanpa tag","people_list_firstnameAZ":"Urutkan berdasarkan nama depan A \u2192 Z","people_list_firstnameZA":"Urutkan berdasarkan nama depan Z \u2192 A","people_list_hide_dead":"Sembunyikan orang yang telah tiada (:count)","people_list_last_updated":"Terakhir konsultasi:","people_list_lastactivitydateNewtoOld":"Urutkan berdasarkan tanggal aktivitas terbaru sampai terlama","people_list_lastactivitydateOldtoNew":"Urutkan berdasarkan tanggal aktivitas terlama sampai terbaru","people_list_lastnameAZ":"Urutkan berdasarkan nama belakang A \u2192 Z","people_list_lastnameZA":"Urutkan berdasarkan nama belakang Z \u2192 A","people_list_number_kids":"1 anak|:count anak","people_list_number_reminders":"1 pengingat|:count pengingat","people_list_show_dead":"Tampilkan orang yang telah tiada (:count)","people_list_sort":"Urutkan","people_list_stats":"1 kontak|:count kontak","people_list_untagged":"Tampilkan kontak belum mempunyai tag","people_not_found":"Kontak tidak ditemukan","people_save_and_add_another_cta":"Kirimkan dan tambah orang yang lain","people_search":"Cari kontak Anda...","people_search_all":"Semua","people_search_next":"Berikutnya","people_search_no_results":"Tidak ada hasil ditemukan","people_search_of":"dari","people_search_page":"Halaman","people_search_prev":"Sebelumnya","people_search_rows_per_page":"Baris per halaman","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Apakah Anda yakin ingin menghapus hubungan ini? Penghapusan bersifat permanen.","relationship_form_add":"Tambahkan sebuah hubungan baru","relationship_form_add_choice":"Dengan siapa hubungannya?","relationship_form_add_description":"Ini akan mengizinkan Anda untuk memperlakukan orang ini seperti kontak lainnya.","relationship_form_add_no_existing_contact":"Anda tidak memiliki kontak apapun yang bisa dikaitkan dengan :name saat ini.","relationship_form_add_success":"Hubungan telah berhasil diatur.","relationship_form_also_create_contact":"Buat sebuah entri Kontak untuk orang ini.","relationship_form_associate_contact":"Sebuah kontak yang tersedia","relationship_form_associate_dropdown":"Cari dan pilih sebuah kontak yang tersedia dari dropdown di bawah ini","relationship_form_associate_dropdown_placeholder":"Cari dan pilih sebuah kontak yang telah tersedia","relationship_form_create_contact":"Tambah seseorang yang baru","relationship_form_deletion_success":"Hubungan telah dihapus.","relationship_form_edit":"Sunting sebuah hubungan yang telah tersedia","relationship_form_is_with":"Orang ini adalah...","relationship_form_is_with_name":":name adalah...","relationship_unlink_confirmation":"Apakah Anda yakin ingin menghapus hubungan ini? Orang ini tidak akan dihapus - hanya hubungan antara keduanya.","reminder_frequency_day":"setiap hari|setiap :number hari","reminder_frequency_month":"setiap bulan|setiap :number bulan","reminder_frequency_one_time":"pada :date","reminder_frequency_week":"setiap minggu|setiap :number minggu","reminder_frequency_year":"setiap tahun|setiap :number tahun","reminders_add_cta":"Tambahkan pengingat","reminders_add_description":"Tolong ingatkan saya untuk...","reminders_add_error_custom_text":"Anda perlu mencantumkan sebuah teks untuk pengingat ini","reminders_add_next_time":"Kapan Anda ingin diingatkan tentang hal ini lain kali?","reminders_add_once":"Ingatkan saya tentang ini sekali saja","reminders_add_optional_comment":"Komentar tambahan","reminders_add_recurrent":"Ingatkan saya tentang ini setiap","reminders_add_starting_from":"mulai dari tanggal yang ditentukan di atas","reminders_add_title":"Apa yang Anda ingin diingatkan tentang :name?","reminders_birthday":"Ulang tahun :name","reminders_blank_add_activity":"Tambahkan sebuah pengingat","reminders_blank_title":"Apakah ada sesuatu yang Anda ingin diingatkan tentang :name?","reminders_create_success":"Pengingat telah berhasil ditambahkan","reminders_cta":"Tambahkan sebuah pengingat","reminders_delete_confirmation":"Apakah Anda yakin ingin menghapus pengingat ini?","reminders_delete_cta":"Hapus","reminders_delete_success":"Pengingat telah berhasil dihapus","reminders_description":"Kami akan mengirim email untuk setiap pengingat di bawah ini. Pengingat dikirimkan setiap pagi dimana hari peristiwa akan terjadi. Pengingat yang secara otomatis ditambahkan untuk tanggal lahir tidak dapat dihapus. Jika Anda ingin mengganti tanggal tersebut, sunting tanggal lahir kontak.","reminders_edit_update_cta":"Perbarui pengingat","reminders_free_plan_warning":"Anda berada di paket rencana gratis. Tidak ada email yang dikirimkan pada paket ini. Untuk menerima pengingat Anda melalui email, perbarui\/tingkatkan akun Anda.","reminders_next_expected_date":"pada","reminders_one_time":"Satu kali","reminders_type_month":"bulan","reminders_type_week":"minggu","reminders_type_year":"tahun","reminders_update_success":"Pengingat telah berhasil diperbarui","section_contact_information":"Informasi kontak","section_personal_activities":"Aktifitas","section_personal_gifts":"Hadiah","section_personal_notes":"Catatan","section_personal_reminders":"Pengingat","section_personal_tasks":"Tugas","set_favorite":"Kontak favorit ditempatkan di bagian atas dari daftar kontak","stay_in_touch":"Tetap berhubungan","stay_in_touch_frequency":"Tetap berhubungan setiap hari|Tetap berhubungan setiap {count} hari","stay_in_touch_invalid":"Frekuensinya harus berupa angka yang lebih besar dari 0.","stay_in_touch_modal_desc":"Kami dapat mengingatkan Anda melalui email untuk tetap berhubungan dengan {firstname} pada sebuah interval reguler.","stay_in_touch_modal_label":"Kirimkan saya email setiap... {count} hari|Kirimkan saya email setiap... {count} hari","stay_in_touch_modal_title":"Tetap berhubungan","stay_in_touch_premium":"Anda perlu meningkatkan akun Anda untuk memanfaatkan fitur ini","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Tambahkan sebuah tugas","tasks_blank_title":"Anda belum punya tugas apapun.","tasks_complete_success":"Tugas telah berhasil berubah status","tasks_delete_success":"Tugas telah berhasil dihapus","tasks_form_description":"Deskripsi (opsional)","tasks_form_title":"Gelar","tasks_title":"Tugas","work_add_cta":"Perbarui informasi pekerjaan","work_edit_company":"Perusahaan (opsional)","work_edit_job":"Judul pekerjaan (opsional)","work_edit_success":"Informasi pekerjaan diperbarui","work_edit_title":"Perbarui informasi pekerjaan :name","work_information":"Informasi pekerjaan"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} tidak boleh lebih dari {max}.","string":"{field} tidak boleh lebih dari {max} karakter."},"required":"{field} diperlukan.","url":"{field} bukan sebuah alamat URL yang valid."}}} diff --git a/public/js/langs/it.json b/public/js/langs/it.json deleted file mode 100644 index 0df6c2542f9..00000000000 --- a/public/js/langs/it.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Aggiungi","another_day":"un altro giorno","application_description":"Monica \u00e8 uno strumento per gestire le interazioni con i vostri cari, amici e familiari.","application_og_title":"Stabilisci relazioni migliori con i tuoi cari. CRM gratuito online per amici e famiglia.","application_title":"Monica \u2013 personal relationship manager","back":"Indietro","breadcrumb_add_note":"Aggiungi una nota","breadcrumb_add_significant_other":"Aggiungi partner","breadcrumb_api":"API","breadcrumb_archived_contacts":"Contatti archiviati","breadcrumb_dashboard":"Home","breadcrumb_dav":"Risorse DAV","breadcrumb_edit_introductions":"Come vi siete conosciuti","breadcrumb_edit_note":"Modifica nota","breadcrumb_edit_significant_other":"Modifica partner","breadcrumb_journal":"Diario","breadcrumb_list_contacts":"Lista dei contatti","breadcrumb_profile":"Profilo di :name","breadcrumb_settings":"Impostazioni","breadcrumb_settings_export":"Esporta","breadcrumb_settings_import":"Importa","breadcrumb_settings_import_report":"Resoconto dell'importazione","breadcrumb_settings_import_upload":"Carica","breadcrumb_settings_personalization":"Personalizzazione","breadcrumb_settings_security":"Sicurezza","breadcrumb_settings_security_2fa":"Autenticazione due fattori","breadcrumb_settings_subscriptions":"Sottoscrizioni","breadcrumb_settings_tags":"Etichette","breadcrumb_settings_users":"Utenti","breadcrumb_settings_users_add":"Aggiungi un utente","cancel":"Annulla","close":"Chiudi","compliance_desc":"Abbiamo cambiato i nostri Termini di Utilizzo<\/a> e Privacy Policy<\/a>. Per legge dobbiamo chiederti di controllarli e accettarli prima di poter continuare a utilizzare il tuo account.","compliance_desc_end":"Non facciamo nulla di losco con i tuoi dati, n\u00e8 lo faremo mai.","compliance_terms":"Accetta i nuovi termini e privacy policy","compliance_title":"Ci scusiamo per l'interruzione.","confirm":"Conferma","contact_list_avatar":"Avatar","contact_list_description":"Descrizione","contact_list_name":"Contatto","copy":"Copia","create":"Crea","date":"Data","dav_birthdays":"Compleanni","dav_birthdays_description":"compleanno del contatto di :name","dav_contacts":"Contatti","dav_contacts_description":"contatti di :name","dav_tasks":"Compiti","dav_tasks_description":"attivit\u00e0 di :name","default_save_success":"I dati sono stati salvati.","delete":"Elimina","delete_confirm":"Sei sicuro?","done":"Fatto","download":"Scarica","edit":"Modifica","emotion_adoration":"Adorazione","emotion_affection":"Affetto","emotion_aggravation":"Peggioramento","emotion_agitation":"Agitazione","emotion_agony":"Agonia","emotion_alarm":"Allarme","emotion_alienation":"Alienazione","emotion_amazement":"Stupore","emotion_amusement":"Divertimento","emotion_anger":"Rabbia","emotion_anguish":"Angoscia","emotion_annoyance":"Fastidio","emotion_anxiety":"Ansia","emotion_apprehension":"Apprensione","emotion_arousal":"Eccitazione","emotion_astonishment":"Stupefacente","emotion_attraction":"Attrazione","emotion_bitterness":"Amarezza","emotion_bliss":"Beatitudine","emotion_caring":"Cura","emotion_cheerfulness":"Allegria","emotion_compassion":"Compassione","emotion_contempt":"Disprezzo","emotion_contentment":"Appagamento","emotion_defeat":"Sconfitta","emotion_dejection":"Sconforto","emotion_delight":"Delizia","emotion_depression":"Depressione","emotion_desire":"Desiderio","emotion_despair":"Disperazione","emotion_disappointment":"Disappunto","emotion_disgust":"Disgusto","emotion_dislike":"Antipatia","emotion_dismay":"Sgomento","emotion_displeasure":"Scontento","emotion_distress":"Angoscia","emotion_dread":"Terrore","emotion_eagerness":"Impazienza","emotion_ecstasy":"Estasi","emotion_elation":"Esaltazione","emotion_embarrassment":"Imbarazzo","emotion_enjoyment":"Godimento","emotion_enthrallment":"Divertimento","emotion_enthusiasm":"Entusiasmo","emotion_envy":"Invidia","emotion_euphoria":"Euforia","emotion_exasperation":"Esasperazione","emotion_excitement":"Eccitamento","emotion_exhilaration":"Esilarante","emotion_fear":"Paura","emotion_ferocity":"Ferocit\u00e0","emotion_fondness":"Passione","emotion_fright":"Spavento","emotion_frustration":"Frustrazione","emotion_fury":"Furia","emotion_gaiety":"Giocondit\u00e0","emotion_gladness":"Contentezza","emotion_glee":"Gioia","emotion_gloom":"Maliconia","emotion_glumness":"Cupezza","emotion_grief":"Afflizione","emotion_grouchiness":"Cattivo umore","emotion_grumpiness":"Irritabilit\u00e0","emotion_guilt":"Colpevolezza","emotion_happiness":"Felicit\u00e0","emotion_hate":"Odio","emotion_homesickness":"Nostalgia","emotion_hope":"Speranza","emotion_hopelessness":"Senza speranza","emotion_horror":"Orrore","emotion_hostility":"Ostilit\u00e0","emotion_humiliation":"Umiliazione","emotion_hurt":"Dolore","emotion_hysteria":"Isteria","emotion_infatuation":"Infatuazione","emotion_insecurity":"Insicurezza","emotion_insult":"Insulto","emotion_irritation":"Irritazione","emotion_isolation":"Isolamento","emotion_jealousy":"Gelosia","emotion_jolliness":"Gaiet\u00e0","emotion_joviality":"Giovialit\u00e0","emotion_joy":"Felicit\u00e0","emotion_jubilation":"Esultanza","emotion_liking":"Simpatia","emotion_loathing":"Ripugnanza","emotion_loneliness":"Solitudine","emotion_longing":"Bramosia","emotion_love":"Amore","emotion_lust":"Lussuria","emotion_melancholy":"Malinconia","emotion_misery":"Miseria","emotion_mortification":"Mortificazione","emotion_neglect":"Negligenza","emotion_nervousness":"Nervosismo","emotion_optimism":"Ottimismo","emotion_outrage":"Oltraggio","emotion_panic":"Panico","emotion_passion":"Passione","emotion_pity":"Peccato","emotion_pleasure":"Piacere","emotion_pride":"Orgoglio","emotion_primary_anger":"Rabbia","emotion_primary_fear":"Paura","emotion_primary_joy":"Felicit\u00e0","emotion_primary_love":"Amore","emotion_primary_sadness":"Tristezza","emotion_primary_surprise":"Sorpresa","emotion_rage":"Collera","emotion_rapture":"Estasi","emotion_regret":"Rimpianto","emotion_rejection":"Rifiuto","emotion_relief":"Sollievo","emotion_remorse":"Rimorso","emotion_resentment":"Risentimento","emotion_revulsion":"Repulsione","emotion_sadness":"Tristezza","emotion_satisfaction":"Soddisfazione","emotion_scorn":"Disprezzo","emotion_secondary_affection":"Affetto","emotion_secondary_cheerfulness":"Allegria","emotion_secondary_contentment":"Soddisfazione","emotion_secondary_disappointment":"Disappunto","emotion_secondary_disgust":"Disgusto","emotion_secondary_enthrallment":"Fascino","emotion_secondary_envy":"Invidia","emotion_secondary_exasperation":"Esasperazione","emotion_secondary_horror":"Orrore","emotion_secondary_irritation":"Irritazione","emotion_secondary_longing":"Bramosia","emotion_secondary_lust":"Lussuria","emotion_secondary_neglect":"Negligenza","emotion_secondary_nervousness":"Nervosismo","emotion_secondary_optimism":"Ottimismo","emotion_secondary_pride":"Orgoglio","emotion_secondary_rage":"Rabbia","emotion_secondary_relief":"Sollievo","emotion_secondary_sadness":"Tristezza","emotion_secondary_shame":"Vergogna","emotion_secondary_suffering":"Sofferenza","emotion_secondary_surprise":"Sorpresa","emotion_secondary_sympathy":"Simpatia","emotion_secondary_zest":"Gusto","emotion_sentimentality":"Sentimentalit\u00e0","emotion_shame":"Vergogna","emotion_shock":"Shock","emotion_sorrow":"Pena","emotion_spite":"Rancore","emotion_suffering":"Sofferenza","emotion_surprise":"Sorpresa","emotion_sympathy":"Simpatia","emotion_tenderness":"Tenerezza","emotion_tenseness":"Tensione","emotion_terror":"Terrore","emotion_thrill":"Fremito","emotion_uneasiness":"Disagio","emotion_unhappiness":"Infelicit\u00e0","emotion_vengefulness":"Vendicativit\u00e0","emotion_woe":"Calamit\u00e0","emotion_worry":"Preoccupazione","emotion_wrath":"Ira","emotion_zeal":"Zelo","emotion_zest":"Gusto","error_help":"Torneremo presto.","error_id":"ID errore: :id","error_maintenance":"Manutenzione in corso. Torneremo presto.","error_no_term":"Non ci sono ancora regole per questa istanza.","error_save":"Abbiamo avuto un errore cercando di salvare i dati.","error_title":"Ops! Qualcosa \u00e8 andato storto.","error_try_again":"Qualcosa \u00e8 andato storto. Riprova.","error_twitter":"Seguici sul nostro account Twitter<\/a> per venire notificato quando saremo di nuovo online.","error_unauthorized":"Non hai il permesso di aggiornare questa risorsa.","error_unavailable":"Servizio non disponibile","error_user_account":"Questo utente non appartiene all'account corrente.","file_selected":"Un file selezionato\u2026|{count} file selezionati\u2026","filter":"Filtra la lista","footer_modal_version_release_away":"La tua versione \u00e8 1 versione indietro rispetto all'ultima disponibile. Dovresti aggiornare Monica.|La tua versione \u00e8 :number versioni indietro rispetto all'ultima disponibile. Dovresti aggiornare Monica.","footer_modal_version_whats_new":"Novit\u00e0","footer_new_version":"\u00c8 disponibile una nuova versione di Monica","footer_newsletter":"Newsletter","footer_privacy":"Privacy","footer_release":"Note di rilascio","footer_remarks":"Commenti?","footer_send_email":"Inviaci un'email","footer_source_code":"Monica su GitHub","footer_version":"Versione: :version","gender_female":"Donna","gender_male":"Uomo","gender_no_gender":"Nessun genere","gender_none":"Preferisco non specificarlo","go_back":"Torna indietro","header_changelog_link":"Modifiche di prodotto","header_logout_link":"Disconnettiti","header_settings_link":"Impostazioni","load_more":"Carica altro","loading":"Caricamento\u2026","main_nav_activities":"Attivit\u00e0","main_nav_cta":"Aggiungi contatti","main_nav_dashboard":"Home","main_nav_family":"Contatti","main_nav_journal":"Diario","main_nav_tasks":"Compiti","markdown_description":"Vuoi formattare il tuo testo? Supportiamo Markdown per grassetto, corsivo, liste, e altro ancora.","markdown_link":"Leggi documentazione","new":"nuovo","no":"No","percent_uploaded":"{percent}% caricato","relationship_type_bestfriend":"miglior amico","relationship_type_bestfriend_female":"miglior amico","relationship_type_bestfriend_female_with_name":"miglior amica di :name","relationship_type_bestfriend_with_name":"miglior amico di :name","relationship_type_boss":"capo","relationship_type_boss_female":"capo","relationship_type_boss_female_with_name":"capo di :name","relationship_type_boss_with_name":"capo di :name","relationship_type_child":"figlio","relationship_type_child_female":"figlia","relationship_type_child_female_with_name":"figlia di :name","relationship_type_child_with_name":"figlio di :name","relationship_type_colleague":"collega","relationship_type_colleague_female":"collega","relationship_type_colleague_female_with_name":"collega di :name","relationship_type_colleague_with_name":"collega di :name","relationship_type_cousin":"cugino","relationship_type_cousin_female":"cugino","relationship_type_cousin_female_with_name":": nome del cugino","relationship_type_cousin_with_name":": nome del cugino","relationship_type_date":"impegnato","relationship_type_date_female":"impegnata","relationship_type_date_female_with_name":"impegnata con :name","relationship_type_date_with_name":"impegnato con :name","relationship_type_ex":"ex-fidanzato","relationship_type_ex_female":"ex-fidanzata","relationship_type_ex_female_with_name":"ex-fidanzata di :name","relationship_type_ex_husband":"ex marito","relationship_type_ex_husband_female":"ex moglio","relationship_type_ex_husband_female_with_name":"ex moglie di :name","relationship_type_ex_husband_with_name":"ex marito di :name","relationship_type_ex_with_name":"ex-fidanzato di :name","relationship_type_friend":"amico","relationship_type_friend_female":"amico","relationship_type_friend_female_with_name":"amica di :name","relationship_type_friend_with_name":"amico di :name","relationship_type_godfather":"padrino","relationship_type_godfather_female":"madrina","relationship_type_godfather_female_with_name":": nome della madrina","relationship_type_godfather_with_name":": nome del padrino","relationship_type_godson":"figlioccio","relationship_type_godson_female":"figlioccia","relationship_type_godson_female_with_name":"figlioccia di :name","relationship_type_godson_with_name":"figlioccio di :name","relationship_type_grandchild":"nipote","relationship_type_grandchild_female":"nipote","relationship_type_grandchild_female_with_name":"nipote di :name","relationship_type_grandchild_with_name":"nipote di :name","relationship_type_grandparent":"nonno","relationship_type_grandparent_female":"nonna","relationship_type_grandparent_female_with_name":"nonna di :name","relationship_type_grandparent_with_name":"nonno di :name","relationship_type_group_family":"Relazioni familiari","relationship_type_group_friend":"Rapporti di amicizia","relationship_type_group_love":"Relazioni d'amore","relationship_type_group_other":"Altri tipi di relazioni","relationship_type_group_work":"Rapporti di lavoro","relationship_type_inlovewith":"innamorati di","relationship_type_inlovewith_female":"innamorati di","relationship_type_inlovewith_female_with_name":"qualcuno di cui :name \u00e8 innamorata","relationship_type_inlovewith_with_name":"qualcuno: \u00e8 innamorato di","relationship_type_lovedby":"amato da","relationship_type_lovedby_female":"amata da","relationship_type_lovedby_female_with_name":"amante segreto di :name","relationship_type_lovedby_with_name":"amante segreto di :name","relationship_type_lover":"amante","relationship_type_lover_female":"amante","relationship_type_lover_female_with_name":": nome amante","relationship_type_lover_with_name":": nome amante","relationship_type_mentor":"mentore","relationship_type_mentor_female":"mentrice","relationship_type_mentor_female_with_name":"mentrice di :name","relationship_type_mentor_with_name":"mentore di :name","relationship_type_nephew":"nipote","relationship_type_nephew_female":"nipote","relationship_type_nephew_female_with_name":"nipote di :name","relationship_type_nephew_with_name":"nipote di :name","relationship_type_parent":"padre","relationship_type_parent_female":"madre","relationship_type_parent_female_with_name":"madre di :name","relationship_type_parent_with_name":"padre di :name","relationship_type_partner":"partner","relationship_type_partner_female":"partner","relationship_type_partner_female_with_name":"partner di :name","relationship_type_partner_with_name":"partner di :name","relationship_type_protege":"apprendista","relationship_type_protege_female":"apprendista","relationship_type_protege_female_with_name":"apprendista di :name","relationship_type_protege_with_name":"apprendista di :name","relationship_type_sibling":"fratello","relationship_type_sibling_female":"sorella","relationship_type_sibling_female_with_name":"sorella di :name","relationship_type_sibling_with_name":"fratello di :name","relationship_type_spouse":"marito","relationship_type_spouse_female":"moglie","relationship_type_spouse_female_with_name":"moglie di :name","relationship_type_spouse_with_name":"marito di :name","relationship_type_stepchild":"figliastro","relationship_type_stepchild_female":"figliastra","relationship_type_stepchild_female_with_name":":name della figliastra","relationship_type_stepchild_with_name":":name del figliastro","relationship_type_stepparent":"patrigno","relationship_type_stepparent_female":"madrigna","relationship_type_stepparent_female_with_name":":name della matrigna","relationship_type_stepparent_with_name":":name del patrigno","relationship_type_subordinate":"dipendente","relationship_type_subordinate_female":"dipendente","relationship_type_subordinate_female_with_name":"dipendente di :name","relationship_type_subordinate_with_name":"dipendente di :name","relationship_type_uncle":"zio","relationship_type_uncle_female":"zia","relationship_type_uncle_female_with_name":"zia di :name","relationship_type_uncle_with_name":"zio di :name","remove":"Elimina","retry":"Riprova","revoke":"Revoca","save":"Salva","save_close":"Salva e chiudi","today":"oggi","type":"Tipo","unknown":"Non so","update":"Aggiorna","upgrade":"Effettua l'upgrade per sbloccare","upload":"Carica","verify":"Verifica","weather_clear-day":"Giornata limpido","weather_clear-night":"Notte limpida","weather_cloudy":"Nuvoloso","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Meteo attuale","weather_fog":"Nebbia","weather_partly-cloudy-day":"Giorno parzialmente nuvoloso","weather_partly-cloudy-night":"Notte parzialmente nuvolosa","weather_rain":"Pioggia","weather_sleet":"Nevischio","weather_snow":"Neve","weather_wind":"Vento","with":"con","yes":"S\u00ec","yesterday":"ieri","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Codice di autenticazione a due fattori","2fa_otp_help":"Apri la tua app di autenticazione a due fattori e copia il codice","2fa_recuperation_code":"Inserisci il codice di recupero dell'Autenticazione a due Fattori","2fa_title":"Autenticazione due fattori","2fa_wrong_validation":"Autenticazione due fattori fallita.","back_homepage":"Ritorna alla Home","button_remember":"Ricordami","change_language":"Imposta lingua su :lang","change_language_title":"Cambia lingua:","confirmation_again":"Se vuoi cambiare il tuo indirizzo email clicca qui<\/a>.","confirmation_check":"Prima di procedere, controlla il link che ti abbiamo mandato al tuo indirizzo email.","confirmation_fresh":"Un nuovo link di verifica \u00e8 stato mandato al tuo indirizzo email.","confirmation_request_another":"Se non hai ricevuto l'email clicca qui per richiederne un'altra<\/a>.","confirmation_title":"Verifica il tuo indirizzo Email","create_account":"Creare il primo account di firma<\/a>","email":"Email","email_change_current_email":"Indirizzo email attuale:","email_change_new":"Nuovo indirizzo email","email_change_title":"Modifica il tuo indirizzo email","email_changed":"Il tuo indirizzo email \u00e8 stato cambiato. Controlla la tua casella per verificarlo.","failed":"Queste credenziali non combaciano con i nostri archivi.","login":"Accedi","login_again":"Per favore, effettua di nuovo il login","login_to_account":"Accedi al tuo conto","login_with_recovery":"Login con un codice di recupero","mfa_auth_otp":"Autenticati con il tuo dispositivo secondo fattore","mfa_auth_webauthn":"Autenticazione con una chiave di sicurezza (WebAuthn)","not_authorized":"Non sei autorizzato a eseguire questa azione.","password":"Password","password_forget":"Hai dimenticato la password?","password_reset":"Reimposta la Tua password","password_reset_action":"Reimposta Password","password_reset_email":"Indirizzo E-Mail","password_reset_email_content":"Clicca qui per ripristinare la tua password:","password_reset_password":"Password","password_reset_password_confirm":"Conferma password","password_reset_send_link":"Invia un collegamento di ripristino password","password_reset_title":"Reimposta Password","recovery":"Codice di recupero","register_action":"Registrati","register_create_account":"\u00c8 necessario creare un account per utilizzare Monica","register_email":"Inserire un indirizzo email valido","register_email_example":"you@Home","register_firstname":"Nome","register_firstname_example":"es. Giovanni","register_invitation_email":"Per ragioni di sicurezza, inserisci l'indirizzo email della persona che ti ha invitato. Trovi questa informazione nella mail di invito.","register_lastname":"Cognome","register_lastname_example":"es. Bianchi","register_login":"Accedi<\/a> se hai gi\u00e0 un account.","register_password":"Password","register_password_confirmation":"Conferma password","register_password_example":"Inserire una password sicura","register_policy":"La registrazione implica che tu abbia letto e accettato la nostra Privacy Policy<\/a> e i Termini di Utilizzo<\/a>.","register_title_create":"Crea il tuo account di Monica","register_title_welcome":"Benvenuto alla tua nuova istanza di Monica","signup":"Iscriviti","signup_disabled":"La registrazione \u00e8 al momento disattivata","signup_error":"Si \u00e8 verificato un errore provando a registrare l'utente","signup_no_account":"Non hai ancora un account?","throttle":"Troppi tentativi di accesso. Ti preghiamo di ritentare in :seconds secondi.","use_recovery":"Oppure utilizza un codice di recupero<\/a>"},"changelog":{"note":"Nota: questa pagina \u00e8 disponibile solo in inglese.","title":"Changelog"},"dashboard":{"dashboard_blank_cta":"Aggiungi il tuo primo contatto","dashboard_blank_description":"Monica \u00e8 il luogo per organizzare tutte le interazioni che hai con le persone a cui tieni.","dashboard_blank_illustration":"Illustrazione by Freepik<\/a>","dashboard_blank_title":"Benvenuto nel tuo account!","debts_you_owe":"Devi","notes_title":"Non hai alcuna nota.","product_changes":"Changelog","product_view_details":"Mostra dettagli","reminders_next_months":"Eventi nei prossimi 3 mesi","reminders_none":"Nessun promemoria per questo mese.","statistics_activities":"Attivit\u00e0","statistics_contacts":"Contatti","statistics_gifts":"Regali","tab_calls_blank":"Non hai ancora registrato alcuna chiamata.","tab_debts":"Debiti","tab_debts_blank":"Non hai ancora registrato alcun debito.","tab_favorite_notes":"Note preferite","tab_recent_calls":"Chiamate recenti","tab_tasks":"Promemoria","tab_tasks_blank":"Non hai ancora alcuna attivit\u00e0.","task_add_cta":"Aggiungi un promemoria","tasks_add_note":"Premi Invio<\/kbd> per creare il promemoria.","tasks_add_task_placeholder":"Cosa vuoi ricordarti?","tasks_tab_your_contacts":"Promemoria riguardanti i tuoi contatti","tasks_tab_your_tasks":"I tuoi promemoria"},"format":{"full_date_year":"d F Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M Y","short_date_year_time":"d M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Sei sicuro di voler rimuovere questa pagina dal diario?","entry_delete_success":"La pagina del diario \u00e8 stata rimossa.","journal_add":"Scrivi nel diario","journal_add_comment":"Ti interessa aggiungere un commento? (facoltativo)","journal_add_cta":"Salva","journal_add_date":"Data","journal_add_post":"Testo","journal_add_title":"Titolo (facoltativo)","journal_blank_cta":"Scrivi qualcosa nel diario","journal_blank_description":"Il diario ti permette di appuntare cose che ti succedono, e ricordarle.","journal_come_back":"Grazie. Ritorna domani per valutare di nuovo la tua giornata.","journal_created_at":"Creato il {date}","journal_created_automatically":"Creata automaticamente","journal_description":"Nota: il diario mostra sia voci inserite manualmente che voci generate automaticamente come le Attivit\u00e0 svolte con i tuoi contatti. Puoi eliminare le voci manuali, ma per quelle automatiche devi eliminarla direttamente dalla pagina del contatto.","journal_edit":"Modifica una voce del diario","journal_empty":"Diario vuoto","journal_entry_rate":"Hai votato la tua giornata.","journal_entry_type_activity":"Attivit\u00e0","journal_entry_type_journal":"Voce del diario","journal_rate":"Com'\u00e8 andata la tua giornata? Puoi votare una volta al giorno.","journal_show_comment":"Visualizza commento"},"logs":{"contact_log_contact_created":"Creato il contatto.","contact_log_contact_description_cleared":"Rimosso la descrizione.","contact_log_contact_description_updated":"Aggiornata la descrizione.","contact_log_contact_work_updated":"Informazioni di lavoro aggiornate.","settings_log_company_created":"Creata un'azienda chiamata :name.","settings_log_contact_created_with_name":"Aggiunto :name come contatto.","settings_log_contact_description_cleared_with_name":"Rimosso la descrizione di :name.","settings_log_contact_description_updated_with_name":"Aggiornata la descrizione di :name.","settings_log_contact_work_updated_with_name":"Aggiornato informazioni di lavoro di :name."},"mail":{"comment":"Commento: :comment","confirmation_email_bottom":"Se non hai creato un account, non \u00e8 richiesta alcuna azione ulteriore.","confirmation_email_button":"Verifica indirizzo email","confirmation_email_intro":"Per verificare il tuo indirizzo email clicca il bottone qui sotto","confirmation_email_title":"Monica \u2013 Verifica Email","footer_contact_info":"Aggiungi, consulta, completa e cambia le informazioni di questo contatto:","footer_contact_info2":"Apri il profilo di :name","footer_contact_info2_link":"Apri il profilo di :name: :url","for":"Per: :name","greetings":"Ciao :username","invitation_button":"Accetta l'invito","invitation_expiration":"Questo link scadr\u00e0 tra :count giorni.","invitation_intro":"Sei stato invitato da :name (:email) a usare Monica, un buon strumento per la gestione delle relazioni personali.","invitation_link":"Per accettare l'invito, clicca sul link sottostante:","invitation_title":"Monica \u2013 Sei stato invitato da :name","notification_description":"Tra :count giorni (il :date), avverr\u00e0 questo evento:","notification_subject_line":"Hai un evento in programma","notifications_footer":"Se hai problemi nel cliccare sul bottone \":actionText\", copia e incolla il seguente indirizzo direttamente nel tuo browser web: [:actionURL](:actionURL)","notifications_hello":"Ciao!","notifications_regards":"Saluti","notifications_rights":"Tutti i diritti riservati","notifications_whoops":"Ops!","password_reset_bottom":"Se non hai richiesto di reimpostare la password, non sono necessarie ulteriori azioni.","password_reset_button":"Reimposta Password","password_reset_expiration":"Il link per reimpostare la password scadr\u00e0 tra :count minuti.","password_reset_intro":"Hai ricevuto questa email perch\u00e9 dal tuo account \u00e9 partita una richiesta di reimpostazione della password.","password_reset_title":"Monica \u2013 Reimposta la tua password","stay_in_touch_subject_description":"Volevi che ti ricordassi di rimanere in contatto con :name ogni giorno.|Volevi che ti ricordassi di rimanere in contatto con :name ogni :frequency giorni.","stay_in_touch_subject_line":"Rimani in contatto con :name","subject_line":"Promemoria per :contact","want_reminded_of":"Volevi che ti ricordassi :reason"},"pagination":{"next":"Seguente \u276f","previous":"\u276e Precedente"},"passwords":{"changed":"Password modificata con successo.","invalid":"La password inserita non \u00e8 corretta.","reset":"La password \u00e8 stata reimpostata!","sent":"Se l'email inserita esiste nei nostri archivi vi \u00e9 stato inviato il link per reimpostare la tua password.","throttled":"Per favore attendere prima di riprovare.","token":"Questo token per reimpostare la password non \u00e8 valido.","user":"Se l'email inserita esiste nei nostri archivi vi \u00e9 stato inviato il link per reimpostare la tua password."},"people":{"activities_activity":"Categoria dell'attivit\u00e0","activities_add_activity":"Aggiungi attivit\u00e0","activities_add_category":"Indica una categoria","activities_add_date_occured":"Data dell'attivit\u00e0...","activities_add_emotions":"Aggiungi Umori\/emozioni","activities_add_emotions_title":"Vuoi registrare come ti sei sentito durante questa attivit\u00e1? (facoltativo)","activities_add_error":"Errore durante l'aggiunta dell'attivit\u00e0","activities_add_more_details":"Aggiungi ulteriori dettagli","activities_add_participants":"Chi, a parte {name}, ha partecipato a questa attivit\u00e0? (opzionale)","activities_add_participants_cta":"Aggiungi partecipanti","activities_add_pick_activity":"(Facoltativo) Vorresti assegnare una categoria a questa attivit\u00e0? Non \u00e8 obbligatorio, ma pi\u00f9 avanti ti permetter\u00e0 di vedere delle statistiche","activities_add_success":"Attivit\u00e0 aggiunta","activities_add_title":"Cosa hai fatto con {name}?","activities_blank_add_activity":"Agginugi attivit\u00e0","activities_blank_title":"Tieni traccia di quello che tu e {name} avete fatto, e ci\u00f2 di cui avete parlato","activities_delete_success":"Attivit\u00e0 rimossa","activities_item_information":":Activity il :date","activities_list_category":"Categoria:","activities_list_date":"Accaduto il","activities_list_emotions":"Emozioni provate:","activities_list_participants":"Partecipanti:","activities_profile_number_occurences":":value attivit\u00e0|:value attivit\u00e0","activities_profile_subtitle":"Hai registrato :total_activities attivit\u00e0 con :name e :activities_last_twelve_months negli ultimi 12 mesi.|Hai registrato :total_activities attivit\u00e0 con :name e :activities_last_twelve_months negli ultimi 12 mesi.","activities_profile_title":"Attivit\u00e0 tra tu e :name","activities_profile_year_summary":"Ecco cosa avete fatto insieme nel :year","activities_profile_year_summary_activity_types":"Ecco un resoconto dei tipi di attivit\u00e0 svolte nel :year","activities_summary":"Descrivi cosa avete fatto","activities_update_success":"Attivit\u00e0 aggiornata","activities_view_activities_report":"Visualizza resoconti attivit\u00e0","activities_who_was_involved":"Chi era coinvolto?","activity_title":"Attivit\u00e0","activity_type_ate_at_his_place":"mangiato a casa sua\/loro","activity_type_ate_at_home":"mangiato a casa","activity_type_ate_restaurant":"mangiato al ristorante","activity_type_category_cultural_activities":"Attivit\u00e0 culturali","activity_type_category_food":"Cibo","activity_type_category_simple_activities":"Attivit\u00e0 semplici","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"hanno giocato insieme a uno sport","activity_type_just_hung_out":"siamo usciti","activity_type_picnicked":"abbiamo fatto un picnic","activity_type_talked_at_home":"parlato, a casa","activity_type_watched_movie_at_home":"visto un film, a casa","activity_type_went_bar":"andati al bar","activity_type_went_concert":"andati a un concerto","activity_type_went_museum":"andati al museo","activity_type_went_play":"andati a una rappresentazione teatrale","activity_type_went_theater":"andati a teatro","age_approximate_in_years":"circa :age anni","age_exact_birthdate":"nato :date","age_exact_in_years":":age anni","auditlogs_author":"Da :name il :date","auditlogs_breadcrumb":"Cronologia","auditlogs_link":"Cronologia","auditlogs_title":"Tutto ci\u00f2 che \u00e8 accaduto a :name","avatar_adorable_avatar":"L'avatar adorabile","avatar_change_title":"Cambia il tuo avatar","avatar_crop_new_avatar_photo":"Ritaglia nuova foto dell'avatar","avatar_current":"Mantieni l'avatar attuale","avatar_default_avatar":"Avatar predefinito","avatar_gravatar":"Il Gravatar associato all'indirizzo email di questa persona. Gravatar<\/a> \u00e8 un sistema globale che permette agli utenti di associare indirizzi email con foto.","avatar_photo":"Da una foto che carichi","avatar_question":"Quale account preferisci usare?","birthdate_not_set":"Data di nascita assente","call_blank_desc":"Hai chiamato {name}","call_blank_title":"Tieni traccia delle chiamate effettuate con {name}","call_button":"Aggiungi chiamata","call_delete_confirmation":"Rimuovere questa chiamata?","call_delete_success":"La chiamata \u00e9 stata rimossa","call_emotions":"Emozioni:","call_empty_comment":"Nessuna informazione","call_he_called":"{name} ti ha chiamato","call_title":"Chiamate","call_you_called":"Hai chiamato","calls_add_success":"La chiamata \u00e9 stata salvata.","contact_address_form_city":"Citt\u00e1 (facoltativa)","contact_address_form_country":"Regione (facoltativa)","contact_address_form_latitude":"Latitudine (solo numeri) (facoltativa)","contact_address_form_longitude":"Longitudine (solo numeri) (facoltativa)","contact_address_form_name":"Etichetta (facoltativa)","contact_address_form_postal_code":"Codice postale (facoltativa)","contact_address_form_province":"Provincia (facoltativa)","contact_address_form_street":"Via (facoltativa)","contact_address_title":"Indirizzi","contact_archive":"Archivia contatto","contact_archive_help":"I contatti archiviati non vengono mostrati nella lista dei contatti, ma appaiono lo stesso nei risultati delle ricerche.","contact_field_label_cell":"Cellulare","contact_field_label_fax":"Fax","contact_field_label_home":"Casa","contact_field_label_main":"Principale","contact_field_label_other":"Altro","contact_field_label_pager":"Cercapersone","contact_field_label_personal":"Personale","contact_field_label_work":"Lavoro","contact_info_address":"Vive in","contact_info_form_contact_type":"Tipo di contatto","contact_info_form_content":"Contenuti","contact_info_form_personalize":"Personalizza","contact_info_title":"Informazioni di contatto","contact_unarchive":"Ripristina contatto","conversation_add_another":"Aggiungi un altro messaggio","conversation_add_content":"Scrivi cos'\u00e8 stato detto","conversation_add_error":"Devi aggiungere almeno un messaggio.","conversation_add_how":"Come avete comunicato?","conversation_add_success":"Conversazione aggiunta con successo.","conversation_add_title":"Registra una nuova conversazione","conversation_add_what_was_said":"Che cosa hai detto?","conversation_add_when":"Quando hai avuto questa conversazione?","conversation_add_who_wrote":"Chi ha detto questo messaggio?","conversation_add_you":"Tu","conversation_blank":"Registra le conversazioni avute con :name sui social media, SMS, ...","conversation_delete_link":"Elimina la conversazione","conversation_delete_success":"Conversazione eliminata con successo.","conversation_edit_delete":"Sei sicuro di voler eliminare questa conversazione? Non si pu\u00f2 annullare.","conversation_edit_success":"Conversazione aggiornata con successo.","conversation_edit_title":"Modifica conversazione","conversation_list_cta":"Registra conversazione","conversation_list_table_content":"Contenuto parziale (ultimo messaggio)","conversation_list_table_messages":"Messaggi","conversation_list_title":"Conversazioni","debt_add_add_cta":"Aggiungi debito","debt_add_amount":"l'ammontare di","debt_add_cta":"Aggiungi debito","debt_add_reason":"per questo motivo (facoltativo)","debt_add_success":"Debito aggiunto","debt_add_they_owe":":name ti deve","debt_add_title":"Gestione dei debiti","debt_add_you_owe":"devi a :name","debt_delete_confirmation":"Rimuovere questo debito?","debt_delete_success":"Debito rimosso","debt_edit_success":"Debito aggiornato","debt_edit_update_cta":"Aggiorna debito","debt_they_owe":":name ti deve :amount","debt_title":"Debiti","debt_you_owe":"Devi :amount","debts_blank_title":"Gestisci ci\u00f2 che devi a :name e quello che :name ti deve","deceased_add_reminder":"Aggiungi un promemoria per questa data","deceased_age":"Et\u00e0 di decesso","deceased_date_label":"Data morte","deceased_know_date":"Conosco il giorno in cui questa persona \u00e9 deceduta","deceased_label":"Deceduto\/a","deceased_label_with_date":"Decesso il :date","deceased_mark_person_deceased":"Contrassegna questa persona come deceduta","deceased_reminder_title":"Anniversario della morte di :name","document_list_blank_desc":"Qui puoi archiviare documenti relativi a questa persona.","document_list_cta":"Carica documento","document_list_title":"Documenti","document_upload_zone_cta":"Carica un file","document_upload_zone_error":"Si \u00e8 verificato un errore. Per favore, riprova a caricare il documento.","document_upload_zone_progress":"Caricamento in corso...","edit_contact_information":"Modifica informazioni del contatto","emotion_this_made_me_feel":"Questo mi ha fatto sentire\u2026","food_preferences_add_success":"Le preferenze alimentari sono state salvate","food_preferences_cta":"Aggiunti preferenze alimentari","food_preferences_edit_cta":"Salva preferenze alimentari","food_preferences_edit_description":"Magari :firstname o qualcuno nella famiglia :family ha un'allergia. O non gli piace un certo vino. Indica queste cose qui cos\u00ec da ricordarle la prossima volta che li inviti a cena","food_preferences_edit_description_no_last_name":"Magari :firstname ha un'allergia. O non gli piace un certo vino. Indica queste cose qui cos\u00ec da ricordarle la prossima volta che li inviti a cena","food_preferences_edit_title":"Indica le preferenze alimentari","food_preferences_title":"Preferenze alimentari","gifts_add_comment":"Commenti (facoltativo)","gifts_add_date":"Data (opzionale)","gifts_add_gift":"Aggiungi regalo","gifts_add_gift_already_offered":"Regalo dato","gifts_add_gift_idea":"Idea regalo","gifts_add_gift_name":"Nome del regalo","gifts_add_gift_received":"Regalo ricevuto","gifts_add_gift_title":"Cos'\u00e8 questo regalo?","gifts_add_link":"Link alla pagina web (facoltativo)","gifts_add_photo":"Foto (opzionale)","gifts_add_photo_title":"Aggiungi una foto per questo regalo","gifts_add_recipient":"Destinatario (opzionale)","gifts_add_recipient_field":"Destinatario","gifts_add_someone":"Questo regalo \u00e9 per qualcuno in particolare nella famiglia di {name}","gifts_add_success":"Regalo aggiunto","gifts_add_title":"Gestione dei regali a :name","gifts_add_value":"Valore (facoltativo)","gifts_delete_confirmation":"Rimuovere regalo?","gifts_delete_cta":"Rimuovi","gifts_delete_success":"Regalo rimosso","gifts_delete_title":"Rimuovi un regalo","gifts_for":"Per: {name}","gifts_ideas":"Idee regalo","gifts_link":"Collegamento","gifts_mark_offered":"Segna come dato","gifts_offered":"Regali dati","gifts_offered_as_an_idea":"Segna come idea","gifts_received":"Regali ricevuti","gifts_title":"Regali","gifts_update_success":"Regalo modificato","gifts_view_comment":"Visualizza commento","information_edit_birthdate_label":"Data di nascita","information_edit_description":"Descrizione (facoltativo)","information_edit_description_help":"Usato nella lista dei contatti per aggiungere contesto, se necessario.","information_edit_exact":"Conosco la data di nascita esatta di questa persona, che \u00e8 il","information_edit_firstname":"Nome","information_edit_lastname":"Cognome (facoltativo)","information_edit_max_size":"Massimo :size Kb.","information_edit_max_size2":"Massimo {size} Kb.","information_edit_not_year":"Conosco il giorno e il mese della data di nascita, ma non l'anno\u2026","information_edit_probably":"Questa persona probabilmente ha","information_edit_success":"Il profilo \u00e8 stato aggiornato","information_edit_title":"Modifica le informazioni personali di :name","information_edit_unknown":"Non conosco l'et\u00e0 di questa persona","information_no_work_defined":"Nessuna informazione professionale","information_work_at":"alla :company","introductions_add_reminder":"Aggiungi un promemoria per celebrare questo incontro nel suo anniversario","introductions_additional_info":"Spiega come e dove vi siete conosciuti","introductions_blank_cta":"Indica come hai conosciuto :name","introductions_edit_met_through":"Qualcuno ti ha presentato a questa persona?","introductions_first_met_date":"Data in cui vi siete conosciuti","introductions_first_met_date_known":"Questo \u00e9 il giorno in cui si siamo conosciuti","introductions_met_date":"Incontrato\/a il :date","introductions_met_through":"Conosciuto\/a attraverso :name<\/a>","introductions_no_first_met_date":"Non ricordo la data in cui ci siamo conosciuti","introductions_no_met_through":"Nessuno","introductions_reminder_title":"Anniversario del giorno in cui vi siete conosciuti","introductions_sidebar_title":"Come vi siete conosciuti","introductions_title_edit":"Come hai conosciuto :name?","introductions_update_success":"Informazioni sull'incontro con questa persona aggiornate","last_activity_date":"Ultima attivit\u00e0 insieme: :date","last_activity_date_empty":"Ultima attivit\u00e0 insieme: sconosciuta","last_called":"Ultima chiamata: :date","last_called_empty":"Ultima chiamata: sconosciuta","life_event_blank":"Memorizza gli eventi importanti della vita di {name} per riferimento futuro.","life_event_category_family_relationships":"Famiglia e Relazioni","life_event_category_health_wellness":"Salute e Benessere","life_event_category_home_living":"Casa e Vita","life_event_category_travel_experiences":"Viaggi ed Esperienze","life_event_category_work_education":"Lavoro e Istruzione","life_event_create_add_yearly_reminder":"Aggiungi un promemoria per l'anniversario di questo evento","life_event_create_category":"Tutte le categorie","life_event_create_date":"Non \u00e8 necessario indicare giorno e mese - solo l'anno \u00e8 obbligatorio.","life_event_create_default_description":"Aggiungi informazioni su quello che sai","life_event_create_default_story":"Storia (facoltativo)","life_event_create_default_title":"Titolo (facoltativo)","life_event_create_life_event":"Aggiungi evento","life_event_create_success":"Evento aggiunto","life_event_date_it_happened":"Data di avvenimento","life_event_delete_description":"Sei sicuro di eliminare questo evento? Non si pu\u00f2 annullare.","life_event_delete_success":"Evento eliminato con successo","life_event_delete_title":"Elimina un evento","life_event_list_cta":"Aggiungi evento","life_event_list_tab_life_events":"Eventi della vita","life_event_list_tab_other":"Note, promemoria, ...","life_event_list_title":"Eventi della vita","life_event_sentence_achievement_or_award":"Preso un premio o un riconoscimento","life_event_sentence_anniversary":"Anniversario","life_event_sentence_bought_a_home":"Comprato una casa","life_event_sentence_broken_bone":"Rotto un osso","life_event_sentence_changed_beliefs":"Cambiato credo","life_event_sentence_dentist":"Andato dal dentista","life_event_sentence_end_of_relationship":"Fine di una relazione","life_event_sentence_engagement":"Fidanzamento","life_event_sentence_expecting_a_baby":"Aspetta un bambino","life_event_sentence_first_kiss":"Primo bacio","life_event_sentence_first_word":"Parlato per la prima volta","life_event_sentence_holidays":"Andato in vacanza","life_event_sentence_home_improvement":"Miglioramento alla casa","life_event_sentence_loss_of_a_loved_one":"Perdita di un caro","life_event_sentence_marriage":"Matrimonio","life_event_sentence_military_service":"Inizio servizio militare","life_event_sentence_moved":"Trasferimento","life_event_sentence_new_child":"Ha avuto un bambino","life_event_sentence_new_eating_habits":"Inizio di nuove abitudini alimentari","life_event_sentence_new_family_member":"Nuovo membro in famiglia","life_event_sentence_new_hobby":"Iniziato un hobby","life_event_sentence_new_instrument":"Imparato un nuovo strumento","life_event_sentence_new_job":"Inizio di un nuovo lavoro","life_event_sentence_new_language":"Imparato una nuova lingua","life_event_sentence_new_license":"Preso una patente","life_event_sentence_new_pet":"Ha preso un animale domestico","life_event_sentence_new_relationship":"Inizio di una relazione","life_event_sentence_new_roommate":"Nuovo coinquilino","life_event_sentence_new_school":"Inizio scuola","life_event_sentence_new_sport":"Iniziato uno sport","life_event_sentence_new_vehicle":"Nuovo veicolo","life_event_sentence_overcame_an_illness":"Superamento di una malattia","life_event_sentence_published_book_or_paper":"Pubblicato un articolo","life_event_sentence_quit_a_habit":"Fine di un vizio","life_event_sentence_removed_braces":"Levato l'apparecchio","life_event_sentence_retirement":"Pensionamento","life_event_sentence_study_abroad":"Studi all'estero","life_event_sentence_surgery":"Ha subito un intervento","life_event_sentence_tattoo_or_piercing":"Fatto un piercing o un tatuaggio","life_event_sentence_travel":"Viaggiato","life_event_sentence_volunteer_work":"Inizio volontariato","life_event_sentence_wear_glass_or_contact":"Occhiali o lenti a contatto","life_event_sentence_weight_loss":"Perso peso","list_link_to_active_contacts":"Stai visualizzando i contatti archiviati. Mostra i contatti attivi<\/a> invece.","list_link_to_archived_contacts":"Lista di contatti archiviati","me":"Questo sei tu","modal_call_comment":"Di cosa avete parlato? (facoltativo)","modal_call_emotion":"Vuoi registrare come ti sei sentito durante questa chiamata? (facoltativo)","modal_call_exact_date":"La chiamata \u00e9 stata fatta il","modal_call_title":"Aggiungi chiamata","modal_call_who_called":"Chi ha chiamato?","notes_add_cta":"Aggiungi nota","notes_create_success":"Nota creata","notes_delete_confirmation":"Rimuovere nota? Questo cambio \u00e8 permanente.","notes_delete_success":"Nota rimossa","notes_delete_title":"Rimuovi nota","notes_favorite":"Aggiungi\/rimuovi dalle note preferite","notes_update_success":"Nota aggiornata","people_add_birthday_reminder":"Fai gli auguri di compleanno a :name","people_add_birthday_reminder_deceased":"In questa data, :name, avrebbe celebrato il suo compleanno","people_add_cta":"Aggiungi questa persona","people_add_firstname":"Nome","people_add_gender":"Sesso","people_add_import":"Vuoi importare i tuoi contatti<\/a>?","people_add_lastname":"Cognome (facoltativo)","people_add_middlename":"Secondo nome (facoltativo)","people_add_missing":"Nessuna persona trovata, aggiungine una","people_add_new":"Aggiungi una persona","people_add_nickname":"Nickname (facoltativo)","people_add_reminder_for_birthday":"Crea un promemoria annuale per il compleanno","people_add_success":"Contatto creato con successo","people_add_title":"Aggiungi una nuova persona","people_delete_confirmation":"Rimuovere questo contatto? Questo cambio \u00e8 permanente.","people_delete_message":"Elimina contatto","people_delete_success":"Il contatto \u00e8 stato rimosso","people_edit_email_error":"Esiste gi\u00e0 un contatto nel tuo account con questo indirizzo email. Scegline un altro, per favore.","people_export":"Esporta in formato vCard","people_list_account_upgrade_cta":"Effettua l'upgrade ora","people_list_account_upgrade_title":"Effettua l'upgrade del tuo account per poter usufruire delle sue piene funzionalit\u00e1.","people_list_account_usage":"Utilizzo account: :current\/:limit contatti","people_list_blank_cta":"Aggiungi qualcuno","people_list_blank_title":"Non ci sono contatti nel tuo account","people_list_clear_filter":"Rimuovi filtro","people_list_contacts_per_tags":"1 contatto|:count contatti","people_list_filter_tag":"Tutti i contatti etichettati con","people_list_filter_untag":"Tutti i contatti senza etichette","people_list_firstnameAZ":"Ordina per nome A \u2192 Z","people_list_firstnameZA":"Ordina per nome Z \u2192 A","people_list_hide_dead":"Nascondi persone decedute (:count)","people_list_last_updated":"Ultimo contatto:","people_list_lastactivitydateNewtoOld":"Ordina per data dell'ultima attivit\u00e0, pi\u00f9 recente \u2192 meno recente","people_list_lastactivitydateOldtoNew":"Ordina per data dell'ultima attivit\u00e0, meno recente \u2192 pi\u00f9 recente","people_list_lastnameAZ":"Ordina per cognome A \u2192 Z","people_list_lastnameZA":"Ordina per cognome Z \u2192 A","people_list_number_kids":"1 bambino|:count bambini","people_list_number_reminders":"1 promemoria|:count promemoria","people_list_show_dead":"Mostra persone decedute (:count)","people_list_sort":"Ordina","people_list_stats":"1 contatto|:count contatti","people_list_untagged":"Mostra contatti senza etichette","people_not_found":"Contatto non trovato","people_save_and_add_another_cta":"Salva e aggiungi un'altra persona","people_search":"Cerca nei tuoi contatti...","people_search_all":"Tutto","people_search_next":"Successivo","people_search_no_results":"Nessun risultato trovato","people_search_of":"di","people_search_page":"Pagina","people_search_prev":"Precedente","people_search_rows_per_page":"Righe per pagina","pets_bird":"Uccello","pets_cat":"Gatto","pets_create_success":"Animale domestico aggiunto con successo","pets_delete_success":"Animale domestico rimosso","pets_dog":"Cane","pets_fish":"Pesce","pets_hamster":"Criceto","pets_horse":"Cavallo","pets_kind":"Tipo di animale domestico","pets_name":"Nome (facoltativo)","pets_other":"Altro","pets_rabbit":"Coniglio","pets_rat":"Topo\/Ratto","pets_reptile":"Rettile","pets_small_animal":"Animale di piccole dimensioni","pets_title":"Animali domestici","pets_update_success":"Animale domestico modificato","photo_current_profile_pic":"Attuale immagine del profilo","photo_delete":"Elimina foto","photo_list_blank_desc":"Qui puoi salvare foto relative a questa persona, caricane una adesso!","photo_list_cta":"Carica foto","photo_list_title":"Foto","photo_make_profile_pic":"Rendi questa foto immagine del profilo","photo_next":"Prossima foto \u276f","photo_previous":"\u276e Foto precedente","photo_title":"Foto","photo_upload_zone_cta":"Carica una foto","relationship_delete_confirmation":"Rimuovere relazione? Questo cambio \u00e8 permanente.","relationship_form_add":"Aggiungi relazione","relationship_form_add_choice":"Con chi \u00e8 la relazione?","relationship_form_add_description":"Ti permetter\u00e0 di trattare questa persona come ogni altro contatto.","relationship_form_add_no_existing_contact":"Al momento non hai contatti che possono essere una relazione :name.","relationship_form_add_success":"Relazione impostata correttamente.","relationship_form_also_create_contact":"Aggiungi questa persona anche come Contatto.","relationship_form_associate_contact":"Un contatto esistente","relationship_form_associate_dropdown":"Cerca e seleziona un contatto dalla lista","relationship_form_associate_dropdown_placeholder":"Cerca e seleziona un contatto esistente","relationship_form_create_contact":"Aggiungi persona","relationship_form_deletion_success":"La relazione \u00e8 stata eliminata.","relationship_form_edit":"Modifica una relazione esistente","relationship_form_is_with":"Questa persona \u00e8...","relationship_form_is_with_name":":name \u00e8...","relationship_unlink_confirmation":"Rimuovere questa relazione? Il contatto non sar\u00e1 cancellato \u2013 solo la relazione.","reminder_frequency_day":"ogni giorno|ogni :number giorni","reminder_frequency_month":"ogni mese|ogni :number mesi","reminder_frequency_one_time":"il :date","reminder_frequency_week":"ogni settimana|ogni :number settimane","reminder_frequency_year":"ogni anno|ogni :number anni","reminders_add_cta":"Aggiungi promemoria","reminders_add_description":"Ricordami per piacere di...","reminders_add_error_custom_text":"Devi scrivere qualcosa per questo promemoria","reminders_add_next_time":"Quando vorresti ti fosse ricordato?","reminders_add_once":"Ricordamelo una sola volta","reminders_add_optional_comment":"Informazioni aggiuntive","reminders_add_recurrent":"Ricordamelo ogni","reminders_add_starting_from":"a partire dalla data specificata qui sopra","reminders_add_title":"Cosa vorresti ricordare a proposito di :name?","reminders_birthday":"Compleanno di :name","reminders_blank_add_activity":"Aggiungi un promemoria","reminders_blank_title":"C'\u00e8 qualcosa di cui ti vuoi ricordare riguardo a :name?","reminders_create_success":"Il promemoria \u00e8 stato creato","reminders_cta":"Aggiungi un promemoria","reminders_delete_confirmation":"Rimuovere questo promemoria?","reminders_delete_cta":"Rimuovi","reminders_delete_success":"Il promemoria \u00e8 stato rimosso","reminders_description":"Ti invieremo una email per ognuno dei promemoria qui sotto. I promemoria vengono inviati ogni mattina in cui l'evento ha luogo. I promemoria aggiunti automaticamente per i compleanni non possono essere rimossi. Se vuoi cambiare quelle date, cambia le date di compleanno di quei contatti.","reminders_edit_update_cta":"Aggiorna promemoria","reminders_free_plan_warning":"Nella versione gratuita di Monica non vengono inviate email. Per ricevere promemoria via email, effettua l'upgrade.","reminders_next_expected_date":"il","reminders_one_time":"Una volta","reminders_type_month":"mese","reminders_type_week":"settimana","reminders_type_year":"anno","reminders_update_success":"Il promemoria \u00e8 stato aggiornato","section_contact_information":"Informazioni sul contatto","section_personal_activities":"Attivit\u00e0","section_personal_gifts":"Regali","section_personal_notes":"Note","section_personal_reminders":"Promemoria","section_personal_tasks":"Cose da fare","set_favorite":"I contatti preferiti vengono mostrati per primi nella lista","stay_in_touch":"Rimani in contatto","stay_in_touch_frequency":"Rimani in contatto ogni giorno|Rimani in contatto ogni {count} giorni","stay_in_touch_invalid":"La frequenza dev'essere un numero maggiore di 0.","stay_in_touch_modal_desc":"Possiamo ricordarti di rimanere in contatto con {firstname} tramite email a intervalli regolari.","stay_in_touch_modal_label":"Mandami una email ogni... {count} giorno|Mandami una email ogni... {count} giorni","stay_in_touch_modal_title":"Rimani in contatto","stay_in_touch_premium":"Devi fare l'upgrade al tuo account per usare questa funzione","tag_add":"Aggiungi etichette","tag_add_search":"Aggiungi o cerca etichette","tag_edit":"Modifica etichetta","tag_no_tags":"Nessuna etichetta","tasks_add_task":"Aggiungi compito","tasks_blank_title":"Nulla da fare.","tasks_complete_success":"Compito completato","tasks_delete_success":"Compito rimosso","tasks_form_description":"Descrizione (facoltativa)","tasks_form_title":"Titolo","tasks_title":"Cose da fare","work_add_cta":"Aggiorna informazioni professionali","work_edit_company":"Azienda (facoltativa)","work_edit_job":"Titolo (facoltativo)","work_edit_success":"Work information updated","work_edit_title":"Aggiorna informazioni professionali di :name","work_information":"Informazioni professionali"},"reminder":{"type_birthday":"Augura buon compleanno a","type_birthday_kid":"Augura buon compleanno al figlio di ","type_email":"Email","type_hangout":"Incontro con","type_lunch":"Pranzo con","type_phone_call":"Chiama"},"settings":{"2fa_disable_description":"Disabilita l'Autenticazione a Due Fattori per il tuo profilo. Attenzione, il tuo profilo sar\u00e0 molto meno sicuro!","2fa_disable_error":"Errore durante la disattivazione dell'autenticazione a due fattori","2fa_disable_success":"Autenticazione a due fattori disattivata","2fa_disable_title":"Disabilita autenticazione a due fattori","2fa_enable_description":"Abilita l'Autenticazione a Due Fattori per aumentare la sicurezza del tuo profilo.","2fa_enable_error":"Errore durante l'attivazione dell'autenticazione a due fattori.","2fa_enable_error_already_set":"Autenticazione a due fattori gi\u00e0 attiva","2fa_enable_otp":"Apri la tua app mobile dell'Autenticazione a Due Fattori e scansiona il seguente codice QR:","2fa_enable_otp_help":"Se la tua app mobile di Autenticazione a Due Fattori non supporta i codici QR, inserisci il seguente codice:","2fa_enable_otp_validate":"Sei pregato di validare il nuovo dispositivo appena configurato:","2fa_enable_success":"Autenticazione a due fattori attivata.","2fa_enable_title":"Abilita autenticazione a due fattori","2fa_otp_title":"App di autenticazione a due fattori","2fa_title":"Autenticazione a due fattori","api_authorized_clients":"Lista di client autorizzati","api_authorized_clients_desc":"Questa sezione elenca tutti i client che hai autorizzato ad accedere all'applicazione. Puoi revocare questa autorizzazione in qualsiasi momento.","api_authorized_clients_name":"Nome","api_authorized_clients_none":"Ancora non c'\u00e8 alcun client autorizzato.","api_authorized_clients_scopes":"Visibilit\u00e0","api_authorized_clients_title":"Applicazioni autorizzate","api_description":"L'API pu\u00f3 essere usata per manipolare le informazioni in Monica da un'applicazione esterna, ad esempio da un'applicazione per smartphone.","api_endpoint":"L'endpoint API per questa istanza Monica \u00e8:","api_help":"Per utilizzare le API, \u00e9 obbligatorio l'uso di un token. \u00c8 possibile creare un token di accesso personale (autenticazione Bearer), o autorizzare un client OAuth per farlo creare al posto vostro. Vedi documentazione riguardo le API<\/a> per maggiori informazioni.","api_oauth_clientid":"ID Cliente","api_oauth_clients":"I tuoi client Oauth","api_oauth_clients_desc":"Questa sezione ti permette di registrare i tuoi client OAuth.","api_oauth_clients_desc2":"Usa questo Id Client per richiedere un nuovo token e convertire i codici di autorizzazione a token di accesso. Vedi la documentazione di Laravel Passport<\/a> per ulteriori informazioni.","api_oauth_create":"Crea client","api_oauth_create_new":"Crea nuovo client","api_oauth_edit":"Modifica client","api_oauth_name":"Nome","api_oauth_name_help":"Qualcosa di riconoscibile per i tuoi utenti.","api_oauth_not_created":"Non hai ancora creato nessun client OAuth.","api_oauth_redirecturl":"URL di reindirizzamento","api_oauth_redirecturl_help":"Indirizzo della callback di autorizzazione della tua applicazione.","api_oauth_secret":"Segreto","api_oauth_title":"Client OAuth","api_pao_description":"Assicurati di dare questo token a fonti fidate, gi\u00e1 che danno accesso a tutti i tuoi dati.","api_personal_access_tokens":"Personal access token","api_title":"Accesso all'API","api_token_create":"Crea Token","api_token_create_new":"Crea nuovo token","api_token_delete":"Rimuovi","api_token_expire":"Scade il {date}","api_token_help":"Ecco il tuo nuovo token. Questa \u00e8 l'unica volta in cui viene mostrato, per cui segnatelo! Da ora in poi puoi utilizzarlo per fare richieste alle API.","api_token_name":"Nome token","api_token_not_created":"Non hai creato nessun token di accesso.","api_token_scopes":"Visibilit\u00e0","api_token_title":"Token di Acceso personale","archive_cta":"Archivia tutti i tuoi contatti","archive_desc":"Questo archivier\u00e0 tutti i contatti nel tuo profilo.","archive_title":"Archivia tutti i contatti nel tuo profilo","currency":"Valuta","dav_caldav_birthdays_export":"Esporta tutti i compleanni in un file","dav_caldav_tasks_export":"Esporta tutte le attivit\u00e0 in un file","dav_carddav_export":"Esporta tutti i contatti in un file","dav_clipboard_copied":"Valore copiato negli appunti","dav_connect_help":"Puoi collegare i tuoi contatti e\/o calendari con questo url di base sul tuo telefono o computer.","dav_connect_help2":"Usa il tuo accesso (email) e crea un token API come password per autenticarsi.","dav_copy_help":"Copia negli appunti","dav_description":"Qui puoi trovare tutte le impostazioni per utilizzare le risorse WebDAV per le esportazioni di CardDAV e CalDAV.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Url di base per tutte le risorse CardDAV e CalDAV:","dav_url_caldav_birthdays":"Url CalDAV per le risorse di compleanni:","dav_url_caldav_tasks":"Url CalDAV per le risorse di task:","dav_url_carddav":"Url CardDAV per la risorsa Contatti:","delete_cta":"Rimuovi account","delete_desc":"Desideri eliminare il tuo profilo? L'eliminazione \u00e8 permanente e tutti i tuoi dati saranno eliminati permanentemente. Se hai un abbonamento, sar\u00e0 annullato immediatamente.","delete_notice":"Sei sicuro di voler eliminare il tuo profilo? Ci\u00f2 \u00e8 permanente e non annullabile. Tutti i tuoi dati saranno eliminati e non saranno recuperabili.","delete_other_desc":"I tuoi dati nel database principale saranno immediatamente eliminati. Come descritto nella nostra politica della privacy, effettuiamo backup giornalieri, backup crittografati in sicurezza del database, mantenuti per 30 giorni dopo cui sono completamente eliminati. Non possiamo eliminare dati specifici dai backup che manteniamo prima di questo periodo. Tutti i tuoi dati saranno completamente eliminati entro 30 giorni dall'eliminazione del tuo profilo.","delete_title":"Rimuovi il tuo account","email":"Email","email_help":"Questa \u00e8 l'email usata per accedere e dove Monica invier\u00e0 i tuoi promemoria.","email_placeholder":"Insersci un'email","export_be_patient":"Clicca il pulsante per avviare l'esportazione. L'elaborazione dell'esportazione potrebbe richiedere diversi minuti, sei pregato di esser paziente e non cliccare ripetutamente il pulsante.","export_sql_cta":"Esporta dati in SQL","export_sql_explanation":"Esportare i tuoi dati in formato SQL ti consente di prendere i tuoi dati e importarli alla tua istanza di Monica. Ci\u00f2 \u00e8 utile solo se stai eseguendo Monica sul tuo server.","export_sql_link_instructions":"Leggi le istruzioni<\/a> per imparare come importare questo file nella tua istanza.","export_title":"Esporta i dati del tuo account","export_title_sql":"Esporta dati in SQL","firstname":"Nome","import_blank_cta":"Importa vCard","import_blank_description":"Possiamo importare file vCard ottenibili da Google Contacts o dal tuo gestore di contatti.","import_blank_question":"Importare contatti?","import_blank_title":"Non hai importato nessun contatto per ora.","import_cta":"Carica contatti","import_in_progress":"Importazione in corso. Ricarica la pagina in un minuto.","import_need_subscription":"Importare dati richiede una sottoscrizione.","import_report_date":"Data dell'importazione","import_report_number_contacts":"Numero di contatti nel file","import_report_number_contacts_imported":"Numero di contatti importati","import_report_number_contacts_skipped":"Numero di contatti omessi","import_report_status_imported":"Importati","import_report_status_skipped":"Omessi","import_report_title":"Resoconto dell'importazione","import_report_type":"Tipo di importazione","import_result_stat":"vCard caricata con 1 contatto (:total_imported importati, :total_skipped saltati)|vCard caricata con :total_contacts contatti (:total_imported importati, :total_skipped saltati)","import_stat":"Hai importato :number file fino ad ora.","import_title":"Importa contatti nel tuo account","import_upload_behaviour":"Comportamento:","import_upload_behaviour_add":"Aggiungi nuovi contatti e salta esistenti","import_upload_behaviour_help":"La sostituzione rimpiazzer\u00e0 tutti i dati trovati nella vCard, ma manterr\u00e0 i campi di contatto esistenti.","import_upload_behaviour_replace":"Sovrascrivi i contatti gi\u00e0 esistenti","import_upload_form_file":"Il tuo file .vcf<\/code> o .vCard<\/code>:","import_upload_rule_cant_revert":"Sei pregato di assicurarti che i dati siano accurati prima di caricarli, poich\u00e9 non puoi annullarne il caricamento.","import_upload_rule_format":"Supportiamo file .vcard<\/code> e .vcf<\/code>.","import_upload_rule_instructions":"Esporta le istruzioni per Contacts.app di macOS<\/a> e Google Contacts<\/a>.","import_upload_rule_limit":"I file sono limitati a 10 MB.","import_upload_rule_multiple":"Se i tuoi contatti hanno indirizzi email o numeri telefonici multipli, solo i primi saranno salvati.","import_upload_rule_time":"Potrebbe volerci fino a un minuto per caricare ed elaborare i contatti. Sei pregato di esser paziente.","import_upload_rule_vcard":"Supportiamo il formato vCard 3.0, il formato predefinito per Contacts.app di macOS e Google Contacts.","import_upload_rules_desc":"Ci sono alcune regole:","import_upload_title":"Importa i contatti da un file vCard","import_vcard_contact_exist":"Contatto gi\u00e0 esistente","import_vcard_contact_no_firstname":"Nome mancante (obbligatorio)","import_vcard_file_no_entries":"Il file non contiene contatti","import_vcard_file_not_found":"File non trovato","import_vcard_parse_error":"Errore nel parsing della vCard","import_vcard_unknown_entry":"Nome di contatto sconosciuto","import_view_report":"Vedi resoconto","lastname":"Cognome","layout":"Impaginazione","layout_big":"Larghezza intera del browser","layout_small":"Massimo 1200 pixel di larghezza","locale":"Lingua","locale_ar":"Arabo","locale_cs":"Ceco","locale_de":"Tedesco","locale_en":"Inglese","locale_en-GB":"Inglese (Regno Unito)","locale_es":"Spagnolo","locale_fr":"Francese","locale_he":"Ebraico","locale_help":"Vuoi aiutare a tradurre Monica o ad aggiungere una nuova lingua? Segui questo link per ulteriori informazioni<\/a>.","locale_hr":"Croato","locale_it":"Italiano","locale_ja":"Giapponese","locale_nl":"Olandese","locale_pt":"Portoghese","locale_pt-BR":"Portoghese (Brasile)","locale_ru":"Russo","locale_sv":"Svedese","locale_tr":"Turco","locale_zh":"Cinese semplificato","locale_zh-TW":"Cinese Tradizionale","logs_actor":"Attore","logs_description":"Descrizione","logs_object":"Oggetto","logs_size":"Dimensione (Kb)","logs_subject":"Soggetto","logs_timestamp":"Data e ora","logs_title":"Tutto ci\u00f2 che \u00e8 successo a questo profilo","me_choose":"Scegli te stesso","me_choose_placeholder":"Scegli te stesso","me_help":"Questo \u00e8 il contatto che rappresenta te<\/em> a Monica","me_no_contact":"Ancora nessun contatto selezionato.","me_remove_contact":"Rimuovi l'associazione","me_select":"Seleziona un contatto","me_select_click":"Clicca qui per selezionare un contatto.","me_title":"Me come contatto","name":"Il tuo nome: :name","name_order":"Ordine del nome","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Modifica password","password_change":"Modifica la tua password","password_current":"Password attuale","password_current_placeholder":"Inserisci la tua password corrente","password_new1":"Nuova password","password_new1_placeholder":"Inserisci la tua nuova password","password_new2":"Conferma la tua nuova password","password_new2_placeholder":"Digita di nuovo la tua nuova password","personalisation_paid_upgrade":"Questa \u00e8 una funzionalit\u00e0 premium che richiede un abbonamento a pagamento per essere attivo. Aggiorna il tuo account visitando Impostazioni > Abbonamento<\/a>.","personalisation_paid_upgrade_vue":"Questa \u00e8 una funzionalit\u00e0 premium che richiede un abbonamento a pagamento per essere attiva. Aggiorna il tuo account visitando Impostazioni > Abbonamento<\/a>.","personalization_activity_type_add_button":"Aggiungi categoria","personalization_activity_type_category_add":"Aggiungi una nuova categoria di attivit\u00e0","personalization_activity_type_category_description":"Un'attivit\u00e0 con uno dei tuoi contatti pu\u00f2 avere un tipo e un tipo di categoria. Il tuo profilo \u00e8 fornito con una serie di tipi di categoria predefiniti di default, ma puoi personalizzarli qui.","personalization_activity_type_category_modal_add":"Aggiungi nuova categoria","personalization_activity_type_category_modal_delete":"Elimina una categoria","personalization_activity_type_category_modal_delete_desc":"Sei sicuro di voler eliminare questa categoria? Eliminarla canceller\u00e0 tutti i tipi d'attivit\u00e0 associati. Le attivit\u00e0 appartenenti a questa categoria non saranno influenzate da quest'eliminazione.","personalization_activity_type_category_modal_delete_error":"Impossibile trovare questa categoria.","personalization_activity_type_category_modal_edit":"Modifica una categoria","personalization_activity_type_category_modal_question":"Come dovremmo denominare questa nuova categoria?","personalization_activity_type_category_table_actions":"Azioni","personalization_activity_type_category_table_name":"Nome","personalization_activity_type_category_title":"Categorie per le attivit\u00e0","personalization_activity_type_modal_add":"Aggiungi una nuova categoria","personalization_activity_type_modal_delete":"Elimina un tipo di attivit\u00e0","personalization_activity_type_modal_delete_desc":"Sei sicuro di eliminare questo tipo di attivit\u00e0? Le attivit\u00e0 che appartengono a questa categoria non saranno eliminate.","personalization_activity_type_modal_delete_error":"Impossibile trovare questo tipo.","personalization_activity_type_modal_edit":"Aggiorna una categoria esistente","personalization_activity_type_modal_question":"Come dovremmo denominare questo nuovo tipo d'attivit\u00e0?","personalization_contact_field_type_add":"Aggiungi una nuova forma di contatto","personalization_contact_field_type_add_success":"Forma di contatto aggiunta.","personalization_contact_field_type_delete_success":"Il tipo di campo di contatto \u00e8 stato correttamente eliminato.","personalization_contact_field_type_description":"Puoi configurare tutti i diversi tipi di campi di contatto che puoi associare a tutti i tuoi contatti. Ad esempio, se comparisse un nuovo social network in futuro, potrai aggiungere questo nuovo mezzo di comunicazione ai tuoi contatti, proprio qui.","personalization_contact_field_type_edit_success":"Forma di contatto aggiornata.","personalization_contact_field_type_modal_delete_description":"Sei sicuro di voler eliminare questo tipo di campo di contatto? Eliminandolo, cancellerai TUTTI i dati di questo tipo per tutti i tuoi contatti.","personalization_contact_field_type_modal_delete_title":"Rimuovi una forma di contatto esistente","personalization_contact_field_type_modal_edit_title":"Aggiorna una forma di contatto esistente","personalization_contact_field_type_modal_icon":"Icona (facoltativa)","personalization_contact_field_type_modal_icon_help":"Puoi associare un'icona a questa forma di contatto. Dev'essere un'icona di Font Awesome.","personalization_contact_field_type_modal_name":"Nome","personalization_contact_field_type_modal_protocol":"Protocollo (facoltativo)","personalization_contact_field_type_modal_protocol_help":"Si pu\u00f3 cliccare su ogni forma di contatto. Se \u00e9 impostato un protocollo, useremo quello.","personalization_contact_field_type_modal_title":"Aggiungi una nova forma di contatto","personalization_contact_field_type_table_actions":"Azioni","personalization_contact_field_type_table_name":"Nome","personalization_contact_field_type_table_protocol":"Protocollo","personalization_contact_field_type_title":"Forme di contatto","personalization_genders_add":"Aggiungi un nuovo sesso","personalization_genders_default":"Genere predefinito","personalization_genders_desc":"Puoi definire tutti i sessi che vuoi. Nel tuo account deve essere presente almeno un tipo di sesso.","personalization_genders_f":"Femmina","personalization_genders_list_contact_number":"{count} contatto|{count} contatti","personalization_genders_m":"Maschio","personalization_genders_make_default":"Cambia genere predefinito","personalization_genders_modal_add":"Aggiungi sesso","personalization_genders_modal_default":"Seleziona il sesso predefinito per un nuovo contatto","personalization_genders_modal_delete":"Elimina sesso","personalization_genders_modal_delete_desc":"Sei sicuro di voler eliminare il genere \"{name}\"?","personalization_genders_modal_delete_question":"Correntemente hai {count} contatto con questo genere. Se elimini questo genere, questo contatto quale dovrebbe avere?|Correntemente hai {count} contatti con questo genere. Se elimini questo genere, questi contatti quale dovrebbe avere?","personalization_genders_modal_delete_question_default":"Questo genere \u00e8 predefinito. Se elimini questo genere, quale sar\u00e0 il nuovo predefinito?","personalization_genders_modal_edit":"Aggiorna sesso","personalization_genders_modal_error":"Sei pregato di scegliere un genere dall'elenco.","personalization_genders_modal_name":"Nome","personalization_genders_modal_name_help":"Il nome utilizzato per visualizzare il genere in una pagina di contatto.","personalization_genders_modal_sex":"Sesso","personalization_genders_modal_sex_help":"Usato per definire le relazioni, e durante il processo di importazione\/esportazione della VCard.","personalization_genders_n":"Nessuno o non applicabile","personalization_genders_o":"Altro","personalization_genders_select_default":"Seleziona genere predefinito","personalization_genders_table_default":"Predefinito","personalization_genders_table_name":"Nome","personalization_genders_table_sex":"Sesso","personalization_genders_title":"Tipi di sesso","personalization_genders_u":"Sconosciuto","personalization_life_event_category_description":"Un evento importante pu\u00f2 avere un tipo e una categoria. Il tuo profilo \u00e8 fornito di una serie di categorie predefinite e tipi di default, ma puoi personalizzare qui i tipi di evento importante.","personalization_life_event_category_family_relationships":"Famiglia e relazioni","personalization_life_event_category_health_wellness":"Salute e benessere","personalization_life_event_category_home_living":"Casa e vita","personalization_life_event_category_title":"Categorie dell'evento della vita","personalization_life_event_category_travel_experiences":"Viaggi e esperienze","personalization_life_event_category_work_education":"Lavoro e educazione","personalization_life_event_type_achievement_or_award":"Premio o riconoscimento","personalization_life_event_type_add_button":"Aggiungi un nuovo tipo di evento della vita","personalization_life_event_type_anniversary":"Anniversario","personalization_life_event_type_bought_a_home":"Comprato una casa","personalization_life_event_type_broken_bone":"Rotto un osso","personalization_life_event_type_changed_beliefs":"Cambio di credo","personalization_life_event_type_dentist":"Trattamento odontoiatrico","personalization_life_event_type_end_of_relationship":"Fine di una relazione","personalization_life_event_type_engagement":"Fidanzamento","personalization_life_event_type_expecting_a_baby":"Attesa di un bambino","personalization_life_event_type_first_kiss":"Primo bacio","personalization_life_event_type_first_met":"Primo incontro","personalization_life_event_type_first_word":"Prima parola","personalization_life_event_type_holidays":"Vacanze","personalization_life_event_type_home_improvement":"Miglioramento per la casa","personalization_life_event_type_loss_of_a_loved_one":"Perdita di un caro","personalization_life_event_type_marriage":"Matrimonio","personalization_life_event_type_military_service":"Servizio militare","personalization_life_event_type_modal_add":"Aggiungi un nuovo tipo di evento della vita","personalization_life_event_type_modal_delete":"Elimina un tipo di evento della vita","personalization_life_event_type_modal_delete_desc":"Sei sicuro di voler eliminare questo tipo di evento della vita? Gli eventi della vita che appartengono a questo tipo saranno eliminati eseguendo quest'azione.","personalization_life_event_type_modal_delete_error":"Impossibile trovare questo tipo di evento della vita.","personalization_life_event_type_modal_edit":"Modifica un tipo di evento della vita","personalization_life_event_type_modal_question":"Come dovremmo denominare questo nuovo tipo di evento importante?","personalization_life_event_type_moved":"Trasferimento","personalization_life_event_type_new_child":"Nuovo bambino","personalization_life_event_type_new_eating_habits":"Nuove abitudini alimentari","personalization_life_event_type_new_family_member":"Nuovo membro di famiglia","personalization_life_event_type_new_hobby":"Iniziato un nuovo hobby","personalization_life_event_type_new_instrument":"Iniziato ad apprendere un nuovo strumento","personalization_life_event_type_new_job":"Nuovo lavoro","personalization_life_event_type_new_language":"Iniziato ad apprendere una nuova lingua","personalization_life_event_type_new_license":"Nuova patente","personalization_life_event_type_new_pet":"Nuovo animale domestico","personalization_life_event_type_new_relationship":"Nuova relazione","personalization_life_event_type_new_roommate":"Nuovo coinquilino","personalization_life_event_type_new_school":"Nuova scuola","personalization_life_event_type_new_sport":"Iniziato a praticare un nuovo sport","personalization_life_event_type_new_vehicle":"Nuovo veicolo","personalization_life_event_type_overcame_an_illness":"Superamento di una malattia","personalization_life_event_type_published_book_or_paper":"Pubblicazione di un libro o articolo","personalization_life_event_type_quit_a_habit":"Fine di un vizio","personalization_life_event_type_removed_braces":"Tolto l'apparecchio","personalization_life_event_type_retirement":"Pensionamento","personalization_life_event_type_study_abroad":"Studio all'estero","personalization_life_event_type_surgery":"Subito un intervento","personalization_life_event_type_tattoo_or_piercing":"Piercing o tatuaggio","personalization_life_event_type_travel":"Viaggio","personalization_life_event_type_volunteer_work":"Volontariato","personalization_life_event_type_wear_glass_or_contact":"Iniziato a indossare occhiali o lenti","personalization_life_event_type_weight_loss":"Perdita di peso","personalization_live_event_category_table_actions":"Azioni","personalization_live_event_category_table_name":"Nome","personalization_module_desc":"Potresti non necessitare di tutte le funzionalit\u00e0 di Monica. Sotto puoi attivare\/disattivare funzionalit\u00e0 specifiche usate su una rubrica. Questa modifica influenzer\u00e0 TUTTI i tuoi contatti. Disattivare una funzionalit\u00e0 non ne elimina tutti i dati, nasconde semplicemente la funzionalit\u00e0.","personalization_module_save":"Cambiamenti salvati","personalization_module_title":"Funzionalit\u00e0","personalization_reminder_rule_desc":"Per ogni promemoria che imposti, Monica ti invier\u00e0 un'email un certo numero di giorni prima dell'evento. Puoi regolare qui queste impostazioni di notifica. Queste notifiche si applicano solo a promemoria mensili e annuali.","personalization_reminder_rule_line":"{count} giorno prima|{count} giorni prima","personalization_reminder_rule_save":"Cambiamenti salvati","personalization_reminder_rule_title":"Regole per i promemoria","personalization_tab_title":"Personalizza il tuo account","personalization_title":"Qui puoi trovare diverse impostazioni per configurare il tuo profilo. Queste funzionalit\u00e0 sono intese per \"utenti esperti\" che vogliono il massimo controllo su Monica.","recovery_already_used_help":"Questo codice \u00e8 gi\u00e0 stato usato.","recovery_clipboard":"Codici copiati negli appunti.","recovery_copy_help":"Copia i codici nella clipboard","recovery_generate":"Genera nuovi codici\u2026","recovery_generate_help":"Generare nuovi codici invalider\u00e0 quelli precedentemente generati.","recovery_help_information":"Puoi usare ciascun codice una volta soltanto.","recovery_help_intro":"Ecco i tuoi codici di recupero:","recovery_show":"Ottieni codici di recupero","recovery_title":"Codici di recupero","reminder_time_to_send":"Orario del giorno di invio dei promemoria","reminder_time_to_send_help":"Il tuo prossimo promemoria \u00e8 pianificato per l'invio alle {dateTime}<\/span>.","reset_cta":"Reimposta il tuo account","reset_desc":"Desideri ripristinare il tuo profilo? Questo rimuover\u00e0 tutti i tuoi contatti e tutti i dati a essi associati. Il tuo profilo non sar\u00e0 eliminato.","reset_notice":"Sei sicuro di voler ripristinare il tuo profilo? Ci\u00f2 \u00e8 permanente e non annullabile.","reset_success":"Il tuo profilo \u00e8 stato correttamente ripristinato.","reset_title":"Reimposta il tuo account","save":"Aggiorna impostazioni","security_help":"Modifica le impostazioni di sicurezza relative al tuo account","security_title":"Sicurezza","settings_success":"Impostazioni aggiornate","sidebar_personalization":"Personalizzazione","sidebar_settings":"Impostazioni accounto","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Verifica logs","sidebar_settings_dav":"Risorse DAV","sidebar_settings_export":"Esporta dati","sidebar_settings_import":"Importa dati","sidebar_settings_security":"Sicurezza","sidebar_settings_storage":"Archiviazione","sidebar_settings_subscriptions":"Sottoscrizioni","sidebar_settings_tags":"Gestione dei tag","sidebar_settings_users":"Utenti","storage_account_info":"Il limite del tuo profilo \u00e8 :accountLimit MB. Il tuo uso corrente \u00e8 :currentAccountSize MB (circa :percentUsage%).","storage_description":"Qui puoi trovare tutti i documenti e le foto relativi ai tuoi contatti.","storage_title":"Memoria","storage_upgrade_notice":"Effettua l'upgrade del tuo account per caricare foto e documenti.","stripe_error_api_connection":"Comunicazione con Stripe fallita. Riprova tra poco.","stripe_error_authentication":"Autenticazione con Stripe non valida","stripe_error_card":"La tua carta \u00e8 stata declinata. Il messaggio ricevuto \u00e8: :message","stripe_error_invalid_request":"Parametri non validi. Riprova pi\u00f9 tardi.","stripe_error_rate_limit":"Troppe richieste a Stripe in questo momento. Riprova tra poco.","subscriptions_account_cancel":"Puoi annullare l'abbonamento<\/a> in qualsiasi momento.","subscriptions_account_confirm_payment":"Il tuo pagamento \u00e8 attualmente incompleto, per favore conferma il tuo pagamento<\/a>.","subscriptions_account_current_paid_plan":"Stai usando il piano :name. Grazie infinite per essere abbonato.","subscriptions_account_current_plan":"Il tuo piano attuale","subscriptions_account_free_plan":"Stai usando il piano gratuito.","subscriptions_account_free_plan_benefits_import_data_vcard":"Importa i tuoi contatti con vCard","subscriptions_account_free_plan_benefits_reminders":"Promemoria via email","subscriptions_account_free_plan_benefits_support":"Supporta il progetto a lungo termine, cos\u00ec che possiamo introdurre grandi nuove funzionalit\u00e0.","subscriptions_account_free_plan_benefits_users":"Numero di utenti illimitato","subscriptions_account_free_plan_upgrade":"Puoi promuovere il tuo piano al livello :name, che costa $:price al mese. I vantaggi sono:","subscriptions_account_invoices":"Ricevute","subscriptions_account_invoices_download":"Scarica","subscriptions_account_invoices_subscription":"Abbonamento da :startDate a :endDate","subscriptions_account_next_billing":"Il tuo abbonamento verr\u00e0 automaticamente rinnovato il :date<\/strong>.","subscriptions_account_payment":"Quale opzione di pagamento preferisci?","subscriptions_account_upgrade":"Promuovi il tuo account","subscriptions_account_upgrade_choice":"Scegli un piano e unisciti alle :customers persone abbonate a Monica.","subscriptions_account_upgrade_title":"Aggiorna Monica oggi e ottieni relazioni pi\u00f9 significative.","subscriptions_back":"Torna alle impostazioni","subscriptions_downgrade_cta":"Retrocedi","subscriptions_downgrade_limitations":"Il piano gratuito \u00e8 limitato. Per poter retrocedere il tuo account al piano gratuito, devi soddisfare questi requisiti:","subscriptions_downgrade_rule_contacts":"Non puoi avere pi\u00f9 di :number contatti attivi","subscriptions_downgrade_rule_contacts_constraint":"Al momento hai 1 contatto<\/a>.|Al momento hai :count contatti<\/a>.","subscriptions_downgrade_rule_invitations":"Non devi avere alcun invito in attesa","subscriptions_downgrade_rule_invitations_constraint":"Correntemente hai 1 invito in attesa<\/a>.|Correntemente hai :count inviti in attesa<\/a>.","subscriptions_downgrade_rule_users":"Devi avere un solo utente nel tuo account","subscriptions_downgrade_rule_users_constraint":"Al momento hai 1 utente<\/a> nel tuo account.|Al momento hai :count utenti<\/a> nel tuo account.","subscriptions_downgrade_success":"Sei tornato al piano gratuito!","subscriptions_downgrade_thanks":"Grazie mille per aver provato il piano a pagamento. Continuiamo sempre ad aggiungere nuove funzionalit\u00e0 su Monica, quindi potresti voler tornare in futuro per vedere se potresti esser interessato ad abbonarti di nuovo.","subscriptions_downgrade_title":"Retrocedi il tuo piano a quello gratuito","subscriptions_help_change_desc":"Puoi annullare quando vuoi, senza spiegazioni, e puoi farlo da solo, non serve contattare il supporto. Tuttavia, non sarai rimborsato per il periodo corrente.","subscriptions_help_change_title":"Che succede se cambio idea?","subscriptions_help_discounts_desc":"S\u00ec! Monica \u00e8 gratuita per studenti, no-profit e organizzazioni di beneficienza. Basta contattare il supporto clienti<\/a> con una prova del tuo status, e aggiorneremo il tuo account.","subscriptions_help_discounts_title":"Avete sconti per organizzazioni no-profit e studenti?","subscriptions_help_limits_plan":"S\u00ec. Il piano gratuito ti permette di gestire :number contatti.","subscriptions_help_limits_title":"C'\u00e8 un limite al numero di contatti che posso avere sul piano gratuito?","subscriptions_help_opensource_desc":"Monica \u00e8 un progetto open source. Ci\u00f2 significa che \u00e8 costruito da una community che vuole costruire un buono strumento per il bene maggiore. Essere open source significa che il codice \u00e8 disponibile pubblicamente su GitHub e che tutti possono ispezionarlo, modificarlo o migliorarlo. Tutto il denaro che raccogliamo \u00e8 dedicato a costruire funzionalit\u00e0 migliori, pagare per server pi\u00f9 potenti e pagare altri costi. Grazie per il tuo aiuto. Non potremmo farlo senza di te.","subscriptions_help_opensource_title":"Cosa significa open source?","subscriptions_help_title":"Altri dettagli che potrebbero interessarti","subscriptions_payment_cancelled":"Questo pagamento \u00e8 stato annullato.","subscriptions_payment_cancelled_title":"Pagamento annullato","subscriptions_payment_confirm_information":"\u00c8 necessaria una conferma ulteriore per elaborare il pagamento. Conferma il pagamento compilando i dettagli di pagamento qui sotto.","subscriptions_payment_confirm_title":"Conferma il tuo pagamento per :amount","subscriptions_payment_error_name":"Per favore inserisci il tuo nome.","subscriptions_payment_succeeded":"Questo pagamento \u00e8 gi\u00e0 stato confermato con successo.","subscriptions_payment_succeeded_title":"Pagamento riuscito","subscriptions_payment_success":"Pagamento effettuato con successo.","subscriptions_pdf_title":"Sottoscrizione mensile a :name","subscriptions_plan_choose":"Scegli questo piano","subscriptions_plan_include1":"Incluso nell'abbonamento:","subscriptions_plan_include2":"Numero di contatti illimitato \u2022 Numero di utenti illimitato \u2022 Promemoria via email \u2022 Importazione da vCard \u2022 Personalizzazione della pagina dei contatti","subscriptions_plan_include3":"Il 100% dei profitti va nello sviluppo di questo progetto grande e open source.","subscriptions_plan_month_bonus":"Cancella in qualsiasi momento","subscriptions_plan_month_cost":"$5\/mese","subscriptions_plan_month_title":"Paga mensilmente","subscriptions_plan_year_bonus":"Nessun pensiero per un anno","subscriptions_plan_year_cost":"$45\/anno","subscriptions_plan_year_cost_save":"risparmi 25%","subscriptions_plan_year_title":"Paga annualmente","subscriptions_upgrade_charge":"Addebiteremo ora :price alla tua carta. Il prossimo addebito sar\u00e0 il :date. Se dovessi cambiare idea, potrai annullarlo in ogni momento, senza spiegazioni.","subscriptions_upgrade_charge_handled":"Il pagamento \u00e8 gestito da Stripe<\/a>. Nessuna informazione sulla tua carta arriva ai nostri server.","subscriptions_upgrade_choose":"Hai scelto il piano :plan.","subscriptions_upgrade_credit":"Carta di credito o debito","subscriptions_upgrade_infos":"Non potremmo essere pi\u00f9 felici. Inserisci le informazioni sul pagamento qui sotto.","subscriptions_upgrade_name":"Nome sulla carta","subscriptions_upgrade_submit":"Paga {amount}","subscriptions_upgrade_success":"Grazie! Adesso sei abbonato.","subscriptions_upgrade_thanks":"Benvenuto nella community di persone che tenta di migliorare il mondo.","subscriptions_upgrade_title":"Promuovi il tuo account","subscriptions_upgrade_zip":"CAP","tags_blank_description":"I tag funzionano come cartelle, ma puoi aggiungerne pi\u00f9 di uno a un contatto. Vai a un contatto e tagga un amico, proprio sotto al nome. Una volta taggato un contatto, torna qui per gestire tutti i tag nel tuo profilo.","tags_blank_title":"Le etichette sono un buon modo di organizzare i tuoi contatti.","tags_list_contact_number":"1 contatto|:count contatti","tags_list_delete_confirmation":"Rimuovere etichetta? Nessun contatto verr\u00e0 rimosso, solo l'etichetta.","tags_list_delete_success":"Etichetta rimossa","tags_list_description":"Puoi organizzare i tuoi contatti attraverso le etichette. Le etichette funzionano come delle cartelle, ma puoi aggiungere pi\u00f9 di un'etichetta a ogni contatto. Per aggiungere una nuova etichetta, aggiungila al contatto stesso.","tags_list_title":"Etichette","temperature_scale":"Unit\u00e0 temperatura","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Fuso orario","title_general":"Informazioni generali","title_i18n":"Impostazioni internazionali","title_layout":"Impaginazione","users_accept_title":"Accetta l'invito e crea un account","users_add_confirmation":"Confermo che voglio invitare quest'utente al mio profilo. Sono consapevole che questa persona avr\u00e0 accesso a TUTTI i miei dati e vedr\u00e0 esattamente ci\u00f2 che vedo.","users_add_cta":"Invita utente tramite email","users_add_description":"Questa persona avr\u00e0 il tuo stesso accesso, inclusi l'invito o l'eliminazione di altri utenti, tu incluso. Assicurati di avere fiducia in questa persona prima di dargli accesso.","users_add_email_field":"Inserisci l'email della persona che vuoi invitare","users_add_title":"Invita un nuovo utente al tuo profilo via email","users_blank_add_title":"Vuoi invitare qualcun altro ?","users_blank_cta":"Invita qualcuno","users_blank_description":"Questa persona avr\u00e0 il tuo stesso accesso, e potr\u00e0 aggiungere, modificare o rimuovere qualsiasi contatto.","users_blank_title":"Sei l'unica persona che ha accesso a questo account.","users_error_already_invited":"Hai gi\u00e0 invitato questo utente. Ti preghiamo di scegliere un'altro indirizzo email.","users_error_email_already_taken":"Questa email \u00e8 gi\u00e0 assegnata. Ti preghiamo di sceglierne un'altra","users_error_email_not_similar":"Questa non \u00e8 l'email della persona che ti ha invitato.","users_error_please_confirm":"Ti preghiamo di confermare di voler invitare questo utente prima di procedere","users_invitation_deleted_confirmation_message":"Invito rimosso","users_invitation_need_subscription":"Aggiungere altri utenti richiede una sottoscrizione.","users_invitations_delete_confirmation":"Rimuovere invito?","users_list_add_user":"Invita un nouvo utente","users_list_delete_confirmation":"Rimuovere questo utente dal tuo account?","users_list_invitations_explanation":"Qui sotto trovi gli inviti a Monica come collaboratori.","users_list_invitations_invited_by":"invitato da :name","users_list_invitations_sent_date":"il :date","users_list_invitations_title":"Inviti in attesa di risposta","users_list_title":"Utenti con accesso al tuo account","users_list_you":"Sei tu","webauthn_buttonAdvise":"Se la tua chiave ha un bottone, premilo.","webauthn_delete_confirmation":"Sei sicuro di voler cancellare questa chiave?","webauthn_delete_success":"Chiave eliminata","webauthn_enable_description":"Aggiungi una nuova chiave di sicurezza","webauthn_error_already_used":"Questa chiave \u00e8 gi\u00e0 registrata. Non \u00e8 necessario registrarla nuovamente.","webauthn_error_not_allowed":"L'operazione \u00e8 scaduta o non \u00e8 stata consentita.","webauthn_insertKey":"Inserisci la tua chiave di sicurezza.","webauthn_key_name":"Nome della chiave:","webauthn_key_name_help":"Dai un nome alla tua chiave.","webauthn_last_use":"Ultimo uso: {timestamp}","webauthn_noButtonAdvise":"Se non ce l'ha, rimuovila e reinseriscila.","webauthn_not_secured":"WebAuthn supporta solo connessioni sicure. Si prega di caricare questa pagina con lo schema https.","webauthn_not_supported":"Il tuo browser non supporta WebAuthn.","webauthn_success":"Chiave rilevata e confermata.","webauthn_title":"Chiave di sicurezza \u2014 Protocollo WebAuthn"},"validation":{"accepted":":attribute deve essere accettato.","active_url":":attribute non \u00e8 un URL valido.","after":":attribute deve essere una data successiva al :date.","after_or_equal":":attribute deve essere una data successiva o uguale al :date.","alpha":":attribute pu\u00f2 contenere solo lettere.","alpha_dash":":attribute pu\u00f2 contenere solo lettere, numeri e trattini.","alpha_num":":attribute pu\u00f2 contenere solo lettere e numeri.","array":":attribute deve essere un array.","attributes":[],"before":":attribute deve essere una data precedente al :date.","before_or_equal":":attribute deve essere una data precedente o uguale al :date.","between":{"array":":attribute deve avere tra :min - :max elementi.","file":":attribute deve trovarsi tra :min - :max kilobyte.","numeric":":attribute deve trovarsi tra :min - :max.","string":":attribute deve trovarsi tra :min - :max caratteri."},"boolean":"Il campo :attribute deve essere vero o falso.","confirmed":"Il campo di conferma per :attribute non coincide.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute non \u00e8 una data valida.","date_equals":":attribute deve essere una data e uguale a :date.","date_format":":attribute non coincide con il formato :format.","different":":attribute e :other devono essere differenti.","digits":":attribute deve essere di :digits cifre.","digits_between":":attribute deve essere tra :min e :max cifre.","dimensions":"Le dimensioni dell'immagine di :attribute non sono valide.","distinct":":attribute contiene un valore duplicato.","email":":attribute non \u00e8 valido.","ends_with":":attribute deve finire con uno dei seguenti valori: :values.","exists":":attribute selezionato non \u00e8 valido.","file":":attribute deve essere un file.","filled":"Il campo :attribute deve contenere un valore.","gt":{"array":":attribute deve contenere pi\u00f9 di :value elementi.","file":":attribute deve essere maggiore di :value kilobyte.","numeric":":attribute deve essere maggiore di :value.","string":":attribute deve contenere pi\u00f9 di :value caratteri."},"gte":{"array":":attribute deve contenere un numero di elementi uguale o maggiore di :value.","file":":attribute deve essere uguale o maggiore di :value kilobyte.","numeric":":attribute deve essere uguale o maggiore di :value.","string":":attribute deve contenere un numero di caratteri uguale o maggiore di :value."},"image":":attribute deve essere un'immagine.","in":":attribute selezionato non \u00e8 valido.","in_array":"Il valore del campo :attribute non esiste in :other.","integer":":attribute deve essere un numero intero.","ip":":attribute deve essere un indirizzo IP valido.","ipv4":":attribute deve essere un indirizzo IPv4 valido.","ipv6":":attribute deve essere un indirizzo IPv6 valido.","json":":attribute deve essere una stringa JSON valida.","lt":{"array":":attribute deve contenere meno di :value elementi.","file":":attribute deve essere minore di :value kilobyte.","numeric":":attribute deve essere minore di :value.","string":":attribute deve contenere meno di :value caratteri."},"lte":{"array":":attribute deve contenere un numero di elementi minore o uguale a :value.","file":":attribute deve essere minore o uguale a :value kilobyte.","numeric":":attribute deve essere minore o uguale a :value.","string":":attribute deve contenere un numero di caratteri minore o uguale a :value."},"max":{"array":":attribute non pu\u00f2 avere pi\u00f9 di :max elementi.","file":":attribute non pu\u00f2 essere superiore a :max kilobyte.","numeric":":attribute non pu\u00f2 essere superiore a :max.","string":":attribute non pu\u00f2 contenere pi\u00f9 di :max caratteri."},"mimes":":attribute deve essere del tipo: :values.","mimetypes":":attribute deve essere del tipo: :values.","min":{"array":":attribute deve avere almeno :min elementi.","file":":attribute deve essere almeno di :min kilobyte.","numeric":":attribute deve essere almeno :min.","string":":attribute deve contenere almeno :min caratteri."},"not_in":"Il valore selezionato per :attribute non \u00e8 valido.","not_regex":"Il formato di :attribute non \u00e8 valido.","numeric":":attribute deve essere un numero.","password":"La password non \u00e8 corretta.","present":"Il campo :attribute deve essere presente.","regex":"Il formato del campo :attribute non \u00e8 valido.","required":"Il campo :attribute \u00e8 richiesto.","required_if":"Il campo :attribute \u00e8 richiesto quando :other \u00e8 :value.","required_unless":"Il campo :attribute \u00e8 richiesto a meno che :other sia in :values.","required_with":"Il campo :attribute \u00e8 richiesto quando :values \u00e8 presente.","required_with_all":"Il campo :attribute \u00e8 richiesto quando :values sono presenti.","required_without":"Il campo :attribute \u00e8 richiesto quando :values non \u00e8 presente.","required_without_all":"Il campo :attribute \u00e8 richiesto quando nessuno di :values \u00e8 presente.","same":":attribute e :other devono coincidere.","size":{"array":":attribute deve contenere :size elementi.","file":":attribute deve essere :size kilobyte.","numeric":":attribute deve essere :size.","string":":attribute deve contenere :size caratteri."},"starts_with":":attribute deve iniziare con uno dei seguenti: :values.","string":":attribute deve essere una stringa.","timezone":":attribute deve essere una zona valida.","unique":":attribute \u00e8 stato gi\u00e0 utilizzato.","uploaded":":attribute non \u00e8 stato caricato.","url":"Il formato del campo :attribute non \u00e8 valido.","uuid":":attribute deve essere un UUID valido.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/ja.json b/public/js/langs/ja.json deleted file mode 100644 index 623b56b60da..00000000000 --- a/public/js/langs/ja.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"\u8ffd\u52a0","another_day":"another day","application_description":"Monica\uff08\u30e2\u30cb\u30ab\uff09\u306f\u3042\u306a\u305f\u306e\u4ea4\u6d41\u30fb\u5bb6\u65cf\u30fb\u53cb\u4eba\u306e\u60c5\u5831\u3092\u8a18\u9332\u3059\u308b\u30c4\u30fc\u30eb\u3067\u3059\u3002","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"\u623b\u308b","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"\u3069\u3046\u3084\u3063\u3066\u4f1a\u3044\u307e\u3057\u305f\u304b?","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"\u65e5\u8a18","breadcrumb_list_contacts":"\u9023\u7d61\u5148\u306e\u30ea\u30b9\u30c8","breadcrumb_profile":"\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb :name","breadcrumb_settings":"\u8a2d\u5b9a","breadcrumb_settings_export":"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8","breadcrumb_settings_import":"\u30a4\u30f3\u30dd\u30fc\u30c8","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"\u30bf\u30b0","breadcrumb_settings_users":"\u30e6\u30fc\u30b6\u30fc","breadcrumb_settings_users_add":"\u30e6\u30fc\u30b6\u30fc\u3092\u8ffd\u52a0","cancel":"\u30ad\u30e3\u30f3\u30bb\u30eb","close":"\u9589\u3058\u308b","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"\u78ba\u5b9a\u3059\u308b","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"\u30b3\u30d4\u30fc","create":"\u4f5c\u6210\u3059\u308b","date":"\u65e5\u4ed8","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"\u9023\u7d61\u5148","dav_contacts_description":":name\u2019s contacts","dav_tasks":"\u30bf\u30b9\u30af","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"\u524a\u9664","delete_confirm":"Are you sure?","done":"\u5b8c\u4e86","download":"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9","edit":"\u7de8\u96c6","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u306f\u3059\u3050\u306b\u7d42\u308f\u308a\u307e\u3059\u3002","error_id":"\u30a8\u30e9\u30fc ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"\u30b5\u30fc\u30d3\u30b9\u3092\u5229\u7528\u3067\u304d\u307e\u305b\u3093","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"\u30ea\u30b9\u30c8\u3092\u30d5\u30a3\u30eb\u30bf","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"\u65b0\u7740\u60c5\u5831","footer_new_version":"A new version of Monica is available","footer_newsletter":"\u30cb\u30e5\u30fc\u30b9\u30ec\u30bf\u30fc","footer_privacy":"\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc","footer_release":"\u66f4\u65b0\u60c5\u5831","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"\u30d0\u30fc\u30b8\u30e7\u30f3: :version","gender_female":"\u5973","gender_male":"\u7537","gender_no_gender":"\u6027\u5225\u7121\u3057","gender_none":"\u8a00\u3044\u305f\u304f\u306a\u3044","go_back":"\u623b\u308b","header_changelog_link":"\u6a5f\u80fd\u306e\u5909\u66f4","header_logout_link":"\u30ed\u30b0\u30a2\u30a6\u30c8","header_settings_link":"\u8a2d\u5b9a","load_more":"\u66f4\u306b\u8aad\u307f\u8fbc\u3080","loading":"Loading\u2026","main_nav_activities":"\u30a2\u30af\u30c6\u30d3\u30c6\u30a3","main_nav_cta":"\u4eba\u3092\u8ffd\u52a0\u3057\u307e\u3059","main_nav_dashboard":"\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9","main_nav_family":"\u9023\u7d61\u5148","main_nav_journal":"\u65e5\u8a18","main_nav_tasks":"\u30bf\u30b9\u30af","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8aad\u3080","new":"\u65b0\u898f","no":"\u3044\u3044\u3048","percent_uploaded":"{percent}% \u30a2\u30c3\u30d7\u30ed\u30fc\u30c9","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"\u540d\u4ed8\u3051\u89aa","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"\u5bb6\u65cf\u69cb\u6210","relationship_type_group_friend":"\u53cb\u4eba\u95a2\u4fc2","relationship_type_group_love":"\u604b\u4eba\u95a2\u4fc2","relationship_type_group_other":"\u305d\u306e\u4ed6\u306e\u4eba\u9593\u95a2\u4fc2","relationship_type_group_work":"\u4ed5\u4e8b\u95a2\u4fc2","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"\u604b\u4eba","relationship_type_lover_female":"\u604b\u4eba","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"\u7236","relationship_type_parent_female":"\u6bcd","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"\u914d\u5076\u8005","relationship_type_spouse_female":"\u914d\u5076\u8005","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"\u7fa9\u7236","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"\u524a\u9664\u3059\u308b","retry":"\u518d\u8a66\u884c","revoke":"\u53d6\u308a\u6d88\u3057","save":"\u4fdd\u5b58","save_close":"\u4fdd\u5b58\u3057\u3066\u9589\u3058\u308b","today":"\u4eca\u65e5","type":"\u30bf\u30a4\u30d7","unknown":"\u308f\u304b\u308a\u307e\u305b\u3093","update":"\u66f4\u65b0","upgrade":"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3057\u3066\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b","upload":"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9","verify":"\u691c\u8a3c","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"\u306f\u3044","yesterday":"\u6628\u65e5","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"\u8a00\u8a9e\u3092\u5207\u308a\u66ff\u3048\u308b","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"\u65b0\u3057\u3044E\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"\u8a8d\u8a3c\u60c5\u5831\u3068\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308a\u307e\u305b\u3093\u3002","login":"\u30ed\u30b0\u30a4\u30f3","login_again":"Please login again to your account","login_to_account":"\u8cb4\u65b9\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304f\u3060\u3055\u3044\u3002","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"\u30e1\u30fc\u30eb \u30a2\u30c9\u30ec\u30b9","password_reset_email_content":"Click here to reset your password:","password_reset_password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_reset_password_confirm":"\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u78ba\u8a8d","password_reset_send_link":"Send Password Reset Link","password_reset_title":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u30ea\u30bb\u30c3\u30c8","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"\u540d","register_firstname_example":"\u4f8b\uff1a\u30b8\u30e7\u30f3","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"\u59d3","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"\u30d1\u30b9\u30ef\u30fc\u30c9","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"\u30a2\u30ab\u30a6\u30f3\u30c8\u4f5c\u6210","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"\u65b0\u898f\u767b\u9332","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"\u30ed\u30b0\u30a4\u30f3\u306e\u8a66\u884c\u56de\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002:seconds \u79d2\u5f8c\u306b\u304a\u8a66\u3057\u304f\u3060\u3055\u3044\u3002","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"\u6a5f\u80fd\u306e\u5909\u66f4"},"dashboard":{"dashboard_blank_cta":"\u3068\u308a\u3042\u3048\u305a\u9023\u7d61\u5148\u3092\u8ffd\u52a0\u3059\u308b","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"\u3042\u306a\u305f\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u3088\u3046\u3053\u305d\uff01","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"\u6a5f\u80fd\u306e\u5909\u66f4","product_view_details":"\u8a73\u7d30\u3092\u8868\u793a","reminders_next_months":"3\u30f6\u6708\u4ee5\u5185\u306e\u30a4\u30d9\u30f3\u30c8","reminders_none":"\u4eca\u6708\u306e\u30ea\u30de\u30a4\u30f3\u30c0\u30fc\u306f\u3042\u308a\u307e\u305b\u3093.","statistics_activities":"Activities","statistics_contacts":"\u9023\u7d61\u5148","statistics_gifts":"\u30ae\u30d5\u30c8","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"\u6700\u8fd1\u306e\u901a\u8a71\uff1a","tab_tasks":"\u30bf\u30b9\u30af","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"\u3042\u306a\u305f\u306e\u30bf\u30b9\u30af"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"\u9023\u7d61\u3092\u53d6\u308b\u65b9\u6cd5","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"\u6b21 \u276f","previous":"\u276e \u524d"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3057\u305f\u3002","sent":"\u30d1\u30b9\u30ef\u30fc\u30c9\u30ea\u30de\u30a4\u30f3\u30c0\u30fc\u3092\u9001\u4fe1\u3057\u307e\u3057\u305f\u3002","throttled":"\u6642\u9593\u3092\u7f6e\u3044\u3066\u518d\u5ea6\u304a\u8a66\u3057\u304f\u3060\u3055\u3044\u3002","token":"\u3053\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u30ea\u30bb\u30c3\u30c8\u30c8\u30fc\u30af\u30f3\u306f\u7121\u52b9\u3067\u3059\u3002","user":"\u3053\u306e\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306b\u4e00\u81f4\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u51fa\u6765\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"\u30a2\u30d0\u30bf\u30fc\u3092\u5909\u66f4","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"\u56fd\u540d\uff08\u4efb\u610f\uff09","contact_address_form_latitude":"\u7def\u5ea6\uff08\u6570\u5b57\u306e\u307f\u3001\u4efb\u610f\uff09","contact_address_form_longitude":"\u7d4c\u5ea6\uff08\u6570\u5b57\u306e\u307f\u3001\u4efb\u610f\uff09","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"\u90f5\u4fbf\u756a\u53f7\uff08\u4efb\u610f\uff09","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"\u4f4f\u6240\uff1a","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"\u500b\u4eba\u8a2d\u5b9a","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"\u4f1a\u8a71","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"\u300c\u98df\u3079\u7269\u306e\u597d\u307f\u300d\u306f\u4fdd\u5b58\u3055\u308c\u307e\u3057\u305f\u3002","food_preferences_cta":"\u300c\u98df\u3079\u7269\u306e\u597d\u307f\u300d\u3092\u8ffd\u52a0\u3059\u308b","food_preferences_edit_cta":"\u300c\u98df\u3079\u7269\u306e\u597d\u307f\u300d\u3092\u4fdd\u5b58\u3059\u308b","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"\u300c\u98df\u3079\u7269\u306e\u597d\u307f\u300d\u3092\u8a18\u8ff0\u3059\u308b","food_preferences_title":"\u98df\u3079\u7269\u306e\u597d\u307f","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"\u30ae\u30d5\u30c8\u306e\u30a2\u30a4\u30c7\u30a2","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"\u30ae\u30d5\u30c8\u306e\u53d7\u3051\u53d6\u308a","gifts_title":"\u30ae\u30d5\u30c8","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"\u8a95\u751f\u65e5","information_edit_description":"\u8aac\u660e (\u4efb\u610f)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"\u751f\u5e74\u6708\u65e5\u304c\u5224\u660e\u3057\u3066\u3044\u307e\u3059","information_edit_firstname":"\u540d","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"\u8a95\u751f\u65e5\u3060\u3051\u5224\u660e\u3057\u3066\u3044\u307e\u3059","information_edit_probably":"\u304a\u305d\u3089\u304f\u5e74\u9f62\u306f\u2026","information_edit_success":"\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f","information_edit_title":":name \u306e\u500b\u4eba\u60c5\u5831\u306e\u7de8\u96c6","information_edit_unknown":"\u5e74\u9f62\u306f\u4e0d\u660e\u3067\u3059","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"\u51fa\u6765\u4e8b\u3092\u8ffd\u52a0\u3059\u308b","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"\u51fa\u6765\u4e8b\u3092\u8ffd\u52a0\u3059\u308b","life_event_list_tab_life_events":"\u51fa\u6765\u4e8b","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"\u51fa\u6765\u4e8b","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"\u3053\u308c\u306f\u3042\u306a\u305f\u3067\u3059\u3002","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"\u96fb\u8a71\u3092\u304b\u3051\u305f\u306e\u306f","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"\u8ffd\u52a0","people_add_firstname":"\u540d","people_add_gender":"\u6027\u5225","people_add_import":"\u9023\u7d61\u5148\u3092 \u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u307e\u3059\u304b<\/a>?","people_add_lastname":"\u59d3\uff08\u30aa\u30d7\u30b7\u30e7\u30f3\uff09","people_add_middlename":"\u30df\u30c9\u30eb\u30cd\u30fc\u30e0\uff08\u30aa\u30d7\u30b7\u30e7\u30f3\uff09","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"\u65b0\u3057\u304f\u4eba\u3092\u4f5c\u6210\u3059\u308b","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"\u9023\u7d61\u5148\u306e\u524a\u9664","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"\u9023\u7d61\u5148\u3092\u8ffd\u52a0\u3059\u308b","people_list_blank_title":"You don\u2019t have anyone in your account yet","people_list_clear_filter":"\u30d5\u30a3\u30eb\u30bf\u30fc\u3092\u89e3\u9664","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"\u540d\u524d\u3067\u30bd\u30fc\u30c8\uff08A\u2192Z\uff09","people_list_firstnameZA":"\u540d\u524d\u3067\u30bd\u30fc\u30c8\uff08Z\u2192A\uff09","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"\u59d3\u3067\u30bd\u30fc\u30c8\uff08A\u2192Z\uff09","people_list_lastnameZA":"\u59d3\u3067\u30bd\u30fc\u30c8\uff08Z\u2192A\uff09","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"\u4e26\u3079\u66ff\u3048","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"\u9023\u7d61\u5148\u3092\u691c\u7d22...","people_search_all":"All","people_search_next":"\u6b21","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"\u30da\u30fc\u30b8","people_search_prev":"\u524d\u3078","people_search_rows_per_page":"Rows per page","pets_bird":"\u9ce5","pets_cat":"\u732b","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"\u72ac","pets_fish":"\u9b5a","pets_hamster":"\u30cf\u30e0\u30b9\u30bf\u30fc","pets_horse":"\u99ac","pets_kind":"\u30da\u30c3\u30c8\u306e\u7a2e\u985e","pets_name":"Name (optional)","pets_other":"\u305d\u306e\u4ed6","pets_rabbit":"\u30a6\u30b5\u30ae","pets_rat":"\u30cd\u30ba\u30df","pets_reptile":"\u722c\u866b\u985e","pets_small_animal":"\u5c0f\u52d5\u7269","pets_title":"\u30da\u30c3\u30c8","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"\u5199\u771f\u3092\u524a\u9664","photo_list_blank_desc":"\u3053\u306e\u9023\u7d61\u5148\u30da\u30fc\u30b8\u306b\u5199\u771f\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002","photo_list_cta":"\u5199\u771f\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9","photo_list_title":"\u95a2\u9023\u3059\u308b\u5199\u771f","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"\u5199\u771f","photo_upload_zone_cta":"\u5199\u771f\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"\u95a2\u4fc2\u8005\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"\u9023\u7d61\u5148\u304b\u3089\u9078\u3076","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"\u65b0\u3057\u304f\u4eba\u3092\u4f5c\u6210\u3059\u308b","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"\u524a\u9664","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"\u30a2\u30af\u30c6\u30d3\u30c6\u30a3","section_personal_gifts":"\u30ae\u30d5\u30c8","section_personal_notes":"\u30ce\u30fc\u30c8","section_personal_reminders":"\u30ea\u30de\u30a4\u30f3\u30c0\u30fc","section_personal_tasks":"\u30bf\u30b9\u30af","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"\u30bf\u30b9\u30af\u306e\u8ffd\u52a0","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"\u8aac\u660e (\u4efb\u610f)","tasks_form_title":"Title","tasks_title":"\u30bf\u30b9\u30af","work_add_cta":"\u4ed5\u4e8b\u306e\u60c5\u5831\u3092\u66f4\u65b0\u3059\u308b","work_edit_company":"Company (optional)","work_edit_job":"\u8077\u696d\uff08\u4efb\u610f\uff09","work_edit_success":"Work information updated","work_edit_title":"\u66f4\u65b0\u3059\u308b :name \u306e\u8077\u696d","work_information":"\u4ed5\u4e8b"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"\u901a\u8ca8","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"\u540d","import_blank_cta":"vCard\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"\u9023\u7d61\u5148\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"\u59d3","layout":"\u30ec\u30a4\u30a2\u30a6\u30c8","layout_big":"\u30d6\u30e9\u30a6\u30b6\u306b\u5408\u308f\u305b\u308b","layout_small":"\u6a2a\u5e451200\u30d4\u30af\u30bb\u30eb","locale":"\u4f7f\u7528\u3059\u308b\u8a00\u8a9e","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"\u30c9\u30a4\u30c4\u8a9e","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"\u65e5\u672c\u8a9e","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"\u59d3\u3068\u540d\u306e\u4e26\u3073","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} \u306e\u9023\u7d61\u5148","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"\u30b9\u30c8\u30ec\u30fc\u30b8","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"\u30b9\u30c8\u30ec\u30fc\u30b8","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"\u30bf\u30a4\u30e0\u30be\u30fc\u30f3","title_general":"General Information","title_i18n":"International settings","title_layout":"\u30ec\u30a4\u30a2\u30a6\u30c8","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":":attribute\u3092\u627f\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","active_url":":attribute\u306f\u3001\u6709\u52b9\u306aURL\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","after":":attribute\u306b\u306f\u3001:date\u3088\u308a\u5f8c\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","after_or_equal":":attribute\u306b\u306f\u3001:date\u4ee5\u964d\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","alpha":":attribute\u306b\u306f\u3001\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c9\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002","alpha_dash":":attribute\u306b\u306f\u3001\u82f1\u6570\u5b57('A-Z','a-z','0-9')\u3068\u30cf\u30a4\u30d5\u30f3\u3068\u4e0b\u7dda('-','_')\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002","alpha_num":":attribute\u306b\u306f\u3001\u82f1\u6570\u5b57('A-Z','a-z','0-9')\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002","array":":attribute\u306b\u306f\u3001\u914d\u5217\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","attributes":[],"before":":attribute\u306b\u306f\u3001:date\u3088\u308a\u524d\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","before_or_equal":":attribute\u306b\u306f\u3001:date\u4ee5\u524d\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","between":{"array":":attribute\u306e\u9805\u76ee\u306f\u3001:min\u500b\u304b\u3089:max\u500b\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","file":":attribute\u306b\u306f\u3001:min KB\u304b\u3089:max KB\u307e\u3067\u306e\u30b5\u30a4\u30ba\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","numeric":":attribute\u306b\u306f\u3001:min\u304b\u3089\u3001:max\u307e\u3067\u306e\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","string":":attribute\u306f\u3001:min\u6587\u5b57\u304b\u3089:max\u6587\u5b57\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},"boolean":":attribute\u306b\u306f\u3001'true'\u304b'false'\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","confirmed":":attribute\u3068:attribute\u78ba\u8a8d\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute\u306f\u3001\u6b63\u3057\u3044\u65e5\u4ed8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","date_equals":":attribute\u306f:date\u306b\u7b49\u3057\u3044\u65e5\u4ed8\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","date_format":":attribute\u306e\u5f62\u5f0f\u306f\u3001':format'\u3068\u5408\u3044\u307e\u305b\u3093\u3002","different":":attribute\u3068:other\u306b\u306f\u3001\u7570\u306a\u308b\u3082\u306e\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","digits":":attribute\u306f\u3001:digits\u6841\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","digits_between":":attribute\u306f\u3001:min\u6841\u304b\u3089:max\u6841\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","dimensions":":attribute\u306e\u753b\u50cf\u30b5\u30a4\u30ba\u304c\u7121\u52b9\u3067\u3059","distinct":":attribute\u306e\u5024\u304c\u91cd\u8907\u3057\u3066\u3044\u307e\u3059\u3002","email":":attribute\u306f\u3001\u6709\u52b9\u306a\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","ends_with":":attribute\u306f\u3001\u6b21\u306e\u3046\u3061\u306e\u3044\u305a\u308c\u304b\u3067\u7d42\u308f\u3089\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002: :values","exists":"\u9078\u629e\u3055\u308c\u305f:attribute\u306f\u3001\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","file":":attribute\u306f\u30d5\u30a1\u30a4\u30eb\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093\u3002","filled":":attribute\u306f\u5fc5\u9808\u3067\u3059\u3002","gt":{"array":":attribute\u306e\u9805\u76ee\u6570\u306f\u3001:value\u500b\u3088\u308a\u5927\u304d\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","file":":attribute\u306f\u3001:value KB\u3088\u308a\u5927\u304d\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","numeric":":attribute\u306f\u3001:value\u3088\u308a\u5927\u304d\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","string":":attribute\u306f\u3001:value\u6587\u5b57\u3088\u308a\u5927\u304d\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},"gte":{"array":":attribute\u306e\u9805\u76ee\u6570\u306f\u3001:value\u500b\u4ee5\u4e0a\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","file":":attribute\u306f\u3001:value KB\u4ee5\u4e0a\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","numeric":":attribute\u306f\u3001:value\u4ee5\u4e0a\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","string":":attribute\u306f\u3001:value\u6587\u5b57\u4ee5\u4e0a\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},"image":":attribute\u306b\u306f\u3001\u753b\u50cf\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","in":"\u9078\u629e\u3055\u308c\u305f:attribute\u306f\u3001\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","in_array":":attribute\u304c:other\u306b\u5b58\u5728\u3057\u307e\u305b\u3093\u3002","integer":":attribute\u306b\u306f\u3001\u6574\u6570\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","ip":":attribute\u306b\u306f\u3001\u6709\u52b9\u306aIP\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","ipv4":":attribute\u306fIPv4\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","ipv6":":attribute\u306fIPv6\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","json":":attribute\u306b\u306f\u3001\u6709\u52b9\u306aJSON\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","lt":{"array":":attribute\u306e\u9805\u76ee\u6570\u306f\u3001:value\u500b\u3088\u308a\u5c0f\u3055\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","file":":attribute\u306f\u3001:value KB\u3088\u308a\u5c0f\u3055\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","numeric":":attribute\u306f\u3001:value\u3088\u308a\u5c0f\u3055\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","string":":attribute\u306f\u3001:value\u6587\u5b57\u3088\u308a\u5c0f\u3055\u304f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},"lte":{"array":":attribute\u306e\u9805\u76ee\u6570\u306f\u3001:value\u500b\u4ee5\u4e0b\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","file":":attribute\u306f\u3001:value KB\u4ee5\u4e0b\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","numeric":":attribute\u306f\u3001:value\u4ee5\u4e0b\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","string":":attribute\u306f\u3001:value\u6587\u5b57\u4ee5\u4e0b\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"},"max":{"array":":attribute\u306e\u9805\u76ee\u306f\u3001:max\u500b\u4ee5\u4e0b\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","file":":attribute\u306b\u306f\u3001:max KB\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","numeric":":attribute\u306b\u306f\u3001:max\u4ee5\u4e0b\u306e\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","string":":attribute\u306f\u3001:max\u6587\u5b57\u4ee5\u4e0b\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},"mimes":":attribute\u306b\u306f\u3001:values\u30bf\u30a4\u30d7\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","mimetypes":":attribute\u306b\u306f\u3001:values\u30bf\u30a4\u30d7\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","min":{"array":":attribute\u306e\u9805\u76ee\u306f\u3001:min\u500b\u4ee5\u4e0a\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","file":":attribute\u306b\u306f\u3001:min KB\u4ee5\u4e0a\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","numeric":":attribute\u306b\u306f\u3001:min\u4ee5\u4e0a\u306e\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","string":":attribute\u306f\u3001:min\u6587\u5b57\u4ee5\u4e0a\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},"not_in":"\u9078\u629e\u3055\u308c\u305f:attribute\u306f\u3001\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002","not_regex":":attribute\u306e\u5f62\u5f0f\u304c\u7121\u52b9\u3067\u3059\u3002","numeric":":attribute\u306b\u306f\u3001\u6570\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","password":"\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002","present":":attribute\u304c\u5b58\u5728\u3057\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002","regex":":attribute\u306b\u306f\u3001\u6709\u52b9\u306a\u6b63\u898f\u8868\u73fe\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","required":":attribute\u306f\u3001\u5fc5\u305a\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","required_if":":other\u304c:value\u306e\u5834\u5408\u3001:attribute\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","required_unless":":other\u304c:values\u4ee5\u5916\u306e\u5834\u5408\u3001:attribute\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","required_with":":values\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u3001:attribute\u3082\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","required_with_all":":values\u304c\u5168\u3066\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u3001:attribute\u3082\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","required_without":":values\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001:attribute\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","required_without_all":":values\u304c\u5168\u3066\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001:attribute\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","same":":attribute\u3068:other\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","size":{"array":":attribute\u306e\u9805\u76ee\u306f\u3001:size\u500b\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","file":":attribute\u306b\u306f\u3001:size KB\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","numeric":":attribute\u306b\u306f\u3001:size\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","string":":attribute\u306f\u3001:size\u6587\u5b57\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},"starts_with":":attribute\u306f\u3001\u6b21\u306e\u3044\u305a\u308c\u304b\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002:values","string":":attribute\u306b\u306f\u3001\u6587\u5b57\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","timezone":":attribute\u306b\u306f\u3001\u6709\u52b9\u306a\u30bf\u30a4\u30e0\u30be\u30fc\u30f3\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","unique":"\u6307\u5b9a\u306e:attribute\u306f\u65e2\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059\u3002","uploaded":":attribute\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","url":":attribute\u306f\u3001\u6709\u52b9\u306aURL\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002","uuid":":attribute\u306f\u3001\u6709\u52b9\u306aUUID\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/la.json b/public/js/langs/la.json deleted file mode 100644 index fe51488c706..00000000000 --- a/public/js/langs/la.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/public/js/langs/nl.json b/public/js/langs/nl.json deleted file mode 100644 index a90ac057ac6..00000000000 --- a/public/js/langs/nl.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Toevoegen","another_day":"een andere dag","application_description":"Monica is een app voor het beheren van interacties met uw geliefden, vrienden en familie.","application_og_title":"Heb betere relaties met je geliefden. Gratis online CRM voor familie en vrienden.","application_title":"Monica \u2013 persoonlijke relatie manager","back":"Terug","breadcrumb_add_note":"Notitie toevoegen","breadcrumb_add_significant_other":"Partner toevoegen","breadcrumb_api":"API","breadcrumb_archived_contacts":"Gearchiveerde contacten","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV-bronnen","breadcrumb_edit_introductions":"Hoe hebben jullie elkaar ontmoet","breadcrumb_edit_note":"Notitie bewerken","breadcrumb_edit_significant_other":"Partner bewerken","breadcrumb_journal":"Dagboek","breadcrumb_list_contacts":"Lijst van mensen","breadcrumb_profile":"Profiel van :name","breadcrumb_settings":"Instellingen","breadcrumb_settings_export":"Exporteren","breadcrumb_settings_import":"Importeren","breadcrumb_settings_import_report":"Importrapport","breadcrumb_settings_import_upload":"Uploaden","breadcrumb_settings_personalization":"Personalisatie","breadcrumb_settings_security":"Beveiliging","breadcrumb_settings_security_2fa":"Tweestapsverificatie","breadcrumb_settings_subscriptions":"Abonnement","breadcrumb_settings_tags":"Labels","breadcrumb_settings_users":"Gebruikers","breadcrumb_settings_users_add":"Gebruiker toevoegen","cancel":"Annuleren","close":"Sluiten","compliance_desc":"We hebben onze gebruiksvoorwaarden<\/a> en ons privacybeleid<\/a> aangepast. We zijn verplicht u te vragen deze opnieuw te lezen en goed te keuren, om je account te kunnen blijven gebruiken.","compliance_desc_end":"Wij doen niets vervelends met uw gegevens of account en zullen dit ook nooit doen.","compliance_terms":"Accepteer de nieuwe voorwaarden en privacybeleid","compliance_title":"Sorry voor de onderbreking.","confirm":"Bevestigen","contact_list_avatar":"Avatar","contact_list_description":"Beschrijving","contact_list_name":"Contact","copy":"Kopieer","create":"Maak","date":"Datum","dav_birthdays":"Verjaardagen","dav_birthdays_description":"Verjaardagen van de contacten van :name","dav_contacts":"Contacten","dav_contacts_description":"Contacten van :name","dav_tasks":"Taken","dav_tasks_description":"Taken van :name","default_save_success":"De gegevens zijn opgeslagen.","delete":"Verwijderen","delete_confirm":"Zeker weten?","done":"Gereed","download":"Download","edit":"Bewerken","emotion_adoration":"Aanbidding","emotion_affection":"Genegenheid","emotion_aggravation":"Vervelend","emotion_agitation":"Ge\u00ebrgerd","emotion_agony":"Pijn","emotion_alarm":"Geschrokken","emotion_alienation":"Vervreemding","emotion_amazement":"Verbazing","emotion_amusement":"Plezier","emotion_anger":"Boosheid","emotion_anguish":"Leed","emotion_annoyance":"Ergernis","emotion_anxiety":"Berzorgd","emotion_apprehension":"Vrees","emotion_arousal":"Opwinding","emotion_astonishment":"Verwonderd","emotion_attraction":"Aantrekking","emotion_bitterness":"Bitter","emotion_bliss":"Gelukzaligheid","emotion_caring":"Zorgzaamheid","emotion_cheerfulness":"Opgewekt","emotion_compassion":"Compassie","emotion_contempt":"Minachting","emotion_contentment":"Voldoening","emotion_defeat":"Verslagen","emotion_dejection":"Mismoedig","emotion_delight":"Verrukking","emotion_depression":"Depressief","emotion_desire":"Verlangen","emotion_despair":"Wanhoop","emotion_disappointment":"Teleurstellend","emotion_disgust":"Afschuw","emotion_dislike":"Aversie","emotion_dismay":"Verbijstering","emotion_displeasure":"Ongenoegen","emotion_distress":"Ontsteltenis","emotion_dread":"Doodsangst","emotion_eagerness":"Gretig","emotion_ecstasy":"Vervoering","emotion_elation":"Opgetogen","emotion_embarrassment":"Verlegenheid","emotion_enjoyment":"Genot","emotion_enthrallment":"Betoverend","emotion_enthusiasm":"Enthousiasme","emotion_envy":"Afgunst","emotion_euphoria":"Euforie","emotion_exasperation":"Wrevel","emotion_excitement":"Opwinding","emotion_exhilaration":"Opbeuring","emotion_fear":"Angst","emotion_ferocity":"Wreed","emotion_fondness":"Warmte","emotion_fright":"Vrees","emotion_frustration":"Frustratie","emotion_fury":"Razend","emotion_gaiety":"Pret","emotion_gladness":"Verheugd","emotion_glee":"Vrolijk","emotion_gloom":"Zwaarmoedig","emotion_glumness":"Mistroostig","emotion_grief":"Droevig","emotion_grouchiness":"Humeurig","emotion_grumpiness":"Mopperend","emotion_guilt":"Schuldig","emotion_happiness":"Blijdschap","emotion_hate":"Haat","emotion_homesickness":"Heimwee","emotion_hope":"Hoopvol","emotion_hopelessness":"Hopeloos","emotion_horror":"Afgrijzen","emotion_hostility":"Vijandig","emotion_humiliation":"Vernederd","emotion_hurt":"Kwelling","emotion_hysteria":"Hysterie","emotion_infatuation":"Bevlieging","emotion_insecurity":"Onzeker","emotion_insult":"Beledigd","emotion_irritation":"Irritatie","emotion_isolation":"Afzondering","emotion_jealousy":"Jaloezie","emotion_jolliness":"Jolig","emotion_joviality":"Joviaal","emotion_joy":"Vreugde","emotion_jubilation":"Vervoering","emotion_liking":"Voorliefde","emotion_loathing":"Afkeer","emotion_loneliness":"Eenzaam","emotion_longing":"Verlangen","emotion_love":"Liefde","emotion_lust":"Lust","emotion_melancholy":"Neerslachtig","emotion_misery":"Ellendig","emotion_mortification":"Gekrenkt","emotion_neglect":"Verwaarlozing","emotion_nervousness":"Nerveus","emotion_optimism":"Optimistisch","emotion_outrage":"Verbolgenheid","emotion_panic":"Paniek","emotion_passion":"Passie","emotion_pity":"Medelijden","emotion_pleasure":"Genoegen","emotion_pride":"Trots","emotion_primary_anger":"Boos","emotion_primary_fear":"Angst","emotion_primary_joy":"Blijdschap","emotion_primary_love":"Liefde","emotion_primary_sadness":"Verdriet","emotion_primary_surprise":"Verrast","emotion_rage":"Woede","emotion_rapture":"Extase","emotion_regret":"Spijt","emotion_rejection":"Verworpen","emotion_relief":"Opgelucht","emotion_remorse":"Wroeging","emotion_resentment":"Verontwaardiging","emotion_revulsion":"Walging","emotion_sadness":"Verdrietig","emotion_satisfaction":"Genoegen","emotion_scorn":"Verachting","emotion_secondary_affection":"Genegenheid","emotion_secondary_cheerfulness":"Opgewekt","emotion_secondary_contentment":"Tevreden","emotion_secondary_disappointment":"Teleurstelling","emotion_secondary_disgust":"Afschuw","emotion_secondary_enthrallment":"Betoverend","emotion_secondary_envy":"Afgunst","emotion_secondary_exasperation":"Wrevel","emotion_secondary_horror":"Afgrijzen","emotion_secondary_irritation":"Irritatie","emotion_secondary_longing":"Verlangen","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Verwaarloosd","emotion_secondary_nervousness":"Zenuwachtig","emotion_secondary_optimism":"Optimisme","emotion_secondary_pride":"Trots","emotion_secondary_rage":"Woedend","emotion_secondary_relief":"Opgelucht","emotion_secondary_sadness":"Verdriet","emotion_secondary_shame":"Schaamte","emotion_secondary_suffering":"Pijn","emotion_secondary_surprise":"Verrast","emotion_secondary_sympathy":"Meelevend","emotion_secondary_zest":"Vol vuur","emotion_sentimentality":"Sentimenteel","emotion_shame":"Schaamte","emotion_shock":"Geschokt","emotion_sorrow":"Rouw","emotion_spite":"Wrok","emotion_suffering":"Lijden","emotion_surprise":"Verrast","emotion_sympathy":"Meelevend","emotion_tenderness":"Tederheid","emotion_tenseness":"Gespannen","emotion_terror":"Verschrikking","emotion_thrill":"Sensatie","emotion_uneasiness":"Onbehaagelijk","emotion_unhappiness":"Ongelukkig","emotion_vengefulness":"Wraakzuchtig","emotion_woe":"Smart","emotion_worry":"Bezorgdheid","emotion_wrath":"Toorn","emotion_zeal":"Geestdrift","emotion_zest":"Vol vuur","error_help":"We zijn zo terug.","error_id":"Fout-ID: :id","error_maintenance":"Werkzaamheden zijn bezig. Een ogenblik graag.","error_no_term":"Er zijn nog geen voorwaarden opgesteld voor deze server.","error_save":"Er is een fout opgetreden bij het opslaan van de gegevens.","error_title":"Oeps! Er is iets misgegaan.","error_try_again":"Er ging iets mis. Probeer opnieuw.","error_twitter":"Volg ons op Twitter<\/a> als je gewaarschuwd wilt worden als we terug zijn.","error_unauthorized":"Je hebt niet de rechten om dit onderdeel te bewerken.","error_unavailable":"Service niet beschikbaar","error_user_account":"Deze gebruiker behoort niet tot het opgegeven account.","file_selected":"\u00c9\u00e9n bestand geselecteerd\u2026|{count} bestanden geselecteerd\u2026","filter":"Filter de lijst","footer_modal_version_release_away":"Je loopt 1 versie achter op de laatst beschikbare versie. Je zou je applicatie moeten bijwerken.|Je loopt :number versies achter op de laatst beschikbare versie. Je zou je applicatie moeten bijwerken.","footer_modal_version_whats_new":"Wat is er nieuw","footer_new_version":"Er is een nieuwe versie van Monica beschikbaar","footer_newsletter":"Nieuwsbrief","footer_privacy":"Privacybeleid","footer_release":"Releaseopmerkingen","footer_remarks":"Opmerkingen?","footer_send_email":"Stuur ons een e-mail","footer_source_code":"Bijdragen","footer_version":"Versie: :version","gender_female":"Vrouw","gender_male":"Man","gender_no_gender":"Geen geslacht","gender_none":"Zeg ik liever niet","go_back":"Terug","header_changelog_link":"Productwijzigingen","header_logout_link":"Uitloggen","header_settings_link":"Instellingen","load_more":"Meer laden","loading":"Laden\u2026","main_nav_activities":"Activiteiten","main_nav_cta":"Personen toevoegen","main_nav_dashboard":"Dashboard","main_nav_family":"Contacten","main_nav_journal":"Dagboek","main_nav_tasks":"Taken","markdown_description":"Wilt u uw tekst opmaken op een leuke manier? Wij ondersteunen Markdown om vet, cursief, lijsten en meer toe te voegen.","markdown_link":"Lees documentatie","new":"nieuw","no":"Nee","percent_uploaded":"{percent}% ge\u00fcpload","relationship_type_bestfriend":"beste vriend","relationship_type_bestfriend_female":"beste vriend","relationship_type_bestfriend_female_with_name":":name\u2019s beste vriend","relationship_type_bestfriend_with_name":":name\u2019s beste vriend","relationship_type_boss":"baas","relationship_type_boss_female":"baas","relationship_type_boss_female_with_name":":name\u2019s baas","relationship_type_boss_with_name":":name\u2019s baas","relationship_type_child":"zoon","relationship_type_child_female":"dochter","relationship_type_child_female_with_name":":name\u2019s dochter","relationship_type_child_with_name":":name\u2019s zoon","relationship_type_colleague":"collega","relationship_type_colleague_female":"collega","relationship_type_colleague_female_with_name":":name\u2019s collega","relationship_type_colleague_with_name":":name\u2019s collega","relationship_type_cousin":"neef","relationship_type_cousin_female":"neef","relationship_type_cousin_female_with_name":":name\u2019s neef","relationship_type_cousin_with_name":":name\u2019s neef","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name's date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-vriendje","relationship_type_ex_female":"ex-vriendin","relationship_type_ex_female_with_name":":name\u2019s ex-vriendinnetje","relationship_type_ex_husband":"ex-echtgenoot","relationship_type_ex_husband_female":"ex-vrouw","relationship_type_ex_husband_female_with_name":":name\u2019s ex-vrouw","relationship_type_ex_husband_with_name":":name\u2019s ex echtgenoot","relationship_type_ex_with_name":":name\u2019s ex-vriendje","relationship_type_friend":"vriend","relationship_type_friend_female":"vriend","relationship_type_friend_female_with_name":":name\u2019s vriend","relationship_type_friend_with_name":":name\u2019s vriend","relationship_type_godfather":"peetoom","relationship_type_godfather_female":"peet moeder","relationship_type_godfather_female_with_name":":name's peetmoeder","relationship_type_godfather_with_name":":name's peetvader","relationship_type_godson":"peetzoon","relationship_type_godson_female":"peetdochter","relationship_type_godson_female_with_name":":name's schoondochter","relationship_type_godson_with_name":":name's schoonzoon","relationship_type_grandchild":"kleinkind","relationship_type_grandchild_female":"kleinkind","relationship_type_grandchild_female_with_name":":name\u2019s kleinkind","relationship_type_grandchild_with_name":":name\u2019s kleinkind","relationship_type_grandparent":"grootouder","relationship_type_grandparent_female":"grootouder","relationship_type_grandparent_female_with_name":":name\u2019s grootouder","relationship_type_grandparent_with_name":":name\u2019s grootouder","relationship_type_group_family":"Familierelaties","relationship_type_group_friend":"Vriendschappen","relationship_type_group_love":"Liefdesrelaties","relationship_type_group_other":"Andere relaties","relationship_type_group_work":"Collega's","relationship_type_inlovewith":"verliefd op","relationship_type_inlovewith_female":"verliefd op","relationship_type_inlovewith_female_with_name":"iemand :name is verliefd op","relationship_type_inlovewith_with_name":"iemand :name is verliefd op","relationship_type_lovedby":"begeert door","relationship_type_lovedby_female":"begeert door","relationship_type_lovedby_female_with_name":":name\u2019s geheime minnaar","relationship_type_lovedby_with_name":":name\u2019s geheime minnaar","relationship_type_lover":"geliefde","relationship_type_lover_female":"geliefde","relationship_type_lover_female_with_name":":name\u2019s geliefde","relationship_type_lover_with_name":":name\u2019s geliefde","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"neef","relationship_type_nephew_female":"nicht","relationship_type_nephew_female_with_name":":name\u2019s nicht","relationship_type_nephew_with_name":":name\u2019s neef","relationship_type_parent":"vader","relationship_type_parent_female":"moeder","relationship_type_parent_female_with_name":":name\u2019s moeder","relationship_type_parent_with_name":":name\u2019s vader","relationship_type_partner":"partner","relationship_type_partner_female":"partner","relationship_type_partner_female_with_name":":name\u2019s partner","relationship_type_partner_with_name":":name's van partner","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name's protege","relationship_type_protege_with_name":":name's protege","relationship_type_sibling":"broer","relationship_type_sibling_female":"zus","relationship_type_sibling_female_with_name":":name\u2019s zus","relationship_type_sibling_with_name":":name\u2019s broer","relationship_type_spouse":"echtgenoot","relationship_type_spouse_female":"echtgenoot","relationship_type_spouse_female_with_name":":name\u2019s van echtgeno(o)t(e)","relationship_type_spouse_with_name":":name\u2019s van echtgeno(o)t(e)","relationship_type_stepchild":"stiefzoon","relationship_type_stepchild_female":"stiefdochter","relationship_type_stepchild_female_with_name":":name\u2019s stiefdochter","relationship_type_stepchild_with_name":":name\u2019s stiefzoon","relationship_type_stepparent":"stiefvader","relationship_type_stepparent_female":"stiefmoeder","relationship_type_stepparent_female_with_name":":name\u2019s stiefmoeder","relationship_type_stepparent_with_name":":name\u2019s stiefvader","relationship_type_subordinate":"ondergeschikte","relationship_type_subordinate_female":"ondergeschikte","relationship_type_subordinate_female_with_name":":name\u2019s ondergeschikte","relationship_type_subordinate_with_name":":name\u2019s ondergeschikte","relationship_type_uncle":"oom","relationship_type_uncle_female":"tante","relationship_type_uncle_female_with_name":":name\u2019s tante","relationship_type_uncle_with_name":":name\u2019s oom","remove":"Verwijderen","retry":"Opnieuw Proberen","revoke":"Intrekken","save":"Opslaan","save_close":"Opslaan & sluiten","today":"vandaag","type":"Soort","unknown":"Ik weet het niet","update":"Bijwerken","upgrade":"Upgrade om te ontgrendelen","upload":"Uploaden","verify":"Bevestigen","weather_clear-day":"Heldere dag","weather_clear-night":"Heldere nacht","weather_cloudy":"Bewolkt","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Huidig weer","weather_fog":"Mist","weather_partly-cloudy-day":"Halfbewolkte dag","weather_partly-cloudy-night":"Halfbewolkte nacht","weather_rain":"Regen","weather_sleet":"Natte sneeuw","weather_snow":"Sneeuw","weather_wind":"Wind","with":"met","yes":"Ja","yesterday":"gisteren","zoom":"Inzoomen"},"auth":{"2fa_one_time_password":"Tweestapsverificatiecode","2fa_otp_help":"Open je tweestapsverificatiecode-app en kopieer de code","2fa_recuperation_code":"Voer een tweestapsverificatiecode in","2fa_title":"Tweestapsverificatie","2fa_wrong_validation":"De tweestapsverificatie is mislukt.","back_homepage":"Terug naar homepage","button_remember":"Onthoud Mij","change_language":"Verander taal naar :lang","change_language_title":"Verander taal:","confirmation_again":"Als je jouw e-mailadres wilt wijzigen kun je hier klikken<\/a>.","confirmation_check":"Voordat je verdergaat, controleer alsjeblieft je e-mail voor een verificatie e-mail.","confirmation_fresh":"Een nieuwe verificatie e-mail is verstuurd naar jouw e-mailadres.","confirmation_request_another":"Heb je de e-mail niet ontvangen? Klik hier om er nog een te sturen.<\/a>","confirmation_title":"Verifieer je e-mailadres","create_account":"Maak het eerste account aan door je te registreren<\/a>","email":"E-mail","email_change_current_email":"Huidige e-mailadres:","email_change_new":"Nieuw e-mailadres","email_change_title":"E-mailadres wijzigen","email_changed":"Je e-mailadres is gewijzigd. Kijk in je inbox om het te bevestigen.","failed":"Deze gegevens zijn niet correct.","login":"Aanmelden","login_again":"Gelieve nogmaals in te loggen op je account","login_to_account":"Inloggen op je account","login_with_recovery":"Inloggen met een herstelcode","mfa_auth_otp":"Verifieer met je tweestapsverificatie apparaat","mfa_auth_webauthn":"Authenticeer met een beveiligingssleutel (WebAuthn)","not_authorized":"Je bent niet gemachtigd om dit te doen","password":"Wachtwoord","password_forget":"Wachtwoord vergeten?","password_reset":"Wachtwoord resetten","password_reset_action":"Wachtwoord resetten","password_reset_email":"E-mailadres","password_reset_email_content":"Klik hier om je wachtwoord te resetten:","password_reset_password":"Wachtwoord","password_reset_password_confirm":"Bevestig wachtwoord","password_reset_send_link":"Stuur een wachtwoord reset link","password_reset_title":"Wachtwoord resetten","recovery":"Herstelcode","register_action":"Registreren","register_create_account":"Je moet een account aanmaken om Monica te kunnen gebruiken","register_email":"Voor een geldig e-mailadres in","register_email_example":"jij@jouwdomein","register_firstname":"Voornaam","register_firstname_example":"bv. Simone","register_invitation_email":"Wegens beveiligingsdoeleinden vragen wij je om het e-mailadres op te geven van de persoon die je heeft uitgenodigd voor dit account. Deze informatie staat in de uitnodigingse-mail.","register_lastname":"Achternaam","register_lastname_example":"bv. Schutterman","register_login":"Inloggen<\/a> als je al een account hebt.","register_password":"Wachtwoord","register_password_confirmation":"Wachtwoordbevestiging","register_password_example":"Voer een veilig wachtwoord in","register_policy":"Door te registreren bevestig je dat je ons Privacybeleid<\/a> en onze Algemene Voorwaarden<\/a> hebt gelezen en daarmee akkoord bent.","register_title_create":"Maak jouw Monica account aan","register_title_welcome":"Welkom bij je nieuwe Monica-installatie","signup":"Registreren","signup_disabled":"Registratie is momenteel uitgeschakeld","signup_error":"Er is een fout opgetreden bij het registreren van de gebruiker","signup_no_account":"Heb je nog geen account?","throttle":"Te veel inlogpogingen. Probeer opnieuw in :seconds seconden.","use_recovery":"Of je kan een herstelcode<\/a> gebruiken"},"changelog":{"note":"Opmerking: Helaas, deze pagina is alleen beschikbaar in het Engels.","title":"Productwijzigingen"},"dashboard":{"dashboard_blank_cta":"Voeg je eerste contact toe","dashboard_blank_description":"Monica is de plaats om alle interacties met de mensen waar je om geeft te organiseren.","dashboard_blank_illustration":"Illustratie door Freepik<\/a>","dashboard_blank_title":"Welkom bij jouw account!","debts_you_owe":"U bent verschuldigd","notes_title":"Je hebt nog geen notities met een ster.","product_changes":"Productwijzigingen","product_view_details":"Details weergeven","reminders_next_months":"Gebeurtenissen de komende 3 maanden","reminders_none":"Geen herinnering voor deze maand.","statistics_activities":"Activiteiten","statistics_contacts":"Contacten","statistics_gifts":"Cadeaus","tab_calls_blank":"Je hebt nog geen oproepen opgeslagen.","tab_debts":"Schulden","tab_debts_blank":"Je hebt nog geen schulden opgegeven.","tab_favorite_notes":"Favoriete notities","tab_recent_calls":"Recente oproepen","tab_tasks":"Taken","tab_tasks_blank":"Je hebt nog geen taken.","task_add_cta":"Taak toevoegen","tasks_add_note":"Druk op Enter<\/kbd> om de taak toe te voegen.","tasks_add_task_placeholder":"Waar gaat deze taak over?","tasks_tab_your_contacts":"Taken met betrekking tot je contacten","tasks_tab_your_tasks":"Jouw taken"},"format":{"full_date_year":"d M Y","full_hour":"H:i","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M Y","short_date_year_time":"d M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Weet je zeker dat je deze dagboek-invoer wilt verwijderen?","entry_delete_success":"De dagboek-invoer is succesvol verwijderd.","journal_add":"Voeg een dagboek-invoer toe","journal_add_comment":"Wil je een (optionele) opmerking toevoegen?","journal_add_cta":"Opslaan","journal_add_date":"Datum","journal_add_post":"Invoer","journal_add_title":"Titel (optioneel)","journal_blank_cta":"Voeg je eerst dagboek-invoer toe","journal_blank_description":"Het dagboek laat je gebeurtenissen registreren, zodat je ze kunt onthouden.","journal_come_back":"Bedankt. Kom morgen terug om je dag opnieuw te beoordelen.","journal_created_at":"Aangemaakt op {date}","journal_created_automatically":"Automatisch aangemaakt","journal_description":"Opmerking: het dagboek toont zowel handmatige invoeren als automatische berichten, zoals Activiteiten die je gedaan hebt met je contacten. Je kunt dagboek-invoeren handmatig wissen, maar Activiteiten kunnen alleen op de contact pagina verwijderd worden.","journal_edit":"Bewerk dagboek-invoer","journal_empty":"Leeg dagboek","journal_entry_rate":"Je hebt je dag beoordeeld.","journal_entry_type_activity":"Activiteit","journal_entry_type_journal":"Dagboek-invoer","journal_rate":"Hoe was je dag? Je kunt hem eens per dag beoordelen.","journal_show_comment":"Toon opmerking"},"logs":{"contact_log_contact_created":"Contact is aangemaakt.","contact_log_contact_description_cleared":"De beschrijving is gewist.","contact_log_contact_description_updated":"Beschrijving ge\u00fcpdatet.","contact_log_contact_work_updated":"Werkinformatie bijgewerkt.","settings_log_company_created":"Bedrijf genaamd :name aangemaakt.","settings_log_contact_created_with_name":":name is toegevoegd als contact.","settings_log_contact_description_cleared_with_name":"De beschrijving van :name is gewist.","settings_log_contact_description_updated_with_name":"Beschrijving van :name ge\u00fcpdatet.","settings_log_contact_work_updated_with_name":"Werkinformatie van :name ge\u00fcpdatet."},"mail":{"comment":"Opmerking: :comment","confirmation_email_bottom":"Als je geen account hebt gemaakt, kun je deze email negeren.","confirmation_email_button":"Verifieer het e-mailadres","confirmation_email_intro":"Klik op de knop hieronder om je e-mailadres te valideren","confirmation_email_title":"Monica \u2013 E-mailverificatie","footer_contact_info":"Toevoegen, bekijken, afmaken en aanpassen van information over dit contact:","footer_contact_info2":"Bekijk :name's profiel","footer_contact_info2_link":"Zie :name's profiel: :url","for":"Voor: :name","greetings":"Hi :username","invitation_button":"Uitnodiging accepteren","invitation_expiration":"Deze link verloopt over :count dagen.","invitation_intro":"Je bent door :name (:email) uitgenodigd voor Monica, een handige Personal Relationship Management webapp.","invitation_link":"Klik op de onderstaande link om de uitnodiging te accepteren:","invitation_title":"Monica \u2013 Je bent uitgenodigd door :name","notification_description":"Over :count dagen (op :date), zal de volgende gebeurtenis plaatsvinden:","notification_subject_line":"Je hebt een aankomende gebeurtenis","notifications_footer":"Kopieer en plak de volgende URL in je browser als de \":actionText\" knop niet werkt: [:actionURL](:actionURL)","notifications_hello":"Hallo!","notifications_regards":"Met vriendelijke groet","notifications_rights":"Alle rechten voorbehouden","notifications_whoops":"Oeps!","password_reset_bottom":"Als je ons niet hebt verzocht om je wachtwoord te herstellen, kun je deze e-mail negeren.","password_reset_button":"Herstel wachtwoord","password_reset_expiration":"Deze link verloopt over :count minuten.","password_reset_intro":"Je ontvangt deze e-mail omdat we een verzoek hebben ontvangen om het wachtwoord van je account te herstellen.","password_reset_title":"Monica \u2013 Wachtwoord Herstellen","stay_in_touch_subject_description":"Je hebt gevraagd om in contact te blijven met :name elke :frequency dag.| Je hebt gevraagd om in contact te blijven met :name elke :frequency dagen.","stay_in_touch_subject_line":"Blijf in contact met :name","subject_line":"Herinnering voor :contact","want_reminded_of":"Je wilde herinnerd worden aan :reason"},"pagination":{"next":"Volgende \u276f","previous":"\u276e Vorige"},"passwords":{"changed":"Wachtwoord succesvol gewijzigd.","invalid":"Het ingevoerde wachtwoord is niet correct.","reset":"Je wachtwoord is gereset!","sent":"We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.","throttled":"Wacht alsjeblieft even voor je het opnieuw probeert.","token":"Deze wachtwoord reset token is ongeldig.","user":"Geen gebruiker bekend met het e-mailadres."},"people":{"activities_activity":"Activiteit categorie","activities_add_activity":"Voeg activiteit toe","activities_add_category":"Categorie toevoegen","activities_add_date_occured":"De activiteit vond plaats op...","activities_add_emotions":"Voeg emoties toe","activities_add_emotions_title":"Wil je opslaan hoe je je voelde tijdens deze activiteit? (optioneel)","activities_add_error":"Fout bij toevoegen van activiteit","activities_add_more_details":"Voeg meer details toe","activities_add_participants":"Wie nam, naast {name}, nog meer deel aan deze activiteit? (optioneel)","activities_add_participants_cta":"Deelnemers toevoegen","activities_add_pick_activity":"(Optioneel) Wil je deze activiteit categoriseren? Dat hoeft niet, maar het kan je later statistieken opleveren","activities_add_success":"De activiteit is met succes toegevoegd","activities_add_title":"Wat heb je met {name} gedaan?","activities_blank_add_activity":"Voeg activiteit toe","activities_blank_title":"Hou bij wat je samen met {name} gedaan hebt en waarover jullie gesproken hebben","activities_delete_success":"Deze activiteit is succesvol verwijdert","activities_item_information":"Deze :activity was op :date","activities_list_category":"Categorie:","activities_list_date":"Vond plaats op","activities_list_emotions":"Gevoelde emoties:","activities_list_participants":"Deelnemers:","activities_profile_number_occurences":":value activiteit|:value activiteiten","activities_profile_subtitle":"Je hebt, tot nu toe, in totaal :total_activities activiteit met :name vastgelegd, waarvan :activities_last_twelve_months in de afgelopen twaalf maanden.|Je hebt, tot nu toe, in totaal :total_activities activiteiten met :name vastgelegd, waarvan :activities_last_twelve_months in de afgelopen twaalf maanden.","activities_profile_title":"Activiteiten rapport voor :name","activities_profile_year_summary":"Dit is wat jullie samen hebben gedaan in :year","activities_profile_year_summary_activity_types":"Hier is een overzicht van de soort activiteiten die jullie samen hebben gedaan in :year","activities_summary":"Beschrijf wat je deed","activities_update_success":"Deze activiteit is succesvol bijgewerkt","activities_view_activities_report":"Bekijk activiteiten rapport","activities_who_was_involved":"Wie was erbij?","activity_title":"Activiteiten","activity_type_ate_at_his_place":"bij hun gegeten","activity_type_ate_at_home":"thuis gegeten","activity_type_ate_restaurant":"naar een restaurant gegaan","activity_type_category_cultural_activities":"Culturele activiteiten","activity_type_category_food":"Eten","activity_type_category_simple_activities":"Eenvoudige activiteiten","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"samen gesport","activity_type_just_hung_out":"gewoon een beetje gehangen","activity_type_picnicked":"gepicknickt","activity_type_talked_at_home":"thuis gekletst","activity_type_watched_movie_at_home":"thuis een film gekeken","activity_type_went_bar":"naar een bar gegaan","activity_type_went_concert":"naar een concert gegaan","activity_type_went_museum":"naar het museum gegaan","activity_type_went_play":"naar een toneelstuk gegaan","activity_type_went_theater":"naar het theater gegaan","age_approximate_in_years":"ongeveer :age jaren oud","age_exact_birthdate":"geboren op :date","age_exact_in_years":":age jaren oud","auditlogs_author":"Door :name op :date","auditlogs_breadcrumb":"Geschiedenis","auditlogs_link":"Geschiedenis","auditlogs_title":"Alles wat er met :name is gebeurd","avatar_adorable_avatar":"De Schattige avatar","avatar_change_title":"Wijzig je profielfoto","avatar_crop_new_avatar_photo":"Snij nieuwe avatar foto bij","avatar_current":"Huidige avatar houden","avatar_default_avatar":"De standaard-avatar","avatar_gravatar":"The Gravatar dat geassocieerd is met dit contact. Gravatar<\/a> is een wereldwijd systeem dat gebruikers hun emailadres laat associ\u00ebren met hun foto's.","avatar_photo":"Van een foto die je upload","avatar_question":"Welke avatar wil je gebruiken?","birthdate_not_set":"Geen verjaardag toegevoegd","call_blank_desc":"Jij hebt {name} gebeld","call_blank_title":"Hou de telefoongesprekken bij die je met {name} hebt gevoerd","call_button":"Telefoongesprek registreren","call_delete_confirmation":"Weet je zeker dat je deze oproep wil wissen?","call_delete_success":"Deze oproep is succesvol verwijderd","call_emotions":"Emoties:","call_empty_comment":"Geen details","call_he_called":"{name} belde","call_title":"Telefoongesprekken","call_you_called":"Jij belde","calls_add_success":"Het telefoongesprek is opgeslagen.","contact_address_form_city":"Stad (optioneel)","contact_address_form_country":"Land (optioneel)","contact_address_form_latitude":"Breedtegraad (alleen cijfers) (optioneel)","contact_address_form_longitude":"Lengtegraad (alleen cijfers) (optioneel)","contact_address_form_name":"Label (optioneel)","contact_address_form_postal_code":"Postcode (optioneel)","contact_address_form_province":"Provincie (optioneel)","contact_address_form_street":"Straat (optioneel)","contact_address_title":"Adressen","contact_archive":"Archiveer contact","contact_archive_help":"Gearchiveerde contacten worden niet getoond in de lijst met contactpersonen, maar worden wel weergegeven in zoekresultaten.","contact_field_label_cell":"Mobiel","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Algemeen","contact_field_label_other":"Ander","contact_field_label_pager":"Pieper","contact_field_label_personal":"Persoonlijk","contact_field_label_work":"Werk","contact_info_address":"Woont in","contact_info_form_contact_type":"Contactsoort","contact_info_form_content":"Inhoud","contact_info_form_personalize":"Personaliseer","contact_info_title":"Contactinformatie","contact_unarchive":"Dearchiveer contact","conversation_add_another":"Nog een bericht toevoegen","conversation_add_content":"Schrijf hier wat er is gezegd","conversation_add_error":"Je moet tenminste \u00e9\u00e9n bericht toevoegen.","conversation_add_how":"Hoe heb je dit gesprek gevoerd?","conversation_add_success":"Het gesprek is succesvol toegevoegd.","conversation_add_title":"Nieuw gesprek registreren","conversation_add_what_was_said":"Wat was de gespreksinhoud?","conversation_add_when":"Wanneer heb je dit gesprek gehad?","conversation_add_who_wrote":"Wie stuurde dit bericht?","conversation_add_you":"Jij","conversation_blank":"Hou de gesprekken bij die je hebt gehad met :name op sociale media, SMS, etc...","conversation_delete_link":"Verwijder het gesprek","conversation_delete_success":"Het gesprek is succesvol verwijderd.","conversation_edit_delete":"Weet je zeker dat je dit gesprek wil verwijderen? Het wordt definitief verwijderd.","conversation_edit_success":"Het gesprek is succesvol bijgewerkt.","conversation_edit_title":"Gesprek bewerken","conversation_list_cta":"Gesprek toevoegen","conversation_list_table_content":"Gedeeltelijke inhoud (laatste bericht)","conversation_list_table_messages":"Berichten","conversation_list_title":"Gesprekken","debt_add_add_cta":"Schuld toevoegen","debt_add_amount":"een totaal van","debt_add_cta":"Schuld toevoegen","debt_add_reason":"om de volgende reden (optioneel)","debt_add_success":"De schuld is succesvol toegevoegd","debt_add_they_owe":":name is jou verschuldigd","debt_add_title":"Schuldenbeheer","debt_add_you_owe":"Je bent :name verschuldigd","debt_delete_confirmation":"Weet je zeker dat je deze schuld wil verwijderen?","debt_delete_success":"De schuld is succesvol verwijderd","debt_edit_success":"De schuld is succesvol bijgewerkt","debt_edit_update_cta":"Schuld bijwerken","debt_they_owe":":name verschuldigd jou :amount","debt_title":"Schulden","debt_you_owe":"Jij verschuldigd :amount","debts_blank_title":"Beheer schulden die je bent verschuldigd aan :name of :name jou is verschuldigd","deceased_add_reminder":"Stel een herinnering in voor de sterfdag","deceased_age":"Leeftijd bij overlijden","deceased_date_label":"Datum van overlijden","deceased_know_date":"Ik weet de datum waarop dit persoon is overleden","deceased_label":"Overleden","deceased_label_with_date":"Overleden op :date","deceased_mark_person_deceased":"Deze persoon als overleden markeren","deceased_reminder_title":"Sterfdag van :name","document_list_blank_desc":"Hier kan je documenten opslaan gerelateerd aan deze persoon.","document_list_cta":"Document uploaden","document_list_title":"Documenten","document_upload_zone_cta":"Bestand uploaden","document_upload_zone_error":"Er is een fout opgetreden tijdens uploaden van het document, probeer het a.u.b. opnieuw.","document_upload_zone_progress":"Het document wordt ge\u00fcpload...","edit_contact_information":"Bewerk contactinformatie","emotion_this_made_me_feel":"Je voelde je\u2026","food_preferences_add_success":"Voedsel voorkeuren zijn opgeslagen","food_preferences_cta":"Voeg voedsel voorkeur toe","food_preferences_edit_cta":"Voedselvoorkeuren opslaan","food_preferences_edit_description":"Misschien heeft :firstname of iemand in de :familiy's familie een allergie. Of houdt niet van een specifieke fles wijn. Vul dat hier in zodat je er bij een volgend diner aan denkt","food_preferences_edit_description_no_last_name":"Misschien heeft :firstname een allergie. Of houdt niet van een specifieke fles wijn. Vul dat hier in zodat je er bij een volgend diner aan denkt","food_preferences_edit_title":"Voedselvoorkeuren","food_preferences_title":"Voedselvoorkeuren","gifts_add_comment":"Opmerking (optioneel)","gifts_add_date":"Datum (optioneel)","gifts_add_gift":"Cadeau toevoegen","gifts_add_gift_already_offered":"Cadeau aangeboden","gifts_add_gift_idea":"Cadeau idee","gifts_add_gift_name":"Titel cadeau","gifts_add_gift_received":"Cadeau ontvangen","gifts_add_gift_title":"Wat is dit voor een cadeau?","gifts_add_link":"Link naar de webpagina (optioneel)","gifts_add_photo":"Foto (optioneel)","gifts_add_photo_title":"Voeg een foto toe aan dit cadeau","gifts_add_recipient":"Ontvanger (optioneel)","gifts_add_recipient_field":"Ontvanger","gifts_add_someone":"Dit cadeau is voor iemand in {name}'s familie","gifts_add_success":"Het cadeau is succesvol toegevoegd","gifts_add_title":"Cadeaubeheer voor :name","gifts_add_value":"Waarde (optioneel)","gifts_delete_confirmation":"Weet je zeker dat je dit cadeau wil verwijderen?","gifts_delete_cta":"Verwijderen","gifts_delete_success":"Het cadeau is succesvol verwijderd","gifts_delete_title":"Een cadeau verwijderen","gifts_for":"Voor: {name}","gifts_ideas":"Cadeau-idee\u00ebn","gifts_link":"Link","gifts_mark_offered":"Als aangeboden markeren","gifts_offered":"Cadeau aangeboden","gifts_offered_as_an_idea":"Als idee markeren","gifts_received":"Ontvangen cadeaus","gifts_title":"Cadeaus","gifts_update_success":"Het cadeau is succesvol bijgewerkt","gifts_view_comment":"Opmerking bekijken","information_edit_birthdate_label":"Geboortedatum","information_edit_description":"Beschrijving (optioneel)","information_edit_description_help":"Dit wordt gebruikt in de contactenlijst om context toe te voegen, indien nodig.","information_edit_exact":"Ik weet de exacte geboortedatum van deze persoon...","information_edit_firstname":"Voornaam","information_edit_lastname":"Achternaam (optioneel)","information_edit_max_size":"Maximaal :size Kb.","information_edit_max_size2":"Maximaal {size} Kb.","information_edit_not_year":"Ik weet de dag en de maand van de geboortedatum van deze persoon, maar niet het jaar\u2026","information_edit_probably":"Deze persoon is waarschijnlijk...","information_edit_success":"Het profiel is succesvol bijgewerkt","information_edit_title":"Bewerk :name's persoonlijke informatie","information_edit_unknown":"Ik weet de leeftijd van deze persoon niet","information_no_work_defined":"Geen werkgegevens gedefinieerd","information_work_at":"bij :company","introductions_add_reminder":"Voeg een herinnering toe voor het jubileum van deze ontmoeting","introductions_additional_info":"Leg uit hoe en waar jullie elkaar hebben ontmoet","introductions_blank_cta":"Geef aan hoe je :name hebt ontmoet","introductions_edit_met_through":"Heeft iemand je voorgesteld?","introductions_first_met_date":"Datum eerste ontmoeting","introductions_first_met_date_known":"Dit is de datum dat wij elkaar ontmoet hebben","introductions_met_date":"Ontmoet op :date","introductions_met_through":"Voorgesteld door :name<\/a>","introductions_no_first_met_date":"Ik weet meer wanneer wij elkaar voor het eerst ontmoet hebben","introductions_no_met_through":"Niemand","introductions_reminder_title":"Jubileum van jullie eerste ontmoeting","introductions_sidebar_title":"Hoe jullie elkaar ontmoet hebben","introductions_title_edit":"Hoe heb je :name leren kennen?","introductions_update_success":"Eerste ontmoeting is succesvol bijgewerkt","last_activity_date":"Laatste activiteit samen: :date","last_activity_date_empty":"Laatste activiteit samen: onbekend","last_called":"Laatst gebeld op: :date","last_called_empty":"Laatst gebeld op: onbekend","life_event_blank":"Leg vast wat er in het leven van {name} gebeurd voor toekomstige referentie.","life_event_category_family_relationships":"Familie & relaties","life_event_category_health_wellness":"Gezondheid & welzijn","life_event_category_home_living":"Thuis & leven","life_event_category_travel_experiences":"Reizen & ervaringen","life_event_category_work_education":"Werk & onderwijs","life_event_create_add_yearly_reminder":"Voeg een jaarlijkse herinnering toe voor deze gebeurtenis","life_event_create_category":"Alle categorie\u00ebn","life_event_create_date":"Je hoeft de maand of de dag niet aan te geven - alleen het jaar is verplicht.","life_event_create_default_description":"Voeg toe wat je hierover weet","life_event_create_default_story":"Verhaal (optioneel)","life_event_create_default_title":"Titel (optioneel)","life_event_create_life_event":"Levensgebeurtenis toevoegen","life_event_create_success":"De levensgebeurtenis is toegevoegd","life_event_date_it_happened":"Datum van de gebeurtenis","life_event_delete_description":"Weet je zeker dat je deze levensgebeurtenis wil verwijderen? Dit is permanent.","life_event_delete_success":"De levensgebeurtenis is verwijderd","life_event_delete_title":"Verwijder levensgebeurtenis","life_event_list_cta":"Levensgebeurtenis toevoegen","life_event_list_tab_life_events":"Levensgebeurtenissen","life_event_list_tab_other":"Notities, herinneringen, ...","life_event_list_title":"Levensgebeurtenissen","life_event_sentence_achievement_or_award":"Ontving een prestatie of prijs","life_event_sentence_anniversary":"Jubileum","life_event_sentence_bought_a_home":"Huis gekocht","life_event_sentence_broken_bone":"Bot gebroken","life_event_sentence_changed_beliefs":"Van overtuiging veranderd","life_event_sentence_dentist":"Ging naar de tandarts","life_event_sentence_end_of_relationship":"Relatie be\u00ebindigd","life_event_sentence_engagement":"Verloofd","life_event_sentence_expecting_a_baby":"Verwacht een baby","life_event_sentence_first_kiss":"De eerste kus","life_event_sentence_first_word":"Voor het eerst gesproken","life_event_sentence_holidays":"Op vakantie geweest","life_event_sentence_home_improvement":"Verbouwd","life_event_sentence_loss_of_a_loved_one":"Een geliefde verloren","life_event_sentence_marriage":"Getrouwd","life_event_sentence_military_service":"Begonnen in militaire dienst","life_event_sentence_moved":"Verhuisd","life_event_sentence_new_child":"Kreeg een kind","life_event_sentence_new_eating_habits":"Begon met nieuw voedingspatroon","life_event_sentence_new_family_member":"Familielid toegevoegd","life_event_sentence_new_hobby":"Begon met een hobby","life_event_sentence_new_instrument":"Nieuw instrument geleerd","life_event_sentence_new_job":"Nieuwe baan gekregen","life_event_sentence_new_language":"Nieuwe taal geleerd","life_event_sentence_new_license":"Kreeg een diploma","life_event_sentence_new_pet":"Kreeg een huisdier","life_event_sentence_new_relationship":"Begon een relatie","life_event_sentence_new_roommate":"Kreeg een huisgenoot","life_event_sentence_new_school":"Begonnen met school","life_event_sentence_new_sport":"Begon met een sport","life_event_sentence_new_vehicle":"Kreeg een nieuw voertuig","life_event_sentence_overcame_an_illness":"Overwon een ziekte","life_event_sentence_published_book_or_paper":"Werd gepubliceerd","life_event_sentence_quit_a_habit":"Stopte met slechte gewoonte","life_event_sentence_removed_braces":"Beugel verwijderd","life_event_sentence_retirement":"Met pensioen gegaan","life_event_sentence_study_abroad":"Gestudeerd in het buitenland","life_event_sentence_surgery":"Operatie ondergaan","life_event_sentence_tattoo_or_piercing":"Kreeg een tatoeage of piercing","life_event_sentence_travel":"Heeft gereisd","life_event_sentence_volunteer_work":"Begonnen met vrijwilligerswerk","life_event_sentence_wear_glass_or_contact":"Begon met dragen van bril of contactlenzen","life_event_sentence_weight_loss":"Afgevallen","list_link_to_active_contacts":"Je bekijkt gearchiveerde contacten. Bekijk in plaats daarvan de lijst van actieve contacten<\/a>.","list_link_to_archived_contacts":"Lijst van gearchiveerde contacten","me":"Dit ben jij","modal_call_comment":"Waar hebben jullie het over gehad? (optioneel)","modal_call_emotion":"Wil je opslaan hoe jij je voelde tijdens dit gesprek? (optioneel)","modal_call_exact_date":"Het telefoongesprek gebeurde op","modal_call_title":"Telefoongesprek registreren","modal_call_who_called":"Wie heeft gebeld?","notes_add_cta":"Notitie toevoegen","notes_create_success":"Nieuwe notitie succesvol toegevoegd","notes_delete_confirmation":"Weet je zeker dat je deze notitie wil verwijderen? Het wordt definitief verwijderd","notes_delete_success":"De notitie is succesvol verwijderd","notes_delete_title":"Notitie verwijderen","notes_favorite":"Toevoegen\/verwijderen uit favorieten","notes_update_success":"De notitie is succesvol opgeslagen","people_add_birthday_reminder":"Feliciteer :name met zijn\/haar verjaardag","people_add_birthday_reminder_deceased":"Op deze datum zou :name zijn verjaardag hebben gevierd","people_add_cta":"Toevoegen","people_add_firstname":"Voornaam","people_add_gender":"Geslacht","people_add_import":"Wil je contacten importeren<\/a>?","people_add_lastname":"Achternaam (optioneel)","people_add_middlename":"Tweede naam (optioneel)","people_add_missing":"Niet gevonden, voeg nu iemand toe","people_add_new":"Voeg nieuw persoon toe","people_add_nickname":"Bijnaam (optioneel)","people_add_reminder_for_birthday":"Maak een jaarlijkse herinnering voor de verjaardag aan","people_add_success":":name is succesvol toegevoegd","people_add_title":"Voeg een nieuwe persoon toe","people_delete_confirmation":"Weet je zeker dat je dit contact wilt verwijderen? Dit is permanent.","people_delete_message":"Contact verwijderen","people_delete_success":"De contactpersoon is verwijderd","people_edit_email_error":"Er is al een contactpersoon in jouw account met dit e-mailadres. Kies alsjeblieft een ander.","people_export":"Exporteer als vCard","people_list_account_upgrade_cta":"Nu upgraden","people_list_account_upgrade_title":"Upgrade je account om alle functies te kunnen gebruiken.","people_list_account_usage":"Je huidige gebruik: :current\/:limit contacten","people_list_blank_cta":"Voeg iemand toe","people_list_blank_title":"Je hebt nog niemand in je account","people_list_clear_filter":"Filter wissen","people_list_contacts_per_tags":"1 contact|:count contacten","people_list_filter_tag":"Tonen alle contactpersonen gelabeld met","people_list_filter_untag":"All contacten zonder labels","people_list_firstnameAZ":"Sorteer op voornaam A \u2192 Z","people_list_firstnameZA":"Sorteer op voornaam Z \u2192 A","people_list_hide_dead":"Verberg overleden personen (:count)","people_list_last_updated":"Laatst bekeken:","people_list_lastactivitydateNewtoOld":"Sorteren op recente activiteit: nieuwste naar oudste","people_list_lastactivitydateOldtoNew":"Sorteren op recente activiteit: oudste naar nieuwste","people_list_lastnameAZ":"Sorteer op achternaam A \u2192 Z","people_list_lastnameZA":"Sorteer op achternaam Z \u2192 A","people_list_number_kids":"1 kind|:count kids","people_list_number_reminders":"1 herinnering|:count reminders","people_list_show_dead":"Toon overleden personen (:count)","people_list_sort":"Sorteer","people_list_stats":"1 contact|:count contacten","people_list_untagged":"Bekijken contacten zonder labels","people_not_found":"Contactpersoon niet gevonden","people_save_and_add_another_cta":"Opslaan en nog iemand toevoegen","people_search":"Zoek in je contacten...","people_search_all":"Iedereen","people_search_next":"Volgende","people_search_no_results":"Geen resultaten gevonden","people_search_of":"van","people_search_page":"Pagina","people_search_prev":"Vorige","people_search_rows_per_page":"Rijen per pagina","pets_bird":"Vogel","pets_cat":"Kat","pets_create_success":"Het huisdier is succesvol toegevoegd","pets_delete_success":"Het huisdier is succesvol verwijderd","pets_dog":"Hond","pets_fish":"Vis","pets_hamster":"Hamster","pets_horse":"Paard","pets_kind":"Soort huisdier","pets_name":"Naam (optioneel)","pets_other":"Andere","pets_rabbit":"Konijn","pets_rat":"Rat","pets_reptile":"Reptiel","pets_small_animal":"Klein dier","pets_title":"Huisdieren","pets_update_success":"Het huisdier is succesvol bijgewerkt","photo_current_profile_pic":"Huidige profielfoto","photo_delete":"Foto verwijderen","photo_list_blank_desc":"Je kan afbeeldingen van dit contact opslaan. Upload er nu eentje!","photo_list_cta":"Foto uploaden","photo_list_title":"Gerelateerde foto's","photo_make_profile_pic":"Stel in als profielfoto","photo_next":"Volgende foto \u276f","photo_previous":"\u276e Vorige foto","photo_title":"Foto's","photo_upload_zone_cta":"Upload een foto","relationship_delete_confirmation":"Weet je zeker dat je deze relatie wilt verwijderen? Dit is permanent.","relationship_form_add":"Voeg een nieuwe relatie toe","relationship_form_add_choice":"Wie is de relatie met?","relationship_form_add_description":"Hierdoor kan je dit persoon bewerken, net als elk ander contact.","relationship_form_add_no_existing_contact":"Je hebt nog geen contacten die een :name gekoppeld kunnen worden.","relationship_form_add_success":"De relatie is succesvol toegevoegd.","relationship_form_also_create_contact":"Een contact-kaart maken voor deze persoon.","relationship_form_associate_contact":"Toevoegen aan bestaand persoon","relationship_form_associate_dropdown":"Zoek en selecteer een bestaande contactpersoon met het dropdown menu hieronder","relationship_form_associate_dropdown_placeholder":"Zoek en selecteer een bestaande contactpersoon","relationship_form_create_contact":"Voeg een nieuwe persoon toe","relationship_form_deletion_success":"De relatie is verwijdert.","relationship_form_edit":"Bewerk bestaande relatie","relationship_form_is_with":"Deze persoon is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Weet je zeker dat je deze relatie wilt verwijderen? Deze persoon wordt niet verwijdert, alleen de relatie tussen de twee personen.","reminder_frequency_day":"dagelijks | elke :number dagen","reminder_frequency_month":"elke maand | elke :number maanden","reminder_frequency_one_time":"op :date","reminder_frequency_week":"wekelijks | elke :number weken","reminder_frequency_year":"jaarlijks | elke :number jaren","reminders_add_cta":"Herinnering toevoegen","reminders_add_description":"Herinner me om...","reminders_add_error_custom_text":"Je moet tekst toevoegen voor deze herinnering","reminders_add_next_time":"Wanneer is de volgende keer dat je hier aan herinnert wilt worden?","reminders_add_once":"Herinner me slechts eenmaal hieraan","reminders_add_optional_comment":"Opmerking (optioneel)","reminders_add_recurrent":"Herinner me hier aan elke","reminders_add_starting_from":"beginnend op bovenstaande datum","reminders_add_title":"Waar zou je over :name aan herinnert willen worden?","reminders_birthday":"Verjaardag van :name","reminders_blank_add_activity":"Voeg een herinnering toe","reminders_blank_title":"Is er iets over :name waar je aan herinnert wilt worden?","reminders_create_success":"De herinnering is met succes toegevoegd","reminders_cta":"Voeg een herinnering toe","reminders_delete_confirmation":"Weet u zeker dat u deze herinnering wilt verwijderen?","reminders_delete_cta":"Verwijderen","reminders_delete_success":"De herinnering is verwijderd","reminders_description":"Wij sturen een e-mail voor elke herinnering hieronder. Herinneringen worden op de ochtend van de dag waarop de gebeurtenis zal plaatsvinden verzonden. Automatisch toegevoegde herinneringen voor verjaardagen kunnen niet worden verwijderd. Wilt u deze herinneringen wijzigen, bewerk dan de geboortedatum van de betreffende contactpersoon.","reminders_edit_update_cta":"Update herinnering","reminders_free_plan_warning":"Je hebt een gratis abonnement. Hiermee worden geen e-mails verzonden. Als je herinneringen per e-mail wilt ontvangen, upgrade dan je account.","reminders_next_expected_date":"op","reminders_one_time":"Eenmalig","reminders_type_month":"maand","reminders_type_week":"week","reminders_type_year":"jaar","reminders_update_success":"De herinnering is succesvol bijgewerkt","section_contact_information":"Contactinformatie","section_personal_activities":"Activiteiten","section_personal_gifts":"Cadeaus","section_personal_notes":"Notities","section_personal_reminders":"Herinneringen","section_personal_tasks":"Taken","set_favorite":"Favoriete contacten worden bovenaan de lijst met contactpersonen geplaatst","stay_in_touch":"Blijf in contact","stay_in_touch_frequency":"Blijf elke dag in contact | Blijf elke {count} dagen in contact","stay_in_touch_invalid":"De frequentie moet groter zijn dan 0.","stay_in_touch_modal_desc":"We kunnen je herinneren via e-mail om regelmatig in contact te blijven met {firstname}.","stay_in_touch_modal_label":"Stuur me elke dag een e-mail|Stuur me elke... {count} dagen een email","stay_in_touch_modal_title":"Blijf in contact","stay_in_touch_premium":"Je moet je account upgraden om gebruik te maken van deze functie","tag_add":"Labels toevoegen","tag_add_search":"Labels toevoegen of zoeken","tag_edit":"Label bewerken","tag_no_tags":"Nog geen labels","tasks_add_task":"Voeg taak toe","tasks_blank_title":"Je hebt nog geen taken.","tasks_complete_success":"De taak is met succes aangepast","tasks_delete_success":"De taak is succesvol verwijderd","tasks_form_description":"Beschrijving (optioneel)","tasks_form_title":"Titel","tasks_title":"Taken","work_add_cta":"Werk informatie bijwerken","work_edit_company":"Bedrijf (optioneel)","work_edit_job":"Functietitel (optioneel)","work_edit_success":"Work information updated","work_edit_title":"Update :name's baan","work_information":"Werk informatie"},"reminder":{"type_birthday":"Wens een gelukkige verjaardag aan","type_birthday_kid":"Feliciteer het kind van","type_email":"E-mail","type_hangout":"Ontmoeten met","type_lunch":"Lunchen met","type_phone_call":"Bel"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Foutmelding tijdens het uitschakelen van tweestapsverificatie","2fa_disable_success":"Tweestapsverificatie uitgeschakeld","2fa_disable_title":"Tweestapsverificatie uitschakelen","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Foutmelding tijdens het activeren van tweestapsverificatie","2fa_enable_error_already_set":"Tweestapsverificatie is al geactiveerd","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Tweestapsverificatie geactiveerd","2fa_enable_title":"Tweestapsverificatie inschakelen","2fa_otp_title":"Tweestapsverificatie mobiele applicatie","2fa_title":"Tweestapsverificatie","api_authorized_clients":"Lijst van geautoriseerde clients","api_authorized_clients_desc":"Deze lijst bevat alle Clients die je hebt gemachtigd om toegang te krijgen tot je applicatie. Je kan deze machtiging te allen tijde intrekken.","api_authorized_clients_name":"Naam","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Bereik","api_authorized_clients_title":"Geautoriseerde applicaties","api_description":"De API kan worden gebruikt om de gegevens van Monica te gebruiken in een externe applicatie. Bijvoorbeeld een app op je mobiele telefoon.","api_endpoint":"De 'API endpoint' voor deze Monica-server is:","api_help":"Om de API te gebruiken, is een token noodzakelijk. Je kunt een persoonlijke token aanmaken (zgn. 'Bearer authentication'), of een OAuth client toestaan om dit voor je te doen. Zie ook de API documentatie<\/a>.","api_oauth_clientid":"Client-ID","api_oauth_clients":"Jouw OAuth clients","api_oauth_clients_desc":"Hier kun je jouw eigen OAuth clients registreren.","api_oauth_clients_desc2":"Gebruik deze client-id om een nieuwe token aan te vragen en autorisatiecodes om te zetten naar tokens. Zie Laravel Passport documentatie<\/a> voor meer informatie.","api_oauth_create":"Client aanmaken","api_oauth_create_new":"Nieuwe client aanmaken","api_oauth_edit":"Client bewerken","api_oauth_name":"Naam","api_oauth_name_help":"Iets dat jouw gebruikers herkennen en kunnen vertrouwen.","api_oauth_not_created":"Je hebt nog geen OAuth-clients aangemaakt.","api_oauth_redirecturl":"Redirect-URL","api_oauth_redirecturl_help":"De authorisatie-callback-url van jouw applicatie.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Zorg dat je deze code alleen toevertrouwt aan een bron die je vertrouwd gezien deze code toegang geeft tot al jouw gegevens.","api_personal_access_tokens":"Persoonlijke toegangscodes","api_title":"API-toegang","api_token_create":"Code aanmaken","api_token_create_new":"Nieuwe code aanmaken","api_token_delete":"Verwijderen","api_token_expire":"Verloopt op {date}","api_token_help":"Hier is je nieuwe persoonlijke toegangscode. Dit is de enige keer dat deze getoond wordt dus verlies deze niet! Je kan deze toegangscode nu gebruiken om API-aanvragen te maken.","api_token_name":"Naam token","api_token_not_created":"Je hebt nog geen persoonlijke toegangscodes aangemaakt.","api_token_scopes":"Bereik","api_token_title":"Persoonlijke Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Valuta","dav_caldav_birthdays_export":"Alle verjaardagen exporteren in \u00e9\u00e9n bestand","dav_caldav_tasks_export":"Alle taken exporteren in \u00e9\u00e9n bestand","dav_carddav_export":"Alle contacten exporteren in \u00e9\u00e9n bestand","dav_clipboard_copied":"Waarde gekopieerd naar klembord","dav_connect_help":"Je kan jouw contactpersonen en\/of kalenders verbinden met deze basis-url op je telefoon of computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Naar klembord kopi\u00ebren","dav_description":"Hier kun je alle instellingen vinden om WebDAV te gebruiken voor CardDAV en CalDAV export.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Basis-url voor alle CardDAV en CalDAV bronnen:","dav_url_caldav_birthdays":"CalDAV url voor verjaardagen:","dav_url_caldav_tasks":"CalDAV url voor taken:","dav_url_carddav":"CardDAV url voor Contacten:","delete_cta":"Account verwijderen","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Verwijder je account","email":"E-mailadres","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"E-mailadres invoeren","export_be_patient":"Klik op de knop om het exporteren te starten. Het kan enige minuten duren om de export te verwerken - Wees alsjeblieft geduldig en klik niet meerdere malen op de knop.","export_sql_cta":"Exporteer naar SQL","export_sql_explanation":"Het exporteren van je gegevens in SQL formaat maakt het mogelijk om je gegevens te importeren in je eigen Monica installatie. Dit is alleen waardevol als je een eigen server hebt.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Exporteer je accountgegevens","export_title_sql":"Exporteer naar SQL","firstname":"Voornaam","import_blank_cta":"Importeer vCard","import_blank_description":"Wij kunnen vCard-bestanden importeren die je kan krijgen uit Google Contacts of je contactenmanager.","import_blank_question":"Wil je nu contacten importeren?","import_blank_title":"Je hebt nog geen contacten ge\u00efmporteerd.","import_cta":"Contacten uploaden","import_in_progress":"Het importeren is bezig. Ververs de pagina over \u00e9\u00e9n minuut.","import_need_subscription":"Gegevens importeren vereist een abonnement.","import_report_date":"Importdatum","import_report_number_contacts":"Aantal contacten in het bestand","import_report_number_contacts_imported":"Aantal ge\u00efmporteerde contacten","import_report_number_contacts_skipped":"Aantal overgeslagen contacten","import_report_status_imported":"Ge\u00efmporteerd","import_report_status_skipped":"Overgeslagen","import_report_title":"Importrapport","import_report_type":"Importtype","import_result_stat":"vCard met 1 contact ge\u00fcpload(:total_imported ge\u00efmporteerd,:total_skipped overgeslagen)|vCard met :total_contacts contacten ge\u00fcpload(:total_imported ge\u00efmporteerd,:total_skipped overgeslagen)","import_stat":"Je heb tot nu toe :number bestanden ge\u00efmporteerd.","import_title":"Contacten importeren in jouw account","import_upload_behaviour":"Importgedrag:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Overschrijf bestaande contacten","import_upload_form_file":"Jouw .vcf<\/code> of .vCard<\/code> bestand:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"Wij ondersteunen .vcard<\/code> en .vcf<\/code> bestanden.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"Er zijn restricties:","import_upload_title":"Contacten uit een vCard bestand importeren","import_vcard_contact_exist":"Contactpersoon bestaat al","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"Bestand bevat geen items","import_vcard_file_not_found":"Bestand niet gevonden","import_vcard_parse_error":"Fout tijdens het verwerken van de vCard","import_vcard_unknown_entry":"Onbekende contactpersoon","import_view_report":"Importrapport bekijken","lastname":"Achternaam","layout":"Lay-out","layout_big":"Volledige breedte van de browser","layout_small":"Maximaal 1200 pixels breed","locale":"Taal","locale_ar":"Arabisch","locale_cs":"Tsjechisch","locale_de":"Duits","locale_en":"Engels","locale_en-GB":"Engels (Verenigd Koninkrijk)","locale_es":"Spaans","locale_fr":"Frans","locale_he":"Hebreeuws","locale_help":"Wil je helpen met het vertalen van Monica of een nieuwe taal toevoegen? Klik hier voor meer informatie.<\/a>","locale_hr":"Kroatisch","locale_it":"Italiaans","locale_ja":"Japans","locale_nl":"Nederlands","locale_pt":"Portugees","locale_pt-BR":"Portugees (Brazili\u00eb)","locale_ru":"Russisch","locale_sv":"Swedish","locale_tr":"Turks","locale_zh":"Chinees (vereenvoudigd)","locale_zh-TW":"Traditioneel Chinees","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Kies jezelf","me_choose_placeholder":"Kies jezelf","me_help":"Dit is het contact dat jou<\/em> vertegenwoordigt in Monica","me_no_contact":"Nog geen contact geselecteerd.","me_remove_contact":"Koppeling verwijderen","me_select":"Selecteer een contactpersoon","me_select_click":"Klik hier om een contact te selecteren.","me_title":"Ik als contact","name":"Jouw naam: :name","name_order":"Naamvolgorde","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Wachtwoord wijzigen","password_change":"Change your password","password_current":"Huidige wachtwoord","password_current_placeholder":"Voer je huidige wachtwoord in","password_new1":"Nieuw wachtwoord","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"Dit is een betaalde functionaliteit en vereist dat je een betaald abonnement hebt. Upgrade je account door naar Instellingen > Abonnement<\/a> te gaan.","personalisation_paid_upgrade_vue":"Dit is een betaalde functionaliteit en vereist dat je een betaald abonnement hebt. Upgrade je account door naar Instellingen > Abonnement<\/a> te gaan.","personalization_activity_type_add_button":"Nieuw type activiteit toevoegen","personalization_activity_type_category_add":"Voeg een nieuwe categorie activiteiten toe","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Voeg een nieuwe categorie activiteiten toe","personalization_activity_type_category_modal_delete":"Verwijder een categorie activiteiten","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We kunnen deze categorie niet vinden.","personalization_activity_type_category_modal_edit":"Bewerk een categorie activiteiten","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Acties","personalization_activity_type_category_table_name":"Naam","personalization_activity_type_category_title":"Activiteit-categorie\u00ebn","personalization_activity_type_modal_add":"Nieuw type activiteit toevoegen","personalization_activity_type_modal_delete":"Verwijder type activiteit","personalization_activity_type_modal_delete_desc":"Weet je zeker dat je dit activiteitstype wil verwijderen? Activiteiten die behoren tot dit type worden niet be\u00efnvloed door deze verwijdering.","personalization_activity_type_modal_delete_error":"We kunnen dit type activiteit niet vinden.","personalization_activity_type_modal_edit":"Bewerk type activiteit","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Nieuw type contactveld toevoegen","personalization_contact_field_type_add_success":"Het type contactveld is met succes toegevoegd.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"Het type contactveld is met succes bijgewerkt.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Een bestaand type contactveld verwijderen","personalization_contact_field_type_modal_edit_title":"Een bestaand type contactveld bewerken","personalization_contact_field_type_modal_icon":"Pictogram (optioneel)","personalization_contact_field_type_modal_icon_help":"Je kan een pictogram koppelen aan dit type contactveld. Het moet een referentie zijn naar een Font Awesome pictogram.","personalization_contact_field_type_modal_name":"Naam","personalization_contact_field_type_modal_protocol":"Protocol (optioneel)","personalization_contact_field_type_modal_protocol_help":"Als er een protocol voor een type contactveld is ingesteld wordt bij een muisklik op dat veld de actie uitgevoerd die bij dat protocol hoort.","personalization_contact_field_type_modal_title":"Nieuw soort contactveld toevoegen","personalization_contact_field_type_table_actions":"Acties","personalization_contact_field_type_table_name":"Naam","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contactvelden","personalization_genders_add":"Nieuwe genderidentiteit toevoegen","personalization_genders_default":"Standaardgeslacht","personalization_genders_desc":"Je kan zoveel genderidentiteiten defini\u00ebren als je nodig acht. Je hebt ten minste \u00e9\u00e9n genderidentiteit nodig in je account.","personalization_genders_f":"Vrouw","personalization_genders_list_contact_number":"{count} contact|{count} contacten","personalization_genders_m":"Man","personalization_genders_make_default":"Standaardgeslacht wijzigen","personalization_genders_modal_add":"Genderidentiteit toevoegen","personalization_genders_modal_default":"Selecteer het standaardgeslacht voor nieuwe contacten","personalization_genders_modal_delete":"Genderidentiteit verwijderen","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Genderidentiteit bewerken","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Naam","personalization_genders_modal_name_help":"De titel voor het aangeven van het geslacht op een contactpagina.","personalization_genders_modal_sex":"Geslacht","personalization_genders_modal_sex_help":"Wordt gebruikt voor het defini\u00ebren van relaties, o.a. tijdens het importeren en exporteren van VCards.","personalization_genders_n":"Geen of niet van toepassing","personalization_genders_o":"Anders","personalization_genders_select_default":"Selecteer standaardgeslacht","personalization_genders_table_default":"Standaard","personalization_genders_table_name":"Titel","personalization_genders_table_sex":"Geslacht","personalization_genders_title":"Genderidentiteiten","personalization_genders_u":"Onbekend","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Familie & relaties","personalization_life_event_category_health_wellness":"Gezondheid & welzijn","personalization_life_event_category_home_living":"Huis & leven","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Reizen & ervaringen","personalization_life_event_category_work_education":"Werk & onderwijs","personalization_life_event_type_achievement_or_award":"Prestatie of prijs","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Jubileum","personalization_life_event_type_bought_a_home":"Huis gekocht","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Van overtuiging veranderd","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"Einde van relatie","personalization_life_event_type_engagement":"Verloving","personalization_life_event_type_expecting_a_baby":"Verwacht een baby","personalization_life_event_type_first_kiss":"Eerste kus","personalization_life_event_type_first_met":"Eerste ontmoeting","personalization_life_event_type_first_word":"Eerste woord","personalization_life_event_type_holidays":"Vakantie","personalization_life_event_type_home_improvement":"Verbouwing","personalization_life_event_type_loss_of_a_loved_one":"Verlies van een dierbare","personalization_life_event_type_marriage":"Huwelijk","personalization_life_event_type_military_service":"Militaire dienst","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Verhuisd","personalization_life_event_type_new_child":"Nieuw kind","personalization_life_event_type_new_eating_habits":"Nieuw voedingspatroon","personalization_life_event_type_new_family_member":"Nieuw gezinslid","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"Nieuwe baan","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"Nieuw diploma","personalization_life_event_type_new_pet":"Nieuw huisdier","personalization_life_event_type_new_relationship":"Nieuwe relatie","personalization_life_event_type_new_roommate":"Nieuwe kamergenoot","personalization_life_event_type_new_school":"Nieuwe school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"Nieuw voertuig","personalization_life_event_type_overcame_an_illness":"Overwon een ziekte","personalization_life_event_type_published_book_or_paper":"Publicatie van boek of artikel","personalization_life_event_type_quit_a_habit":"Gestopt met gewoonte","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Pensioen","personalization_life_event_type_study_abroad":"Studie in het buitenland","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tatoeage of piercing","personalization_life_event_type_travel":"Reizen","personalization_life_event_type_volunteer_work":"Vrijwilligerswerk","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Gewichtsverlies","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"De wijziging is opgeslagen","personalization_module_title":"Functionaliteiten","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} dag ervoor|{count} dagen ervoor","personalization_reminder_rule_save":"De instellingen zijn opgeslagen","personalization_reminder_rule_title":"Herinneringen","personalization_tab_title":"Personaliseer je account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Codes naar klembord kopi\u00ebren","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"Je kan elke herstelcode eenmalig gebruiken.","recovery_help_intro":"Dit zijn je herstelcodes:","recovery_show":"Herstelcodes opvragen","recovery_title":"Herstelcodes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Account resetten","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset je account","save":"Voorkeuren bijwerken","security_help":"Verander de beveiligingsinstellingen voor je account.","security_title":"Beveiliging","settings_success":"Voorkeuren bijgewerkt!","sidebar_personalization":"Personalisatie","sidebar_settings":"Accountinstellingen","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Auditlog","sidebar_settings_dav":"DAV bronnen","sidebar_settings_export":"Exporteer gegevens","sidebar_settings_import":"Importeer gegevens","sidebar_settings_security":"Beveiliging","sidebar_settings_storage":"Opslag","sidebar_settings_subscriptions":"Abonnement","sidebar_settings_tags":"Labelbeheer","sidebar_settings_users":"Gebruikers","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Hier kun je alle documenten en foto's zien die bij als bijlage bij je contacten zijn ge\u00fcpload.","storage_title":"Opslag","storage_upgrade_notice":"Upgrade je account om documenten en foto's te kunnen uploaden.","stripe_error_api_connection":"Netwerkcommunicatie met Stripe is mislukt. Probeer het later opnieuw.","stripe_error_authentication":"Verkeerde authenticatie met Stripe","stripe_error_card":"Je creditcard is geweigerd met de volgende mededeling: :message","stripe_error_invalid_request":"Ongeldige parameters. Probeer het later opnieuw.","stripe_error_rate_limit":"Teveel verzoeken met Stripe op dit moment. Probeer het later opnieuw.","subscriptions_account_cancel":"Je kunt je abonnement op elk moment annuleren<\/a>.","subscriptions_account_confirm_payment":"Je betaling is nog niet helemaal afgerond, bevestig je betaling<\/a> alsjeblieft.","subscriptions_account_current_paid_plan":"Jij gebruikt het :name abonnement. Bedankt voor het aanmelden.","subscriptions_account_current_plan":"Je huidige abonnement","subscriptions_account_free_plan":"Je hebt het gratis abonnement.","subscriptions_account_free_plan_benefits_import_data_vcard":"Importeer contacten via vCard","subscriptions_account_free_plan_benefits_reminders":"E-mail herinneringen","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Onbeperkt aantal gebruikers","subscriptions_account_free_plan_upgrade":"Je kan je account upgraden naar het :name abonnement, dat $:price per maand kost. Hier zijn de voordelen:","subscriptions_account_invoices":"Facturen","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Abonnement van :startDate tot :endDate","subscriptions_account_next_billing":"Je abonnement wordt automatisch verlengd op :date<\/strong>.","subscriptions_account_payment":"Welke betaalmethode past je het beste?","subscriptions_account_upgrade":"Account upgraden","subscriptions_account_upgrade_choice":"Kies hieronder een abonnement en sluit je aan bij meer dan :customers personen die reeds de premium versie van Monica gebruiken.","subscriptions_account_upgrade_title":"Upgrade Monica vandaag en maak je persoonlijke relaties betekenisvoller.","subscriptions_back":"Terug naar instellingen","subscriptions_downgrade_cta":"Downgraden","subscriptions_downgrade_limitations":"De gratis versie heeft beperkingen. Om te kunnen downgraden moet je voldoen aan de volgende voorwaarden:","subscriptions_downgrade_rule_contacts":"Je mag niet meer dan :number actieve contacten hebben","subscriptions_downgrade_rule_contacts_constraint":"Op dit moment heb je 1 contact<\/a>.|Op dit moment heb je :count contacten<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"Je mag slechts \u00e9\u00e9n gebruiker in je account hebben","subscriptions_downgrade_rule_users_constraint":"Je hebt op dit moment 1 gebruiker<\/a> in jouw account.|Je hebt op dit moment :count gebruikers<\/a> in jouw account.","subscriptions_downgrade_success":"Je hebt nu het gratis abonnement!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Account naar de gratis variant downgraden","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"Wat als ik van gedachten verander?","subscriptions_help_discounts_desc":"Jazeker! Monica is gratis voor studenten en goede doelen. Neem contact op met support<\/a> met een passend bewijs (van inschrijving) en wij zullen deze speciale status aan je account toekennen.","subscriptions_help_discounts_title":"Zijn er kortingen voor non-profitorganisaties en onderwijs?","subscriptions_help_limits_plan":"Ja. Een gratis abonnement stelt je in staat om :number contacten te beheren.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"Wat is een open source project?","subscriptions_help_title":"Extra details waar je wellicht interesse in hebt","subscriptions_payment_cancelled":"De betaling is geannuleerd.","subscriptions_payment_cancelled_title":"Betaling geannuleerd","subscriptions_payment_confirm_information":"Er is een extra bevestiging nodig om je betaling te kunnen verwerken. Bevestig je betaling door hieronder je betalingsgegevens in te vullen.","subscriptions_payment_confirm_title":"Bevestig je betaling van :amount","subscriptions_payment_error_name":"Voer alsjeblieft je naam in.","subscriptions_payment_succeeded":"Deze betaling is al met succes bevestigd.","subscriptions_payment_succeeded_title":"Betaling succesvol","subscriptions_payment_success":"De betaling is voltooid.","subscriptions_pdf_title":"Jouw :name maandelijkse abonnement","subscriptions_plan_choose":"Kies een abonnement","subscriptions_plan_include1":"Bij je upgrade inbegrepen:","subscriptions_plan_include2":"Onbeperkt aantal contacten \u2022 Onbeperkt aantal gebruikers \u2022 Herinneringen via e-mail \u2022 Importeren via vCard \u2022 Personaliseren van het contactoverzicht","subscriptions_plan_include3":"100% van de inkomsten gaan naar de ontwikkeling van dit fantastische open source project.","subscriptions_plan_month_bonus":"Altijd opzegbaar","subscriptions_plan_month_cost":"$5\/maand","subscriptions_plan_month_title":"Maandelijks betalen","subscriptions_plan_year_bonus":"Gemoedsrust voor een heel jaar","subscriptions_plan_year_cost":"$45\/jaar","subscriptions_plan_year_cost_save":"je bespaart 25%","subscriptions_plan_year_title":"Jaarlijks betalen","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"De betaling wordt afgehandeld via Stripe<\/a>. Er worden geen creditcardgegevens bij ons opgeslagen.","subscriptions_upgrade_choose":"Je hebt het :plan abonnement gekozen.","subscriptions_upgrade_credit":"Creditcard","subscriptions_upgrade_infos":"Wij zijn erg blij. Voer hieronder je betaalgegevens in.","subscriptions_upgrade_name":"Naam op de kaart","subscriptions_upgrade_submit":"Betaal {amount}","subscriptions_upgrade_success":"Dankjewel! Je hebt nu een abonnement.","subscriptions_upgrade_thanks":"Welkom in de community van mensen die proberen om de wereld een betere plek te maken.","subscriptions_upgrade_title":"Account upgraden","subscriptions_upgrade_zip":"Postcode","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Labels zijn een geweldige methode om je contacten te organiseren.","tags_list_contact_number":"1 contact|:count contacten","tags_list_delete_confirmation":"Weet je zeker dat je het label wil verwijderen? Alleen het label zal worden verwijderd, contactpersonen blijven behouden.","tags_list_delete_success":"Het label is succesvol verwijderd","tags_list_description":"Je kan je contacten organiseren door labels toe te voegen. Labels werken als mappen maar je kan meer dan \u00e9\u00e9n label toevoegen aan een contact. Om een nieuw label toe te voegen moet je dat bij een contactpersoon zelf doen.","tags_list_title":"Labels","temperature_scale":"Temperatuurschaal","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Tijdzone","title_general":"Algemene Informatie","title_i18n":"Internationaliseringsinstellingen","title_layout":"Lay-out","users_accept_title":"Uitnodiging accepteren en nieuw account aanmaken","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Uitnodigen via e-mail","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Voer het e-mailadres in van de persoon die je wil uitnodigen","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Wil je iemand anders uitnodigen?","users_blank_cta":"Iemand uitnodigen","users_blank_description":"Deze persoon zal dezelfde toegang hebben als jij en zal contactinformatie kunnen toevoegen, bewerken of verwijderen.","users_blank_title":"Jij bent de enige met toegang tot dit account.","users_error_already_invited":"Je hebt deze gebruiker al uitgenodigd. Kies alsjeblieft een ander e-mailadres.","users_error_email_already_taken":"Dit e-mailadres is al in gebruik. Gebruik een andere","users_error_email_not_similar":"Dit is niet het e-mailadres van de persoon die jou heeft uitgenodigd.","users_error_please_confirm":"Bevestig alsjeblieft, dat je deze gebruiker wilt uitnodigen","users_invitation_deleted_confirmation_message":"De uitnodiging is succesvol verwijderd","users_invitation_need_subscription":"Het toevoegen van meer gebruikers vereist een abonnement.","users_invitations_delete_confirmation":"Weet je zeker dat je deze uitnodiging wilt verwijderen?","users_list_add_user":"Nieuwe gebruiker uitnodigen","users_list_delete_confirmation":"Weet je zeker dat je deze gebruiker uit je account wil verwijderen?","users_list_invitations_explanation":"Hieronder staan de mensen die je hebt uitgenodigd om mee samen te werken.","users_list_invitations_invited_by":"uitgenodigd door :name","users_list_invitations_sent_date":"verzonden op :date","users_list_invitations_title":"Openstaande uitnodigingen","users_list_title":"Gebruikers met toegang tot je account","users_list_you":"Dat ben jij","webauthn_buttonAdvise":"Druk op de knop van de beveiligingssleutel, als deze er een heeft.","webauthn_delete_confirmation":"Weet je zeker dat je deze sleutel wilt verwijderen?","webauthn_delete_success":"Sleutel verwijderd","webauthn_enable_description":"Voeg een nieuwe beveiligingssleutel toe","webauthn_error_already_used":"Deze sleutel is al geregistreerd. Je hoeft deze niet opnieuw te registreren.","webauthn_error_not_allowed":"De bewerking is niet toegestaan, of duurde te lang en is geannuleerd.","webauthn_insertKey":"Voer je beveiligingssleutel in.","webauthn_key_name":"Sleutelnaam:","webauthn_key_name_help":"Kies een naam voor je sleutel.","webauthn_last_use":"Laatst gebruikt: {timestamp}","webauthn_noButtonAdvise":"Als dat niet zo is, verwijder de sleutel dan en verbind deze opnieuw.","webauthn_not_secured":"WebAuthn ondersteunt alleen beveiligde verbindingen. Laad deze pagina via https.","webauthn_not_supported":"Je browser ondersteunt op dit moment geen WebAuthn.","webauthn_success":"Je sleutel is gedetecteerd en bevestigd.","webauthn_title":"Beveiligingssleutel \u2014 WebAuthn protocol"},"validation":{"accepted":":attribute moet geaccepteerd zijn.","active_url":":attribute is geen geldige URL.","after":":attribute moet een datum na :date zijn.","after_or_equal":":attribute moet een datum na of gelijk aan :date zijn.","alpha":":attribute mag alleen letters bevatten.","alpha_dash":":attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.","alpha_num":":attribute mag alleen letters en nummers bevatten.","array":":attribute moet geselecteerde elementen bevatten.","attributes":[],"before":":attribute moet een datum voor :date zijn.","before_or_equal":":attribute moet een datum voor of gelijk aan :date zijn.","between":{"array":":attribute moet tussen :min en :max items bevatten.","file":":attribute moet tussen :min en :max kilobytes zijn.","numeric":":attribute moet tussen :min en :max zijn.","string":":attribute moet tussen :min en :max karakters zijn."},"boolean":":attribute moet ja of nee zijn.","confirmed":":attribute bevestiging komt niet overeen.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute moet een datum bevatten.","date_equals":":attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.","date_format":":attribute moet een geldig datum formaat bevatten.","different":":attribute en :other moeten verschillend zijn.","digits":":attribute moet bestaan uit :digits cijfers.","digits_between":":attribute moet bestaan uit minimaal :min en maximaal :max cijfers.","dimensions":":attribute heeft geen geldige afmetingen voor afbeeldingen.","distinct":":attribute heeft een dubbele waarde.","email":":attribute is geen geldig e-mailadres.","ends_with":":attribute moet met \u00e9\u00e9n van de volgende waarden eindigen: :values.","exists":":attribute bestaat niet.","file":":attribute moet een bestand zijn.","filled":":attribute is verplicht.","gt":{"array":"De :attribute moet meer dan :value waardes bevatten.","file":"De :attribute moet groter zijn dan :value kilobytes.","numeric":"De :attribute moet groter zijn dan :value.","string":"De :attribute moet meer dan :value tekens bevatten."},"gte":{"array":"De :attribute moet :value waardes of meer bevatten.","file":"De :attribute moet groter of gelijk zijn aan :value kilobytes.","numeric":"De :attribute moet groter of gelijk zijn aan :value.","string":"De :attribute moet minimaal :value tekens bevatten."},"image":":attribute moet een afbeelding zijn.","in":":attribute is ongeldig.","in_array":":attribute bestaat niet in :other.","integer":":attribute moet een getal zijn.","ip":":attribute moet een geldig IP-adres zijn.","ipv4":":attribute moet een geldig IPv4-adres zijn.","ipv6":":attribute moet een geldig IPv6-adres zijn.","json":":attribute moet een geldige JSON-string zijn.","lt":{"array":"De :attribute moet minder dan :value waardes bevatten.","file":"De :attribute moet kleiner zijn dan :value kilobytes.","numeric":"De :attribute moet kleiner zijn dan :value.","string":"De :attribute moet minder dan :value tekens bevatten."},"lte":{"array":"De :attribute moet :value waardes of minder bevatten.","file":"De :attribute moet kleiner of gelijk zijn aan :value kilobytes.","numeric":"De :attribute moet kleiner of gelijk zijn aan :value.","string":"De :attribute moet maximaal :value tekens bevatten."},"max":{"array":":attribute mag niet meer dan :max items bevatten.","file":":attribute mag niet meer dan :max kilobytes zijn.","numeric":":attribute mag niet hoger dan :max zijn.","string":":attribute mag niet uit meer dan :max karakters bestaan."},"mimes":":attribute moet een bestand zijn van het bestandstype :values.","mimetypes":":attribute moet een bestand zijn van het bestandstype :values.","min":{"array":":attribute moet minimaal :min items bevatten.","file":":attribute moet minimaal :min kilobytes zijn.","numeric":":attribute moet minimaal :min zijn.","string":":attribute moet minimaal :min karakters zijn."},"not_in":"Het formaat van :attribute is ongeldig.","not_regex":"De :attribute formaat is ongeldig.","numeric":":attribute moet een nummer zijn.","password":"Het wachtwoord is incorrect.","present":":attribute moet bestaan.","regex":":attribute formaat is ongeldig.","required":":attribute is verplicht.","required_if":":attribute is verplicht indien :other gelijk is aan :value.","required_unless":":attribute is verplicht tenzij :other gelijk is aan :values.","required_with":":attribute is verplicht i.c.m. :values","required_with_all":":attribute is verplicht i.c.m. :values.","required_without":":attribute is verplicht als :values niet ingevuld is.","required_without_all":":attribute is verplicht als :values niet ingevuld zijn.","same":":attribute en :other moeten overeenkomen.","size":{"array":":attribute moet :size items bevatten.","file":":attribute moet :size kilobyte zijn.","numeric":":attribute moet :size zijn.","string":":attribute moet :size karakters zijn."},"starts_with":":attribute moet starten met een van de volgende: :values.","string":":attribute moet een tekenreeks zijn.","timezone":":attribute moet een geldige tijdzone zijn.","unique":":attribute is al in gebruik.","uploaded":"Het uploaden van :attribute is mislukt.","url":":attribute is geen geldige URL.","uuid":":attribute moet een geldig UUID zijn.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/no.json b/public/js/langs/no.json deleted file mode 100644 index 16228e8710e..00000000000 --- a/public/js/langs/no.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Legg til","another_day":"en annen dag","application_description":"Monica er et verkt\u00f8y for \u00e5 holde oversikt over forholdet til dine kj\u00e6reste, venner, og familie.","application_og_title":"F\u00e5 bedre forhold til dine kj\u00e6re. Gratis CRM for venner og familie.","application_title":"Monica \u2013 personlig relasjonsassistent","back":"Tilbake","breadcrumb_add_note":"Legg til notat","breadcrumb_add_significant_other":"Legg til kj\u00e6reste","breadcrumb_api":"API","breadcrumb_archived_contacts":"Arkiverte kontakter","breadcrumb_dashboard":"Oversikt","breadcrumb_dav":"DAV-ressurser","breadcrumb_edit_introductions":"Hvordan m\u00f8ttes dere","breadcrumb_edit_note":"Rediger notat","breadcrumb_edit_significant_other":"Rediger kj\u00e6reste","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"Kontakter","breadcrumb_profile":"Profil for :name","breadcrumb_settings":"Innstillinger","breadcrumb_settings_export":"Eksporter","breadcrumb_settings_import":"Importer","breadcrumb_settings_import_report":"Importrapport","breadcrumb_settings_import_upload":"Last opp","breadcrumb_settings_personalization":"Tilpass","breadcrumb_settings_security":"Sikkerhet","breadcrumb_settings_security_2fa":"To-faktor-autentisering","breadcrumb_settings_subscriptions":"Abonner","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Brukere","breadcrumb_settings_users_add":"Legg til bruker","cancel":"Avbryt","close":"Lukk","compliance_desc":"Vi har endret v\u00e5re brukervilk\u00e5r<\/a> og personvernerkl\u00e6ringen<\/a>. Vi er p\u00e5lagt \u00e5 be deg om \u00e5 g\u00e5 gjennom dem og samtykke f\u00f8r du kan fortsette \u00e5 bruke kontoen din.","compliance_desc_end":"Vi gj\u00f8r ikke noe ondsinnet med dine opplysninger eller din konto, og vi vil heller aldri gj\u00f8re det.","compliance_terms":"Godta nye brukervilk\u00e5r og personvernpolicy","compliance_title":"Beklager avbrytelsen.","confirm":"Bekreft","contact_list_avatar":"Profilbilde","contact_list_description":"Beskrivelse","contact_list_name":"Kontakt","copy":"Kopier","create":"Opprett","date":"Dato","dav_birthdays":"Bursdager","dav_birthdays_description":"Bursdager for kontaktene til :name","dav_contacts":"Kontakter","dav_contacts_description":"Kontaktene til :name","dav_tasks":"Oppgaver","dav_tasks_description":"Oppgavene til :name","default_save_success":"Data er lagret.","delete":"Slett","delete_confirm":"Er du sikker p\u00e5 at du vil slette?","done":"Utf\u00f8rt","download":"Last ned","edit":"Endre","emotion_adoration":"Beundring","emotion_affection":"Affeksjon","emotion_aggravation":"Forsv\u00e6r","emotion_agitation":"Agitert","emotion_agony":"Smerte","emotion_alarm":"Bekymret","emotion_alienation":"Fremmedgjort","emotion_amazement":"Overveldet","emotion_amusement":"Forn\u00f8yd","emotion_anger":"Sinne","emotion_anguish":"Plaget","emotion_annoyance":"Irritert","emotion_anxiety":"Engstelig","emotion_apprehension":"Usikkerhet","emotion_arousal":"Opphisset","emotion_astonishment":"Overraskelse","emotion_attraction":"Tiltrukket","emotion_bitterness":"Bitterhet","emotion_bliss":"Overlykkelig","emotion_caring":"Omsorgsfull","emotion_cheerfulness":"Gledet","emotion_compassion":"Medlidenhet","emotion_contempt":"Forakt","emotion_contentment":"Forn\u00f8yd","emotion_defeat":"Beseiret","emotion_dejection":"Nedstemt","emotion_delight":"Fryd","emotion_depression":"Deprimert","emotion_desire":"Begj\u00e6r","emotion_despair":"Fortvilet","emotion_disappointment":"Skuffelse","emotion_disgust":"Ekkel","emotion_dislike":"Misn\u00f8ye","emotion_dismay":"Vantro","emotion_displeasure":"Misn\u00f8ye","emotion_distress":"N\u00f8d","emotion_dread":"Frykt","emotion_eagerness":"Ivrig","emotion_ecstasy":"Ekstase","emotion_elation":"Oppspilt","emotion_embarrassment":"Flauhet","emotion_enjoyment":"Nytelse","emotion_enthrallment":"Fengslet","emotion_enthusiasm":"Entusiasme","emotion_envy":"Misunnelse","emotion_euphoria":"Eufori","emotion_exasperation":"Oppbrakt","emotion_excitement":"Spenning","emotion_exhilaration":"Oppr\u00f8mt","emotion_fear":"Frykt","emotion_ferocity":"Innbitt","emotion_fondness":"Forkj\u00e6rlighet","emotion_fright":"Skrekk","emotion_frustration":"Frustrasjon","emotion_fury":"Furisk","emotion_gaiety":"Munter","emotion_gladness":"Gladhet","emotion_glee":"Munter","emotion_gloom":"Dyster","emotion_glumness":"Dysterhet","emotion_grief":"Sorg","emotion_grouchiness":"Grettenhet","emotion_grumpiness":"Grettenhet","emotion_guilt":"Skyld","emotion_happiness":"Lykke","emotion_hate":"Hat","emotion_homesickness":"Hjemlengsel","emotion_hope":"H\u00e5p","emotion_hopelessness":"H\u00e5pl\u00f8shet","emotion_horror":"Skrekk","emotion_hostility":"Fiendtlighet","emotion_humiliation":"Ydmykelse","emotion_hurt":"Vondt","emotion_hysteria":"Hysteri","emotion_infatuation":"Blindt forelsket","emotion_insecurity":"Usikkerhet","emotion_insult":"Forn\u00e6rmelse","emotion_irritation":"Irritasjon","emotion_isolation":"Isolert","emotion_jealousy":"Sjalusi","emotion_jolliness":"Overlykkelig","emotion_joviality":"Jovial","emotion_joy":"Glede","emotion_jubilation":"Jubel","emotion_liking":"Liker","emotion_loathing":"Avsky","emotion_loneliness":"Ensomhet","emotion_longing":"Lengsel","emotion_love":"Kj\u00e6rlighet","emotion_lust":"Lyst","emotion_melancholy":"Melankoli","emotion_misery":"Miserere","emotion_mortification":"Fortred","emotion_neglect":"Fors\u00f8mt","emotion_nervousness":"Nerv\u00f8s","emotion_optimism":"Optimisme","emotion_outrage":"Skandal\u00f8s","emotion_panic":"Panikk","emotion_passion":"Lidenskapelig","emotion_pity":"Medynk","emotion_pleasure":"Nytelse","emotion_pride":"Stolthet","emotion_primary_anger":"Sinne","emotion_primary_fear":"Frykt","emotion_primary_joy":"Glede","emotion_primary_love":"Kj\u00e6rlighet","emotion_primary_sadness":"Sorg","emotion_primary_surprise":"Overraskelse","emotion_rage":"Raseri","emotion_rapture":"Henf\u00f8relse","emotion_regret":"Anger","emotion_rejection":"Avvisning","emotion_relief":"Lettet","emotion_remorse":"Anger","emotion_resentment":"Bitterhet","emotion_revulsion":"Frast\u00f8tende","emotion_sadness":"Tristhet","emotion_satisfaction":"Forn\u00f8yd","emotion_scorn":"Forakt","emotion_secondary_affection":"Affeksjon","emotion_secondary_cheerfulness":"Oppstemt","emotion_secondary_contentment":"Forn\u00f8yd","emotion_secondary_disappointment":"Skuffelse","emotion_secondary_disgust":"Ekkel","emotion_secondary_enthrallment":"Fengslet","emotion_secondary_envy":"Misunnelse","emotion_secondary_exasperation":"Irritasjon","emotion_secondary_horror":"Skrekk","emotion_secondary_irritation":"Irritasjon","emotion_secondary_longing":"Lengsel","emotion_secondary_lust":"Lyst","emotion_secondary_neglect":"Fors\u00f8mt","emotion_secondary_nervousness":"Nerv\u00f8sitet","emotion_secondary_optimism":"Optimisme","emotion_secondary_pride":"Stolthet","emotion_secondary_rage":"Raseri","emotion_secondary_relief":"Lettet","emotion_secondary_sadness":"Sorg","emotion_secondary_shame":"Skam","emotion_secondary_suffering":"Lidelse","emotion_secondary_surprise":"Overraskelse","emotion_secondary_sympathy":"Sympati","emotion_secondary_zest":"Glede","emotion_sentimentality":"Sentimentalitet","emotion_shame":"Skam","emotion_shock":"Sjokk","emotion_sorrow":"Sorg","emotion_spite":"Uvilje","emotion_suffering":"Lidelse","emotion_surprise":"Overrasket","emotion_sympathy":"Sympati","emotion_tenderness":"\u00d8mhet","emotion_tenseness":"Spent","emotion_terror":"Terror","emotion_thrill":"Spennende","emotion_uneasiness":"Ubehag","emotion_unhappiness":"Ulykkelig","emotion_vengefulness":"Hevnlyst","emotion_woe":"Ve","emotion_worry":"Bekymret","emotion_wrath":"Vrede","emotion_zeal":"Iver","emotion_zest":"Iver","error_help":"Vi er straks tilbake.","error_id":"Feilmelding: :id","error_maintenance":"Vedlikehold p\u00e5g\u00e5r. Vi er straks tilbake.","error_no_term":"Det finnes ingen policy for denne instansen enn\u00e5.","error_save":"Lagringen av opplysninger feilet.","error_title":"Oops! Noe gikk galt.","error_try_again":"Noe gikk galt. Pr\u00f8v igjen.","error_twitter":"F\u00f8lg oss p\u00e5 Twitter<\/a> for \u00e5 f\u00e5 beskjed om n\u00e5r vi er tilbake.","error_unauthorized":"Du har ikke rettigheter til \u00e5 redigere dette.","error_unavailable":"Tjenesten er ikke tilgjengelig","error_user_account":"Denne brukeren tilh\u00f8rer ikke den oppgitte kontoen.","file_selected":"\u00c9n fil valgt\u2026|{count} filer valgt\u2026","filter":"Filtrer listen","footer_modal_version_release_away":"Du er 1 versjon bak den siste tilgjengelige versjonen. Du burde oppdatere ditt system.|Du er :number versjoner bak den siste tilgjengelige versjonen. Du burde oppdatere ditt system.","footer_modal_version_whats_new":"Hva er nytt","footer_new_version":"En ny versjon av Monica er tilgjengelig","footer_newsletter":"Nyhetsbrev","footer_privacy":"Personvernerkl\u00e6ring","footer_release":"Merknader om programvareutgaven","footer_remarks":"Kommentarer?","footer_send_email":"Send oss en e-post","footer_source_code":"Bidra","footer_version":"Versjon: :version","gender_female":"Kvinne","gender_male":"Mann","gender_no_gender":"Ingen kj\u00f8nn","gender_none":"Vil ikke oppgi","go_back":"Tilbake","header_changelog_link":"Produktendringer","header_logout_link":"Logg av","header_settings_link":"Innstillinger","load_more":"Last flere","loading":"Laster inn\u2026","main_nav_activities":"Aktiviteter","main_nav_cta":"Legg til personer","main_nav_dashboard":"Oversikt","main_nav_family":"Kontakter","main_nav_journal":"Journal","main_nav_tasks":"Oppgaver","markdown_description":"Vil du pynte p\u00e5 teksten din? Vi st\u00f8tter Markdown for \u00e5 legge til fete typer, kursiv, lister, og mer.","markdown_link":"Les dokumentasjon","new":"ny","no":"Nei","percent_uploaded":"{percent} % lastet opp","relationship_type_bestfriend":"bestevenn","relationship_type_bestfriend_female":"bestevenninne","relationship_type_bestfriend_female_with_name":"Bestevenn av :name","relationship_type_bestfriend_with_name":"Bestevenn av :name","relationship_type_boss":"sjef","relationship_type_boss_female":"sjef","relationship_type_boss_female_with_name":"Sjefen til :name","relationship_type_boss_with_name":"Sjefen til :name","relationship_type_child":"s\u00f8nn","relationship_type_child_female":"datter","relationship_type_child_female_with_name":"datter til :name","relationship_type_child_with_name":"s\u00f8nn til :name","relationship_type_colleague":"kollega","relationship_type_colleague_female":"kollega","relationship_type_colleague_female_with_name":"Kollega av :name","relationship_type_colleague_with_name":"Kollega av :name","relationship_type_cousin":"fetter","relationship_type_cousin_female":"kusine","relationship_type_cousin_female_with_name":"Kusinen til :name","relationship_type_cousin_with_name":"Fetteren til :name","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":"date med :name","relationship_type_date_with_name":"date med :name","relationship_type_ex":"ekskj\u00e6reste","relationship_type_ex_female":"ekskj\u00e6reste","relationship_type_ex_female_with_name":"ekskj\u00e6resten til :name","relationship_type_ex_husband":"eksmann","relationship_type_ex_husband_female":"ekskone","relationship_type_ex_husband_female_with_name":"Ekskona til :name","relationship_type_ex_husband_with_name":"Eksmannen til :name","relationship_type_ex_with_name":"ekskj\u00e6resten til :name","relationship_type_friend":"venn","relationship_type_friend_female":"venninne","relationship_type_friend_female_with_name":"Venn av :name","relationship_type_friend_with_name":"Venn av :name","relationship_type_godfather":"gudfar","relationship_type_godfather_female":"gudmor","relationship_type_godfather_female_with_name":"Gudmoren til :name","relationship_type_godfather_with_name":"Gudfaren til :name","relationship_type_godson":"gudbarn","relationship_type_godson_female":"gudbarn","relationship_type_godson_female_with_name":"Gudbarnet til :name","relationship_type_godson_with_name":"Gudbarnet til :name","relationship_type_grandchild":"barnebarn","relationship_type_grandchild_female":"barnebarn","relationship_type_grandchild_female_with_name":"Barnebarnet til :name","relationship_type_grandchild_with_name":"Barnebarnet til :name","relationship_type_grandparent":"bestefar","relationship_type_grandparent_female":"bestemor","relationship_type_grandparent_female_with_name":"Bestemoren til :name","relationship_type_grandparent_with_name":"Bestefaren til :name","relationship_type_group_family":"Familieforhold","relationship_type_group_friend":"Venneforhold","relationship_type_group_love":"Kj\u00e6rlighetsforhold","relationship_type_group_other":"Andre forhold","relationship_type_group_work":"Kollegaforhold","relationship_type_inlovewith":"forelsket i","relationship_type_inlovewith_female":"forelsket i","relationship_type_inlovewith_female_with_name":"noen :name er forelsket i","relationship_type_inlovewith_with_name":"noen :name er forelsket i","relationship_type_lovedby":"elsket av","relationship_type_lovedby_female":"elsket av","relationship_type_lovedby_female_with_name":":name sin hemmelige elskerinne","relationship_type_lovedby_with_name":":name sin hemmelige elsker","relationship_type_lover":"elsker","relationship_type_lover_female":"elskerinne","relationship_type_lover_female_with_name":"elskerinnen til :name","relationship_type_lover_with_name":"elskeren til :name","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":"Mentor til :name","relationship_type_mentor_with_name":"Mentor til :name","relationship_type_nephew":"nev\u00f8","relationship_type_nephew_female":"niese","relationship_type_nephew_female_with_name":"Niesen til :name","relationship_type_nephew_with_name":"Nev\u00f8en til :name","relationship_type_parent":"far","relationship_type_parent_female":"mor","relationship_type_parent_female_with_name":"mor til :name","relationship_type_parent_with_name":"far til :name","relationship_type_partner":"kj\u00e6reste","relationship_type_partner_female":"kj\u00e6reste","relationship_type_partner_female_with_name":"kj\u00e6resten til :name","relationship_type_partner_with_name":"kj\u00e6resten til :name","relationship_type_protege":"prot\u00e9g\u00e9","relationship_type_protege_female":"prot\u00e9g\u00e9","relationship_type_protege_female_with_name":"prot\u00e9g\u00e9 til :name","relationship_type_protege_with_name":"prot\u00e9g\u00e9 til :name","relationship_type_sibling":"bror","relationship_type_sibling_female":"s\u00f8ster","relationship_type_sibling_female_with_name":"S\u00f8steren til :name","relationship_type_sibling_with_name":"Broren til :name","relationship_type_spouse":"ektefelle","relationship_type_spouse_female":"ektefelle","relationship_type_spouse_female_with_name":"ektefellen til :name","relationship_type_spouse_with_name":"ektefellen til :name","relationship_type_stepchild":"stes\u00f8nn","relationship_type_stepchild_female":"stedatter","relationship_type_stepchild_female_with_name":"Stedatteren til :name","relationship_type_stepchild_with_name":"Stes\u00f8nnen til :name","relationship_type_stepparent":"stefar","relationship_type_stepparent_female":"stemor","relationship_type_stepparent_female_with_name":"Stemoren til :name","relationship_type_stepparent_with_name":"stefar til :name","relationship_type_subordinate":"underordnet","relationship_type_subordinate_female":"underordnet","relationship_type_subordinate_female_with_name":"Underordnet til :name","relationship_type_subordinate_with_name":"Underordnet til :name","relationship_type_uncle":"onkel","relationship_type_uncle_female":"tante","relationship_type_uncle_female_with_name":"Tanten til :name","relationship_type_uncle_with_name":"Onkelen til :name","remove":"Fjern","retry":"Pr\u00f8v igjen","revoke":"Tilbakekall","save":"Lagre","save_close":"Lagre og lukk","today":"i dag","type":"Type","unknown":"Jeg vet ikke","update":"Oppdater","upgrade":"Oppgrader for \u00e5 l\u00e5se opp","upload":"Last opp","verify":"Bekreft","weather_clear-day":"Klart (dag)","weather_clear-night":"Klart (natt)","weather_cloudy":"Overskyet","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"V\u00e6ret","weather_fog":"T\u00e5ke","weather_partly-cloudy-day":"Delvis skyet (dag)","weather_partly-cloudy-night":"Delvis skyet (natt)","weather_rain":"Regn","weather_sleet":"Sludd","weather_snow":"Sn\u00f8","weather_wind":"Vind","with":"med","yes":"Ja","yesterday":"i g\u00e5r","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Tofaktorautentiseringskode","2fa_otp_help":"\u00c5pne din To-faktor autentiseringsapp og kopier koden","2fa_recuperation_code":"Skriv inn din tofaktorgjenopprettingskode","2fa_title":"To-faktor-autentisering","2fa_wrong_validation":"To-faktor autentisering mislyktes.","back_homepage":"Tilbake til hjemmesiden","button_remember":"Husk meg","change_language":"Endre spr\u00e5k til :lang","change_language_title":"Bytt spr\u00e5k:","confirmation_again":"Hvis du vil endre din e-postadresse kan du klikke her<\/a>.","confirmation_check":"F\u00f8r du fortsetter m\u00e5 du sjekke e-posten din for verifiseringslenken.","confirmation_fresh":"En bekreftelseslenke har blitt sendt til din e-postadresse.","confirmation_request_another":"Hvis du ikke mottok e-posten, klikk her for \u00e5 be om en ny<\/a>.","confirmation_title":"Verifiser din e-postadresse","create_account":"Opprett den f\u00f8rste kontoen ved \u00e5 registrere deg<\/a>","email":"E-post","email_change_current_email":"N\u00e5v\u00e6rende e-postadresse:","email_change_new":"Ny e-postadresse","email_change_title":"Endre e-postadresse","email_changed":"Din e-postadresse har blitt endret. Sjekk din e-postkasse for \u00e5 validere den nye adressen.","failed":"Brukernavn eller passord stemmer ikke.","login":"Logg p\u00e5","login_again":"Vennligst logg inn p\u00e5 kontoen din igjen","login_to_account":"Logg p\u00e5 kontoen din","login_with_recovery":"Logg inn med en gjenopprettingskode","mfa_auth_otp":"Autentiser med din to-faktor enhet","mfa_auth_webauthn":"Autentiser med en sikkerhetsn\u00f8kkel (WebAuthn)","not_authorized":"Du har ikke tilgang","password":"Passord","password_forget":"Glemt passord?","password_reset":"Tilbakestill passordet ditt","password_reset_action":"Tilbakestill passord","password_reset_email":"E-postadresse","password_reset_email_content":"Klikk her for \u00e5 tilbakestille passordet:","password_reset_password":"Passord","password_reset_password_confirm":"Bekreft passord","password_reset_send_link":"Send lenke for tilbakestilling av passord","password_reset_title":"Tilbakestill passord","recovery":"Gjenopprettingskode","register_action":"Registrer","register_create_account":"Du m\u00e5 opprette en konto for \u00e5 bruke Monica","register_email":"Oppgi en gyldig e-postadresse","register_email_example":"du@hjem","register_firstname":"Fornavn","register_firstname_example":"f.eks. Jon","register_invitation_email":"Av sikkerhetsgrunner kan du oppgi e-postadressen til personen som har invitert deg til \u00e5 delta i denne kontoen. Denne informasjonen er gitt i invitasjonse-posten.","register_lastname":"Etternavn","register_lastname_example":"f.eks. Smith","register_login":"Logg inn<\/a> hvis du allerede har en konto.","register_password":"Passord","register_password_confirmation":"Passord (bekreft)","register_password_example":"Skriv inn et sikkert passord","register_policy":"Registrering bekrefter at du har lest og godtar v\u00e5r personvernerkl\u00e6ring<\/a> og v\u00e5re brukervilk\u00e5r<\/a>.","register_title_create":"Opprett konto","register_title_welcome":"Velkommen til din nyinstallerte Monica-instans","signup":"Registrer deg","signup_disabled":"Beklager, men nye registreringer er for tiden ikke tillatt","signup_error":"Det oppstod en feil ved fors\u00f8k p\u00e5 \u00e5 registrere brukeren","signup_no_account":"Mangler du konto?","throttle":"Du har fors\u00f8kt \u00e5 logge inn for mange ganger. Pr\u00f8v igjen om :seconds sekunder.","use_recovery":"Eller du kan bruke en gjenopprettingskode<\/a>"},"changelog":{"note":"Merk: Denne siden er dessverre bare p\u00e5 engelsk.","title":"Produktendringer"},"dashboard":{"dashboard_blank_cta":"Legg til din f\u00f8rste kontakt","dashboard_blank_description":"Monica er applikasjonen hvor du kan organisere alt du har \u00e5 gj\u00f8re med personene du bryr deg om.","dashboard_blank_illustration":"Illustrasjon av Freepik<\/a>","dashboard_blank_title":"Velkommen til din konto!","debts_you_owe":"Du skylder","notes_title":"Du har ingen uthevede notater enn\u00e5.","product_changes":"Produktendringer","product_view_details":"Vis detaljer","reminders_next_months":"Hendelser de neste 3 m\u00e5nedene","reminders_none":"Ingen p\u00e5minnelser for denne m\u00e5neden.","statistics_activities":"Aktiviteter","statistics_contacts":"Kontakter","statistics_gifts":"Gaver","tab_calls_blank":"Du har ikke logget noen samtaler enda.","tab_debts":"Gjeld","tab_debts_blank":"Du har ikke loggf\u00f8rt noen gjeld enn\u00e5.","tab_favorite_notes":"Favorittnotater","tab_recent_calls":"Nylige anrop","tab_tasks":"Oppgaver","tab_tasks_blank":"Du har ingen oppgaver enda.","task_add_cta":"Ny oppgave","tasks_add_note":"Trykk Enter<\/kbd> for \u00e5 legge til oppgave.","tasks_add_task_placeholder":"Hva handler denne oppgaven om?","tasks_tab_your_contacts":"Oppgaver knyttet til kontaktene dine","tasks_tab_your_tasks":"Dine oppgaver"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"d.m","short_date_year":"d.m.Y","short_date_year_time":"d.m.Y H:i","short_day":"D","short_month":"m","short_month_year":"m.y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Er du sikker p\u00e5 at du vil slette denne journaloppf\u00f8ringen?","entry_delete_success":"Journaloppf\u00f8ringen har blitt slettet.","journal_add":"Legg til journaloppf\u00f8ring","journal_add_comment":"Vil du utdype i en kommentar (valgfritt)?","journal_add_cta":"Lagre","journal_add_date":"Dato","journal_add_post":"Innlegg","journal_add_title":"Tittel (valgfritt)","journal_blank_cta":"Legg til din f\u00f8rste journaloppf\u00f8ring","journal_blank_description":"Journalen lar deg skrive innlegg slik at du husker hva som skjer i l\u00f8pet av en dag.","journal_come_back":"Takk. Kom tilbake i morgen for \u00e5 vurdere dagen din igjen.","journal_created_at":"Opprettet {date}","journal_created_automatically":"Opprettet automatisk","journal_description":"Merk: Journalen viser b\u00e5de manuelle journaloppf\u00f8ringer og automatiske innlegg som aktiviteter registrert p\u00e5 dine kontakter. Du kan slette journaloppf\u00f8ringer, men for \u00e5 fjerne aktiviteter m\u00e5 du fjerne dem fra kontaktens side.","journal_edit":"Rediger en journaloppf\u00f8ring","journal_empty":"Tom journal","journal_entry_rate":"Du vurderte din dag.","journal_entry_type_activity":"Aktivitet","journal_entry_type_journal":"Journalinnlegg","journal_rate":"Hvordan var dagen din? Du kan vurdere den \u00e9n gang om dagen.","journal_show_comment":"Vis kommentar"},"logs":{"contact_log_contact_created":"Opprettet ny kontakt.","contact_log_contact_description_cleared":"Fjernet beskrivelsen.","contact_log_contact_description_updated":"Oppdatert kontaktbeskrivelsen.","contact_log_contact_work_updated":"Oppdatert arbeidsinformasjon.","settings_log_company_created":"Opprettet en bedrift kalt :name.","settings_log_contact_created_with_name":"La til :name som kontakt.","settings_log_contact_description_cleared_with_name":"Fjernet beskrivelsen av :name.","settings_log_contact_description_updated_with_name":"Oppdatert beskrivelsen av :name.","settings_log_contact_work_updated_with_name":"Oppdatert arbeidsinformasjonen til :name."},"mail":{"comment":"Kommentar: :comment","confirmation_email_bottom":"Hvis du ikke opprettet noen konto hos oss trenger du ikke gj\u00f8re noe.","confirmation_email_button":"Verifiser e-postadressen","confirmation_email_intro":"For \u00e5 verifisere e-postadressen din, trykk p\u00e5 knappen nedenfor","confirmation_email_title":"Monica - verifiser e-post","footer_contact_info":"Legg til, vis, suppler, og endre informasjon om denne kontakten:","footer_contact_info2":"Se profilen til :name","footer_contact_info2_link":"Se profilen til :name: :url","for":"For: :name","greetings":"Hei :username","invitation_button":"Akseptert invitasjon","invitation_expiration":"Lenken utl\u00f8per om :count dager.","invitation_intro":"Du har blitt invitert av :name (:email) til \u00e5 bruke Monica, et hyggelig verkt\u00f8y for \u00e5 holde styr p\u00e5 dine forhold.","invitation_link":"For \u00e5 akseptere invitasjonen, trykk p\u00e5 lenken under:","invitation_title":"Monica - :name har invitert deg","notification_description":"Om :count dager (p\u00e5 :date) vil f\u00f8lgende skje:","notification_subject_line":"Du har \u00e9n kommende hendelse","notifications_footer":"Hvis du har problemer med \u00e5 klikke p\u00e5 \":actionText\"-knappen, kopier og lim inn URL-adressen nedenfor i din nettleser: [:actionURL](:actionURL)","notifications_hello":"Hallo!","notifications_regards":"Vennlig hilsen","notifications_rights":"Alt innhold er opphavsrettslig beskyttet","notifications_whoops":"Oops!","password_reset_bottom":"Hvis du ikke ba om \u00e5 nullstille passordet ditt trenger du ikke gj\u00f8re noe.","password_reset_button":"Tilbakestill passord","password_reset_expiration":"Denne lenken vil utl\u00f8pe om :count minutter.","password_reset_intro":"Du f\u00e5r denne e-posten fordi vi har f\u00e5tt en foresp\u00f8rsel om \u00e5 tilbakestille passordet for din konto.","password_reset_title":"Monica - foresp\u00f8rsel om \u00e5 nullstille passord","stay_in_touch_subject_description":"Du ba om \u00e5 bli minnet om \u00e5 holde kontakt med :name hver :frequency dag.|Du ba om \u00e5 bli minnet om \u00e5 holde kontakt med :name hver :frequency dag.","stay_in_touch_subject_line":"Hold kontakt med :name","subject_line":"P\u00e5minnelse for :contact","want_reminded_of":"Du \u00f8nsket \u00e5 bli minnet om :reason"},"pagination":{"next":"Neste \u276f","previous":"\u276e Forrige"},"passwords":{"changed":"Passordet er endret.","invalid":"N\u00e5v\u00e6rende passord er ikke riktig.","reset":"Ditt passord har blitt tilbakestilt!","sent":"Hvis e-posten du skrev inn finnes i v\u00e5rt brukerregister, s\u00e5 har du blitt sendt en lenke for \u00e5 tilbakestille passordet.","throttled":"Vennligst vent f\u00f8r du pr\u00f8ver igjen.","token":"Denne tilbakestillingsn\u00f8kkelen er ugyldig.","user":"Hvis e-posten du skrev inn finnes i v\u00e5rt brukerregister, s\u00e5 har du blitt sendt en lenke for \u00e5 tilbakestille passordet."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Arkiver kontakt","contact_archive_help":"Arkiverte kontakter vises ikke p\u00e5 kontaktlisten, men vises fortsatt i s\u00f8keresultatene.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Ta kontakt tilbake fra arkivet","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Rediger kontaktinformasjon","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family\u2019s family has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn\u2019t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name\u2019s personal information","information_edit_unknown":"I do not know this person\u2019s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"Du ser p\u00e5 arkiverte kontakter. Se listen over aktive kontakter<\/a> i stedet.","list_link_to_archived_contacts":"Vis arkiverte kontakter","me":"Dette er deg","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Gratuler :name med dagen","people_add_birthday_reminder_deceased":"P\u00e5 denne dagen ville det v\u00e6rt bursdagen til :name","people_add_cta":"Legg til","people_add_firstname":"Fornavn","people_add_gender":"Kj\u00f8nn","people_add_import":"Vil du importere kontakter<\/a>?","people_add_lastname":"Etternavn (valgfritt)","people_add_middlename":"Mellomnavn (valgfritt)","people_add_missing":"Ingen kontakt funnet, legg til en n\u00e5","people_add_new":"Legg til ny person","people_add_nickname":"Kallenavn (valgfritt)","people_add_reminder_for_birthday":"Opprett en \u00e5rlig p\u00e5minner om denne bursdagen","people_add_success":":name har blitt opprettet","people_add_title":"Legg til ny kontakt","people_delete_confirmation":"Er du sikker p\u00e5 at du vil slette denne kontakten? Sletting er permanent.","people_delete_message":"Slett kontakt","people_delete_success":"Kontakten er blitt slettet","people_edit_email_error":"Det finnes allerede en kontakt med denne e-postadressen. Velg en annen.","people_export":"Eksporter som vCard","people_list_account_upgrade_cta":"Oppgrader n\u00e5","people_list_account_upgrade_title":"Oppgrader din konto for \u00e5 l\u00e5se opp begrensninger.","people_list_account_usage":"Din konto inneholder: :current\/:limit kontakter","people_list_blank_cta":"Legg til noen","people_list_blank_title":"Du har ikke noen i kontoen din enn\u00e5","people_list_clear_filter":"T\u00f8m filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Viser alle kontakter som er merket med","people_list_filter_untag":"Viser alle kontakter uten tags","people_list_firstnameAZ":"Sorter etter fornavn A \u2192 Z","people_list_firstnameZA":"Sorter etter fornavn Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Sist konsultert:","people_list_lastactivitydateNewtoOld":"Sorter etter siste aktivitetsdato nyeste til eldste","people_list_lastactivitydateOldtoNew":"Sorter etter siste aktivitetsdato eldste til nyeste","people_list_lastnameAZ":"Sorter etter etternavn A \u2192 Z","people_list_lastnameZA":"Sorter etter etternavn Z \u2192 A","people_list_number_kids":"1 barn|:count barn","people_list_number_reminders":"1 p\u00e5minnelse|:count p\u00e5minnelser","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sorter","people_list_stats":"1 kontakt|:count kontakter","people_list_untagged":"Vis kontakter uten tags","people_not_found":"Kontakten ble ikke funnet","people_save_and_add_another_cta":"Lagre og legg til ny","people_search":"Search your contacts...","people_search_all":"Alle","people_search_next":"Neste","people_search_no_results":"Ingen resultater funnet","people_search_of":"av","people_search_page":"Side","people_search_prev":"Forrige","people_search_rows_per_page":"Rader per side","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Kontaktinformasjon","section_personal_activities":"Aktiviteter","section_personal_gifts":"Gaver","section_personal_notes":"Notater","section_personal_reminders":"P\u00e5minnelser","section_personal_tasks":"Oppgaver","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information updated","work_edit_title":"Update :name\u2019s job information","work_information":"Work information"},"reminder":{"type_birthday":"\u00d8nsk lykke til med dagen til","type_birthday_kid":"\u00d8nsk gratulerer med dagen til barnet til","type_email":"E-post","type_hangout":"Heng med","type_lunch":"Lunsj med","type_phone_call":"Ring"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Aktiver to-faktor autentisering for \u00e5 \u00f8ke sikkerheten p\u00e5 kontoen din.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Sett opp to-faktor-autentisering","2fa_otp_title":"To-faktor autentiserings mobilapp","2fa_title":"To-faktor-autentisering","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Klikk p\u00e5 knappen for \u00e5 starte eksporteringen. Det kan ta noen minutter \u00e5 behandle eksporten \u2013 v\u00e6r t\u00e5lmodig, klikk ikke flere ganger.","export_sql_cta":"Eksporter data til SQL","export_sql_explanation":"\u00c5 eksportere dine kontodata i SQL-format lar deg ta med data for \u00e5 importere det til din egen Monica-instans. Dette er som regel bare verdifullt hvis du vil kj\u00f8re Monica p\u00e5 egen server.","export_sql_link_instructions":"Les instruksjonene<\/a> for \u00e5 l\u00e6re hvordan du importerer denne filen til din instans.","export_title":"Eksporter dine kontodata","export_title_sql":"Eksporter data til SQL","firstname":"Fornavn","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Etternavn","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Velg deg selv","me_choose_placeholder":"Velg deg selv","me_help":"Dette er den kontakten som representerer deg<\/em> i Monica","me_no_contact":"Ingen kontakt valgt.","me_remove_contact":"Fjern tilknytning","me_select":"Velg en kontakt","me_select_click":"Klikk her for \u00e5 velge en kontakt.","me_title":"Meg som kontakt","name":"Your name: :name","name_order":"Rekkef\u00f8lge p\u00e5 navn","name_order_firstname_lastname":" \u2013 Jon Smith","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Smith Jon","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Endre passord","password_change":"Endre passord","password_current":"Gjeldende passord","password_current_placeholder":"Skriv inn ditt n\u00e5v\u00e6rende passord","password_new1":"Nytt passord","password_new1_placeholder":"Skriv inn det nye passordet ditt","password_new2":"Bekreft nytt passord","password_new2_placeholder":"Gjenta nytt passord","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Endre sikkerhetsinnstillinger for din konto.","security_title":"Sikkerhet","settings_success":"Preferences updated!","sidebar_personalization":"Tilpass","sidebar_settings":"Kontoinnstillinger","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Overv\u00e5kningslogg","sidebar_settings_dav":"DAV-ressurser","sidebar_settings_export":"Eksporter data","sidebar_settings_import":"Importer data","sidebar_settings_security":"Sikkerhet","sidebar_settings_storage":"Lagring","sidebar_settings_subscriptions":"Abonnementer","sidebar_settings_tags":"Tag-administrasjon","sidebar_settings_users":"Brukere","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"Generell informasjon","title_i18n":"Internasjonale innstillinger","title_layout":"Visningsoppsett","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":":attribute m\u00e5 bli godtatt.","active_url":":attribute er ikke en gyldig URL.","after":":attribute m\u00e5 v\u00e6re en dato etter :date.","after_or_equal":":attribute m\u00e5 tidligst v\u00e6re datoen :date.","alpha":":attribute kan kun inneholde bokstaver.","alpha_dash":":attribute kan bare inneholde bokstaver, tall, bindestrek, og understrek.","alpha_num":":attribute kan bare inneholde tall og bokstaver.","array":":attribute m\u00e5 v\u00e6re en matrise.","attributes":[],"before":":attribute m\u00e5 v\u00e6re en dato tidligere enn :date.","before_or_equal":":attribute m\u00e5 v\u00e6re en dato f\u00f8r eller lik :date.","between":{"array":":attribute m\u00e5 v\u00e6re mellom :min og :max elementer.","file":":attribute m\u00e5 v\u00e6re mellom :min og :max kilobytes.","numeric":":attribute m\u00e5 v\u00e6re mellom :min og :max.","string":":attribute m\u00e5 v\u00e6re mellom :min og :max tegn."},"boolean":":attribute m\u00e5 v\u00e6re sann eller usann.","confirmed":":attribute bekreftelsen stemmer ikke overens.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute er ikke en gyldig dato.","date_equals":":attribute m\u00e5 v\u00e6re en dato samsvarende med :date.","date_format":":attribute samsvarer ikke med formatet :format.","different":":attribute og :other m\u00e5 v\u00e6re forskjellige.","digits":"Attributtet :attribute m\u00e5 v\u00e6re :digits sifre.","digits_between":":attribute m\u00e5 v\u00e6re mellom :min og :max sifre.","dimensions":":attribute har ugyldig bildest\u00f8rrelse.","distinct":":attribute har en duplikatverdi.","email":":attribute m\u00e5 v\u00e6re en gyldig e-postadresse.","ends_with":":attribute m\u00e5 avsluttes med en av f\u00f8lgende: :values.","exists":"Valgt :attribute er ugyldig.","file":":attribute m\u00e5 v\u00e6re en fil.","filled":":attribute m\u00e5 inneholde en verdi.","gt":{"array":":attribute m\u00e5 inneholde flere enn :value elementer.","file":":attribute m\u00e5 v\u00e6re st\u00f8rre enn :value kilobytes.","numeric":":attribute m\u00e5 v\u00e6re st\u00f8rre enn :value.","string":":attribute m\u00e5 ha flere enn :value tegn."},"gte":{"array":":attribute m\u00e5 v\u00e6re :value elementer eller mer.","file":":attribute m\u00e5 v\u00e6re st\u00f8rre enn eller samsvarende med :value kilobytes.","numeric":":attribute m\u00e5 v\u00e6re st\u00f8rre enn eller samsvarende med :value.","string":":attribute m\u00e5 v\u00e6re st\u00f8rre enn eller samsvarende med :value tegn."},"image":":attribute m\u00e5 v\u00e6re et bilde.","in":"Valgt :attribute er ugyldig.","in_array":":attribute feltet finnes ikke i :other.","integer":":attribute m\u00e5 v\u00e6re ett helt tall.","ip":":attribute m\u00e5 v\u00e6re en gyldig IP-adresse.","ipv4":":attribute m\u00e5 v\u00e6re en gyldig IPv4-adresse.","ipv6":":attribute m\u00e5 v\u00e6re en gyldig IPv6-adresse.","json":":attribute m\u00e5 v\u00e6re en gyldig JSON-streng.","lt":{"array":":attribute m\u00e5 ha f\u00e6rre enn :value elementer.","file":":attribute m\u00e5 v\u00e6re mindre enn :value kilobytes.","numeric":":attribute m\u00e5 v\u00e6re mindre enn :value.","string":":attribute m\u00e5 v\u00e6re f\u00e6rre enn :value tegn."},"lte":{"array":":attribute m\u00e5 ikke inneholde flere enn :value elementer.","file":":attribute m\u00e5 v\u00e6re mindre enn eller samsvarende med :value kilobytes.","numeric":":attribute m\u00e5 v\u00e6re mindre enn eller samsvarende med :value.","string":":attribute m\u00e5 v\u00e6re mindre enn eller tilsvarende :value tegn."},"max":{"array":":attribute kan ikke inneholde mer enn :max elementer.","file":":attribute kan ikke v\u00e6re st\u00f8rre enn :max kilobytes.","numeric":":attribute kan ikke v\u00e6re st\u00f8rre enn :max.","string":":attribute kan ikke v\u00e6re st\u00f8rre enn :max tegn."},"mimes":":attribute m\u00e5 v\u00e6re av filtypen: :values.","mimetypes":":attribute m\u00e5 v\u00e6re av filtypen: :values.","min":{"array":":attribute m\u00e5 inneholde :min elementer.","file":":attribute m\u00e5 v\u00e6re minimum :min kilobytes.","numeric":":attribute m\u00e5 v\u00e6re minst :min.","string":":attribute m\u00e5 ha minst :min tegn."},"not_in":"Valgt :attribute er ugyldig.","not_regex":"Formatet er ugyldig (:attribute).","numeric":":attribute m\u00e5 v\u00e6re et tall.","password":"Passordet er feil.","present":":attribute m\u00e5 finnes.","regex":"Formatet er ugyldig (:attribute).","required":":attribute feltet er p\u00e5krevd.","required_if":":attribute er p\u00e5krevd n\u00e5r :oher er :value.","required_unless":":attribute feltet er p\u00e5krevd med mindre :other er i :values.","required_with":":attribute er p\u00e5krevd n\u00e5r :values er tilstede.","required_with_all":":attribute er p\u00e5krevd n\u00e5r :values er tilstede.","required_without":":attribute kreves n\u00e5r ingen av :values er til stede.","required_without_all":":attribute er p\u00e5krevd n\u00e5r ingen av :values er tilstede.","same":":attribute og :other m\u00e5 v\u00e6re like.","size":{"array":":attribute m\u00e5 inneholde :size elementer.","file":":attribute m\u00e5 v\u00e6re :size kilobytes.","numeric":":attribute m\u00e5 v\u00e6re :size.","string":":attribute m\u00e5 v\u00e6re :size tegn."},"starts_with":":attribute m\u00e5 begynne med en av de f\u00f8lgende: :values.","string":":attribute m\u00e5 v\u00e6re en tekst.","timezone":":attribute m\u00e5 v\u00e6re en gyldig tidssone.","unique":":attribute er allerede opptatt.","uploaded":":attribute opplasting feilet.","url":"Formatet er ugyldig (:attribute).","uuid":":attribute m\u00e5 v\u00e6re en gyldig UUID.","vue":{"max":{"numeric":"{field} kan ikke v\u00e6re st\u00f8rre enn {max}.","string":"{field} m\u00e5 ikke v\u00e6re lengre enn {max} tegn."},"required":"{field} er p\u00e5krevd.","url":"{field} er ikke en gyldig URL."}}} diff --git a/public/js/langs/pt-BR.json b/public/js/langs/pt-BR.json deleted file mode 100644 index bba6e1d42b1..00000000000 --- a/public/js/langs/pt-BR.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Adicionar","another_day":"outro dia","application_description":"Monica \u00e9 uma ferramenta para gerenciar suas intera\u00e7\u00f5es com seus amigos, familiares e pessoas queridas.","application_og_title":"Fortale\u00e7a seu relacionamento com seus entes queridos. CRM online gratuito para amigos e fam\u00edlia.","application_title":"Monica \u2013 Gerenciador de relacionamento pessoal","back":"Voltar","breadcrumb_add_note":"Adicionar nota","breadcrumb_add_significant_other":"Adicionar companheiro(a)","breadcrumb_api":"API","breadcrumb_archived_contacts":"Contatos arquivados","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"Como se conheceram","breadcrumb_edit_note":"Editar nota","breadcrumb_edit_significant_other":"Editar companheiro(a)","breadcrumb_journal":"Di\u00e1rio","breadcrumb_list_contacts":"Lista de contatos","breadcrumb_profile":"Perfil de :name","breadcrumb_settings":"Configura\u00e7\u00f5es","breadcrumb_settings_export":"Exportar","breadcrumb_settings_import":"Importar","breadcrumb_settings_import_report":"Relat\u00f3rio de importa\u00e7\u00e3o","breadcrumb_settings_import_upload":"Enviar","breadcrumb_settings_personalization":"Personaliza\u00e7\u00e3o","breadcrumb_settings_security":"Seguran\u00e7a","breadcrumb_settings_security_2fa":"Autentica\u00e7\u00e3o de dois fatores","breadcrumb_settings_subscriptions":"Assinatura","breadcrumb_settings_tags":"Etiquetas","breadcrumb_settings_users":"Usu\u00e1rios","breadcrumb_settings_users_add":"Adicionar usu\u00e1rio","cancel":"Cancelar","close":"Fechar","compliance_desc":"Alteramos nossos Termos de Uso<\/a> e Pol\u00edtica de Privacidade<\/a>. Por lei, solicitamos que voc\u00ea os revise e aceite ambos para que possa continuar usando sua conta.","compliance_desc_end":"We don\u2019t do anything nasty with your data or account and will never do.","compliance_terms":"Aceitar os novos Termos e Pol\u00edtica de Privacidade","compliance_title":"Desculpa pelo inc\u00f4modo.","confirm":"Confirmar","contact_list_avatar":"Avatar","contact_list_description":"Descri\u00e7\u00e3o","contact_list_name":"Contato","copy":"Copiar","create":"Criar","date":"Data","dav_birthdays":"Anivers\u00e1rios","dav_birthdays_description":"Anivers\u00e1rios dos contatos :name's","dav_contacts":"Contatos","dav_contacts_description":"Contatos de :name","dav_tasks":"Tarefas","dav_tasks_description":"tarefas de :name","default_save_success":"Dados salvos com sucesso!","delete":"Excluir","delete_confirm":"Tem certeza?","done":"Conclu\u00eddo","download":"Baixar","edit":"Editar","emotion_adoration":"Adorado","emotion_affection":"Afei\u00e7\u00e3o","emotion_aggravation":"Aggravation","emotion_agitation":"Agita\u00e7\u00e3o","emotion_agony":"Agonia","emotion_alarm":"Alarme","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Divers\u00e3o","emotion_anger":"Raiva","emotion_anguish":"Anguish","emotion_annoyance":"Aborrecimento","emotion_anxiety":"Ansiedade","emotion_apprehension":"Apreens\u00e3o","emotion_arousal":"Agita\u00e7\u00e3o","emotion_astonishment":"Astonishment","emotion_attraction":"Atra\u00e7\u00e3o","emotion_bitterness":"Amargura","emotion_bliss":"Euforia","emotion_caring":"Cuidado","emotion_cheerfulness":"Felicidade","emotion_compassion":"Compaix\u00e3o","emotion_contempt":"Desd\u00e9m","emotion_contentment":"Satisfa\u00e7\u00e3o","emotion_defeat":"Derrota","emotion_dejection":"Dejection","emotion_delight":"Deleite","emotion_depression":"Depression","emotion_desire":"Desejo","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Nojo","emotion_dislike":"Desgosto","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Ang\u00fastia","emotion_dread":"Pavor","emotion_eagerness":"Ansiedade","emotion_ecstasy":"\u00caxtase","emotion_elation":"Exalta\u00e7\u00e3o","emotion_embarrassment":"Constrangimento","emotion_enjoyment":"Prazer","emotion_enthrallment":"Encanto","emotion_enthusiasm":"Entusiasmo","emotion_envy":"Inveja","emotion_euphoria":"Euforia","emotion_exasperation":"Exaspera\u00e7\u00e3o","emotion_excitement":"Excita\u00e7\u00e3o","emotion_exhilaration":"Exhilaration","emotion_fear":"Medo","emotion_ferocity":"Ferocidade","emotion_fondness":"Apre\u00e7o","emotion_fright":"Susto","emotion_frustration":"Frustra\u00e7\u00e3o","emotion_fury":"F\u00faria","emotion_gaiety":"Alegria","emotion_gladness":"Alegria","emotion_glee":"Alegria","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Mau humor","emotion_guilt":"Guilt","emotion_happiness":"Felicidade","emotion_hate":"\u00d3dio","emotion_homesickness":"Saudade","emotion_hope":"Esperan\u00e7a","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostilidade","emotion_humiliation":"Humilha\u00e7\u00e3o","emotion_hurt":"Hurt","emotion_hysteria":"Histeria","emotion_infatuation":"Fasc\u00ednio","emotion_insecurity":"Inseguran\u00e7a","emotion_insult":"Insulto","emotion_irritation":"Irrita\u00e7\u00e3o","emotion_isolation":"Isolamento","emotion_jealousy":"Ci\u00fame","emotion_jolliness":"Contente","emotion_joviality":"Jovialidade","emotion_joy":"Alegria","emotion_jubilation":"J\u00fabilo","emotion_liking":"Carinho","emotion_loathing":"Loathing","emotion_loneliness":"Solid\u00e3o","emotion_longing":"Desejo","emotion_love":"Amor","emotion_lust":"Cobi\u00e7a","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortifica\u00e7\u00e3o","emotion_neglect":"Neglig\u00eancia","emotion_nervousness":"Nervosismo","emotion_optimism":"Otimismo","emotion_outrage":"Ultraje","emotion_panic":"P\u00e2nico","emotion_passion":"Paix\u00e3o","emotion_pity":"Pena","emotion_pleasure":"Prazer","emotion_pride":"Orgulho","emotion_primary_anger":"Raiva","emotion_primary_fear":"Medo","emotion_primary_joy":"Alegria","emotion_primary_love":"Amor","emotion_primary_sadness":"Tristeza","emotion_primary_surprise":"Surpresa","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejei\u00e7\u00e3o","emotion_relief":"Al\u00edvio","emotion_remorse":"Remorse","emotion_resentment":"Ressentimento","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfa\u00e7\u00e3o","emotion_scorn":"Scorn","emotion_secondary_affection":"Afei\u00e7\u00e3o","emotion_secondary_cheerfulness":"Felicidade","emotion_secondary_contentment":"Satisfa\u00e7\u00e3o","emotion_secondary_disappointment":"Desapontado","emotion_secondary_disgust":"Nojo","emotion_secondary_enthrallment":"Encantado","emotion_secondary_envy":"Inveja","emotion_secondary_exasperation":"F\u00faria","emotion_secondary_horror":"Rep\u00fadio","emotion_secondary_irritation":"Irrita\u00e7\u00e3o","emotion_secondary_longing":"Desejo","emotion_secondary_lust":"Cobi\u00e7a","emotion_secondary_neglect":"Esquecido","emotion_secondary_nervousness":"Nervosismo","emotion_secondary_optimism":"Otimismo","emotion_secondary_pride":"Orgulho","emotion_secondary_rage":"Raiva","emotion_secondary_relief":"Al\u00edvio","emotion_secondary_sadness":"Tristeza","emotion_secondary_shame":"Vergonha","emotion_secondary_suffering":"Dor","emotion_secondary_surprise":"Surpreso","emotion_secondary_sympathy":"Simpatia","emotion_secondary_zest":"Entusiasmo","emotion_sentimentality":"Sentimental","emotion_shame":"Shame","emotion_shock":"Choque","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Sofrimento","emotion_surprise":"Surpresa","emotion_sympathy":"Simpatia","emotion_tenderness":"Ternura","emotion_tenseness":"Tens\u00e3o","emotion_terror":"Terror","emotion_thrill":"Emocionado\/a","emotion_uneasiness":"Inquieta\u00e7\u00e3o","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Preocupa\u00e7\u00e3o","emotion_wrath":"Ira","emotion_zeal":"Zelo","emotion_zest":"Anima\u00e7\u00e3o","error_help":"Voltaremos em breve.","error_id":"Error ID: :id","error_maintenance":"Manuten\u00e7\u00e3o em andamento. Voltaremos em breve.","error_no_term":"N\u00e3o h\u00e1 nenhuma regra para esta inst\u00e2ncia at\u00e9 o momento.","error_save":"Ocorreu um erro ao tentar salvar os dados.","error_title":"Ops! Algo deu errado.","error_try_again":"Algo deu errado. Por favor, tente novamente.","error_twitter":"Siga-nos no Twitter <\/a> para saber quando voltamos.","error_unauthorized":"Voc\u00ea n\u00e3o tem permiss\u00e3o para editar este recurso.","error_unavailable":"Servi\u00e7o indispon\u00edvel","error_user_account":"Esse usu\u00e1rio n\u00e3o pertence \u00e0 conta fornecida.","file_selected":"Um arquivo selecionado\u2026|{count} arquivos selecionados\u2026","filter":"Filtrar lista","footer_modal_version_release_away":"Sua instala\u00e7\u00e3o est\u00e1 1 vers\u00e3o atr\u00e1s da vers\u00e3o mais recente. Atualize para aproveitar as novidades.|Sua instala\u00e7\u00e3o est\u00e1 :number vers\u00f5es atr\u00e1s da vers\u00e3o mais recente. Atualize para aproveitar as novidades.","footer_modal_version_whats_new":"Novidades","footer_new_version":"Uma nova vers\u00e3o de Monica est\u00e1 dispon\u00edvel","footer_newsletter":"Newsletter","footer_privacy":"Pol\u00edtica de Privacidade","footer_release":"Notas da vers\u00e3o","footer_remarks":"Coment\u00e1rios?","footer_send_email":"Envie-nos um email","footer_source_code":"Contribuir","footer_version":"Vers\u00e3o: :version","gender_female":"Mulher","gender_male":"Homem","gender_no_gender":"Sem g\u00eanero","gender_none":"Prefiro n\u00e3o dizer","go_back":"Voltar","header_changelog_link":"Atualiza\u00e7\u00f5es de produtos","header_logout_link":"Sair","header_settings_link":"Configura\u00e7\u00f5es","load_more":"Carregar mais","loading":"Carregando\u2026","main_nav_activities":"Atividades","main_nav_cta":"Adicionar contatos","main_nav_dashboard":"Dashboard","main_nav_family":"Contatos","main_nav_journal":"Di\u00e1rio","main_nav_tasks":"Tarefas","markdown_description":"Want to format your text in a nice way? We support Markdown to add bold, italic, lists and more.","markdown_link":"Ler documenta\u00e7\u00e3o","new":"novo","no":"N\u00e3o","percent_uploaded":"{percent}% enviado","relationship_type_bestfriend":"melhor amigo","relationship_type_bestfriend_female":"melhor amiga","relationship_type_bestfriend_female_with_name":"melhor amiga de :name","relationship_type_bestfriend_with_name":"melhor amigo de :name","relationship_type_boss":"chefe","relationship_type_boss_female":"chefa","relationship_type_boss_female_with_name":":name do chefe","relationship_type_boss_with_name":"chefe de :name","relationship_type_child":"filho","relationship_type_child_female":"filha","relationship_type_child_female_with_name":"filha de :name","relationship_type_child_with_name":"filho de :name","relationship_type_colleague":"colega","relationship_type_colleague_female":"colega","relationship_type_colleague_female_with_name":"colega de :name","relationship_type_colleague_with_name":"colega de :name","relationship_type_cousin":"primo","relationship_type_cousin_female":"prima","relationship_type_cousin_female_with_name":"prima de :name","relationship_type_cousin_with_name":"primo de :name","relationship_type_date":"namorado","relationship_type_date_female":"namorada","relationship_type_date_female_with_name":"namorada de :name","relationship_type_date_with_name":"namorado de :name","relationship_type_ex":"ex-namorado","relationship_type_ex_female":"ex-namorada","relationship_type_ex_female_with_name":"ex-namorada de :name","relationship_type_ex_husband":"ex husband","relationship_type_ex_husband_female":"ex wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex wife","relationship_type_ex_husband_with_name":":name\u2019s ex husband","relationship_type_ex_with_name":"ex-namorado de :name","relationship_type_friend":"amigo","relationship_type_friend_female":"amiga","relationship_type_friend_female_with_name":"amiga de :name","relationship_type_friend_with_name":"amigo de :name","relationship_type_godfather":"padrinho","relationship_type_godfather_female":"madrinha","relationship_type_godfather_female_with_name":"madrinha de :name","relationship_type_godfather_with_name":"padrinho de :name","relationship_type_godson":"afilhado","relationship_type_godson_female":"afilhada","relationship_type_godson_female_with_name":"afilhada de :name","relationship_type_godson_with_name":"afilhado de :name","relationship_type_grandchild":"neto","relationship_type_grandchild_female":"neta","relationship_type_grandchild_female_with_name":"neta de :name","relationship_type_grandchild_with_name":"neto de :name","relationship_type_grandparent":"av\u00f4","relationship_type_grandparent_female":"av\u00f3","relationship_type_grandparent_female_with_name":"av\u00f3 de :name","relationship_type_grandparent_with_name":"av\u00f4 de :name","relationship_type_group_family":"Relacionamentos familiares","relationship_type_group_friend":"Relacionamentos de amizade","relationship_type_group_love":"Relacionamentos amorosos","relationship_type_group_other":"Outros tipos de rela\u00e7\u00f5es","relationship_type_group_work":"Relacionamentos profissionais","relationship_type_inlovewith":"apaixonado por","relationship_type_inlovewith_female":"apaixonada por","relationship_type_inlovewith_female_with_name":"algu\u00e9m que :name est\u00e1 apaixonada","relationship_type_inlovewith_with_name":"algu\u00e9m que :name est\u00e1 apaixonado","relationship_type_lovedby":"amado por","relationship_type_lovedby_female":"amada por","relationship_type_lovedby_female_with_name":"amor secreto de :name","relationship_type_lovedby_with_name":"amor secreto de :name","relationship_type_lover":"amante","relationship_type_lover_female":"amante","relationship_type_lover_female_with_name":"amante de :name","relationship_type_lover_with_name":"amante de :name","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentora","relationship_type_mentor_female_with_name":"mentora de :name","relationship_type_mentor_with_name":"mentor de :name","relationship_type_nephew":"sobrinho","relationship_type_nephew_female":"sobrinha","relationship_type_nephew_female_with_name":"sobrinha de :name","relationship_type_nephew_with_name":"sobrinho de :name","relationship_type_parent":"pai","relationship_type_parent_female":"m\u00e3e","relationship_type_parent_female_with_name":"m\u00e3e de :name","relationship_type_parent_with_name":"pai de :name","relationship_type_partner":"companheiro","relationship_type_partner_female":"companheira","relationship_type_partner_female_with_name":"companheira de :name","relationship_type_partner_with_name":"companheiro de :name","relationship_type_protege":"protegido","relationship_type_protege_female":"protegida","relationship_type_protege_female_with_name":"protegida de :name","relationship_type_protege_with_name":"protegido de :name","relationship_type_sibling":"irm\u00e3o","relationship_type_sibling_female":"irm\u00e3","relationship_type_sibling_female_with_name":"irm\u00e3 de :name","relationship_type_sibling_with_name":"irm\u00e3o de :name","relationship_type_spouse":"esposo","relationship_type_spouse_female":"esposa","relationship_type_spouse_female_with_name":"esposa de :name","relationship_type_spouse_with_name":"esposo de :name","relationship_type_stepchild":"enteado","relationship_type_stepchild_female":"enteada","relationship_type_stepchild_female_with_name":"enteada de :name","relationship_type_stepchild_with_name":"enteado de :name","relationship_type_stepparent":"padrasto","relationship_type_stepparent_female":"madrasta","relationship_type_stepparent_female_with_name":"madrasta de :name","relationship_type_stepparent_with_name":"padrasto de :name","relationship_type_subordinate":"funcion\u00e1rio","relationship_type_subordinate_female":"funcion\u00e1rio","relationship_type_subordinate_female_with_name":":name do funcionario","relationship_type_subordinate_with_name":":name do funcion\u00e1rio","relationship_type_uncle":"tio","relationship_type_uncle_female":"tia","relationship_type_uncle_female_with_name":"tia de :name","relationship_type_uncle_with_name":"tio de :name","remove":"Remover","retry":"Tentar novamente","revoke":"Revogar","save":"Salvar","save_close":"Salvar e fechar","today":"hoje","type":"Tipo","unknown":"Eu n\u00e3o sei","update":"Atualizar","upgrade":"Assine para desbloquear","upload":"Upload","verify":"Verificar","weather_clear-day":"Dia limpo","weather_clear-night":"Noite limpa","weather_cloudy":"Nublado","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Tempo atual","weather_fog":"Neblina","weather_partly-cloudy-day":"Parcialmente nublado (Dia)","weather_partly-cloudy-night":"Parcialmente nublado (Noite)","weather_rain":"Chuva","weather_sleet":"Granizo","weather_snow":"Neve","weather_wind":"Ventania","with":"com","yes":"Sim","yesterday":"ontem","zoom":"Zoom"},"auth":{"2fa_one_time_password":"C\u00f3digo de autentica\u00e7\u00e3o de dois fatores","2fa_otp_help":"Abra seu aplicativo para autentica\u00e7\u00e3o de dois fatores e copie o c\u00f3digo","2fa_recuperation_code":"Digite um c\u00f3digo de recupera\u00e7\u00e3o de dois fatores","2fa_title":"Autentica\u00e7\u00e3o de dois fatores","2fa_wrong_validation":"Falha na autentica\u00e7\u00e3o de dois fatores.","back_homepage":"Voltar \u00e0 p\u00e1gina inicial","button_remember":"Permanecer logado","change_language":"Mudar idioma para :lang","change_language_title":"Mudar idioma:","confirmation_again":"Se voc\u00ea desejar alterar seu endere\u00e7o de email, voc\u00ea pode clicar aqui<\/a>.","confirmation_check":"Antes de prosseguir, verifique seu email para um link de verifica\u00e7\u00e3o.","confirmation_fresh":"Um novo link de verifica\u00e7\u00e3o foi enviado para o seu endere\u00e7o de email.","confirmation_request_another":"Se voc\u00ea n\u00e3o recebeu o email clique aqui para solicitar outro<\/a>.","confirmation_title":"Verifique seu endere\u00e7o de email","create_account":"Cadastre-se<\/a> para criar a primeira conta","email":"E-mail","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"Credenciais informadas n\u00e3o correspondem com nossos registros.","login":"Entrar","login_again":"Por favor, entre novamente na sua conta","login_to_account":"Entre na sua conta","login_with_recovery":"Entrar com um c\u00f3digo de recupera\u00e7\u00e3o","mfa_auth_otp":"Autenticar com dois fatores","mfa_auth_webauthn":"Autenticar com uma chave de seguran\u00e7a (WebAuthn)","not_authorized":"Voc\u00ea n\u00e3o est\u00e1 autorizado a executar esta a\u00e7\u00e3o","password":"Senha","password_forget":"Esqueceu sua senha?","password_reset":"Redefinir senha","password_reset_action":"Redefinir senha","password_reset_email":"Endere\u00e7o de e-mail","password_reset_email_content":"Clique aqui para redefinir sua senha:","password_reset_password":"Senha","password_reset_password_confirm":"Confirmar senha","password_reset_send_link":"Enviar e-mail para redefini\u00e7\u00e3o de senha","password_reset_title":"Redefinir senha","recovery":"C\u00f3digo de recupera\u00e7\u00e3o","register_action":"Cadastrar","register_create_account":"Voc\u00ea precisa criar uma conta para usar o Monica","register_email":"Insira um endere\u00e7o de e-mail v\u00e1lido","register_email_example":"joao@gmail.com","register_firstname":"Nome","register_firstname_example":"ex. Jo\u00e3o","register_invitation_email":"Por quest\u00f5es de seguran\u00e7a, favor indicar o email da pessoa que te convidou para fazer parte desta conta. Esta informa\u00e7\u00e3o \u00e9 fornecida no email do convite.","register_lastname":"Sobrenome","register_lastname_example":"ex. Silva","register_login":"Entre<\/a> se voc\u00ea j\u00e1 tiver uma conta.","register_password":"Senha","register_password_confirmation":"Confirma\u00e7\u00e3o de senha","register_password_example":"Digite uma senha segura","register_policy":"Registrar-se significa que voc\u00ea leu e concordou com nossas Pol\u00edticas de Privacidade<\/a> e Termos de uso<\/a>.","register_title_create":"Crie sua conta Monica","register_title_welcome":"Bem-vindo \u00e0 sua inst\u00e2ncia Monica rec\u00e9m instalada","signup":"Cadastre-se","signup_disabled":"Cadastro de novas contas desativado no momento","signup_error":"Um erro ocorreu ao tentar registrar o usu\u00e1rio","signup_no_account":"N\u00e3o tem uma conta?","throttle":"Voc\u00ea realizou muitas tentativas de login. Por favor, tente novamente em :seconds segundos.","use_recovery":"Ou voc\u00ea pode usar um c\u00f3digo de recupera\u00e7\u00e3o<\/a>"},"changelog":{"note":"Observa\u00e7\u00e3o: infelizmente, esta p\u00e1gina s\u00f3 est\u00e1 dispon\u00edvel em ingl\u00eas.","title":"Atualiza\u00e7\u00f5es de produtos"},"dashboard":{"dashboard_blank_cta":"Adicione seu primeiro contato","dashboard_blank_description":"Monica \u00e9 o lugar para organizar todas as suas intera\u00e7\u00f5es com pessoas importantes para voc\u00ea.","dashboard_blank_illustration":"Ilustra\u00e7\u00e3o por Freepik<\/a>","dashboard_blank_title":"Seja bem-vindo \u00e0 sua conta!","debts_you_owe":"Voc\u00ea deve","notes_title":"Voc\u00ea ainda n\u00e3o tem nenhuma nota favorita.","product_changes":"Atualiza\u00e7\u00f5es de produtos","product_view_details":"Ver detalhes","reminders_next_months":"Eventos nos pr\u00f3ximos 3 meses","reminders_none":"Nenhum lembrete para este m\u00eas.","statistics_activities":"Atividades","statistics_contacts":"Contatos","statistics_gifts":"Presentes","tab_calls_blank":"Voc\u00ea ainda n\u00e3o registrou uma chamada.","tab_debts":"D\u00edvidas","tab_debts_blank":"Voc\u00ea ainda n\u00e3o registrou nenhuma d\u00edvida.","tab_favorite_notes":"Notas favoritas","tab_recent_calls":"Chamadas recentes","tab_tasks":"Tarefas","tab_tasks_blank":"Voc\u00ea ainda n\u00e3o tem nenhuma tarefa.","task_add_cta":"Adicionar tarefa","tasks_add_note":"Pressione Enter<\/kbd> para adicionar a tarefa.","tasks_add_task_placeholder":"De que se trata esta tarefa?","tasks_tab_your_contacts":"Tarefas relacionadas aos seus contatos","tasks_tab_your_tasks":"Suas tarefas"},"format":{"full_date_year":"d M Y","full_hour":"H:i","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M Y","short_date_year_time":"d M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Adicionar uma entrada no di\u00e1rio","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Obrigado. Volte amanh\u00e3 para avaliar o seu dia novamente.","journal_created_at":"Created at {date}","journal_created_automatically":"Criar automaticamente","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Editar uma entrada no di\u00e1rio","journal_empty":"Di\u00e1rio vazio","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Atividade","journal_entry_type_journal":"Journal entry","journal_rate":"Como foi o seu dia? Voc\u00ea pode avali\u00e1-lo uma vez por dia.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Coment\u00e1rio: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"Ver o perfil de :name","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"Para: :name","greetings":"Ol\u00e1 :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Lembrete para :contact","want_reminded_of":"Voc\u00ea queria ser lembrado de :reason"},"pagination":{"next":"Pr\u00f3xima \u276f","previous":"\u276e Anterior"},"passwords":{"changed":"Senha alterada com sucesso.","invalid":"A senha que introduziu n\u00e3o est\u00e1 correta.","reset":"Sua senha foi redefinida!","sent":"Enviamos um link para redefinir a sua senha por e-mail.","throttled":"Por favor espere antes de tentar novamente.","token":"Esse c\u00f3digo de redefini\u00e7\u00e3o de senha \u00e9 inv\u00e1lido.","user":"N\u00e3o conseguimos encontrar nenhum usu\u00e1rio com o endere\u00e7o de e-mail informado."},"people":{"activities_activity":"Categoria da Atividade","activities_add_activity":"Acrescentar atividade","activities_add_category":"Indicar uma categoria","activities_add_date_occured":"A atividade aconteceu em...","activities_add_emotions":"Acrescentar emo\u00e7\u00f5es","activities_add_emotions_title":"Voc\u00ea quer registrar como se sentiu durante esta atividade? (opcional)","activities_add_error":"Erro ao adicionar a atividade","activities_add_more_details":"Acrescentar mais detalhes","activities_add_participants":"Quem, al\u00e9m de {name}, participou desta atividade? (opcional)","activities_add_participants_cta":"Adicionar participantes","activities_add_pick_activity":"(Opcional) Voc\u00ea gostaria de categorizar esta atividade? N\u00e3o \u00e9 necess\u00e1rio, mas te fornecer\u00e1 estat\u00edsticas mais tarde","activities_add_success":"A atividade foi adicionada com sucesso","activities_add_title":"O que voc\u00ea fez com {name}?","activities_blank_add_activity":"Acrescentar uma atividade","activities_blank_title":"Mantenha controle do que fez com {name} no passado, e sobre o que falaram","activities_delete_success":"A atividade foi deletada com sucesso","activities_item_information":":Activity. Aconteceu em :date","activities_list_category":"Categoria:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"Voc\u00ea registrou :total_activities atividade com :name no total e :activities_last_twelve_months nos \u00faltimos 12 meses at\u00e9 o momento.|Voc\u00ea registrou :total_activities atividades com :name no total e :activities_last_twelve_months nos \u00faltimos 12 meses at\u00e9 agora.","activities_profile_title":"Relat\u00f3rio de atividades entre :nome e voc\u00ea","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Aqui est\u00e1 um detalhamento do tipo de atividades que voc\u00eas fizeram juntos no :ano","activities_summary":"Descreva o que fez","activities_update_success":"A atividade foi atualizada com sucesso","activities_view_activities_report":"Ver relat\u00f3rio de atividades","activities_who_was_involved":"Quem estava envolvido?","activity_title":"Atividades","activity_type_ate_at_his_place":"como na casa deles","activity_type_ate_at_home":"comi em casa","activity_type_ate_restaurant":"comi em um restaurante","activity_type_category_cultural_activities":"Atividades culturais","activity_type_category_food":"Comida","activity_type_category_simple_activities":"Atividades simples","activity_type_category_sport":"Esporte","activity_type_did_sport_activities_together":"praticamos um esporte juntos","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"fiz um piquenique","activity_type_talked_at_home":"s\u00f3 conversamos em casa","activity_type_watched_movie_at_home":"assistimos um filme em casa","activity_type_went_bar":"fui para um bar","activity_type_went_concert":"fui a um concerto","activity_type_went_museum":"fui ao museu","activity_type_went_play":"fui a uma pe\u00e7a","activity_type_went_theater":"fui ao teatro","age_approximate_in_years":"cerca de :age anos","age_exact_birthdate":"nasceu em :date","age_exact_in_years":":age anos","auditlogs_author":"Por :name em :date","auditlogs_breadcrumb":"Hist\u00f3ria","auditlogs_link":"Hist\u00f3ria","auditlogs_title":"Tudo que aconteceu com :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Sem anivers\u00e1rio","call_blank_desc":"Voc\u00ea ligou para {name}","call_blank_title":"Registre todas as liga\u00e7\u00f5es realizadas com {name}","call_button":"Registrar liga\u00e7\u00e3o","call_delete_confirmation":"Tem certeza que deseja excluir esta liga\u00e7\u00e3o?","call_delete_success":"A chamada telef\u00f4nica foi exclu\u00edda com sucesso","call_emotions":"Emo\u00e7\u00f5es:","call_empty_comment":"Sem detalhes","call_he_called":"{name} ligou","call_title":"Liga\u00e7\u00f5es","call_you_called":"Voc\u00ea ligou","calls_add_success":"A chamada telef\u00f4nica foi salva.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Arquivar contato","contact_archive_help":"Contatos arquivados n\u00e3o ser\u00e3o mostrados na lista de contatos, mas ainda aparecer\u00e3o nos resultados de pesquisa.","contact_field_label_cell":"Celular","contact_field_label_fax":"Fax","contact_field_label_home":"Casa","contact_field_label_main":"Principal","contact_field_label_other":"Outro","contact_field_label_pager":"Pager","contact_field_label_personal":"Pessoal","contact_field_label_work":"Trabalho","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Desarquivar contato","conversation_add_another":"Adicionar outra mensagem","conversation_add_content":"Escreva o que foi dito","conversation_add_error":"Voc\u00ea precisa adicionar pelo menos uma mensagem.","conversation_add_how":"Como voc\u00eas se comunicaram?","conversation_add_success":"Conversa registrada com sucesso!","conversation_add_title":"Registre uma nova conversa","conversation_add_what_was_said":"O que voc\u00ea disse?","conversation_add_when":"Quando aconteceu essa conversa?","conversation_add_who_wrote":"Quem falou isso?","conversation_add_you":"Voc\u00ea","conversation_blank":"Registre suas conversas com :name nas redes sociais, WhatsApp...","conversation_delete_link":"Excluir conversa","conversation_delete_success":"Conversa exclu\u00edda com sucesso!","conversation_edit_delete":"Quer mesmo excluir esta conversa? Voc\u00ea n\u00e3o poder\u00e1 voltar atr\u00e1s.","conversation_edit_success":"Conversa atualizada com sucesso!","conversation_edit_title":"Editar conversa","conversation_list_cta":"Registrar conversa","conversation_list_table_content":"Conte\u00fado parcial (\u00faltima mensagem)","conversation_list_table_messages":"Mensagens","conversation_list_title":"Conversas","debt_add_add_cta":"Add debt","debt_add_amount":"a soma de","debt_add_cta":"Adicionar d\u00edvida","debt_add_reason":"for the following reason (optional)","debt_add_success":"A d\u00edvida foi acrescentada com sucesso","debt_add_they_owe":":name deve a voc\u00ea","debt_add_title":"Gerenciamento de d\u00edvidas","debt_add_you_owe":"Voc\u00ea deve a :name","debt_delete_confirmation":"Tem certeza de que deseja deletar esta d\u00edvida?","debt_delete_success":"A d\u00edvida foi exclu\u00edda com sucesso","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name lhe deve :amount","debt_title":"D\u00edvidas","debt_you_owe":"Voc\u00ea deve :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Editar informa\u00e7\u00f5es de contato","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"Prefer\u00eancias alimentares salvas com sucesso","food_preferences_cta":"Adicionar prefer\u00eancias alimentares","food_preferences_edit_cta":"Salvar prefer\u00eancias","food_preferences_edit_description":"Talvez :firstname ou algu\u00e9m na fam\u00edlia :family tenha algum tipo de alergia ou n\u00e3o goste de algo espec\u00edfico. Coloque tudo aqui para que possa lembrar na pr\u00f3xima vez que os convidar para jantar","food_preferences_edit_description_no_last_name":"Talvez :firstname tenha algum tipo de alergia ou n\u00e3o goste de algo espec\u00edfico. Coloque tudo aqui para que possa lembrar na pr\u00f3xima vez que estiverem juntos","food_preferences_edit_title":"Registre suas prefer\u00eancias alimentares","food_preferences_title":"Prefer\u00eancias alimentares","gifts_add_comment":"Coment\u00e1rio (opcional)","gifts_add_date":"Data (opcional)","gifts_add_gift":"Adicionar um presente","gifts_add_gift_already_offered":"Presente dado","gifts_add_gift_idea":"Ideia de presente","gifts_add_gift_name":"Nome do presente","gifts_add_gift_received":"Presente recebido","gifts_add_gift_title":"Que presente \u00e9 esse?","gifts_add_link":"Link para a p\u00e1gina da web (opcional)","gifts_add_photo":"Foto (opcional)","gifts_add_photo_title":"Adicione uma foto para este presente","gifts_add_recipient":"Destinat\u00e1rio (opcional)","gifts_add_recipient_field":"Destinat\u00e1rio","gifts_add_someone":"Este presente \u00e9 para algu\u00e9m da fam\u00edlia de {name} ","gifts_add_success":"O presente foi adicionado com sucesso","gifts_add_title":"Gerenciar presentes para :name","gifts_add_value":"Valor (opcional)","gifts_delete_confirmation":"Tem certeza de que deseja deletar este presente?","gifts_delete_cta":"Excluir","gifts_delete_success":"O presente foi exclu\u00eddo com sucesso","gifts_delete_title":"Excluir um presente","gifts_for":"Para: {name}","gifts_ideas":"Ideias de presente","gifts_link":"Link","gifts_mark_offered":"Marcar como entregue","gifts_offered":"Presentes dados","gifts_offered_as_an_idea":"Marcar como uma ideia","gifts_received":"Presentes recebidos","gifts_title":"Presentes","gifts_update_success":"O presente foi atualizado com sucesso","gifts_view_comment":"Ver coment\u00e1rio","information_edit_birthdate_label":"Data de nascimento","information_edit_description":"Descri\u00e7\u00e3o (Opcional)","information_edit_description_help":"Usado na lista de contatos para adicionar algum contexto, se necess\u00e1rio.","information_edit_exact":"Sei a data de nascimento exata desta pessoa...","information_edit_firstname":"Nome","information_edit_lastname":"Sobrenome (Opcional)","information_edit_max_size":"M\u00e1x :size Kb.","information_edit_max_size2":"M\u00e1x {size} Kb.","information_edit_not_year":"Sei o dia e o m\u00eas do anivers\u00e1rio desta pessoa...","information_edit_probably":"Acho que esta pessoa tem...","information_edit_success":"O perfil foi atualizado com sucesso","information_edit_title":"Editar informa\u00e7\u00f5es pessoais de :name","information_edit_unknown":"N\u00e3o sei a idade desta pessoa","information_no_work_defined":"Sem informa\u00e7\u00e3o profissional","information_work_at":"na :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"\u00daltima atividade juntos: :date","last_activity_date_empty":"\u00daltima atividade juntos: desconhecido","last_called":"\u00daltima liga\u00e7\u00e3o: :date","last_called_empty":"\u00daltima liga\u00e7\u00e3o: desconhecido","life_event_blank":"Registre o que acontece com a vida de {name} para sua refer\u00eancia futura.","life_event_category_family_relationships":"Fam\u00edlia e Relacionamentos","life_event_category_health_wellness":"Sa\u00fade e Bem-Estar","life_event_category_home_living":"Casa e Vida","life_event_category_travel_experiences":"Viagens e Experi\u00eancias","life_event_category_work_education":"Trabalho e Educa\u00e7\u00e3o","life_event_create_add_yearly_reminder":"Adicione um lembrete anual para este evento","life_event_create_category":"Todas as categorias","life_event_create_date":"N\u00e3o \u00e9 necess\u00e1rio indicar um m\u00eas ou um dia - s\u00f3 o ano \u00e9 obrigat\u00f3rio.","life_event_create_default_description":"Adicione informa\u00e7\u00f5es sobre o que voc\u00ea sabe","life_event_create_default_story":"Hist\u00f3ria (opcional)","life_event_create_default_title":"T\u00edtulo (opcional)","life_event_create_life_event":"Adicionar evento de vida","life_event_create_success":"O evento de vida foi acrescentado","life_event_date_it_happened":"Data em que aconteceu","life_event_delete_description":"Tem certeza de que deseja excluir este evento de vida? N\u00e3o poder\u00e1 voltar atr\u00e1s.","life_event_delete_success":"O evento de vida foi exclu\u00eddo","life_event_delete_title":"Excluir um evento de vida","life_event_list_cta":"Acrescentar evento de vida","life_event_list_tab_life_events":"Eventos da Vida","life_event_list_tab_other":"Anota\u00e7\u00f5es, lembretes, ...","life_event_list_title":"Eventos da Vida","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anivers\u00e1rio","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Terminou um relacionamento","life_event_sentence_engagement":"Noivou","life_event_sentence_expecting_a_baby":"Engravidou","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Casou-se","life_event_sentence_military_service":"Come\u00e7ou o servi\u00e7o militar","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Teve um filho","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Adicionou um membro \u00e0 fam\u00edlia","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Come\u00e7ou um novo trabalho","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Obteve um animal de estima\u00e7\u00e3o","life_event_sentence_new_relationship":"Entrou em um relacionamento","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Come\u00e7ou a estudar","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Publicou um documento","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Se aposentou","life_event_sentence_study_abroad":"Estudou no exterior","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Come\u00e7ou o voluntariado","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"Voc\u00ea est\u00e1 visualizando os contatos arquivados. Em vez disso, veja a lista de contatos ativos<\/a>.","list_link_to_archived_contacts":"Lista de contatos arquivados","me":"Este \u00e9 voc\u00ea","modal_call_comment":"Sobre o que falaram? (opcional)","modal_call_emotion":"Quer registrar como se sentiu durante esta chamada? (opcional)","modal_call_exact_date":"O telefonema aconteceu em","modal_call_title":"Registrar liga\u00e7\u00e3o","modal_call_who_called":"Quem ligou?","notes_add_cta":"Adicionar nota","notes_create_success":"A nota foi criada com sucesso","notes_delete_confirmation":"Voc\u00ea tem certeza de que deseja excluir esta nota? Voc\u00ea n\u00e3o poder\u00e1 voltar atr\u00e1s","notes_delete_success":"A nota foi exclu\u00edda com sucesso","notes_delete_title":"Deletar nota","notes_favorite":"Adicionar\/remover dos favoritos","notes_update_success":"A nota foi salva com sucesso","people_add_birthday_reminder":"Deseje feliz anivers\u00e1rio para :name","people_add_birthday_reminder_deceased":"Nessa data, :nome, teria celebrado seu anivers\u00e1rio","people_add_cta":"Adicionar","people_add_firstname":"Nome","people_add_gender":"G\u00eanero","people_add_import":"Voc\u00ea quer importar seus contatos<\/a>?","people_add_lastname":"Sobrenome (Opcional)","people_add_middlename":"Nome do meio (Opcional)","people_add_missing":"Contato n\u00e3o encontrado. Adicione um novo.","people_add_new":"Adicionar nova pessoa","people_add_nickname":"Apelido (Opcional)","people_add_reminder_for_birthday":"Criar um lembrete anual para o anivers\u00e1rio","people_add_success":":nome foi criado com sucesso","people_add_title":"Adicionar novo contato","people_delete_confirmation":"Quer mesmo excluir este contato? Voc\u00ea n\u00e3o pode voltar atr\u00e1s.","people_delete_message":"Excluir contato","people_delete_success":"O contato foi exclu\u00eddo","people_edit_email_error":"J\u00e1 existe um contato em sua conta com esse e-mail. Por favor, escolha outro e-mail.","people_export":"Exportar como vCard","people_list_account_upgrade_cta":"Assinar agora","people_list_account_upgrade_title":"Assine para ter acesso a todos os recursos.","people_list_account_usage":"Uso da sua conta: :current\/:limit contatos","people_list_blank_cta":"Adicionar contato","people_list_blank_title":"Voc\u00ea ainda n\u00e3o adicionou ningu\u00e9m","people_list_clear_filter":"Limpar filtro","people_list_contacts_per_tags":"1 contato|:count contatos","people_list_filter_tag":"Exibindo todos os contatos etiquetados com","people_list_filter_untag":"Exibindo todos os contatos n\u00e3o etiquetados","people_list_firstnameAZ":"Ordenar por nome A \u2192 Z","people_list_firstnameZA":"Ordenar por nome Z \u2192 A","people_list_hide_dead":"Ocultar pessoas falecidas (:count)","people_list_last_updated":"\u00daltimas consultas:","people_list_lastactivitydateNewtoOld":"Ordenar por data da \u00faltima atividade (recente \u00e0 mais antiga)","people_list_lastactivitydateOldtoNew":"Ordenar por data da \u00faltima atividade (antiga \u00e0 mais recente)","people_list_lastnameAZ":"Ordenar por sobrenome A \u2192 Z","people_list_lastnameZA":"Ordenar por sobrenome Z \u2192 A","people_list_number_kids":"1 crian\u00e7a|:count crian\u00e7as","people_list_number_reminders":"1 lembrete|:count lembretes","people_list_show_dead":"Mostrar pessoas falecidas (:count)","people_list_sort":"Ordenar","people_list_stats":"1 contato|:count contatos","people_list_untagged":"Visualizar contatos sem etiqueta","people_not_found":"Contato n\u00e3o encontrado","people_save_and_add_another_cta":"Enviar e adicionar outra pessoa","people_search":"Pesquise seus contatos...","people_search_all":"Todos","people_search_next":"Pr\u00f3ximo","people_search_no_results":"Nenhum resultado encontrado","people_search_of":"de","people_search_page":"P\u00e1gina","people_search_prev":"Anterior","people_search_rows_per_page":"Linhas por p\u00e1gina","pets_bird":"P\u00e1ssaro","pets_cat":"Gato","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Cachorro","pets_fish":"Peixe","pets_hamster":"Hamster","pets_horse":"Cavalo","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Outros","pets_rabbit":"Coelho","pets_rat":"Rato","pets_reptile":"R\u00e9pteis","pets_small_animal":"Animal pequeno","pets_title":"Animais de Estima\u00e7\u00e3o","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Pr\u00f3xima foto","photo_previous":"Foto anterior","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Quer mesmo excluir este relacionamento? Voc\u00ea n\u00e3o pode voltar atr\u00e1s.","relationship_form_add":"Adicionar novo relacionamento","relationship_form_add_choice":"Com quem \u00e9 esse relacionamento?","relationship_form_add_description":"Isto permitir\u00e1 que voc\u00ea gerencie esta pessoa como qualquer outro contato.","relationship_form_add_no_existing_contact":"Voc\u00ea n\u00e3o tem nenhum contato que possa ser relacionado a :name no momento.","relationship_form_add_success":"O relacionamento foi estabelecido com sucesso.","relationship_form_also_create_contact":"Criar um perfil de contato para esta pessoa.","relationship_form_associate_contact":"Um contato existente","relationship_form_associate_dropdown":"Pesquise e selecione um contato existente no menu abaixo","relationship_form_associate_dropdown_placeholder":"Pesquise e selecione um contato existente","relationship_form_create_contact":"Adicionar nova pessoa","relationship_form_deletion_success":"O relacionamento foi exclu\u00eddo.","relationship_form_edit":"Editar relacionamento","relationship_form_is_with":"Esta pessoa \u00e9...","relationship_form_is_with_name":":name \u00e9...","relationship_unlink_confirmation":"Quer mesmo excluir este relacionamento? Esta pessoa n\u00e3o ser\u00e1 exclu\u00edda, somente o relacionamento entre as duas.","reminder_frequency_day":"todos os dias|a cada :number dias","reminder_frequency_month":"todo m\u00eas|a cada :number meses","reminder_frequency_one_time":"em :date","reminder_frequency_week":"toda semana|a cada :number semanas","reminder_frequency_year":"todo ano|a cada :number ano(s)","reminders_add_cta":"Adicionar lembrete","reminders_add_description":"Por favor, lembre-me de...","reminders_add_error_custom_text":"Voc\u00ea precisa indicar um texto para este lembrete","reminders_add_next_time":"Quando voc\u00ea gostaria de ser lembrado sobre isso?","reminders_add_once":"Lembre-me apenas uma vez","reminders_add_optional_comment":"Coment\u00e1rio opcional","reminders_add_recurrent":"Lembre-me a cada","reminders_add_starting_from":"come\u00e7ando pela data selecionada acima","reminders_add_title":"O que voc\u00ea gostaria de ser lembrado sobre :name?","reminders_birthday":"Anivers\u00e1rio de :name","reminders_blank_add_activity":"Adicionar lembrete","reminders_blank_title":"H\u00e1 alguma coisa que voc\u00ea gostaria de lembrar sobre :name?","reminders_create_success":"O lembrete foi adicionado com sucesso","reminders_cta":"Adicionar lembrete","reminders_delete_confirmation":"Voc\u00ea quer mesmo excluir este lembrete?","reminders_delete_cta":"Excluir","reminders_delete_success":"O lembrete foi exclu\u00eddo com sucesso","reminders_description":"Enviaremos um e-mail para cada um dos lembretes abaixo. Os lembretes s\u00e3o enviados na manh\u00e3 do dia em que ocorrer\u00e3o os eventos. Os lembretes adicionados automaticamente para anivers\u00e1rios n\u00e3o podem ser exclu\u00eddos. Se voc\u00ea quiser alterar essas datas, edite a data de nascimento do contato em quest\u00e3o.","reminders_edit_update_cta":"Atualizar lembrete","reminders_free_plan_warning":"Voc\u00ea est\u00e1 utilizando o Plano Gratuito. E-mails n\u00e3o s\u00e3o enviados neste plano. Por favor, assine para receber seus lembretes por e-mail.","reminders_next_expected_date":"em","reminders_one_time":"Uma vez","reminders_type_month":"m\u00eas","reminders_type_week":"semana","reminders_type_year":"ano","reminders_update_success":"O lembrete foi atualizado com sucesso","section_contact_information":"Informa\u00e7\u00f5es de contato","section_personal_activities":"Atividades","section_personal_gifts":"Presentes","section_personal_notes":"Notas","section_personal_reminders":"Lembretes","section_personal_tasks":"Tarefas","set_favorite":"Contatos favoritos s\u00e3o colocados no topo da lista de contatos","stay_in_touch":"Manter contato","stay_in_touch_frequency":"Manter contato todos os dias|Manter contato a cada {count} dias","stay_in_touch_invalid":"A frequ\u00eancia deve ser um n\u00famero maior que 0.","stay_in_touch_modal_desc":"Podemos lembrar voc\u00ea por e-mail para manter contato com {firstname} em um determinado intervalo.","stay_in_touch_modal_label":"Envie-me um e-mail a cada... {count} dia|Envie-me um e-mail a cada... {count} dias","stay_in_touch_modal_title":"Manter contato","stay_in_touch_premium":"Voc\u00ea precisa de uma assinatura ativa para utilizar esse recurso","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Adicionar tarefa","tasks_blank_title":"Voc\u00ea ainda n\u00e3o tem nenhuma tarefa.","tasks_complete_success":"O status da tarefa foi alterado com sucesso","tasks_delete_success":"A tarefa foi exclu\u00edda com sucesso","tasks_form_description":"Descri\u00e7\u00e3o (Opcional)","tasks_form_title":"T\u00edtulo","tasks_title":"Tarefas","work_add_cta":"Atualizar informa\u00e7\u00e3o profissional","work_edit_company":"Empresa (Opcional)","work_edit_job":"Fun\u00e7\u00e3o (Opcional)","work_edit_success":"Work information updated","work_edit_title":"Atualizar trabalho de :name","work_information":"Informa\u00e7\u00e3o de trabalho"},"reminder":{"type_birthday":"Desejar feliz anivers\u00e1rio para :name","type_birthday_kid":"Desejar feliz anivers\u00e1rio para o filho(a) de","type_email":"Enviar e-mail para","type_hangout":"Sair com","type_lunch":"Almo\u00e7ar com","type_phone_call":"Ligar para"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Desativar autentica\u00e7\u00e3o de dois fatores","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Erro ao tentar ativar a autentica\u00e7\u00e3o de dois fatores","2fa_enable_error_already_set":"Autentica\u00e7\u00e3o de dois fatores j\u00e1 est\u00e1 ativada","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Autentica\u00e7\u00e3o de dois fatores ativada","2fa_enable_title":"Ativar Autentica\u00e7\u00e3o de dois fatores","2fa_otp_title":"Aplicativo para autentica\u00e7\u00e3o de dois fatores","2fa_title":"Autentica\u00e7\u00e3o de dois fatores","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Moeda","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Deletar conta","delete_desc":"Deseja excluir sua conta? A exclus\u00e3o \u00e9 permanente e todos os seus dados ser\u00e3o apagados permanentemente. Se voc\u00ea tiver uma assinatura, ela ser\u00e1 cancelada imediatamente.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Excluir sua conta","email":"Endere\u00e7o de e-mail","email_help":"Este \u00e9 o email usado para fazer login, e \u00e9 para c\u00e1 que Monica enviar\u00e1 seus lembretes.","email_placeholder":"Digite o seu e-mail","export_be_patient":"Clique no bot\u00e3o para iniciar a exporta\u00e7\u00e3o. Pode levar v\u00e1rios minutos para processar \u2013 seja paciente e n\u00e3o pressione o bot\u00e3o repetidamente.","export_sql_cta":"Exportar dados para SQL","export_sql_explanation":"Exportar seus dados em formato SQL permite que voc\u00ea importe os seus dados para o seu pr\u00f3prio servidor. \u00c9 somente \u00fatil caso esteva utilizando Monica em seu pr\u00f3prio servidor.","export_sql_link_instructions":"Leia as instrui\u00e7\u00f5es<\/a> para aprender como importar este arquivo para seu servidor.","export_title":"Exporte os dados da sua conta","export_title_sql":"Exportar dados para SQL","firstname":"Nome","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Sobrenome","layout":"Layout","layout_big":"Largura total do navegador","layout_small":"M\u00e1ximo 1200 pixels de largura","locale":"Idioma usado no aplicativo","locale_ar":"\u00c1rabe","locale_cs":"Tcheco","locale_de":"Alem\u00e3o","locale_en":"Ingl\u00eas","locale_en-GB":"English (United Kingdom)","locale_es":"Espanhol","locale_fr":"Franc\u00eas","locale_he":"Hebraico","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croata","locale_it":"Italiano","locale_ja":"Japanese","locale_nl":"Nederlands","locale_pt":"Portugu\u00eas","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russo","locale_sv":"Swedish","locale_tr":"Turco","locale_zh":"Chin\u00eas (Simplificado)","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Escolha-se","me_choose_placeholder":"Escolha-se","me_help":"Este \u00e9 o contato que te<\/em> representa em Monica","me_no_contact":"Nenhum contato selecionado.","me_remove_contact":"Remover a associa\u00e7\u00e3o","me_select":"Selecione um contato","me_select_click":"Clique aqui para selecionar um contato.","me_title":"Eu como contato","name":"Seu nome: :name","name_order":"Ordem de nome","name_order_firstname_lastname":" \u2013 Jo\u00e3o Silva","name_order_firstname_lastname_nickname":" () \u2013 Jo\u00e3o Silva (J\u00e3o)","name_order_firstname_nickname_lastname":" () \u2013 Jo\u00e3o (J\u00e3o) Silva","name_order_lastname_firstname":" \u2013 Silva Jo\u00e3o","name_order_lastname_firstname_nickname":" () \u2013 Silva Jo\u00e3o (J\u00e3o)","name_order_lastname_nickname_firstname":" () \u2013 Silva (J\u00e3o) Jo\u00e3o","name_order_nickname":" \u2013 J\u00e3o","name_order_nickname_firstname_lastname":" ( ) \u2013 J\u00e3o (Silva Jo\u00e3o)","password_btn":"Alterar senha","password_change":"Redefina sua senha","password_current":"Senha atual","password_current_placeholder":"Digite a sua senha atual","password_new1":"Nova senha","password_new1_placeholder":"Digite sua nova senha","password_new2":"Confirme sua nova senha","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Redefinir conta","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Redefinir sua conta","save":"Atualizar prefer\u00eancias","security_help":"Altere as informa\u00e7\u00f5es de seguran\u00e7a da sua conta.","security_title":"Seguran\u00e7a","settings_success":"Prefer\u00eancias atualizadas!","sidebar_personalization":"Personaliza\u00e7\u00e3o","sidebar_settings":"Ajustes de conta","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Registros de Auditoria","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Exportar dados","sidebar_settings_import":"Importar dados","sidebar_settings_security":"Seguran\u00e7a","sidebar_settings_storage":"Armazenamento","sidebar_settings_subscriptions":"Assinatura","sidebar_settings_tags":"Gerenciar tags","sidebar_settings_users":"Usu\u00e1rios","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Escala de temperatura","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Fuso hor\u00e1rio","title_general":"Informa\u00e7\u00f5es Gerais","title_i18n":"Configura\u00e7\u00f5es internacionais","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"O campo :attribute deve ser aceito.","active_url":"O campo :attribute deve conter uma URL v\u00e1lida.","after":"O campo :attribute deve conter uma data posterior a :date.","after_or_equal":"O campo :attribute deve conter uma data superior ou igual a :date.","alpha":"O campo :attribute deve conter apenas letras.","alpha_dash":"O campo :attribute deve conter apenas letras, n\u00fameros e tra\u00e7os.","alpha_num":"O campo :attribute deve conter apenas letras e n\u00fameros .","array":"O campo :attribute deve conter um array.","attributes":[],"before":"O campo :attribute deve conter uma data anterior a :date.","before_or_equal":"O campo :attribute deve conter uma data inferior ou igual a :date.","between":{"array":"O campo :attribute deve conter de :min a :max itens.","file":"O campo :attribute deve conter um arquivo de :min a :max kilobytes.","numeric":"O campo :attribute deve conter um n\u00famero entre :min e :max.","string":"O campo :attribute deve conter entre :min a :max caracteres."},"boolean":"O campo :attribute deve conter o valor verdadeiro ou falso.","confirmed":"A confirma\u00e7\u00e3o para o campo :attribute n\u00e3o coincide.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"O campo :attribute n\u00e3o cont\u00e9m uma data v\u00e1lida.","date_equals":"O campo :attribute deve ser uma data igual a :date.","date_format":"A data informada para o campo :attribute n\u00e3o respeita o formato :format.","different":"Os campos :attribute e :other devem conter valores diferentes.","digits":"O campo :attribute deve conter :digits d\u00edgitos.","digits_between":"O campo :attribute deve conter entre :min a :max d\u00edgitos.","dimensions":"O valor informado para o campo :attribute n\u00e3o \u00e9 uma dimens\u00e3o de imagem v\u00e1lida.","distinct":"O campo :attribute cont\u00e9m um valor duplicado.","email":"O campo :attribute n\u00e3o cont\u00e9m um endere\u00e7o de email v\u00e1lido.","ends_with":"O campo :attribute deve terminar com um dos seguintes valores: :values","exists":"O valor selecionado para o campo :attribute \u00e9 inv\u00e1lido.","file":"O campo :attribute deve conter um arquivo.","filled":"O campo :attribute \u00e9 obrigat\u00f3rio.","gt":{"array":"O campo :attribute deve ter mais que :value itens.","file":"O arquivo :attribute deve ser maior que :value kilobytes.","numeric":"O campo :attribute deve ser maior que :value.","string":"O campo :attribute deve ser maior que :value caracteres."},"gte":{"array":"O campo :attribute deve ter :value itens ou mais.","file":"O arquivo :attribute deve ser maior ou igual a :value kilobytes.","numeric":"O campo :attribute deve ser maior ou igual a :value.","string":"O campo :attribute deve ser maior ou igual a :value caracteres."},"image":"O campo :attribute deve conter uma imagem.","in":"O campo :attribute n\u00e3o cont\u00e9m um valor v\u00e1lido.","in_array":"O campo :attribute n\u00e3o existe em :other.","integer":"O campo :attribute deve conter um n\u00famero inteiro.","ip":"O campo :attribute deve conter um IP v\u00e1lido.","ipv4":"O campo :attribute deve conter um IPv4 v\u00e1lido.","ipv6":"O campo :attribute deve conter um IPv6 v\u00e1lido.","json":"O campo :attribute deve conter uma string JSON v\u00e1lida.","lt":{"array":"O campo :attribute deve ter menos que :value itens.","file":"O arquivo :attribute ser menor que :value kilobytes.","numeric":"O campo :attribute deve ser menor que :value.","string":"O campo :attribute deve ser menor que :value caracteres."},"lte":{"array":"O campo :attribute n\u00e3o deve ter mais que :value itens.","file":"O arquivo :attribute ser menor ou igual a :value kilobytes.","numeric":"O campo :attribute deve ser menor ou igual a :value.","string":"O campo :attribute deve ser menor ou igual a :value caracteres."},"max":{"array":"O campo :attribute deve conter no m\u00e1ximo :max itens.","file":"O campo :attribute n\u00e3o pode conter um arquivo com mais de :max kilobytes.","numeric":"O campo :attribute n\u00e3o pode conter um valor superior a :max.","string":"O campo :attribute n\u00e3o pode conter mais de :max caracteres."},"mimes":"O campo :attribute deve conter um arquivo do tipo: :values.","mimetypes":"O campo :attribute deve conter um arquivo do tipo: :values.","min":{"array":"O campo :attribute deve conter no m\u00ednimo :min itens.","file":"O campo :attribute deve conter um arquivo com no m\u00ednimo :min kilobytes.","numeric":"O campo :attribute deve conter um n\u00famero superior ou igual a :min.","string":"O campo :attribute deve conter no m\u00ednimo :min caracteres."},"not_in":"O campo :attribute cont\u00e9m um valor inv\u00e1lido.","not_regex":"O formato do valor :attribute \u00e9 inv\u00e1lido.","numeric":"O campo :attribute deve conter um valor num\u00e9rico.","password":"A senha est\u00e1 incorreta.","present":"O campo :attribute deve estar presente.","regex":"O formato do valor informado no campo :attribute \u00e9 inv\u00e1lido.","required":"O campo :attribute \u00e9 obrigat\u00f3rio.","required_if":"O campo :attribute \u00e9 obrigat\u00f3rio quando o valor do campo :other \u00e9 igual a :value.","required_unless":"O campo :attribute \u00e9 obrigat\u00f3rio a menos que :other esteja presente em :values.","required_with":"O campo :attribute \u00e9 obrigat\u00f3rio quando :values est\u00e1 presente.","required_with_all":"O campo :attribute \u00e9 obrigat\u00f3rio quando um dos :values est\u00e1 presente.","required_without":"O campo :attribute \u00e9 obrigat\u00f3rio quando :values n\u00e3o est\u00e1 presente.","required_without_all":"O campo :attribute \u00e9 obrigat\u00f3rio quando nenhum dos :values est\u00e1 presente.","same":"Os campos :attribute e :other devem conter valores iguais.","size":{"array":"O campo :attribute deve conter :size itens.","file":"O campo :attribute deve conter um arquivo com o tamanho de :size kilobytes.","numeric":"O campo :attribute deve conter o n\u00famero :size.","string":"O campo :attribute deve conter :size caracteres."},"starts_with":"O campo :attribute deve come\u00e7ar com um dos seguintes valores: :values","string":"O campo :attribute deve ser uma string.","timezone":"O campo :attribute deve conter um fuso hor\u00e1rio v\u00e1lido.","unique":"O valor informado para o campo :attribute j\u00e1 est\u00e1 em uso.","uploaded":"Falha no Upload do arquivo :attribute.","url":"O formato da URL informada para o campo :attribute \u00e9 inv\u00e1lido.","uuid":"O campo :attribute deve ser um UUID v\u00e1lido.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/pt.json b/public/js/langs/pt.json deleted file mode 100644 index 5b29908ced0..00000000000 --- a/public/js/langs/pt.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Adicionar","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Back","breadcrumb_add_note":"Adicionar uma nota","breadcrumb_add_significant_other":"Adicionar companheiro(a)","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Painel","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"Como se conheceram","breadcrumb_edit_note":"Editar nota","breadcrumb_edit_significant_other":"Editar companheiro(a)","breadcrumb_journal":"Di\u00e1rio","breadcrumb_list_contacts":"Lista de contatos","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Configura\u00e7\u00f5es","breadcrumb_settings_export":"Exportar","breadcrumb_settings_import":"Importar","breadcrumb_settings_import_report":"Importar relat\u00f3rio","breadcrumb_settings_import_upload":"Enviar","breadcrumb_settings_personalization":"Personaliza\u00e7\u00e3o","breadcrumb_settings_security":"Seguran\u00e7a","breadcrumb_settings_security_2fa":"Autentica\u00e7\u00e3o de dois fatores","breadcrumb_settings_subscriptions":"Subscri\u00e7\u00e3o","breadcrumb_settings_tags":"Etiquetas","breadcrumb_settings_users":"Utilizadores","breadcrumb_settings_users_add":"Adicionar um utilizador","cancel":"Cancelar","close":"Fechar","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Pedimos desculpa pela interrup\u00e7\u00e3o.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Create","date":"Data","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"Os dados foram guardados.","delete":"Deletar","delete_confirm":"Are you sure?","done":"Conclu\u00eddo","download":"Transferir","edit":"Editar","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"Ocorreu um erro ao guardar os dados.","error_title":"Ups! Algo correu mal.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"N\u00e3o tem permiss\u00f5es para editar este recurso.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"A sua instala\u00e7\u00e3o encontra-se 1 vers\u00e3o atr\u00e1s da vers\u00e3o mais recente dispon\u00edvel. \u00c9 recomendado atualizar a sua instala\u00e7\u00e3o.|A sua instala\u00e7\u00e3o encontra-se :number vers\u00f5es atr\u00e1s da vers\u00e3o mais recente dispon\u00edvel. \u00c9 recomendado atualizar a sua instala\u00e7\u00e3o.","footer_modal_version_whats_new":"O que h\u00e1 de novo","footer_new_version":"A new version of Monica is available","footer_newsletter":"Boletim informativo","footer_privacy":"Pol\u00edtica de Privacidade","footer_release":"Notas de vers\u00e3o","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribuir","footer_version":"Vers\u00e3o: :version","gender_female":"Mulher","gender_male":"Homem","gender_no_gender":"Sem g\u00e9nero","gender_none":"Prefiro n\u00e3o dizer","go_back":"Retroceder","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Configura\u00e7\u00f5es","load_more":"Carregar mais","loading":"Loading\u2026","main_nav_activities":"Atividades","main_nav_cta":"Adicionar Pessoa","main_nav_dashboard":"Painel","main_nav_family":"Contatos","main_nav_journal":"Di\u00e1rio","main_nav_tasks":"Tarefas","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Ler a documenta\u00e7\u00e3o","new":"new","no":"N\u00e3o","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Rela\u00e7\u00f5es familiares","relationship_type_group_friend":"Rela\u00e7\u00f5es de amizade","relationship_type_group_love":"Rela\u00e7\u00f5es amorosas","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Rela\u00e7\u00f5es laborais","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"companheiro","relationship_type_partner_female":"companheira","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Remover","retry":"Tentar novamente","revoke":"Revogar","save":"Salvar","save_close":"Guardar e Fechar","today":"hoje","type":"Type","unknown":"I don\u2019t know","update":"Atualizar","upgrade":"Upgrade to unlock","upload":"Enviar","verify":"Verificar","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"com","yes":"Sim","yesterday":"ontem","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Introduza um c\u00f3digo de recupera\u00e7\u00e3o de dois fatores","2fa_title":"Autentica\u00e7\u00e3o de dois fatores","2fa_wrong_validation":"Falha na autentica\u00e7\u00e3o de dois fatores.","back_homepage":"Voltar \u00e0 p\u00e1gina inicial","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"As informa\u00e7\u00f5es de login n\u00e3o foram encontradas.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"Voc\u00ea n\u00e3o est\u00e1 autorizado a executar esta a\u00e7\u00e3o","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Atualmente o registro est\u00e1 desativado","signup_error":"An error occured trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"Muitas tentativas de login. Por favor tente novamente em :seconds segundos.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Adicione o seu primeiro contacto","dashboard_blank_description":"Com Monica pode organizar todas as suas intera\u00e7\u00f5es com as pessoas que s\u00e3o importantes para si.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Seja bem-vindo \u00e0 sua conta!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Atividades","statistics_contacts":"Contatos","statistics_gifts":"Presentes","tab_calls_blank":"Voc\u00ea ainda n\u00e3o registou chamadas.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Notas favoritas","tab_recent_calls":"Chamadas recentes","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"d M Y","full_hour":"H:i","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M Y","short_date_year_time":"d M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Tem certeza que quer apagar esta entrada de di\u00e1rio?","entry_delete_success":"O registro no di\u00e1rio foi eliminada com sucesso.","journal_add":"Adicionar um registro no di\u00e1rio","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Salvar","journal_add_date":"Date","journal_add_post":"Registro","journal_add_title":"T\u00edtulo (Opcional)","journal_blank_cta":"Adicione seu primeiro registro no di\u00e1rio","journal_blank_description":"O di\u00e1rio permite que voc\u00ea escreva eventos que aconteceram com voc\u00ea, para te lembrar.","journal_come_back":"Obrigado. Volte amanh\u00e3 para avaliar o seu dia novamente.","journal_created_at":"Created at {date}","journal_created_automatically":"Criado automaticamente","journal_description":"Nota: o di\u00e1rio agrega entradas manuais e entradas autom\u00e1ticas tais como Atividades feitas com seus contactos. Embora possa apagar manualmente as entradas de di\u00e1rio, no caso das Atividades ter\u00e1 que apag\u00e1-las na p\u00e1gina de contacto.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"Voc\u00ea avaliou o seu dia.","journal_entry_type_activity":"Atividade","journal_entry_type_journal":"Entrada de di\u00e1rio","journal_rate":"Como foi o seu dia? Voc\u00ea pode avali\u00e1-lo uma vez por dia.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica - Verifica\u00e7\u00e3o de e-mail","footer_contact_info":"Adicionar, visualizar, completar e alterar informa\u00e7\u00f5es sobre este contato:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"Para: :name","greetings":"Ol\u00e1 :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"Em :count dias (em :date), acontecer\u00e1 o evento seguinte:","notification_subject_line":"Voc\u00ea tem um evento futuro","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Ol\u00e1!","notifications_regards":"Regards","notifications_rights":"Todos os direitos reservados","notifications_whoops":"Oops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Lembrete para :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Pr\u00f3xima \u276f","previous":"\u276e Anterior"},"passwords":{"changed":"Password changed successfully.","invalid":"A senha que introduziu n\u00e3o est\u00e1 correta.","reset":"Sua senha foi redefinida!","sent":"O link para redefini\u00e7\u00e3o de senha foi enviado para o seu e-mail.","throttled":"Please wait before retrying.","token":"Token para recupera\u00e7\u00e3o de senha inv\u00e1lido.","user":"O link para redefini\u00e7\u00e3o de senha foi enviado para o seu e-mail."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Adicionar atividade","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"A atividade foi adicionada com sucesso","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Adicionar uma atividade","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"A atividade foi exclu\u00edda com sucesso","activities_item_information":":Activity. Aconteceu em :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Descreva o que voc\u00ea fez","activities_update_success":"A atividade foi atualizada com sucesso","activities_view_activities_report":"View activities report","activities_who_was_involved":"Quem estava envolvido?","activity_title":"Atividades","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"comi em casa","activity_type_ate_restaurant":"comi em um restaurante","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"apenas sai","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"apenas fiquei em casa","activity_type_watched_movie_at_home":"assisti um filme em casa","activity_type_went_bar":"fui para um bar","activity_type_went_concert":"fui a um concerto","activity_type_went_museum":"fui a um museu","activity_type_went_play":"fui jogar","activity_type_went_theater":"fui a um teatro","age_approximate_in_years":"por volta de :age anos de idade","age_exact_birthdate":"nascido :date","age_exact_in_years":":age anos de idade","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"A data de nascimento n\u00e3o est\u00e1 definida","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Registar uma chamada","call_delete_confirmation":"Tem certeza que deseja eliminar esta chamada?","call_delete_success":"A chamada foi eliminada com sucesso","call_emotions":"Emotions:","call_empty_comment":"Sem detalhes","call_he_called":"{name} called","call_title":"Chamadas telef\u00f3nicas","call_you_called":"You called","calls_add_success":"O telefonema foi guardado.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Adicionar d\u00edvida","debt_add_amount":"a soma de","debt_add_cta":"Adicionar d\u00edvida","debt_add_reason":"Pelo seguinte motivo (Opcional)","debt_add_success":"A d\u00edvida foi adicionada com sucesso","debt_add_they_owe":":name te deve","debt_add_title":"Debt management","debt_add_you_owe":"Voc\u00ea deve a :name","debt_delete_confirmation":"Tem certeza de que deseja excluir esta d\u00edvida?","debt_delete_success":"A d\u00edvida foi exclu\u00edda com sucesso","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name te deve :amount","debt_title":"D\u00edvidas","debt_you_owe":"Voc\u00ea deve :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Editar informa\u00e7\u00e3o do contato","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"As prefer\u00eancias de alimentos foram salvas","food_preferences_cta":"Adicione prefer\u00eancias de alimentos","food_preferences_edit_cta":"Guardar prefer\u00eancias de alimentos","food_preferences_edit_description":"Talvez :firstname ou algu\u00e9m na fam\u00edlia de :family tenha uma alergia. Ou n\u00e3o gosta de uma garrafa espec\u00edfica de vinho. Indique-os aqui para que voc\u00ea lembre-se da pr\u00f3xima vez que voc\u00ea os convide para o jantar","food_preferences_edit_description_no_last_name":"Talvez :firstname tenha uma alergia. Ou n\u00e3o gosta de uma garrafa espec\u00edfica de vinho. Indique-os aqui para que voc\u00ea lembre-se da pr\u00f3xima vez que voc\u00ea os convide para o jantar","food_preferences_edit_title":"Indique prefer\u00eancias de alimentos","food_preferences_title":"Prefer\u00eancias alimentares","gifts_add_comment":"Coment\u00e1rio (Opcional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Adicionar um presente","gifts_add_gift_already_offered":"Presente j\u00e1 oferecido","gifts_add_gift_idea":"Ideia de presente","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"O que \u00e9 esse presente?","gifts_add_link":"Ligar com o site (Opcional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"O presente foi adicionado com sucesso","gifts_add_title":"Gerenciamento de presentes para :name","gifts_add_value":"Valor (Opcional)","gifts_delete_confirmation":"Tem certeza de que deseja excluir esse presente?","gifts_delete_cta":"Deletar","gifts_delete_success":"O presente foi exclu\u00eddo com sucesso","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Ligar","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"Ver coment\u00e1rio","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"Conhe\u00e7o a data de nascimento exata dessa pessoa, que \u00e9","information_edit_firstname":"Primeiro nome","information_edit_lastname":"Sobrenome (Opcional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"Eu sei o dia e o m\u00eas da data de nascimento desta pessoa, mas n\u00e3o o ano\u2026","information_edit_probably":"Esta pessoa \u00e9 provavelmente","information_edit_success":"O perfil foi atualizado com sucesso","information_edit_title":"Editar informa\u00e7\u00f5es pessoais para :name","information_edit_unknown":"Eu n\u00e3o sei a idade desta pessoa","information_no_work_defined":"Nenhuma informa\u00e7\u00e3o profissional definida","information_work_at":"em :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"Sobre o que falaram? (opcional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"O telefonema aconteceu em","modal_call_title":"Registar uma chamada","modal_call_who_called":"Who called?","notes_add_cta":"Adicionar nota","notes_create_success":"A nota foi adicionada com sucesso","notes_delete_confirmation":"Tem certeza de que deseja excluir esta anota\u00e7\u00e3o? A exclus\u00e3o \u00e9 permanente","notes_delete_success":"A nota foi exclu\u00edda com sucesso","notes_delete_title":"Eliminar nota","notes_favorite":"Add\/remove from favorites","notes_update_success":"A nota foi guardada com sucesso","people_add_birthday_reminder":"Desejar feliz anivers\u00e1rio a :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"Adicionar essa pessoa","people_add_firstname":"Primeiro nome","people_add_gender":"G\u00eanero","people_add_import":"Deseja importar os seus contatos<\/a>?","people_add_lastname":"Sobrenome (Opcional)","people_add_middlename":"Nome do meio (Opcional)","people_add_missing":"Nenhuma pessoa encontrada adicionar uma nova agora","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name foi criado com sucesso","people_add_title":"Adicione uma nova pessoa","people_delete_confirmation":"Voc\u00ea tem certeza de que deseja excluir esse contato? A exclus\u00e3o \u00e9 permanente.","people_delete_message":"Delete contact","people_delete_success":"O contato foi exclu\u00eddo","people_edit_email_error":"J\u00e1 existe um contacto na sua conta com este endere\u00e7o de e-mail. Por favor escolha outro.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Consumo da sua conta: :current\/:limit contactos","people_list_blank_cta":"Adicionar uma pessoa","people_list_blank_title":"Voc\u00ea ainda n\u00e3o tem ningu\u00e9m em sua conta","people_list_clear_filter":"Limpar filtro","people_list_contacts_per_tags":"1 contacto|:count contactos","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Classificar por primeiro nome A \u2192 Z","people_list_firstnameZA":"Classificar por primeiro nome Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"\u00daltima consulta:","people_list_lastactivitydateNewtoOld":"Ordenar por data de \u00faltima atividade (da mais recente \u00e0 mais antiga)","people_list_lastactivitydateOldtoNew":"Ordenar por data de \u00faltima atividade (da mais antiga \u00e0 mais recente)","people_list_lastnameAZ":"Classificar por sobrenome A \u2192 Z","people_list_lastnameZA":"Classificar por sobrenome Z \u2192 A","people_list_number_kids":"1 crian\u00e7a|:count crian\u00e7as","people_list_number_reminders":"1 lembrete|:count lembretes","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Ordenar","people_list_stats":"1 contacto|:count contactos","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Enviar e adicionar outra pessoa","people_search":"Procurar nos seus contactos...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"P\u00e1ssaro","pets_cat":"Gato","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"C\u00e3o","pets_fish":"Peixe","pets_hamster":"Hamster","pets_horse":"Cavalo","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Outro","pets_rabbit":"Coelho","pets_rat":"Rato","pets_reptile":"R\u00e9ptil","pets_small_animal":"Animal pequeno","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"todos os dias|a cada :number dias","reminder_frequency_month":"todo month|cada :number m\u00eases","reminder_frequency_one_time":"em :date","reminder_frequency_week":"toda semana|cada :number semanas","reminder_frequency_year":"todo year|cada :number anos","reminders_add_cta":"Adicionar lembrete","reminders_add_description":"Lembre-me de...","reminders_add_error_custom_text":"Voc\u00ea precisa indicar um texto para esse lembrete","reminders_add_next_time":"Quando \u00e9 a pr\u00f3xima vez que voc\u00ea gostaria de ser lembrado sobre isso?","reminders_add_once":"Lembre-me sobre isso apenas uma vez","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Lembre-me sobre isso a todo momento","reminders_add_starting_from":"come\u00e7ar a partir da data especificada acima","reminders_add_title":"Sobre o que voc\u00ea gostaria de lembrar sobre :name?","reminders_birthday":"Birthdate of :name","reminders_blank_add_activity":"Adicionar um lembrete","reminders_blank_title":"H\u00e1 algo sobre o qual voc\u00ea quer se lembrar :name?","reminders_create_success":"O lembrete foi adicionado com sucesso","reminders_cta":"Adicionar um lembrete","reminders_delete_confirmation":"em certeza de que deseja excluir esse lembrete?","reminders_delete_cta":"Deletar","reminders_delete_success":"O lembrete foi exclu\u00eddo com sucesso","reminders_description":"N\u00f3s enviaremos um e-mail para cada uma dos lembretes abaixo. Lembretes s\u00e3o enviados todas as manh\u00e3s dos dias em que os eventos acontecer\u00e3o","reminders_edit_update_cta":"Atualizar lembrete","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"em","reminders_one_time":"Uma vez","reminders_type_month":"m\u00eas","reminders_type_week":"semana","reminders_type_year":"ano","reminders_update_success":"O lembrete foi atualizado com sucesso","section_contact_information":"Informa\u00e7\u00f5es de contacto","section_personal_activities":"Atividades","section_personal_gifts":"Presentes","section_personal_notes":"Notes","section_personal_reminders":"Lembretes","section_personal_tasks":"Tarefas","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Adicionar uma tarefa","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"O status da tarefa foi alterado com sucesso","tasks_delete_success":"A tarefa foi exclu\u00edda com sucesso","tasks_form_description":"Description (optional)","tasks_form_title":"T\u00edtulo","tasks_title":"Tasks","work_add_cta":"Atualizar informa\u00e7\u00e3o de trabalho","work_edit_company":"Empresa (opcional)","work_edit_job":"Cargo (opcional)","work_edit_success":"Work information updated","work_edit_title":"Atualizar a informa\u00e7\u00e3o profissional de :name","work_information":"Work information"},"reminder":{"type_birthday":"Desejar feliz anivers\u00e1rio para","type_birthday_kid":"Desejar feliz anivers\u00e1rio para o filho de","type_email":"Email","type_hangout":"Sair com","type_lunch":"Almo\u00e7ar com","type_phone_call":"Ligar"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Autentica\u00e7\u00e3o de dois fatores","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Moneda","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Deletar conta","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Endere\u00e7o de email","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Digite o email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Exportar os seus dados","export_title_sql":"Export data to SQL","firstname":"Primeiro nome","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Apelido","layout":"Layout","layout_big":"Largura total do navegador","layout_small":"M\u00e1ximo 1200 pixels de largura","locale":"Idioma usado no aplicativo","locale_ar":"Arabic","locale_cs":"Checo","locale_de":"Alem\u00e3o","locale_en":"Ingl\u00eas","locale_en-GB":"English (United Kingdom)","locale_es":"Espanhol","locale_fr":"Franc\u00eas","locale_he":"Hebraico","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croata","locale_it":"Italiano","locale_ja":"Japanese","locale_nl":"Holand\u00eas","locale_pt":"Portugu\u00eas","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russo","locale_sv":"Swedish","locale_tr":"Turco","locale_zh":"Chin\u00eas (Simplificado)","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Seu nome: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Salvar Prefer\u00eancias","security_help":"Change security matters for your account.","security_title":"Seguran\u00e7a","settings_success":"Prefer\u00eancias atualizadas!","sidebar_personalization":"Personaliza\u00e7\u00e3o","sidebar_settings":"Defini\u00e7\u00f5es de conta","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"Recursos DAV","sidebar_settings_export":"Exportar dados","sidebar_settings_import":"Importar dados","sidebar_settings_security":"Seguran\u00e7a","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscri\u00e7\u00e3o","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Utilizadores","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contacto|:count contactos","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully with success","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Fuso hor\u00e1rio","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"O campo :attribute deve ser aceito.","active_url":"O campo :attribute deve conter uma URL v\u00e1lida.","after":"O campo :attribute deve conter uma data posterior a :date.","after_or_equal":"O campo :attribute dever\u00e1 conter uma data posterior ou igual a :date.","alpha":"O campo :attribute deve conter apenas letras.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"O campo :attribute deve conter apenas letras e n\u00fameros .","array":"O campo :attribute deve conter um array.","attributes":[],"before":"O campo :attribute deve conter uma data anterior a :date.","before_or_equal":"O Campo :attribute dever\u00e1 conter uma data anterior ou igual a :date.","between":{"array":"O campo :attribute deve conter de :min a :max itens.","file":"O campo :attribute deve conter um arquivo de :min a :max kilobytes.","numeric":"O campo :attribute deve conter um n\u00famero entre :min e :max.","string":"O campo :attribute deve conter entre :min a :max caracteres."},"boolean":"O campo :attribute deve conter o valor verdadeiro ou falso.","confirmed":"A confirma\u00e7\u00e3o para o campo :attribute n\u00e3o coincide.","custom":{"attribute-name":{"rule-name":"mensagem-personalizada"}},"date":"O campo :attribute n\u00e3o cont\u00e9m uma data v\u00e1lida.","date_equals":"The :attribute must be a date equal to :date.","date_format":"A data informada para o campo :attribute n\u00e3o respeita o formato :format.","different":"Os campos :attribute e :other devem conter valores diferentes.","digits":"O campo :attribute deve conter :digits d\u00edgitos.","digits_between":"O campo :attribute deve conter entre :min a :max d\u00edgitos.","dimensions":"O campo :attribute dever\u00e1 conter uma dimens\u00e3o de imagem v\u00e1lida.","distinct":"O campo :attribute cont\u00e9m um valor duplicado.","email":"O campo :attribute n\u00e3o cont\u00e9m um endere\u00e7o de email v\u00e1lido.","ends_with":"The :attribute must end with one of the following: :values.","exists":"O valor selecionado para o campo :attribute \u00e9 inv\u00e1lido.","file":"O campo :attribute dever\u00e1 conter um ficheiro.","filled":"\u00c9 obrigat\u00f3ria a indica\u00e7\u00e3o de um valor para o campo :attribute.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"O campo :attribute deve conter uma imagem.","in":"O campo :attribute n\u00e3o cont\u00e9m um valor v\u00e1lido.","in_array":"O campo :attribute n\u00e3o existe em :other.","integer":"O campo :attribute deve conter um n\u00famero inteiro.","ip":"O campo :attribute deve conter um IP v\u00e1lido.","ipv4":"O campo :attribute dever\u00e1 conter um IPv4 v\u00e1lido.","ipv6":"O campo :attribute dever\u00e1 conter um IPv6 v\u00e1lido.","json":"O campo :attribute deve conter uma string JSON v\u00e1lida.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"O campo :attribute deve conter no m\u00e1ximo :max itens.","file":"O campo :attribute n\u00e3o pode conter um arquivo com mais de :max kilobytes.","numeric":"O campo :attribute n\u00e3o pode conter um valor superior a :max.","string":"O campo :attribute n\u00e3o pode conter mais de :max caracteres."},"mimes":"O campo :attribute deve conter um arquivo do tipo: :values.","mimetypes":"O campo :attribute dever\u00e1 conter um ficheiro do tipo: :values.","min":{"array":"O campo :attribute deve conter no m\u00ednimo :min itens.","file":"O campo :attribute deve conter um arquivo com no m\u00ednimo :min kilobytes.","numeric":"O campo :attribute deve conter um n\u00famero superior ou igual a :min.","string":"O campo :attribute deve conter no m\u00ednimo :min caracteres."},"not_in":"O campo :attribute cont\u00e9m um valor inv\u00e1lido.","not_regex":"The :attribute format is invalid.","numeric":"O campo :attribute deve conter um valor num\u00e9rico.","password":"The password is incorrect.","present":"O campo :attribute deve estar presente.","regex":"O formato do valor informado no campo :attribute \u00e9 inv\u00e1lido.","required":"O campo :attribute \u00e9 obrigat\u00f3rio.","required_if":"O campo :attribute \u00e9 obrigat\u00f3rio quando o valor do campo :other \u00e9 igual a :value.","required_unless":"O campo :attribute \u00e9 obrigat\u00f3rio a menos que :other esteja presente em :values.","required_with":"O campo :attribute \u00e9 obrigat\u00f3rio quando :values est\u00e1 presente.","required_with_all":"The :attribute field is required when :values are present.","required_without":"O campo :attribute \u00e9 obrigat\u00f3rio quando :values n\u00e3o est\u00e1 presente.","required_without_all":"O campo :attribute \u00e9 obrigat\u00f3rio quando nenhum dos :values est\u00e1 presente.","same":"Os campos :attribute e :other devem conter valores iguais.","size":{"array":"O campo :attribute deve conter :size itens.","file":"O campo :attribute deve conter um arquivo com o tamanho de :size kilobytes.","numeric":"O campo :attribute deve conter o n\u00famero :size.","string":"O campo :attribute deve conter :size caracteres."},"starts_with":"The :attribute must start with one of the following: :values.","string":"O campo :attribute deve ser uma string.","timezone":"O campo :attribute deve conter um fuso hor\u00e1rio v\u00e1lido.","unique":"O valor informado para o campo :attribute j\u00e1 est\u00e1 em uso.","uploaded":"O upload do ficheiro :attribute falhou.","url":"O formato da URL informada para o campo :attribute \u00e9 inv\u00e1lido.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/ru.json b/public/js/langs/ru.json deleted file mode 100644 index 5030b8e86cf..00000000000 --- a/public/js/langs/ru.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"\u041d\u0430\u0437\u0430\u0434","breadcrumb_add_note":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043c\u0435\u0442\u043a\u0443","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"\u041e\u0431\u0437\u043e\u0440","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"\u0416\u0443\u0440\u043d\u0430\u043b","breadcrumb_list_contacts":"\u0421\u043f\u0438\u0441\u043e\u043a \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432","breadcrumb_profile":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c :name","breadcrumb_settings":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","breadcrumb_settings_export":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442","breadcrumb_settings_import":"\u0418\u043c\u043f\u043e\u0440\u0442","breadcrumb_settings_import_report":"\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u0442\u0447\u0451\u0442","breadcrumb_settings_import_upload":"\u0417\u0430\u043a\u0430\u0447\u0430\u0442\u044c","breadcrumb_settings_personalization":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f","breadcrumb_settings_security":"\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c","breadcrumb_settings_security_2fa":"\u0414\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f","breadcrumb_settings_subscriptions":"\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0430","breadcrumb_settings_tags":"\u0422\u044d\u0433\u0438","breadcrumb_settings_users":"\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438","breadcrumb_settings_users_add":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","cancel":"\u041e\u0442\u043c\u0435\u043d\u0430","close":"\u0417\u0430\u043a\u0440\u044b\u0442\u044c","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or account and will never do.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c","create":"\u0421\u043e\u0437\u0434\u0430\u0442\u044c","date":"\u0414\u0430\u0442\u0430","dav_birthdays":"\u0414\u043d\u0438 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b","dav_contacts_description":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b :name","dav_tasks":"\u0417\u0430\u0434\u0430\u0447\u0438","dav_tasks_description":"\u0417\u0430\u0434\u0430\u0447\u0438 :name","default_save_success":"The data has been saved.","delete":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c","delete_confirm":"Are you sure?","done":"Done","download":"Download","edit":"\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"\u0420\u0430\u0437\u0434\u0440\u0430\u0436\u0435\u043d\u0438\u0435","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"\u0420\u0430\u0434\u043e\u0441\u0442\u044c","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"\u041b\u044e\u0431\u043e\u0432\u044c","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"\u0413\u043d\u0435\u0432","emotion_primary_fear":"\u0421\u0442\u0440\u0430\u0445","emotion_primary_joy":"\u0420\u0430\u0434\u043e\u0441\u0442\u044c","emotion_primary_love":"\u041b\u044e\u0431\u043e\u0432\u044c","emotion_primary_sadness":"\u0413\u0440\u0443\u0441\u0442\u044c","emotion_primary_surprise":"\u0423\u0434\u0438\u0432\u043b\u0435\u043d\u0438\u0435","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"\u041e\u0431\u043b\u0435\u0433\u0447\u0435\u043d\u0438\u0435","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"\u0420\u0430\u0437\u043e\u0447\u0430\u0440\u043e\u0432\u0430\u043d\u0438\u0435","emotion_secondary_disgust":"\u041e\u0442\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"\u0417\u0430\u0432\u0438\u0441\u0442\u044c","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"\u0423\u0436\u0430\u0441","emotion_secondary_irritation":"\u0420\u0430\u0437\u0434\u0440\u0430\u0436\u0435\u043d\u0438\u0435","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"\u041e\u043f\u0442\u0438\u043c\u0438\u0437\u043c","emotion_secondary_pride":"\u0413\u043e\u0440\u0434\u043e\u0441\u0442\u044c","emotion_secondary_rage":"\u042f\u0440\u043e\u0441\u0442\u044c","emotion_secondary_relief":"\u041e\u0431\u043b\u0435\u0433\u0447\u0435\u043d\u0438\u0435","emotion_secondary_sadness":"\u0413\u0440\u0443\u0441\u0442\u044c","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"\u0421\u0442\u0440\u0430\u0434\u0430\u043d\u0438\u0435","emotion_secondary_surprise":"\u0423\u0434\u0438\u0432\u043b\u0435\u043d\u0438\u0435","emotion_secondary_sympathy":"\u0421\u0438\u043c\u043f\u0430\u0442\u0438\u044f","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"\u041e\u0439, \u0447\u0442\u043e-\u0442\u043e \u043f\u043e\u0448\u043b\u043e \u043d\u0435 \u0442\u0430\u043a.","error_try_again":"\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043d\u043e\u0432\u0430.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"\u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e \u0440\u0435\u0441\u0443\u0440\u0441\u0430.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"\u0427\u0442\u043e \u043d\u043e\u0432\u043e\u0433\u043e","footer_new_version":"A new version of Monica is available","footer_newsletter":"\u0420\u0430\u0441\u0441\u044b\u043b\u043a\u0430","footer_privacy":"\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438","footer_release":"\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f \u043a \u0432\u044b\u043f\u0443\u0441\u043a\u0443","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"\u0412\u0435\u0440\u0441\u0438\u044f: :version","gender_female":"\u0416\u0435\u043d\u0441\u043a\u0438\u0439","gender_male":"\u041c\u0443\u0436\u0441\u043a\u043e\u0439","gender_no_gender":"No gender","gender_none":"\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"\u0412\u044b\u0439\u0442\u0438","header_settings_link":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","load_more":"Load more","loading":"Loading\u2026","main_nav_activities":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438","main_nav_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043b\u044e\u0434\u0435\u0439","main_nav_dashboard":"\u041e\u0431\u0437\u043e\u0440","main_nav_family":"\u043a\u043e\u043d\u0442\u0430\u043a\u0442\u044b","main_nav_journal":"\u0416\u0443\u0440\u043d\u0430\u043b","main_nav_tasks":"\u0417\u0430\u0434\u0430\u0447\u0438","markdown_description":"\u0425\u043e\u0442\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448 \u0442\u0435\u043a\u0441\u0442? \u041c\u044b \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c Markdown \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u044d\u0442\u0438\u0445 \u0444\u0443\u043d\u043a\u0446\u0438\u0439","markdown_link":"\u0427\u0438\u0442\u0430\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e","new":"new","no":"\u041d\u0435\u0442","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"\u0441\u044b\u043d","relationship_type_child_female":"\u0434\u043e\u0447\u044c","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"\u043a\u043e\u043b\u043b\u0435\u0433\u0430","relationship_type_colleague_female":"\u043a\u043e\u043b\u043b\u0435\u0433\u0430","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"\u0431\u044b\u0432\u0448\u0438\u0439 \u043c\u0443\u0436","relationship_type_ex_husband_female":"\u0431\u044b\u0432\u0448\u0430\u044f \u0436\u0435\u043d\u0430","relationship_type_ex_husband_female_with_name":":name\u2019s ex wife","relationship_type_ex_husband_with_name":":name\u2019s ex husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"\u043a\u0440\u0451\u0441\u0442\u043d\u044b\u0439 \u043e\u0442\u0435\u0446","relationship_type_godfather_female":"\u043a\u0440\u0451\u0441\u0442\u043d\u0430\u044f \u043c\u0430\u0442\u044c","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"\u0431\u0440\u0430\u0442","relationship_type_sibling_female":"\u0441\u0435\u0441\u0442\u0440\u0430","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"\u0434\u044f\u0434\u044f","relationship_type_uncle_female":"\u0442\u0451\u0442\u044f","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"\u0423\u0431\u0440\u0430\u0442\u044c","retry":"Retry","revoke":"Revoke","save":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c","save_close":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u0437\u0430\u043a\u0440\u044b\u0442\u044c","today":"\u0441\u0435\u0433\u043e\u0434\u043d\u044f","type":"Type","unknown":"\u042f \u043d\u0435 \u0437\u043d\u0430\u044e","update":"\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c","upgrade":"Upgrade to unlock","upload":"\u0417\u0430\u043a\u0430\u0447\u0430\u0442\u044c","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"\u0422\u0435\u043a\u0443\u0449\u0430\u044f \u043f\u043e\u0433\u043e\u0434\u0430","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"\u0414\u0430","yesterday":"\u0432\u0447\u0435\u0440\u0430","zoom":"Zoom"},"auth":{"2fa_one_time_password":"\u041a\u043e\u0434 \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u043e\u0439 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"\u0414\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","button_remember":"\u0417\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043c\u0435\u043d\u044f","change_language":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u044f\u0437\u044b\u043a \u043d\u0430 :lang","change_language_title":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u044f\u0437\u044b\u043a:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438 \u043f\u0430\u0440\u043e\u043b\u044c \u043d\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u044e\u0442.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"\u0412\u0430\u043c \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u044d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435.","password":"\u041f\u0430\u0440\u043e\u043b\u044c","password_forget":"\u0417\u0430\u0431\u044b\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?","password_reset":"Reset your password","password_reset_action":"\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","recovery":"Recovery code","register_action":"Register","register_create_account":"\u0414\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f Monica \u0432\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0430\u043a\u043a\u0430\u0443\u043d\u0442","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"\u0418\u043c\u044f","register_firstname_example":"\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0418\u0432\u0430\u043d","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"\u0424\u0430\u043c\u0438\u043b\u0438\u044f","register_lastname_example":"\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0418\u0432\u0430\u043d\u043e\u0432","register_login":"Log in<\/a> if you already have an account.","register_password":"\u041f\u0430\u0440\u043e\u043b\u044c","register_password_confirmation":"Password confirmation","register_password_example":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u043b\u043e\u0436\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0430.","signup_error":"\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","signup_no_account":"\u041d\u0435\u0442 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430?","throttle":"\u0421\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u043e\u043f\u044b\u0442\u043e\u043a \u0432\u0445\u043e\u0434\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437 \u0447\u0435\u0440\u0435\u0437 :seconds \u0441\u0435\u043a\u0443\u043d\u0434.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043f\u0435\u0440\u0432\u044b\u0439 \u043a\u043e\u043d\u0442\u0430\u043a\u0442","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 \u0432\u0430\u0448 \u0430\u043a\u043a\u0430\u0443\u043d\u0442!","debts_you_owe":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"\u0421\u043e\u0431\u044b\u0442\u0438\u044f \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 3 \u043c\u0435\u0441\u044f\u0446\u0430","reminders_none":"\u041d\u0435\u0442 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0439 \u0432 \u044d\u0442\u043e\u043c \u043c\u0435\u0441\u044f\u0446\u0435.","statistics_activities":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438","statistics_contacts":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b","statistics_gifts":"\u041f\u043e\u0434\u0430\u0440\u043a\u0438","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"\u0414\u043e\u043b\u0433\u0438","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043c\u0435\u0442\u043a\u0438","tab_recent_calls":"\u041d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u0432\u044b\u0437\u043e\u0432\u044b","tab_tasks":"\u0417\u0430\u0434\u0430\u0447\u0438","tab_tasks_blank":"\u0423 \u0412\u0430\u0441 \u0435\u0449\u0435 \u043d\u0435\u0442 \u0437\u0430\u0434\u0430\u0447.","task_add_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443","tasks_add_note":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 Enter<\/kbd>, \u0447\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"\u0412\u0430\u0448\u0438 \u0437\u0430\u0434\u0430\u0447\u0438"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u0443 \u0437\u0430\u043f\u0438\u0441\u044c?","entry_delete_success":"\u0417\u0430\u043f\u0438\u0441\u044c \u0431\u044b\u043b\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430.","journal_add":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0432 \u0436\u0443\u0440\u043d\u0430\u043b","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c","journal_add_date":"\u0414\u0430\u0442\u0430","journal_add_post":"\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435","journal_add_title":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","journal_blank_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432\u0430\u0448\u0443 \u043f\u0435\u0440\u0432\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0432 \u0436\u0443\u0440\u043d\u0430\u043b","journal_blank_description":"\u0412 \u0436\u0443\u0440\u043d\u0430\u043b \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0436\u0438\u0437\u043d\u0438, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0445.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c, \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c, \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0438 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e\u0431 \u044d\u0442\u043e\u043c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0435","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"\u041f\u0440\u0438\u0432\u0435\u0442 :username","invitation_button":"\u041f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435","invitation_expiration":"\u0421\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u044d\u0442\u043e\u0439 \u0441\u0441\u044b\u043b\u043a\u0438 \u0438\u0441\u0442\u0435\u043a\u0430\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 :count \u0434\u043d\u0435\u0439.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"\u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u0434\u043b\u044f :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"\u0412\u043f\u0435\u0440\u0451\u0434 \u276f","previous":"\u276e \u041d\u0430\u0437\u0430\u0434"},"passwords":{"changed":"\u041f\u0430\u0440\u043e\u043b\u044c \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d.","invalid":"Current password you entered is not correct.","reset":"\u0412\u0430\u0448 \u043f\u0430\u0440\u043e\u043b\u044c \u0431\u044b\u043b \u0441\u0431\u0440\u043e\u0448\u0435\u043d!","sent":"\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0441\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f \u0431\u044b\u043b\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0430.","throttled":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u0434\u043e\u0436\u0434\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0434 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u043f\u043e\u043f\u044b\u0442\u043a\u043e\u0439.","token":"\u041e\u0448\u0438\u0431\u043e\u0447\u043d\u044b\u0439 \u043a\u043e\u0434 \u0441\u0431\u0440\u043e\u0441\u0430 \u043f\u0430\u0440\u043e\u043b\u044f.","user":"\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0441\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f \u0431\u044b\u043b\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0430."},"people":{"activities_activity":"Activity Category","activities_add_activity":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0431\u044b\u043b\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430","activities_item_information":":Activity. \u0414\u0430\u0442\u0430: :date","activities_list_category":"\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"\u041e\u043f\u0438\u0448\u0438\u0442\u0435 \u0447\u0442\u043e \u0432\u044b \u0434\u0435\u043b\u0430\u043b\u0438","activities_update_success":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0431\u044b\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430","activities_view_activities_report":"View activities report","activities_who_was_involved":"\u041a\u0442\u043e \u0431\u044b\u043b \u0432\u043e\u0432\u043b\u0435\u0447\u0435\u043d?","activity_title":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"\u0435\u043b\u0438 \u0434\u043e\u043c\u0430","activity_type_ate_restaurant":"\u0435\u043b\u0438 \u0432 \u0440\u0435\u0441\u0442\u043e\u0440\u0430\u043d\u0435","activity_type_category_cultural_activities":"\u041a\u0443\u043b\u044c\u0442\u0443\u0440\u043d\u0430\u044f \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c","activity_type_category_food":"\u0415\u0434\u0430","activity_type_category_simple_activities":"\u041f\u0440\u043e\u0441\u0442\u0430\u044f \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c","activity_type_category_sport":"\u0421\u043f\u043e\u0440\u0442","activity_type_did_sport_activities_together":"\u0437\u0430\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u0441\u043f\u043e\u0440\u0442\u043e\u043c","activity_type_just_hung_out":"\u043f\u0440\u043e\u0441\u0442\u043e \u043f\u043e\u0432\u0435\u0441\u0435\u043b\u0438\u043b\u0438\u0441\u044c","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"\u0440\u0430\u0437\u0433\u043e\u0432\u0430\u0440\u0438\u0432\u0430\u043b\u0438 \u0434\u043e\u043c\u0430","activity_type_watched_movie_at_home":"\u0441\u043c\u043e\u0442\u0440\u0435\u043b\u0438 \u043a\u0438\u043d\u043e \u0434\u043e\u043c\u0430","activity_type_went_bar":"\u043e\u0442\u043f\u0440\u0430\u0432\u0438\u043b\u0438\u0441\u044c \u0432 \u0431\u0430\u0440","activity_type_went_concert":"\u0445\u043e\u0434\u0438\u043b\u0438 \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442","activity_type_went_museum":"\u0431\u044b\u043b\u0438 \u0432 \u043c\u0443\u0437\u0435\u0435","activity_type_went_play":"\u0445\u043e\u0434\u0438\u043b\u0438 \u0438\u0433\u0440\u0430\u0442\u044c","activity_type_went_theater":"\u0445\u043e\u0434\u0438\u043b\u0438 \u0432 \u0442\u0435\u0430\u0442\u0440","age_approximate_in_years":"\u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e :age \u043b\u0435\u0442","age_exact_birthdate":"\u0434\u0435\u043d\u044c \u0440\u043e\u0436\u043d\u0435\u043d\u0438\u044f: :date","age_exact_in_years":":age \u043b\u0435\u0442","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"\u0414\u0435\u043d\u044c \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d","call_blank_desc":"\u0412\u044b \u0437\u0432\u043e\u043d\u0438\u043b\u0438 {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0432\u043e\u043d\u043e\u043a","call_delete_confirmation":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0432\u043e\u043d\u043e\u043a?","call_delete_success":"\u0417\u0432\u043e\u043d\u043e\u043a \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0451\u043d","call_emotions":"\u042d\u043c\u043e\u0446\u0438\u0438:","call_empty_comment":"\u041d\u0435\u0442 \u0434\u0435\u0442\u0430\u043b\u0435\u0439","call_he_called":"{name} \u0437\u0432\u043e\u043d\u0438\u043b(\u0430)","call_title":"\u0422\u0435\u043b\u0435\u0444\u043e\u043d\u043d\u044b\u0435 \u0437\u0432\u043e\u043d\u043a\u0438","call_you_called":"\u0412\u044b \u0437\u0432\u043e\u043d\u0438\u043b\u0438","calls_add_success":"\u0417\u0432\u043e\u043d\u043e\u043a \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"\u0428\u0438\u0440\u043e\u0442\u0430 (\u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0438\u0444\u0440\u044b) (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","contact_address_form_longitude":"\u0414\u043e\u043b\u0433\u043e\u0442\u0430 (\u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0438\u0444\u0440\u044b) (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"\u0410\u0434\u0440\u0435\u0441\u0430","contact_archive":"\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442","contact_archive_help":"\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432 \u0441\u043f\u0438\u0441\u043a\u0435 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432, \u043d\u043e \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u044f\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u0445 \u043f\u043e\u0438\u0441\u043a\u0430.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"\u0422\u0438\u043f \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430","contact_info_form_content":"\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435","contact_info_form_personalize":"Personalize","contact_info_title":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f","contact_unarchive":"\u0420\u0430\u0437\u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442","conversation_add_another":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0435 \u043e\u0434\u043d\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435","conversation_add_content":"\u0417\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043e \u0447\u0435\u043c \u0433\u043e\u0432\u043e\u0440\u0438\u043b\u043e\u0441\u044c","conversation_add_error":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0445\u043e\u0442\u044f \u0431\u044b \u043e\u0434\u043d\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435.","conversation_add_how":"\u041a\u0430\u043a \u0432\u044b \u043e\u0431\u0449\u0430\u043b\u0438\u0441\u044c?","conversation_add_success":"\u0420\u0430\u0437\u0433\u043e\u0432\u043e\u0440 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d.","conversation_add_title":"\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0431\u0435\u0441\u0435\u0434\u0443","conversation_add_what_was_said":"\u0427\u0442\u043e \u0432\u044b \u0441\u043a\u0430\u0437\u0430\u043b\u0438?","conversation_add_when":"\u041a\u043e\u0433\u0434\u0430 \u0443 \u0432\u0430\u0441 \u0431\u044b\u043b \u044d\u0442\u043e\u0442 \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"\u0412\u044b","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440","conversation_delete_success":"\u0420\u0430\u0437\u0433\u043e\u0432\u043e\u0440 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0451\u043d.","conversation_edit_delete":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440? \u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e.","conversation_edit_success":"\u0420\u0430\u0437\u0433\u043e\u0432\u043e\u0440 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d.","conversation_edit_title":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440","conversation_list_cta":"\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440","conversation_list_table_content":"\u0427\u0430\u0441\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e (\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435)","conversation_list_table_messages":"\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f","conversation_list_title":"\u0420\u0430\u0437\u0433\u043e\u0432\u043e\u0440\u044b","debt_add_add_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043b\u0433","debt_add_amount":"\u0441\u0443\u043c\u043c\u0430 ","debt_add_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043b\u0433","debt_add_reason":"\u043f\u0440\u0438\u0447\u0438\u043d\u0430 \u0434\u043e\u043b\u0433\u0430 (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","debt_add_success":"\u0414\u043e\u043b\u0433 \u0431\u044b\u043b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d","debt_add_they_owe":":name \u0434\u043e\u043b\u0436\u0435\u043d \u0432\u0430\u043c","debt_add_title":"\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u043e\u043b\u0433\u0430\u043c\u0438","debt_add_you_owe":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b :name","debt_delete_confirmation":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0434\u043e\u043b\u0433?","debt_delete_success":"\u0414\u043e\u043b\u0433 \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0451\u043d","debt_edit_success":"\u0414\u043e\u043b\u0433 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d","debt_edit_update_cta":"\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u043e\u043b\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c","debt_they_owe":":name \u0434\u043e\u043b\u0436\u0435\u043d \u0432\u0430\u043c :amount","debt_title":"\u0414\u043e\u043b\u0433\u0438","debt_you_owe":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u043d\u0430 \u044d\u0442\u0443 \u0434\u0430\u0442\u0443","deceased_age":"\u0412\u043e\u0437\u0440\u0430\u0441\u0442 \u0441\u043c\u0435\u0440\u0442\u0438","deceased_date_label":"\u0414\u0430\u0442\u0430 \u0441\u043c\u0435\u0440\u0442\u0438","deceased_know_date":"\u042f \u0437\u043d\u0430\u044e \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u043e\u0442 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u0443\u043c\u0435\u0440","deceased_label":"\u0423\u043c\u0435\u0440\u0448\u0438\u0439","deceased_label_with_date":"\u0414\u0430\u0442\u0430 \u0441\u043c\u0435\u0440\u0442\u0438 :date","deceased_mark_person_deceased":"\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u043a\u0430\u043a \u0443\u043c\u0435\u0440\u0448\u0435\u0433\u043e","deceased_reminder_title":"\u0413\u043e\u0434\u043e\u0432\u0449\u0438\u043d\u0430 \u0441\u043c\u0435\u0440\u0442\u0438 :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u044b","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f \u0432 \u0435\u0434\u0435 \u0431\u044b\u043b\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b","food_preferences_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f \u0432 \u0435\u0434\u0435","food_preferences_edit_cta":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f \u0432 \u0435\u0434\u0435","food_preferences_edit_description":"\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0443 :firstname \u0438\u043b\u0438 \u043a\u043e\u0433\u043e-\u0442\u043e \u0438\u0437 \u0435\u0433\u043e(\u0435\u0451) \u0441\u0435\u043c\u044c\u0438 \u0435\u0441\u0442\u044c \u0430\u043b\u043b\u0435\u0440\u0433\u0438\u044f. \u0418\u043b\u0438 \u043d\u0435 \u043b\u044e\u0431\u0438\u0442 \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442. \u0417\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u044d\u0442\u043e \u0438 \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437 \u043a\u043e\u0433\u0434\u0430 \u0432\u044b \u0431\u0443\u0434\u0435\u0442\u0435 \u043a\u0443\u0448\u0430\u0442\u044c \u0432\u043c\u0435\u0441\u0442\u0435 \u0432\u044b \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u0435 \u043e\u0431 \u044d\u0442\u043e\u043c","food_preferences_edit_description_no_last_name":"\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0443 :firstname \u0438\u043b\u0438 \u043a\u043e\u0433\u043e-\u0442\u043e \u0438\u0437 \u0435\u0451 \u0441\u0435\u043c\u044c\u0438 \u0435\u0441\u0442\u044c \u0430\u043b\u043b\u0435\u0440\u0433\u0438\u044f. \u0418\u043b\u0438 \u043d\u0435 \u043b\u044e\u0431\u0438\u0442 \u043a\u0430\u043a\u043e\u0439-\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0434\u0443\u043a\u0442. \u0417\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u044d\u0442\u043e \u0438 \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437 \u043a\u043e\u0433\u0434\u0430 \u0432\u044b \u0431\u0443\u0434\u0435\u0442\u0435 \u043a\u0443\u0448\u0430\u0442\u044c \u0432\u043c\u0435\u0441\u0442\u0435 \u0432\u044b \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u0442\u0435 \u043e\u0431 \u044d\u0442\u043e\u043c","food_preferences_edit_title":"\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f \u0432 \u0435\u0434\u0435","food_preferences_title":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f \u0432 \u0435\u0434\u0435","gifts_add_comment":"\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439 (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","gifts_add_date":"Date (optional)","gifts_add_gift":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0434\u0430\u0440\u043e\u043a","gifts_add_gift_already_offered":"\u041f\u043e\u0434\u0430\u0440\u043e\u043a \u0443\u0436\u0435 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d","gifts_add_gift_idea":"\u0418\u0434\u0435\u044f \u043f\u043e\u0434\u0430\u0440\u043a\u0430","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d \u043f\u043e\u0434\u0430\u0440\u043e\u043a","gifts_add_gift_title":"\u0427\u0442\u043e \u044d\u0442\u043e \u0437\u0430 \u043f\u043e\u0434\u0430\u0440\u043e\u043a?","gifts_add_link":"\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0444\u043e\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u0434\u0430\u0440\u043a\u0430","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"\u041f\u043e\u043b\u0443\u0447\u0430\u0442\u0435\u043b\u044c","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"\u041f\u043e\u0434\u0430\u0440\u043e\u043a \u0431\u044b\u043b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d","gifts_add_title":"\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u0430\u0440\u043a\u0430\u043c\u0438 \u0434\u043b\u044f :name","gifts_add_value":"\u0421\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","gifts_delete_confirmation":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u043f\u043e\u0434\u0430\u0440\u043e\u043a?","gifts_delete_cta":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c","gifts_delete_success":"\u041f\u043e\u0434\u0430\u0440\u043e\u043a \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0451\u043d","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"\u0418\u0434\u0435\u0438 \u043f\u043e\u0434\u0430\u0440\u043a\u0430","gifts_link":"\u0421\u0441\u044b\u043b\u043a\u0430","gifts_mark_offered":"\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043a\u0430\u043a \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0439'","gifts_offered":"\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u0434\u0430\u0440\u043a\u0438","gifts_offered_as_an_idea":"\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043a\u0430\u043a \u0438\u0434\u0435\u044e","gifts_received":"\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u0434\u0430\u0440\u043a\u0438","gifts_title":"\u041f\u043e\u0434\u0430\u0440\u043a\u0438","gifts_update_success":"\u041f\u043e\u0434\u0430\u0440\u043e\u043a \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d","gifts_view_comment":"\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439","information_edit_birthdate_label":"\u0414\u0430\u0442\u0430 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f","information_edit_description":"\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"\u042f \u0437\u043d\u0430\u044e \u0442\u043e\u0447\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u0430\u044f","information_edit_firstname":"\u0418\u043c\u044f","information_edit_lastname":"\u0424\u0430\u043c\u0438\u043b\u0438\u044f (\u043d\u0435 \u043e\u0431\u044f\u0437.)","information_edit_max_size":"\u0414\u043e :size \u041a\u0431.","information_edit_max_size2":"\u041c\u0430\u043a\u0441. {size} \u041a\u0431.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year\u2026","information_edit_probably":"\u042d\u0442\u043e\u043c\u0443 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0443 \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e","information_edit_success":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u0431\u044b\u043b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d","information_edit_title":"\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 :name","information_edit_unknown":"\u042f \u043d\u0435 \u0437\u043d\u0430\u044e \u0432\u043e\u0437\u0440\u0430\u0441\u0442","information_no_work_defined":"\u0420\u0430\u0431\u043e\u0447\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430","information_work_at":"\u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0432 :company","introductions_add_reminder":"\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u043e\u0431 \u044e\u0431\u0438\u043b\u0435\u0435","introductions_additional_info":"\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435, \u043a\u0430\u043a \u0438 \u0433\u0434\u0435 \u0432\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043b\u0438\u0441\u044c","introductions_blank_cta":"\u0423\u043a\u0430\u0436\u0438\u0442\u0435, \u043a\u0430\u043a \u0432\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043b\u0438\u0441\u044c \u0441 :name","introductions_edit_met_through":"\u041a\u0442\u043e-\u0442\u043e \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u043b \u0432\u0430\u0441 \u0441 \u044d\u0442\u0438\u043c \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u043e\u043c?","introductions_first_met_date":"\u0414\u0430\u0442\u0430 \u0437\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0430","introductions_first_met_date_known":"\u042d\u0442\u043e \u0434\u0430\u0442\u0430, \u043a\u043e\u0433\u0434\u0430 \u043c\u044b \u043f\u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u043b\u0438\u0441\u044c","introductions_met_date":"\u041f\u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u043b\u0438\u0441\u044c :date","introductions_met_through":"\u0417\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u043e \u0447\u0435\u0440\u0435\u0437 :name<\/a>","introductions_no_first_met_date":"\u042f \u043d\u0435 \u0437\u043d\u0430\u044e \u0434\u0430\u0442\u0443, \u043a\u043e\u0433\u0434\u0430 \u043c\u044b \u043f\u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u043b\u0438\u0441\u044c","introductions_no_met_through":"\u041d\u0438\u043a\u0442\u043e","introductions_reminder_title":"\u0413\u043e\u0434\u043e\u0432\u0449\u0438\u043d\u0430 \u0437\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0430","introductions_sidebar_title":"\u041a\u0430\u043a \u0432\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043b\u0438\u0441\u044c","introductions_title_edit":"\u041a\u0430\u043a \u0432\u044b \u043f\u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u043b\u0438\u0441\u044c \u0441 :name?","introductions_update_success":"\u0412\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438\u043b\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0442\u043e\u043c, \u043a\u0430\u043a \u0432\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043b\u0438 \u044d\u0442\u043e\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430","last_activity_date":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0432\u043c\u0435\u0441\u0442\u0435: :date","last_activity_date_empty":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0432\u043c\u0435\u0441\u0442\u0435: \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e","last_called":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0437\u0432\u043e\u043d\u043e\u043a: :date","last_called_empty":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0437\u0432\u043e\u043d\u043e\u043a: \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u043e\u0431 \u044d\u0442\u043e\u043c \u0441\u043e\u0431\u044b\u0442\u0438\u0438","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0436\u0438\u0437\u043d\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"\u0417\u0430\u043c\u0435\u0442\u043a\u0438, \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"\u042d\u0442\u043e \u0432\u044b","modal_call_comment":"\u041e \u0447\u0451\u043c \u0432\u044b \u0440\u0430\u0437\u0433\u043e\u0432\u0430\u0440\u0438\u0432\u0430\u043b\u0438? (\u043d\u0435 \u043e\u0431\u044f\u0437.)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"\u0414\u0430\u0442\u0430 \u0437\u0432\u043e\u043d\u043a\u0430","modal_call_title":"\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0432\u043e\u043d\u043e\u043a","modal_call_who_called":"\u041a\u0442\u043e \u0437\u0432\u043e\u043d\u0438\u043b?","notes_add_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043c\u0435\u0442\u043a\u0443","notes_create_success":"\u0417\u0430\u043c\u0435\u0442\u043a\u0430 \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430","notes_delete_confirmation":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u0443 \u0437\u0430\u043c\u0435\u0442\u043a\u0443? \u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e.","notes_delete_success":"\u0417\u0430\u043c\u0435\u0442\u043a\u0430 \u0431\u044b\u043b\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430","notes_delete_title":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u043c\u0435\u0442\u043a\u0443","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"\u041f\u043e\u0437\u0434\u0440\u0430\u0432\u0438\u0442\u044c :name \u0441 \u0434\u043d\u0451\u043c \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c","people_add_firstname":"\u0418\u043c\u044f","people_add_gender":"\u041f\u043e\u043b","people_add_import":"\u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u044b<\/a>?","people_add_lastname":"\u0424\u0430\u043c\u0438\u043b\u0438\u044f (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","people_add_middlename":"\u041e\u0442\u0447\u0435\u0441\u0442\u0432\u043e (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","people_add_missing":"No Person Found Add New One Now","people_add_new":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c","people_add_nickname":"\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","people_add_reminder_for_birthday":"\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0436\u0435\u0433\u043e\u0434\u043d\u043e\u0435 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u043e \u0434\u043d\u0435 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f","people_add_success":":name has been successfully created","people_add_title":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430","people_delete_confirmation":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u043a\u043e\u043d\u0442\u0430\u043a\u0442? \u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e.","people_delete_message":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442","people_delete_success":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0451\u043d","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"\u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u0434\u0440\u0443\u0433\u043e\u0439 \u043f\u043b\u0430\u043d \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439.","people_list_account_usage":"\u041b\u0438\u043c\u0438\u0442\u044b \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432: :current\/:limit","people_list_blank_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u0433\u043e \u043d\u0438\u0431\u0443\u0434\u044c","people_list_blank_title":"\u0412\u044b \u043f\u043e\u043a\u0430 \u043d\u0438 \u043a\u043e\u0433\u043e \u0435\u0449\u0451 \u043d\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u043b\u0438","people_list_clear_filter":"\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u0438\u043b\u044c\u0442\u0440","people_list_contacts_per_tags":":count \u043a\u043e\u043d\u0442\u0430\u043a\u0442|:count \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430|:count \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432","people_list_filter_tag":"\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u0432\u0441\u0435 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u044b \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0435 \u0442\u044d\u0433\u043e\u043c","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e \u0438\u043c\u0435\u043d\u0438 \u0410 \u2192 \u042f","people_list_firstnameZA":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e \u0438\u043c\u0435\u043d\u0438 \u042f \u2192 \u0410","people_list_hide_dead":"\u0421\u043a\u0440\u044b\u0442\u044c \u0443\u043c\u0435\u0440\u0448\u0438\u0445 \u043b\u044e\u0434\u0435\u0439 (:count)","people_list_last_updated":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435:","people_list_lastactivitydateNewtoOld":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e \u0434\u0430\u0442\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 (\u043d\u043e\u0432\u044b\u0435 \u0441\u0432\u0435\u0440\u0445\u0443)","people_list_lastactivitydateOldtoNew":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e \u0434\u0430\u0442\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 (\u043d\u043e\u0432\u044b\u0435 \u0441\u043d\u0438\u0437\u0443)","people_list_lastnameAZ":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e \u0444\u0430\u043c\u0438\u043b\u0438\u0438 \u0410 \u2192 \u042f","people_list_lastnameZA":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e \u0444\u0430\u043c\u0438\u043b\u0438\u0438 \u042f \u2192 \u0410","people_list_number_kids":":count \u0440\u0435\u0431\u0451\u043d\u043e\u043a|:count \u0440\u0435\u0431\u0451\u043d\u043a\u0430|:count \u0434\u0435\u0442\u0435\u0439","people_list_number_reminders":":count \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435|:count \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f|:count \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0439","people_list_show_dead":"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0443\u043c\u0435\u0440\u0448\u0438\u0445 \u043b\u044e\u0434\u0435\u0439 (:count)","people_list_sort":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430","people_list_stats":":count \u043a\u043e\u043d\u0442\u0430\u043a\u0442|:count \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430|:count \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432","people_list_untagged":"View untagged contacts","people_not_found":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d","people_save_and_add_another_cta":"Submit and add someone else","people_search":"\u041f\u043e\u0438\u0441\u043a \u043f\u043e \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0430\u043c...","people_search_all":"\u0412\u0441\u0435","people_search_next":"\u0412\u043f\u0435\u0440\u0451\u0434","people_search_no_results":"\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e","people_search_of":"\u0438\u0437","people_search_page":"\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430","people_search_prev":"\u041d\u0430\u0437\u0430\u0434","people_search_rows_per_page":"\u0421\u0442\u0440\u043e\u043a \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","pets_bird":"\u041f\u0442\u0438\u0446\u0430","pets_cat":"\u041a\u043e\u0448\u043a\u0430","pets_create_success":"\u041f\u0438\u0442\u043e\u043c\u0435\u0446 \u0431\u044b\u043b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d","pets_delete_success":"The pet has been deleted","pets_dog":"\u0421\u043e\u0431\u0430\u043a\u0430","pets_fish":"\u0420\u044b\u0431\u043a\u0430","pets_hamster":"\u0425\u043e\u043c\u044f\u043a","pets_horse":"\u041b\u043e\u0448\u0430\u0434\u044c","pets_kind":"\u0412\u0438\u0434 \u043f\u0438\u0442\u043e\u043c\u0446\u0430","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"\u041f\u0438\u0442\u043e\u043c\u0446\u044b","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043a\u043e\u043d\u0442\u0430\u043a\u0442","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"\u043a\u0430\u0436\u0434\u044b\u0439 \u0434\u0435\u043d\u044c|[2,4]\u0440\u0430\u0437 \u0432 :number \u0434\u043d\u044f|[5,*]\u0440\u0430\u0437 \u0432 :number \u0434\u043d\u0435\u0439","reminder_frequency_month":"\u043a\u0430\u0436\u0434\u044b\u0439 :number \u043c\u0435\u0441\u044f\u0446|\u043a\u0430\u0436\u0434\u044b\u0435 :number \u043c\u0435\u0441\u044f\u0446\u0430|\u043a\u0430\u0436\u0434\u044b\u0435 :number \u043c\u0435\u0441\u044f\u0446\u0435\u0432","reminder_frequency_one_time":"\u0432 :date","reminder_frequency_week":"\u043a\u0430\u0436\u0434\u0443\u044e :number \u043d\u0435\u0434\u0435\u043b\u044e|\u043a\u0430\u0436\u0434\u044b\u0435 :number \u043d\u0435\u0434\u0435\u043b\u0438|\u043a\u0430\u0436\u0434\u044b\u0435 :number \u043d\u0435\u0434\u0435\u043b\u044c","reminder_frequency_year":"\u043a\u0430\u0436\u0434\u044b\u0439 :number \u0433\u043e\u0434|\u043a\u0430\u0436\u0434\u044b\u0435 :number \u0433\u043e\u0434\u0430|\u043a\u0430\u0436\u0434\u044b\u0435 :number \u043b\u0435\u0442","reminders_add_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435","reminders_add_description":"\u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043e:","reminders_add_error_custom_text":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f","reminders_add_next_time":"\u041a\u043e\u0433\u0434\u0430 \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435?","reminders_add_once":"\u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043e\u0434\u0438\u043d \u0440\u0430\u0437","reminders_add_optional_comment":"\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439 (\u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","reminders_add_recurrent":"\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u0441 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c\u044e: ","reminders_add_starting_from":"\u043d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0434\u0430\u0442\u044b \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0439 \u0432\u044b\u0448\u0435","reminders_add_title":"\u041e \u0447\u0451\u043c, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u043c \u0441 :name, \u0432\u0430\u043c \u043d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c?","reminders_birthday":"Birthdate of :name","reminders_blank_add_activity":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435","reminders_blank_title":"\u0415\u0441\u0442\u044c \u043b\u0438 \u0447\u0442\u043e-\u0442\u043e \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0435 \u0441 :name, \u043e \u0447\u0451\u043c \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435?","reminders_create_success":"\u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u0431\u044b\u043b\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e","reminders_cta":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435","reminders_delete_confirmation":"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435?","reminders_delete_cta":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c","reminders_delete_success":"\u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u0431\u044b\u043b\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e","reminders_description":"\u041f\u043e \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u0438\u0437 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0439 \u0432\u044b\u0448\u0435 \u043c\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u043c \u0432\u0430\u043c \u043f\u0438\u0441\u044c\u043c\u043e. \u041e\u043d\u0438 \u0432\u044b\u0441\u044b\u043b\u0430\u044e\u0442\u0441\u044f \u043f\u043e \u0443\u0442\u0440\u0430\u043c","reminders_edit_update_cta":"\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"\u0432","reminders_one_time":"\u043e\u0434\u0438\u043d \u0440\u0430\u0437","reminders_type_month":"\u043c\u0435\u0441\u044f\u0446","reminders_type_week":"\u043d\u0435\u0434\u0435\u043b\u044f","reminders_type_year":"\u0433\u043e\u0434","reminders_update_success":"\u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e","section_contact_information":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f","section_personal_activities":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438","section_personal_gifts":"\u041f\u043e\u0434\u0430\u0440\u043a\u0438","section_personal_notes":"\u0417\u0430\u043c\u0435\u0442\u043a\u0438","section_personal_reminders":"\u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f","section_personal_tasks":"\u0417\u0430\u0434\u0430\u0447\u0438","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"\u041e\u0441\u0442\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u0441\u0432\u044f\u0437\u0438","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"\u041e\u0441\u0442\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u0441\u0432\u044f\u0437\u0438","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u043a\u0438","tag_add_search":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0438\u043b\u0438 \u0438\u0441\u043a\u0430\u0442\u044c \u043c\u0435\u0442\u043a\u0438","tag_edit":"\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u043a\u0443","tag_no_tags":"\u041f\u043e\u043a\u0430 \u043d\u0435\u0442 \u043c\u0435\u0442\u043e\u043a","tasks_add_task":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443","tasks_blank_title":"\u0423 \u0432\u0430\u0441 \u043f\u043e\u043a\u0430 \u043d\u0435\u0442 \u0437\u0430\u0434\u0430\u0447.","tasks_complete_success":"\u0421\u0442\u0430\u0442\u0443\u0441 \u0437\u0430\u0434\u0430\u0447\u0438 \u0431\u044b\u043b \u0438\u0437\u043c\u0435\u043d\u0451\u043d","tasks_delete_success":"\u0417\u0430\u0434\u0430\u0447\u0430 \u0431\u044b\u043b\u0430 \u0443\u0441\u0440\u0435\u0448\u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430","tasks_form_description":"\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)","tasks_form_title":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a","tasks_title":"\u0417\u0430\u0434\u0430\u0447\u0438","work_add_cta":"\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0440\u0430\u0431\u043e\u0442\u0435","work_edit_company":"\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f (\u043d\u0435 \u043e\u0431\u044f\u0437.)","work_edit_job":"\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c (\u043d\u0435 \u043e\u0431\u044f\u0437.)","work_edit_success":"Work information updated","work_edit_title":"\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0440\u0430\u0431\u043e\u0442\u0435: :name","work_information":"\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0440\u0430\u0431\u043e\u0442\u0435"},"reminder":{"type_birthday":"\u041f\u043e\u0437\u0434\u0440\u0430\u0432\u0438\u0442\u044c \u0441 \u0434\u043d\u0451\u043c \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f","type_birthday_kid":"\u041f\u043e\u0437\u0434\u0440\u0430\u0432\u0438\u0442\u044c \u0435\u0433\u043e(\u0435\u0451) \u0440\u0435\u0431\u0451\u043d\u043a\u0430 \u0441 \u0434\u043d\u0451\u043c \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f","type_email":"Email","type_hangout":"\u0422\u0443\u0441\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0441","type_lunch":"\u041f\u043e\u043e\u0431\u0435\u0434\u0430\u0442\u044c \u0441","type_phone_call":"\u041f\u043e\u0437\u0432\u043e\u043d\u0438\u0442\u044c"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0443\u044e \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e","2fa_disable_success":"\u0414\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430","2fa_disable_title":"\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0443\u044e \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"\u0414\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u0443\u0436\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0443\u044e \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"\u0414\u0432\u0443\u0445\u0444\u0430\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"API \u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 Monica \u0438\u0437 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u2013 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f.","api_endpoint":"\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0442\u043e\u0447\u043a\u0430 API \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0430 Monica:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"\u0412\u0430\u0448\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u044b OAuth","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"\u041a\u043b\u0438\u0435\u043d\u0442\u044b OAuth","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"\u0414\u043e\u0441\u0442\u0443\u043f \u043a API","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"\u0412\u0430\u043b\u044e\u0442\u0430","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0430\u043a\u043a\u0430\u0443\u043d\u0442","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432 SQL","export_sql_explanation":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 SQL \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u0432 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440 Monica. \u042d\u0442\u043e \u043f\u043e\u043b\u0435\u0437\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0435\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u0432\u0430\u0448\u0435\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430","export_title_sql":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432 SQL","firstname":"\u0418\u043c\u044f","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"\u0424\u0430\u043c\u0438\u043b\u0438\u044f","layout":"\u0414\u0438\u0437\u0430\u0439\u043d","layout_big":"\u0428\u0438\u0440\u0438\u043d\u043e\u0439 \u0432\u043e \u0432\u0435\u0441\u044c \u044d\u043a\u0440\u0430\u043d","layout_small":"\u041c\u0430\u043a\u0441\u0438\u043c\u0443\u043c \u0448\u0438\u0440\u0438\u043d\u043e\u0439 \u0432 1200 \u043f\u0438\u043a\u0441\u0435\u043b\u0435\u0439","locale":"\u042f\u0437\u044b\u043a","locale_ar":"\u0410\u0440\u0430\u0431\u0441\u043a\u0438\u0439","locale_cs":"\u0427\u0435\u0448\u0441\u043a\u0438\u0439","locale_de":"\u041d\u0435\u043c\u0435\u0446\u043a\u0438\u0439","locale_en":"\u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439","locale_en-GB":"\u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439 (\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f)","locale_es":"\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439","locale_fr":"\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439","locale_he":"\u0418\u0432\u0440\u0438\u0442","locale_help":"\u0425\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043c\u043e\u0447\u044c \u0441 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u043e\u043c Monica \u0438\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u044f\u0437\u044b\u043a? \u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u043f\u043e \u044d\u0442\u043e\u0439 \u0441\u0441\u044b\u043b\u043a\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438<\/a>.","locale_hr":"\u0425\u043e\u0440\u0432\u0430\u0442\u0441\u043a\u0438\u0439","locale_it":"\u0418\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0438\u0439","locale_ja":"\u042f\u043f\u043e\u043d\u0441\u043a\u0438\u0439","locale_nl":"\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439","locale_pt":"\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439","locale_pt-BR":"\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439 (\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f)","locale_ru":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439","locale_sv":"Swedish","locale_tr":"\u0422\u0443\u0440\u0435\u0446\u043a\u0438\u0439","locale_zh":"\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u0443\u043f\u0440\u043e\u0449\u0435\u043d\u043d\u044b\u0439","locale_zh-TW":"\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u0442\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u0435\u0431\u044f","me_choose_placeholder":"\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u0435\u0431\u044f","me_help":"\u042d\u0442\u043e \u043a\u043e\u043d\u0442\u0430\u043a\u0442, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u0430\u0441<\/em> \u0432 Monica","me_no_contact":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0435\u0449\u0435 \u043d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d.","me_remove_contact":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0432\u044f\u0437\u044c","me_select":"\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043a\u043e\u043d\u0442\u0430\u043a\u0442","me_select_click":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044c, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442.","me_title":"Me as a contact","name":"\u0412\u0430\u0448\u0435 \u0438\u043c\u044f: :name","name_order":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0438\u043c\u0435\u043d\u0438","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","password_change":"Change your password","password_current":"\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","password_current_placeholder":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448 \u0442\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","password_new1":"\u041d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u0434\u044b \u0432 \u0431\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0435\u043d\u0430","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u0436\u0434\u044b\u0439 \u043a\u043e\u0434 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0434\u0438\u043d \u0440\u0430\u0437.","recovery_help_intro":"\u0412\u0430\u0448\u0438 \u043a\u043e\u0434\u044b \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f:","recovery_show":"\u041f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043a\u043e\u0434\u044b \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","recovery_title":"\u041a\u043e\u0434\u044b \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","security_help":"Change security matters for your account.","security_title":"\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c","settings_success":"Preferences updated!","sidebar_personalization":"\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f","sidebar_settings":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430","sidebar_settings_api":"API","sidebar_settings_auditlogs":"\u0416\u0443\u0440\u043d\u0430\u043b \u0430\u0443\u0434\u0438\u0442\u0430","sidebar_settings_dav":"\u0420\u0435\u0441\u0443\u0440\u0441\u044b DAV","sidebar_settings_export":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445","sidebar_settings_import":"\u0418\u043c\u043f\u043e\u0440\u0442 \u0434\u0430\u043d\u043d\u044b\u0445","sidebar_settings_security":"\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c","sidebar_settings_storage":"\u0425\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435","sidebar_settings_subscriptions":"\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0430","sidebar_settings_tags":"\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0435\u0433\u0430\u043c\u0438","sidebar_settings_users":"\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"\u0412\u044b \u043d\u0430 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e\u043c \u0442\u0430\u0440\u0438\u0444\u043d\u043e\u043c \u043f\u043b\u0430\u043d\u0435.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"\u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"\u041d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u0442\u043e \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f, \u0431\u0435\u0437 \u0432\u043e\u043f\u0440\u043e\u0441\u043e\u0432 \u0438 \u0441\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u043d\u043e \u2013 \u0431\u0435\u0437 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0431\u0440\u0430\u0449\u0430\u0442\u044c\u0441\u044f \u0432 \u0441\u043b\u0443\u0436\u0431\u0443 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438. \u0422\u0435\u043c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435, \u0432\u0430\u043c \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u0435\u043d \u0432\u043e\u0437\u0432\u0440\u0430\u0442 \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0437\u0430 \u0442\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0435\u0440\u0438\u043e\u0434.","subscriptions_help_change_title":"\u0427\u0442\u043e \u0435\u0441\u043b\u0438 \u044f \u043f\u0435\u0440\u0435\u0434\u0443\u043c\u0430\u044e?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"\u0427\u0442\u043e \u0442\u0430\u043a\u043e\u0435 \u043f\u0440\u043e\u0435\u043a\u0442 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u043c \u043a\u043e\u0434\u043e\u043c?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"\u042d\u0442\u043e\u0442 \u043f\u043b\u0430\u0442\u0435\u0436 \u0431\u044b\u043b \u043e\u0442\u043c\u0435\u043d\u0435\u043d.","subscriptions_payment_cancelled_title":"\u041f\u043b\u0430\u0442\u0435\u0436 \u043e\u0442\u043c\u0435\u043d\u0435\u043d","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"\u042d\u0442\u043e\u0442 \u043f\u043b\u0430\u0442\u0435\u0436 \u0443\u0436\u0435 \u0431\u044b\u043b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d.","subscriptions_payment_succeeded_title":"\u041f\u043b\u0430\u0442\u0435\u0436 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"\u041c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0439 \u043c\u043e\u043c\u0435\u043d\u0442","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"45$\/\u0433\u043e\u0434","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430\u044f \u0438\u043b\u0438 \u0434\u0435\u0431\u0435\u0442\u043e\u0432\u0430\u044f \u043a\u0430\u0440\u0442\u0430","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"\u0418\u043c\u044f \u0434\u0435\u0440\u0436\u0430\u0442\u0435\u043b\u044f \u043a\u0430\u0440\u0442\u044b","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u0438\u043d\u0434\u0435\u043a\u0441","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully with success","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact.","tags_list_title":"Tags","temperature_scale":"\u0422\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430","temperature_scale_celsius":"\u041f\u043e \u0426\u0435\u043b\u044c\u0441\u0438\u044e","temperature_scale_fahrenheit":"\u041f\u043e \u0424\u0430\u0440\u0435\u043d\u0433\u0435\u0439\u0442\u0443","timezone":"\u0427\u0430\u0441\u043e\u0432\u043e\u0439 \u043f\u043e\u044f\u0441","title_general":"\u041e\u0431\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f","title_i18n":"\u041c\u0435\u0436\u0434\u0443\u043d\u0430\u0440\u043e\u0434\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","title_layout":"Layout","users_accept_title":"\u041f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0438 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0430\u043a\u043a\u0430\u0443\u043d\u0442","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"\u0425\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043a\u043e\u0433\u043e-\u043d\u0438\u0431\u0443\u0434\u044c?","users_blank_cta":"\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043a\u043e\u0433\u043e-\u043d\u0438\u0431\u0443\u0434\u044c","users_blank_description":"\u042d\u0442\u043e\u0442 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u0431\u0443\u0434\u0435\u0442 \u0438\u043c\u0435\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0436\u0435 \u0434\u043e\u0441\u0442\u0443\u043f, \u043a\u0430\u043a \u0443 \u0432\u0430\u0441, \u0438 \u0441\u043c\u043e\u0436\u0435\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c, \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u044f\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e.","users_blank_title":"\u0412\u044b \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439, \u043a\u0442\u043e \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u044d\u0442\u043e\u043c\u0443 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0443.","users_error_already_invited":"\u0412\u044b \u0443\u0436\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u043b\u0438 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b.","users_error_email_already_taken":"\u042d\u0442\u043e\u0442 \u0430\u0434\u0440\u0435\u0441 \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0439","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this before proceeding with the invitation","users_invitation_deleted_confirmation_message":"\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435?","users_list_add_user":"\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043d\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","users_list_delete_confirmation":"\u0412\u044b \u0442\u043e\u0447\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u0437 \u0432\u0430\u0448\u0435\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f, \u043e\u0436\u0438\u0434\u0430\u044e\u0449\u0438\u0435 \u043e\u0442\u0432\u0435\u0442\u0430","users_list_title":"Users with access to your account","users_list_you":"\u042d\u0442\u043e \u0432\u044b","webauthn_buttonAdvise":"\u0415\u0441\u043b\u0438 \u0432 \u0432\u0430\u0448\u0435\u043c \u043a\u043b\u044e\u0447\u0435 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0435\u0441\u0442\u044c \u043a\u043d\u043e\u043f\u043a\u0430, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0435\u0435.","webauthn_delete_confirmation":"\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u043a\u043b\u044e\u0447?","webauthn_delete_success":"\u041a\u043b\u044e\u0447 \u0443\u0434\u0430\u043b\u0451\u043d","webauthn_enable_description":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u043a\u043b\u044e\u0447 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438","webauthn_error_already_used":"\u042d\u0442\u043e\u0442 \u043a\u043b\u044e\u0447 \u0443\u0436\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d. \u041d\u0435\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0432 \u0435\u0433\u043e \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438.","webauthn_error_not_allowed":"\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0438\u0441\u0442\u0435\u043a\u043b\u0430 \u0438\u043b\u0438 \u043d\u0435 \u0431\u044b\u043b\u0430 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0430.","webauthn_insertKey":"\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043b\u044e\u0447 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438.","webauthn_key_name":"\u0418\u043c\u044f \u043a\u043b\u044e\u0447\u0430:","webauthn_key_name_help":"\u0414\u0430\u0439\u0442\u0435 \u0432\u0430\u0448\u0435\u043c\u0443 \u043a\u043b\u044e\u0447\u0443 \u0438\u043c\u044f.","webauthn_last_use":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f. \u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u044d\u0442\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0447\u0435\u0440\u0435\u0437 https.","webauthn_not_supported":"\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0432 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 WebAuthn.","webauthn_success":"\u0412\u0430\u0448 \u043a\u043b\u044e\u0447 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d \u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d.","webauthn_title":"\u041a\u043b\u044e\u0447 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u2014 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b WebAuthn"},"validation":{"accepted":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u0440\u0438\u043d\u044f\u0442\u044c :attribute.","active_url":"\u041f\u043e\u043b\u0435 :attribute \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 URL.","after":"\u0412 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u0430\u0442\u0430 \u043f\u043e\u0441\u043b\u0435 :date.","after_or_equal":"\u0412 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u0430\u0442\u0430 \u043f\u043e\u0441\u043b\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u044f\u0442\u044c\u0441\u044f :date.","alpha":"\u041f\u043e\u043b\u0435 :attribute \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b.","alpha_dash":"\u041f\u043e\u043b\u0435 :attribute \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0434\u0435\u0444\u0438\u0441 \u0438 \u043d\u0438\u0436\u043d\u0435\u0435 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435.","alpha_num":"\u041f\u043e\u043b\u0435 :attribute \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b \u0438 \u0446\u0438\u0444\u0440\u044b.","array":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0430\u0441\u0441\u0438\u0432\u043e\u043c.","attributes":[],"before":"\u0412 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u0430\u0442\u0430 \u0434\u043e :date.","before_or_equal":"\u0412 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u0430\u0442\u0430 \u0434\u043e \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u044f\u0442\u044c\u0441\u044f :date.","between":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u0436\u0434\u0443 :min \u0438 :max.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043c\u0435\u0436\u0434\u0443 :min \u0438 :max \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u0436\u0434\u0443 :min \u0438 :max.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u0436\u0434\u0443 :min \u0438 :max."},"boolean":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0438\u043c\u0435\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0442\u0438\u043f\u0430.","confirmed":"\u041f\u043e\u043b\u0435 :attribute \u043d\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442 \u0441 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435\u043c.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"\u041f\u043e\u043b\u0435 :attribute \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0430\u0442\u043e\u0439.","date_equals":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0434\u0430\u0442\u043e\u0439 \u0440\u0430\u0432\u043d\u043e\u0439 :date.","date_format":"\u041f\u043e\u043b\u0435 :attribute \u043d\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0444\u043e\u0440\u043c\u0430\u0442\u0443 :format.","different":"\u041f\u043e\u043b\u044f :attribute \u0438 :other \u0434\u043e\u043b\u0436\u043d\u044b \u0440\u0430\u0437\u043b\u0438\u0447\u0430\u0442\u044c\u0441\u044f.","digits":"\u0414\u043b\u0438\u043d\u0430 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u043b\u044f :attribute \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c :digits.","digits_between":"\u0414\u043b\u0438\u043d\u0430 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u043f\u043e\u043b\u044f :attribute \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u043c\u0435\u0436\u0434\u0443 :min \u0438 :max.","dimensions":"\u041f\u043e\u043b\u0435 :attribute \u0438\u043c\u0435\u0435\u0442 \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0440\u0430\u0437\u043c\u0435\u0440\u044b \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f.","distinct":"\u041f\u043e\u043b\u0435 :attribute \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043f\u043e\u0432\u0442\u043e\u0440\u044f\u044e\u0449\u0435\u0435\u0441\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435.","email":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c.","ends_with":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u043e\u0434\u043d\u0438\u043c \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439: :values","exists":"\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f :attribute \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e.","file":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0444\u0430\u0439\u043b\u043e\u043c.","filled":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f.","gt":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 :value.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 :value \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 :value.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 :value."},"gte":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e :value.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u0435\u043d :value \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e :value.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e :value."},"image":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043c.","in":"\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f :attribute \u043e\u0448\u0438\u0431\u043e\u0447\u043d\u043e.","in_array":"\u041f\u043e\u043b\u0435 :attribute \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 :other.","integer":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0446\u0435\u043b\u044b\u043c \u0447\u0438\u0441\u043b\u043e\u043c.","ip":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c IP-\u0430\u0434\u0440\u0435\u0441\u043e\u043c.","ipv4":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c IPv4-\u0430\u0434\u0440\u0435\u0441\u043e\u043c.","ipv6":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c IPv6-\u0430\u0434\u0440\u0435\u0441\u043e\u043c.","json":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c JSON \u0441\u0442\u0440\u043e\u043a\u043e\u0439.","lt":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 :value.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 :value \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 :value.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 :value."},"lte":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e :value.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u0435\u043d :value \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e :value.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e :value."},"max":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c :max.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u0435\u0435 :max \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u0435\u0435 :max.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c :max."},"mimes":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0444\u0430\u0439\u043b\u043e\u043c \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0442\u0438\u043f\u043e\u0432: :values.","mimetypes":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0444\u0430\u0439\u043b\u043e\u043c \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0442\u0438\u043f\u043e\u0432: :values.","min":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 :min.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 :min \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 :min.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 :min."},"not_in":"\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f :attribute \u043e\u0448\u0438\u0431\u043e\u0447\u043d\u043e.","not_regex":"\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u0434\u043b\u044f :attribute \u043e\u0448\u0438\u0431\u043e\u0447\u043d\u044b\u0439.","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0447\u0438\u0441\u043b\u043e\u043c.","password":"\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c.","present":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c.","regex":"\u041f\u043e\u043b\u0435 :attribute \u0438\u043c\u0435\u0435\u0442 \u043e\u0448\u0438\u0431\u043e\u0447\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442.","required":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f.","required_if":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 :other \u0440\u0430\u0432\u043d\u043e :value.","required_unless":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 :other \u043d\u0435 \u0440\u0430\u0432\u043d\u043e :values.","required_with":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 :values \u0443\u043a\u0430\u0437\u0430\u043d\u043e.","required_with_all":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 :values \u0443\u043a\u0430\u0437\u0430\u043d\u043e.","required_without":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 :values \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e.","required_without_all":"\u041f\u043e\u043b\u0435 :attribute \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 \u043d\u0438 \u043e\u0434\u043d\u043e \u0438\u0437 :values \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e.","same":"\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0442\u044c \u0441 :other.","size":{"array":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0440\u0430\u0432\u043d\u044b\u043c :size.","file":"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0440\u0430\u0432\u0435\u043d :size \u041a\u0438\u043b\u043e\u0431\u0430\u0439\u0442(\u0430).","numeric":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0440\u0430\u0432\u043d\u044b\u043c :size.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u043f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0440\u0430\u0432\u043d\u044b\u043c :size."},"starts_with":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0438\u0437 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439: :values","string":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u043e\u0439.","timezone":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0447\u0430\u0441\u043e\u0432\u044b\u043c \u043f\u043e\u044f\u0441\u043e\u043c.","unique":"\u0422\u0430\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044f :attribute \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.","uploaded":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043e\u043b\u044f :attribute \u043d\u0435 \u0443\u0434\u0430\u043b\u0430\u0441\u044c.","url":"\u041f\u043e\u043b\u0435 :attribute \u0438\u043c\u0435\u0435\u0442 \u043e\u0448\u0438\u0431\u043e\u0447\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442.","uuid":"\u041f\u043e\u043b\u0435 :attribute \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c UUID.","vue":{"max":{"numeric":"{field} \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435, \u0447\u0435\u043c {max}.","string":"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 {field} \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c {max}."},"required":"{field} \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e.","url":"{field} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c URL."}}} diff --git a/public/js/langs/sv.json b/public/js/langs/sv.json deleted file mode 100644 index a6f5286a9a3..00000000000 --- a/public/js/langs/sv.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"L\u00e4gg till","another_day":"en annan dag","application_description":"Monica \u00e4r ett verktyg f\u00f6r att hantera dina interaktioner med dina n\u00e4ra och k\u00e4ra, v\u00e4nner och familj.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 Personlig Relationsansvarig","back":"Tillbaka","breadcrumb_add_note":"L\u00e4gg till en anteckning","breadcrumb_add_significant_other":"L\u00e4gg till partner\/respektive","breadcrumb_api":"API","breadcrumb_archived_contacts":"Arkiverade kontakter","breadcrumb_dashboard":"Instrumentpanel","breadcrumb_dav":"DAV resurser","breadcrumb_edit_introductions":"Hur tr\u00e4ffades ni","breadcrumb_edit_note":"Redigera en anteckning","breadcrumb_edit_significant_other":"Redigera partner\/respektive","breadcrumb_journal":"Dagbok","breadcrumb_list_contacts":"Lista \u00f6ver personer","breadcrumb_profile":"Profil f\u00f6r :name","breadcrumb_settings":"Inst\u00e4llningar","breadcrumb_settings_export":"Exportera","breadcrumb_settings_import":"Importera","breadcrumb_settings_import_report":"Importera rapport","breadcrumb_settings_import_upload":"Ladda upp","breadcrumb_settings_personalization":"Anpassa","breadcrumb_settings_security":"S\u00e4kerhet","breadcrumb_settings_security_2fa":"Tv\u00e5faktorsautentisering","breadcrumb_settings_subscriptions":"Prenumeration","breadcrumb_settings_tags":"Taggar","breadcrumb_settings_users":"Anv\u00e4ndare","breadcrumb_settings_users_add":"L\u00e4gg till en anv\u00e4ndare","cancel":"Avbryt","close":"St\u00e4ng","compliance_desc":"Vi har \u00e4ndrat v\u00e5ra anv\u00e4ndarvillkor<\/a> och sekretesspolicy<\/a>. Enligt lag m\u00e5ste vi be dig granska dem och acceptera dem s\u00e5 att du kan forts\u00e4tta anv\u00e4nda ditt konto.","compliance_desc_end":"Vi g\u00f6r inget ot\u00e4ckt med dina uppgifter eller ditt konto och vi kommer aldrig att g\u00f6ra det.","compliance_terms":"Acceptera nya villkor och sekretesspolicy","compliance_title":"Ledsen f\u00f6r avbrottet.","confirm":"Bekr\u00e4fta","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Kopiera","create":"Skapa","date":"Datum","dav_birthdays":"F\u00f6delsedagar","dav_birthdays_description":":name's kontakter f\u00f6delsedagar","dav_contacts":"Kontakter","dav_contacts_description":":name's kontakter","dav_tasks":"Uppgifter","dav_tasks_description":":name's uppgifter","default_save_success":"Datan har sparats.","delete":"Radera","delete_confirm":"Are you sure?","done":"Klar","download":"H\u00e4mta","edit":"Redigera","emotion_adoration":"Dyrkan","emotion_affection":"Tillgivenhet","emotion_aggravation":"F\u00f6rsv\u00e5rande","emotion_agitation":"Agitation","emotion_agony":"\u00c5ngest","emotion_alarm":"Alarm","emotion_alienation":"Utanf\u00f6rskap","emotion_amazement":"H\u00e4pnadsv\u00e4ckande","emotion_amusement":"N\u00f6jen","emotion_anger":"Ilska","emotion_anguish":"Pl\u00e5ga","emotion_annoyance":"Irritation","emotion_anxiety":"\u00c5ngest","emotion_apprehension":"Oro","emotion_arousal":"Upphetsning","emotion_astonishment":"H\u00e4pnad","emotion_attraction":"Attraktiv","emotion_bitterness":"Bitterhet","emotion_bliss":"\u00d6verlyckling","emotion_caring":"Omt\u00e4nksam","emotion_cheerfulness":"Gl\u00e4djande","emotion_compassion":"Medlidande","emotion_contempt":"F\u00f6rakt","emotion_contentment":"Bel\u00e5tenhet","emotion_defeat":"Nederlag","emotion_dejection":"Nedst\u00e4mdhet","emotion_delight":"Fr\u00f6jd","emotion_depression":"Depression","emotion_desire":"\u00c5tr\u00e5","emotion_despair":"F\u00f6rtvivla","emotion_disappointment":"Besvikelse","emotion_disgust":"\u00c4cklad","emotion_dislike":"Ogilla","emotion_dismay":"F\u00f6rf\u00e4ran","emotion_displeasure":"Missn\u00f6je","emotion_distress":"I n\u00f6d","emotion_dread":"Fruktan","emotion_eagerness":"Ivrighet","emotion_ecstasy":"Extas","emotion_elation":"F\u00f6rtjusning","emotion_embarrassment":"Generad","emotion_enjoyment":"Njutning","emotion_enthrallment":"F\u00e4ngslande","emotion_enthusiasm":"Entusiastisk","emotion_envy":"Avundsjuk","emotion_euphoria":"Eufori","emotion_exasperation":"Ursinne","emotion_excitement":"Upphetsning","emotion_exhilaration":"Upprymdhet","emotion_fear":"R\u00e4dsla","emotion_ferocity":"Blodt\u00f6rstig","emotion_fondness":"F\u00f6rk\u00e4rlek","emotion_fright":"Skr\u00e4ck","emotion_frustration":"Frustration","emotion_fury":"Ursinne","emotion_gaiety":"Munterhet","emotion_gladness":"Glad","emotion_glee":"Munterhet","emotion_gloom":"Dyster","emotion_glumness":"Dysterhet","emotion_grief":"Sorg","emotion_grouchiness":"Gn\u00e4llig","emotion_grumpiness":"Grinig","emotion_guilt":"Skuld","emotion_happiness":"Lycka","emotion_hate":"Hat","emotion_homesickness":"Heml\u00e4ngtan","emotion_hope":"Hopp","emotion_hopelessness":"Hoppl\u00f6shet","emotion_horror":"Skr\u00e4ck","emotion_hostility":"Fiendskap","emotion_humiliation":"F\u00f6r\u00f6dmjukelse","emotion_hurt":"S\u00e5rad","emotion_hysteria":"Hysteri","emotion_infatuation":"F\u00f6rblindelse","emotion_insecurity":"Os\u00e4kerhet","emotion_insult":"F\u00f6rol\u00e4mpning","emotion_irritation":"Irriterad","emotion_isolation":"Isolering","emotion_jealousy":"Avundsjuka","emotion_jolliness":"\u00d6verlycklig","emotion_joviality":"Gladlynt","emotion_joy":"Gl\u00e4dje","emotion_jubilation":"Jubel","emotion_liking":"Gillar","emotion_loathing":"\u00c4cklad","emotion_loneliness":"Ensamhet","emotion_longing":"L\u00e4ngtan","emotion_love":"K\u00e4rlek","emotion_lust":"Lust","emotion_melancholy":"Melankoli","emotion_misery":"El\u00e4nde","emotion_mortification":"F\u00f6rtret","emotion_neglect":"F\u00f6rsumma","emotion_nervousness":"Nervositet","emotion_optimism":"Optimism","emotion_outrage":"Skandal\u00f6s","emotion_panic":"Panik","emotion_passion":"Passion","emotion_pity":"Medlidande","emotion_pleasure":"Njutning","emotion_pride":"Stolt","emotion_primary_anger":"Ilska","emotion_primary_fear":"R\u00e4dsla","emotion_primary_joy":"Gl\u00e4dje","emotion_primary_love":"K\u00e4rlek","emotion_primary_sadness":"Sorg","emotion_primary_surprise":"\u00d6verraskning","emotion_rage":"Raseri","emotion_rapture":"H\u00e4nf\u00f6ra","emotion_regret":"\u00c5nger","emotion_rejection":"Avvisad","emotion_relief":"L\u00e4ttnad","emotion_remorse":"\u00c5ngersfull","emotion_resentment":"F\u00f6rbittring","emotion_revulsion":"Bakslag","emotion_sadness":"Sorg","emotion_satisfaction":"Tillfredsst\u00e4llelse","emotion_scorn":"F\u00f6rakt","emotion_secondary_affection":"Tillgivenhet","emotion_secondary_cheerfulness":"Gl\u00e4djande","emotion_secondary_contentment":"Bel\u00e5tenhet","emotion_secondary_disappointment":"Besvikelse","emotion_secondary_disgust":"\u00c4cklad","emotion_secondary_enthrallment":"F\u00e4ngslande","emotion_secondary_envy":"Avundsjuk","emotion_secondary_exasperation":"Irritation","emotion_secondary_horror":"Skr\u00e4ck","emotion_secondary_irritation":"Irriterad","emotion_secondary_longing":"L\u00e4ngtar","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"F\u00f6rsumma","emotion_secondary_nervousness":"Nervositet","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Stolthet","emotion_secondary_rage":"Raseri","emotion_secondary_relief":"L\u00e4ttnad","emotion_secondary_sadness":"Sorgsenhet","emotion_secondary_shame":"Skam","emotion_secondary_suffering":"Lidande","emotion_secondary_surprise":"F\u00f6rv\u00e5nad","emotion_secondary_sympathy":"Sympati","emotion_secondary_zest":"Iver","emotion_sentimentality":"Sentimentalitet","emotion_shame":"Skam","emotion_shock":"Chock","emotion_sorrow":"Sorg","emotion_spite":"Illvilja","emotion_suffering":"Lidande","emotion_surprise":"\u00d6verraskning","emotion_sympathy":"Sympati","emotion_tenderness":"\u00d6mhet","emotion_tenseness":"Sp\u00e4nd","emotion_terror":"Terror","emotion_thrill":"Sp\u00e4nning","emotion_uneasiness":"Obehaglighet","emotion_unhappiness":"Olycka","emotion_vengefulness":"H\u00e4mndlysten","emotion_woe":"Olycka\/El\u00e4nde","emotion_worry":"Oroande","emotion_wrath":"Vrede","emotion_zeal":"Iver","emotion_zest":"Iver","error_help":"Vi kommer snart tillbaka.","error_id":"Fel ID: ID","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"Det finns ingen policy f\u00f6r denna instans \u00e4nnu.","error_save":"Ett fel uppstod n\u00e4r vi f\u00f6rs\u00f6kte spara data.","error_title":"Hoppsan! N\u00e5got gick fel.","error_try_again":"N\u00e5got gick fel. F\u00f6rs\u00f6k igen.","error_twitter":"F\u00f6lj v\u00e5rt Twitter-konto<\/a> f\u00f6r att bli uppdaterad n\u00e4r sidan \u00e4r uppe igen.","error_unauthorized":"Du har inte r\u00e4tt att redigera denna resurs.","error_unavailable":"Tj\u00e4nsten \u00e4r inte tillg\u00e4nglig","error_user_account":"Den h\u00e4r anv\u00e4ndaren tillh\u00f6r inte det angivna kontot.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filtrera listan","footer_modal_version_release_away":"Du \u00e4r 1 version bakom den senaste versionen. Du b\u00f6r uppdatera din instans.|Du \u00e4r :number releaser bakom den senaste versionen. Du b\u00f6r uppdatera din instans.","footer_modal_version_whats_new":"Vad \u00e4r nytt","footer_new_version":"A new version of Monica is available","footer_newsletter":"Nyhetsbrev","footer_privacy":"Integritetspolicy","footer_release":"Information om utgivningen","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Bidra","footer_version":"Version: :version","gender_female":"Kvinna","gender_male":"Man","gender_no_gender":"Inget k\u00f6n","gender_none":"Vill inte s\u00e4ga","go_back":"G\u00e5 tillbaka","header_changelog_link":"Produkt \u00e4ndringar","header_logout_link":"Logga ut","header_settings_link":"Inst\u00e4llningar","load_more":"Ladda mer","loading":"Loading\u2026","main_nav_activities":"Aktiviteter","main_nav_cta":"L\u00e4gg till personer","main_nav_dashboard":"Instrumentpanel","main_nav_family":"Kontakter","main_nav_journal":"Dagbok","main_nav_tasks":"Uppgifter","markdown_description":"Vill du formatera din text fint? Vi st\u00f6der Markdown f\u00f6r att l\u00e4gga till fetstil, kursiva, listor och mycket mer.","markdown_link":"L\u00e4s dokumentation","new":"ny","no":"Nej","percent_uploaded":"{percent}% uppladdat","relationship_type_bestfriend":"b\u00e4sta v\u00e4n","relationship_type_bestfriend_female":"b\u00e4sta v\u00e4n","relationship_type_bestfriend_female_with_name":":name's b\u00e4sta v\u00e4n","relationship_type_bestfriend_with_name":":name's b\u00e4sta v\u00e4n","relationship_type_boss":"chef","relationship_type_boss_female":"chef","relationship_type_boss_female_with_name":":name's chef","relationship_type_boss_with_name":":name's chef","relationship_type_child":"son","relationship_type_child_female":"dotter","relationship_type_child_female_with_name":":name's dotter","relationship_type_child_with_name":":name's son","relationship_type_colleague":"kollega","relationship_type_colleague_female":"kollega","relationship_type_colleague_female_with_name":":name's kollega","relationship_type_colleague_with_name":":name's kollega","relationship_type_cousin":"kusin","relationship_type_cousin_female":"kusin","relationship_type_cousin_female_with_name":":name's kusin","relationship_type_cousin_with_name":":name's kusin","relationship_type_date":"dejt","relationship_type_date_female":"dejt","relationship_type_date_female_with_name":":name's dejt","relationship_type_date_with_name":":name's dejt","relationship_type_ex":"ex-pojkv\u00e4n","relationship_type_ex_female":"ex-flickv\u00e4n","relationship_type_ex_female_with_name":":name's ex-flickv\u00e4n","relationship_type_ex_husband":"ex-man","relationship_type_ex_husband_female":"ex-fru","relationship_type_ex_husband_female_with_name":":name's ex-fru","relationship_type_ex_husband_with_name":":name's ex-man","relationship_type_ex_with_name":":name's ex-pojkv\u00e4n","relationship_type_friend":"v\u00e4n","relationship_type_friend_female":"v\u00e4nnina","relationship_type_friend_female_with_name":":name's v\u00e4n","relationship_type_friend_with_name":":name's v\u00e4nnina","relationship_type_godfather":"gudfar","relationship_type_godfather_female":"gudmor","relationship_type_godfather_female_with_name":":name's gudmamma","relationship_type_godfather_with_name":":name's gudfar","relationship_type_godson":"gudson","relationship_type_godson_female":"guddotter","relationship_type_godson_female_with_name":":name's guddotter","relationship_type_godson_with_name":":name's gudson","relationship_type_grandchild":"barnbarn","relationship_type_grandchild_female":"barnbarn","relationship_type_grandchild_female_with_name":":name's barnbarn","relationship_type_grandchild_with_name":":name's barnbarn","relationship_type_grandparent":"farfar\/Morfar","relationship_type_grandparent_female":"farmor\/Mormor","relationship_type_grandparent_female_with_name":":name's Farmor\/Mormor","relationship_type_grandparent_with_name":":name's Farfar\/Morfar","relationship_type_group_family":"Familjerelationer","relationship_type_group_friend":"V\u00e4nrelationer","relationship_type_group_love":"K\u00e4rleksrelationer","relationship_type_group_other":"Annan typ av relationer","relationship_type_group_work":"Arbetsrelationer","relationship_type_inlovewith":"k\u00e4r i","relationship_type_inlovewith_female":"k\u00e4r i","relationship_type_inlovewith_female_with_name":"n\u00e5gon :name \u00e4r k\u00e4r i","relationship_type_inlovewith_with_name":"n\u00e5gon :name \u00e4r k\u00e4r i","relationship_type_lovedby":"\u00e4lskad av","relationship_type_lovedby_female":"\u00e4lskad av","relationship_type_lovedby_female_with_name":":name's hemliga \u00e4lskarinna","relationship_type_lovedby_with_name":":name's hemliga \u00e4lskare","relationship_type_lover":"\u00e4lskare","relationship_type_lover_female":"\u00e4lskare","relationship_type_lover_female_with_name":":name's \u00e4lskarinna","relationship_type_lover_with_name":":name's \u00e4lskare","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name's mentor","relationship_type_mentor_with_name":":name's mentor","relationship_type_nephew":"brorson","relationship_type_nephew_female":"systerdotter","relationship_type_nephew_female_with_name":":name's systerdotter","relationship_type_nephew_with_name":":name's brorson","relationship_type_parent":"far","relationship_type_parent_female":"mor","relationship_type_parent_female_with_name":":name's mamma","relationship_type_parent_with_name":":name's far","relationship_type_partner":"partner","relationship_type_partner_female":"partner","relationship_type_partner_female_with_name":":name's partner","relationship_type_partner_with_name":".name's partner","relationship_type_protege":"skyddsling","relationship_type_protege_female":"skyddsling","relationship_type_protege_female_with_name":":name's skyddsling","relationship_type_protege_with_name":":name's skyddsling","relationship_type_sibling":"bror","relationship_type_sibling_female":"syster","relationship_type_sibling_female_with_name":":name's syster","relationship_type_sibling_with_name":":name's bror","relationship_type_spouse":"make","relationship_type_spouse_female":"maka","relationship_type_spouse_female_with_name":":name's maka","relationship_type_spouse_with_name":":name's make","relationship_type_stepchild":"styvson","relationship_type_stepchild_female":"styvdotter","relationship_type_stepchild_female_with_name":":name's styvdotter","relationship_type_stepchild_with_name":":name's styvson","relationship_type_stepparent":"styvfar","relationship_type_stepparent_female":"styvmor","relationship_type_stepparent_female_with_name":":name's styvmor","relationship_type_stepparent_with_name":":name's styvfar","relationship_type_subordinate":"underordnad","relationship_type_subordinate_female":"underordnad","relationship_type_subordinate_female_with_name":":name's underordnade","relationship_type_subordinate_with_name":":name's underordnade","relationship_type_uncle":"farbror","relationship_type_uncle_female":"moster","relationship_type_uncle_female_with_name":":name's moster","relationship_type_uncle_with_name":":name's farbror","remove":"Radera","retry":"F\u00f6rs\u00f6k igen","revoke":"\u00c5terkalla","save":"Spara","save_close":"Spara och st\u00e4ng","today":"idag","type":"Typ","unknown":"Jag vet inte","update":"Uppdatera","upgrade":"Uppgradera f\u00f6r att l\u00e5sa upp","upload":"Ladda upp","verify":"Verifiera","weather_clear-day":"Klart (dag)","weather_clear-night":"Klart (natt)","weather_cloudy":"Molnigt","weather_current_temperature_celsius":":temperatur \u00b0C","weather_current_temperature_fahrenheit":":temperatur \u00b0F","weather_current_title":"Aktuell v\u00e4derikon","weather_fog":"Dimma","weather_partly-cloudy-day":"V\u00e4xlande molnighet (Dag)","weather_partly-cloudy-night":"V\u00e4xlande molnighet (Natt)","weather_rain":"Regn","weather_sleet":"N\u00f6je","weather_snow":"Sn\u00f6","weather_wind":"Vind","with":"med","yes":"Ja","yesterday":"ig\u00e5r","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Tv\u00e5faktorsautentiseringskod","2fa_otp_help":"\u00d6ppna din tv\u00e5faktorsautentisering mobilapp och kopiera koden","2fa_recuperation_code":"Ange en tv\u00e5faktors\u00e5terst\u00e4llningskod","2fa_title":"Tv\u00e5faktorsautentisering","2fa_wrong_validation":"Den tv\u00e5faktorsautentiseringen har misslyckats.","back_homepage":"Tillbaka till startsidan","button_remember":"Kom ih\u00e5g mig","change_language":"Byt spr\u00e5k till","change_language_title":"V\u00e4xla spr\u00e5k:","confirmation_again":"Om du vill \u00e4ndra din e-postadress kan du klicka h\u00e4r<\/a>.","confirmation_check":"Innan du forts\u00e4tter, kontrollera din e-post efter en verifieringsl\u00e4nk.","confirmation_fresh":"En ny verifieringsl\u00e4nk har skickats till din e-postadress.","confirmation_request_another":"Om du inte fick e-postmeddelandet klicka h\u00e4r f\u00f6r att beg\u00e4ra en annan<\/a>.","confirmation_title":"Verifiera e-postadressen","create_account":"Skapa det f\u00f6rsta kontot genom att registrera dig<\/a>","email":"E-post","email_change_current_email":"Nuvarande e-postadresser:","email_change_new":"Ny e-postadress","email_change_title":"\u00c4ndra din e-postadress","email_changed":"Din e-postadress har \u00e4ndrats. Kolla din brevl\u00e5da f\u00f6r att validera den.","failed":"Uppgifterna st\u00e4mmer inte \u00f6verrens med v\u00e5ra register.","login":"Logga in","login_again":"Logga in igen p\u00e5 ditt konto","login_to_account":"Logga in p\u00e5 ditt konto","login_with_recovery":"Logga in med en \u00e5terst\u00e4llningskod","mfa_auth_otp":"Autentisera med din tv\u00e5faktorsenhet","mfa_auth_webauthn":"Autentisera med en s\u00e4kerhetsnyckel (WebAuthn)","not_authorized":"Du har inte beh\u00f6righet att utf\u00f6ra denna \u00e5tg\u00e4rd","password":"L\u00f6senord","password_forget":"Gl\u00f6mt Ditt l\u00f6senord?","password_reset":"\u00c5terst\u00e4ll ditt l\u00f6senord","password_reset_action":"\u00c5terst\u00e4ll l\u00f6senord","password_reset_email":"E-postadress","password_reset_email_content":"Klicka h\u00e4r f\u00f6r att \u00e5terst\u00e4lla ditt l\u00f6senord:","password_reset_password":"L\u00f6senord","password_reset_password_confirm":"Bekr\u00e4fta L\u00f6senord","password_reset_send_link":"Skicka l\u00f6senords\u00e5terst\u00e4llningsl\u00e4nk","password_reset_title":"\u00c5terst\u00e4ll l\u00f6senord","recovery":"\u00c5terst\u00e4llningskod","register_action":"Registrera","register_create_account":"Du m\u00e5ste skapa ett konto f\u00f6r att anv\u00e4nda Monica","register_email":"Ange en giltig e-postadress","register_email_example":"du@hem","register_firstname":"F\u00f6rnamn","register_firstname_example":"ex: John","register_invitation_email":"Av s\u00e4kerhetssk\u00e4l ber vi dig att ange e-postmeddelandet f\u00f6r den person som har bjudit in dig till detta konto. Denna information finns i e-postmeddelandet med inbjudan.","register_lastname":"Efternamn","register_lastname_example":"ex. Svensson","register_login":"Logga in<\/a> om du redan har ett konto.","register_password":"L\u00f6senord","register_password_confirmation":"Bekr\u00e4ftelse p\u00e5 l\u00f6senord","register_password_example":"Ange ett s\u00e4kert l\u00f6senord","register_policy":"Att registrera dig inneb\u00e4r att du har l\u00e4st och godk\u00e4nner v\u00e5r Integritetspolicy<\/a> och Anv\u00e4ndarvillkor<\/a>.","register_title_create":"Skapa ditt Monica-konto","register_title_welcome":"V\u00e4lkommen till din nyinstallerade Monica-instans","signup":"Registrera dig","signup_disabled":"Registreringen \u00e4r f\u00f6r n\u00e4rvarande inaktiverad","signup_error":"Ett fel intr\u00e4ffade vid f\u00f6rs\u00f6k att registrera anv\u00e4ndaren","signup_no_account":"Har du inget konto?","throttle":"F\u00f6r m\u00e5nga inloggningsf\u00f6rs\u00f6k. V\u00e4nligen f\u00f6rs\u00f6k igen om :seconds sekunder.","use_recovery":"Eller s\u00e5 kan du anv\u00e4nda en \u00e5terst\u00e4llningskod<\/a>"},"changelog":{"note":"Obs: Tyv\u00e4rr \u00e4r denna sida endast p\u00e5 engelska.","title":"Produkt \u00e4ndringar"},"dashboard":{"dashboard_blank_cta":"L\u00e4gg till din f\u00f6rsta kontakt","dashboard_blank_description":"Monica \u00e4r platsen f\u00f6r att organisera alla de interaktioner du har med de du bryr dig om.","dashboard_blank_illustration":"Illustration av Freepik<\/a>","dashboard_blank_title":"V\u00e4lkommen till ditt konto!","debts_you_owe":"Du \u00e4r skyldig","notes_title":"Du har inga stj\u00e4rnm\u00e4rkta anteckningar \u00e4nnu.","product_changes":"Produkt \u00e4ndringar","product_view_details":"Visa detaljer","reminders_next_months":"H\u00e4ndelser under de kommande 3 m\u00e5naderna","reminders_none":"Ingen p\u00e5minnelse f\u00f6r denna m\u00e5nad.","statistics_activities":"Aktiviteter","statistics_contacts":"Kontakter","statistics_gifts":"G\u00e5vor","tab_calls_blank":"Du har inte loggat ett samtal \u00e4n.","tab_debts":"Skulder","tab_debts_blank":"Du har inte loggat n\u00e5gon skuld \u00e4nnu.","tab_favorite_notes":"Favoritanteckningar","tab_recent_calls":"Senaste samtal","tab_tasks":"Uppgifter","tab_tasks_blank":"Du har inte n\u00e5gon uppgift \u00e4nnu.","task_add_cta":"L\u00e4gg till en uppgift","tasks_add_note":"Tryck p\u00e5 Enter<\/kbd> f\u00f6r att l\u00e4gga till uppgiften.","tasks_add_task_placeholder":"Vad handlar denna uppgift om?","tasks_tab_your_contacts":"Uppgifter relaterade till dina kontakter","tasks_tab_your_tasks":"Dina uppgifter"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M, Y","short_date_year_time":"d M, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna journalpost?","entry_delete_success":"Journalposten har tagits bort.","journal_add":"L\u00e4gg till en journalpost","journal_add_comment":"Vill du l\u00e4gga till en kommentar (valfritt)?","journal_add_cta":"Spara","journal_add_date":"Datum","journal_add_post":"Inl\u00e4gg","journal_add_title":"Titel (valfritt)","journal_blank_cta":"L\u00e4gg till din f\u00f6rsta journalpost","journal_blank_description":"Tidskriften l\u00e5ter dig skriva h\u00e4ndelser som h\u00e4nde dig, och kom ih\u00e5g dem.","journal_come_back":"Tack. Kom tillbaka imorgon f\u00f6r att betygs\u00e4tta din dag igen.","journal_created_at":"Created at {date}","journal_created_automatically":"Skapad automatiskt","journal_description":"Obs: tidskriften listar b\u00e5de manuella journalposter och automatiska poster som Aktiviteter gjorda med dina kontakter. Medan du kan ta bort journalposter manuellt, m\u00e5ste du ta bort aktiviteten direkt p\u00e5 kontaktsidan.","journal_edit":"Redigera en journalpost","journal_empty":"Tom journal","journal_entry_rate":"Du betygsatte din dag.","journal_entry_type_activity":"Aktivitet","journal_entry_type_journal":"Journalpost","journal_rate":"Hur var din dag? Du kan betygs\u00e4tta den en g\u00e5ng om dagen.","journal_show_comment":"Visa kommentar"},"logs":{"contact_log_contact_created":"Skapade kontakten.","contact_log_contact_description_cleared":"Rensade beskrivningen.","contact_log_contact_description_updated":"Uppdaterade beskrivningen.","contact_log_contact_work_updated":"Uppdaterade jobb information.","settings_log_company_created":"Skapade ett f\u00f6retag som heter :name.","settings_log_contact_created_with_name":"Lade till :name som en kontakt.","settings_log_contact_description_cleared_with_name":"Rensade beskrivningen av :name.","settings_log_contact_description_updated_with_name":"Uppdaterade beskrivningen av :name.","settings_log_contact_work_updated_with_name":"Uppdaterade jobb information f\u00f6r :name."},"mail":{"comment":"Kommentar: :comment","confirmation_email_bottom":"Om du inte har skapat ett konto kr\u00e4vs inga ytterligare \u00e5tg\u00e4rder.","confirmation_email_button":"Verifiera e-postadress","confirmation_email_intro":"F\u00f6r att validera din e-post klicka p\u00e5 knappen nedan","confirmation_email_title":"Monica \u2013 e-postverifiering","footer_contact_info":"L\u00e4gg till, visa, komplettera och \u00e4ndra information om denna kontakt:","footer_contact_info2":"Se :name's profil","footer_contact_info2_link":"Se :name\u2019s profil: :url","for":"F\u00f6r: :name","greetings":"Hej :username","invitation_button":"Acceptera inbjudan","invitation_expiration":"Denna l\u00e4nk l\u00f6per ut om :count dagar.","invitation_intro":"Du har blivit inbjuden av :name (:email) f\u00f6r att anv\u00e4nda Monica, ett trevligt Personligt Relationship Management-verktyg.","invitation_link":"F\u00f6r att acceptera inbjudan, klicka p\u00e5 l\u00e4nken nedan:","invitation_title":"Monica \u2013 Du \u00e4r inbjuden till :name","notification_description":"Om :count dagar (p\u00e5 :date) kommer f\u00f6ljande h\u00e4ndelse att h\u00e4nda:","notification_subject_line":"Du har en kommande h\u00e4ndelse","notifications_footer":"Om du har problem med att klicka p\u00e5 knappen \":actionText\", kopiera och klistra in URL:en nedan i din webbl\u00e4sare: [:actionURL](:actionURL)","notifications_hello":"Hej!","notifications_regards":"H\u00e4lsningar","notifications_rights":"Alla r\u00e4ttigheter reserverade","notifications_whoops":"Hoppsan!","password_reset_bottom":"Om du inte har beg\u00e4rt en \u00e5terst\u00e4llning av l\u00f6senordet kr\u00e4vs ingen ytterligare \u00e5tg\u00e4rd.","password_reset_button":"\u00c5terst\u00e4ll l\u00f6senord","password_reset_expiration":"Denna l\u00e4nk f\u00f6r \u00e5terst\u00e4llning av l\u00f6senord kommer att l\u00f6pa ut om :count minuter.","password_reset_intro":"Du f\u00e5r detta e-postmeddelande eftersom vi fick en beg\u00e4ran om \u00e5terst\u00e4llning av l\u00f6senord f\u00f6r ditt konto.","password_reset_title":"Monica \u2013 \u00c5terst\u00e4ll l\u00f6senordsmeddelanden","stay_in_touch_subject_description":"Du bad om att bli p\u00e5mind om att h\u00e5lla kontakten med :name varje :frequency dag. Du bad om att bli p\u00e5mind om att h\u00e5lla kontakten med :name varje :frequency dagar.","stay_in_touch_subject_line":"H\u00e5ll kontakten med :name","subject_line":"P\u00e5minnelse om :contact","want_reminded_of":"Du ville bli p\u00e5mind om :reason"},"pagination":{"next":"N\u00e4sta \u276f","previous":"< F\u00f6reg\u00e5ende"},"passwords":{"changed":"L\u00f6senordet har \u00e4ndrats.","invalid":"Nuvarande l\u00f6senord du angav \u00e4r inte korrekt.","reset":"Ditt l\u00f6senord har \u00e5terst\u00e4llts!","sent":"Om e-postmeddelandet du angav finns i v\u00e5ra register, har du f\u00e5tt en l\u00e4nk f\u00f6r att \u00e5terst\u00e4lla l\u00f6senordet.","throttled":"V\u00e4nta innan du f\u00f6rs\u00f6ker igen.","token":"Denna \u00e5terst\u00e4llningstoken f\u00f6r l\u00f6senord \u00e4r ogiltig.","user":"Om e-postmeddelandet du angav finns i v\u00e5ra register, har du f\u00e5tt en l\u00e4nk f\u00f6r att \u00e5terst\u00e4lla l\u00f6senordet."},"people":{"activities_activity":"Aktivitetskategori","activities_add_activity":"L\u00e4gg till aktivitet","activities_add_category":"Ange en kategori","activities_add_date_occured":"Aktiviteten skedde p\u00e5...","activities_add_emotions":"L\u00e4gg till k\u00e4nslor","activities_add_emotions_title":"Vill du logga hur du k\u00e4nde dig under detta samtal? (valfritt)","activities_add_error":"Fel n\u00e4r aktiviteten lades till","activities_add_more_details":"L\u00e4gg till fler detaljer","activities_add_participants":"Vem deltog f\u00f6rutom {name} i denna aktivitet? (valfritt)","activities_add_participants_cta":"L\u00e4gg till deltagare","activities_add_pick_activity":"(Valfritt) Vill du kategorisera denna aktivitet? Du beh\u00f6ver inte, men det kommer att ge dig statistik senare","activities_add_success":"Aktiviteten har lagts till","activities_add_title":"Vad gjorde du med {name}?","activities_blank_add_activity":"L\u00e4gg till en aktivitet","activities_blank_title":"H\u00e5ll koll p\u00e5 vad du har gjort med {name} tidigare och vad du har pratat om","activities_delete_success":"Aktiviteten har tagits bort","activities_item_information":":Activity. H\u00e4nt :date","activities_list_category":"Kategori:","activities_list_date":"H\u00e4nt p\u00e5","activities_list_emotions":"K\u00e4nslor jag k\u00e4nde:","activities_list_participants":"Deltagare:","activities_profile_number_occurences":":value aktivitet|:value aktiviteter","activities_profile_subtitle":"Du har loggat :total_activities aktivitet med :name totalt och :aktiviteter_last_tolve_months under de senaste 12 m\u00e5naderna hittills.|Du har loggat :total_activities aktiviteter med :name totalt och :aktiviteter_last_tolve_months under de senaste 12 m\u00e5naderna hittills.","activities_profile_title":"Aktiviteter rapport mellan :name och dig","activities_profile_year_summary":"H\u00e4r \u00e4r vad ni tv\u00e5 har gjort :year","activities_profile_year_summary_activity_types":"H\u00e4r \u00e4r en uppdelning av den typ av aktiviteter du har gjort tillsammans :year","activities_summary":"Beskriv vad du gjorde","activities_update_success":"Aktiviteten har uppdaterats","activities_view_activities_report":"Visa aktivitetsrapport","activities_who_was_involved":"Vem var inblandad?","activity_title":"Aktiviteter","activity_type_ate_at_his_place":"\u00e5t hemma hos sig","activity_type_ate_at_home":"\u00e5t hemma","activity_type_ate_restaurant":"\u00e5t p\u00e5 en restaurang","activity_type_category_cultural_activities":"Kulturella aktiviteter","activity_type_category_food":"Mat","activity_type_category_simple_activities":"Enkla aktiviteter","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"spelade en sport tillsammans","activity_type_just_hung_out":"h\u00e4ngde precis ut","activity_type_picnicked":"utflykt","activity_type_talked_at_home":"precis pratat hemma","activity_type_watched_movie_at_home":"s\u00e5g en film hemma","activity_type_went_bar":"gick till en bar","activity_type_went_concert":"gick till en konsert","activity_type_went_museum":"gick till museet","activity_type_went_play":"gick till en pj\u00e4s","activity_type_went_theater":"gick till teatern","age_approximate_in_years":"runt :age \u00e5r gammal","age_exact_birthdate":"f\u00f6dd :date","age_exact_in_years":":age \u00e5r gammal","auditlogs_author":"Av :name den :date","auditlogs_breadcrumb":"Historik","auditlogs_link":"Historik","auditlogs_title":"Allt som h\u00e4nde :name","avatar_adorable_avatar":"Den beundransv\u00e4rda avatar","avatar_change_title":"\u00c4ndra din avatar","avatar_crop_new_avatar_photo":"Besk\u00e4r ny avatar foto","avatar_current":"Beh\u00e5ll nuvarande avatar","avatar_default_avatar":"Standardavatar","avatar_gravatar":"Gravatar som associeras med den h\u00e4r personens e-postadress. Gravatar<\/a> \u00e4r ett globalt system som l\u00e5ter anv\u00e4ndare associera e-postadresser med foton.","avatar_photo":"Fr\u00e5n ett foto som du laddar upp","avatar_question":"Vilken avatar vill du anv\u00e4nda?","birthdate_not_set":"F\u00f6delsedatum \u00e4r inte inst\u00e4llt","call_blank_desc":"Du ringde {name}","call_blank_title":"H\u00e5ll koll p\u00e5 de telefonsamtal du gjort med {name}","call_button":"Logga ett samtal","call_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort detta samtal?","call_delete_success":"Samtalet har tagits bort","call_emotions":"K\u00e4nslor:","call_empty_comment":"Inga detaljer","call_he_called":"{name} ringde","call_title":"Telefonsamtal","call_you_called":"Du ringde","calls_add_success":"Samtalet har sparats.","contact_address_form_city":"Stad (valfritt)","contact_address_form_country":"Land (valfritt)","contact_address_form_latitude":"Latitud (endast siffror) (valfritt)","contact_address_form_longitude":"Longitud (endast nummer) (valfritt)","contact_address_form_name":"Etikett (valfritt)","contact_address_form_postal_code":"Postnummer (valfritt)","contact_address_form_province":"L\u00e4n (valfritt)","contact_address_form_street":"Gatuadress (valfri)","contact_address_title":"Adresser","contact_archive":"Arkivera kontakt","contact_archive_help":"Arkiverade kontakter visas inte p\u00e5 kontaktlistan, men visas fortfarande i s\u00f6kresultaten.","contact_field_label_cell":"Mobil","contact_field_label_fax":"Fax","contact_field_label_home":"Hem","contact_field_label_main":"Prim\u00e4r","contact_field_label_other":"\u00d6vriga","contact_field_label_pager":"Persons\u00f6kare","contact_field_label_personal":"Personligt","contact_field_label_work":"Arbete","contact_info_address":"Bor i","contact_info_form_contact_type":"Typ av kontakt","contact_info_form_content":"Inneh\u00e5ll","contact_info_form_personalize":"Anpassa","contact_info_title":"Kontaktinformation","contact_unarchive":"Avarkivera kontakt","conversation_add_another":"L\u00e4gg till ett annat meddelande","conversation_add_content":"Skriv ner vad som sades","conversation_add_error":"Du m\u00e5ste l\u00e4gga till minst ett meddelande.","conversation_add_how":"Hur kommunicerade du?","conversation_add_success":"Samtalet har lagts till.","conversation_add_title":"Spela in en ny konversation","conversation_add_what_was_said":"Vad sade du?","conversation_add_when":"N\u00e4r hade du den h\u00e4r konversationen?","conversation_add_who_wrote":"Vem har sagt detta meddelande?","conversation_add_you":"Du","conversation_blank":"Spela in samtal du har med :name p\u00e5 sociala medier, SMS, ...","conversation_delete_link":"Ta bort konversationen","conversation_delete_success":"Konversationen har tagits bort.","conversation_edit_delete":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna konversation? Borttagning \u00e4r permanent.","conversation_edit_success":"Samtalet har uppdaterats.","conversation_edit_title":"Redigera konversation","conversation_list_cta":"Logga konversation","conversation_list_table_content":"Partiellt inneh\u00e5ll (senaste meddelande)","conversation_list_table_messages":"Meddelanden","conversation_list_title":"Konversationer","debt_add_add_cta":"L\u00e4gg till skuld","debt_add_amount":"summan av","debt_add_cta":"L\u00e4gg till skuld","debt_add_reason":"av f\u00f6ljande sk\u00e4l (valfritt)","debt_add_success":"Skulden har lagts till","debt_add_they_owe":":name \u00e4r skyldig dig","debt_add_title":"Skuldhantering","debt_add_you_owe":"Du \u00e4r skyldig :name","debt_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna skuld?","debt_delete_success":"Skulden har tagits bort","debt_edit_success":"Skulden har uppdaterats","debt_edit_update_cta":"Uppdatera skuld","debt_they_owe":":name \u00e4r skyldig dig :amount","debt_title":"Skulder","debt_you_owe":"Du \u00e4r skyldig :amount","debts_blank_title":"Hantera skulder du \u00e4r skyldig :name eller :name \u00e4r du skyldig","deceased_add_reminder":"L\u00e4gg till en p\u00e5minnelse f\u00f6r detta datum","deceased_age":"\u00c5lder vid avldining","deceased_date_label":"Datum av bortg\u00e5ng","deceased_know_date":"Jag vet vilket datum personen avled","deceased_label":"Avlidna","deceased_label_with_date":"Datum bortg\u00e5ng :date","deceased_mark_person_deceased":"Markera denna person som avliden","deceased_reminder_title":"\u00c5rsdag av bortg\u00e5ng av :name","document_list_blank_desc":"H\u00e4r kan du lagra dokument relaterade till denna person.","document_list_cta":"Ladda upp dokument","document_list_title":"Dokument","document_upload_zone_cta":"Ladda upp en fil","document_upload_zone_error":"Det gick inte att ladda upp dokumentet. F\u00f6rs\u00f6k igen nedan.","document_upload_zone_progress":"Laddar upp dokumentet...","edit_contact_information":"Redigera kontaktinformation","emotion_this_made_me_feel":"Detta fick dig att k\u00e4nna\u2026","food_preferences_add_success":"Matinst\u00e4llningar har sparats","food_preferences_cta":"L\u00e4gg till matpreferenser","food_preferences_edit_cta":"Spara matpreferenser","food_preferences_edit_description":"Kanske :f\u00f6rnamn eller n\u00e5gon i familjen :family har en allergi. Eller inte gillar en viss flaska vin. Ange dem h\u00e4r s\u00e5 att du kommer ih\u00e5g det n\u00e4sta g\u00e5ng du bjuder in dem till middag","food_preferences_edit_description_no_last_name":"Kanske : f\u00f6rnamn har en allergi, eller inte gillar en viss flaska vin. Ange dem h\u00e4r s\u00e5 att du kommer ih\u00e5g det n\u00e4sta g\u00e5ng du bjuder in dem till middag","food_preferences_edit_title":"Ange matpreferenser","food_preferences_title":"Inst\u00e4llningar f\u00f6r mat","gifts_add_comment":"Kommentar (valfritt)","gifts_add_date":"Date (optional)","gifts_add_gift":"L\u00e4gg till en g\u00e5va","gifts_add_gift_already_offered":"Erbjuden g\u00e5van","gifts_add_gift_idea":"G\u00e5va id\u00e9","gifts_add_gift_name":"G\u00e5vans namn","gifts_add_gift_received":"G\u00e5va mottagen","gifts_add_gift_title":"Vad \u00e4r denna g\u00e5va?","gifts_add_link":"L\u00e4nk till webbsidan (valfritt)","gifts_add_photo":"Foto (valfritt)","gifts_add_photo_title":"L\u00e4gg till ett foto f\u00f6r denna g\u00e5va","gifts_add_recipient":"Mottagare (valfritt)","gifts_add_recipient_field":"Mottagare","gifts_add_someone":"Denna g\u00e5va \u00e4r till f\u00f6r n\u00e5gon i {name} familj i synnerhet","gifts_add_success":"G\u00e5van har lagts till","gifts_add_title":"G\u00e5vohantering f\u00f6r :name","gifts_add_value":"V\u00e4rde (valfritt)","gifts_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna g\u00e5va?","gifts_delete_cta":"Radera","gifts_delete_success":"G\u00e5van har tagits bort","gifts_delete_title":"Ta bort en g\u00e5va","gifts_for":"F\u00f6r: {name}","gifts_ideas":"G\u00e5va id\u00e9er","gifts_link":"L\u00e4nk","gifts_mark_offered":"Markera som erbjuden","gifts_offered":"Erbjudna g\u00e5vor","gifts_offered_as_an_idea":"Markera som en id\u00e9","gifts_received":"G\u00e5vor mottagna","gifts_title":"G\u00e5vor","gifts_update_success":"G\u00e5van har uppdaterats","gifts_view_comment":"Visa kommentar","information_edit_birthdate_label":"F\u00f6delsedatum","information_edit_description":"Beskrivning (valfritt)","information_edit_description_help":"Anv\u00e4nds p\u00e5 kontaktlistan f\u00f6r att vid behov l\u00e4gga till lite kontext.","information_edit_exact":"Jag vet exakt f\u00f6delsedatum f\u00f6r denna person...","information_edit_firstname":"F\u00f6rnamn","information_edit_lastname":"Efternamn (valfritt)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"Jag vet dag och m\u00e5nad av f\u00f6delsedatum f\u00f6r denna person, men inte \u00e5ret\u2026","information_edit_probably":"Denna person \u00e4r f\u00f6rmodligen...","information_edit_success":"Profilen har uppdaterats","information_edit_title":"Redigera :name's personliga information","information_edit_unknown":"Jag k\u00e4nner inte till personens \u00e5lder","information_no_work_defined":"Ingen arbetsinformation angiven","information_work_at":"vid :company","introductions_add_reminder":"L\u00e4gg till en p\u00e5minnelse f\u00f6r att fira detta m\u00f6te p\u00e5 \u00e5rsdagen denna h\u00e4ndelse h\u00e4nde","introductions_additional_info":"F\u00f6rklara hur och var du tr\u00e4ffades","introductions_blank_cta":"Ange hur du tr\u00e4ffade :name","introductions_edit_met_through":"Har n\u00e5gon introducerat dig till den h\u00e4r personen?","introductions_first_met_date":"Datum som ni tr\u00e4ffades","introductions_first_met_date_known":"Detta \u00e4r det datum vi m\u00f6ttes","introductions_met_date":"Tr\u00e4ffades den :date","introductions_met_through":"M\u00f6ttes genom :name<\/a>","introductions_no_first_met_date":"Jag vet inte vilket datum vi tr\u00e4ffades","introductions_no_met_through":"Ingen","introductions_reminder_title":"\u00c5rsdagen av dagen du tr\u00e4ffade f\u00f6rsta g\u00e5ngen","introductions_sidebar_title":"Hur du tr\u00e4ffades","introductions_title_edit":"Hur tr\u00e4ffade du :name?","introductions_update_success":"Du har uppdaterat informationen om hur du tr\u00e4ffade den h\u00e4r personen","last_activity_date":"Senaste aktiviteten tillsammans: :date","last_activity_date_empty":"Senaste aktiviteten tillsammans: ok\u00e4nd","last_called":"Senast anropad: :date","last_called_empty":"Senast anropad: ok\u00e4nd","life_event_blank":"Logga vad som h\u00e4nder med livet f\u00f6r {name} f\u00f6r din framtida referens.","life_event_category_family_relationships":"Familj & relationer","life_event_category_health_wellness":"H\u00e4lsa & v\u00e4lm\u00e5ende","life_event_category_home_living":"Hem & Boende","life_event_category_travel_experiences":"Resor & upplevelser","life_event_category_work_education":"Arbete & utbildning","life_event_create_add_yearly_reminder":"L\u00e4gg till en \u00e5rlig p\u00e5minnelse f\u00f6r denna h\u00e4ndelse","life_event_create_category":"Alla kategorier","life_event_create_date":"Du beh\u00f6ver inte ange en m\u00e5nad eller en dag - bara \u00e5ret \u00e4r obligatoriskt.","life_event_create_default_description":"L\u00e4gg till information om vad du vet","life_event_create_default_story":"Ber\u00e4ttelse (valfritt)","life_event_create_default_title":"Titel (valfritt)","life_event_create_life_event":"L\u00e4gg till livsh\u00e4ndelse","life_event_create_success":"Livsh\u00e4ndelsen har lagts till","life_event_date_it_happened":"Datum det h\u00e4nde","life_event_delete_description":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna livsh\u00e4ndelse? Borttagning \u00e4r permanent.","life_event_delete_success":"Livsh\u00e4ndelsen har tagits bort","life_event_delete_title":"Ta bort en livsh\u00e4ndelse","life_event_list_cta":"L\u00e4gg till livsh\u00e4ndelse","life_event_list_tab_life_events":"Livsh\u00e4ndelser","life_event_list_tab_other":"Anteckningar, p\u00e5minnelser, ...","life_event_list_title":"Livsh\u00e4ndelser","life_event_sentence_achievement_or_award":"Fick en prestation eller bel\u00f6ning","life_event_sentence_anniversary":"\u00c5rsdag","life_event_sentence_bought_a_home":"K\u00f6pte ett hem","life_event_sentence_broken_bone":"Br\u00f6t ett ben","life_event_sentence_changed_beliefs":"\u00c4ndrad trosuppfattning","life_event_sentence_dentist":"Gick till tandl\u00e4karen","life_event_sentence_end_of_relationship":"Avslutade ett f\u00f6rh\u00e5llande","life_event_sentence_engagement":"F\u00f6rlovade mig","life_event_sentence_expecting_a_baby":"F\u00f6rv\u00e4ntar sig ett barn","life_event_sentence_first_kiss":"F\u00f6rsta kyss","life_event_sentence_first_word":"Talade f\u00f6r f\u00f6rsta g\u00e5ngen","life_event_sentence_holidays":"\u00c5kte p\u00e5 semester","life_event_sentence_home_improvement":"F\u00f6rb\u00e4ttrade och renoverade hemmet","life_event_sentence_loss_of_a_loved_one":"Bortg\u00e5ng av n\u00e4rst\u00e5ende","life_event_sentence_marriage":"Gifte mig","life_event_sentence_military_service":"V\u00e4rnplikt","life_event_sentence_moved":"Flyttade","life_event_sentence_new_child":"Fick barn","life_event_sentence_new_eating_habits":"B\u00f6rjade nya matvanor","life_event_sentence_new_family_member":"Lade till en familjemedlem","life_event_sentence_new_hobby":"B\u00f6rjade med en hobby","life_event_sentence_new_instrument":"L\u00e4rde mig ett nytt instrument","life_event_sentence_new_job":"B\u00f6rjade p\u00e5 ett nytt jobb","life_event_sentence_new_language":"L\u00e4rde sig ett nytt spr\u00e5k","life_event_sentence_new_license":"Fick license","life_event_sentence_new_pet":"Fick ett husdjur","life_event_sentence_new_relationship":"B\u00f6rjade ett f\u00f6rh\u00e5llande","life_event_sentence_new_roommate":"Fick en rumskompis","life_event_sentence_new_school":"B\u00f6rjade p\u00e5 skola","life_event_sentence_new_sport":"B\u00f6rjade med sport","life_event_sentence_new_vehicle":"Fick ett nytt fordon","life_event_sentence_overcame_an_illness":"\u00d6vervann en sjukdom","life_event_sentence_published_book_or_paper":"Publicerat ett papper","life_event_sentence_quit_a_habit":"Avslutade en vana","life_event_sentence_removed_braces":"Tog bort tandst\u00e4llning","life_event_sentence_retirement":"Pensionerad","life_event_sentence_study_abroad":"Studerade utomlands","life_event_sentence_surgery":"Hade operation","life_event_sentence_tattoo_or_piercing":"Fick en tatuering eller piercing","life_event_sentence_travel":"Reste","life_event_sentence_volunteer_work":"B\u00f6rjade volont\u00e4rarbeta","life_event_sentence_wear_glass_or_contact":"B\u00f6rjade b\u00e4ra glas\u00f6gon eller kontaktlinser","life_event_sentence_weight_loss":"\"G\u00e5 ner i vikt\"","list_link_to_active_contacts":"Du visar arkiverade kontakter. Se listan \u00f6ver aktiva kontakter<\/a> ist\u00e4llet.","list_link_to_archived_contacts":"Lista \u00f6ver arkiverade kontakter","me":"Detta \u00e4r du","modal_call_comment":"Vad pratade ni om? (valfritt)","modal_call_emotion":"Vill du logga hur du k\u00e4nde dig under detta samtal? (valfritt)","modal_call_exact_date":"Samtalet skedde den","modal_call_title":"Registrera samtal","modal_call_who_called":"Vem ringde?","notes_add_cta":"L\u00e4gg till anteckning","notes_create_success":"Anteckningen har skapats","notes_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna anteckning? Radering \u00e4r permanent","notes_delete_success":"Anteckningen har tagits bort","notes_delete_title":"Ta bort en anteckning","notes_favorite":"L\u00e4gg till\/ta bort fr\u00e5n favoriter","notes_update_success":"Anteckningen har sparats","people_add_birthday_reminder":"\u00d6nska f\u00f6delsedag till :name","people_add_birthday_reminder_deceased":"P\u00e5 detta datum, skulle :name, ha firat sin f\u00f6delsedag","people_add_cta":"L\u00e4gg till","people_add_firstname":"F\u00f6rnamn","people_add_gender":"K\u00f6n","people_add_import":"Vill du importera dina kontakter<\/a>?","people_add_lastname":"Efternamn (valfritt)","people_add_middlename":"Mellannamn (valfritt)","people_add_missing":"Ingen person hittade L\u00e4gg till en ny nu","people_add_new":"L\u00e4gg till ny person","people_add_nickname":"Smeknamn (valfritt)","people_add_reminder_for_birthday":"Skapa en \u00e5rlig p\u00e5minnelse f\u00f6r f\u00f6delsedagen","people_add_success":":name har skapats","people_add_title":"L\u00e4gg till en ny person","people_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna kontakt? Borttagning \u00e4r permanent.","people_delete_message":"Ta bort kontakt","people_delete_success":"Kontakten har tagits bort","people_edit_email_error":"Det finns redan en kontakt p\u00e5 ditt konto med denna e-postadress. V\u00e4lj en annan.","people_export":"Exportera som vCard","people_list_account_upgrade_cta":"Uppgradera nu","people_list_account_upgrade_title":"Uppgradera ditt konto f\u00f6r att l\u00e5sa upp det till dess fulla potential.","people_list_account_usage":"Din kontoanv\u00e4ndning: :current\/:limit kontakter","people_list_blank_cta":"L\u00e4gg till en person","people_list_blank_title":"Du har ingen p\u00e5 ditt konto \u00e4nnu","people_list_clear_filter":"T\u00f6m filter","people_list_contacts_per_tags":"1 kontakt|:count kontakter","people_list_filter_tag":"Visar alla kontakter taggade med","people_list_filter_untag":"Visar alla omarkerade kontakter","people_list_firstnameAZ":"Sortera efter f\u00f6rnamn A \u2192 \u00d6","people_list_firstnameZA":"Sortera efter f\u00f6rnamn \u00d6 \u2192 A","people_list_hide_dead":"D\u00f6lj avlidna personer (:count)","people_list_last_updated":"Senast kontakt:","people_list_lastactivitydateNewtoOld":"Sortera efter senaste aktivitetsdatum nyaste till \u00e4ldsta","people_list_lastactivitydateOldtoNew":"Sortera efter senaste aktivitetsdatum \u00e4ldsta till nyaste","people_list_lastnameAZ":"Sortera efter efternamn A \u2192 \u00d6","people_list_lastnameZA":"Sortera efter efternamn \u00d6 \u2192 A","people_list_number_kids":"1 barn|:count barn","people_list_number_reminders":"1 p\u00e5minnelse|:count p\u00e5minnelser","people_list_show_dead":"Visa avlidna personer (:count)","people_list_sort":"Sortera","people_list_stats":"1 kontakt|:count kontakter","people_list_untagged":"Visa ej taggade kontakter","people_not_found":"Kontakt hittades ej","people_save_and_add_another_cta":"Skicka in och l\u00e4gg till n\u00e5gon annan","people_search":"S\u00f6k efter kontakt...","people_search_all":"Alla","people_search_next":"N\u00e4sta","people_search_no_results":"Inga resultat hittades","people_search_of":"av","people_search_page":"Sida","people_search_prev":"F\u00f6reg\u00e5ende","people_search_rows_per_page":"Rows per page","pets_bird":"F\u00e5gel","pets_cat":"Katt","pets_create_success":"Husdjuret har lagts till","pets_delete_success":"Husdjuret har tagits bort","pets_dog":"Hund","pets_fish":"Fisk","pets_hamster":"Hamster","pets_horse":"H\u00e4st","pets_kind":"Typ av husdjur","pets_name":"Namn (frivilligt)","pets_other":"\u00d6vriga","pets_rabbit":"Kanin","pets_rat":"R\u00e5tta","pets_reptile":"Reptil","pets_small_animal":"Sm\u00e5 djur","pets_title":"Husdjur","pets_update_success":"Husdjuret har uppdaterats","photo_current_profile_pic":"Nuvarande profilbild","photo_delete":"Ta bort foto","photo_list_blank_desc":"Du kan lagra bilder om denna kontakt. Ladda upp en nu!","photo_list_cta":"Ladda upp foto","photo_list_title":"Relaterade foton","photo_make_profile_pic":"Skapa profilbild","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Foton","photo_upload_zone_cta":"Ladda upp ett foto","relationship_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort detta f\u00f6rh\u00e5llande? Borttagning \u00e4r permanent.","relationship_form_add":"L\u00e4gg till ett nytt f\u00f6rh\u00e5llande","relationship_form_add_choice":"Vem \u00e4r relationen med?","relationship_form_add_description":"Detta kommer att l\u00e5ta dig behandla denna person som alla andra kontakter.","relationship_form_add_no_existing_contact":"Du har inga kontakter som kan vara relaterade till :name just nu.","relationship_form_add_success":"Relationen har fastst\u00e4llts framg\u00e5ngsrikt.","relationship_form_also_create_contact":"Skapa en kontaktpost f\u00f6r denna person.","relationship_form_associate_contact":"En befintlig kontakt","relationship_form_associate_dropdown":"S\u00f6k och v\u00e4lj en befintlig kontakt i menyn nedan","relationship_form_associate_dropdown_placeholder":"S\u00f6k och v\u00e4lj en befintlig kontakt","relationship_form_create_contact":"L\u00e4gg till en ny person","relationship_form_deletion_success":"Relationen har tagits bort.","relationship_form_edit":"Redigera ett befintligt f\u00f6rh\u00e5llande","relationship_form_is_with":"Denna person \u00e4r...","relationship_form_is_with_name":":name \u00e4r...","relationship_unlink_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort detta f\u00f6rh\u00e5llande? Denna person kommer inte att tas bort \u2013 bara f\u00f6rh\u00e5llandet mellan de tv\u00e5.","reminder_frequency_day":"varje dag|var :number dag","reminder_frequency_month":"varje m\u00e5nad|var :number m\u00e5nad","reminder_frequency_one_time":"den :date","reminder_frequency_week":"varje vecka|var :number vecka","reminder_frequency_year":"varje \u00e5r|vart :number \u00e5r","reminders_add_cta":"L\u00e4gg till p\u00e5minnelse","reminders_add_description":"Var sn\u00e4ll och p\u00e5minn mig om...","reminders_add_error_custom_text":"Du m\u00e5ste ange en text f\u00f6r denna p\u00e5minnelse","reminders_add_next_time":"N\u00e4r \u00e4r n\u00e4sta g\u00e5ng du vill bli p\u00e5mind om detta?","reminders_add_once":"P\u00e5minn mig om detta bara en g\u00e5ng","reminders_add_optional_comment":"Valfri kommentar","reminders_add_recurrent":"P\u00e5minn mig om detta varje","reminders_add_starting_from":"fr\u00e5n och med det datum som anges ovan","reminders_add_title":"Vad skulle du vilja bli p\u00e5mind om :name?","reminders_birthday":":name's f\u00f6delsedag","reminders_blank_add_activity":"L\u00e4gg till en p\u00e5minnelse","reminders_blank_title":"Finns det n\u00e5got du vill bli p\u00e5mind om :name?","reminders_create_success":"P\u00e5minnelsen har lagts till","reminders_cta":"L\u00e4gg till en p\u00e5minnelse","reminders_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna p\u00e5minnelse?","reminders_delete_cta":"Radera","reminders_delete_success":"P\u00e5minnelsen har tagits bort","reminders_description":"Vi kommer att skicka ett mail f\u00f6r var och en av p\u00e5minnelserna nedan. P\u00e5minnelser skickas varje morgon d\u00e5 h\u00e4ndelser kommer att h\u00e4nda. P\u00e5minnelser som l\u00e4ggs till automatiskt f\u00f6r f\u00f6delsedatum kan inte raderas. Om du vill \u00e4ndra dessa datum, redigera f\u00f6delsedatum f\u00f6r kontakterna.","reminders_edit_update_cta":"Uppdatera p\u00e5minnelse","reminders_free_plan_warning":"Du \u00e4r p\u00e5 den fria planen. Inga e-postmeddelanden skickas p\u00e5 denna plan. F\u00f6r att f\u00e5 dina p\u00e5minnelser via e-post, uppgradera ditt konto.","reminders_next_expected_date":"p\u00e5","reminders_one_time":"En g\u00e5ng","reminders_type_month":"m\u00e5nad","reminders_type_week":"vecka","reminders_type_year":"\u00e5r","reminders_update_success":"P\u00e5minnelsen har uppdaterats","section_contact_information":"Kontaktuppgifter","section_personal_activities":"Aktiviteter","section_personal_gifts":"G\u00e5vor","section_personal_notes":"Anteckningar","section_personal_reminders":"P\u00e5minnelser","section_personal_tasks":"Uppgifter","set_favorite":"Favoritkontakter placeras h\u00f6gst upp i kontaktlistan","stay_in_touch":"H\u00e5ll kontakten","stay_in_touch_frequency":"H\u00e5ll kontakten varje dag|H\u00e5ll kontakten var {count} dag","stay_in_touch_invalid":"Frekvensen m\u00e5ste vara st\u00f6rre \u00e4n 0.","stay_in_touch_modal_desc":"Vi kan p\u00e5minna dig via e-post om att h\u00e5lla kontakten med {firstname} med ett regelbundet intervall.","stay_in_touch_modal_label":"Skicka ett mail med var... {count} dag|Skicka ett mail med var... {count} dagar","stay_in_touch_modal_title":"H\u00e5ll kontakten","stay_in_touch_premium":"Du m\u00e5ste uppgradera ditt konto f\u00f6r att anv\u00e4nda denna funktion","tag_add":"L\u00e4gg till taggar","tag_add_search":"L\u00e4gg till eller s\u00f6k taggar","tag_edit":"Redigera tagg","tag_no_tags":"Inga taggar \u00e4nnu","tasks_add_task":"L\u00e4gg till en uppgift","tasks_blank_title":"Du har inga uppgifter \u00e4nnu.","tasks_complete_success":"Uppgiften har \u00e4ndrat status","tasks_delete_success":"Uppgiften har tagits bort","tasks_form_description":"Beskrivning (valfritt)","tasks_form_title":"Titel","tasks_title":"Uppgifter","work_add_cta":"Uppdatera arbetsinformation","work_edit_company":"F\u00f6retag (valfritt)","work_edit_job":"Jobbtitel (valfritt)","work_edit_success":"Work information updated","work_edit_title":"Uppdatera :name's jobbinformation","work_information":"Information om arbete"},"reminder":{"type_birthday":"\u00d6nskar g\u00e4rna f\u00f6delsedag till","type_birthday_kid":"\u00d6nska en glad f\u00f6delsedag till barn av","type_email":"E-post","type_hangout":"Umg\u00e5s med","type_lunch":"Lunch med","type_phone_call":"Ring"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Fel vid f\u00f6rs\u00f6k att inaktivera tv\u00e5faktorsautentisering","2fa_disable_success":"Tv\u00e5faktorsautentisering inaktiverad","2fa_disable_title":"Inaktivera tv\u00e5faktorsautentisering","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Fel vid f\u00f6rs\u00f6k att aktivera tv\u00e5faktorsautentisering","2fa_enable_error_already_set":"Tv\u00e5faktorsautentisering \u00e4r redan aktiverat","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Tv\u00e5faktorsautentisering aktiverat","2fa_enable_title":"Aktivera tv\u00e5faktorsautentisering","2fa_otp_title":"Mobilapplikation f\u00f6r tv\u00e5faktorsautentisering","2fa_title":"Tv\u00e5faktorsautentisering","api_authorized_clients":"Lista \u00f6ver auktoriserade kunder","api_authorized_clients_desc":"I det h\u00e4r avsnittet listas alla klienter som du har beh\u00f6righet att komma \u00e5t dina applikationsdata. Du kan n\u00e4r som helst \u00e5terkalla denna beh\u00f6righet.","api_authorized_clients_name":"Namn","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Omfattningar","api_authorized_clients_title":"Auktoriserade program","api_description":"API: et kan anv\u00e4ndas f\u00f6r att manipulera Monicas data fr\u00e5n en extern applikation, som till exempel en mobilapp.","api_endpoint":"API slutpunkt f\u00f6r denna Monica instans \u00e4r:","api_help":"Att anv\u00e4nda API:et \u00e4r obligatoriskt. Du kan antingen skapa en personlig \u00e5tkomst-token (Bearer-autentisering) eller auktorisera en OAuth klient att skapa den \u00e5t dig. Se API-dokumentation<\/a>.","api_oauth_clientid":"Klient ID","api_oauth_clients":"Dina OAuth klienter","api_oauth_clients_desc":"Det h\u00e4r avsnittet l\u00e5ter dig registrera dina egna OAuth klienter.","api_oauth_clients_desc2":"Anv\u00e4nd detta klient-id f\u00f6r att beg\u00e4ra en ny token, och konvertera beh\u00f6righetskoder till \u00e5tkomsttokens. Se Laravel Passport dokumentation<\/a> f\u00f6r mer information.","api_oauth_create":"Skapa klient","api_oauth_create_new":"Skapa ny klient","api_oauth_edit":"Redigera klient","api_oauth_name":"Namn","api_oauth_name_help":"N\u00e5got som dina anv\u00e4ndare kommer att k\u00e4nna igen och lita p\u00e5.","api_oauth_not_created":"Du har inte skapat n\u00e5gra OAuth klienter.","api_oauth_redirecturl":"Omdirigera URL","api_oauth_redirecturl_help":"Din applikations auktorisering callback URL.","api_oauth_secret":"Hemlighet","api_oauth_title":"OAuth klienter","api_pao_description":"Se till att du ger denna token till en k\u00e4lla du litar p\u00e5 \u2013 eftersom de ger dig tillg\u00e5ng till alla dina data.","api_personal_access_tokens":"Personliga \u00e5tkomsttokens","api_title":"API \u00e5tkomst","api_token_create":"Skapa token","api_token_create_new":"Skapa ny token","api_token_delete":"Radera","api_token_expire":"F\u00f6rfaller vid {date}","api_token_help":"H\u00e4r \u00e4r din nya personliga tillg\u00e5ng token. Detta \u00e4r den enda g\u00e5ngen det kommer att visas s\u00e5 f\u00f6rlora inte det! Du kan nu anv\u00e4nda denna token f\u00f6r att g\u00f6ra API-f\u00f6rfr\u00e5gningar.","api_token_name":"Token namn","api_token_not_created":"Du har inte skapat n\u00e5gra personliga \u00e5tkomsttokens.","api_token_scopes":"Omfattningar","api_token_title":"Personliga \u00e5tkomst-Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Valuta","dav_caldav_birthdays_export":"Exportera alla f\u00f6delsedagar i en fil","dav_caldav_tasks_export":"Exportera alla uppgifter i en fil","dav_carddav_export":"Exportera alla kontakter i en fil","dav_clipboard_copied":"V\u00e4rdet har kopierats till Urklipp","dav_connect_help":"Du kan ansluta dina kontakter och\/eller kalendrar med denna bas-url p\u00e5 din telefon eller dator.","dav_connect_help2":"Anv\u00e4nd din inloggning (e-post) och skapa en API-token som l\u00f6senord f\u00f6r att autentisera.","dav_copy_help":"Kopiera till Urklipp","dav_description":"H\u00e4r hittar du alla inst\u00e4llningar f\u00f6r att anv\u00e4nda WebDAV resurser f\u00f6r CardDAV och CalDAV export.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Bas-url f\u00f6r alla CardDAV och CalDAV resurser:","dav_url_caldav_birthdays":"CalDAV url f\u00f6r f\u00f6delsedagsresurser:","dav_url_caldav_tasks":"CalDAV url f\u00f6r uppgiftsk\u00e4llor:","dav_url_carddav":"CardDAV url f\u00f6r kontakter k\u00e4lla:","delete_cta":"Ta bort konto","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Radera ditt konto","email":"E-postadress","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Ange e-postadress","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Exportera dina kontouppgifter","export_title_sql":"Export data to SQL","firstname":"F\u00f6rnamn","import_blank_cta":"Import vCard","import_blank_description":"Vi kan importera vCard-filer som du kan f\u00e5 fr\u00e5n Google Kontakter eller din kontakthanterare.","import_blank_question":"Vill du importera kontakter nu?","import_blank_title":"Du har inte importerat n\u00e5gra kontakter \u00e4n.","import_cta":"Ladda upp kontakter","import_in_progress":"Importen p\u00e5g\u00e5r. Ladda om sidan om en minut.","import_need_subscription":"F\u00f6r att importera data kr\u00e4vs ett abonnemang.","import_report_date":"Datum f\u00f6r importen","import_report_number_contacts":"Antal kontakter i filen","import_report_number_contacts_imported":"Antal importerade kontakter","import_report_number_contacts_skipped":"Antal \u00f6verhoppade kontakter","import_report_status_imported":"Importerad","import_report_status_skipped":"Hoppat \u00f6ver","import_report_title":"Importerar rapport","import_report_type":"Typ av import","import_result_stat":"Uppladdad vCard med 1 kontakt (:total_import importerad, :total_skipped hoppas \u00f6ver)|Uppladdad vCard med :total_contacts kontakter (:total_imported importerad, :total_skipped hoppas \u00f6ver)","import_stat":"Du har importerat :number filer hittills.","import_title":"Importera kontakter till ditt konto","import_upload_behaviour":"Import beteende:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Ers\u00e4tt befintliga kontakter","import_upload_form_file":"Din .vcf<\/code> eller .vCard<\/code> -fil:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"Vi st\u00f6djer .vcard<\/code> och .vcf<\/code> -filer.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"Vi har dock vissa regler:","import_upload_title":"Importera dina kontakter fr\u00e5n en vCard-fil","import_vcard_contact_exist":"Kontakten existerar redan","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"Filen inneh\u00e5ller inga poster","import_vcard_file_not_found":"Filen hittades inte","import_vcard_parse_error":"Fel vid tolkning av vCard-post","import_vcard_unknown_entry":"Ok\u00e4nt kontaktnamn","import_view_report":"Visa rapport","lastname":"Efternamn","layout":"Design","layout_big":"Full bredd p\u00e5 webbl\u00e4saren","layout_small":"Max 1200 pixlar brett","locale":"Spr\u00e5k som anv\u00e4nds i appen","locale_ar":"Arabiska","locale_cs":"Tjeckiska","locale_de":"Tyska","locale_en":"Engelska","locale_en-GB":"Engelska (Storbritannien)","locale_es":"Spanska","locale_fr":"Franska","locale_he":"Hebreiska","locale_help":"Vill du hj\u00e4lpa till att \u00f6vers\u00e4tta Monica eller l\u00e4gga till ett nytt spr\u00e5k? F\u00f6lj denna l\u00e4nk f\u00f6r mer information<\/a>.","locale_hr":"Kroatiska","locale_it":"Italienska","locale_ja":"Japanska","locale_nl":"Nederl\u00e4ndska","locale_pt":"Portugisiska","locale_pt-BR":"Portugisiska (brasiliansk)","locale_ru":"Ryska","locale_sv":"Swedish","locale_tr":"Turkiska","locale_zh":"Kinesiska, f\u00f6renklad","locale_zh-TW":"Kinesiska Traditionell","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"V\u00e4lj sj\u00e4lv","me_choose_placeholder":"V\u00e4lj sj\u00e4lv","me_help":"Detta \u00e4r den kontakt som representerar du<\/em> i Monica","me_no_contact":"Ingen kontakt vald \u00e4nnu.","me_remove_contact":"Ta bort associationen","me_select":"V\u00e4lj en kontakt","me_select_click":"Klicka h\u00e4r f\u00f6r att v\u00e4lja en kontakt.","me_title":"Me as a contact","name":"Ditt namn: :name","name_order":"Namn order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u00c4ndra l\u00f6senord","password_change":"Change your password","password_current":"Nuvarande l\u00f6senord","password_current_placeholder":"Ange ditt nuvarande l\u00f6senord","password_new1":"Nytt l\u00f6senord","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"Detta \u00e4r en premiumfunktion som kr\u00e4ver att en betald prenumeration \u00e4r aktiv. Uppgradera ditt konto genom att bes\u00f6ka Inst\u00e4llningar > Prenumeration<\/a>.","personalisation_paid_upgrade_vue":"Detta \u00e4r en premiumfunktion som kr\u00e4ver att en betald prenumeration \u00e4r aktiv. Uppgradera ditt konto genom att bes\u00f6ka Inst\u00e4llningar > Prenumeration<\/a>.","personalization_activity_type_add_button":"L\u00e4gg till en ny aktivitetstyp","personalization_activity_type_category_add":"L\u00e4gg till en ny kategori f\u00f6r aktivitetstyp","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"L\u00e4gg till en ny kategori f\u00f6r aktivitetstyp","personalization_activity_type_category_modal_delete":"Ta bort en kategori av aktivitetstyper","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"Vi kan inte hitta denna kategori av aktivitetstyper.","personalization_activity_type_category_modal_edit":"Redigera kategori f\u00f6r aktivitetstyp","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"\u00c5tg\u00e4rder","personalization_activity_type_category_table_name":"Namn","personalization_activity_type_category_title":"Kategorier av aktivitetstyper","personalization_activity_type_modal_add":"L\u00e4gg till en ny aktivitetstyp","personalization_activity_type_modal_delete":"Ta bort en aktivitetstyp","personalization_activity_type_modal_delete_desc":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna aktivitetstyp? Aktiviteter som tillh\u00f6r denna kategori kommer inte att p\u00e5verkas av denna borttagning.","personalization_activity_type_modal_delete_error":"Vi kan inte hitta denna typ av aktivitet.","personalization_activity_type_modal_edit":"Redigera en aktivitetstyp","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"L\u00e4gg till ny f\u00e4lttyp","personalization_contact_field_type_add_success":"Kontakttypen har lagts till.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"Kontakttypen har uppdaterats.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Ta bort en befintlig kontakttyp","personalization_contact_field_type_modal_edit_title":"Redigera en befintlig typ av kontaktf\u00e4lt","personalization_contact_field_type_modal_icon":"Ikon (valfritt)","personalization_contact_field_type_modal_icon_help":"Du kan associera en ikon med den h\u00e4r kontaktf\u00e4lttypen. Du m\u00e5ste l\u00e4gga till en referens till en typsnitts-ikon.","personalization_contact_field_type_modal_name":"Namn","personalization_contact_field_type_modal_protocol":"Protokoll (valfritt)","personalization_contact_field_type_modal_protocol_help":"Varje ny kontakttyp kan klickas. Om ett protokoll \u00e4r inst\u00e4llt, kommer vi att anv\u00e4nda det f\u00f6r att utl\u00f6sa \u00e5tg\u00e4rden som \u00e4r inst\u00e4lld.","personalization_contact_field_type_modal_title":"L\u00e4gg till en ny typ av kontaktf\u00e4lt","personalization_contact_field_type_table_actions":"\u00c5tg\u00e4rder","personalization_contact_field_type_table_name":"Namn","personalization_contact_field_type_table_protocol":"Protokoll","personalization_contact_field_type_title":"Typ av kontaktf\u00e4lt","personalization_genders_add":"L\u00e4gg till ny k\u00f6nstyp","personalization_genders_default":"F\u00f6rvalt k\u00f6n","personalization_genders_desc":"Du kan definiera s\u00e5 m\u00e5nga k\u00f6n som du beh\u00f6ver. Du beh\u00f6ver minst en k\u00f6nstyp p\u00e5 ditt konto.","personalization_genders_f":"Kvinna","personalization_genders_list_contact_number":"{count} kontakt|{count} kontakter","personalization_genders_m":"Man","personalization_genders_make_default":"\u00c4ndra standard k\u00f6n","personalization_genders_modal_add":"L\u00e4gg till k\u00f6nstyp","personalization_genders_modal_default":"V\u00e4lj standard k\u00f6n f\u00f6r en ny kontakt","personalization_genders_modal_delete":"Ta bort k\u00f6nstyp","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Uppdatera k\u00f6nstyp","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Namn","personalization_genders_modal_name_help":"Namnet som anv\u00e4nds f\u00f6r att visa k\u00f6n p\u00e5 en kontaktsida.","personalization_genders_modal_sex":"K\u00f6n","personalization_genders_modal_sex_help":"Anv\u00e4nds f\u00f6r att definiera relationerna och under VCard-import\/exportprocessen.","personalization_genders_n":"Inget eller ej till\u00e4mpligt","personalization_genders_o":"Annat","personalization_genders_select_default":"V\u00e4lj standard k\u00f6n","personalization_genders_table_default":"Standard","personalization_genders_table_name":"Namn","personalization_genders_table_sex":"K\u00f6n","personalization_genders_title":"K\u00f6nsidentitet","personalization_genders_u":"Ok\u00e4nd","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Familj & relationer","personalization_life_event_category_health_wellness":"H\u00e4lsa och h\u00e4lsa","personalization_life_event_category_home_living":"Hem & Boende","personalization_life_event_category_title":"Livsh\u00e4ndelse kategorier","personalization_life_event_category_travel_experiences":"Resor & upplevelser","personalization_life_event_category_work_education":"Arbete & utbildning","personalization_life_event_type_achievement_or_award":"Prestation eller bel\u00f6ning","personalization_life_event_type_add_button":"L\u00e4gg till en ny livsh\u00e4ndelstyp","personalization_life_event_type_anniversary":"\u00c5rsdag","personalization_life_event_type_bought_a_home":"K\u00f6pte hus","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"\u00c4ndrad trosuppfattning","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"Slut p\u00e5 relationen","personalization_life_event_type_engagement":"F\u00f6rlovning","personalization_life_event_type_expecting_a_baby":"V\u00e4ntar barn","personalization_life_event_type_first_kiss":"F\u00f6rsta kyssen","personalization_life_event_type_first_met":"F\u00f6rsta m\u00f6te","personalization_life_event_type_first_word":"F\u00f6rsta ordet","personalization_life_event_type_holidays":"Semester","personalization_life_event_type_home_improvement":"F\u00f6rb\u00e4ttring av hemmet","personalization_life_event_type_loss_of_a_loved_one":"Bortg\u00e5ng av n\u00e4rst\u00e5ende","personalization_life_event_type_marriage":"\u00c4ktenskap","personalization_life_event_type_military_service":"Milit\u00e4r tj\u00e4nst","personalization_life_event_type_modal_add":"L\u00e4gg till en ny livsh\u00e4ndelstyp","personalization_life_event_type_modal_delete":"Ta bort en livsh\u00e4ndelstyp","personalization_life_event_type_modal_delete_desc":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna livsh\u00e4ndelstyp? Livsh\u00e4ndelser som tillh\u00f6r denna typ kommer att raderas genom att utf\u00f6ra denna \u00e5tg\u00e4rd.","personalization_life_event_type_modal_delete_error":"Vi kan inte hitta denna typ av h\u00e4ndelser i livet.","personalization_life_event_type_modal_edit":"Redigera en livsh\u00e4ndelsetyp","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Flyttad","personalization_life_event_type_new_child":"Nytt barn","personalization_life_event_type_new_eating_habits":"Nya matvanor","personalization_life_event_type_new_family_member":"Ny familjemedlem","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"Nytt jobb","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"Ny licens","personalization_life_event_type_new_pet":"Nytt husdjur","personalization_life_event_type_new_relationship":"Ny relation","personalization_life_event_type_new_roommate":"Ny rumskompis","personalization_life_event_type_new_school":"Ny skola","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"Nytt fordon","personalization_life_event_type_overcame_an_illness":"\u00d6vervann en sjukdom","personalization_life_event_type_published_book_or_paper":"Publicerat en bok eller ett papper","personalization_life_event_type_quit_a_habit":"Avsluta en vana","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Pensionering","personalization_life_event_type_study_abroad":"Studera utomlands","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tatuering eller piercingar","personalization_life_event_type_travel":"Resor","personalization_life_event_type_volunteer_work":"Volont\u00e4rarbete","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Viktminskning","personalization_live_event_category_table_actions":"\u00c5tg\u00e4rder","personalization_live_event_category_table_name":"Namn","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"\u00c4ndringen har sparats","personalization_module_title":"Funktioner","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} dag f\u00f6re|{count} dagar f\u00f6re","personalization_reminder_rule_save":"\u00c4ndringen har sparats","personalization_reminder_rule_title":"P\u00e5minnelse regler","personalization_tab_title":"Anpassa ditt konto","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Kopiera till Urklipp","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"Du kan anv\u00e4nda varje \u00e5terst\u00e4llningskod en g\u00e5ng.","recovery_help_intro":"Detta \u00e4r dina \u00e5terst\u00e4llningskoder:","recovery_show":"H\u00e4mta \u00e5terst\u00e4llningskoder","recovery_title":"\u00c5terst\u00e4llningskoder","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"\u00c5terst\u00e4ll konto","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"\u00c5terst\u00e4ll ditt konto","save":"Uppdatera preferenser","security_help":"\u00c4ndra s\u00e4kerhetsfr\u00e5gor f\u00f6r ditt konto.","security_title":"S\u00e4kerhet","settings_success":"Inst\u00e4llningar uppdaterades!","sidebar_personalization":"Personalisering","sidebar_settings":"Kontoinst\u00e4llningar","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Granskningsloggar","sidebar_settings_dav":"DAV resurser","sidebar_settings_export":"Exportera","sidebar_settings_import":"Importera data","sidebar_settings_security":"S\u00e4kerhet","sidebar_settings_storage":"Lagring","sidebar_settings_subscriptions":"Prenumeration","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Anv\u00e4ndare","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"H\u00e4r kan du se alla dokument och foton som laddats upp om dina kontakter.","storage_title":"Lagringsutrymme","storage_upgrade_notice":"Uppgradera ditt konto f\u00f6r att kunna ladda upp dokument och foton.","stripe_error_api_connection":"N\u00e4tverkskommunikation med Stripe misslyckades. F\u00f6rs\u00f6k igen senare.","stripe_error_authentication":"Fel autentisering med Stripe","stripe_error_card":"Ditt kort avvisades. Avvisa meddelande \u00e4r: :message","stripe_error_invalid_request":"Ogiltiga parametrar. F\u00f6rs\u00f6k igen senare.","stripe_error_rate_limit":"F\u00f6r m\u00e5nga f\u00f6rfr\u00e5gningar med Stripe just nu. F\u00f6rs\u00f6k igen senare.","subscriptions_account_cancel":"Du kan avbryta prenumerationen<\/a> n\u00e4r som helst.","subscriptions_account_confirm_payment":"Din betalning \u00e4r f\u00f6r n\u00e4rvarande ofullst\u00e4ndig, v\u00e4nligen bekr\u00e4fta din betalning<\/a>.","subscriptions_account_current_paid_plan":"Du \u00e4r p\u00e5 :name plan. Tack s\u00e5 mycket f\u00f6r att vara en prenumerant.","subscriptions_account_current_plan":"Din nuvarande plan","subscriptions_account_free_plan":"Du \u00e4r p\u00e5 den fria planen.","subscriptions_account_free_plan_benefits_import_data_vcard":"Importera dina kontakter med vCard","subscriptions_account_free_plan_benefits_reminders":"P\u00e5minnelse via e-post","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Obegr\u00e4nsat antal anv\u00e4ndare","subscriptions_account_free_plan_upgrade":"Du kan uppgradera ditt konto till :name plan, vilket kostar $:price per m\u00e5nad. H\u00e4r \u00e4r f\u00f6rdelarna:","subscriptions_account_invoices":"Fakturor","subscriptions_account_invoices_download":"H\u00e4mta","subscriptions_account_invoices_subscription":"Prenumeration fr\u00e5n :startDate till :endDate","subscriptions_account_next_billing":"Din prenumeration f\u00f6rnyas automatiskt den :date<\/strong>.","subscriptions_account_payment":"Vilket betalningsalternativ passar dig b\u00e4st?","subscriptions_account_upgrade":"Uppgradera ditt konto","subscriptions_account_upgrade_choice":"V\u00e4lj en plan nedan och g\u00e5 \u00f6ver :customers personer som uppgraderat sin Monica.","subscriptions_account_upgrade_title":"Uppgradera Monica idag och ha mer meningsfulla relationer.","subscriptions_back":"Tillbaka till inst\u00e4llningar","subscriptions_downgrade_cta":"Nedgradera","subscriptions_downgrade_limitations":"Den fria planen har begr\u00e4nsningar. F\u00f6r att kunna nedgradera m\u00e5ste du klara checklistan nedan:","subscriptions_downgrade_rule_contacts":"Du f\u00e5r inte ha fler \u00e4n :number aktiva kontakter","subscriptions_downgrade_rule_contacts_constraint":"Du har f\u00f6r n\u00e4rvarande 1 kontakt<\/a>.|Du har :count kontakter<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"Du m\u00e5ste ha endast 1 anv\u00e4ndare p\u00e5 ditt konto","subscriptions_downgrade_rule_users_constraint":"Du har f\u00f6r n\u00e4rvarande 1 anv\u00e4ndare<\/a> p\u00e5 ditt konto.|Du har :count anv\u00e4ndare<\/a> p\u00e5 ditt konto.","subscriptions_downgrade_success":"Du \u00e4r tillbaka till den fria planen!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Nedgradera ditt konto till den kostnadsfria planen","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"Vad h\u00e4nder om jag \u00e4ndrar mig?","subscriptions_help_discounts_desc":"Vi g\u00f6r! Monica \u00e4r gratis f\u00f6r studenter, och gratis f\u00f6r ideella organisationer och v\u00e4lg\u00f6renhetsorganisationer. Kontakta bara supporten<\/a> med ett bevis p\u00e5 din status s\u00e5 till\u00e4mpar vi denna speciella status p\u00e5 ditt konto.","subscriptions_help_discounts_title":"Har du rabatter f\u00f6r ideella organisationer och utbildning?","subscriptions_help_limits_plan":"Ja. Fria planer l\u00e5ter dig hantera :number kontakter.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"Vad \u00e4r ett projekt med \u00f6ppen k\u00e4llkod?","subscriptions_help_title":"Ytterligare detaljer som du kan vara nyfiken p\u00e5","subscriptions_payment_cancelled":"Denna betalning avbr\u00f6ts.","subscriptions_payment_cancelled_title":"Betalning avbruten","subscriptions_payment_confirm_information":"Extra bekr\u00e4ftelse kr\u00e4vs f\u00f6r att behandla din betalning. V\u00e4nligen bekr\u00e4fta din betalning genom att fylla i dina betalningsuppgifter nedan.","subscriptions_payment_confirm_title":"Bekr\u00e4fta din betalning med :amount","subscriptions_payment_error_name":"Ange ditt namn.","subscriptions_payment_succeeded":"Denna betalning har redan bekr\u00e4ftats.","subscriptions_payment_succeeded_title":"Betalning lyckad","subscriptions_payment_success":"Betalningen var framg\u00e5ngsrik.","subscriptions_pdf_title":"Ditt :name m\u00e5natliga abonnemang","subscriptions_plan_choose":"V\u00e4lj denna plan","subscriptions_plan_include1":"Inkluderat med din uppgradering:","subscriptions_plan_include2":"Obegr\u00e4nsat antal kontakter \u2022 Obegr\u00e4nsat antal anv\u00e4ndare \u2022 P\u00e5minnelser via e-post \u2022 Importera med vCard \u2022 Anpassning av kontaktbladet","subscriptions_plan_include3":"100% av vinsten g\u00e5r utvecklingen av detta stora open source-projekt.","subscriptions_plan_month_bonus":"Ingen bindningstid","subscriptions_plan_month_cost":"5$\/m\u00e5nad","subscriptions_plan_month_title":"Betala m\u00e5nadsvis","subscriptions_plan_year_bonus":"Du beh\u00f6ver inte oroa dig i ett helt \u00e5r","subscriptions_plan_year_cost":"45$\/\u00e5r","subscriptions_plan_year_cost_save":"du sparar 25%","subscriptions_plan_year_title":"Betala \u00e5rligen","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"Betalningen hanteras av Stripe<\/a>. Ingen kortinformation ber\u00f6r v\u00e5r server.","subscriptions_upgrade_choose":"Du valde :plan plan.","subscriptions_upgrade_credit":"Kortuppgifter","subscriptions_upgrade_infos":"Vi kunde inte vara lyckligare. Ange din betalningsinformation nedan.","subscriptions_upgrade_name":"Namn p\u00e5 kort","subscriptions_upgrade_submit":"Betala {amount}","subscriptions_upgrade_success":"Tack! Du prenumererar nu.","subscriptions_upgrade_thanks":"V\u00e4lkommen till gemenskapen av m\u00e4nniskor som f\u00f6rs\u00f6ker g\u00f6ra v\u00e4rlden till en b\u00e4ttre plats.","subscriptions_upgrade_title":"Uppgradera ditt konto","subscriptions_upgrade_zip":"Postnummer","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Taggar \u00e4r ett bra s\u00e4tt att kategorisera dina kontakter.","tags_list_contact_number":"1 kontakt|:count kontakter","tags_list_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort taggen? Inga kontakter kommer att tas bort, bara taggen.","tags_list_delete_success":"Taggen har tagits bort","tags_list_description":"Du kan organisera dina kontakter genom att konfigurera taggar. Taggar fungerar som mappar, men du kan l\u00e4gga till fler \u00e4n en tagg till en kontakt. F\u00f6r att l\u00e4gga till en ny tagg, l\u00e4gg till den p\u00e5 sj\u00e4lva kontakten.","tags_list_title":"Taggar","temperature_scale":"Temperaturomr\u00e5de","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Tidszon","title_general":"Allm\u00e4n information","title_i18n":"Internationella inst\u00e4llningar","title_layout":"Layout","users_accept_title":"Acceptera inbjudan och skapa ett nytt konto","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Bjud in anv\u00e4ndare via e-post","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Ange e-post f\u00f6r den person du vill bjuda in","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Vill du bjuda in n\u00e5gon annan?","users_blank_cta":"Bjud in n\u00e5gon","users_blank_description":"Denna person kommer att ha samma \u00e5tkomst som du har, och kommer att kunna l\u00e4gga till, redigera eller ta bort kontaktuppgifter.","users_blank_title":"Du \u00e4r den enda som har tillg\u00e5ng till detta konto.","users_error_already_invited":"Du har redan bjudit in den h\u00e4r anv\u00e4ndaren. V\u00e4lj en annan e-postadress.","users_error_email_already_taken":"Denna e-postadress \u00e4r redan upptagen. V\u00e4lj en annan","users_error_email_not_similar":"Detta \u00e4r inte e-postmeddelandet f\u00f6r den person som har bjudit in dig.","users_error_please_confirm":"Bekr\u00e4fta att du vill bjuda in denna anv\u00e4ndare innan du forts\u00e4tter med inbjudan","users_invitation_deleted_confirmation_message":"Inbjudan har tagits bort","users_invitation_need_subscription":"F\u00f6r att l\u00e4gga till fler anv\u00e4ndare kr\u00e4vs en prenumeration.","users_invitations_delete_confirmation":"\u00c4r du s\u00e4ker du vill ta bort denna inbjudan?","users_list_add_user":"Bjud in en ny anv\u00e4ndare","users_list_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att ta bort denna anv\u00e4ndare fr\u00e5n ditt konto?","users_list_invitations_explanation":"Nedan \u00e4r de personer som du har bjudit in till Monica som samarbetspartner.","users_list_invitations_invited_by":"inbjuden av :name","users_list_invitations_sent_date":"skickad :date","users_list_invitations_title":"V\u00e4ntande inbjudningar","users_list_title":"Anv\u00e4ndare med \u00e5tkomst till ditt konto","users_list_you":"Det \u00e4r du","webauthn_buttonAdvise":"Om din s\u00e4kerhetsnyckel har en knapp trycker du p\u00e5 den.","webauthn_delete_confirmation":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna nyckel?","webauthn_delete_success":"Nyckel borttagen","webauthn_enable_description":"L\u00e4gg till en ny s\u00e4kerhetsnyckel","webauthn_error_already_used":"Denna nyckel \u00e4r redan registrerad. Det \u00e4r inte n\u00f6dv\u00e4ndigt att registrera den igen.","webauthn_error_not_allowed":"Operationen misslyckad, antingen v\u00e4ntade du f\u00f6r l\u00e4nge eller s\u00e5 var det inte till\u00e5tet.","webauthn_insertKey":"Infoga din s\u00e4kerhetsnyckel.","webauthn_key_name":"Nyckelnamn:","webauthn_key_name_help":"Ge din nyckel ett namn.","webauthn_last_use":"Senaste anv\u00e4ndning: {timestamp}","webauthn_noButtonAdvise":"Om det inte g\u00f6r det, ta bort det och s\u00e4tt in det igen.","webauthn_not_secured":"WebAuthn st\u00f6der endast s\u00e4kra anslutningar. Ladda denna sida med https schema.","webauthn_not_supported":"Din webbl\u00e4sare st\u00f6der f\u00f6r n\u00e4rvarande inte WebAuthn.","webauthn_success":"Din nyckel \u00e4r uppt\u00e4ckt och validerad.","webauthn_title":"S\u00e4kerhetsnyckel \u2014 WebAuthn protokoll"},"validation":{"accepted":":attribute m\u00e5ste accepteras.","active_url":":attribute \u00e4r inte en giltig URL.","after":":attribute m\u00e5ste vara ett datum efter :date.","after_or_equal":":attribute m\u00e5ste vara ett datum efter eller lika med :date.","alpha":":attribute f\u00e5r endast inneh\u00e5lla bokst\u00e4ver.","alpha_dash":":attribute f\u00e5r endast inneh\u00e5lla bokst\u00e4ver, siffror, bindestreck och understreck.","alpha_num":":attribute f\u00e5r endast inneh\u00e5lla bokst\u00e4ver och siffror.","array":":attribute m\u00e5ste vara en lista med v\u00e4rden.","attributes":[],"before":":attribute m\u00e5ste vara ett datum f\u00f6re :date.","before_or_equal":":attribute m\u00e5ste vara ett datum f\u00f6re eller lika med :date.","between":{"array":":attribute m\u00e5ste vara mellan :min och :max f\u00f6rem\u00e5l.","file":":attribute m\u00e5ste vara mellan :min och :max kilobyte.","numeric":":attribute m\u00e5ste vara mellan :min och :max.","string":":attribute m\u00e5ste vara mellan :min och :max tecken."},"boolean":":attribute m\u00e5ste vara sant eller falskt.","confirmed":":attribute bekr\u00e4ftelsen matchar inte.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute \u00e4r inte ett giltigt datum.","date_equals":":attribute m\u00e5ste vara ett datum efter :date.","date_format":":attribute matchar inte formatet :format.","different":":attribute och :other m\u00e5ste vara olika.","digits":":attributet m\u00e5ste vara :digits siffror.","digits_between":":attribute m\u00e5ste vara mellan :min och :max siffror.","dimensions":":attribute har ogiltiga bilddimensioner.","distinct":"F\u00e4ltet :attribute har ett dubbelt v\u00e4rde.","email":":attribute m\u00e5ste vara en giltig e-postadress.","ends_with":":attribute m\u00e5ste sluta med n\u00e5got av f\u00f6ljande: :values.","exists":"Valt v\u00e4rde f\u00f6r :attribute \u00e4r ogiltigt.","file":":attribute m\u00e5ste vara en fil.","filled":":attribute f\u00e4ltet m\u00e5ste ha ett v\u00e4rde.","gt":{"array":":attribute m\u00e5ste ha mer \u00e4n :value objekt.","file":":attribute m\u00e5ste vara st\u00f6rre \u00e4n :value kilobytes.","numeric":":attribute m\u00e5ste vara st\u00f6rre \u00e4n :value.","string":":attribute m\u00e5ste vara st\u00f6rre \u00e4n :value tecken."},"gte":{"array":":attribute m\u00e5ste ha :value objekt eller mer.","file":":attribute m\u00e5ste vara st\u00f6rre \u00e4n eller lika med :value kilobytes.","numeric":":attribute m\u00e5ste vara st\u00f6rre \u00e4n eller lika :value.","string":":attribute m\u00e5ste vara st\u00f6rre \u00e4n eller lika med :value tecken."},"image":":attribute m\u00e5ste vara en bild.","in":"Valt v\u00e4rde f\u00f6r :attribute \u00e4r ogiltigt.","in_array":":attribute f\u00e4ltet existerar inte i :other.","integer":":attribute m\u00e5ste vara ett heltal.","ip":":attribute m\u00e5ste vara en giltig IP-adress.","ipv4":":attribute m\u00e5ste vara en giltig IPv4-adress.","ipv6":":attribute m\u00e5ste vara en giltig IPv6-adress.","json":":attribute m\u00e5ste vara en giltig JSON-str\u00e4ng.","lt":{"array":":attribute m\u00e5ste ha mindre \u00e4n :value objekt.","file":":attribute m\u00e5ste vara mindre \u00e4n :value kilobytes.","numeric":":attribute m\u00e5ste vara mindre \u00e4n :value.","string":":attribute m\u00e5ste vara mindre \u00e4n :value tecken."},"lte":{"array":":attribute f\u00e5r inte ha mer \u00e4n :value objekt.","file":":attribute m\u00e5ste vara mindre \u00e4n eller lika med :value kilobytes.","numeric":":attribute m\u00e5ste vara mindre \u00e4n eller lika :value.","string":":attribute m\u00e5ste vara mindre \u00e4n eller lika med :value tecken."},"max":{"array":":attribute f\u00e5r inte ha mer \u00e4n :max objekt.","file":":attribute f\u00e5r inte vara st\u00f6rre \u00e4n :max kilobyte.","numeric":":attribute f\u00e5r inte vara st\u00f6rre \u00e4n :max.","string":":attribute f\u00e5r inte vara st\u00f6rre \u00e4n :max tecken."},"mimes":":attribute m\u00e5ste vara en fil av typ: :values.","mimetypes":":attribute m\u00e5ste vara en fil av typ: :values.","min":{"array":":attribute m\u00e5ste inneh\u00e5lla minst :min objekt.","file":":attribute m\u00e5ste vara minst :min kilobyte.","numeric":":attribute m\u00e5ste vara minst :min.","string":":attribute m\u00e5ste inneh\u00e5lla minst :min tecken."},"not_in":"Det valda :attribute \u00e4r ogiltigt.","not_regex":":attribute format \u00e4r ogiltigt.","numeric":":attribute m\u00e5ste vara ett tal.","password":"L\u00f6senordet \u00e4r felaktigt.","present":"F\u00e4ltet :attribute m\u00e5ste vara n\u00e4rvarande.","regex":":attribute format \u00e4r ogiltigt.","required":"F\u00e4ltet :attribute \u00e4r obligatoriskt.","required_if":"F\u00e4ltet :attribute \u00e4r obligatoriskt n\u00e4r :other \u00e4r :value.","required_unless":":attribute \u00e4r obligatoriskt om inte :other finns i :values.","required_with":":attribute f\u00e4ltet \u00e4r obligatoriskt n\u00e4r :values \u00e4r angivet.","required_with_all":"F\u00e4ltet :attribute \u00e4r obligatoriskt n\u00e4r :values \u00e4r presenterade.","required_without":"F\u00e4ltet :attribute \u00e4r obligatoriskt n\u00e4r :values inte visas.","required_without_all":":attribute \u00e4r obligatirskt n\u00e4r ingen av :values finns.","same":":attribute och :other m\u00e5ste matcha.","size":{"array":":attribute m\u00e5ste inneh\u00e5lla :size objekt.","file":":attribute m\u00e5ste vara :size kilobyte.","numeric":":attribute m\u00e5ste vara :size.","string":":attribute m\u00e5ste vara :size tecken."},"starts_with":":attribute m\u00e5ste b\u00f6rja med n\u00e5got av f\u00f6ljande: :values.","string":":attribute m\u00e5ste vara en str\u00e4ng.","timezone":":attribute m\u00e5ste vara en giltig zon.","unique":":attribute har redan tagits.","uploaded":":attribute kunde inte laddas upp.","url":":attribute format \u00e4r ogiltigt.","uuid":":attribute m\u00e5ste vara ett giltigt UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/tr.json b/public/js/langs/tr.json deleted file mode 100644 index 06a240db663..00000000000 --- a/public/js/langs/tr.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Ekle","another_day":"ba\u015fka bir g\u00fcn","application_description":"Monica sevdiklerinizle, arkada\u015flar\u0131n\u0131zla ve ailenizle etkile\u015fimlerinizi y\u00f6netebilece\u011finiz bir ara\u00e7t\u0131r.","application_og_title":"Sevdiklerinizle daha iyi ili\u015fkiler kurun. Arkada\u015flar\u0131n\u0131z ve aileniz i\u00e7in \u00fccretsiz Online CRM.","application_title":"Monica - ki\u015fisel ili\u015fki y\u00f6neticisi","back":"Geri","breadcrumb_add_note":"Bir not ekle","breadcrumb_add_significant_other":"Sevgili ekle","breadcrumb_api":"API","breadcrumb_archived_contacts":"Ar\u015fivli ki\u015filer","breadcrumb_dashboard":"Ba\u015flang\u0131\u00e7","breadcrumb_dav":"DAV Kaynaklar\u0131","breadcrumb_edit_introductions":"Nas\u0131l tan\u0131\u015ft\u0131n\u0131z","breadcrumb_edit_note":"Bir notu d\u00fczenle","breadcrumb_edit_significant_other":"Sevgiliyi d\u00fczenle","breadcrumb_journal":"G\u00fcnl\u00fck","breadcrumb_list_contacts":"Ki\u015fi Listesi","breadcrumb_profile":":name ki\u015fisinin Profili","breadcrumb_settings":"Ayarlar","breadcrumb_settings_export":"D\u0131\u015fa aktar","breadcrumb_settings_import":"\u0130\u00e7e aktar","breadcrumb_settings_import_report":"\u0130\u00e7e aktar\u0131m raporu","breadcrumb_settings_import_upload":"Y\u00fckle","breadcrumb_settings_personalization":"Ki\u015fiselle\u015ftirme","breadcrumb_settings_security":"G\u00fcvenlik","breadcrumb_settings_security_2fa":"\u0130ki A\u015famal\u0131 Do\u011frulama","breadcrumb_settings_subscriptions":"Abonelik","breadcrumb_settings_tags":"Etiketler","breadcrumb_settings_users":"Kullan\u0131c\u0131lar","breadcrumb_settings_users_add":"Bir kullan\u0131c\u0131 ekle","cancel":"Vazge\u00e7","close":"Kapat","compliance_desc":"Kullan\u0131m Ko\u015fullar\u0131m\u0131z\u0131<\/a> ve Gizlilik Politikam\u0131z\u0131<\/a> de\u011fi\u015ftirdik. Yasalara g\u00f6re, sizden hesab\u0131n\u0131z\u0131 kullanmaya devam edebilmeniz i\u00e7in onlar\u0131 g\u00f6zden ge\u00e7irmenizi ve kabul etmenizi istemek zorunday\u0131z.","compliance_desc_end":"Verileriniz veya hesab\u0131n\u0131zla ilgili k\u00f6t\u00fc bir \u015fey yapm\u0131yoruz ve asla yapmayaca\u011f\u0131z.","compliance_terms":"Yeni \u015fartlar\u0131 ve gizlilik politikas\u0131n\u0131 kabul et","compliance_title":"Rahats\u0131z etti\u011fimiz i\u00e7in \u00fczg\u00fcn\u00fcz.","confirm":"Do\u011frula","contact_list_avatar":"Profil Resmi","contact_list_description":"A\u00e7\u0131klama","contact_list_name":"\u0130leti\u015fim","copy":"Kopyala","create":"Olu\u015ftur","date":"Tarih","dav_birthdays":"Do\u011fum G\u00fcnleri","dav_birthdays_description":":name ki\u015fisinin ki\u015filerinin do\u011fum g\u00fcnleri","dav_contacts":"Ki\u015filer","dav_contacts_description":":name ki\u015fisinin ki\u015fileri","dav_tasks":"G\u00f6revler","dav_tasks_description":":name ki\u015fisinin g\u00f6revleri","default_save_success":"Veri kaydedildi.","delete":"Sil","delete_confirm":"Emin misiniz?","done":"Bitti","download":"\u0130ndir","edit":"D\u00fczenle","emotion_adoration":"Tapma","emotion_affection":"\u0130lgi","emotion_aggravation":"\u00c7ileden \u00e7\u0131kma","emotion_agitation":"K\u0131\u015fk\u0131rtma","emotion_agony":"Ac\u0131 \u00e7ekme","emotion_alarm":"Alarm","emotion_alienation":"Yabanc\u0131la\u015fma","emotion_amazement":"\u015ea\u015fk\u0131nl\u0131k","emotion_amusement":"E\u011flence","emotion_anger":"\u00d6fke","emotion_anguish":"Izd\u0131rap","emotion_annoyance":"Rahats\u0131zl\u0131k","emotion_anxiety":"Kayg\u0131","emotion_apprehension":"Kayg\u0131","emotion_arousal":"Uyar\u0131lma","emotion_astonishment":"Hayret","emotion_attraction":"Cazibe","emotion_bitterness":"Keskinlik","emotion_bliss":"Saadet","emotion_caring":"\u00d6nemseme","emotion_cheerfulness":"Ne\u015fe","emotion_compassion":"\u015eefkat","emotion_contempt":"K\u00fc\u00e7\u00fcmseme","emotion_contentment":"Ho\u015fnutluk","emotion_defeat":"Yenilgi","emotion_dejection":"Keyifsizlik","emotion_delight":"Keyif","emotion_depression":"Depresyon","emotion_desire":"Arzu","emotion_despair":"\u00dcmitsizlik","emotion_disappointment":"Hayal k\u0131r\u0131kl\u0131\u011f\u0131","emotion_disgust":"\u0130\u011frenme","emotion_dislike":"Be\u011fenmeme","emotion_dismay":"Deh\u015fet","emotion_displeasure":"Ho\u015fnutsuzluk","emotion_distress":"S\u0131k\u0131nt\u0131","emotion_dread":"Korku","emotion_eagerness":"Heves","emotion_ecstasy":"Zevk","emotion_elation":"K\u0131van\u00e7","emotion_embarrassment":"Mah\u00e7ubiyet","emotion_enjoyment":"Ho\u015fnutluk","emotion_enthrallment":"B\u00fcy\u00fclenme","emotion_enthusiasm":"Heves","emotion_envy":"\u0130mrenme","emotion_euphoria":"\u00d6fori","emotion_exasperation":"\u00c7ileden \u00e7\u0131kma","emotion_excitement":"Heyecan","emotion_exhilaration":"Ne\u015fe","emotion_fear":"Korku","emotion_ferocity":"Vah\u015filik","emotion_fondness":"D\u00fc\u015fk\u00fcnl\u00fck","emotion_fright":"Korku","emotion_frustration":"D\u00fc\u015f k\u0131r\u0131kl\u0131\u011f\u0131","emotion_fury":"\u00d6fke","emotion_gaiety":"Sevin\u00e7","emotion_gladness":"Memnuniyet","emotion_glee":"Keyif","emotion_gloom":"Kasvet","emotion_glumness":"As\u0131k suratl\u0131l\u0131k","emotion_grief":"Keder","emotion_grouchiness":"Huysuzluk","emotion_grumpiness":"Somurtkanl\u0131k","emotion_guilt":"Su\u00e7luluk","emotion_happiness":"Mutluluk","emotion_hate":"Nefret","emotion_homesickness":"S\u0131la hasreti","emotion_hope":"Umut","emotion_hopelessness":"Umutsuzluk","emotion_horror":"Korku","emotion_hostility":"D\u00fc\u015fmanl\u0131k","emotion_humiliation":"A\u015fa\u011f\u0131lanma","emotion_hurt":"Ac\u0131","emotion_hysteria":"Histeri","emotion_infatuation":"Sevdalanma","emotion_insecurity":"G\u00fcvensizlik","emotion_insult":"Hakaret","emotion_irritation":"Rahats\u0131zl\u0131k","emotion_isolation":"\u0130zolasyon","emotion_jealousy":"K\u0131skan\u00e7l\u0131k","emotion_jolliness":"Ne\u015fe","emotion_joviality":"Ne\u015fe","emotion_joy":"Ne\u015fe","emotion_jubilation":"Co\u015fku","emotion_liking":"Be\u011feni","emotion_loathing":"\u0130\u011frenme","emotion_loneliness":"Yaln\u0131zl\u0131k","emotion_longing":"Hasret","emotion_love":"A\u015fk","emotion_lust":"\u0130htiras","emotion_melancholy":"Melankoli","emotion_misery":"Sefalet","emotion_mortification":"K\u00fc\u00e7\u00fck d\u00fc\u015fme","emotion_neglect":"\u0130hmal","emotion_nervousness":"Tedirginlik","emotion_optimism":"\u0130yimserlik","emotion_outrage":"Hakaret","emotion_panic":"Panik","emotion_passion":"Tutku","emotion_pity":"Ac\u0131ma","emotion_pleasure":"Zevk","emotion_pride":"Onur","emotion_primary_anger":"\u00d6fke","emotion_primary_fear":"Korku","emotion_primary_joy":"Sevin\u00e7","emotion_primary_love":"A\u015fk","emotion_primary_sadness":"\u00dcz\u00fcnt\u00fc","emotion_primary_surprise":"S\u00fcrpriz","emotion_rage":"Hiddet","emotion_rapture":"Kendinden ge\u00e7me","emotion_regret":"Pi\u015fman olma","emotion_rejection":"Reddedilme","emotion_relief":"Rahatlama","emotion_remorse":"Vicdan azab\u0131","emotion_resentment":"G\u00fccenme","emotion_revulsion":"Uzakla\u015fma","emotion_sadness":"\u00dcz\u00fcnt\u00fc","emotion_satisfaction":"Tatmin olma","emotion_scorn":"A\u015fa\u011f\u0131lama","emotion_secondary_affection":"\u0130lgi","emotion_secondary_cheerfulness":"Ne\u015fe","emotion_secondary_contentment":"Ho\u015fnutluk","emotion_secondary_disappointment":"Hayal K\u0131r\u0131kl\u0131\u011f\u0131","emotion_secondary_disgust":"\u0130\u011frenti","emotion_secondary_enthrallment":"B\u00fcy\u00fclenme","emotion_secondary_envy":"\u0130mrenme","emotion_secondary_exasperation":"\u00c7ileden \u00e7\u0131kma","emotion_secondary_horror":"Korku","emotion_secondary_irritation":"Rahats\u0131zl\u0131k","emotion_secondary_longing":"Hasret","emotion_secondary_lust":"Arzu","emotion_secondary_neglect":"\u0130hmal","emotion_secondary_nervousness":"Tedirginlik","emotion_secondary_optimism":"\u0130yimserlik","emotion_secondary_pride":"Onur","emotion_secondary_rage":"Hiddet","emotion_secondary_relief":"Rahatlama","emotion_secondary_sadness":"\u00dcz\u00fcnt\u00fc","emotion_secondary_shame":"Utanma","emotion_secondary_suffering":"Ac\u0131 \u00e7ekme","emotion_secondary_surprise":"S\u00fcrpriz","emotion_secondary_sympathy":"Sempati","emotion_secondary_zest":"Keyif","emotion_sentimentality":"Duyarl\u0131l\u0131k","emotion_shame":"Utanma","emotion_shock":"\u015eok","emotion_sorrow":"\u00dcz\u00fcnt\u00fc","emotion_spite":"Nispet","emotion_suffering":"Ac\u0131 \u00e7ekme","emotion_surprise":"S\u00fcrpriz","emotion_sympathy":"Sempati","emotion_tenderness":"Hassasiyet","emotion_tenseness":"Gerginlik","emotion_terror":"Deh\u015fet","emotion_thrill":"Heyecan","emotion_uneasiness":"Huzursuzluk","emotion_unhappiness":"Mutsuzluk","emotion_vengefulness":"\u0130ntikamc\u0131l\u0131k","emotion_woe":"Gam","emotion_worry":"Endi\u015fe","emotion_wrath":"Gazap","emotion_zeal":"Gayret","emotion_zest":"Keyif","error_help":"K\u0131sa s\u00fcre sonra geri d\u00f6nece\u011fiz.","error_id":"Hata kimli\u011fi: :id","error_maintenance":"Bak\u0131m devam ediyor. Birazdan geri d\u00f6nece\u011fiz.","error_no_term":"Bu olay i\u00e7in hen\u00fcz bir politika yok.","error_save":"Verileri kaydetmeye \u00e7al\u0131\u015f\u0131rken bir hata olu\u015ftu.","error_title":"Aman\u0131n! Bir \u015feyler ters gitti.","error_try_again":"Bir \u015feyler ters gitti. L\u00fctfen tekrar deneyin.","error_twitter":"Yeniden \u00e7al\u0131\u015f\u0131r oldu\u011funda haberdar olmak i\u00e7in Twitter hesab\u0131m\u0131z\u0131<\/a> takip edin.","error_unauthorized":"Bu kayna\u011f\u0131 d\u00fczenlemeye yetkiniz yok.","error_unavailable":"Hizmet kullan\u0131lam\u0131yor","error_user_account":"Kullan\u0131c\u0131 belirli bir role sahip de\u011fil.","file_selected":"Bir dosya se\u00e7ildi... {count} dosya se\u00e7ildi\u2026","filter":"Listeyi filtrele","footer_modal_version_release_away":"Mevcut olan son s\u00fcr\u00fcmden 1 s\u00fcr\u00fcm a\u015fa\u011f\u0131das\u0131n. Uygulaman\u0131 g\u00fcncellemelisin.|Mevcut olan son s\u00fcr\u00fcmden :number s\u00fcr\u00fcm a\u015fa\u011f\u0131das\u0131n. Uygulaman\u0131 g\u00fcncellemelisin.","footer_modal_version_whats_new":"Neler yeni","footer_new_version":"Monica'n\u0131n yeni s\u00fcr\u00fcm\u00fc mevcut","footer_newsletter":"Haber B\u00fclteni","footer_privacy":"Gizlilik politikas\u0131","footer_release":"S\u00fcr\u00fcm notlar\u0131","footer_remarks":"Yorumlar?","footer_send_email":"Bize e-posta g\u00f6nderin","footer_source_code":"Katk\u0131da bulun","footer_version":"S\u00fcr\u00fcm: :version","gender_female":"Kad\u0131n","gender_male":"Erkek","gender_no_gender":"Cinsiyetsiz","gender_none":"S\u00f6ylemek istemiyorum","go_back":"Geri d\u00f6n","header_changelog_link":"\u00dcr\u00fcn de\u011fi\u015fiklikleri","header_logout_link":"\u00c7\u0131k\u0131\u015f yap","header_settings_link":"Ayarlar","load_more":"Daha fazla","loading":"Y\u00fckleniyor\u2026","main_nav_activities":"Aktiviteler","main_nav_cta":"Ki\u015fi ekle","main_nav_dashboard":"Kontrol paneli","main_nav_family":"Ki\u015filer","main_nav_journal":"G\u00fcnl\u00fck","main_nav_tasks":"G\u00f6revler","markdown_description":"Metninizi g\u00fczel bir \u015fekilde bi\u00e7imlendirmek mi istiyorsunuz? Kal\u0131n, italik, listeler ve daha fazlas\u0131n\u0131 eklemek i\u00e7in Markdown deste\u011fimiz bulunmaktad\u0131r.","markdown_link":"Dok\u00fcmantasyonu oku","new":"yeni","no":"Hay\u0131r","percent_uploaded":"%{percent} y\u00fcklendi","relationship_type_bestfriend":"en iyi arkada\u015f","relationship_type_bestfriend_female":"en iyi arkada\u015f","relationship_type_bestfriend_female_with_name":":name ki\u015fisinin en iyi arkada\u015f\u0131","relationship_type_bestfriend_with_name":":name ki\u015fisinin en iyi arkada\u015f\u0131","relationship_type_boss":"patron","relationship_type_boss_female":"patron","relationship_type_boss_female_with_name":":name ki\u015fisinin patronu","relationship_type_boss_with_name":":name ki\u015fisinin patronu","relationship_type_child":"o\u011ful","relationship_type_child_female":"k\u0131z","relationship_type_child_female_with_name":":name ki\u015fisinin k\u0131z\u0131","relationship_type_child_with_name":":name ki\u015fisinin o\u011flu","relationship_type_colleague":"i\u015f arkada\u015f\u0131","relationship_type_colleague_female":"i\u015f arkada\u015f\u0131","relationship_type_colleague_female_with_name":":name ki\u015fisinin i\u015f arkada\u015f\u0131","relationship_type_colleague_with_name":":name ki\u015fisinin i\u015f arkada\u015f\u0131","relationship_type_cousin":"kuzen","relationship_type_cousin_female":"kuzen","relationship_type_cousin_female_with_name":":name ki\u015fisinin kuzeni","relationship_type_cousin_with_name":":name ki\u015fisinin kuzeni","relationship_type_date":"fl\u00f6rt","relationship_type_date_female":"fl\u00f6rt","relationship_type_date_female_with_name":":name ki\u015fisinin fl\u00f6rt\u00fc","relationship_type_date_with_name":":name ki\u015fisinin fl\u00f6rt\u00fc","relationship_type_ex":"eski erkek arkada\u015f","relationship_type_ex_female":"eski k\u0131z arkada\u015f","relationship_type_ex_female_with_name":":name adl\u0131 ki\u015finin eski k\u0131z arkada\u015f\u0131","relationship_type_ex_husband":"eski koca","relationship_type_ex_husband_female":"eski kar\u0131","relationship_type_ex_husband_female_with_name":":name ki\u015fisinin eski kar\u0131s\u0131","relationship_type_ex_husband_with_name":":name ki\u015fisinin eski kocas\u0131","relationship_type_ex_with_name":":name adl\u0131 ki\u015finin eski erkek arkada\u015f\u0131","relationship_type_friend":"arkada\u015f","relationship_type_friend_female":"arkada\u015f","relationship_type_friend_female_with_name":":name ki\u015fisinin arkada\u015f\u0131","relationship_type_friend_with_name":":name ki\u015fisinin arkada\u015f\u0131","relationship_type_godfather":"vaftiz babas\u0131","relationship_type_godfather_female":"vaftiz anas\u0131","relationship_type_godfather_female_with_name":":name ki\u015fisinin vaftiz anas\u0131","relationship_type_godfather_with_name":":name ki\u015fisinin vaftiz babas\u0131","relationship_type_godson":"vaftiz o\u011flu","relationship_type_godson_female":"vaftiz k\u0131z\u0131","relationship_type_godson_female_with_name":":name ki\u015fisinin vaftiz k\u0131z\u0131","relationship_type_godson_with_name":":name ki\u015fisinin vaftiz o\u011flu","relationship_type_grandchild":"torun","relationship_type_grandchild_female":"torun","relationship_type_grandchild_female_with_name":":name ki\u015fisinin torunu","relationship_type_grandchild_with_name":":name ki\u015fisinin torunu","relationship_type_grandparent":"b\u00fcy\u00fck ebeveyn","relationship_type_grandparent_female":"b\u00fcy\u00fck ebeveyn","relationship_type_grandparent_female_with_name":":name ki\u015fisinin b\u00fcy\u00fck annesi","relationship_type_grandparent_with_name":":name ki\u015fisinin b\u00fcy\u00fck babas\u0131","relationship_type_group_family":"Aile \u0130li\u015fkileri","relationship_type_group_friend":"Arkada\u015fl\u0131k \u0130li\u015fkileri","relationship_type_group_love":"A\u015fk \u0130li\u015fkileri","relationship_type_group_other":"Di\u011fer t\u00fcr ili\u015fkiler","relationship_type_group_work":"\u0130\u015f \u0130li\u015fkileri","relationship_type_inlovewith":"a\u015f\u0131k oldu\u011fu","relationship_type_inlovewith_female":"a\u015f\u0131k oldu\u011fu","relationship_type_inlovewith_female_with_name":":name ki\u015fisinin a\u015f\u0131k oldu\u011fu ki\u015fi","relationship_type_inlovewith_with_name":":name ki\u015fisinin a\u015f\u0131k oldu\u011fu ki\u015fi","relationship_type_lovedby":"gizli a\u015f\u0131k","relationship_type_lovedby_female":"gizli a\u015f\u0131k","relationship_type_lovedby_female_with_name":":name ki\u015fisinin gizli a\u015f\u0131\u011f\u0131","relationship_type_lovedby_with_name":":name ki\u015fisinin gizli a\u015f\u0131\u011f\u0131","relationship_type_lover":"a\u015f\u0131k","relationship_type_lover_female":"a\u015f\u0131k","relationship_type_lover_female_with_name":":name ki\u015fisinin a\u015f\u0131\u011f\u0131","relationship_type_lover_with_name":":name ki\u015fisinin a\u015f\u0131\u011f\u0131","relationship_type_mentor":"dan\u0131\u015fman","relationship_type_mentor_female":"dan\u0131\u015fman","relationship_type_mentor_female_with_name":":name ki\u015fisinin dan\u0131\u015fman\u0131","relationship_type_mentor_with_name":":name ki\u015fisinin dan\u0131\u015fman\u0131","relationship_type_nephew":"ye\u011fen","relationship_type_nephew_female":"ye\u011fen","relationship_type_nephew_female_with_name":":name ki\u015fisinin ye\u011feni","relationship_type_nephew_with_name":":name ki\u015fisinin ye\u011feni","relationship_type_parent":"baba","relationship_type_parent_female":"anne","relationship_type_parent_female_with_name":":name ki\u015fisinin annesi","relationship_type_parent_with_name":":name ki\u015fisinin babas\u0131","relationship_type_partner":"sevgili","relationship_type_partner_female":"sevgili","relationship_type_partner_female_with_name":":name ki\u015fisinin sevgilisi","relationship_type_partner_with_name":":name ki\u015fisinin sevgilisi","relationship_type_protege":"korudu\u011fu ki\u015fi","relationship_type_protege_female":"korudu\u011fu ki\u015fi","relationship_type_protege_female_with_name":":name ki\u015fisinin korudu\u011fu ki\u015fi","relationship_type_protege_with_name":":name ki\u015fisinin korudu\u011fu ki\u015fi","relationship_type_sibling":"erkek karde\u015f","relationship_type_sibling_female":"k\u0131z karde\u015f","relationship_type_sibling_female_with_name":":name ki\u015fisinin k\u0131z karde\u015fi","relationship_type_sibling_with_name":":name ki\u015fisinin erkek karde\u015fi","relationship_type_spouse":"e\u015f","relationship_type_spouse_female":"e\u015f","relationship_type_spouse_female_with_name":":name ki\u015fisinin e\u015fi","relationship_type_spouse_with_name":":name ki\u015fisinin e\u015fi","relationship_type_stepchild":"\u00fcvey o\u011ful","relationship_type_stepchild_female":"\u00fcvey k\u0131z","relationship_type_stepchild_female_with_name":":name adl\u0131 ki\u015finin \u00fcvey k\u0131z\u0131","relationship_type_stepchild_with_name":":name adl\u0131 ki\u015finin \u00fcvey o\u011flu","relationship_type_stepparent":"\u00fcvey baba","relationship_type_stepparent_female":"\u00fcvey anne","relationship_type_stepparent_female_with_name":":name adl\u0131 ki\u015finin \u00fcvey annesi","relationship_type_stepparent_with_name":":name adl\u0131 ki\u015finin \u00fcvey babas\u0131","relationship_type_subordinate":"alt\u0131nda \u00e7al\u0131\u015fan","relationship_type_subordinate_female":"alt\u0131nda \u00e7al\u0131\u015fan","relationship_type_subordinate_female_with_name":":name ki\u015fisinin alt\u0131nda \u00e7al\u0131\u015fan","relationship_type_subordinate_with_name":":name ki\u015fisinin alt\u0131nda \u00e7al\u0131\u015fan","relationship_type_uncle":"amca\/day\u0131","relationship_type_uncle_female":"hala\/teyze","relationship_type_uncle_female_with_name":":name ki\u015fisinin halas\u0131\/teyzesi","relationship_type_uncle_with_name":":name ki\u015fisinin amcas\u0131\/day\u0131s\u0131","remove":"Kald\u0131r","retry":"Tekrar dene","revoke":"Geri al","save":"Kaydet","save_close":"Kaydet ve kapat","today":"bug\u00fcn","type":"Tip","unknown":"Bilmiyorum","update":"G\u00fcncelle","upgrade":"Kilidi a\u00e7mak i\u00e7in y\u00fckselt","upload":"Y\u00fckle","verify":"Do\u011frula","weather_clear-day":"G\u00fcnd\u00fcz hava a\u00e7\u0131k","weather_clear-night":"Gece hava a\u00e7\u0131k","weather_cloudy":"Bulutlu","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"\u015eu anki hava durumu","weather_fog":"Sis","weather_partly-cloudy-day":"G\u00fcnd\u00fcz par\u00e7al\u0131 bulutlu","weather_partly-cloudy-night":"Gece par\u00e7al\u0131 bulutlu","weather_rain":"Ya\u011fmur","weather_sleet":"Karla kar\u0131\u015f\u0131k ya\u011fmur","weather_snow":"Kar","weather_wind":"R\u00fczgar","with":"ile","yes":"Evet","yesterday":"d\u00fcn","zoom":"Yak\u0131nla\u015ft\u0131r"},"auth":{"2fa_one_time_password":"\u0130ki ad\u0131ml\u0131 do\u011frulama kodu","2fa_otp_help":"\u0130ki a\u015famal\u0131 kimlik do\u011frulama mobil uygulaman\u0131z\u0131 a\u00e7\u0131n ve kodu kopyalay\u0131n","2fa_recuperation_code":"\u0130ki a\u015famal\u0131 do\u011frulama kodu ile girin","2fa_title":"\u0130ki Ad\u0131ml\u0131 Do\u011frulama","2fa_wrong_validation":"\u0130ki ad\u0131ml\u0131 do\u011frulamas\u0131 ba\u015far\u0131s\u0131z oldu.","back_homepage":"Ana sayfaya d\u00f6n","button_remember":"Beni Hat\u0131rla","change_language":"Dili :lang ile de\u011fi\u015ftir","change_language_title":"Dili de\u011fi\u015ftir:","confirmation_again":"E\u011fer e-posta adresinizi de\u011fi\u015ftirmek istiyorsan\u0131z buraya t\u0131klayabilirsiniz<\/a>.","confirmation_check":"Devam etmeden \u00f6nce l\u00fctfen do\u011frulama linki i\u00e7in e-postan\u0131z\u0131 kontrol edin.","confirmation_fresh":"E-posta adresinize yeni bir do\u011frulama linki g\u00f6nderildi.","confirmation_request_another":"E-postay\u0131 almad\u0131ysan\u0131z ba\u015fka bir tane istemek i\u00e7in buraya t\u0131klay\u0131n<\/a>.","confirmation_title":"E-posta adresinizi do\u011frulay\u0131n","create_account":"Kay\u0131t olarak<\/a> ilk hesab\u0131n\u0131z\u0131 olu\u015fturun","email":"E-posta","email_change_current_email":"Ge\u00e7erli e-posta adresi:","email_change_new":"Yeni e-posta adresi","email_change_title":"E-posta adresini de\u011fi\u015ftir","email_changed":"E-posta adresiniz de\u011fi\u015ftirildi. Do\u011frulamak i\u00e7in posta kutunuzu kontrol edin.","failed":"Girilmi\u015f olan kullan\u0131c\u0131 verileri sistemdekiler ile e\u015fle\u015fmemektedir.","login":"Oturum A\u00e7","login_again":"L\u00fctfen hesab\u0131n\u0131za tekrar giri\u015f yap\u0131n\u0131z","login_to_account":"Hesab\u0131n\u0131za giri\u015f yap\u0131n","login_with_recovery":"Bir kurtarma kodu ile giri\u015f yap","mfa_auth_otp":"\u0130ki fakt\u00f6rl\u00fc cihaz\u0131n\u0131zla kimlik do\u011frulamas\u0131","mfa_auth_webauthn":"Bir g\u00fcvenlik anahtar\u0131yla (WebAuthn) kimlik do\u011frulamas\u0131","not_authorized":"Bu i\u015flemi y\u00fcr\u00fctme yetkiniz yok","password":"\u015eifre","password_forget":"\u015eifremi unuttum","password_reset":"\u015eifrenizi de\u011fi\u015ftirin","password_reset_action":"\u015eifreyi S\u0131f\u0131rla","password_reset_email":"E-posta Adresi","password_reset_email_content":"\u015eifrenizi s\u0131f\u0131rlamak i\u00e7in buraya t\u0131klay\u0131n:","password_reset_password":"\u015eifre","password_reset_password_confirm":"\u015eifreyi Do\u011frula","password_reset_send_link":"\u015eifre s\u0131f\u0131rlama ba\u011flant\u0131s\u0131n\u0131 g\u00f6nder","password_reset_title":"\u015eifreyi Yenile","recovery":"Kurtarma kodu","register_action":"Kay\u0131t Ol","register_create_account":"Monica'y\u0131 kullanmak i\u00e7in bir hesap olu\u015fturman\u0131z gerekir","register_email":"Ge\u00e7erli bir e-posta adresi girin","register_email_example":"mail@mail","register_firstname":"Ad","register_firstname_example":"\u00f6rn: Mehmet","register_invitation_email":"G\u00fcvenlik nedeniyle, l\u00fctfen sizi bu hesaba kat\u0131lmaya davet eden ki\u015finin e-posta adresini belirtin. Bu bilgi davet e-postas\u0131nda verilmektedir.","register_lastname":"Soyad","register_lastname_example":"\u00f6rn: A\u011fa","register_login":"Zaten bir hesab\u0131n\u0131z varsa Giri\u015f Yap\u0131n<\/a>.","register_password":"\u015eifre","register_password_confirmation":"\u015eifre do\u011frulama","register_password_example":"G\u00fc\u00e7l\u00fc bir \u015fifre girin","register_policy":"Kay\u0131t olmak, Gizlilik Politikam\u0131z\u0131<\/a> ve Kullan\u0131m Ko\u015fullar\u0131m\u0131z\u0131<\/a> okudu\u011funuz ve kabul etti\u011finiz anlam\u0131na gelmektedir.","register_title_create":"Monica hesab\u0131n\u0131z\u0131 olu\u015fturun","register_title_welcome":"Yeni y\u00fcklenen Monica \u00f6rne\u011finize ho\u015f geldiniz","signup":"Kay\u0131t ol","signup_disabled":"Kay\u0131t \u015fu anda devre d\u0131\u015f\u0131","signup_error":"Kullan\u0131c\u0131 kay\u0131t ederken bir hata olu\u015ftu","signup_no_account":"Hesab\u0131n\u0131z yok mu?","throttle":"\u00c7ok fazla oturum a\u00e7ma giri\u015fiminde bulundunuz. L\u00fctfen :seconds saniye i\u00e7erisinde tekrar deneyiz.","use_recovery":"Veya bir kurtarma kodu<\/a> kullanabilirsiniz"},"changelog":{"note":"Not: ne yaz\u0131k ki, bu sayfa yaln\u0131zca \u0130ngilizce'dir.","title":"\u00dcr\u00fcn de\u011fi\u015fiklikleri"},"dashboard":{"dashboard_blank_cta":"\u0130lk ba\u011flant\u0131n\u0131z\u0131 ekleyin","dashboard_blank_description":"Monica, \u00f6nemsedi\u011finiz ki\u015filerle olan t\u00fcm etkile\u015fimlerinizi organize edebilece\u011finiz bir yerdir.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Hesab\u0131n\u0131za ho\u015f geldiniz!","debts_you_owe":"Borcunuz","notes_title":"Y\u0131ld\u0131z ekledi\u011finiz herhangi bir not yok.","product_changes":"\u00dcr\u00fcn de\u011fi\u015fiklikleri","product_view_details":"Detaylar\u0131 g\u00f6ster","reminders_next_months":"Gelecek 3 aydaki etkinlikler","reminders_none":"Bu ay i\u00e7in hat\u0131rlatma yok.","statistics_activities":"Etkinlikler","statistics_contacts":"Ba\u011flant\u0131lar","statistics_gifts":"Hediyeler","tab_calls_blank":"Herhangi bir \u00e7a\u011fr\u0131 kay\u0131t etmediniz.","tab_debts":"Bor\u00e7lar","tab_debts_blank":"Herhangi bir bor\u00e7 kayd\u0131 girmediniz.","tab_favorite_notes":"Favori notlar","tab_recent_calls":"Son \u00e7a\u011fr\u0131lar","tab_tasks":"G\u00f6revler","tab_tasks_blank":"Herhangi bir g\u00f6rev eklemediniz.","task_add_cta":"G\u00f6rev ekle","tasks_add_note":"G\u00f6revi eklemek i\u00e7in Enter<\/kbd> tu\u015funa bas\u0131n.","tasks_add_task_placeholder":"Bu g\u00f6rev ne ile ilgili?","tasks_tab_your_contacts":"Ki\u015filerinizle ilgili g\u00f6revler","tasks_tab_your_tasks":"Yap\u0131lacaklar"},"format":{"full_date_year":"d F Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"d M","short_date_year":"d M Y","short_date_year_time":"d M Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Bu girdiyi silmek istedi\u011finizden emin misiniz?","entry_delete_success":"G\u00fcnl\u00fck girdisi ba\u015far\u0131yla silindi.","journal_add":"Bir g\u00fcnl\u00fck girdisi ekle","journal_add_comment":"Yorum eklemek ister misiniz (iste\u011fe ba\u011fl\u0131)?","journal_add_cta":"Kaydet","journal_add_date":"Tarih","journal_add_post":"Girdi","journal_add_title":"Ba\u015fl\u0131k (iste\u011fe ba\u011fl\u0131)","journal_blank_cta":"\u0130lk g\u00fcnl\u00fck i\u00e7eri\u011fini yaz","journal_blank_description":"G\u00fcnl\u00fck ba\u015f\u0131ndan ge\u00e7en olaylar\u0131 yazman\u0131 ve onlar\u0131 tekrar hat\u0131rlaman\u0131 sa\u011flar.","journal_come_back":"Te\u015fekk\u00fcrler. G\u00fcn\u00fcn\u00fc de\u011ferlendirmek i\u00e7in yar\u0131n tekrar gel.","journal_created_at":"Created at {date}","journal_created_automatically":"Otomatik olarak olu\u015fturuldu","journal_description":"Not: g\u00fcnl\u00fck i\u00e7erikleri hem sizin taraf\u0131n\u0131zdan hem de ba\u011flant\u0131lar\u0131n\u0131zla olan etkinliklerden otomatik olu\u015fturulur. G\u00fcnl\u00fck girdilerini silebilirsiniz, etkinlikleri ba\u011flant\u0131 sayfalar\u0131ndan silmeniz gerekir.","journal_edit":"Bir g\u00fcnl\u00fck girdisini d\u00fczenle","journal_empty":"Bo\u015f g\u00fcnl\u00fck","journal_entry_rate":"G\u00fcn\u00fcn\u00fc de\u011ferlendirdin.","journal_entry_type_activity":"Faaliyet","journal_entry_type_journal":"G\u00fcnl\u00fck girdisi","journal_rate":"G\u00fcn\u00fcn nas\u0131l ge\u00e7ti? G\u00fcnde bir defa derecelendirebilirsin.","journal_show_comment":"Yorumu g\u00f6ster"},"logs":{"contact_log_contact_created":"Yeni ki\u015fi olu\u015fturuldu.","contact_log_contact_description_cleared":"A\u00e7\u0131klama temizlendi.","contact_log_contact_description_updated":"A\u00e7\u0131klama g\u00fcncellendi.","contact_log_contact_work_updated":"\u0130\u015f bilgileri g\u00fcncellendi.","settings_log_company_created":":name ad\u0131nda bir firma olu\u015fturuldu.","settings_log_contact_created_with_name":":name ba\u011flant\u0131 olarak eklendi.","settings_log_contact_description_cleared_with_name":":name a\u00e7\u0131klamas\u0131 temizlendi.","settings_log_contact_description_updated_with_name":":name a\u00e7\u0131klamas\u0131 g\u00fcncellendi.","settings_log_contact_work_updated_with_name":":name i\u015f bilgileri g\u00fcncellendi."},"mail":{"comment":"Yorum: :comment","confirmation_email_bottom":"E\u011fer bir hesap olu\u015fturmad\u0131ysan\u0131z, ba\u015fka bir i\u015flem yapman\u0131za gerek yoktur.","confirmation_email_button":"E-posta adresini do\u011frula","confirmation_email_intro":"E-postan\u0131z\u0131 do\u011frulamak i\u00e7in a\u015fa\u011f\u0131daki butona t\u0131klay\u0131n","confirmation_email_title":"Monica \u2013 E-posta Adresi Onay\u0131","footer_contact_info":"Bu ki\u015fiyle ilgili bilgileri ekleyin, g\u00f6r\u00fcnt\u00fcleyin, tamamlay\u0131n ve de\u011fi\u015ftirin:","footer_contact_info2":":name adl\u0131 ki\u015finin profilini g\u00f6r","footer_contact_info2_link":":name adl\u0131 ki\u015finin profilini g\u00f6r: :url","for":":name i\u00e7in","greetings":"Merhaba :username","invitation_button":"Daveti kabul et","invitation_expiration":"Bu linkin s\u00fcresi :count g\u00fcn i\u00e7inde dolacakt\u0131r.","invitation_intro":":name (:email) taraf\u0131ndan g\u00fczel bir Ki\u015fisel \u0130li\u015fki Y\u00f6netimi arac\u0131 olan Monica'y\u0131 kullanmaya davet edildiniz.","invitation_link":"Daveti kabul etmek i\u00e7in a\u015fa\u011f\u0131daki linke t\u0131klay\u0131n:","invitation_title":"Monica - :name taraf\u0131ndan davet edildiniz","notification_description":":count g\u00fcn i\u00e7inde (:date tarihinde), \u015fu olay meydana gelecek:","notification_subject_line":"Yakla\u015fan etkinli\u011finiz var","notifications_footer":"\":actionText\" butonuna basmakta sorun ya\u015f\u0131yorsan\u0131z, a\u015fa\u011f\u0131daki URL'yi kopyalay\u0131p web taray\u0131c\u0131n\u0131za yap\u0131\u015ft\u0131r\u0131n: [:actionURL](:actionURL)","notifications_hello":"Merhaba!","notifications_regards":"Sayg\u0131lar\u0131m\u0131zla","notifications_rights":"T\u00fcm Haklar\u0131 Sakl\u0131d\u0131r","notifications_whoops":"Hoppala!","password_reset_bottom":"E\u011fer parola s\u0131f\u0131rlama talebinde bulunmad\u0131ysan\u0131z, ba\u015fka bir i\u015flem yapman\u0131za gerek yoktur.","password_reset_button":"Parola S\u0131f\u0131rla","password_reset_expiration":"Bu parola s\u0131f\u0131rlama linkinin ge\u00e7erlilik s\u00fcresi :count dakika i\u00e7inde dolacakt\u0131r.","password_reset_intro":"Hesab\u0131n\u0131z i\u00e7in bir parola s\u0131f\u0131rlama talebi ald\u0131\u011f\u0131m\u0131z i\u00e7in bu e-postay\u0131 al\u0131yorsunuz.","password_reset_title":"Monica \u2013 Parola S\u0131f\u0131rlama Bildirimi","stay_in_touch_subject_description":":name ile her :frequency g\u00fcnde bir irtibatta kalmay\u0131 hat\u0131rlat\u0131lmak istediniz.","stay_in_touch_subject_line":":name ile ileti\u015fimde kal","subject_line":":contact i\u00e7in hat\u0131rlat\u0131c\u0131","want_reminded_of":":reason i\u00e7in hat\u0131rlatma istediniz"},"pagination":{"next":"Sonraki \u276f","previous":"\u276e \u00d6nceki"},"passwords":{"changed":"Parola ba\u015far\u0131yla de\u011fi\u015ftirildi.","invalid":"Girdi\u011finiz g\u00fcncel \u015fifreniz do\u011fru de\u011fil.","reset":"\u015eifreniz s\u0131f\u0131rland\u0131!","sent":"E\u011fer girdi\u011finiz e-posta adresi kay\u0131tlar\u0131m\u0131zda varsa, \u015fifre yenileme linki g\u00f6nderilecektir.","throttled":"L\u00fctfen tekrar denemeden \u00f6nce bekleyin.","token":"Bu \u015fifre s\u0131f\u0131rlama g\u00fcvenlik anahtar\u0131 ge\u00e7ersiz.","user":"E\u011fer girdi\u011finiz e-posta adresi kay\u0131tlar\u0131m\u0131zda varsa, \u015fifre yenileme linki g\u00f6nderilecektir."},"people":{"activities_activity":"Aktivite Kategorisi","activities_add_activity":"Aktivite ekle","activities_add_category":"Bir kategori belirt","activities_add_date_occured":"Bu aktivite \u015fu tarihte ger\u00e7ekle\u015fti...","activities_add_emotions":"Duygu ekle","activities_add_emotions_title":"Bu aktivite s\u0131ras\u0131nda neler hissetti\u011finizi kaydetmek ister misiniz? (iste\u011fe ba\u011fl\u0131)","activities_add_error":"Aktivite eklenirken hata olu\u015ftu","activities_add_more_details":"Daha fazla ayr\u0131nt\u0131 ekle","activities_add_participants":"Bu aktiviteye {name} d\u0131\u015f\u0131nda kim kat\u0131ld\u0131? (iste\u011fe ba\u011fl\u0131)","activities_add_participants_cta":"Kat\u0131l\u0131mc\u0131lar\u0131 ekle","activities_add_pick_activity":"(\u0130ste\u011fe ba\u011fl\u0131) Bu aktiviteyi kategorilere ay\u0131rmak ister misiniz? Zorunda de\u011filsin, ama daha sonra size istatistikler verecektir","activities_add_success":"Aktivite ba\u015far\u0131yla eklendi","activities_add_title":"{name} ile ne yapt\u0131n\u0131z?","activities_blank_add_activity":"Bir aktivite ekle","activities_blank_title":"Ge\u00e7mi\u015fte {name} ile ne yapt\u0131\u011f\u0131n\u0131z\u0131n ve ne hakk\u0131nda konu\u015ftu\u011funuzun kayd\u0131n\u0131 tutun","activities_delete_success":"Aktivite ba\u015far\u0131yla silindi","activities_item_information":":Activity. :date tarihinde oldu","activities_list_category":"Kategori:","activities_list_date":"Ger\u00e7ekle\u015fti","activities_list_emotions":"Hissedilen duygular:","activities_list_participants":"Kat\u0131l\u0131mc\u0131lar:","activities_profile_number_occurences":":value aktivite","activities_profile_subtitle":"\u015eu ana kadar :name ile toplamda :total_activities, son 12 ayda :activities_last_twelve_months aktiviteyi kay\u0131t alt\u0131na ald\u0131n\u0131z.","activities_profile_title":":name ile sizin aran\u0131zdaki aktiviteler raporu","activities_profile_year_summary":"\u0130\u015fte :year y\u0131l\u0131nda ikinizin yapt\u0131klar\u0131","activities_profile_year_summary_activity_types":"\u0130\u015fte :year y\u0131l\u0131nda birlikte ger\u00e7ekle\u015ftirdi\u011finiz etkinlik t\u00fcrlerinin bir d\u00f6k\u00fcm\u00fc","activities_summary":"Ne yapt\u0131\u011f\u0131n\u0131z\u0131 a\u00e7\u0131klay\u0131n","activities_update_success":"Aktivite ba\u015far\u0131yla g\u00fcncellendi","activities_view_activities_report":"Aktiviteler raporunu g\u00f6r\u00fcnt\u00fcle","activities_who_was_involved":"Kimler dahil oldu?","activity_title":"Aktiviteler","activity_type_ate_at_his_place":"onlar\u0131n yerinde yemek yedik","activity_type_ate_at_home":"evde yemek yedik","activity_type_ate_restaurant":"restoranda yemek yedik","activity_type_category_cultural_activities":"K\u00fclt\u00fcrel aktiviteler","activity_type_category_food":"Yemek","activity_type_category_simple_activities":"Basit aktiviteler","activity_type_category_sport":"Spor","activity_type_did_sport_activities_together":"birlikte spor yap\u0131ld\u0131","activity_type_just_hung_out":"sadece tak\u0131ld\u0131k","activity_type_picnicked":"piknik yapt\u0131k","activity_type_talked_at_home":"sadece evde konu\u015ftuk","activity_type_watched_movie_at_home":"evde film izledik","activity_type_went_bar":"bara gittik","activity_type_went_concert":"konsere gittik","activity_type_went_museum":"m\u00fczeye gittik","activity_type_went_play":"oyuna gittik","activity_type_went_theater":"tiyatroya gittik","age_approximate_in_years":"yakla\u015f\u0131k :age ya\u015f\u0131nda","age_exact_birthdate":"do\u011fum tarihi :date","age_exact_in_years":":age ya\u015f\u0131nda","auditlogs_author":":date tarihinde :name ad\u0131na g\u00f6re","auditlogs_breadcrumb":"Ge\u00e7mi\u015f","auditlogs_link":"Ge\u00e7mi\u015f","auditlogs_title":"Bu hesaba ait t\u00fcm kay\u0131tlar","avatar_adorable_avatar":"Adorable avatar\u0131","avatar_change_title":"Avatar\u0131n\u0131z\u0131 de\u011fi\u015ftirin","avatar_crop_new_avatar_photo":"Yeni profil resmini k\u0131rp","avatar_current":"Mevcut avatar\u0131 kullan\u0131n","avatar_default_avatar":"Varsay\u0131lan avatar","avatar_gravatar":"Bu ki\u015finin e-posta adresiyle ili\u015fkili Gravatar.Gravatar<\/a>, kullan\u0131c\u0131lar\u0131n e-posta adreslerini foto\u011fraflarla ili\u015fkilendirmelerini sa\u011flayan global bir sistemdir.","avatar_photo":"Y\u00fckledi\u011finiz bir foto\u011fraftan","avatar_question":"Hangi avatar\u0131 kullanmak istersiniz?","birthdate_not_set":"Do\u011fum tarihi ayarlanmad\u0131","call_blank_desc":"{name} ki\u015fisini arad\u0131n\u0131z","call_blank_title":"{name} ile yapt\u0131\u011f\u0131n\u0131z telefon g\u00f6r\u00fc\u015fmelerinin kayd\u0131n\u0131 tutun","call_button":"\u00c7a\u011fr\u0131y\u0131 logla","call_delete_confirmation":"Bu aramay\u0131 silmek istedi\u011finize emin misiniz?","call_delete_success":"Arama ba\u015far\u0131l\u0131 bir \u015fekilde silindi","call_emotions":"Duygular:","call_empty_comment":"Ayr\u0131nt\u0131 yok","call_he_called":"{name} arad\u0131","call_title":"Telefon g\u00f6r\u00fc\u015fmeleri","call_you_called":"Siz arad\u0131n\u0131z","calls_add_success":"Telefon g\u00f6r\u00fc\u015fmesi kaydedildi.","contact_address_form_city":"\u015eehir (iste\u011fe ba\u011fl\u0131)","contact_address_form_country":"\u00dclke (iste\u011fe ba\u011fl\u0131)","contact_address_form_latitude":"Eylem (sadece say\u0131) (iste\u011fe ba\u011fl\u0131)","contact_address_form_longitude":"Boylam (sadece say\u0131) (iste\u011fe ba\u011fl\u0131)","contact_address_form_name":"Etiket (iste\u011fe ba\u011fl\u0131)","contact_address_form_postal_code":"Posta kodu (iste\u011fe ba\u011fl\u0131)","contact_address_form_province":"\u0130l (iste\u011fe ba\u011fl\u0131)","contact_address_form_street":"Sokak (iste\u011fe ba\u011fl\u0131)","contact_address_title":"Adresler","contact_archive":"Ki\u015fiyi ar\u015fivle","contact_archive_help":"Ar\u015fivlenmi\u015f ki\u015filer ki\u015fi listesinde g\u00f6sterilmez, ancak arama sonu\u00e7lar\u0131nda g\u00f6r\u00fcnmeye devam eder.","contact_field_label_cell":"Cep Telefonu","contact_field_label_fax":"Faks","contact_field_label_home":"Ev","contact_field_label_main":"Ana","contact_field_label_other":"Di\u011fer","contact_field_label_pager":"\u00c7a\u011fr\u0131 Cihaz\u0131","contact_field_label_personal":"Ki\u015fisel","contact_field_label_work":"I\u015f","contact_info_address":"Ya\u015fad\u0131\u011f\u0131 yer","contact_info_form_contact_type":"Ki\u015fi t\u00fcr\u00fc","contact_info_form_content":"\u0130\u00e7erik","contact_info_form_personalize":"Ki\u015fiselle\u015ftir","contact_info_title":"\u0130leti\u015fim bilgileri","contact_unarchive":"Ki\u015fiyi ar\u015fivden kald\u0131r","conversation_add_another":"Ba\u015fka bir mesaj ekle","conversation_add_content":"S\u00f6yleneni yaz\u0131n","conversation_add_error":"En az bir mesaj eklemelisiniz.","conversation_add_how":"Nas\u0131l ileti\u015fim kurdunuz?","conversation_add_success":"Sohbet ba\u015far\u0131yla eklendi.","conversation_add_title":"Yeni bir sohbet kaydet","conversation_add_what_was_said":"Siz ne dediniz?","conversation_add_when":"Bu konu\u015fmay\u0131 ne zaman yapt\u0131n\u0131z?","conversation_add_who_wrote":"Bu mesaj\u0131 kim s\u00f6yledi?","conversation_add_you":"Siz","conversation_blank":":name ile sosyal medya, SMS... \u00fczerinden yapt\u0131\u011f\u0131n\u0131z konu\u015fmalar\u0131 kaydedin","conversation_delete_link":"Sohbeti sil","conversation_delete_success":"Sohbet ba\u015far\u0131yla silindi.","conversation_edit_delete":"Bu sohbeti silmek istedi\u011finizden emin misiniz? Silme i\u015flemi geri al\u0131namaz.","conversation_edit_success":"Sohbet ba\u015far\u0131yla g\u00fcncellendi.","conversation_edit_title":"Sohbeti d\u00fczenle","conversation_list_cta":"Konu\u015fmay\u0131 g\u00fcnl\u00fc\u011fe kaydet","conversation_list_table_content":"K\u0131smi i\u00e7erik (en son mesaj)","conversation_list_table_messages":"Mesajlar","conversation_list_title":"Sohbetler","debt_add_add_cta":"Bor\u00e7 ekle","debt_add_amount":"toplam\u0131","debt_add_cta":"Bor\u00e7 ekle","debt_add_reason":"\u015fu sebepten dolay\u0131 (iste\u011fe ba\u011fl\u0131)","debt_add_success":"Bor\u00e7 ba\u015far\u0131yla eklendi","debt_add_they_owe":":name'in size borcu var","debt_add_title":"Bor\u00e7 y\u00f6netimi","debt_add_you_owe":":name'e borcunuz var","debt_delete_confirmation":"Bu borcu silmek istedi\u011finizden emin misiniz?","debt_delete_success":"Bor\u00e7 ba\u015far\u0131yla silindi","debt_edit_success":"Bor\u00e7 ba\u015far\u0131yla g\u00fcncellendi","debt_edit_update_cta":"Borcu g\u00fcncelle","debt_they_owe":":name'in size :amount borcu var","debt_title":"Bor\u00e7lar","debt_you_owe":":amount borcunuz var","debts_blank_title":":name'e olan bor\u00e7lar\u0131n\u0131z\u0131 ya da :name'in size olan bor\u00e7lar\u0131n\u0131 y\u00f6netin","deceased_add_reminder":"Bu tarih i\u00e7in bir hat\u0131rlat\u0131c\u0131 ekleyin","deceased_age":"\u00d6l\u00fcm ya\u015f\u0131","deceased_date_label":"\u00d6l\u00fcm tarihi","deceased_know_date":"Bu ki\u015finin \u00f6ld\u00fc\u011f\u00fc tarihi biliyorum","deceased_label":"\u00d6lm\u00fc\u015f","deceased_label_with_date":":date tarihinde \u00f6ld\u00fc","deceased_mark_person_deceased":"Bu ki\u015fiyi \u00f6lm\u00fc\u015f olarak i\u015faretleyin","deceased_reminder_title":":name'in \u00f6l\u00fcm\u00fcn\u00fcn y\u0131l d\u00f6n\u00fcm\u00fc","document_list_blank_desc":"Burada, bu ki\u015fiyle ilgili belgeleri saklayabilirsiniz.","document_list_cta":"Belge y\u00fckleyin","document_list_title":"Belgeler","document_upload_zone_cta":"Dosya Y\u00fckle","document_upload_zone_error":"Dosya kar\u015f\u0131ya y\u00fcklenirken bir hata olu\u015ftu. L\u00fctfen a\u015fa\u011f\u0131dan tekrar deneyin.","document_upload_zone_progress":"Belge kar\u015f\u0131ya y\u00fckleniyor...","edit_contact_information":"\u0130leti\u015fim bilgilerini d\u00fczenle","emotion_this_made_me_feel":"Bu size \u2026 hissettirdi","food_preferences_add_success":"Yiyecek tercihleri kaydedildi","food_preferences_cta":"Yiyecek tercihleri ekle","food_preferences_edit_cta":"Yiyecek tercihlerini kaydet","food_preferences_edit_description":"Belki :firstname ya da :family'nin ailesinden birinin bir alerjisi vard\u0131r. Veya belirli bir \u015fi\u015fe \u015farab\u0131 sevmemektedir. Bunlar\u0131 burada belirtin, b\u00f6ylece onlar\u0131 bir dahaki sefere ak\u015fam yeme\u011fine davet etti\u011finizde hat\u0131rlayacaks\u0131n\u0131z","food_preferences_edit_description_no_last_name":"Belki :firstname'in bir alerjisi vard\u0131r. Veya belirli bir \u015fi\u015fe \u015farab\u0131 sevmemektedir. Bunlar\u0131 burada belirtin, b\u00f6ylece onlar\u0131 bir dahaki sefere ak\u015fam yeme\u011fine davet etti\u011finizde hat\u0131rlayacaks\u0131n\u0131z","food_preferences_edit_title":"Yiyecek tercihlerini belirtin","food_preferences_title":"Yiyecek tercihleri","gifts_add_comment":"Yorum (iste\u011fe ba\u011fl\u0131)","gifts_add_date":"Date (optional)","gifts_add_gift":"Hediye ekle","gifts_add_gift_already_offered":"Hediye \u00f6nerildi","gifts_add_gift_idea":"Hediye Fikri","gifts_add_gift_name":"Hediye ad\u0131","gifts_add_gift_received":"Hediye al\u0131nd\u0131","gifts_add_gift_title":"Bu hediye nedir?","gifts_add_link":"Web sayfas\u0131 linki (iste\u011fe ba\u011fl\u0131)","gifts_add_photo":"Foto\u011fraf (iste\u011fe ba\u011fl\u0131)","gifts_add_photo_title":"Bu hediye i\u00e7in bir foto\u011fraf ekle","gifts_add_recipient":"Al\u0131c\u0131 (iste\u011fe ba\u011fl\u0131)","gifts_add_recipient_field":"Al\u0131c\u0131","gifts_add_someone":"Bu hediye \u00f6zellikle {name}'nin ailesinden birisi i\u00e7in","gifts_add_success":"Hediye ba\u015far\u0131yla eklendi","gifts_add_title":":name i\u00e7in hediye y\u00f6netimi","gifts_add_value":"De\u011fer (iste\u011fe ba\u011fl\u0131)","gifts_delete_confirmation":"Bu hediyeyi silmek istedi\u011finizden emin misiniz?","gifts_delete_cta":"Sil","gifts_delete_success":"Hediye ba\u015far\u0131yla silindi","gifts_delete_title":"Hediye sil","gifts_for":"{name} i\u00e7in","gifts_ideas":"Hediye fikirleri","gifts_link":"Link","gifts_mark_offered":"\u00d6nerildi olarak i\u015faretle","gifts_offered":"\u00d6nerilen hediyeler","gifts_offered_as_an_idea":"Fikir olarak i\u015faretle","gifts_received":"Al\u0131nan hediyeler","gifts_title":"Hediyeler","gifts_update_success":"Hediye ba\u015far\u0131yla g\u00fcncellendi","gifts_view_comment":"Yorumu g\u00f6r\u00fcnt\u00fcle","information_edit_birthdate_label":"Do\u011fum tarihi","information_edit_description":"A\u00e7\u0131klama (\u0130ste\u011fe Ba\u011fl\u0131)","information_edit_description_help":"Ki\u015fi listesine gerekli oldu\u011funda biraz i\u00e7erik eklemek i\u00e7in kullan\u0131l\u0131r.","information_edit_exact":"Bu ki\u015finin tam do\u011fum tarihini biliyorum...","information_edit_firstname":"Ad","information_edit_lastname":"Soyad (iste\u011fe ba\u011fl\u0131)","information_edit_max_size":"En fazla :size Kb.","information_edit_max_size2":"En fazla {size} Kb.","information_edit_not_year":"Bu ki\u015finin do\u011fum tarihinin g\u00fcn ve ay k\u0131sm\u0131n\u0131 biliyorum, y\u0131l\u0131n\u0131 de\u011fil\u2026","information_edit_probably":"Bu ki\u015fi muhtemelen...","information_edit_success":"Profil ba\u015far\u0131yla g\u00fcncellendi","information_edit_title":":name ki\u015fisinin ki\u015fisel bilgilerini d\u00fczenle","information_edit_unknown":"Bu ki\u015finin ya\u015f\u0131n\u0131 bilmiyorum","information_no_work_defined":"Tan\u0131mlanm\u0131\u015f i\u015f bilgisi yok","information_work_at":":company","introductions_add_reminder":"Bu olay\u0131 y\u0131l d\u00f6n\u00fcm\u00fcnde kutlamak i\u00e7in bir hat\u0131rlatma ekleyin","introductions_additional_info":"Nas\u0131l ve nerede tan\u0131\u015ft\u0131\u011f\u0131n\u0131z\u0131 a\u00e7\u0131klay\u0131n","introductions_blank_cta":":name ile nas\u0131l tan\u0131\u015ft\u0131\u011f\u0131n\u0131z\u0131 belirtin","introductions_edit_met_through":"Birisi sizi bu ki\u015fiyle tan\u0131\u015ft\u0131rd\u0131 m\u0131?","introductions_first_met_date":"Tan\u0131\u015ft\u0131\u011f\u0131n\u0131z tarih","introductions_first_met_date_known":"Tan\u0131\u015ft\u0131\u011f\u0131m\u0131z tarih bu","introductions_met_date":":date tarihinde tan\u0131\u015ft\u0131k","introductions_met_through":":name<\/a> arac\u0131l\u0131\u011f\u0131yla tan\u0131\u015ft\u0131k","introductions_no_first_met_date":"Tan\u0131\u015ft\u0131\u011f\u0131m\u0131z tarihi bilmiyorum","introductions_no_met_through":"Hi\u00e7 kimse","introductions_reminder_title":"\u0130lk tan\u0131\u015ft\u0131\u011f\u0131n\u0131z g\u00fcn\u00fcn y\u0131l d\u00f6n\u00fcm\u00fc","introductions_sidebar_title":"Nas\u0131l tan\u0131\u015ft\u0131n\u0131z","introductions_title_edit":":name ile nas\u0131l tan\u0131\u015ft\u0131n\u0131z?","introductions_update_success":"Bu ki\u015fiyle nas\u0131l tan\u0131\u015ft\u0131\u011f\u0131n\u0131za ili\u015fkin bilgileri ba\u015far\u0131yla g\u00fcncellediniz","last_activity_date":"Birlikte son aktivite: :date","last_activity_date_empty":"Birlikte son aktivite: bilinmiyor","last_called":"Son arama: :date","last_called_empty":"Son arama: bilinmiyor","life_event_blank":"Gelecekteki referans\u0131n\u0131z i\u00e7in {name}'in hayat\u0131na ne olaca\u011f\u0131n\u0131 kaydedin.","life_event_category_family_relationships":"Aile & ili\u015fkiler","life_event_category_health_wellness":"Sa\u011fl\u0131k & s\u0131hhat","life_event_category_home_living":"Ev & ya\u015fam","life_event_category_travel_experiences":"Seyahat & deneyimler","life_event_category_work_education":"\u0130\u015f & e\u011fitim","life_event_create_add_yearly_reminder":"Bu etkinlik i\u00e7in y\u0131ll\u0131k hat\u0131rlat\u0131c\u0131 ekleyin","life_event_create_category":"T\u00fcm kategoriler","life_event_create_date":"Bir ay veya bir g\u00fcn belirtmeniz gerekmemektedir - sadece y\u0131l zorunludur.","life_event_create_default_description":"Bildikleriniz hakk\u0131nda bilgi ekleyin","life_event_create_default_story":"Hikaye (iste\u011fe ba\u011fl\u0131)","life_event_create_default_title":"Ba\u015fl\u0131k (iste\u011fe ba\u011fl\u0131)","life_event_create_life_event":"Ya\u015fam olay\u0131 ekleyin","life_event_create_success":"Ya\u015fam olay\u0131 eklendi","life_event_date_it_happened":"Meydana geldi\u011fi tarih","life_event_delete_description":"Bu ya\u015fam olay\u0131n\u0131 silmek istedi\u011finizden emin misiniz? Silme i\u015flemi geri al\u0131namaz.","life_event_delete_success":"Ya\u015fam olay\u0131 silindi","life_event_delete_title":"Bir ya\u015fam olay\u0131n\u0131 silin","life_event_list_cta":"Ya\u015fam olay\u0131 ekleyin","life_event_list_tab_life_events":"Ya\u015fam olaylar\u0131","life_event_list_tab_other":"Notlar, hat\u0131rlatmalar, ...","life_event_list_title":"Ya\u015fam olaylar\u0131","life_event_sentence_achievement_or_award":"Bir ba\u015far\u0131 veya \u00f6d\u00fcl almak","life_event_sentence_anniversary":"Y\u0131ld\u00f6n\u00fcm\u00fc","life_event_sentence_bought_a_home":"Ev sat\u0131n almak","life_event_sentence_broken_bone":"Bir kemi\u011fi k\u0131rmak","life_event_sentence_changed_beliefs":"\u0130nan\u00e7lar\u0131n\u0131 de\u011fi\u015ftirmek","life_event_sentence_dentist":"Di\u015f\u00e7iye gitmek","life_event_sentence_end_of_relationship":"Bir ili\u015fkiyi sonland\u0131rmak","life_event_sentence_engagement":"Ni\u015fanlanmak","life_event_sentence_expecting_a_baby":"Bebek beklemek","life_event_sentence_first_kiss":"\u0130lk defa \u00f6p\u00fc\u015fmek","life_event_sentence_first_word":"\u0130lk defa konu\u015fmak","life_event_sentence_holidays":"Tatile gitmek","life_event_sentence_home_improvement":"Evde iyile\u015ftirme yapmak","life_event_sentence_loss_of_a_loved_one":"Sevdi\u011fi birini kaybetmek","life_event_sentence_marriage":"Evlenmek","life_event_sentence_military_service":"Askerli\u011fe ba\u015flamak","life_event_sentence_moved":"Ta\u015f\u0131nmak","life_event_sentence_new_child":"\u00c7ocuk sahibi olmak","life_event_sentence_new_eating_habits":"Yeni yeme al\u0131\u015fkanl\u0131klar\u0131 ba\u015flatmak","life_event_sentence_new_family_member":"Bir aile \u00fcyesi eklemek","life_event_sentence_new_hobby":"Bir hobiye ba\u015flamak","life_event_sentence_new_instrument":"Yeni bir \u00e7alg\u0131 aleti \u00f6\u011frenmek","life_event_sentence_new_job":"Yeni bir i\u015f ba\u015flatmak","life_event_sentence_new_language":"Yeni bir dil \u00f6\u011frenmek","life_event_sentence_new_license":"Bir lisans sahibi olmak","life_event_sentence_new_pet":"Evcil hayvan almak","life_event_sentence_new_relationship":"Bir ili\u015fkiye ba\u015flamak","life_event_sentence_new_roommate":"Oda arkada\u015f\u0131 edinmek","life_event_sentence_new_school":"Okula ba\u015flamak","life_event_sentence_new_sport":"Bir spora ba\u015flamak","life_event_sentence_new_vehicle":"Yeni ara\u00e7 almak","life_event_sentence_overcame_an_illness":"Bir hastal\u0131\u011f\u0131 yenmek","life_event_sentence_published_book_or_paper":"Bir makale yay\u0131nlamak","life_event_sentence_quit_a_habit":"Bir al\u0131\u015fkanl\u0131\u011f\u0131 b\u0131rakmak","life_event_sentence_removed_braces":"Di\u015f tellerini kald\u0131rmak","life_event_sentence_retirement":"Emekli olmak","life_event_sentence_study_abroad":"Yurtd\u0131\u015f\u0131nda e\u011fitim g\u00f6rmek","life_event_sentence_surgery":"El cerrahisi","life_event_sentence_tattoo_or_piercing":"D\u00f6vme veya piercing yapt\u0131rmak","life_event_sentence_travel":"Seyahat etmek","life_event_sentence_volunteer_work":"G\u00f6n\u00fcll\u00fc \u00e7al\u0131\u015fmaya ba\u015flamak","life_event_sentence_wear_glass_or_contact":"G\u00f6zl\u00fck veya lens takmaya ba\u015flamak","life_event_sentence_weight_loss":"Kilo vermek","list_link_to_active_contacts":"Ar\u015fivlenmi\u015f ki\u015fileri g\u00f6r\u00fcnt\u00fcl\u00fcyorsunuz. Bunun yerine aktif ki\u015filerin listesine<\/a> bak\u0131n.","list_link_to_archived_contacts":"Ar\u015fivlenmi\u015f ki\u015filerin listesi","me":"Bu sensin","modal_call_comment":"Ne hakk\u0131nda konu\u015ftunuz? (iste\u011fe ba\u011fl\u0131)","modal_call_emotion":"Bu g\u00f6r\u00fc\u015fme s\u0131ras\u0131nda nas\u0131l hissetti\u011finizi kaydetmek ister misiniz? (iste\u011fe ba\u011fl\u0131)","modal_call_exact_date":"Telefon g\u00f6r\u00fc\u015fmesi ger\u00e7ekle\u015fti","modal_call_title":"\u00c7a\u011fr\u0131y\u0131 logla","modal_call_who_called":"Kim arad\u0131?","notes_add_cta":"Not ekle","notes_create_success":"Not ba\u015far\u0131yla olu\u015fturuldu","notes_delete_confirmation":"Bu notu silmek istedi\u011finizden emin misiniz? Silme i\u015flemi geri al\u0131namaz","notes_delete_success":"Not ba\u015far\u0131yla silindi","notes_delete_title":"Not sil","notes_favorite":"Favorilere ekle\/kald\u0131r","notes_update_success":"Not ba\u015far\u0131yla kaydedildi","people_add_birthday_reminder":"Mutlu y\u0131llar diliyorum: isim","people_add_birthday_reminder_deceased":"Bu tarihte, :name do\u011fum g\u00fcn\u00fcn\u00fc kutlard\u0131","people_add_cta":"Ekle","people_add_firstname":"Ad","people_add_gender":"Cinsiyet","people_add_import":"Ba\u011flant\u0131lar\u0131n\u0131z\u0131 aktarmak<\/a> istiyor musunuz?","people_add_lastname":"Soyad\u0131 (iste\u011fe ba\u011fl\u0131)","people_add_middlename":"\u0130kinci Ad (Opsiyonel)","people_add_missing":"Ki\u015fi Bulunamad\u0131 Yeni Bir Tane Ekle","people_add_new":"Yeni ki\u015fi ekle","people_add_nickname":"Rumuz (iste\u011fe ba\u011fl\u0131)","people_add_reminder_for_birthday":"Do\u011fum g\u00fcn\u00fc i\u00e7in y\u0131ll\u0131k bir hat\u0131rlat\u0131c\u0131 olu\u015fturun","people_add_success":":name ba\u015far\u0131yla kay\u0131t edildi","people_add_title":"Yeni ki\u015fi ekle","people_delete_confirmation":"Bu ki\u015fiyi silmek istedi\u011finizden emin misiniz? Silinen kay\u0131tlar geri al\u0131namaz.","people_delete_message":"Ba\u011flant\u0131y\u0131 Sil","people_delete_success":"Ba\u011flant\u0131 silindi","people_edit_email_error":"Bu e-mail adresine sahip bir ki\u015fi listenize kay\u0131tl\u0131. L\u00fctfen farkl\u0131 bir adres giriniz.","people_export":"Vcard Format\u0131nda \u00c7\u0131kar","people_list_account_upgrade_cta":"\u015eimdi g\u00fcncelle","people_list_account_upgrade_title":"T\u00fcm \u00f6zellikleri kullanmak i\u00e7in hesab\u0131n\u0131z\u0131 y\u00fckseltin.","people_list_account_usage":"Hesap kullan\u0131m bilgileriniz: :current\/:limit ba\u011flant\u0131","people_list_blank_cta":"Birisini ekle","people_list_blank_title":"Hesab\u0131n\u0131zda kay\u0131tl\u0131 ki\u015fi yok","people_list_clear_filter":"Filtreyi temizle","people_list_contacts_per_tags":":count ba\u011flant\u0131","people_list_filter_tag":"Etiketlenen t\u00fcm ba\u011flant\u0131lar listele","people_list_filter_untag":"Etiketlenmemi\u015f ba\u011flant\u0131lar listeleniyor","people_list_firstnameAZ":"\u0130simleri A \u2192 Z g\u00f6re s\u0131rala","people_list_firstnameZA":"\u0130simleri Z \u2192 A g\u00f6re s\u0131rala","people_list_hide_dead":"\u00d6lm\u00fc\u015f ki\u015fileri gizle (:count)","people_list_last_updated":"Son g\u00f6r\u00fc\u015fme:","people_list_lastactivitydateNewtoOld":"Son aktivite tarihi eskiden yeniye g\u00f6re s\u0131rala","people_list_lastactivitydateOldtoNew":"Son aktivite tarihi yeniden eskiye g\u00f6re s\u0131rala","people_list_lastnameAZ":"Soy isimleri A \u2192 Z g\u00f6re s\u0131rala","people_list_lastnameZA":"Soy isimleri Z \u2192 A g\u00f6re s\u0131rala","people_list_number_kids":":count \u00e7ocuklar","people_list_number_reminders":":count hat\u0131rlat\u0131c\u0131","people_list_show_dead":"\u00d6lm\u00fc\u015f ki\u015fileri g\u00f6ster (:count)","people_list_sort":"S\u0131rala","people_list_stats":":count ba\u011flant\u0131","people_list_untagged":"Etiketlenmemi\u015f ba\u011flant\u0131lar\u0131 g\u00f6ster","people_not_found":"Ki\u015fi bulunamad\u0131","people_save_and_add_another_cta":"Kaydet ve ba\u015fka birini ekle","people_search":"Ba\u011flant\u0131larda ara...","people_search_all":"Hepsi","people_search_next":"Sonraki","people_search_no_results":"Sonu\u00e7 bulunamad\u0131","people_search_of":"\/","people_search_page":"Sayfa","people_search_prev":"\u00d6nceki","people_search_rows_per_page":"Rows per page","pets_bird":"Ku\u015f","pets_cat":"Kedi","pets_create_success":"Evcil hayvan ba\u015far\u0131yla eklendi","pets_delete_success":"Evcil hayvan silindi","pets_dog":"K\u00f6pek","pets_fish":"Bal\u0131k","pets_hamster":"Hamster","pets_horse":"At","pets_kind":"Evcil hayvan t\u00fcr\u00fc","pets_name":"\u0130sim (iste\u011fe ba\u011fl\u0131)","pets_other":"Di\u011fer","pets_rabbit":"Tav\u015fan","pets_rat":"Fare","pets_reptile":"S\u00fcr\u00fcngen","pets_small_animal":"K\u00fc\u00e7\u00fck hayvan","pets_title":"Evcil hayvanlar","pets_update_success":"Evcil hayvan g\u00fcncellendi","photo_current_profile_pic":"Mevcut profil resmi","photo_delete":"Foto\u011fraf\u0131 sil","photo_list_blank_desc":"Bu ki\u015fiyle ilgili g\u00f6r\u00fcnt\u00fcleri saklayabilirsiniz. \u015eimdi bir tane y\u00fckle!","photo_list_cta":"Foto\u011fraf y\u00fckle","photo_list_title":"\u0130lgili foto\u011fraflar","photo_make_profile_pic":"Profil resmi yap\u0131n","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Foto\u011fraflar","photo_upload_zone_cta":"Bir foto\u011fraf y\u00fckle","relationship_delete_confirmation":"Bu ili\u015fkiyi silmek istedi\u011finizden emin misiniz? Silme i\u015flemi geri al\u0131namaz.","relationship_form_add":"Yeni bir ili\u015fki ekle","relationship_form_add_choice":"\u0130li\u015fki kiminle?","relationship_form_add_description":"Bu, bu ki\u015fiye di\u011fer ki\u015fileriniz gibi davranman\u0131za izin verecektir.","relationship_form_add_no_existing_contact":"\u015eu anda :name ile ili\u015fkili olabilecek herhangi bir ki\u015finiz yok.","relationship_form_add_success":"\u0130li\u015fki ba\u015far\u0131yla kuruldu.","relationship_form_also_create_contact":"Bu ki\u015fi i\u00e7in bir Ki\u015fi giri\u015fi olu\u015fturun.","relationship_form_associate_contact":"Var olan bir ki\u015fi","relationship_form_associate_dropdown":"A\u015fa\u011f\u0131daki a\u00e7\u0131l\u0131r listeden mevcut bir ki\u015fiyi aray\u0131n ve se\u00e7in","relationship_form_associate_dropdown_placeholder":"Mevcut bir ki\u015fiyi aray\u0131n ve se\u00e7in","relationship_form_create_contact":"Yeni ki\u015fi ekle","relationship_form_deletion_success":"\u0130li\u015fki silindi.","relationship_form_edit":"Mevcut bir ili\u015fkiyi g\u00fcncelle","relationship_form_is_with":"Bu ki\u015fi ...","relationship_form_is_with_name":":name...","relationship_unlink_confirmation":"Bu ili\u015fkiyi silmek istedi\u011finizden emin misiniz? Bu ki\u015fi silinmeyecek - yaln\u0131zca ikisi aras\u0131ndaki ili\u015fki silinecek.","reminder_frequency_day":"her g\u00fcn|[2,*]:number g\u00fcnde bir","reminder_frequency_month":"her ay|[2,*]:number ayda bir","reminder_frequency_one_time":":date tarihinde","reminder_frequency_week":"her hafta|[2,*]:number haftada bir","reminder_frequency_year":"her y\u0131l|[2,*]:number y\u0131lda bir","reminders_add_cta":"Hat\u0131rlat\u0131c\u0131 ekle","reminders_add_description":"L\u00fctfen bana \u015funu hat\u0131rlat...","reminders_add_error_custom_text":"Bu hat\u0131rlat\u0131c\u0131 i\u00e7in bir metin belirtmeniz gerekmektedir","reminders_add_next_time":"Bir dahaki sefere ne zaman bunun hat\u0131rlat\u0131lmas\u0131n\u0131 istersiniz?","reminders_add_once":"Bunu sadece bir kere hat\u0131rlat","reminders_add_optional_comment":"\u0130ste\u011fe ba\u011fl\u0131 yorum","reminders_add_recurrent":"Bunu bana hat\u0131rlat","reminders_add_starting_from":"yukar\u0131da belirtilen tarihten ba\u015flayarak","reminders_add_title":":name hakk\u0131nda neyin hat\u0131rlat\u0131lmas\u0131n\u0131 istersiniz?","reminders_birthday":":name'nin\/nun Do\u011fum G\u00fcn\u00fc","reminders_blank_add_activity":"Hat\u0131rlat\u0131c\u0131 ekle","reminders_blank_title":":name ile ilgili hat\u0131rlat\u0131lmas\u0131n\u0131 istedi\u011finiz bir \u015fey var m\u0131?","reminders_create_success":"Hat\u0131rlat\u0131c\u0131 ba\u015far\u0131yla eklendi","reminders_cta":"Hat\u0131rlat\u0131c\u0131 ekle","reminders_delete_confirmation":"Bu hat\u0131rlat\u0131c\u0131y\u0131 silmek ister misiniz?","reminders_delete_cta":"Sil","reminders_delete_success":"Hat\u0131rlat\u0131c\u0131 ba\u015far\u0131yla silindi","reminders_description":"A\u015fa\u011f\u0131daki hat\u0131rlat\u0131c\u0131lardan her biri i\u00e7in bir e-posta g\u00f6nderece\u011fiz. Olaylar\u0131n ger\u00e7ekle\u015fece\u011fi g\u00fcn\u00fcn sabah\u0131nda hat\u0131rlatmalar g\u00f6nderilir. Do\u011fum g\u00fcnleri i\u00e7in otomatik olarak eklenen hat\u0131rlat\u0131c\u0131lar silinemez. Bu tarihleri de\u011fi\u015ftirmek istiyorsan\u0131z, ki\u015filerin do\u011fum tarihlerini d\u00fczenleyin.","reminders_edit_update_cta":"Hat\u0131rlat\u0131c\u0131y\u0131 g\u00fcncelle","reminders_free_plan_warning":"\u00dccretsiz plana dahilsiniz. Bu planda e-posta g\u00f6nderilmez. Hat\u0131rlat\u0131c\u0131lar\u0131n\u0131z\u0131 e-posta ile almak i\u00e7in hesab\u0131n\u0131z\u0131 y\u00fckseltin.","reminders_next_expected_date":"tarihinde","reminders_one_time":"Bir kez","reminders_type_month":"ay","reminders_type_week":"hafta","reminders_type_year":"y\u0131l","reminders_update_success":"Hat\u0131rlat\u0131c\u0131 ba\u015far\u0131yla g\u00fcncellendi","section_contact_information":"\u0130leti\u015fim bilgileri","section_personal_activities":"Aktiviteler","section_personal_gifts":"Hediyeler","section_personal_notes":"Notlar","section_personal_reminders":"Hat\u0131rlat\u0131c\u0131lar","section_personal_tasks":"G\u00f6revler","set_favorite":"Favori ki\u015filer, ki\u015fi listesinin en \u00fcst\u00fcne yerle\u015ftirilir","stay_in_touch":"\u0130rtibatta kal","stay_in_touch_frequency":"Her {count} g\u00fcn ileti\u015fimde kal\u0131n","stay_in_touch_invalid":"S\u0131kl\u0131k de\u011feri, 0'dan daha b\u00fcy\u00fck bir say\u0131 olmal\u0131d\u0131r.","stay_in_touch_modal_desc":"Size {firstname} ile ba\u011flant\u0131da kalman\u0131z\u0131 d\u00fczenli aral\u0131klarla e-posta ile hat\u0131rlatabiliriz.","stay_in_touch_modal_label":"Her... {count} g\u00fcnde bir bana e-posta g\u00f6nder","stay_in_touch_modal_title":"\u0130rtibatta kal","stay_in_touch_premium":"Bu \u00f6zelli\u011fi kullanabilmek i\u00e7in hesab\u0131n\u0131z\u0131 y\u00fckseltmeniz gerekir","tag_add":"Etiket ekle","tag_add_search":"Etiket ekle veya ara","tag_edit":"Etiketi d\u00fczenle","tag_no_tags":"Hen\u00fcz etiket yok","tasks_add_task":"G\u00f6rev ekle","tasks_blank_title":"Hen\u00fcz bir g\u00f6reviniz yok.","tasks_complete_success":"G\u00f6rev ba\u015far\u0131yla durumu de\u011fi\u015ftirdi","tasks_delete_success":"G\u00f6rev ba\u015far\u0131l\u0131 bir \u015fekilde silindi","tasks_form_description":"A\u00e7\u0131klama (iste\u011fe ba\u011fl\u0131)","tasks_form_title":"Ba\u015fl\u0131k","tasks_title":"G\u00f6revler","work_add_cta":"\u0130\u015f Bilgilerini G\u00fcncelle","work_edit_company":"\u015eirket (iste\u011fe ba\u011fl\u0131)","work_edit_job":"\u0130\u015f unvan\u0131 (iste\u011fe ba\u011fl\u0131)","work_edit_success":"Work information updated","work_edit_title":"G\u00fcncelle :name ki\u015fisinin i\u015f bilgisi","work_information":"\u0130\u015f bilgisi"},"reminder":{"type_birthday":"Mutlu y\u0131llar dile:","type_birthday_kid":"\u00c7ocu\u011funa mutlu y\u0131llar dile","type_email":"E-posta","type_hangout":"Birlikte tak\u0131l","type_lunch":"\u00d6\u011fle yeme\u011fi","type_phone_call":"\u00c7a\u011fr\u0131"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"\u0130ki Ad\u0131ml\u0131 Kimlik Do\u011frulamay\u0131 devre d\u0131\u015f\u0131 b\u0131rakmaya \u00e7al\u0131\u015f\u0131rken hata olu\u015ftu","2fa_disable_success":"\u0130ki Ad\u0131ml\u0131 Kimlik Do\u011frulamas\u0131 devre d\u0131\u015f\u0131","2fa_disable_title":"\u0130ki A\u015famal\u0131 Kimlik Do\u011frulamas\u0131n\u0131 devre d\u0131\u015f\u0131 b\u0131rak","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"\u0130ki Ad\u0131ml\u0131 Kimlik Do\u011frulamay\u0131 etkinle\u015ftirmeye \u00e7al\u0131\u015f\u0131rken hata olu\u015ftu","2fa_enable_error_already_set":"\u0130ki a\u015famal\u0131 kimlik do\u011frulamas\u0131 zaten etkinle\u015ftirildi","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"\u0130ki a\u015famal\u0131 kimlik do\u011frulamas\u0131 etkinle\u015ftirildi","2fa_enable_title":"\u0130ki a\u015famal\u0131 kimlik do\u011frulamas\u0131n\u0131 etkinle\u015ftir","2fa_otp_title":"\u0130ki A\u015famal\u0131 Kimlik Do\u011frulamas\u0131 mobil uygulama","2fa_title":"\u0130ki A\u015famal\u0131 Kimlik Do\u011frulamas\u0131","api_authorized_clients":"Yetkilendirilmi\u015f istemcilerin listesi","api_authorized_clients_desc":"Bu b\u00f6l\u00fcm, uygulama verilerinize eri\u015fmek i\u00e7in yetkilendirdi\u011finiz t\u00fcm istemcileri listeler. Bu yetkilendirmeyi istedi\u011finiz zaman iptal edebilirsiniz.","api_authorized_clients_name":"Ad","api_authorized_clients_none":"Hen\u00fcz yetkilendirilmi\u015f bir istemci yok.","api_authorized_clients_scopes":"Kapsamlar","api_authorized_clients_title":"Yetkilendirilmi\u015f Uygulamalar","api_description":"API, Monica\u2019n\u0131n verilerini harici bir uygulamadan, \u00f6rne\u011fin bir mobil uygulama gibi, y\u00f6netmek i\u00e7in kullan\u0131labilir.","api_endpoint":"Bu Monica \u00f6rne\u011finin API u\u00e7 noktas\u0131:","api_help":"API'yi kullanmak i\u00e7in, bir belirte\u00e7 zorunludur. Bir ki\u015fisel eri\u015fim belirteci (Ta\u015f\u0131y\u0131c\u0131 kimlik do\u011frulamas\u0131) olu\u015fturabilir veya sizin i\u00e7in olu\u015fturmas\u0131 i\u00e7in bir OAuth istemcisine yetki verebilirsiniz. API dok\u00fcmantasyonuna<\/a> bak\u0131n.","api_oauth_clientid":"\u0130stemci Kimli\u011fi","api_oauth_clients":"OAuth istemcileriniz","api_oauth_clients_desc":"Bu b\u00f6l\u00fcm kendi OAuth istemcilerinizi kaydetmenize izin verir.","api_oauth_clients_desc2":"Yeni bir belirte\u00e7 istemek i\u00e7in bu istemci kimli\u011fini kullan\u0131n ve yetkilendirme kodlar\u0131n\u0131 eri\u015fim belirte\u00e7lerine \u00e7evirin. Daha fazla bilgi i\u00e7in Laravel Passport dok\u00fcmantasyonuna<\/a> bak\u0131n.","api_oauth_create":"\u0130stemci Olu\u015ftur","api_oauth_create_new":"Yeni \u0130stemci Olu\u015ftur","api_oauth_edit":"\u0130stemci D\u00fczenle","api_oauth_name":"Ad","api_oauth_name_help":"Kullan\u0131c\u0131lar\u0131n\u0131z\u0131n tan\u0131yaca\u011f\u0131 ve g\u00fcvenece\u011fi bir \u015fey.","api_oauth_not_created":"Herhangi bir OAuth istemcisi olu\u015fturmad\u0131n\u0131z.","api_oauth_redirecturl":"Y\u00f6nlendirme URL'si","api_oauth_redirecturl_help":"Uygulaman\u0131z\u0131n yetkilendirme geri \u00e7a\u011f\u0131rma URL'si.","api_oauth_secret":"Gizli","api_oauth_title":"OAuth \u0130stemcileri","api_pao_description":"Bu belirteci g\u00fcvendi\u011finiz bir kayna\u011fa verdi\u011finizden emin olun - \u00e7\u00fcnk\u00fc t\u00fcm verilerinize eri\u015fmenize izin verir.","api_personal_access_tokens":"Ki\u015fisel eri\u015fim belirte\u00e7leri","api_title":"API eri\u015fimi","api_token_create":"Belirte\u00e7 Olu\u015ftur","api_token_create_new":"Yeni Belirte\u00e7 Olu\u015ftur","api_token_delete":"Sil","api_token_expire":"{date} tarihinde s\u00fcresi doluyor","api_token_help":"\u0130\u015fte yeni ki\u015fisel eri\u015fim belirteciniz. Bundan ba\u015fka g\u00f6sterilmeyecek, bu y\u00fczden kaybetmeyin! Art\u0131k API iste\u011finde bulunmak i\u00e7in bu belirteci kullanabilirsiniz.","api_token_name":"Belirte\u00e7 ad\u0131","api_token_not_created":"Herhangi bir ki\u015fisel eri\u015fim belirteci olu\u015fturmad\u0131n\u0131z.","api_token_scopes":"Kapsamlar","api_token_title":"Ki\u015fisel Eri\u015fim Belirte\u00e7leri","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Para Birimi","dav_caldav_birthdays_export":"T\u00fcm do\u011fum g\u00fcnlerini tek bir dosyada d\u0131\u015fa aktar","dav_caldav_tasks_export":"T\u00fcm g\u00f6revleri tek bir dosyada d\u0131\u015fa aktar","dav_carddav_export":"T\u00fcm ki\u015fileri tek bir dosyada d\u0131\u015fa aktar","dav_clipboard_copied":"De\u011fer panonuza kopyaland\u0131","dav_connect_help":"Telefonunuzda veya bilgisayar\u0131n\u0131zda ki\u015filerinizi ve\/veya takvimlerinizi, bu temel URL ile ba\u011flayabilirsiniz.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Panoya kopyalay\u0131n","dav_description":"Burada CardDAV ve CalDAV d\u0131\u015fa aktarma i\u015flemleri i\u00e7in WebDAV kaynaklar\u0131n\u0131 kullanmak i\u00e7in t\u00fcm ayarlar\u0131 bulabilirsiniz.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"T\u00fcm CardDAV ve CalDAV kaynaklar\u0131 i\u00e7in temel URL:","dav_url_caldav_birthdays":"Do\u011fum g\u00fcnleri kayna\u011f\u0131 i\u00e7in CalDAV URL'si:","dav_url_caldav_tasks":"G\u00f6revler kayna\u011f\u0131 i\u00e7in CalDAV URL'si:","dav_url_carddav":"Ki\u015filer kayna\u011f\u0131 i\u00e7in CardDAV URL'si:","delete_cta":"Hesab\u0131 sil","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Hesab\u0131n\u0131z\u0131 silin","email":"E-posta adresi","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"E-posta girin","export_be_patient":"D\u0131\u015far\u0131 aktarma i\u015flemini ba\u015flatmak i\u00e7in butona t\u0131klay\u0131n. Bu i\u015flem birka\u00e7 dakika s\u00fcrebilir - l\u00fctfen sab\u0131rl\u0131 olun butona tekrar basmay\u0131n.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Hesap bilgilerini d\u0131\u015far\u0131 aktar","export_title_sql":"Veriyi SQL olarak d\u0131\u015far\u0131 aktar","firstname":"Ad","import_blank_cta":"vCard \u0130\u00e7e Aktar\u0131m","import_blank_description":"Google Ki\u015filer'den veya Ki\u015fi y\u00f6neticinizden alabilece\u011finiz vCard dosyalar\u0131n\u0131 i\u00e7e aktarabiliriz.","import_blank_question":"\u015eimdi ki\u015fileri i\u00e7e aktarmak ister misiniz?","import_blank_title":"Hen\u00fcz herhangi bir ki\u015fiyi i\u00e7e aktarmad\u0131n\u0131z.","import_cta":"Ki\u015fileri kar\u015f\u0131ya y\u00fckle","import_in_progress":"\u0130\u00e7e aktarma devam ediyor. Sayfay\u0131 bir dakika i\u00e7inde yeniden y\u00fckleyin.","import_need_subscription":"Verileri i\u00e7e aktarmak abonelik gerektirir.","import_report_date":"\u0130\u00e7e aktarma tarihi","import_report_number_contacts":"Dosyadaki ki\u015fi say\u0131s\u0131","import_report_number_contacts_imported":"\u0130\u00e7e aktar\u0131lan ki\u015fi say\u0131s\u0131","import_report_number_contacts_skipped":"Atlanan ki\u015fi say\u0131s\u0131","import_report_status_imported":"\u0130\u00e7e aktar\u0131ld\u0131","import_report_status_skipped":"Atland\u0131","import_report_title":"\u0130\u00e7e aktarma raporu","import_report_type":"\u0130\u00e7e aktarma t\u00fcr\u00fc","import_result_stat":"vCard :total_contacts ki\u015fi ile kar\u015f\u0131ya y\u00fcklendi (:total_imported i\u00e7e aktar\u0131ld\u0131, :total_skipped atland\u0131)","import_stat":"\u015eimdiye kadar :number dosyay\u0131 i\u00e7e aktard\u0131n\u0131z.","import_title":"Hesab\u0131n\u0131zdaki ki\u015fileri i\u00e7e aktar\u0131n","import_upload_behaviour":"\u0130\u00e7e aktarma davran\u0131\u015f\u0131:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Mevcut ki\u015fileri de\u011fi\u015ftir","import_upload_form_file":".vcf<\/code> veya .vCard<\/code> dosyan\u0131z:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":".vcard<\/code> ve .vcf<\/code> dosyalar\u0131n\u0131 destekliyoruz.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"Ancak baz\u0131 kurallar\u0131m\u0131z var:","import_upload_title":"Ki\u015filerinizi bir vCard dosyas\u0131ndan i\u00e7e aktar\u0131n","import_vcard_contact_exist":"Ki\u015fi zaten mevcut","import_vcard_contact_no_firstname":"\u0130lk isim yok (zorunlu)","import_vcard_file_no_entries":"Dosya herhangi bir girdi i\u00e7ermiyor","import_vcard_file_not_found":"Dosya bulunamad\u0131","import_vcard_parse_error":"vCard girdisini ayr\u0131\u015ft\u0131r\u0131rken hata","import_vcard_unknown_entry":"Bilinmeyen ki\u015fi ad\u0131","import_view_report":"Raporu g\u00f6r\u00fcnt\u00fcle","lastname":"Soyad","layout":"G\u00f6r\u00fcn\u00fcm","layout_big":"Taray\u0131c\u0131n\u0131n tam geni\u015fli\u011fi","layout_small":"En fazla 1200 piksel geni\u015fli\u011finde","locale":"Uygulamada kullan\u0131lacak dil","locale_ar":"Arap\u00e7a","locale_cs":"\u00c7ek\u00e7e","locale_de":"Almanca","locale_en":"\u0130ngilizce","locale_en-GB":"\u0130ngilizce (Birle\u015fik Krall\u0131k)","locale_es":"\u0130spanyolca","locale_fr":"Frans\u0131zca","locale_he":"\u0130branice","locale_help":"Monica'y\u0131 \u00e7evirmeye yard\u0131m etmek veya yeni bir dil eklemek ister misiniz? L\u00fctfen daha fazla bilgi i\u00e7in bu linki<\/a> takip edin.","locale_hr":"H\u0131rvatca","locale_it":"\u0130talyanca","locale_ja":"Japonca","locale_nl":"Flemenk\u00e7e","locale_pt":"Portekizce","locale_pt-BR":"Portekizce (Brezilya)","locale_ru":"Rus\u00e7a","locale_sv":"\u0130sve\u00e7\u00e7e","locale_tr":"T\u00fcrk\u00e7e","locale_zh":"\u00c7ince (Basitle\u015ftirilmi\u015f)","locale_zh-TW":"Geleneksel \u00c7ince","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Kendinizi se\u00e7in","me_choose_placeholder":"Kendinizi se\u00e7in","me_help":"Bu hesap Monica'da sizi<\/em> temsil eden ki\u015fidir","me_no_contact":"Hen\u00fcz bir ki\u015fi se\u00e7ilmedi.","me_remove_contact":"\u0130li\u015fkiyi Kald\u0131r","me_select":"Bir ki\u015fi se\u00e7in","me_select_click":"Bir ki\u015fi se\u00e7mek i\u00e7in buraya t\u0131klay\u0131n\u0131z.","me_title":"Bir ki\u015fi olarak ben","name":"Ad\u0131n\u0131z: :name","name_order":"\u0130sim g\u00f6sterimi","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u015eifreyi De\u011fi\u015ftir","password_change":"Change your password","password_current":"Ge\u00e7erli \u015fifre","password_current_placeholder":"Ge\u00e7erli \u015fifrenizi giriniz","password_new1":"Yeni \u015fifre","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"Bu \u00dccretli bir abonelik gerektiren premium bir \u00f6zelliktir. Ayarlar > Abonelik<\/a> b\u00f6l\u00fcm\u00fcn\u00fc ziyaret ederek hesab\u0131n\u0131z\u0131 y\u00fckseltin.","personalisation_paid_upgrade_vue":"Bu \u00dccretli bir abonelik gerektiren premium bir \u00f6zelliktir. Ayarlar > Abonelik<\/a> b\u00f6l\u00fcm\u00fcn\u00fc ziyaret ederek hesab\u0131n\u0131z\u0131 y\u00fckseltin.","personalization_activity_type_add_button":"Yeni bir aktivite t\u00fcr\u00fc ekle","personalization_activity_type_category_add":"Yeni bir aktivite t\u00fcr\u00fc kategorisi ekle","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Yeni bir etkinlik t\u00fcr\u00fc kategorisi ekle","personalization_activity_type_category_modal_delete":"Bir aktivite t\u00fcr\u00fc kategorisini sil","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"Bu aktivite t\u00fcr\u00fc kategorisini bulam\u0131yoruz.","personalization_activity_type_category_modal_edit":"Bir etkinlik t\u00fcr\u00fc kategorisini d\u00fczenle","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Eylemler","personalization_activity_type_category_table_name":"Ad","personalization_activity_type_category_title":"Aktivite t\u00fcr\u00fc kategorileri","personalization_activity_type_modal_add":"Yeni bir aktivite t\u00fcr\u00fc ekle","personalization_activity_type_modal_delete":"Bir aktivite t\u00fcr\u00fcn\u00fc sil","personalization_activity_type_modal_delete_desc":"Bu aktivite t\u00fcr\u00fcn\u00fc silmek istedi\u011finize emin misiniz? Bu kategoriye ait aktiviteler bu silme i\u015fleminden etkilenmeyecektir.","personalization_activity_type_modal_delete_error":"Bu aktivite t\u00fcr\u00fcn\u00fc bulam\u0131yoruz.","personalization_activity_type_modal_edit":"Bir aktivite t\u00fcr\u00fcn\u00fc d\u00fczenle","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Yeni alan t\u00fcr\u00fc ekle","personalization_contact_field_type_add_success":"Ki\u015fi alan\u0131 t\u00fcr\u00fc ba\u015far\u0131yla eklendi.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"Ki\u015fi alan\u0131 t\u00fcr\u00fc ba\u015far\u0131yla g\u00fcncellendi.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Mevcut bir ki\u015fi alan\u0131 t\u00fcr\u00fcn\u00fc sil","personalization_contact_field_type_modal_edit_title":"Mevcut bir ki\u015fi alan\u0131 t\u00fcr\u00fcn\u00fc d\u00fczenle","personalization_contact_field_type_modal_icon":"Simge (iste\u011fe ba\u011fl\u0131)","personalization_contact_field_type_modal_icon_help":"Bir simgeyi bu ki\u015fi alan\u0131 t\u00fcr\u00fcyle ili\u015fkilendirebilirsiniz. Bir Font Awesome simgesine bir referans eklemeniz gerekmektedir.","personalization_contact_field_type_modal_name":"\u0130sim","personalization_contact_field_type_modal_protocol":"Protokol (iste\u011fe ba\u011fl\u0131)","personalization_contact_field_type_modal_protocol_help":"Her yeni ki\u015fi alan\u0131 t\u00fcr\u00fc t\u0131klanabilir. Bir protokol ayarlanm\u0131\u015fsa, ayarlanan eylemi tetiklemek i\u00e7in onu kullan\u0131r\u0131z.","personalization_contact_field_type_modal_title":"Yeni bir ki\u015fi alan\u0131 t\u00fcr\u00fc ekle","personalization_contact_field_type_table_actions":"Eylemler","personalization_contact_field_type_table_name":"\u0130sim","personalization_contact_field_type_table_protocol":"Protokol","personalization_contact_field_type_title":"Ki\u015fi alan\u0131 t\u00fcrleri","personalization_genders_add":"Yeni cinsiyet t\u00fcr\u00fc ekle","personalization_genders_default":"Varsay\u0131lan cinsiyet","personalization_genders_desc":"\u0130htiyac\u0131n\u0131z olan say\u0131da cinsiyet tan\u0131mlayabilirsiniz. Hesab\u0131n\u0131zda en az bir cinsiyet t\u00fcr\u00fc olmal\u0131d\u0131r.","personalization_genders_f":"Kad\u0131n","personalization_genders_list_contact_number":"{count} ki\u015fi","personalization_genders_m":"Erkek","personalization_genders_make_default":"Varsay\u0131lan cinsiyeti de\u011fi\u015ftir","personalization_genders_modal_add":"Cinsiyet t\u00fcr\u00fc ekle","personalization_genders_modal_default":"Yeni ba\u011flant\u0131lar i\u00e7in genel cinsiyeti se\u00e7iniz","personalization_genders_modal_delete":"Cinsiyet t\u00fcr\u00fcn\u00fc sil","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Cinsiyet t\u00fcr\u00fcn\u00fc d\u00fczenle","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"\u0130sim","personalization_genders_modal_name_help":"\u0130leti\u015fim sayfas\u0131nda g\u00f6sterilecek olan cinsiyetin ismi.","personalization_genders_modal_sex":"Cinsiyet","personalization_genders_modal_sex_help":"\u0130li\u015fkileri tan\u0131mlamak i\u00e7in ve vCard i\u00e7e\/d\u0131\u015fa aktarma i\u015flemi s\u0131ras\u0131nda kullan\u0131l\u0131r.","personalization_genders_n":"Hi\u00e7biri veya hi\u00e7birine uygun de\u011fil","personalization_genders_o":"Di\u011fer","personalization_genders_select_default":"Varsay\u0131lan cinsiyeti se\u00e7","personalization_genders_table_default":"Varsay\u0131lan","personalization_genders_table_name":"\u0130sim","personalization_genders_table_sex":"Cinsiyet","personalization_genders_title":"Cinsiyet t\u00fcrleri","personalization_genders_u":"Bilinmeyen","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Aile & ili\u015fkiler","personalization_life_event_category_health_wellness":"Sa\u011fl\u0131k & Fitness","personalization_life_event_category_home_living":"Ev & ya\u015fam","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Seyahat & deneyimler","personalization_life_event_category_work_education":"\u0130\u015f ve e\u011fitim","personalization_life_event_type_achievement_or_award":"Ba\u015far\u0131lar ya da \u00d6d\u00fcller","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Y\u0131ld\u00f6n\u00fcm\u00fc","personalization_life_event_type_bought_a_home":"Ev alma","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"De\u011fi\u015fen inan\u00e7lar","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"\u0130li\u015fkiyi sonland\u0131rma","personalization_life_event_type_engagement":"Ni\u015fanlanma","personalization_life_event_type_expecting_a_baby":"Bebek bekleme","personalization_life_event_type_first_kiss":"\u0130lk \u00f6p\u00fcc\u00fck","personalization_life_event_type_first_met":"\u0130lk bulu\u015fma","personalization_life_event_type_first_word":"\u0130lk kelime","personalization_life_event_type_holidays":"Tatiller","personalization_life_event_type_home_improvement":"Evi geli\u015ftirme","personalization_life_event_type_loss_of_a_loved_one":"Sevdi\u011fin birini kaybetme","personalization_life_event_type_marriage":"Evlilik","personalization_life_event_type_military_service":"Askerlik hizmeti","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Ta\u015f\u0131nd\u0131","personalization_life_event_type_new_child":"Yeni \u00e7ocuk","personalization_life_event_type_new_eating_habits":"Yeni yemek al\u0131\u015fkanl\u0131klar\u0131","personalization_life_event_type_new_family_member":"Yeni aile \u00fcyesi","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"Yeni i\u015f","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"Yeni lisans","personalization_life_event_type_new_pet":"Yeni evcil hayvan","personalization_life_event_type_new_relationship":"Yeni ili\u015fki","personalization_life_event_type_new_roommate":"Yeni oda arkada\u015f\u0131","personalization_life_event_type_new_school":"Yeni okul","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"Yeni ara\u00e7","personalization_life_event_type_overcame_an_illness":"Bir hastal\u0131\u011f\u0131 yen","personalization_life_event_type_published_book_or_paper":"Kitap ya da makale yay\u0131n\u0131","personalization_life_event_type_quit_a_habit":"Bir al\u0131\u015fkanl\u0131\u011f\u0131 b\u0131rak","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Emeklilik","personalization_life_event_type_study_abroad":"Yurtd\u0131\u015f\u0131nda E\u011fitim","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"D\u00f6vme veya piercing","personalization_life_event_type_travel":"Seyahat","personalization_life_event_type_volunteer_work":"G\u00f6n\u00fcll\u00fc \u00e7al\u0131\u015fma","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Kilo verme","personalization_live_event_category_table_actions":"Eylemler","personalization_live_event_category_table_name":"\u0130sim","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"De\u011fi\u015fiklik kaydedildi","personalization_module_title":"\u00d6zellikler","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} g\u00fcn \u00f6nce","personalization_reminder_rule_save":"De\u011fi\u015fiklik kaydedildi","personalization_reminder_rule_title":"Hat\u0131rlatma kurallar\u0131","personalization_tab_title":"Hesab\u0131n\u0131z\u0131 ki\u015fiselle\u015ftirin","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Kodlar\u0131 panonuza kopyalay\u0131n","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"Her kurtarma kodunu bir kez kullanabilirsiniz.","recovery_help_intro":"Bunlar sizin kurtarma kodlar\u0131n\u0131z:","recovery_show":"Kurtarma kodlar\u0131n\u0131 g\u00f6ster","recovery_title":"Kurtarma kodlar\u0131","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Hesab\u0131 s\u0131f\u0131rla","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Hesab\u0131n\u0131z\u0131 s\u0131f\u0131rlay\u0131n","save":"Tercihleri g\u00fcncelle","security_help":"Hesab\u0131n\u0131z i\u00e7in g\u00fcvenlik unsurlar\u0131n\u0131 de\u011fi\u015ftirin.","security_title":"G\u00fcvenlik","settings_success":"Tercihler g\u00fcncellendi!","sidebar_personalization":"Ki\u015fiselle\u015ftirme","sidebar_settings":"Hesap ayarlar\u0131","sidebar_settings_api":"API","sidebar_settings_auditlogs":"\u0130nceleme g\u00fcnl\u00fc\u011f\u00fc","sidebar_settings_dav":"DAV Kaynaklar\u0131","sidebar_settings_export":"Verileri d\u0131\u015fa aktar","sidebar_settings_import":"Verileri i\u00e7e aktar","sidebar_settings_security":"G\u00fcvenlik","sidebar_settings_storage":"Saklama alan\u0131","sidebar_settings_subscriptions":"Abonelik","sidebar_settings_tags":"Etiket Y\u00f6netimi","sidebar_settings_users":"Kullan\u0131c\u0131lar","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Burada, ki\u015fileriniz hakk\u0131nda y\u00fcklenen t\u00fcm dok\u00fcmanlar\u0131 ve foto\u011fraflar\u0131 g\u00f6rebilirsiniz.","storage_title":"Depolama","storage_upgrade_notice":"Belge ve foto\u011fraf y\u00fckleyebilmek i\u00e7in hesab\u0131n\u0131z\u0131 y\u00fckseltin.","stripe_error_api_connection":"Stripe ile a\u011f ileti\u015fimi ba\u015far\u0131s\u0131z oldu. Daha sonra tekrar deneyin.","stripe_error_authentication":"Stripe ile yanl\u0131\u015f kimlik do\u011frulamas\u0131","stripe_error_card":"Kart\u0131n reddedildi. Reddedilme mesaj\u0131: :message","stripe_error_invalid_request":"Parametreler ge\u00e7ersiz. Daha sonra tekrar deneyin.","stripe_error_rate_limit":"\u015eu anda Stripe i\u00e7in \u00e7ok fazla istek var. Daha sonra tekrar deneyin.","subscriptions_account_cancel":"\u0130stedi\u011finiz zaman aboneli\u011finizi iptal edebilirsiniz<\/a>.","subscriptions_account_confirm_payment":"\u00d6demeniz \u015fu anda tamamlanmam\u0131\u015f durumda, l\u00fctfen \u00f6demenizi do\u011frulay\u0131n<\/a>.","subscriptions_account_current_paid_plan":":name plan\u0131ndas\u0131n\u0131z. Abone oldu\u011funuz i\u00e7in \u00e7ok te\u015fekk\u00fcrler.","subscriptions_account_current_plan":"Ge\u00e7erli plan\u0131n\u0131z","subscriptions_account_free_plan":"\u00dccretsiz plandas\u0131n\u0131z.","subscriptions_account_free_plan_benefits_import_data_vcard":"Ki\u015filerinizi vCard ile i\u00e7e aktar\u0131n","subscriptions_account_free_plan_benefits_reminders":"E-posta yoluyla hat\u0131rlatmalar","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"S\u0131n\u0131rs\u0131z say\u0131da kullan\u0131c\u0131","subscriptions_account_free_plan_upgrade":"Hesab\u0131n\u0131z\u0131 :name plan\u0131na y\u00fckseltebilirsiniz, ayl\u0131k $:price mal olacakt\u0131r. Avantajlar\u0131 \u015funlard\u0131r:","subscriptions_account_invoices":"Faturalar","subscriptions_account_invoices_download":"\u0130ndir","subscriptions_account_invoices_subscription":":startDate ile :endDate aras\u0131nda abonelik","subscriptions_account_next_billing":"Aboneli\u011finiz :date<\/strong> tarihinde otomatik olarak yenilenecektir.","subscriptions_account_payment":"Size en uygun \u00f6deme se\u00e7ene\u011fi hangisi?","subscriptions_account_upgrade":"Hesab\u0131n\u0131z\u0131 y\u00fckseltin","subscriptions_account_upgrade_choice":"A\u015fa\u011f\u0131daki planlardan birini se\u00e7in ve Monica'lar\u0131n\u0131 y\u00fckselten :customers \u00fczerinde ki\u015finin aras\u0131na kat\u0131l\u0131n.","subscriptions_account_upgrade_title":"Monica'y\u0131 bug\u00fcn y\u00fckseltin ve daha anlaml\u0131 ili\u015fkilere sahip olun.","subscriptions_back":"Ayarlara geri d\u00f6n","subscriptions_downgrade_cta":"D\u00fc\u015f\u00fcr","subscriptions_downgrade_limitations":"\u00dccretsiz plan\u0131n limitleri vard\u0131r. Paketi d\u00fc\u015f\u00fcrebilmek i\u00e7in a\u015fa\u011f\u0131daki kontrol listesini onaylanman gerekiyor:","subscriptions_downgrade_rule_contacts":":number adetten fazla aktif ki\u015fiye sahip olmamal\u0131s\u0131n\u0131z","subscriptions_downgrade_rule_contacts_constraint":"\u015eu anda :count adet ki\u015finiz<\/a> bulunmaktad\u0131r.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"Hesab\u0131nda sadece 1 ki\u015fi bulundurmal\u0131s\u0131n","subscriptions_downgrade_rule_users_constraint":"\u015eu an hesab\u0131nda 1 ki\u015fi<\/a> var.|\u015eu an hesab\u0131nda :count ki\u015fi<\/a> var.","subscriptions_downgrade_success":"\u00dccretsiz plana geri d\u00f6nd\u00fcn!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Hesab\u0131n\u0131z\u0131 \u00fccretsiz plana d\u00fc\u015f\u00fcr\u00fcn","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"Ya fikrimi de\u011fi\u015ftirirsem?","subscriptions_help_discounts_desc":"Evet var! Monica \u00f6\u011frencilere ve k\u00e2r amac\u0131 g\u00fctmeyen kurulu\u015flara \u00fccretsizdir. Sadece durumunuz ile ilgili bir kan\u0131t ile birlikte destek<\/a> ile ileti\u015fime ge\u00e7in ve hesab\u0131n\u0131za bu \u00f6zel duruma uygun hale getirelim.","subscriptions_help_discounts_title":"K\u00e2r amac\u0131 g\u00fctmeyen kurumlara ve e\u011fitim hizmetlerine indiriminiz var m\u0131?","subscriptions_help_limits_plan":"Evet. \u00dccretsiz plan :number adet ki\u015fiyi y\u00f6netmenize izin vermektedir.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"A\u00e7\u0131k kaynakl\u0131 proje de nedir?","subscriptions_help_title":"Merak edebilece\u011fin baz\u0131 ek detaylar","subscriptions_payment_cancelled":"Bu \u00f6deme iptal edildi.","subscriptions_payment_cancelled_title":"\u00d6deme \u0130ptal Edildi","subscriptions_payment_confirm_information":"\u00d6demenizi i\u015fleme koymak i\u00e7in ek onay gerekmektedir. L\u00fctfen a\u015fa\u011f\u0131da \u00f6deme ayr\u0131nt\u0131lar\u0131n\u0131z\u0131 doldurarak \u00f6demenizi onaylay\u0131n.","subscriptions_payment_confirm_title":":amount miktar\u0131ndaki \u00f6demenizi onaylay\u0131n","subscriptions_payment_error_name":"L\u00fctfen isminizi girin.","subscriptions_payment_succeeded":"Bu \u00f6deme zaten ba\u015far\u0131yla onayland\u0131.","subscriptions_payment_succeeded_title":"\u00d6deme Ba\u015far\u0131l\u0131","subscriptions_payment_success":"\u00d6deme ba\u015far\u0131l\u0131 oldu.","subscriptions_pdf_title":":name ayl\u0131k aboneli\u011finiz","subscriptions_plan_choose":"Bu plan\u0131 se\u00e7","subscriptions_plan_include1":"Y\u00fckseltmen ile birlikte gelen ayr\u0131cal\u0131klar:","subscriptions_plan_include2":"S\u0131n\u0131rs\u0131z say\u0131da ki\u015filer \u2022 S\u0131n\u0131rs\u0131z say\u0131da kullan\u0131c\u0131 \u2022 E-postayla bilgilendirme \u2022 vCard ile i\u00e7e aktar\u0131m \u2022 Ki\u015filer sayfas\u0131n\u0131 ki\u015fiselle\u015ftirebilme","subscriptions_plan_include3":"K\u00e2rlar\u0131n %100'\u00fc bu harika a\u00e7\u0131k kaynakl\u0131 projenin geli\u015ftirilmesine gidiyor.","subscriptions_plan_month_bonus":"\u0130stedi\u011fin zaman iptal et","subscriptions_plan_month_cost":"$5\/ay","subscriptions_plan_month_title":"Ayl\u0131k \u00f6deme","subscriptions_plan_year_bonus":"Bir y\u0131l boyunca g\u00f6n\u00fcl rahatl\u0131\u011f\u0131","subscriptions_plan_year_cost":"45$\/y\u0131ll\u0131k","subscriptions_plan_year_cost_save":"%25 k\u00e2r edeceksin","subscriptions_plan_year_title":"Y\u0131ll\u0131k \u00f6deme","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"\u00d6deme Stripe<\/a> taraf\u0131ndan ger\u00e7ekle\u015ftirilmektedir. Hi\u00e7bir kart bilgisi sunucumuza ula\u015fmamaktad\u0131r.","subscriptions_upgrade_choose":":plan plan\u0131n\u0131 se\u00e7tin.","subscriptions_upgrade_credit":"Kredi kart\u0131 veya banka kart\u0131","subscriptions_upgrade_infos":"Daha mutlu olamazd\u0131k. \u00d6deme bilgilerinizi a\u015fa\u011f\u0131ya girin.","subscriptions_upgrade_name":"Kart \u00fczerindeki isim","subscriptions_upgrade_submit":"{amount} \u00f6de","subscriptions_upgrade_success":"Te\u015fekk\u00fcrler! Art\u0131k bir abonesin.","subscriptions_upgrade_thanks":"D\u00fcnyay\u0131 daha iyi bir yer yapmaya \u00e7al\u0131\u015fan insanlar\u0131n toplulu\u011funa ho\u015f geldiniz.","subscriptions_upgrade_title":"Hesab\u0131n\u0131z\u0131 y\u00fckseltin","subscriptions_upgrade_zip":"Posta Kodu","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Etiketler, ki\u015filerinizi s\u0131n\u0131fland\u0131rman\u0131n harika bir yoludur.","tags_list_contact_number":":count ba\u011flant\u0131","tags_list_delete_confirmation":"Etiketi silmek istedi\u011finizden emin misiniz? Ba\u011flant\u0131lar silinmeyecek, sadece etiket silinecektir.","tags_list_delete_success":"Etiket ba\u015far\u0131yla silindi","tags_list_description":"Etiketler ayarlayarak ki\u015filerinizi d\u00fczenleyebilirsiniz. Etiketler klas\u00f6rler gibi \u00e7al\u0131\u015f\u0131r, ancak bir ki\u015fiye birden fazla etiket ekleyebilirsiniz. Yeni bir etiket eklemek i\u00e7in, ki\u015finin \u00fczerine ekleyin.","tags_list_title":"Etiketler","temperature_scale":"S\u0131cakl\u0131k \u00f6l\u00e7e\u011fi","temperature_scale_celsius":"Selsiyus","temperature_scale_fahrenheit":"Fahrenayt","timezone":"Zaman Dilimi","title_general":"Genel Bilgiler","title_i18n":"Uluslararas\u0131 ayarlar","title_layout":"G\u00f6r\u00fcn\u00fcm","users_accept_title":"Daveti kabul et ve yeni bir hesap olu\u015ftur","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"E-postayla kullan\u0131c\u0131 davet et","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Davet etmek istedi\u011finiz ki\u015finin e-posta adresini girin","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Birini davet etmek ister misin?","users_blank_cta":"Birini davet et","users_blank_description":"Bu kullan\u0131c\u0131 senin sahil oldu\u011fun eri\u015fime sahip olacak, ve ki\u015fi bilgilerini ekleme, d\u00fczenleme veya silme yetkisine sahip olacak.","users_blank_title":"Bu hesaba eri\u015fim sa\u011flayan tek ki\u015fi sensin.","users_error_already_invited":"Bu kullan\u0131c\u0131y\u0131 zaten davet ettiniz. L\u00fctfen ba\u015fka bir e-posta adresi se\u00e7in.","users_error_email_already_taken":"Bu e-posta adresi zaten al\u0131nm\u0131\u015f. L\u00fctfen ba\u015fka bir tane se\u00e7in","users_error_email_not_similar":"Bu, sizi davet eden ki\u015finin e-posta adresi de\u011fil.","users_error_please_confirm":"L\u00fctfen davet i\u015flemine devam etmeden \u00f6nce bu kullan\u0131c\u0131y\u0131 davet etmek istedi\u011finizi onaylay\u0131n","users_invitation_deleted_confirmation_message":"Davet ba\u015far\u0131yla silindi","users_invitation_need_subscription":"Daha fazla kullan\u0131c\u0131 eklemek i\u00e7in abonelik gerekmektedir.","users_invitations_delete_confirmation":"Bu daveti silmek istedi\u011finizden emin misiniz?","users_list_add_user":"Yeni kullan\u0131c\u0131 davet et","users_list_delete_confirmation":"Bu kullan\u0131c\u0131y\u0131 hesab\u0131n\u0131zdan silmek istedi\u011finizden emin misiniz?","users_list_invitations_explanation":"Birlikte \u00e7al\u0131\u015fmak i\u00e7in Monica'ya kat\u0131lmaya davet etti\u011finiz ki\u015filer a\u015fa\u011f\u0131dad\u0131r.","users_list_invitations_invited_by":"davet eden :name","users_list_invitations_sent_date":":date tarihinde g\u00f6nderildi","users_list_invitations_title":"Bekleyen davetler","users_list_title":"Hesab\u0131n\u0131za eri\u015fim hakk\u0131 olan kullan\u0131c\u0131lar","users_list_you":"Sizin Listeniz","webauthn_buttonAdvise":"G\u00fcvenlik anahtar\u0131nda bir d\u00fc\u011fme varsa, ona bas\u0131n.","webauthn_delete_confirmation":"Bu anahtar\u0131 silmek istedi\u011finizden emin misiniz?","webauthn_delete_success":"Anahtar silindi","webauthn_enable_description":"Yeni bir g\u00fcvenlik anahtar\u0131 ekleyin","webauthn_error_already_used":"Bu anahtar zaten kay\u0131tl\u0131. Tekrar kaydetmek gerekli de\u011fil.","webauthn_error_not_allowed":"\u0130\u015flem zaman a\u015f\u0131m\u0131na u\u011frad\u0131 veya izin verilmedi.","webauthn_insertKey":"G\u00fcvenlik anahtar\u0131n\u0131z\u0131 girin.","webauthn_key_name":"Anahtar ad\u0131:","webauthn_key_name_help":"Anahtar\u0131n\u0131za bir isim verin.","webauthn_last_use":"Son kullan\u0131m: {timestamp}","webauthn_noButtonAdvise":"E\u011fer yoksa, \u00e7\u0131kar\u0131n ve tekrar tak\u0131n.","webauthn_not_secured":"WebAuthn yaln\u0131zca g\u00fcvenli ba\u011flant\u0131lar\u0131 desteklemektedir. L\u00fctfen bu sayfay\u0131 https \u015femas\u0131 ile y\u00fckleyin.","webauthn_not_supported":"Taray\u0131c\u0131n\u0131z \u015fu anda WebAuthn'u desteklememektedir.","webauthn_success":"Anahtar\u0131n\u0131z alg\u0131land\u0131 ve do\u011fruland\u0131.","webauthn_title":"G\u00fcvenlik anahtar\u0131 \u2014 WebAuthn protokol\u00fc"},"validation":{"accepted":":attribute kabul edilmelidir.","active_url":":attribute ge\u00e7erli bir URL de\u011fil.","after":":attribtute , :date tarihinden sonra bir tarih olmal\u0131d\u0131r.","after_or_equal":":attribute tarihi :date tarihinden sonra veya tarihine e\u015fit olmal\u0131d\u0131r.","alpha":":attribute sadece harflerden olu\u015fmal\u0131d\u0131r.","alpha_dash":":attribute sadece harfler, rakamlar ve tirelerden olu\u015fmal\u0131d\u0131r.","alpha_num":":attribute sadece harfler ve rakamlar i\u00e7ermelidir.","array":":attribute dizi olmal\u0131d\u0131r.","attributes":[],"before":":attribute \u015fundan daha \u00f6nceki bir tarih olmal\u0131d\u0131r :date.","before_or_equal":":attribute tarihi :date tarihinden \u00f6nce veya tarihine e\u015fit olmal\u0131d\u0131r.","between":{"array":":attribute :min - :max aras\u0131nda nesneye sahip olmal\u0131d\u0131r.","file":":attribute :min - :max aras\u0131ndaki kilobayt de\u011feri olmal\u0131d\u0131r.","numeric":":attribute :min - :max aras\u0131nda olmal\u0131d\u0131r.","string":":attribute :min - :max aras\u0131nda karakterden olu\u015fmal\u0131d\u0131r."},"boolean":":attribute sadece do\u011fru veya yanl\u0131\u015f olmal\u0131d\u0131r.","confirmed":":attribute tekrar\u0131 e\u015fle\u015fmiyor.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute ge\u00e7erli bir tarih olmal\u0131d\u0131r.","date_equals":":attribute \u015funa e\u015fit bir tarih olmal\u0131d\u0131r: :date.","date_format":":attribute :format bi\u00e7imi ile e\u015fle\u015fmiyor.","different":":attribute ile :other birbirinden farkl\u0131 olmal\u0131d\u0131r.","digits":":attribute :digits rakam olmal\u0131d\u0131r.","digits_between":":attribute :min ile :max aras\u0131nda rakam olmal\u0131d\u0131r.","dimensions":":attribute g\u00f6rsel \u00f6l\u00e7\u00fcleri ge\u00e7ersiz.","distinct":":attribute alan\u0131 yinelenen bir de\u011fere sahip.","email":":attribute bi\u00e7imi ge\u00e7ersiz.","ends_with":":attribute \u015funlardan biriyle bitmelidir: :values","exists":"Se\u00e7ili :attribute ge\u00e7ersiz.","file":":attribute dosya olmal\u0131d\u0131r.","filled":":attribute alan\u0131n\u0131n doldurulmas\u0131 zorunludur.","gt":{"array":":attribute, :value \u00f6\u011feden fazla \u00f6\u011fe i\u00e7ermelidir.","file":":attribute, :value kilobayttan fazla olmal\u0131d\u0131r.","numeric":":attribute \u015fu de\u011ferden b\u00fcy\u00fck olmal\u0131d\u0131r: :value.","string":":attribute, :value karakterden fazla olmal\u0131d\u0131r."},"gte":{"array":":attribute, :value veya daha fazla \u00f6\u011fe i\u00e7ermelidir.","file":":attribute, :value kilobayttan fazla veya bu de\u011fere e\u015fit olmal\u0131d\u0131r.","numeric":":attribute, :value de\u011ferinden b\u00fcy\u00fck veya bu de\u011fere e\u015fit olmal\u0131d\u0131r.","string":":attribute, :value karakter veya daha fazla karakter i\u00e7ermelidir."},"image":":attribute alan\u0131 resim dosyas\u0131 olmal\u0131d\u0131r.","in":":attribute de\u011feri ge\u00e7ersiz.","in_array":":attribute alan\u0131 :other i\u00e7inde mevcut de\u011fil.","integer":":attribute tamsay\u0131 olmal\u0131d\u0131r.","ip":":attribute ge\u00e7erli bir IP adresi olmal\u0131d\u0131r.","ipv4":":attribute ge\u00e7erli bir IPv4 adresi olmal\u0131d\u0131r.","ipv6":":attribute ge\u00e7erli bir IPv6 adresi olmal\u0131d\u0131r.","json":":attribute ge\u00e7erli bir JSON de\u011fi\u015fkeni olmal\u0131d\u0131r.","lt":{"array":":attribute, :value \u00f6\u011feden az \u00f6\u011fe i\u00e7ermelidir.","file":":attribute, :value kilobayttan fazla olmal\u0131d\u0131r.","numeric":":attribute \u015fu de\u011ferden k\u00fc\u00e7\u00fck olmal\u0131d\u0131r: :value.","string":":attribute, :value karakterden az olmal\u0131d\u0131r."},"lte":{"array":":attribute, :value \u00f6\u011feden fazla \u00f6\u011fe i\u00e7ermemelidir.","file":":attribute, :value kilobayttan az veya bu de\u011fere e\u015fit olmal\u0131d\u0131r.","numeric":":attribute, :value de\u011ferinden d\u00fc\u015f\u00fck veya bu de\u011fere e\u015fit olmal\u0131d\u0131r.","string":":attribute, :value karakterden az veya buna e\u015fit olmal\u0131d\u0131r."},"max":{"array":":attribute de\u011feri :max adedinden az nesneye sahip olmal\u0131d\u0131r.","file":":attribute de\u011feri :max kilobayt de\u011ferinden k\u00fc\u00e7\u00fck olmal\u0131d\u0131r.","numeric":":attribute de\u011feri :max de\u011ferinden k\u00fc\u00e7\u00fck olmal\u0131d\u0131r.","string":":attribute de\u011feri :max karakter de\u011ferinden k\u00fc\u00e7\u00fck olmal\u0131d\u0131r."},"mimes":":attribute dosya bi\u00e7imi :values olmal\u0131d\u0131r.","mimetypes":":attribute dosya bi\u00e7imi :values olmal\u0131d\u0131r.","min":{"array":":attribute en az :min nesneye sahip olmal\u0131d\u0131r.","file":":attribute de\u011feri :min kilobayt de\u011ferinden b\u00fcy\u00fck olmal\u0131d\u0131r.","numeric":":attribute de\u011feri :min de\u011ferinden b\u00fcy\u00fck olmal\u0131d\u0131r.","string":":attribute de\u011feri :min karakter de\u011ferinden b\u00fcy\u00fck olmal\u0131d\u0131r."},"not_in":"Se\u00e7ili :attribute ge\u00e7ersiz.","not_regex":":attribute bi\u00e7imi ge\u00e7ersiz.","numeric":":attribute say\u0131 olmal\u0131d\u0131r.","password":"Parola hatal\u0131.","present":":attribute alan\u0131 mevcut olmal\u0131d\u0131r.","regex":":attribute bi\u00e7imi ge\u00e7ersiz.","required":":attribute alan\u0131 gereklidir.","required_if":":attribute alan\u0131, :other :value de\u011ferine sahip oldu\u011funda zorunludur.","required_unless":":attribute alan\u0131, :other alan\u0131 :value de\u011ferlerinden birine sahip olmad\u0131\u011f\u0131nda zorunludur.","required_with":":attribute alan\u0131 :values varken zorunludur.","required_with_all":":attribute alan\u0131 herhangi bir :values de\u011feri varken zorunludur.","required_without":":attribute alan\u0131 :values yokken zorunludur.","required_without_all":":attribute alan\u0131 :values de\u011ferlerinden herhangi biri yokken zorunludur.","same":":attribute ile :other e\u015fle\u015fmelidir.","size":{"array":":attribute :size nesneye sahip olmal\u0131d\u0131r.","file":":attribute :size kilobyte olmal\u0131d\u0131r.","numeric":":attribute :size olmal\u0131d\u0131r.","string":":attribute :size karakter olmal\u0131d\u0131r."},"starts_with":":attribute \u015funlardan biriyle ba\u015flamal\u0131d\u0131r: :values","string":":attribute dizge olmal\u0131d\u0131r.","timezone":":attribute ge\u00e7erli bir saat dilimi olmal\u0131d\u0131r.","unique":":attribute daha \u00f6nceden kay\u0131t edilmi\u015f.","uploaded":":attribute y\u00fcklemesi ba\u015far\u0131s\u0131z.","url":":attribute bi\u00e7imi ge\u00e7ersiz.","uuid":":attribute ge\u00e7erli bir UUID olmal\u0131d\u0131r.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/uk.json b/public/js/langs/uk.json deleted file mode 100644 index 7870e3d89b8..00000000000 --- a/public/js/langs/uk.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use<\/a> and Privacy Policy<\/a>. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Are you sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We\u2019ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account<\/a> to be alerted when it\u2019s up again.","error_unauthorized":"You don\u2019t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What\u2019s new","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading\u2026","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name\u2019s daughter","relationship_type_child_with_name":":name\u2019s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":":name\u2019s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name\u2019s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name\u2019s ex-wife","relationship_type_ex_husband_with_name":":name\u2019s ex-husband","relationship_type_ex_with_name":":name\u2019s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name\u2019s grand child","relationship_type_grandchild_with_name":":name\u2019s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name\u2019s grand parent","relationship_type_grandparent_with_name":":name\u2019s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name\u2019s lover","relationship_type_lover_with_name":":name\u2019s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name\u2019s mentor","relationship_type_mentor_with_name":":name\u2019s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name\u2019s niece","relationship_type_nephew_with_name":":name\u2019s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name\u2019s mother","relationship_type_parent_with_name":":name\u2019s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name\u2019s protege","relationship_type_protege_with_name":":name\u2019s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name\u2019s sister","relationship_type_sibling_with_name":":name\u2019s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name\u2019s stepdaughter","relationship_type_stepchild_with_name":":name\u2019s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name\u2019s stepmother","relationship_type_stepparent_with_name":":name\u2019s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name\u2019s subordinate","relationship_type_subordinate_with_name":":name\u2019s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name\u2019s aunt","relationship_type_uncle_with_name":":name\u2019s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","today":"today","type":"Type","unknown":"I don\u2019t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here<\/a>.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another<\/a>.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in<\/a> if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/a>.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Don\u2019t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik<\/a>","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don\u2019t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next \u276f","previous":"\u276e Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you\u2019ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you\u2019ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don\u2019t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you\u2019ve done with {name} in the past, and what you\u2019ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You\u2019ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You\u2019ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you\u2019ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"\u0431\u043b\u0438\u0437\u044c\u043a\u043e :age \u0440\u043e\u043a\u0456\u0432","age_exact_birthdate":"\u043d\u0430\u0440\u043e\u0434\u0438\u0432\u0441\u044f :date","age_exact_in_years":":age \u0440\u043e\u043a\u0456\u0432","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"\u0414\u0430\u0442\u0430 \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f \u043d\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"\u0410\u0440\u0445\u0456\u0432\u0443\u0432\u0430\u0442\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"\u0414\u043e\u0434\u0430\u0442\u0438 \u0449\u0435 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f","conversation_add_content":"\u0417\u0430\u043f\u0438\u0448\u0456\u0442\u044c, \u0449\u043e \u0431\u0443\u043b\u043e \u0441\u043a\u0430\u0437\u0430\u043d\u043e","conversation_add_error":"\u0412\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e \u0434\u043e\u0434\u0430\u0442\u0438 \u0445\u043e\u0447\u0430 \u0431 \u043e\u0434\u043d\u0435 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"\u0429\u043e \u0432\u0438 \u0441\u043a\u0430\u0437\u0430\u043b\u0438?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"\u0412\u0438","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"\u0416\u0443\u0440\u043d\u0430\u043b \u0440\u043e\u0437\u043c\u043e\u0432","conversation_list_table_content":"\u0427\u0430\u0441\u0442\u043a\u043e\u0432\u0438\u0439 \u0432\u043c\u0456\u0441\u0442 (\u043e\u0441\u0442\u0430\u043d\u043d\u0454 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f)","conversation_list_table_messages":"\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f","conversation_list_title":"\u0411\u0435\u0441\u0456\u0434\u0438","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0443 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044e","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"\u0412\u043f\u043e\u0434\u043e\u0431\u0430\u043d\u043d\u044f \u0443 \u0457\u0436\u0456 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043e","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"\u041c\u043e\u0436\u043b\u0438\u0432\u043e, :firstname \u0430\u0431\u043e \u0445\u0442\u043e\u0441\u044c \u0443 \u0440\u043e\u0434\u0438\u043d\u0456 :family \u043c\u0430\u0454 \u0430\u043b\u0435\u0440\u0433\u0456\u044e \u0430\u0431\u043e \u043d\u0435 \u043b\u044e\u0431\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u0443 \u043f\u043b\u044f\u0448\u043a\u0443 \u0432\u0438\u043d\u0430. \u0412\u043a\u0430\u0436\u0456\u0442\u044c \u0457\u0445 \u0442\u0443\u0442, \u0449\u043e\u0431 \u0432\u0438 \u043f\u0430\u043c'\u044f\u0442\u0430\u043b\u0438 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u0443, \u043a\u043e\u043b\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u0435 \u0457\u0445 \u043d\u0430 \u0432\u0435\u0447\u0435\u0440\u044e","food_preferences_edit_description_no_last_name":"\u041c\u043e\u0436\u043b\u0438\u0432\u043e, :firstname \u0430\u0431\u043e \u0445\u0442\u043e\u0441\u044c \u0443 \u0440\u043e\u0434\u0438\u043d\u0456 :family \u043c\u0430\u0454 \u0430\u043b\u0435\u0440\u0433\u0456\u044e \u0430\u0431\u043e \u043d\u0435 \u043b\u044e\u0431\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u0443 \u043f\u043b\u044f\u0448\u043a\u0443 \u0432\u0438\u043d\u0430. \u0412\u043a\u0430\u0436\u0456\u0442\u044c \u0457\u0445 \u0442\u0443\u0442, \u0449\u043e\u0431 \u0432\u0438 \u043f\u0430\u043c'\u044f\u0442\u0430\u043b\u0438 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u0443, \u043a\u043e\u043b\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u0435 \u0457\u0445 \u043d\u0430 \u0432\u0435\u0447\u0435\u0440\u044e","food_preferences_edit_title":"\u0412\u043a\u0430\u0436\u0456\u0442\u044c \u0432\u043f\u043e\u0434\u043e\u0431\u0430\u043d\u043d\u044f \u0443 \u0457\u0436\u0456","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}\u2019s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"\u0414\u0430\u0442\u0430 \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f","information_edit_description":"\u041e\u043f\u0438\u0441 (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)","information_edit_description_help":"\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u044c\u0441\u044f \u0432 \u0441\u043f\u0438\u0441\u043a\u0443 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0456\u0432, \u0449\u043e\u0431 \u0434\u043e\u0434\u0430\u0442\u0438 \u0434\u0435\u044f\u043a\u0438\u0439 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442, \u044f\u043a\u0449\u043e \u0446\u0435 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e.","information_edit_exact":"\u042f \u0437\u043d\u0430\u044e \u0442\u043e\u0447\u043d\u0443 \u0434\u0430\u0442\u0443 \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f \u0446\u0456\u0454\u0457 \u043b\u044e\u0434\u0438\u043d\u0438...","information_edit_firstname":"\u0406\u043c'\u044f","information_edit_lastname":"\u041f\u0440\u0456\u0437\u0432\u0438\u0449\u0435 (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)","information_edit_max_size":"\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e :size \u043a\u0456\u043b\u043e\u0431\u0430\u0439\u0442.","information_edit_max_size2":"\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e :size \u043a\u0456\u043b\u043e\u0431\u0430\u0439\u0442.","information_edit_not_year":"\u042f \u0437\u043d\u0430\u044e \u0434\u0435\u043d\u044c \u0456 \u043c\u0456\u0441\u044f\u0446\u044c \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f \u0446\u0456\u0454\u0457 \u043b\u044e\u0434\u0438\u043d\u0438, \u0430\u043b\u0435 \u043d\u0435 \u0440\u0456\u043a\u2026","information_edit_probably":"\u0426\u044f \u043b\u044e\u0434\u0438\u043d\u0430 \u0439\u043c\u043e\u0432\u0456\u0440\u043d\u043e...","information_edit_success":"\u041f\u0440\u043e\u0444\u0456\u043b\u044c \u0431\u0443\u043b\u043e \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043e","information_edit_title":"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043e\u0441\u043e\u0431\u0438\u0441\u0442\u0443 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044e :name","information_edit_unknown":"\u042f \u043d\u0435 \u0437\u043d\u0430\u044e \u0432\u0456\u043a\u0443 \u0446\u0456\u0454\u0457 \u043b\u044e\u0434\u0438\u043d\u0438","information_no_work_defined":"\u0406\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044e \u043f\u0440\u043e \u0440\u043e\u0431\u043e\u0442\u0443 \u043d\u0435 \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043e","information_work_at":"\u0443 :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name<\/a>","introductions_no_first_met_date":"I don\u2019t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You\u2019ve successfully updated the information about how you met this person","last_activity_date":"\u041e\u0441\u0442\u0430\u043d\u043d\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u0456\u0441\u0442\u044c \u0440\u0430\u0437\u043e\u043c: :date","last_activity_date_empty":"\u041e\u0441\u0442\u0430\u043d\u043d\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u0456\u0441\u0442\u044c \u0440\u0430\u0437\u043e\u043c: \u043d\u0435\u0432\u0456\u0434\u043e\u043c\u043e","last_called":"\u041e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u0432\u0438\u043a\u043b\u0438\u043a: :date","last_called_empty":"\u041e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u0432\u0438\u043a\u043b\u0438\u043a: \u043d\u0435\u0432\u0456\u0434\u043e\u043c\u043e","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"\u0412\u0438 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0430\u0454\u0442\u0435 \u0430\u0440\u0445\u0456\u0432\u043e\u0432\u0430\u043d\u0456 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0438. \u041f\u043e\u0434\u0438\u0432\u0456\u0442\u044c\u0441\u044f \u0441\u043f\u0438\u0441\u043e\u043a \u0430\u043a\u0442\u0438\u0432\u043d\u0438\u0445 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0456\u0432<\/a>.","list_link_to_archived_contacts":"\u0421\u043f\u0438\u0441\u043e\u043a \u0430\u0440\u0445\u0456\u0432\u043e\u0432\u0430\u043d\u0438\u0445 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0456\u0432","me":"\u0426\u0435 \u0432\u0438","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add\/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"\u041f\u0440\u0438\u0432\u0456\u0442\u0430\u0439\u0442\u0435 \u0437 \u0434\u043d\u0435\u043c \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f :name","people_add_birthday_reminder_deceased":"\u0423 \u0446\u0435\u0439 \u0434\u0435\u043d\u044c :name \u0432\u0456\u0434\u0441\u0432\u044f\u0442\u043a\u0443\u0432\u0430\u0432 \u0431\u0438 \u0441\u0432\u0456\u0439 \u0434\u0435\u043d\u044c \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f","people_add_cta":"\u0414\u043e\u0434\u0430\u0442\u0438","people_add_firstname":"\u0406\u043c'\u044f","people_add_gender":"\u0421\u0442\u0430\u0442\u044c","people_add_import":"\u0412\u0438 \u0445\u043e\u0447\u0435\u0442\u0435 \u0456\u043c\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0432\u0430\u0448\u0456 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0438<\/a>?","people_add_lastname":"\u041f\u0440\u0456\u0437\u0432\u0438\u0449\u0435 (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)","people_add_middlename":"\u0421\u0435\u0440\u0435\u0434\u043d\u0454 \u0456\u043c'\u044f (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)","people_add_missing":"\u041b\u044e\u0434\u0438\u043d\u0443 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0443 \u0437\u0430\u0440\u0430\u0437","people_add_new":"\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0443 \u043e\u0441\u043e\u0431\u0443","people_add_nickname":"\u041f\u0440\u0456\u0437\u0432\u0438\u0441\u044c\u043a\u043e (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)","people_add_reminder_for_birthday":"\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0449\u043e\u0440\u0456\u0447\u043d\u0435 \u043d\u0430\u0433\u0430\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0434\u043b\u044f \u0434\u043d\u044f \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f","people_add_success":":name \u0431\u0443\u043b\u043e \u0443\u0441\u043f\u0456\u0448\u043d\u043e \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043e","people_add_title":"\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0443 \u043e\u0441\u043e\u0431\u0443","people_delete_confirmation":"\u0412\u0438 \u0434\u0456\u0439\u0441\u043d\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0446\u0435\u0439 \u043a\u043e\u043d\u0442\u0430\u043a\u0442? \u0412\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u0454 \u043d\u0435\u0437\u0432\u043e\u0440\u043e\u0442\u043d\u0456\u043c.","people_delete_message":"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442","people_delete_success":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043e","people_edit_email_error":"\u041e\u0431\u043b\u0456\u043a\u043e\u0432\u0438\u0439 \u0437\u0430\u043f\u0438\u0441 \u0437 \u0446\u0456\u0454\u044e \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u044e \u0430\u0434\u0440\u0435\u0441\u043e\u044e \u0432\u0436\u0435 \u0456\u0441\u043d\u0443\u0454. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u043e\u0431\u0435\u0440\u0456\u0442\u044c \u0456\u043d\u0448\u0443.","people_export":"\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u044f\u043a vCard","people_list_account_upgrade_cta":"\u041e\u043d\u043e\u0432\u0456\u0442\u044c \u0442\u0430\u0440\u0438\u0444\u043d\u0438\u0439 \u043f\u043b\u0430\u043d","people_list_account_upgrade_title":"\u041e\u043d\u043e\u0432\u0456\u0442\u044c \u0441\u0432\u0456\u0439 \u043e\u0431\u043b\u0456\u043a\u043e\u0432\u0438\u0439 \u0437\u0430\u043f\u0438\u0441, \u0449\u043e\u0431 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0432\u0443\u0432\u0430\u0442\u0438 \u0439\u043e\u0433\u043e \u043d\u0430 \u043f\u043e\u0432\u043d\u0443 \u043f\u043e\u0442\u0443\u0436\u043d\u0456\u0441\u0442\u044c.","people_list_account_usage":"\u0412\u0430\u0448 \u043e\u0431\u043b\u0456\u043a\u043e\u0432\u0438\u0439 \u0437\u0430\u043f\u0438\u0441 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454 :current\/:limit \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0456\u0432","people_list_blank_cta":"\u0414\u043e\u0434\u0430\u0442\u0438 \u043a\u043e\u0433\u043e\u0441\u044c","people_list_blank_title":"\u0423 \u0432\u0430\u0441 \u0449\u0435 \u043d\u0456\u043a\u043e\u0433\u043e \u043d\u0435\u043c\u0430\u0454","people_list_clear_filter":"\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u0456\u043b\u044c\u0442\u0440","people_list_contacts_per_tags":"1 \u043a\u043e\u043d\u0442\u0430\u043a\u0442|:count \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0456\u0432","people_list_filter_tag":"\u041f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u0432\u0441\u0456 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0438, \u0432\u0456\u0434\u043c\u0456\u0447\u0435\u043d\u0456","people_list_filter_untag":"\u041f\u043e\u043a\u0430\u0437\u0430\u043d\u043e \u0432\u0441\u0456 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0438 \u0431\u0435\u0437 \u043c\u0456\u0442\u043e\u043a","people_list_firstnameAZ":"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430 \u0456\u043c\u0435\u043d\u0435\u043c \u0410 \u2192 \u042f","people_list_firstnameZA":"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430 \u0456\u043c\u0435\u043d\u0435\u043c \u042f \u2192 \u0410","people_list_hide_dead":"\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u043f\u043e\u043c\u0435\u0440\u043b\u0438\u0445 \u043b\u044e\u0434\u0435\u0439 (:count)","people_list_last_updated":"\u041e\u0441\u0442\u0430\u043d\u043d\u044f \u043a\u043e\u043d\u0441\u0443\u043b\u044c\u0442\u0430\u0446\u0456\u044f:","people_list_lastactivitydateNewtoOld":"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430 \u0434\u0430\u0442\u043e\u044e \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0457 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0456 \u0437\u0430 \u043d\u0430\u0439\u0441\u0442\u0430\u0440\u0456\u0448\u0438\u043c\u0438","people_list_lastactivitydateOldtoNew":"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430 \u0434\u0430\u0442\u043e\u044e \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0457 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0456 \u0432\u0456\u0434 \u0441\u0442\u0430\u0440\u0456\u0448\u0438\u0445 \u0434\u043e \u043d\u043e\u0432\u0456\u0448\u0438\u0445","people_list_lastnameAZ":"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430 \u043f\u0440\u0456\u0437\u0432\u0438\u0449\u0435\u043c \u0410 \u2192 \u042f","people_list_lastnameZA":"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430 \u043f\u0440\u0456\u0437\u0432\u0438\u0449\u0435\u043c \u042f \u2192 \u0410","people_list_number_kids":"1 \u0434\u0438\u0442\u0438\u043d\u0430|:count \u0434\u0456\u0442\u0435\u0439","people_list_number_reminders":"1 \u043d\u0430\u0433\u0430\u0434\u0443\u0432\u0430\u043d\u043d\u044f|:count \u043d\u0430\u0433\u0430\u0434\u0443\u0432\u0430\u043d\u044c","people_list_show_dead":"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043f\u043e\u043c\u0435\u0440\u043b\u0438\u0445 (:count)","people_list_sort":"\u0423\u043f\u043e\u0440\u044f\u0434\u043a\u0443\u0432\u0430\u0442\u0438","people_list_stats":"1 \u043a\u043e\u043d\u0442\u0430\u043a\u0442|:count \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0456\u0432","people_list_untagged":"\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0438 \u0431\u0435\u0437 \u043c\u0456\u0442\u043e\u043a","people_not_found":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e","people_save_and_add_another_cta":"\u041d\u0430\u0434\u0456\u0441\u043b\u0430\u0442\u0438 \u0456 \u0434\u043e\u0434\u0430\u0442\u0438 \u043a\u043e\u0433\u043e\u0441\u044c \u0456\u043d\u0448\u043e\u0433\u043e","people_search":"\u041f\u043e\u0448\u0443\u043a \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u0456\u0432...","people_search_all":"\u0423\u0441\u0456","people_search_next":"\u0414\u0430\u043b\u0456","people_search_no_results":"\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0456\u0432 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e","people_search_of":"\u0437","people_search_page":"\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430","people_search_prev":"\u041d\u0430\u0437\u0430\u0434","people_search_rows_per_page":"Rows per page","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u0430 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044f","section_personal_activities":"\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0456","section_personal_gifts":"\u041f\u043e\u0434\u0430\u0440\u0443\u043d\u043a\u0438","section_personal_notes":"\u041d\u043e\u0442\u0430\u0442\u043a\u0438","section_personal_reminders":"\u041d\u0430\u0433\u0430\u0434\u0443\u0432\u0430\u043d\u043d\u044f","section_personal_tasks":"\u0417\u0430\u0432\u0434\u0430\u043d\u043d\u044f","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"\u041e\u043d\u043e\u0432\u0438\u0442\u0438 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044e \u043f\u0440\u043e \u0440\u043e\u0431\u043e\u0442\u0443","work_edit_company":"\u041a\u043e\u043c\u043f\u0430\u043d\u0456\u044f (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)","work_edit_job":"\u041f\u043e\u0441\u0430\u0434\u0430 (\u043d\u0435\u043e\u0431\u043e\u0432'\u044f\u0437\u043a\u043e\u0432\u043e)","work_edit_success":"Work information updated","work_edit_title":"\u041e\u043d\u043e\u0432\u0438\u0442\u0438 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044e \u043f\u0440\u043e \u0440\u043e\u0431\u043e\u0442\u0443 :name","work_information":"\u0406\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044f \u043f\u0440\u043e \u0440\u043e\u0431\u043e\u0442\u0443"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you<\/em> in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/vendor.json b/public/js/langs/vendor.json deleted file mode 100644 index 0cc7ba79de7..00000000000 --- a/public/js/langs/vendor.json +++ /dev/null @@ -1 +0,0 @@ -{"confirmation.ar.confirmation":{"again":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0642\u0648\u0645 \u0628\u062a\u0623\u0643\u064a\u062f \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0642\u0628\u0644 \u0623\u0646 \u064a\u0645\u0643\u0646\u0643 \u062f\u062e\u0648\u0644 \u0627\u0644\u0645\u0648\u0642\u0639.\n \u0625\u0630\u0627 \u0644\u0645 \u062a\u062a\u0644\u0642\u0649 \u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u062a\u0623\u0643\u064a\u062f \u0641\u062a\u062d\u0642\u0642 \u0645\u0646 \u0645\u062c\u0644\u062f \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u063a\u064a\u0631 \u0647\u0627\u0645.\n \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0631\u0633\u0623\u0644\u0629 \u062a\u0623\u0643\u064a\u062f \u062c\u062f\u064a\u062f\u0629\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0636\u063a\u0637 \u0647\u0646\u0627<\/a>.","message":"\u0634\u0643\u0631\u0627\u064b \u0644\u062a\u0633\u062c\u064a\u0644 \u0625\u0634\u062a\u0631\u0627\u0643\u0643! \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u062a\u0623\u0643\u064a\u062f \u0628\u0631\u064a\u062f\u0643.","resend":"\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0623\u0644\u0629 \u0627\u0644\u062a\u0623\u0643\u064a\u062f. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0635\u0646\u062f\u0648\u0642 \u0628\u0631\u064a\u062f\u0643.","success":"\u0644\u0642\u062f \u062a\u0645 \u062a\u0623\u0643\u064a\u062f \u062d\u0633\u0627\u0628\u0643 \u0628\u0646\u062c\u0627\u062d! \u064a\u0645\u0643\u0646\u0643 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0627\u0644\u0622\u0646."},"confirmation.cs.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.da.confirmation":{"again":"Du skal bekr\u00e6fte din e-mail adresse f\u00f8r du kan tilg\u00e5 siden.\n Hvis du ikke har modtaget bekr\u00e6ftelsesmailen, b\u00f8r du tjekke din spam mappe.\n For at modtage en ny bekr\u00e6ftelsesmail kan du klikke her<\/a>.","message":"Tak for din tilmelding. Tjek venligst din e-mail for at bekr\u00e6fte din konto.","resend":"E-mail til bekr\u00e6ftelse er sendt. Kontroll\u00e9r venligst din e-mail.","success":"Du har bekr\u00e6ftet din konto! Du kan nu logge ind."},"confirmation.de.confirmation":{"again":"Du musst deine Email-Adresse verifzieren, bevor du auf die Webseite zugreifen kannst.\n Wenn du die Best\u00e4tigungs-E-Mail nicht erhalten hast, \u00fcberpr\u00fcfe deinen Spam-Ordner.\n Um eine neue Best\u00e4tigungs-E-Mail zu erhalten, klicke bitte hier<\/a>.","message":"Vielen Dank f\u00fcr deine Anmeldung! Bitte \u00fcberpr\u00fcfe deine E-Mail-Postfach, um deine E-Mail-Adresse zu best\u00e4tigen.","resend":"Wir haben dir einen Link zur Verifikation gesendet. Bitte \u00fcberpr\u00fcfe dein E-Mail-Postfach.","success":"Du hast dein Konto erfolgreich verifiziert. Du kannst dich ab sofort anmelden."},"confirmation.el.confirmation":{"again":"\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf email \u03c3\u03b1\u03c2 \u03c0\u03c1\u03bf\u03c4\u03bf\u03cd \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03b1\u03c0\u03b5\u03af \u03b7 \u03b5\u03af\u03c3\u03bf\u03b4\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b9\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf.\n \u0391\u03bd \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bb\u03ac\u03b2\u03b5\u03b9 \u03c4\u03bf email \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2 \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf spam.\n \u0393\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03b1\u03c2 \u03b1\u03c0\u03bf\u03c3\u03c4\u03b5\u03af\u03bb\u03bf\u03c5\u03bc\u03b5 \u03bd\u03ad\u03bf email \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b5\u03b4\u03ce<\/a>.","message":"\u0395\u03c5\u03c7\u03b1\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bc\u03b5 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b1\u03c2! \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03b1 email \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email \u03c3\u03b1\u03c2.","resend":"\u03a3\u03b1\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03b1\u03c0\u03bf\u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03b9 \u03ad\u03bd\u03b1 email \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf mailbox \u03c3\u03b1\u03c2.","success":"\u0388\u03c7\u03b5\u03c4\u03b5 \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03b5\u03b9 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c3\u03b1\u03c2! \u03a4\u03ce\u03c1\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af\u03c4\u03b5."},"confirmation.en-GB.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.en.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.es.confirmation":{"again":"Debes verificar tu correo electr\u00f3nico antes de acceder al sitio.\n Si no has recibido correo de confirmaci\u00f3n, revisa tu carpeta de spam.\n Para obtener un nuevo correo de confirmaci\u00f3n, haz clic aqu\u00ed<\/a>.","message":"\u00a1Gracias por registrarte! Por favor, revisa tus correos para confirmar tu direcci\u00f3n de correo electr\u00f3nico.","resend":"Se ha enviado un mensaje de confirmaci\u00f3n. Por favor, revisa tu bandeja de entrada.","success":"\u00a1Has verificado tu cuenta con \u00e9xito! Ya puedes iniciar sesi\u00f3n."},"confirmation.fa.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.fr.confirmation":{"again":"Vous devez v\u00e9rifier votre adresse courriel avant de pouvoir acc\u00e9der au site.\n Si vous n\u2019avez pas re\u00e7u le courriel de confirmation v\u00e9rifiez votre dossier spam.\n Pour obtenir un nouveau courriel de confirmation cliquez ici<\/a>.","message":"Merci pour votre inscription\u00a0! Merci de v\u00e9rifier vos courriels pour confirmer votre adresse courriel.","resend":"Un message de confirmation a \u00e9t\u00e9 envoy\u00e9. Merci de v\u00e9rifier votre bo\u00eete aux lettres.","success":"Votre compte a \u00e9t\u00e9 valid\u00e9 ! Vous pouvez maintenant vous connecter."},"confirmation.he.confirmation":{"again":"\u05e2\u05dc\u05d9\u05da \u05dc\u05d0\u05de\u05ea \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da \u05dc\u05e4\u05e0\u05d9 \u05e9\u05ea\u05d4\u05d9\u05d4 \u05dc\u05da \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d2\u05e9\u05ea \u05dc\u05d0\u05ea\u05e8.\n \u05d0\u05dd \u05dc\u05d0 \u05e7\u05d9\u05d1\u05dc\u05ea \u05d4\u05d5\u05d3\u05e2\u05ea \u05d0\u05d9\u05de\u05d5\u05ea \u05d1\u05d3\u05d5\u05d0\u05f4\u05dc \u05de\u05d5\u05d8\u05d1 \u05dc\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d3\u05d5\u05d0\u05e8 \u05d4\u05d6\u05d1\u05dc.\n \u05db\u05d3\u05d9 \u05dc\u05e7\u05d1\u05dc \u05d3\u05d5\u05d0\u05f4\u05dc \u05d0\u05d9\u05de\u05d5\u05ea \u05de\u05d7\u05d3\u05e9 \u05e0\u05d0 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05db\u05d0\u05df<\/a>.","message":"\u05ea\u05d5\u05d3\u05d4 \u05dc\u05da \u05e2\u05dc \u05d4\u05d4\u05e8\u05e9\u05de\u05d4! \u05e0\u05d0 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05ea\u05d9\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05dc\u05d0\u05de\u05ea \u05d0\u05ea \u05d0\u05d5\u05ea\u05d4.","resend":"\u05e0\u05e9\u05dc\u05d7\u05d4 \u05d4\u05d5\u05d3\u05e2\u05ea \u05d0\u05d9\u05de\u05d5\u05ea. \u05e0\u05d0 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d1\u05ea\u05d9\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05f4\u05dc \u05e9\u05dc\u05da.","success":"\u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05d0\u05d5\u05de\u05ea \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4! \u05db\u05e2\u05ea \u05d9\u05ea\u05d0\u05e4\u05e9\u05e8 \u05dc\u05da \u05dc\u05d4\u05d9\u05db\u05e0\u05e1 \u05d0\u05dc\u05d9\u05d5."},"confirmation.hr.confirmation":{"again":"Potrebno je potvrditi e-mail prije pristupa ovoj webstranici.\n ako niste primili e-mail provjetite spam folder.\n ako \u017eelite poslati novi e-mail za verifikaciju kliknite ovdje<\/a>.","message":"Hvala za prijavu! Molimo vas provjerite e-mail kako biste potvrdili va\u0161u e-mail adresu.","resend":"Poslan vam je e-mail za verifikaciju. Molimo provjerite Va\u0161 e-mail sandu\u010di\u0107.","success":"Uspje\u0161no ste potvrdili va\u0161 ra\u010dun! Mo\u017eete se ulogirati."},"confirmation.id.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.it.confirmation":{"again":"Devi verificare il tuo indirizzo mail prima di utilizzare il sito.\n Se non hai ricevuto la mail, controlla la cartella spam.\n Per ricevere una nuova mail di conferma clicca qui<\/a>.","message":"Grazie per esserti registrato! Per favore, controlla la tua casella mail per verificare il tuo indirizzo.","resend":"Un messaggio di conferma \u00e8 stato mandato, controlla la tua casella adesso.","success":"Indirizzo verificato con successo! Adesso puoi effettuare il login."},"confirmation.ja.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.nl.confirmation":{"again":"Voordat je kunt inloggen, moet je je e-mailadres verifi\u00ebren.\n Als je geen bevestiging ontvangen hebt, controleer dan eerst je spam-map.\n Klik hier<\/a> om een nieuwe bevestigings-e-mail te ontvangen.","message":"Bedankt voor het aanmelden! Controleer je e-mail om je e-mailadres bevestigen.","resend":"We hebben een verificatielink gestuurd. Kijk in je inbox.","success":"Je hebt je account met succes geverifieerd! Je kunt nu inloggen."},"confirmation.no.confirmation":{"again":"Du m\u00e5 bekrefte e-postadressen din f\u00f8r du f\u00e5r tilgang til nettstedet.\n Hvis du ikke har mottatt bekreftelsen for e-posten, sjekk s\u00f8ppelpostmappen din.\n For \u00e5 f\u00e5 en ny bekreftelses-e-post, klikk her<\/a>.","message":"Takk for at du registrerte deg! Vennligst sjekk e-posten din for \u00e5 bekrefte e-postadressen din.","resend":"En verifikasjons-epost har blitt sendt. Vennligst sjekk din e-post.","success":"Du har bekreftet din konto! Du kan n\u00e5 logge inn."},"confirmation.pt-BR.confirmation":{"again":"Voc\u00ea deve confirmar seu e-mail antes de acessar o site.\n Se voc\u00ea n\u00e3o recebeu o e-mail de confirma\u00e7\u00e3o, verifique sua caixa de spam.\n Para receber um novo e-mail de confirma\u00e7\u00e3o, por favor clique aqui<\/a>.","message":"Obrigado por se cadastrar! Por favor, verifique seus e-mails para confirmar seu endere\u00e7o de e-mail.","resend":"Um e-mail de confirma\u00e7\u00e3o foi enviado. Por favor, verifique seu e-mail.","success":"Voc\u00ea verificou com sucesso sua conta! Agora voc\u00ea pode entrar."},"confirmation.pt.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.ru.confirmation":{"again":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0441\u0432\u043e\u0439 email, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0441\u0430\u0439\u0442\u0443.\n \u0415\u0441\u043b\u0438 \u0432\u044b \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0438\u0441\u044c\u043c\u043e \u0441 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435\u043c, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043f\u0430\u043f\u043a\u0443 \"\u0421\u043f\u0430\u043c\".\n \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u043f\u0438\u0441\u044c\u043c\u043e \u0441 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435\u043c, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044c<\/a>.","message":"\u0421\u043f\u0430\u0441\u0438\u0431\u043e \u0437\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044e! \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0430\u043a\u043a\u0430\u0443\u043d\u0442, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0432\u0430\u0448 email.","resend":"\u041f\u0438\u0441\u044c\u043c\u043e \u0441 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435\u043c \u0431\u044b\u043b\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0432\u0430\u0448\u0443 \u043f\u043e\u0447\u0442\u0443.","success":"\u0412\u044b \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u043b\u0438 \u0441\u0432\u043e\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442. \u0422\u0435\u043f\u0435\u0440\u044c \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043e\u0439\u0442\u0438."},"confirmation.sv.confirmation":{"again":"Du m\u00e5ste verifiera din e-post innan du kan komma \u00e5t webbplatsen.\n Om du inte har f\u00e5tt bekr\u00e4ftelsemail kontrollera din skr\u00e4ppostmapp.\n F\u00f6r att f\u00e5 ett nytt bekr\u00e4ftelsemail v\u00e4nligen klicka h\u00e4r<\/a>.","message":"Tack f\u00f6r att du registrerar dig! Kontrollera dina e-postmeddelanden f\u00f6r att bekr\u00e4fta din e-postadress.","resend":"Ett verifieringsmail har skickats. V\u00e4nligen kontrollera din e-post.","success":"Du har verifierat ditt konto! Du kan nu logga in."},"confirmation.tr.confirmation":{"again":"Oturum a\u00e7abilmek i\u00e7in e-posta adresinizi do\u011frulatman\u0131z gerekmektedir.\n Gelen kutunuzda do\u011frulama mailini g\u00f6remiyorsan\u0131z Spam klas\u00f6r\u00fcn\u00fc de kontrol ediniz.\n Do\u011frulama mailini tekrar almak i\u00e7in l\u00fctfen buraya t\u0131klay\u0131n\u0131z<\/a>.","message":"Hesap olu\u015fturdu\u011funuz i\u00e7in te\u015fekk\u00fcr ederiz! L\u00fctfen e-posta adresinizi do\u011frulatmak i\u00e7in e-postan\u0131z\u0131 kontrol ediniz.","resend":"Do\u011frulama e-postas\u0131 g\u00f6nderildi. L\u00fctfen e-postan\u0131z\u0131 kontrol edin.","success":"Hesab\u0131n\u0131z\u0131 ba\u015far\u0131yla do\u011frulad\u0131n\u0131z. \u015eimdi giri\u015f yapabilirsiniz."},"confirmation.uk.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.vi.confirmation":{"again":"B\u1ea1n ph\u1ea3i x\u00e1c th\u1ef1c email tr\u01b0\u1edbc khi c\u00f3 th\u1ec3 truy c\u1eadp website.\n N\u1ebfu b\u1ea1n kh\u00f4ng nh\u1eadn \u0111\u01b0\u1ee3c email x\u00e1c th\u1ef1c, h\u00e3y ki\u1ec3m tra trong h\u00f2m th\u01b0 r\u00e1c.\n \u0110\u1ec3 l\u1ea5y email x\u00e1c th\u1ef1c m\u1edbi, h\u00e3y b\u1ea5m v\u00e0o \u0111\u00e2y<\/a>.","message":"C\u1ea3m \u01a1n b\u1ea1n \u0111\u00e3 \u0111\u0103ng k\u00ed! Vui l\u00f2ng ki\u1ec3m tra email \u0111\u1ec3 x\u00e1c th\u1ef1c \u0111\u1ecba ch\u1ec9 email c\u1ee7a b\u1ea1n.","resend":"Tin nh\u1eafn x\u00e1c th\u1ef1c \u0111\u00e3 \u0111\u01b0\u1ee3c g\u1eedi. H\u00e3y ki\u1ec3m tra h\u1ed9p th\u01b0 \u0111\u1ebfn c\u1ee7a b\u1ea1n.","success":"X\u00e1c th\u1ef1c t\u00e0i kho\u1ea3n th\u00e0nh c\u00f4ng. B\u1ea1n c\u00f3 th\u1ec3 \u0111\u0103ng nh\u1eadp ngay b\u00e2y gi\u1edd."},"confirmation.zh-TW.confirmation":{"again":"You must verify your email before you can access the site.\n If you have not received the confirmation email check your spam folder.\n To get a new confirmation email please click here<\/a>.","message":"Thanks for signing up! Please check your emails to confirm your email address.","resend":"A confirmation message has been sent. Please check your mailbox.","success":"You have successfully verified your account! You can now login."},"confirmation.zh.confirmation":{"again":"\u60a8\u9700\u8981\u9a8c\u8bc1\u90ae\u4ef6\u5730\u5740\u624d\u80fd\u8bbf\u95ee\u6b64\u7f51\u7ad9\u3002\n \u5982\u679c\u60a8\u6ca1\u6709\u6536\u5230\u7535\u5b50\u90ae\u4ef6\uff0c\u60a8\u53ef\u4ee5\u68c0\u67e5\u4e00\u4e0b\u5783\u573e\u7bb1\u3002\n \u8bf7 \u70b9\u51fb\u6b64\u5904<\/a>\u6765\u91cd\u65b0\u53d1\u9001\u9a8c\u8bc1\u90ae\u4ef6","message":"\u611f\u8c22\u60a8\u7684\u6ce8\u518c\uff01\u8bf7\u68c0\u67e5\u60a8\u7684\u90ae\u7bb1\u6765\u9a8c\u8bc1\u60a8\u7684\u90ae\u4ef6\u3002","resend":"\u9a8c\u8bc1\u90ae\u4ef6\u5df2\u53d1\u9001\uff0c\u8bf7\u68c0\u67e5\u60a8\u7684\u6536\u4ef6\u7bb1\u3002","success":"\u60a8\u5df2\u6210\u529f\u9a8c\u8bc1\u90ae\u4ef6\u5730\u5740\uff01\u73b0\u5728\u60a8\u53ef\u4ee5\u6b63\u5e38\u767b\u5f55\u4e86\u3002"},"webauthn.ar.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.cs.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.da.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.de.errors":{"auth_data_not_found":"Authentifizierungsdaten nicht gefunden","create_data_not_found":"Registrierungsdaten nicht gefunden","object_not_found":"Objekt nicht gefunden","user_unauthenticated":"Sie m\u00fcssen sich vor einer WebAuthn-Authentifizierung anmelden"},"webauthn.el.errors":{"auth_data_not_found":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2","create_data_not_found":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2","object_not_found":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf","user_unauthenticated":"\u0398\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5 \u03c0\u03c1\u03bf\u03c4\u03bf\u03cd \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03bc\u03af\u03b1 \u03b1\u03c5\u03b8\u03b5\u03bd\u03c4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 Webauth"},"webauthn.en-GB.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.en.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.es.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Objeto no encontrado","user_unauthenticated":"Necesitas iniciar sesi\u00f3n antes de realizar una autenticaci\u00f3n Webauthn"},"webauthn.fa.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.fr.errors":{"auth_data_not_found":"Donn\u00e9es d\u2019authentification introuvables","create_data_not_found":"Donn\u00e9es d\u2019enregistrement non trouv\u00e9es","object_not_found":"Objet introuvable","user_unauthenticated":"Vous devez vous connecter avant de faire une authentification Webauthn"},"webauthn.he.errors":{"auth_data_not_found":"\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05e0\u05ea\u05d5\u05e0\u05d9 \u05d0\u05d9\u05de\u05d5\u05ea","create_data_not_found":"\u05e0\u05ea\u05d5\u05e0\u05d9 \u05d4\u05d4\u05e8\u05e9\u05de\u05d4 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5","object_not_found":"\u05d4\u05e4\u05e8\u05d9\u05d8 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0","user_unauthenticated":"\u05e2\u05dc\u05d9\u05da \u05dc\u05d4\u05d9\u05db\u05e0\u05e1 \u05d1\u05d8\u05e8\u05dd \u05d1\u05d9\u05e6\u05d5\u05e2 \u05d0\u05d9\u05de\u05d5\u05ea \u05e2\u05dd Webauthn"},"webauthn.hr.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.id.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.it.errors":{"auth_data_not_found":"Dati di autenticazione non trovati","create_data_not_found":"Dati di registrazione non trovati","object_not_found":"Oggetto non trovato","user_unauthenticated":"Devi effettuare l'accesso prima di effettuare un'autenticazione Webauthn"},"webauthn.ja.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.nl.errors":{"auth_data_not_found":"Authenticatiedata niet gevonden","create_data_not_found":"Registratiedata niet gevonden","object_not_found":"Voorwerp niet gevonden","user_unauthenticated":"U moet inloggen voordat u een Webauthn authenticatie kunt uitvoeren"},"webauthn.no.errors":{"auth_data_not_found":"Autentiseringsdata ikke funnet","create_data_not_found":"Registreringsdata ikke funnet","object_not_found":"Objektet ble ikke funnet","user_unauthenticated":"Du m\u00e5 logge inn f\u00f8r du utf\u00f8rer en Webauthn-autentisering"},"webauthn.pt-BR.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.pt.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.ru.errors":{"auth_data_not_found":"\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b","create_data_not_found":"\u0414\u0430\u043d\u043d\u044b\u0435 \u043e \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b","object_not_found":"\u041e\u0431\u044a\u0435\u043a\u0442 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d","user_unauthenticated":"\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0432\u043e\u0439\u0442\u0438 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u043f\u0435\u0440\u0435\u0434 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c Webauth \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438"},"webauthn.sv.errors":{"auth_data_not_found":"Autentiseringsdata hittades inte","create_data_not_found":"Registerdata hittades inte","object_not_found":"Objekt hittades inte","user_unauthenticated":"Du m\u00e5ste logga in innan du g\u00f6r en Webauthn-autentisering"},"webauthn.tr.errors":{"auth_data_not_found":"Kimlik do\u011frulama verileri bulunamad\u0131","create_data_not_found":"Kay\u0131t verisi bulunamad\u0131","object_not_found":"Nesne bulunamad\u0131","user_unauthenticated":"Webauthn kimlik do\u011frulamas\u0131 yapmadan \u00f6nce giri\u015f yapman\u0131z gerekmektedir"},"webauthn.uk.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.vi.errors":{"auth_data_not_found":"Kh\u00f4ng t\u00ecm th\u1ea5y d\u1eef li\u1ec7u x\u00e1c th\u1ef1c","create_data_not_found":"Kh\u00f4ng t\u00ecm th\u1ea5y d\u1eef li\u1ec7u \u0111\u0103ng k\u00ed","object_not_found":"Kh\u00f4ng t\u00ecm th\u1ea5y \u0111\u1ed1i t\u01b0\u1ee3ng","user_unauthenticated":"B\u1ea1n c\u1ea7n \u0111\u0103ng nh\u1eadp tr\u01b0\u1edbc khi th\u1ef1c hi\u1ec7n x\u00e1c th\u1ef1c Webauthn"},"webauthn.zh-TW.errors":{"auth_data_not_found":"Authentication data not found","create_data_not_found":"Register data not found","object_not_found":"Object not found","user_unauthenticated":"You need to log in before doing a Webauthn authentication"},"webauthn.zh.errors":{"auth_data_not_found":"\u627e\u4e0d\u5230\u8eab\u4efd\u9a8c\u8bc1\u6570\u636e","create_data_not_found":"\u672a\u627e\u5230\u6ce8\u518c\u6570\u636e","object_not_found":"\u672a\u627e\u5230\u5bf9\u8c61","user_unauthenticated":" Webauthn \u8ba4\u8bc1\u4e4b\u524d\u60a8\u9700\u8981\u5148\u767b\u5f55"}} diff --git a/public/js/langs/vi.json b/public/js/langs/vi.json deleted file mode 100644 index 87b2dd04ac1..00000000000 --- a/public/js/langs/vi.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"Th\u00eam","another_day":"another day","application_description":"Monica l\u00e0 c\u00f4ng c\u1ee5 \u0111\u1ec3 qu\u1ea3n l\u00fd t\u01b0\u01a1ng t\u00e1c c\u1ee7a b\u1ea1n v\u1edbi ng\u01b0\u1eddi y\u00eau, b\u1ea1n b\u00e8 v\u00e0 gia \u0111\u00ecnh.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 h\u1ec7 th\u1ed1ng qu\u1ea3n tr\u1ecb quan h\u1ec7 c\u00e1 nh\u00e2n","back":"Quay l\u1ea1i","breadcrumb_add_note":"Th\u00eam ghi ch\u00fa","breadcrumb_add_significant_other":"Th\u00eam \u0111i\u1ec1u tr\u1ecdng \u0111\u1ea1i kh\u00e1c","breadcrumb_api":"API","breadcrumb_archived_contacts":"Li\u00ean h\u1ec7 \u0111\u00e3 l\u01b0u tr\u1eef","breadcrumb_dashboard":"Trang t\u1ed5ng quan","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"\u0110\u00e3 g\u1eb7p nhau th\u1ebf n\u00e0o","breadcrumb_edit_note":"S\u1eeda ghi ch\u00fa","breadcrumb_edit_significant_other":"S\u1eeda \u0111i\u1ec1u tr\u1ecdng \u0111\u1ea1i kh\u00e1c","breadcrumb_journal":"Nh\u1eadt k\u00fd","breadcrumb_list_contacts":"Danh s\u00e1ch li\u00ean h\u1ec7","breadcrumb_profile":"H\u1ed3 s\u01a1 c\u1ee7a :name","breadcrumb_settings":"C\u00e0i \u0111\u1eb7t","breadcrumb_settings_export":"Xu\u1ea5t","breadcrumb_settings_import":"Nh\u1eadp d\u1eef li\u1ec7u","breadcrumb_settings_import_report":"Nh\u1eadp b\u00e1o c\u00e1o","breadcrumb_settings_import_upload":"T\u1ea3i l\u00ean","breadcrumb_settings_personalization":"C\u00e1 nh\u00e2n h\u00f3a","breadcrumb_settings_security":"B\u1ea3o m\u1eadt","breadcrumb_settings_security_2fa":"X\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Nh\u00e3n","breadcrumb_settings_users":"Ng\u01b0\u1eddi d\u00f9ng","breadcrumb_settings_users_add":"Th\u00eam ng\u01b0\u1eddi d\u00f9ng","cancel":"H\u1ee7y","close":"\u0110\u00f3ng","compliance_desc":"Ch\u00fang t\u00f4i \u0111\u00e3 thay \u0111\u1ed5i \u0110i\u1ec1u kho\u1ea3n s\u1eed d\u1ee5ng<\/a> v\u00e0 Ch\u00ednh s\u00e1ch b\u1ea3o m\u1eadt<\/a>. Theo lu\u1eadt ch\u00fang t\u00f4i ph\u1ea3i h\u1ecfi b\u1ea1n xem x\u00e9t v\u00e0 ch\u1ea5p nh\u1eadn ch\u00fang, sau \u0111\u00f3 b\u1ea1n c\u00f3 th\u1ec3 ti\u1ebfp t\u1ee5c s\u1eed d\u1ee5ng t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n.","compliance_desc_end":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"\u0110\u1ed3ng \u00fd \u0111i\u1ec1u kho\u1ea3n m\u1edbi","compliance_title":"Xin l\u1ed7i v\u00ec s\u1ef1 gi\u00e1n \u0111o\u1ea1n.","confirm":"X\u00e1c nh\u1eadn","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Sao ch\u00e9p","create":"T\u1ea1o","date":"Ng\u00e0y","dav_birthdays":"Sinh nh\u00e2\u0323t","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Tasks","dav_tasks_description":":name\u2019s tasks","default_save_success":"L\u01b0u d\u1eef li\u1ec7u th\u00e0nh c\u00f4ng.","delete":"X\u00f3a","delete_confirm":"Are you sure?","done":"Xong","download":"T\u1ea3i xu\u1ed1ng","edit":"S\u1eeda","emotion_adoration":"Y\u00eau m\u1ebfn","emotion_affection":"C\u1ea3m k\u00edch","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Thu h\u00fat","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Ch\u0103m s\u00f3c","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Th\u01b0\u01a1ng x\u00f3t","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Th\u01b0\u01a1ng m\u1ebfn","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"C\u00f3 thi\u1ec7n c\u1ea3m","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Y\u00eau","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"T\u1ee9c gi\u1eadn","emotion_primary_fear":"S\u1ee3 h\u00e3i","emotion_primary_joy":"Vui s\u01b0\u1edbng","emotion_primary_love":"Y\u00eau","emotion_primary_sadness":"Bu\u1ed3n b\u00e3","emotion_primary_surprise":"Ng\u1ea1c nhi\u00ean","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"C\u1ea3m k\u00edch","emotion_secondary_cheerfulness":"Vui v\u1ebb","emotion_secondary_contentment":"H\u00e0i l\u00f2ng","emotion_secondary_disappointment":"Th\u1ea5t v\u1ecdng","emotion_secondary_disgust":"Ch\u00e1n gh\u00e9t","emotion_secondary_enthrallment":"Say m\u00ea","emotion_secondary_envy":"\u0110\u1ed1 k\u1ecb","emotion_secondary_exasperation":"B\u1ef1c t\u1ee9c","emotion_secondary_horror":"Gh\u00ea r\u1ee3n","emotion_secondary_irritation":"K\u00edch th\u00edch","emotion_secondary_longing":"Ao \u01b0\u1edbc","emotion_secondary_lust":"Ham mu\u1ed1n","emotion_secondary_neglect":"B\u1ecf b\u00ea","emotion_secondary_nervousness":"Lo l\u1eafng","emotion_secondary_optimism":"L\u1ea1c quan","emotion_secondary_pride":"T\u1ef1 h\u00e0o","emotion_secondary_rage":"Th\u1ecbnh n\u1ed9","emotion_secondary_relief":"C\u1ee9u tr\u1ee3","emotion_secondary_sadness":"Bu\u1ed3n b\u00e3","emotion_secondary_shame":"X\u1ea5u h\u1ed5","emotion_secondary_suffering":"\u0110au kh\u1ed5","emotion_secondary_surprise":"Ng\u1ea1c nhi\u00ean","emotion_secondary_sympathy":"C\u1ea3m th\u00f4ng","emotion_secondary_zest":"H\u0103ng h\u00e1i","emotion_sentimentality":"\u0110a c\u1ea3m","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Nh\u1ea1y c\u1ea3m","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"Ch\u00fang t\u00f4i s\u1ebd tr\u1edf l\u1ea1i ngay.","error_id":"ID l\u1ed7i: :id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"C\u00f3 l\u1ed7i khi l\u01b0u d\u1eef li\u1ec7u.","error_title":"R\u1ea5t ti\u1ebfc! \u0110\u00e3 x\u1ea3y ra l\u1ed7i.","error_try_again":"C\u00f3 s\u1ef1 c\u1ed1. Xin vui l\u00f2ng th\u1eed l\u1ea1i.","error_twitter":"Follow t\u00e0i kho\u1ea3n Twitter<\/a> \u0111\u1ec3 nh\u1eadn th\u00f4ng b\u00e1o \u0111i\u1ec1u g\u00ec \u0111ang di\u1ec5n ra.","error_unauthorized":"B\u1ea1n kh\u00f4ng c\u00f3 quy\u1ec1n ch\u1ec9nh s\u1eeda t\u00e0i nguy\u00ean n\u00e0y.","error_unavailable":"D\u1ecbch v\u1ee5 kh\u00f4ng kh\u1ea3 d\u1ee5ng","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"L\u1ecdc danh s\u00e1ch","footer_modal_version_release_away":"B\u1ea1n c\u00f3 :number b\u1ea3n c\u1eadp nh\u1eadt. B\u1ea1n n\u00ean c\u1eadp nh\u1eadt h\u1ec7 th\u1ed1ng.","footer_modal_version_whats_new":"C\u00f3 g\u00ec m\u1edbi","footer_new_version":"A new version of Monica is available","footer_newsletter":"B\u1ea3n tin","footer_privacy":"Ch\u00ednh s\u00e1ch quy\u1ec1n ri\u00eang t\u01b0","footer_release":"Ghi ch\u00fa ph\u00e1t h\u00e0nh","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"\u0110\u00f3ng g\u00f3p","footer_version":"Phi\u00ean b\u1ea3n: :version","gender_female":"N\u1eef","gender_male":"Nam","gender_no_gender":"Kh\u00f4ng x\u00e1c \u0111\u1ecbnh gi\u1edbi t\u00ednh","gender_none":"Rather not say","go_back":"Quay l\u1ea1i","header_changelog_link":"C\u1eadp nh\u1eadt s\u1ea3n ph\u1ea9m","header_logout_link":"Tho\u00e1t","header_settings_link":"C\u00e0i \u0111\u1eb7t","load_more":"Hi\u1ec3n th\u1ecb th\u00eam","loading":"Loading\u2026","main_nav_activities":"Ho\u1ea1t \u0111\u1ed9ng","main_nav_cta":"Th\u00eam ng\u01b0\u1eddi","main_nav_dashboard":"Trang t\u1ed5ng quan","main_nav_family":"Danh b\u1ea1","main_nav_journal":"Nh\u1eadt k\u00fd","main_nav_tasks":"T\u00e1c v\u1ee5","markdown_description":"Mu\u1ed1n \u0111\u1ecbnh d\u1ea1ng ch\u1eef t\u1ed1t h\u01a1n? Ch\u00fang t\u00f4i h\u1ed7 tr\u1ee3 Markdown v\u1edbi ch\u1eef \u0111\u1eadm, nghi\u00eang, danh s\u00e1ch v\u00e0 nhi\u1ec1u h\u01a1n th\u1ebf n\u1eefa.","markdown_link":"\u0110\u1ecdc t\u00e0i li\u1ec7u h\u01b0\u1edbng d\u1eabn","new":"new","no":"Kh\u00f4ng","percent_uploaded":"\u0110\u00e3 t\u1ea3i l\u00ean {percent}%","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name\u2019s best friend","relationship_type_bestfriend_with_name":":name\u2019s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name\u2019s boss","relationship_type_boss_with_name":":name\u2019s boss","relationship_type_child":"con trai","relationship_type_child_female":"con g\u00e1i","relationship_type_child_female_with_name":"con g\u00e1i c\u1ee7a :name","relationship_type_child_with_name":"con trai c\u1ee7a :name","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name\u2019s colleague","relationship_type_colleague_with_name":":name\u2019s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"anh em h\u1ecd","relationship_type_cousin_female_with_name":":name\u2019s cousin","relationship_type_cousin_with_name":"anh em h\u1ecd c\u1ee7a :name","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name\u2019s date","relationship_type_date_with_name":":name\u2019s date","relationship_type_ex":"ng\u01b0\u1eddi y\u00eau c\u0169","relationship_type_ex_female":"ng\u01b0\u1eddi y\u00eau c\u0169","relationship_type_ex_female_with_name":"ng\u01b0\u1eddi y\u00eau c\u0169 c\u1ee7a :name","relationship_type_ex_husband":"ch\u1ed3ng c\u0169","relationship_type_ex_husband_female":"v\u1ee3 c\u0169","relationship_type_ex_husband_female_with_name":"v\u1ee3 c\u0169 c\u1ee7a :name","relationship_type_ex_husband_with_name":"ch\u1ed3ng c\u0169 c\u1ee7a :name","relationship_type_ex_with_name":"ng\u01b0\u1eddi y\u00eau c\u0169 c\u1ee7a :name","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name\u2019s friend","relationship_type_friend_with_name":":name\u2019s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name\u2019s godmother","relationship_type_godfather_with_name":":name\u2019s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name\u2019s goddaughter","relationship_type_godson_with_name":":name\u2019s godson","relationship_type_grandchild":"ch\u00e1u","relationship_type_grandchild_female":"ch\u00e1u","relationship_type_grandchild_female_with_name":"ch\u00e1u c\u1ee7a :name","relationship_type_grandchild_with_name":"ch\u00e1u c\u1ee7a :name","relationship_type_grandparent":"\u00f4ng b\u00e0","relationship_type_grandparent_female":"\u00f4ng b\u00e0","relationship_type_grandparent_female_with_name":"\u00f4ng b\u00e0 c\u1ee7a :name","relationship_type_grandparent_with_name":"\u00f4ng b\u00e0 c\u1ee7a :name","relationship_type_group_family":"M\u1ed1i quan h\u1ec7 gia \u0111\u00ecnh","relationship_type_group_friend":"M\u1ed1i quan h\u1ec7 b\u1ea1n b\u00e8","relationship_type_group_love":"M\u1ed1i quan h\u1ec7 t\u00ecnh c\u1ea3m","relationship_type_group_other":"C\u00e1c m\u1ed1i quan h\u1ec7 kh\u00e1c","relationship_type_group_work":"M\u1ed1i quan h\u1ec7 c\u00f4ng vi\u1ec7c","relationship_type_inlovewith":"c\u00f3 t\u00ecnh c\u1ea3m v\u1edbi","relationship_type_inlovewith_female":"c\u00f3 t\u00ecnh c\u1ea3m v\u1edbi","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"\u0111\u01b0\u1ee3c th\u00edch b\u1edfi","relationship_type_lovedby_female":"\u0111\u01b0\u1ee3c th\u00edch b\u1edfi","relationship_type_lovedby_female_with_name":":name\u2019s secret lover","relationship_type_lovedby_with_name":":name\u2019s secret lover","relationship_type_lover":"ng\u01b0\u1eddi y\u00eau","relationship_type_lover_female":"ng\u01b0\u1eddi y\u00eau","relationship_type_lover_female_with_name":"ng\u01b0\u1eddi y\u00eau c\u1ee7a :name","relationship_type_lover_with_name":"ng\u01b0\u1eddi y\u00eau c\u1ee7a :name","relationship_type_mentor":"ng\u01b0\u1eddi h\u01b0\u1edbng d\u1eabn","relationship_type_mentor_female":"ng\u01b0\u1eddi h\u01b0\u1edbng d\u1eabn","relationship_type_mentor_female_with_name":"ng\u01b0\u1eddi h\u01b0\u1edbng d\u1eabn c\u1ee7a :name","relationship_type_mentor_with_name":"ng\u01b0\u1eddi h\u01b0\u1edbng d\u1eabn c\u1ee7a :name","relationship_type_nephew":"ch\u00e1u trai","relationship_type_nephew_female":"ch\u00e1u g\u00e1i","relationship_type_nephew_female_with_name":"ch\u00e1u g\u00e1i c\u1ee7a :name","relationship_type_nephew_with_name":"ch\u00e1u trai c\u1ee7a :name","relationship_type_parent":"b\u1ed1","relationship_type_parent_female":"m\u1eb9","relationship_type_parent_female_with_name":"m\u1eb9 c\u1ee7a :name","relationship_type_parent_with_name":"b\u1ed1 c\u1ee7a :name","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name\u2019s significant other","relationship_type_partner_with_name":":name\u2019s significant other","relationship_type_protege":"ng\u01b0\u1eddi \u0111\u01b0\u1ee3c b\u1ea3o h\u1ed9","relationship_type_protege_female":"ng\u01b0\u1eddi \u0111\u01b0\u1ee3c b\u1ea3o h\u1ed9","relationship_type_protege_female_with_name":"ng\u01b0\u1eddi \u0111\u01b0\u1ee3c :name b\u1ea3o h\u1ed9","relationship_type_protege_with_name":"ng\u01b0\u1eddi \u0111\u01b0\u1ee3c :name b\u1ea3o h\u1ed9","relationship_type_sibling":"Anh em trai","relationship_type_sibling_female":"Ch\u1ecb em g\u00e1i","relationship_type_sibling_female_with_name":"ch\u1ecb g\u00e1i c\u1ee7a :name","relationship_type_sibling_with_name":"anh trai c\u1ee7a :name","relationship_type_spouse":"v\u1ee3\/ch\u1ed3ng","relationship_type_spouse_female":"v\u1ee3\/ch\u1ed3ng","relationship_type_spouse_female_with_name":":name\u2019s spouse","relationship_type_spouse_with_name":":name\u2019s spouse","relationship_type_stepchild":"con trai ri\u00eang","relationship_type_stepchild_female":"con g\u00e1i ri\u00eang","relationship_type_stepchild_female_with_name":"con g\u00e1i ri\u00eang c\u1ee7a :name","relationship_type_stepchild_with_name":"con trai ri\u00eang c\u1ee7a :name","relationship_type_stepparent":"cha d\u01b0\u1ee3ng","relationship_type_stepparent_female":"m\u1eb9 k\u1ebf","relationship_type_stepparent_female_with_name":"m\u1eb9 k\u1ebf c\u1ee7a :name","relationship_type_stepparent_with_name":"d\u01b0\u1ee3ng c\u1ee7a :name","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":"c\u1ea5p d\u01b0\u1edbi c\u1ee7a :name","relationship_type_subordinate_with_name":"c\u1ea5p d\u01b0\u1edbi c\u1ee7a :name","relationship_type_uncle":"ch\u00fa\/b\u00e1c","relationship_type_uncle_female":"c\u00f4\/d\u00ec","relationship_type_uncle_female_with_name":"c\u00f4\/d\u00ec c\u1ee7a :name","relationship_type_uncle_with_name":"ch\u00fa\/b\u00e1c c\u1ee7a :name","remove":"Xo\u00e1","retry":"Th\u1eed l\u1ea1i","revoke":"Thu h\u1ed3i","save":"L\u01b0u","save_close":"L\u01b0u v\u00e0 \u0111\u00f3ng","today":"h\u00f4m nay","type":"Ki\u1ec3u","unknown":"T\u00f4i kh\u00f4ng bi\u1ebft","update":"C\u1eadp nh\u1eadt","upgrade":"N\u00e2ng c\u1ea5p \u0111\u1ec3 m\u1edf kh\u00f3a","upload":"T\u1ea3i l\u00ean","verify":"X\u00e1c minh","weather_clear-day":"Ng\u00e0y quang \u0111\u00e3ng","weather_clear-night":"\u0110\u00eam quang \u0111\u00e3ng","weather_cloudy":"Nhi\u1ec1u m\u00e2y","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"Th\u1eddi ti\u1ebft hi\u1ec7n t\u1ea1i","weather_fog":"S\u01b0\u01a1ng m\u00f9","weather_partly-cloudy-day":"M\u00e2y r\u1ea3i r\u00e1c","weather_partly-cloudy-night":"M\u00e2y r\u1ea3i r\u00e1c","weather_rain":"M\u01b0a","weather_sleet":"M\u01b0a tuy\u1ebft","weather_snow":"Tuy\u1ebft","weather_wind":"Gi\u00f3","with":"v\u1edbi","yes":"C\u00f3","yesterday":"h\u00f4m qua","zoom":"Ph\u00f3ng to \/ Thu nh\u1ecf"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Quay l\u1ea1i trang ch\u1ee7","button_remember":"Ghi nh\u1edb \u0111\u0103ng nh\u1eadp","change_language":"\u0110\u1ed5i ng\u00f4n ng\u1eef th\u00e0nh :lang","change_language_title":"\u0110\u1ed5i ng\u00f4n ng\u1eef:","confirmation_again":"N\u1ebfu b\u1ea1n mu\u1ed1n \u0111\u1ed5i \u0111\u1ecba ch\u1ec9 email, b\u1ea1n c\u00f3 th\u1ec3 b\u1ea5m v\u00e0o \u0111\u00e2y<\/a>.","confirmation_check":"Tr\u01b0\u1edbc khi ti\u1ebfp t\u1ee5c, h\u00e3y ki\u1ec3m tra email c\u1ee7a b\u1ea1n cho li\u00ean k\u1ebft x\u00e1c th\u1ef1c.","confirmation_fresh":"M\u1ed9t li\u00ean k\u1ebft x\u00e1c nh\u1eadn m\u1edbi \u0111\u00e3 \u0111\u01b0\u1ee3c g\u1eedi v\u00e0o \u0111\u1ecba ch\u1ec9 email c\u1ee7a b\u1ea1n.","confirmation_request_another":"N\u1ebfu b\u1ea1n kh\u00f4ng nh\u1eadn \u0111\u01b0\u1ee3c email b\u1ea5m v\u00e0o \u0111\u00e2y \u0111\u1ec3 y\u00eau c\u1ea7u m\u1ed9t email kh\u00e1c<\/a>.","confirmation_title":"Ki\u1ec3m tra l\u1ea1i \u0111\u1ecba ch\u1ec9 e-mail","create_account":"Create the first account by signing up<\/a>","email":"Email","email_change_current_email":"\u0110\u1ecba ch\u1ec9 email hi\u1ec7n t\u1ea1i:","email_change_new":"\u0110\u1ecba ch\u1ec9 email m\u1edbi","email_change_title":"\u0110\u1ed5i \u0111\u1ecba ch\u1ec9 email","email_changed":"\u0110\u1ecba ch\u1ec9 email c\u1ee7a b\u1ea1n \u0111\u00e3 \u0111\u01b0\u1ee3c thay \u0111\u1ed5i. H\u00e3y ki\u1ec3m tra h\u00f2m th\u01b0 \u0111\u1ec3 x\u00e1c nh\u1eadn l\u1ea1i.","failed":"Th\u00f4ng tin \u0111\u0103ng nh\u1eadp kh\u00f4ng \u0111\u00fang.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"X\u00e1c th\u1ef1c v\u1edbi x\u00e1c th\u1ef1c hai y\u1ebfu t\u1ed1","mfa_auth_webauthn":"X\u00e1c th\u1ef1c v\u1edbi kh\u00f3a b\u1ea3o m\u1eadt (WebAuthn)","not_authorized":"B\u1ea1n kh\u00f4ng c\u00f3 quy\u1ec1n th\u1ef1c hi\u1ec7n h\u00e0nh \u0111\u1ed9ng n\u00e0y","password":"Password","password_forget":"Qu\u00ean m\u1eadt kh\u1ea9u?","password_reset":"\u0110\u1eb7t l\u1ea1i m\u1eadt kh\u1ea9u","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"\u0110\u1eb7t l\u1ea1i m\u1eadt kh\u1ea9u","recovery":"Recovery code","register_action":"\u0110\u0103ng k\u00ed","register_create_account":"You need to create an account to use Monica","register_email":"Nh\u1eadp \u0111\u1ecba ch\u1ec9 email h\u1ee3p l\u1ec7","register_email_example":"you@home","register_firstname":"T\u00ean","register_firstname_example":"v\u00ed d\u1ee5: D\u0169ng","register_invitation_email":"For security purposes, please indicate the email of the person who\u2019ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"H\u1ecd","register_lastname_example":"eg. Nguy\u1ec5n","register_login":"\u0110\u0103ng nh\u1eadp<\/a> n\u1ebfu b\u1ea1n \u0111\u00e3 c\u00f3 t\u00e0i kho\u1ea3n.","register_password":"M\u1eadt kh\u1ea9u","register_password_confirmation":"X\u00e1c nh\u1eadn m\u1eadt kh\u1ea9u","register_password_example":"Nh\u1eadp m\u1eadt kh\u1ea9u b\u1ea3o m\u1eadt","register_policy":"\u0110\u0103ng k\u00ed c\u00f3 ngh\u0129a l\u00e0 b\u1ea1n \u0111\u00e3 \u0111\u1ecdc v\u00e0 \u0111\u1ed3ng \u00fd v\u1edbi \u0110i\u1ec1u kho\u1ea3n b\u1ea3o m\u1eadt<\/a> v\u00e0 Th\u1ecfa thu\u1eadn s\u1eed d\u1ee5ng<\/a>.","register_title_create":"T\u1ea1o t\u00e0i kho\u1ea3n Monica c\u1ee7a b\u1ea1n","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"\u0110\u0103ng k\u00fd","signup_disabled":"Vi\u1ec7c \u0111\u0103ng k\u00ed \u0111ang b\u1ecb t\u1ea1m d\u1eebng","signup_error":"C\u00f3 l\u1ed7i x\u1ea3y ra khi \u0111\u0103ng k\u00ed t\u00e0i kho\u1ea3n","signup_no_account":"Ch\u01b0a c\u00f3 t\u00e0i kho\u1ea3n?","throttle":"\u0110\u0103ng nh\u1eadp th\u1ea5t b\u1ea1i nhi\u1ec1u l\u1ea7n. Vui l\u00f2ng th\u1eed l\u1ea1i sau :seconds.","use_recovery":"Or you can use a recovery code<\/a>"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica l\u00e0 n\u01a1i s\u1eafp x\u1ebfp t\u1ea5t c\u1ea3 t\u01b0\u01a1ng t\u00e1c c\u1ee7a b\u1ea1n v\u1edbi ng\u01b0\u1eddi m\u00e0 b\u1ea1n quan t\u00e2m.","dashboard_blank_illustration":"Minh h\u1ecda b\u1edfi Freepik<\/a>","dashboard_blank_title":"Ch\u00e0o m\u1eebng \u0111\u1ebfn v\u1edbi t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n!","debts_you_owe":"You owe","notes_title":"B\u1ea1n ch\u01b0a c\u00f3 ghi ch\u00fa g\u1eafn d\u1ea5u sao n\u00e0o.","product_changes":"C\u1eadp nh\u1eadt s\u1ea3n ph\u1ea9m","product_view_details":"Xem chi ti\u1ebft","reminders_next_months":"S\u1ef1 ki\u1ec7n trong 3 th\u00e1ng t\u1edbi","reminders_none":"Kh\u00f4ng c\u00f3 nh\u1eafc nh\u1edf n\u00e0o trong th\u00e1ng n\u00e0y.","statistics_activities":"Ho\u1ea1t \u0111\u1ed9ng","statistics_contacts":"Contacts","statistics_gifts":"Qu\u00e0 t\u1eb7ng","tab_calls_blank":"B\u1ea1n ch\u01b0a ghi nh\u1eadt k\u00fd cu\u1ed9c g\u1ecdi n\u00e0o.","tab_debts":"Kho\u1ea3n n\u1ee3","tab_debts_blank":"B\u1ea1n ch\u01b0a ghi kho\u1ea3n n\u1ee3 n\u00e0o.","tab_favorite_notes":"Ghi ch\u00fa \u01b0a th\u00edch","tab_recent_calls":"Cu\u1ed9c g\u1ecdi g\u1ea7n \u0111\u00e2y","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter<\/kbd> to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"L\u01b0u","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"C\u1ea3m \u01a1n. Quay l\u1ea1i v\u00e0o ng\u00e0y mai \u0111\u1ec3 \u0111\u00e1nh gi\u00e1 l\u1ea1i m\u1ed9t ng\u00e0y c\u1ee7a b\u1ea1n.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you\u2019ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Ho\u1ea1t \u0111\u1ed9ng","journal_entry_type_journal":"Journal entry","journal_rate":"H\u00f4m nay c\u1ee7a b\u1ea1n th\u1ebf n\u00e0o? B\u1ea1n c\u00f3 th\u1ec3 \u0111\u00e1nh gi\u00e1 m\u1ed7i ng\u00e0y m\u1ed9t l\u1ea7n.","journal_show_comment":"Hi\u1ec3n th\u1ecb b\u00ecnh lu\u1eadn"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"\u0110\u00e3 c\u1eadp nh\u1eadt th\u00f4ng tin c\u00f4ng vi\u1ec7c.","settings_log_company_created":"\u0110\u00e3 t\u1ea1o c\u00f4ng ty t\u00ean :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"X\u00e1c th\u1ef1c \u0111\u1ecba ch\u1ec9 email","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica \u2013 Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"See :name\u2019s profile: :url","for":"For: :name","greetings":"Ch\u00e0o :username","invitation_button":"Ch\u1ea5p nh\u1eadn l\u1eddi m\u1eddi","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You\u2019ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica \u2013 You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you\u2019re having trouble clicking the \":actionText\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Xin ch\u00e0o!","notifications_regards":"Th\u00e2n","notifications_rights":"B\u1ea3n quy\u1ec1n \u0111\u00e3 \u0111\u01b0\u1ee3c b\u1ea3o h\u1ed9","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"\u0110\u1eb7t l\u1ea1i m\u1eadt kh\u1ea9u","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica \u2013 Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"K\u1ebf ti\u1ebfp \u276f","previous":"\u276e Tr\u01b0\u1edbc"},"passwords":{"changed":"Thay \u0111\u1ed5i m\u1eadt kh\u1ea9u th\u00e0nh c\u00f4ng.","invalid":"M\u1eadt kh\u1ea9u hi\u1ec7n t\u1ea1i kh\u00f4ng \u0111\u00fang.","reset":"M\u1eadt kh\u1ea9u c\u1ee7a b\u1ea1n \u0111\u00e3 \u0111\u01b0\u1ee3c \u0111\u1eb7t l\u1ea1i!","sent":"N\u1ebfu b\u1ea1n nh\u1eadp email \u0111\u00e3 c\u00f3 trong h\u1ec7 th\u1ed1ng, b\u1ea1n s\u1ebd nh\u1eadn \u0111\u01b0\u1ee3c 1 li\u00ean k\u1ebft \u0111\u1eb7t l\u1ea1i m\u1eadt kh\u1ea9u.","throttled":"Vui l\u00f2ng ch\u1edd tr\u01b0\u1edbc khi th\u1eed l\u1ea1i.","token":"Token \u0111\u1eb7t l\u1ea1i m\u1eadt kh\u1ea9u kh\u00f4ng h\u1ee3p l\u1ec7.","user":"N\u1ebfu b\u1ea1n nh\u1eadp email \u0111\u00e3 c\u00f3 trong h\u1ec7 th\u1ed1ng, b\u1ea1n s\u1ebd nh\u1eadn \u0111\u01b0\u1ee3c 1 li\u00ean k\u1ebft \u0111\u1eb7t l\u1ea1i m\u1eadt kh\u1ea9u."},"people":{"activities_activity":"Danh m\u1ee5c ho\u1ea1t \u0111\u1ed9ng","activities_add_activity":"Th\u00eam ho\u1ea1t \u0111\u1ed9ng","activities_add_category":"Cho bi\u1ebft m\u1ed9t danh m\u1ee5c","activities_add_date_occured":"Ho\u1ea1t \u0111\u1ed9ng n\u00e0y x\u1ea3y ra v\u00e0o...","activities_add_emotions":"Th\u00eam c\u1ea3m x\u00fac","activities_add_emotions_title":"B\u1ea1n c\u00f3 mu\u1ed1n ghi l\u1ea1i c\u1ea3m gi\u00e1c c\u1ee7a m\u00ecnh trong ho\u1ea1t \u0111\u1ed9ng n\u00e0y kh\u00f4ng? (kh\u00f4ng b\u1eaft bu\u1ed9c)","activities_add_error":"C\u00f3 l\u1ed7i x\u1ea3y ra khi th\u00eam ho\u1ea1t \u0111\u1ed9ng","activities_add_more_details":"Th\u00eam th\u00f4ng tin chi ti\u1ebft h\u01a1n","activities_add_participants":"Ai \u0111\u00e3 tham gia ho\u1ea1t \u0111\u1ed9ng n\u00e0y ngo\u00e0i {name}? (kh\u00f4ng b\u1eaft bu\u1ed9c)","activities_add_participants_cta":"Th\u00eam ng\u01b0\u1eddi tham gia","activities_add_pick_activity":"(Kh\u00f4ng b\u1eaft bu\u1ed9c) B\u1ea1n c\u00f3 mu\u1ed1n ph\u00e2n lo\u1ea1i ho\u1ea1t \u0111\u1ed9ng n\u00e0y kh\u00f4ng? B\u1ea1n kh\u00f4ng nh\u1ea5t thi\u1ebft ph\u1ea3i l\u00e0m, nh\u01b0ng n\u00f3 s\u1ebd gi\u00fap th\u1ed1ng k\u00ea sau n\u00e0y","activities_add_success":"Th\u00eam ho\u1ea1t \u0111\u1ed9ng th\u00e0nh c\u00f4ng","activities_add_title":"B\u1ea1n \u0111\u00e3 l\u00e0m g\u00ec v\u1edbi {name}?","activities_blank_add_activity":"Th\u00eam ho\u1ea1t \u0111\u1ed9ng","activities_blank_title":"Theo d\u00f5i nh\u1eefng g\u00ec b\u1ea1n \u0111\u00e3 l\u00e0m v\u1edbi {name} trong qu\u00e1 kh\u1ee9 v\u00e0 nh\u1eefng g\u00ec b\u1ea1n \u0111\u00e3 n\u00f3i","activities_delete_success":"Xo\u00e1 ho\u1ea1t \u0111\u1ed9ng th\u00e0nh c\u00f4ng","activities_item_information":":Activity. \u0110\u00e3 x\u1ea3y ra v\u00e0o :date","activities_list_category":"Th\u1ec3 lo\u1ea1i:","activities_list_date":"X\u1ea3y ra v\u00e0o","activities_list_emotions":"Emotions felt:","activities_list_participants":"Ng\u01b0\u1eddi tham gia:","activities_profile_number_occurences":":value ho\u1ea1t \u0111\u1ed9ng","activities_profile_subtitle":"B\u1ea1n \u0111\u00e3 ghi l\u1ea1i t\u1ea5t c\u1ea3 :total_activities ho\u1ea1t \u0111\u1ed9ng v\u1edbi :name v\u00e0 :activities_last_twelve_months ho\u1ea1t \u0111\u1ed9ng trong 12 th\u00e1ng qua.","activities_profile_title":"B\u00e1o c\u00e1o ho\u1ea1t \u0111\u1ed9ng gi\u1eefa :name v\u00e0 b\u1ea1n","activities_profile_year_summary":"D\u01b0\u1edbi \u0111\u00e2y l\u00e0 nh\u1eefng g\u00ec hai b\u1ea1n \u0111\u00e3 l\u00e0m trong n\u0103m :year","activities_profile_year_summary_activity_types":"D\u01b0\u1edbi \u0111\u00e2y l\u00e0 b\u1ea3ng ph\u00e2n t\u00edch c\u00e1c lo\u1ea1i ho\u1ea1t \u0111\u1ed9ng c\u00e1c b\u1ea1n \u0111\u00e3 l\u00e0m c\u00f9ng nhau trong n\u0103m :year","activities_summary":"M\u00f4 t\u1ea3 nh\u1eefng g\u00ec b\u1ea1n \u0111\u00e3 l\u00e0m","activities_update_success":"C\u1eadp nh\u1eadt ho\u1ea1t \u0111\u1ed9ng th\u00e0nh c\u00f4ng","activities_view_activities_report":"Xem b\u00e1o c\u00e1o ho\u1ea1t \u0111\u1ed9ng","activities_who_was_involved":"Ai \u0111\u00e3 tham gia?","activity_title":"Ho\u1ea1t \u0111\u1ed9ng","activity_type_ate_at_his_place":"\u0103n \u1edf ch\u1ed7 c\u1ee7a h\u1ecd","activity_type_ate_at_home":"\u0103n \u1edf nh\u00e0","activity_type_ate_restaurant":"\u0103n \u1edf nh\u00e0 h\u00e0ng","activity_type_category_cultural_activities":"Ho\u1ea1t \u0111\u1ed9ng v\u0103n ho\u00e1","activity_type_category_food":"\u1ea8m th\u1ef1c","activity_type_category_simple_activities":"Ho\u1ea1t \u0111\u1ed9ng \u0111\u01a1n gi\u1ea3n","activity_type_category_sport":"Th\u1ec3 thao","activity_type_did_sport_activities_together":"ch\u01a1i th\u1ec3 thao c\u00f9ng nhau","activity_type_just_hung_out":"v\u1eeba \u0111i ch\u01a1i","activity_type_picnicked":"picnic","activity_type_talked_at_home":"n\u00f3i chuy\u1ec7n \u1edf nh\u00e0","activity_type_watched_movie_at_home":"xem phim \u1edf nh\u00e0","activity_type_went_bar":"\u0111\u1ebfn bar","activity_type_went_concert":"\u0111\u1ebfn concert","activity_type_went_museum":"\u0111\u1ebfn vi\u1ec7n b\u1ea3o t\u00e0ng","activity_type_went_play":"\u0111i ch\u01a1i","activity_type_went_theater":"\u0111\u1ebfn r\u1ea1p chi\u1ebfu phim","age_approximate_in_years":"kho\u1ea3ng :age tu\u1ed5i","age_exact_birthdate":"sinh ng\u00e0y :date","age_exact_in_years":":age tu\u1ed5i","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar<\/a> is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Ng\u00e0y sinh ch\u01b0a \u0111\u01b0\u1ee3c c\u00e0i \u0111\u1eb7t","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you\u2019ve done with {name}","call_button":"Log a call","call_delete_confirmation":"B\u1ea1n ch\u1eafc ch\u1eafn mu\u1ed1n x\u00f3a cu\u1ed9c g\u1ecdi n\u00e0y?","call_delete_success":"\u0110\u00e3 x\u00f3a cu\u1ed9c g\u1ecdi th\u00e0nh c\u00f4ng","call_emotions":"C\u1ea3m x\u00fac:","call_empty_comment":"Kh\u00f4ng c\u00f3 chi ti\u1ebft","call_he_called":"{name} \u0111\u00e3 g\u1ecdi","call_title":"Cu\u1ed9c g\u1ecdi \u0111i\u1ec7n tho\u1ea1i","call_you_called":"B\u1ea1n \u0111\u00e3 g\u1ecdi","calls_add_success":"\u0110\u00e3 l\u01b0u cu\u1ed9c g\u1ecdi.","contact_address_form_city":"Th\u00e0nh ph\u1ed1 (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_form_country":"Qu\u1ed1c gia (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_form_latitude":"V\u0129 \u0111\u1ed9 (ch\u1ec9 s\u1ed1) (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_form_longitude":"Kinh \u0111\u1ed9 (ch\u1ec9 s\u1ed1) (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_form_name":"Nh\u00e3n (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_form_postal_code":"M\u00e3 b\u01b0u \u0111i\u1ec7n (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_form_province":"T\u1ec9nh (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_form_street":"T\u00ean \u0111\u01b0\u1eddng (kh\u00f4ng b\u1eaft bu\u1ed9c)","contact_address_title":"\u0110\u1ecba ch\u1ec9","contact_archive":"L\u01b0u tr\u1eef li\u00ean h\u1ec7","contact_archive_help":"Li\u00ean h\u1ec7 \u0111\u00e3 l\u01b0u tr\u1eef s\u1ebd kh\u00f4ng hi\u1ec7n \u1edf danh s\u00e1ch li\u00ean h\u1ec7, nh\u01b0ng v\u1eabn hi\u1ec3n th\u1ecb \u1edf k\u1ebft qu\u1ea3 t\u00ecm ki\u1ebfm.","contact_field_label_cell":"Di \u0111\u1ed9ng","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Ch\u00ednh","contact_field_label_other":"Kh\u00e1c","contact_field_label_pager":"M\u00e1y nh\u1eafn tin","contact_field_label_personal":"C\u00e1 nh\u00e2n","contact_field_label_work":"C\u01a1 quan","contact_info_address":"S\u1ed1ng t\u1ea1i","contact_info_form_contact_type":"Lo\u1ea1i li\u00ean h\u1ec7","contact_info_form_content":"N\u1ed9i dung","contact_info_form_personalize":"C\u00e1 nh\u00e2n ho\u00e1","contact_info_title":"Th\u00f4ng tin li\u00ean h\u1ec7","contact_unarchive":"B\u1ecf l\u01b0u tr\u1eef li\u00ean h\u1ec7","conversation_add_another":"Th\u00eam tin nh\u1eafn kh\u00e1c","conversation_add_content":"Ghi xu\u1ed1ng nh\u1eefng g\u00ec \u0111\u00e3 \u0111\u01b0\u1ee3c n\u00f3i","conversation_add_error":"Ph\u1ea3i c\u00f3 \u00edt nh\u1ea5t m\u1ed9t tin nh\u1eafn.","conversation_add_how":"B\u1ea1n giao ti\u1ebfp nh\u01b0 th\u1ebf n\u00e0o?","conversation_add_success":"Th\u00eam h\u1ed9i tho\u1ea1i th\u00e0nh c\u00f4ng.","conversation_add_title":"Ghi cu\u1ed9c h\u1ed9i tho\u1ea1i m\u1edbi","conversation_add_what_was_said":"B\u1ea1n \u0111\u00e3 n\u00f3i g\u00ec?","conversation_add_when":"B\u1ea1n c\u00f3 cu\u1ed9c h\u1ed9i tho\u1ea1i n\u00e0y khi n\u00e0o?","conversation_add_who_wrote":"Ai \u0111\u00e3 n\u00f3i tin nh\u1eafn n\u00e0y?","conversation_add_you":"b\u1ea1n","conversation_blank":"Ghi l\u1ea1i cu\u1ed9c h\u1ed9i tho\u1ea1i gi\u1eefa b\u1ea1n v\u00e0 :name tr\u00ean m\u1ea1ng x\u00e3 h\u1ed9i, SMS, ...","conversation_delete_link":"X\u00f3a cu\u1ed9c h\u1ed9i tho\u1ea1i","conversation_delete_success":"X\u00f3a h\u1ed9i tho\u1ea1i th\u00e0nh c\u00f4ng.","conversation_edit_delete":"B\u1ea1n ch\u1eafc ch\u1eafn mu\u1ed1n x\u00f3a v\u0129nh vi\u1ec5n cu\u1ed9c h\u1ed9i tho\u1ea1i n\u00e0y?","conversation_edit_success":"C\u1eadp nh\u1eadt h\u1ed9i tho\u1ea1i th\u00e0nh c\u00f4ng.","conversation_edit_title":"S\u1eeda cu\u1ed9c h\u1ed9i tho\u1ea1i","conversation_list_cta":"Nh\u1eadt k\u00fd tr\u00f2 chuy\u1ec7n","conversation_list_table_content":"M\u1ed9t ph\u1ea7n n\u1ed9i dung (tin nh\u1eafn m\u1edbi nh\u1ea5t)","conversation_list_table_messages":"Tin nh\u1eafn","conversation_list_title":"Cu\u1ed9c tr\u00f2 chuy\u1ec7n","debt_add_add_cta":"Th\u00eam kho\u1ea3n n\u1ee3","debt_add_amount":"l\u1ea5y t\u1ed5ng c\u1ee7a","debt_add_cta":"Th\u00eam kho\u1ea3n n\u1ee3","debt_add_reason":"for the following reason (optional)","debt_add_success":"\u0110\u00e3 th\u00eam kho\u1ea3n n\u1ee3 th\u00e0nh c\u00f4ng","debt_add_they_owe":":name n\u1ee3 b\u1ea1n","debt_add_title":"Qu\u1ea3n l\u00fd kho\u1ea3n n\u1ee3","debt_add_you_owe":"B\u1ea1n n\u1ee3 :name","debt_delete_confirmation":"B\u1ea1n ch\u1eafc ch\u1eafn mu\u1ed1n x\u00f3a kho\u1ea3n n\u1ee3 n\u00e0y?","debt_delete_success":"\u0110\u00e3 x\u00f3a kho\u1ea3n n\u1ee3 th\u00e0nh c\u00f4ng","debt_edit_success":"C\u1eadp nh\u1eadt kho\u1ea3n n\u1ee3 th\u00e0nh c\u00f4ng","debt_edit_update_cta":"C\u1eadp nh\u1eadt kho\u1ea3n n\u1ee3","debt_they_owe":":name n\u1ee3 b\u1ea1n :amount","debt_title":"Kho\u1ea3n n\u1ee3","debt_you_owe":"B\u1ea1n n\u1ee3 :amount","debts_blank_title":"Qu\u1ea3n l\u00fd c\u00e1c kho\u1ea3n b\u1ea1n n\u1ee3 :name ho\u1eb7c :name n\u1ee3 b\u1ea1n","deceased_add_reminder":"Th\u00eam nh\u1eafc nh\u1edf cho ng\u00e0y n\u00e0y","deceased_age":"Tu\u1ed5i th\u1ecd","deceased_date_label":"Ng\u00e0y m\u1ea5t","deceased_know_date":"T\u00f4i bi\u1ebft ng\u00e0y ng\u01b0\u1eddi n\u00e0y m\u1ea5t","deceased_label":"\u0110\u00e3 qua \u0111\u1eddi","deceased_label_with_date":"\u0110\u00e3 m\u1ea5t v\u00e0o :date","deceased_mark_person_deceased":"\u0110\u00e1nh d\u1ea5u ng\u01b0\u1eddi n\u00e0y \u0111\u00e3 qua \u0111\u1eddi","deceased_reminder_title":"K\u1ef7 ni\u1ec7m ng\u00e0y m\u1ea5t c\u1ee7a :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"T\u1ea3i t\u00e0i li\u1ec7u l\u00ean","document_list_title":"T\u00e0i li\u1ec7u","document_upload_zone_cta":"T\u1ea3i l\u00ean t\u1ec7p tin","document_upload_zone_error":"C\u00f3 l\u1ed7i x\u1ea3y ra khi t\u1ea3i t\u00e0i li\u1ec7u l\u00ean. H\u00e3y th\u1eed l\u1ea1i sau.","document_upload_zone_progress":"\u0110ang t\u1ea3i l\u00ean t\u00e0i li\u1ec7u...","edit_contact_information":"S\u1eeda th\u00f4ng tin li\u00ean h\u1ec7","emotion_this_made_me_feel":"This made you feel\u2026","food_preferences_add_success":"S\u1edf th\u00edch \u0103n u\u1ed1ng \u0111\u00e3 \u0111\u01b0\u1ee3c l\u01b0u","food_preferences_cta":"Th\u00eam s\u1edf th\u00edch \u0103n u\u1ed1ng","food_preferences_edit_cta":"L\u01b0u s\u1edf th\u00edch \u0103n u\u1ed1ng","food_preferences_edit_description":"C\u00f3 th\u1ec3 :firstname ho\u1eb7c ai \u0111\u00f3 trong gia \u0111\u00ecnh :family b\u1ecb d\u1ecb \u1ee9ng. Ho\u1eb7c kh\u00f4ng th\u00edch m\u1ed9t chai r\u01b0\u1ee3u c\u1ee5 th\u1ec3. \u0110\u00e1nh d\u1ea5u \u1edf \u0111\u00e2y \u0111\u1ec3 b\u1ea1n c\u00f3 th\u1ec3 nh\u1edb trong l\u1ea7n t\u1edbi b\u1ea1n m\u1eddi h\u1ecd \u0103n t\u1ed1i","food_preferences_edit_description_no_last_name":"C\u00f3 th\u1ec3 :firstname b\u1ecb d\u1ecb \u1ee9ng. Ho\u1eb7c kh\u00f4ng th\u00edch m\u1ed9t chai r\u01b0\u1ee3u c\u1ee5 th\u1ec3. \u0110\u00e1nh d\u1ea5u \u1edf \u0111\u00e2y \u0111\u1ec3 b\u1ea1n c\u00f3 th\u1ec3 nh\u1edb trong l\u1ea7n t\u1edbi b\u1ea1n m\u1eddi h\u1ecd \u0103n t\u1ed1i","food_preferences_edit_title":"Tr\u00ecnh b\u00e0y s\u1edf th\u00edch \u0103n u\u1ed1ng","food_preferences_title":"S\u1edf th\u00edch \u0103n u\u1ed1ng","gifts_add_comment":"Nh\u1eadn x\u00e9t (tu\u1ef3 ch\u1ecdn)","gifts_add_date":"Date (optional)","gifts_add_gift":"Th\u00eam qu\u00e0","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"\u00dd t\u01b0\u1edfng qu\u00e0 t\u1eb7ng","gifts_add_gift_name":"T\u00ean qu\u00e0","gifts_add_gift_received":"Qu\u00e0 \u0111\u00e3 nh\u1eadn","gifts_add_gift_title":"What is this gift?","gifts_add_link":"\u0110\u01b0\u1eddng d\u1eabn \u0111\u1ebfn trang web (tu\u1ef3 ch\u1ecdn)","gifts_add_photo":"\u1ea2nh (tu\u1ef3 ch\u1ecdn)","gifts_add_photo_title":"Th\u00eam \u1ea3nh cho m\u00f3n qu\u00e0 n\u00e0y","gifts_add_recipient":"Ng\u01b0\u1eddi nh\u1eadn (tu\u1ef3 ch\u1ecdn)","gifts_add_recipient_field":"Ng\u01b0\u1eddi nh\u1eadn","gifts_add_someone":"M\u00f3n qu\u00e0 n\u00e0y \u0111\u1eb7c bi\u1ec7t d\u00e0nh cho m\u1ed9t ng\u01b0\u1eddi n\u00e0o \u0111\u00f3 trong gia \u0111\u00ecnh c\u1ee7a {name}","gifts_add_success":"Th\u00eam qu\u00e0 th\u00e0nh c\u00f4ng","gifts_add_title":"Qu\u1ea3n l\u00fd qu\u00e0 cho :name","gifts_add_value":"Gi\u00e1 tr\u1ecb (tu\u1ef3 ch\u1ecdn)","gifts_delete_confirmation":"B\u1ea1n c\u00f3 ch\u1eafc mu\u1ed1n xo\u00e1 qu\u00e0 n\u00e0y?","gifts_delete_cta":"X\u00f3a","gifts_delete_success":"Xo\u00e1 qu\u00e0 th\u00e0nh c\u00f4ng","gifts_delete_title":"Xo\u00e1 qu\u00e0 t\u1eb7ng","gifts_for":"Cho: {name}","gifts_ideas":"\u00dd t\u01b0\u1edfng qu\u00e0 t\u1eb7ng","gifts_link":"Li\u00ean k\u1ebft","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"\u0110\u00e1nh d\u1ea5u l\u00e0 m\u1ed9t \u00fd t\u01b0\u1edfng","gifts_received":"Qu\u00e0 \u0111\u00e3 nh\u1eadn","gifts_title":"Qu\u00e0 t\u1eb7ng","gifts_update_success":"C\u1eadp nh\u1eadt qu\u00e0 t\u1eb7ng th\u00e0nh c\u00f4ng","gifts_view_comment":"Xem b\u00ecnh lu\u1eadn","information_edit_birthdate_label":"Ng\u00e0y sinh","information_edit_description":"M\u00f4 t\u1ea3 (t\u00f9y ch\u1ecdn)","information_edit_description_help":"S\u1eed d\u1ee5ng trong danh s\u00e1ch li\u00ean h\u1ec7 \u0111\u1ec3 th\u00eam v\u00e0i ng\u1eef c\u1ea3nh n\u1ebfu c\u1ea7n thi\u1ebft.","information_edit_exact":"T\u00f4i bi\u1ebft ch\u00ednh x\u00e1c ng\u00e0y th\u00e1ng n\u0103m sinh c\u1ee7a ng\u01b0\u1eddi n\u00e0y...","information_edit_firstname":"T\u00ean","information_edit_lastname":"H\u1ecd (Tu\u1ef3 ch\u1ecdn)","information_edit_max_size":"T\u1ed1i \u0111a :size Kb.","information_edit_max_size2":"T\u1ed1i \u0111a {size} Kb.","information_edit_not_year":"T\u00f4i bi\u1ebft ng\u00e0y th\u00e1ng sinh c\u1ee7a ng\u01b0\u1eddi n\u00e0y, nh\u01b0ng kh\u00f4ng bi\u1ebft n\u0103m sinh\u2026","information_edit_probably":"Ng\u01b0\u1eddi n\u00e0y c\u00f3 l\u1ebd l\u00e0...","information_edit_success":"H\u1ed3 s\u01a1 \u0111\u00e3 \u0111\u01b0\u1ee3c c\u1eadp nh\u1eadt th\u00e0nh c\u00f4ng","information_edit_title":"S\u1eeda th\u00f4ng tin c\u00e1 nh\u00e2n c\u1ee7a :name","information_edit_unknown":"T\u00f4i kh\u00f4ng bi\u1ebft tu\u1ed5i ng\u01b0\u1eddi n\u00e0y","information_no_work_defined":"Kh\u00f4ng c\u00f3 th\u00f4ng tin c\u00f4ng vi\u1ec7c","information_work_at":"\u1edf :company","introductions_add_reminder":"Th\u00eam l\u1eddi nh\u1eafc \u0111\u1ec3 k\u1ef7 ni\u1ec7m cu\u1ed9c g\u1eb7p g\u1ee1 n\u00e0y v\u00e0o ng\u00e0y k\u1ef7 ni\u1ec7m s\u1ef1 ki\u1ec7n n\u00e0y \u0111\u00e3 x\u1ea3y ra","introductions_additional_info":"Di\u1ec5n gi\u1ea3i l\u00e0m th\u1ebf n\u00e0o b\u1ea1n g\u1eb7p v\u00e0 \u1edf \u0111\u00e2u","introductions_blank_cta":"Tr\u00ecnh b\u00e0y b\u1ea1n \u0111\u00e3 g\u1eb7p :name nh\u01b0 th\u1ebf n\u00e0o","introductions_edit_met_through":"C\u00f3 ai \u0111\u00f3 gi\u1edbi thi\u1ec7u b\u1ea1n cho ng\u01b0\u1eddi n\u00e0y?","introductions_first_met_date":"Ng\u00e0y b\u1ea1n g\u1eb7p","introductions_first_met_date_known":"\u0110\u00e2y l\u00e0 ng\u00e0y ch\u00fang t\u00f4i g\u1eb7p","introductions_met_date":"G\u1eb7p v\u00e0o :date","introductions_met_through":"\u0110\u00e3 g\u1eb7p qua :name<\/a>","introductions_no_first_met_date":"T\u00f4i kh\u00f4ng bi\u1ebft ng\u00e0y ch\u00fang t\u00f4i g\u1eb7p","introductions_no_met_through":"Kh\u00f4ng c\u00f3 ai","introductions_reminder_title":"K\u1ef7 ni\u1ec7m ng\u00e0y \u0111\u1ea7u ti\u00ean g\u1eb7p nhau","introductions_sidebar_title":"B\u1ea1n \u0111\u00e3 g\u1eb7p nhau nh\u01b0 th\u1ebf n\u00e0o","introductions_title_edit":"B\u1ea1n \u0111\u00e3 g\u1eb7p :name th\u1ebf n\u00e0o?","introductions_update_success":"C\u1eadp nh\u1eadt th\u00f4ng tin l\u00e0m th\u1ebf n\u00e0o g\u1eb7p ng\u01b0\u1eddi n\u00e0y th\u00e0nh c\u00f4ng","last_activity_date":"L\u1ea7n ho\u1ea1t \u0111\u1ed9ng c\u00f9ng nhau g\u1ea7n \u0111\u00e2y nh\u1ea5t: :date","last_activity_date_empty":"L\u1ea7n ho\u1ea1t \u0111\u1ed9ng c\u00f9ng nhau g\u1ea7n \u0111\u00e2y nh\u1ea5t: kh\u00f4ng r\u00f5","last_called":"L\u1ea7n g\u1ecdi g\u1ea7n \u0111\u00e2y nh\u1ea5t: :date","last_called_empty":"L\u1ea7n g\u1ecdi g\u1ea7n \u0111\u00e2y nh\u1ea5t: kh\u00f4ng r\u00f5","life_event_blank":"Ghi l\u1ea1i nh\u1eefng g\u00ec x\u1ea3y ra trong \u0111\u1eddi c\u1ee7a {name} \u0111\u1ec3 tham chi\u1ebfu trong t\u01b0\u01a1ng lai.","life_event_category_family_relationships":"Gia \u0111\u00ecnh & c\u00e1c m\u1ed1i quan h\u1ec7","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Du l\u1ecbch v\u00e0 tr\u1ea3i nghi\u1ec7m","life_event_category_work_education":"C\u00f4ng vi\u1ec7c & h\u1ecdc v\u1ea5n","life_event_create_add_yearly_reminder":"Th\u00eam nh\u1eafc nh\u1edf h\u00e0ng n\u0103m cho s\u1ef1 ki\u1ec7n n\u00e0y","life_event_create_category":"T\u1ea5t c\u1ea3 th\u1ec3 lo\u1ea1i","life_event_create_date":"B\u1ea1n kh\u00f4ng c\u1ea7n ch\u1ec9 r\u00f5 ng\u00e0y ho\u1eb7c th\u00e1ng - ch\u1ec9 b\u1eaft bu\u1ed9c n\u0103m.","life_event_create_default_description":"Th\u00eam th\u00f4ng tin v\u1ec1 nh\u1eefng g\u00ec b\u1ea1n bi\u1ebft","life_event_create_default_story":"C\u00e2u chuy\u1ec7n (tu\u1ef3 ch\u1ecdn)","life_event_create_default_title":"Ti\u00eau \u0111\u1ec1 (tu\u1ef3 ch\u1ecdn)","life_event_create_life_event":"Th\u00eam s\u1ef1 ki\u1ec7n trong \u0111\u1eddi","life_event_create_success":"\u0110\u00e3 th\u00eam s\u1ef1 ki\u1ec7n trong \u0111\u1eddi","life_event_date_it_happened":"Ng\u00e0y x\u1ea3y ra","life_event_delete_description":"B\u1ea1n ch\u1eafc ch\u1eafn mu\u1ed1n xo\u00e1 v\u0129nh vi\u1ec5n s\u1ef1 ki\u1ec7n n\u00e0y?","life_event_delete_success":"\u0110\u00e3 xo\u00e1 s\u1ef1 ki\u1ec7n","life_event_delete_title":"Xo\u00e1 s\u1ef1 ki\u1ec7n trong \u0111\u1eddi","life_event_list_cta":"Th\u00eam s\u1ef1 ki\u1ec7n trong \u0111\u1eddi","life_event_list_tab_life_events":"S\u1ef1 ki\u1ec7n trong \u0111\u1eddi","life_event_list_tab_other":"Ghi ch\u00fa, nh\u1eafc nh\u1edf,...","life_event_list_title":"S\u1ef1 ki\u1ec7n trong \u0111\u1eddi","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"K\u1ec9 ni\u1ec7m","life_event_sentence_bought_a_home":"\u0110\u00e3 mua nh\u00e0","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"\u0110\u00e3 k\u1ebft th\u00fac m\u1ed1i quan h\u1ec7","life_event_sentence_engagement":"\u0110\u00e3 \u0111\u00ednh h\u00f4n","life_event_sentence_expecting_a_baby":"Mu\u1ed1n c\u00f3 con","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"C\u1ea3i t\u1ea1o nh\u00e0","life_event_sentence_loss_of_a_loved_one":"\u0110\u00e3 m\u1ea5t m\u1ed9t ng\u01b0\u1eddi th\u00e2n y\u00eau","life_event_sentence_marriage":"\u0110\u00e3 k\u1ebft h\u01a1n","life_event_sentence_military_service":"\u0110\u00e3 b\u1eaft \u0111\u1ea7u ngh\u0129a v\u1ee5 qu\u00e2n s\u1ef1","life_event_sentence_moved":"\u0110\u00e3 chuy\u1ec3n \u0111i","life_event_sentence_new_child":"\u0110\u00e3 c\u00f3 con","life_event_sentence_new_eating_habits":"\u0110\u00e3 b\u1eaft \u0111\u1ea7u m\u1ed9t th\u00f3i quen \u0103n u\u1ed1ng m\u1edbi","life_event_sentence_new_family_member":"\u0110\u00e3 th\u00eam th\u00e0nh vi\u00ean gia \u0111\u00ecnh","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"\u0110\u00e3 b\u1eaft \u0111\u1ea7u c\u00f4ng vi\u1ec7c m\u1edbi","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"\u0110\u00e3 c\u00f3 th\u00fa c\u01b0ng","life_event_sentence_new_relationship":"\u0110\u00e3 b\u1eaft \u0111\u1ea7u m\u1ed1i quan h\u1ec7","life_event_sentence_new_roommate":"\u0110\u00e3 c\u00f3 b\u1ea1n c\u00f9ng ph\u00f2ng","life_event_sentence_new_school":"\u0110\u00e3 b\u1eaft \u0111\u1ea7u \u0111i h\u1ecdc","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"\u0110\u00e3 c\u00f3 xe m\u1edbi","life_event_sentence_overcame_an_illness":"\u0110\u00e3 v\u01b0\u1ee3t qua b\u1ec7nh t\u1eadt","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"B\u1ecf m\u1ed9t th\u00f3i quen","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Ngh\u1ec9 h\u01b0u","life_event_sentence_study_abroad":"Du h\u1ecdc","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Gi\u1ea3m c\u00e2n","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","me":"\u0110\u00e2y l\u00e0 b\u1ea1n","modal_call_comment":"B\u1ea1n \u0111\u00e3 n\u00f3i v\u1ec1 chuy\u1ec7n g\u00ec? (t\u00f9y ch\u1ecdn)","modal_call_emotion":"B\u1ea1n c\u00f3 mu\u1ed1n ghi l\u1ea1i c\u1ea3m gi\u00e1c c\u1ee7a b\u1ea1n trong cu\u1ed9c g\u1ecdi n\u00e0y kh\u00f4ng? (t\u00f9y ch\u1ecdn)","modal_call_exact_date":"Cu\u1ed9c g\u1ecdi x\u1ea3y ra v\u00e0o","modal_call_title":"Log a call","modal_call_who_called":"Ai \u0111\u00e3 g\u1ecdi?","notes_add_cta":"Th\u00eam ghi ch\u00fa","notes_create_success":"T\u1ea1o ghi ch\u00fa th\u00e0nh c\u00f4ng","notes_delete_confirmation":"B\u1ea1n ch\u1eafc ch\u1eafn mu\u1ed1n xo\u00e1 ghi ch\u00fa n\u00e0y v\u0129nh vi\u1ec5n?","notes_delete_success":"Xo\u00e1 ghi ch\u00fa th\u00e0nh c\u00f4ng","notes_delete_title":"Xo\u00e1 ghi ch\u00fa","notes_favorite":"Th\u00eam\/xo\u00e1 kh\u1ecfi m\u1ee5c y\u00eau th\u00edch","notes_update_success":"L\u01b0u ghi ch\u00fa th\u00e0nh c\u00f4ng","people_add_birthday_reminder":"Ch\u00fac m\u1eebng sinh nh\u1eadt t\u1edbi :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"Th\u00eam","people_add_firstname":"T\u00ean","people_add_gender":"Gi\u1edbi t\u00ednh","people_add_import":"B\u1ea1n c\u00f3 mu\u1ed1n nh\u1eadp danh b\u1ea1 c\u1ee7a b\u1ea1n<\/a>?","people_add_lastname":"H\u1ecd (Tu\u1ef3 ch\u1ecdn)","people_add_middlename":"T\u00ean \u0111\u1ec7m (Tu\u1ef3 ch\u1ecdn)","people_add_missing":"Kh\u00f4ng c\u00f3 ng\u01b0\u1eddi n\u00e0o Th\u00eam ng\u01b0\u1eddi m\u1edbi ngay b\u00e2y gi\u1edd","people_add_new":"Th\u00eam ng\u01b0\u1eddi m\u1edbi","people_add_nickname":"Bi\u1ec7t danh (Tu\u1ef3 ch\u1ecdn)","people_add_reminder_for_birthday":"T\u1ea1o l\u1eddi nh\u1eafc h\u00e0ng n\u0103m cho sinh nh\u1eadt n\u00e0y","people_add_success":":name \u0111\u00e3 \u0111\u01b0\u1ee3c t\u1ea1o th\u00e0nh c\u00f4ng","people_add_title":"Th\u00eam ng\u01b0\u1eddi m\u1edbi","people_delete_confirmation":"B\u1ea1n ch\u1eafc ch\u1eafn mu\u1ed1n xo\u00e1 li\u00ean h\u1ec7? Vi\u1ec7c xo\u00e1 s\u1ebd kh\u00f4ng th\u1ec3 kh\u00f4i ph\u1ee5c.","people_delete_message":"X\u00f3a li\u00ean h\u1ec7","people_delete_success":"Li\u00ean h\u1ec7 \u0111\u00e3 b\u1ecb xo\u00e1","people_edit_email_error":"\u0110\u00e3 c\u00f3 li\u00ean h\u1ec7 trong t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n s\u1eed d\u1ee5ng \u0111\u1ecba ch\u1ec9 email n\u00e0y. H\u00e3y ch\u1ecdn m\u1ed9t c\u00e1i kh\u00e1c.","people_export":"Xu\u1ea5t d\u01b0\u1edbi d\u1ea1ng vCard","people_list_account_upgrade_cta":"N\u00e2ng c\u1ea5p ngay","people_list_account_upgrade_title":"N\u00e2ng c\u1ea5p t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n \u0111\u1ec3 m\u1edf kho\u00e1 t\u1ea5t c\u1ea3 t\u00ednh n\u0103ng.","people_list_account_usage":"Your account usage: :current\/:limit contacts","people_list_blank_cta":"Th\u00eam ai \u0111\u00f3","people_list_blank_title":"B\u1ea1n kh\u00f4ng c\u00f3 ai trong t\u00e0i kho\u1ea3n","people_list_clear_filter":"Xo\u00e1 b\u1ed9 l\u1ecdc","people_list_contacts_per_tags":":count li\u00ean h\u1ec7","people_list_filter_tag":"Hi\u1ec7n t\u1ea5t c\u1ea3 li\u00ean h\u1ec7 \u0111\u01b0\u1ee3c tag v\u1edbi","people_list_filter_untag":"Hi\u1ec7n t\u1ea5t c\u1ea3 li\u00ean h\u1ec7 kh\u00f4ng \u0111\u01b0\u1ee3c g\u1eafn th\u1ebb","people_list_firstnameAZ":"X\u1ebfp theo t\u00ean A \u2192 Z","people_list_firstnameZA":"X\u1ebfp theo t\u00ean Z \u2192 A","people_list_hide_dead":"\u1ea8n ng\u01b0\u1eddi \u0111\u00e3 qua \u0111\u1eddi (:count)","people_list_last_updated":"Danh s\u00e1ch li\u00ean h\u1ec7 m\u1edbi c\u1eadp nh\u1eadt:","people_list_lastactivitydateNewtoOld":"X\u1ebfp theo ho\u1ea1t \u0111\u1ed9ng g\u1ea7n \u0111\u00e2y nh\u1ea5t","people_list_lastactivitydateOldtoNew":"X\u1ebfp theo ho\u1ea1t \u0111\u1ed9ng l\u00e2u nh\u1ea5t","people_list_lastnameAZ":"X\u1ebfp theo h\u1ecd A \u2192 Z","people_list_lastnameZA":"X\u1ebfp theo h\u1ecd Z \u2192 A","people_list_number_kids":":count con","people_list_number_reminders":":count l\u1eddi nh\u1eafc","people_list_show_dead":"Hi\u1ec7n ng\u01b0\u1eddi \u0111\u00e3 qua \u0111\u1eddi (:count)","people_list_sort":"S\u1eafp x\u1ebfp","people_list_stats":":count li\u00ean h\u1ec7","people_list_untagged":"Xem li\u00ean h\u1ec7 kh\u00f4ng \u0111\u01b0\u1ee3c g\u1eafn th\u1ebb","people_not_found":"Kh\u00f4ng t\u00ecm th\u1ea5y li\u00ean h\u1ec7","people_save_and_add_another_cta":"G\u1eedi v\u00e0 th\u00eam m\u1ed9t ng\u01b0\u1eddi kh\u00e1c","people_search":"T\u00ecm ki\u1ebfm li\u00ean h\u1ec7...","people_search_all":"T\u1ea5t c\u1ea3","people_search_next":"K\u1ebf ti\u1ebfp","people_search_no_results":"Kh\u00f4ng t\u00ecm th\u1ea5y k\u1ebft qu\u1ea3","people_search_of":"c\u1ee7a","people_search_page":"Trang","people_search_prev":"Tr\u01b0\u1edbc \u0111\u00f3","people_search_rows_per_page":"Rows per page","pets_bird":"Chim","pets_cat":"M\u00e8o","pets_create_success":"Th\u00eam th\u00fa c\u01b0ng th\u00e0nh c\u00f4ng","pets_delete_success":"\u0110\u00e3 x\u00f3a th\u00fa c\u01b0ng","pets_dog":"Ch\u00f3","pets_fish":"C\u00e1","pets_hamster":"Chu\u1ed9t hamster","pets_horse":"Ng\u1ef1a","pets_kind":"Lo\u1ea1i th\u00fa c\u01b0ng","pets_name":"T\u00ean (t\u00f9y ch\u1ecdn)","pets_other":"Kh\u00e1c","pets_rabbit":"Th\u1ecf","pets_rat":"Chu\u1ed9t","pets_reptile":"B\u00f2 s\u00e1t","pets_small_animal":"\u0110\u1ed9ng v\u1eadt nh\u1ecf","pets_title":"Th\u00fa c\u01b0ng","pets_update_success":"C\u1eadp nh\u1eadt th\u00fa c\u01b0ng th\u00e0nh c\u00f4ng","photo_current_profile_pic":"\u1ea2nh \u0111\u1ea1i di\u1ec7n hi\u1ec7n t\u1ea1i","photo_delete":"Delete photo","photo_list_blank_desc":"B\u1ea1n c\u00f3 th\u1ec3 l\u01b0u \u1ea3nh v\u1ec1 li\u00ean h\u1ec7 n\u00e0y. T\u1ea3i l\u00ean ngay!","photo_list_cta":"T\u1ea3i \u1ea3nh l\u00ean","photo_list_title":"\u1ea2nh li\u00ean quan","photo_make_profile_pic":"T\u1ea1o \u1ea3nh \u0111\u1ea1i di\u1ec7n","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"\u1ea2nh","photo_upload_zone_cta":"T\u1ea3i \u1ea3nh l\u00ean","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don\u2019t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"\u0110\u00e3 x\u00f3a m\u1ed1i quan h\u1ec7.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted \u2013 only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"H\u00e3y nh\u1eafc t\u00f4i...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Nh\u1eafc t\u00f4i v\u1ec1 c\u00e1i n\u00e0y m\u1ed9t l\u1ea7n","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Nh\u1eafc t\u00f4i v\u1ec1 c\u00e1i n\u00e0y m\u1ed7i","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"B\u1ea1n mu\u1ed1n \u0111\u01b0\u1ee3c nh\u1eafc \u0111i\u1ec1u g\u00ec v\u1ec1 :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Th\u00eam l\u1eddi nh\u1eafc","reminders_blank_title":"C\u00f3 \u0111i\u1ec1u g\u00ec b\u1ea1n mu\u1ed1n \u0111\u01b0\u1ee3c nh\u1eafc v\u1ec1 :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Th\u00f4ng tin li\u00ean h\u1ec7","section_personal_activities":"Ho\u1ea1t \u0111\u1ed9ng","section_personal_gifts":"Qu\u00e0 t\u1eb7ng","section_personal_notes":"Ghi ch\u00fa","section_personal_reminders":"L\u1eddi nh\u1eafc","section_personal_tasks":"Tasks","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Gi\u1eef li\u00ean l\u1ea1c","stay_in_touch_frequency":"Gi\u1eef li\u00ean l\u1ea1c m\u1ed7i ng\u00e0y|Gi\u1eef li\u00ean l\u1ea1c m\u1ed7i {count} ng\u00e0y","stay_in_touch_invalid":"T\u1ea7n su\u1ea5t ph\u1ea3i l\u00e0 s\u1ed1 l\u1edbn h\u01a1n 0.","stay_in_touch_modal_desc":"Ch\u00fang t\u00f4i c\u00f3 th\u1ec3 nh\u1eafc nh\u1edf b\u1ea1n b\u1eb1ng email \u0111\u1ec3 gi\u1eef li\u00ean l\u1ea1c v\u1edbi {firstname} \u0111\u1ec1u \u0111\u1eb7n.","stay_in_touch_modal_label":"G\u1eedi email cho t\u00f4i m\u1ed7i... {count} ng\u00e0y","stay_in_touch_modal_title":"Gi\u1eef li\u00ean l\u1ea1c","stay_in_touch_premium":"B\u1ea1n c\u1ea7n n\u00e2ng c\u1ea5p t\u00e0i kho\u1ea3n \u0111\u1ec3 s\u1eed d\u1ee5ng t\u00ednh n\u0103ng n\u00e0y","tag_add":"Th\u00eam th\u1ebb tag","tag_add_search":"Th\u00eam ho\u1eb7c t\u00ecm th\u1ebb tag","tag_edit":"S\u1eeda th\u1ebb tag","tag_no_tags":"Kh\u00f4ng c\u00f3 th\u1ebb tag n\u00e0o","tasks_add_task":"Add a task","tasks_blank_title":"You don\u2019t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"M\u00f4 t\u1ea3 (t\u00f9y ch\u1ecdn)","tasks_form_title":"Ti\u00eau \u0111\u1ec1","tasks_title":"Tasks","work_add_cta":"C\u1eadp nh\u1eadt th\u00f4ng tin c\u00f4ng vi\u1ec7c","work_edit_company":"T\u00ean c\u00f4ng ty (n\u1ebfu c\u00f3)","work_edit_job":"T\u00ean c\u00f4ng vi\u1ec7c (tu\u1ef3 ch\u1ecdn)","work_edit_success":"Work information updated","work_edit_title":"C\u1eadp nh\u1eadt th\u00f4ng tin c\u00f4ng vi\u1ec7c c\u1ee7a :name","work_information":"Chi ti\u1ebft c\u00f4ng vi\u1ec7c"},"reminder":{"type_birthday":"Ch\u00fac m\u1eebng sinh nh\u1eadt t\u1edbi","type_birthday_kid":"Ch\u00fac m\u1eebng sinh nh\u1eadt t\u1edbi nh\u1eefng \u0111\u1ee9a tr\u1ebb c\u1ee7a","type_email":"Email","type_hangout":"Hangout with","type_lunch":"\u0102n tr\u01b0a v\u1edbi","type_phone_call":"G\u1ecdi"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"V\u00f4 hi\u1ec7u x\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"C\u00f3 l\u1ed7i khi th\u1eed k\u00edch ho\u1ea1t x\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1","2fa_enable_error_already_set":"X\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1 \u0111\u00e3 \u0111\u01b0\u1ee3c k\u00edch ho\u1ea1t tr\u01b0\u1edbc \u0111\u00f3","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"\u0110\u00e3 k\u00edch ho\u1ea1t x\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1","2fa_enable_title":"B\u1eadt x\u00e1c th\u1ef1c 2 b\u01b0\u1edbc","2fa_otp_title":"\u1ee8ng d\u1ee5ng mobile x\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1","2fa_title":"X\u00e1c minh 2 b\u01b0\u1edbc","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you\u2019ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica\u2019s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation<\/a>.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation<\/a> for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application\u2019s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust \u2013 as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don\u2019t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Ti\u1ec1n t\u1ec7","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and\/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Xo\u00e1 t\u00e0i kho\u1ea3n","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"X\u00f3a t\u00e0i kho\u1ea3n","email":"\u0110\u1ecba ch\u1ec9 email","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Nh\u1eadp email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"Xu\u1ea5t d\u1eef li\u1ec7u t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n","export_title_sql":"Export data to SQL","firstname":"T\u00ean","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven\u2019t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You\u2019ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf<\/code> or .vCard<\/code> file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"We support .vcard<\/code> and .vcf<\/code> files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"Xem b\u00e1o c\u00e1o","lastname":"H\u1ecd","layout":"Giao di\u1ec7n","layout_big":"Full width of the browser","layout_small":"Chi\u1ec1u r\u1ed9ng t\u1ed1i \u0111a 1200 pixel","locale":"Language used in the app","locale_ar":"Ti\u1ebfng \u1ea2 R\u1eadp","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"Ti\u1ebfng Anh (V\u01b0\u01a1ng Qu\u1ed1c Anh)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Ti\u1ebfng B\u1ed3 \u0110\u00e0o Nha","locale_pt-BR":"Ti\u1ebfng B\u1ed3 \u0110\u00e0o Nha (Brazil)","locale_ru":"Ti\u1ebfng Nga","locale_sv":"Swedish","locale_tr":"Ti\u1ebfng Th\u1ed5 Nh\u0129 K\u1ef3","locale_zh":"Ti\u1ebfng Trung Gi\u1ea3n th\u1ec3","locale_zh-TW":"Ti\u1ebfng Trung ph\u1ed3n th\u1ec3","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"\u0110\u00e2y l\u00e0 li\u00ean h\u1ec7 \u0111\u1ea1i di\u1ec7n cho b\u1ea1n<\/em> tr\u00ean Monica","me_no_contact":"Kh\u00f4ng c\u00f3 li\u00ean h\u1ec7 n\u00e0o \u0111\u01b0\u1ee3c ch\u1ecdn.","me_remove_contact":"G\u1ee1 li\u00ean k\u1ebft","me_select":"Ch\u1ecdn 1 li\u00ean h\u1ec7","me_select_click":"B\u1ea5m v\u00e0o \u0111\u00e2y \u0111\u1ec3 ch\u1ecdn 1 li\u00ean h\u1ec7.","me_title":"Me as a contact","name":"T\u00ean b\u1ea1n: :name","name_order":"Name order","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u0110\u1ed5i m\u1eadt kh\u1ea9u","password_change":"Change your password","password_current":"M\u1eadt kh\u1ea9u hi\u1ec7n t\u1ea1i","password_current_placeholder":"Nh\u1eadp m\u1eadt kh\u1ea9u hi\u1ec7n t\u1ea1i","password_new1":"M\u1eadt kh\u1ea9u m\u1edbi","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription<\/a>.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can\u2019t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can\u2019t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import\/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"\u0110\u00e3 mua nh\u00e0","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"K\u1ef3 ngh\u1ec9","personalization_life_event_type_home_improvement":"S\u01b0\u0309a nha\u0300","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"Th\u00eam th\u00e0nh vi\u00ean m\u1edbi trong gia \u0111\u00ecnh","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"Th\u00eam th\u00fa c\u01b0ng","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"B\u1ea1n c\u00f9ng ph\u00f2ng m\u1edbi","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"Mua xe m\u1edbi","personalization_life_event_type_overcame_an_illness":"\u0110\u00e3 v\u01b0\u1ee3t qua b\u1ec7nh t\u1eadt","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"B\u1ecf m\u1ed9t th\u00f3i quen","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Gi\u1ea3m c\u00e2n","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"C\u1eadp nh\u1eadt t\u00f9y ch\u1ecdn","security_help":"Change security matters for your account.","security_title":"B\u1ea3o m\u1eadt","settings_success":"Preferences updated!","sidebar_personalization":"C\u00e1 nh\u00e2n h\u00f3a","sidebar_settings":"Thi\u1ebft l\u1eadp t\u00e0i kho\u1ea3n","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Nh\u1eadt k\u00fd ki\u1ec3m duy\u1ec7t","sidebar_settings_dav":"T\u00e0i nguy\u00ean DAV","sidebar_settings_export":"Xu\u1ea5t d\u1eef li\u1ec7u","sidebar_settings_import":"Nh\u1eadp d\u1eef li\u1ec7u","sidebar_settings_security":"B\u1ea3o m\u1eadt","sidebar_settings_storage":"Dung l\u01b0\u1ee3ng","sidebar_settings_subscriptions":"\u0110\u0103ng k\u00fd","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Ng\u01b0\u1eddi d\u00f9ng","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription<\/a> anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment<\/a>.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Nh\u1eafc nh\u1edf b\u1eb1ng email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Ho\u00e1 \u0111\u01a1n","subscriptions_account_invoices_download":"T\u1ea3i xu\u1ed1ng","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date<\/strong>.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"N\u00e2ng c\u1ea5p t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"N\u00e2ng c\u1ea5p Monica h\u00f4m nay v\u00e0 c\u00f3 th\u00eam nhi\u1ec1u m\u1ed1i quan h\u1ec7 \u00fd ngh\u0129a.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"H\u1ea1 c\u1ea5p","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact<\/a>.|You currently have :count contacts<\/a>.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user<\/a> in your account.|You currently have :count users<\/a> in your account.","subscriptions_downgrade_success":"B\u1ea1n \u0111\u00e3 tr\u1edf l\u1ea1i g\u00f3i mi\u1ec5n ph\u00ed!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support<\/a> with a proof of your status and we\u2019ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts \u2022 Unlimited number of users \u2022 Reminders by email \u2022 Import with vCard \u2022 Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5\/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45\/year","subscriptions_plan_year_cost_save":"you\u2019ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe<\/a>. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Th\u1ebb t\u00edn d\u1ee5ng","subscriptions_upgrade_infos":"We couldn\u2019t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"M\u00e3 b\u01b0u ch\u00ednh","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Thang \u0111o nhi\u1ec7t \u0111\u1ed9","temperature_scale_celsius":"\u0110\u1ed9 C","temperature_scale_fahrenheit":"\u0110\u00f4\u0323 F","timezone":"M\u00fai gi\u1edd","title_general":"Th\u00f4ng tin chung","title_i18n":"International settings","title_layout":"Giao di\u1ec7n","users_accept_title":"Ch\u1ea5p nh\u1eadn l\u1eddi m\u1eddi v\u00e0 t\u1ea1o t\u00e0i kho\u1ea3n m\u1edbi","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"M\u1eddi b\u1eb1ng email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"Email n\u00e0y \u0111\u00e3 \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng. Vui l\u00f2ng ch\u1ecdn email kh\u00e1c","users_error_email_not_similar":"This is not the email of the person who\u2019ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you\u2019ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That\u2019s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Th\u00eam kh\u00f3a b\u1ea3o m\u1eadt m\u1edbi","webauthn_error_already_used":"This key is already registered. It\u2019s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"T\u00ean kho\u00e1:","webauthn_key_name_help":"\u0110\u1eb7t t\u00ean cho kho\u00e1 b\u1ea3o m\u1eadt.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn\u2019t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key \u2014 WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/zh-TW.json b/public/js/langs/zh-TW.json deleted file mode 100644 index 59399072bab..00000000000 --- a/public/js/langs/zh-TW.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"\u65b0\u589e","another_day":"\u67d0\u4e00\u5929","application_description":"Monica\u662f\u7528\u4f86\u6536\u96c6\u4e26\u7ba1\u7406\u60a8\u8207\u89aa\u670b\u597d\u53cb\u4e4b\u9593\u7684\u95dc\u4fc2\u7684\u5f97\u529b\u52a9\u624b\u3002","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 \u60a8\u7684\u79c1\u4eba\u793e\u4ea4\u95dc\u4fc2\u7ba1\u5bb6","back":"\u8fd4\u56de","breadcrumb_add_note":"\u6dfb\u52a0\u8a3b\u91cb","breadcrumb_add_significant_other":"\u65b0\u589e\u5176\u4ed6\u91cd\u8981","breadcrumb_api":"API","breadcrumb_archived_contacts":"\u5b58\u6a94\u7684\u806f\u7d61\u4eba","breadcrumb_dashboard":"\u5100\u8868\u76e4","breadcrumb_dav":"DAV \u8cc7\u6e90","breadcrumb_edit_introductions":"\u4f60\u662f\u600e\u9ebc\u77e5\u9053\u7684","breadcrumb_edit_note":"\u7de8\u8f2f\u8a3b\u91cb","breadcrumb_edit_significant_other":"\u7de8\u8f2f\u5176\u4ed6\u91cd\u8981","breadcrumb_journal":"\u65e5\u8a18","breadcrumb_list_contacts":"\u806f\u7d61\u4eba","breadcrumb_profile":":name\u7684\u8cc7\u6599","breadcrumb_settings":"\u8a2d\u5b9a","breadcrumb_settings_export":"\u532f\u51fa","breadcrumb_settings_import":"\u532f\u5165","breadcrumb_settings_import_report":"\u532f\u5165\u5831\u8868","breadcrumb_settings_import_upload":"\u4e0a\u50b3","breadcrumb_settings_personalization":"\u500b\u6027\u5316","breadcrumb_settings_security":"\u5b89\u5168","breadcrumb_settings_security_2fa":"\u4e8c\u6b21\u9a57\u8b49","breadcrumb_settings_subscriptions":"\u8a02\u95b1","breadcrumb_settings_tags":"\u6a19\u7c64","breadcrumb_settings_users":"\u4f7f\u7528\u8005","breadcrumb_settings_users_add":"\u65b0\u589e\u4f7f\u7528\u8005","cancel":"\u53d6\u6d88","close":"\u95dc\u9589","compliance_desc":"\u6211\u5011\u66f4\u65b0\u4e86\u4f7f\u7528\u8005\u5354\u8b70<\/a> \u4ee5\u53ca \u96b1\u79c1\u653f\u7b56<\/a>\uff0c\u60a8\u9700\u8981\u95b1\u8b80\u4e26\u540c\u610f\u624d\u80fd\u7e7c\u7e8c\u4f7f\u7528\u60a8\u7684\u5e33\u865f\u3002","compliance_desc_end":"\u6211\u5011\u6703\u4fdd\u8b77\u60a8\u7684\u96b1\u79c1\u5b89\u5168","compliance_terms":"\u6211\u5df2\u95b1\u8b80\u4e26\u540c\u610f","compliance_title":"\u62b1\u6b49\uff0c\u6253\u64fe\u60a8\u4e00\u4e0b","confirm":"\u78ba\u8a8d","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"\u8907\u88fd","create":"\u5efa\u7acb","date":"\u65e5\u671f","dav_birthdays":"\u751f\u65e5","dav_birthdays_description":":name\u7684\u540d\u7247\u751f\u65e5","dav_contacts":"\u540d\u7247","dav_contacts_description":":name\u7684\u540d\u7247","dav_tasks":"\u4efb\u52d9","dav_tasks_description":":name\u7684\u4efb\u52d9","default_save_success":"\u8cc7\u6599\u5df2\u88ab\u5132\u5b58","delete":"\u522a\u9664","delete_confirm":"Are you sure?","done":"\u5b8c\u6210","download":"\u4e0b\u8f09","edit":"\u7de8\u8f2f","emotion_adoration":"\u5d07\u62dc","emotion_affection":"\u611f\u60c5","emotion_aggravation":"\u60e1\u5316","emotion_agitation":"\u9f13\u52d5","emotion_agony":"\u75db\u82e6","emotion_alarm":"\u8b66\u89ba","emotion_alienation":"\u7570\u5316","emotion_amazement":"\u9a5a\u5947","emotion_amusement":"\u5a1b\u6a02","emotion_anger":"\u751f\u6c23","emotion_anguish":"\u751f\u4e0d\u5982\u6b7b","emotion_annoyance":"\u7169\u60f1","emotion_anxiety":"\u7126\u616e","emotion_apprehension":"\u6182\u616e","emotion_arousal":"\u6fc0\u52f5","emotion_astonishment":"\u9a5a\u8a1d","emotion_attraction":"\u5438\u5f15","emotion_bitterness":"\u8f9b\u9178","emotion_bliss":"\u6b23\u559c\u82e5\u72c2","emotion_caring":"\u95dc\u5fc3","emotion_cheerfulness":"\u8208\u9ad8\u91c7\u70c8","emotion_compassion":"\u540c\u60c5","emotion_contempt":"\u8f15\u8511","emotion_contentment":"\u6eff\u8db3","emotion_defeat":"\u5931\u6557","emotion_dejection":"\u6cae\u55aa","emotion_delight":"\u559c\u6085","emotion_depression":"\u6182\u9b31","emotion_desire":"\u671f\u671b","emotion_despair":"\u7d55\u671b","emotion_disappointment":"\u5931\u671b","emotion_disgust":"\u53ad\u60e1","emotion_dislike":"\u4e0d\u559c\u6b61","emotion_dismay":"\u6cae\u55aa","emotion_displeasure":"\u4e0d\u6eff","emotion_distress":"\u82e6\u60f1","emotion_dread":"\u9a5a\u6050","emotion_eagerness":"\u6e34\u671b","emotion_ecstasy":"\u72c2\u559c","emotion_elation":"\u8208\u9ad8\u91c7\u70c8","emotion_embarrassment":"\u5c37\u5c2c","emotion_enjoyment":"\u4eab\u53d7","emotion_enthrallment":"\u6c89\u8ff7","emotion_enthusiasm":"\u71b1\u60c5\u9ad8\u6f32","emotion_envy":"\u5ac9\u5992","emotion_euphoria":"\u904e\u5ea6\u8208\u596e","emotion_exasperation":"\u60f1\u6012","emotion_excitement":"\u8208\u596e","emotion_exhilaration":"\u4e0d\u4ea6\u6a02\u4e4e","emotion_fear":"\u6050\u61fc","emotion_ferocity":"\u51f6\u731b","emotion_fondness":"\u5bf5\u611b","emotion_fright":"\u9a5a\u5687","emotion_frustration":"\u53d7\u632b","emotion_fury":"\u61a4\u6012","emotion_gaiety":"\u6b61\u6a02","emotion_gladness":"\u559c\u6085","emotion_glee":"\u9ad8\u8208","emotion_gloom":"\u6cae\u55aa","emotion_glumness":"\u9670\u6c89","emotion_grief":"\u60b2\u75db","emotion_grouchiness":"\u767c\u7262\u9a37","emotion_grumpiness":"\u813e\u6c23\u66b4\u8e81","emotion_guilt":"\u5167\u759a","emotion_happiness":"\u5feb\u6a02","emotion_hate":"\u8a0e\u53ad","emotion_homesickness":"\u9109\u6101","emotion_hope":"\u5e0c\u671b","emotion_hopelessness":"\u7121\u53ef\u6551\u85e5","emotion_horror":"\u6050\u6016","emotion_hostility":"\u6575\u610f","emotion_humiliation":"\u5c48\u8fb1","emotion_hurt":"\u50b7\u5fc3","emotion_hysteria":"\u6b47\u65af\u5e95\u91cc","emotion_infatuation":"\u8ff7\u6200","emotion_insecurity":"\u7dca\u5f35","emotion_insult":"\u4fae\u8fb1","emotion_irritation":"\u523a\u6fc0","emotion_isolation":"\u5206\u96e2","emotion_jealousy":"\u5ac9\u5992","emotion_jolliness":"\u55ac\u5229","emotion_joviality":"\u5feb\u6a02","emotion_joy":"\u958b\u5fc3","emotion_jubilation":"\u559c\u6176","emotion_liking":"\u559c\u6b61","emotion_loathing":"\u5acc\u60e1","emotion_loneliness":"\u5b64\u7368","emotion_longing":"\u6e34\u671b","emotion_love":"\u559c\u611b","emotion_lust":"\u617e\u671b","emotion_melancholy":"\u60b2\u50b7","emotion_misery":"\u75db\u82e6","emotion_mortification":"\u5c48\u8fb1","emotion_neglect":"\u5ffd\u8996","emotion_nervousness":"\u7dca\u5f35","emotion_optimism":"\u6a02\u89c0","emotion_outrage":"\u61a4\u6012","emotion_panic":"\u6050\u614c","emotion_passion":"\u71b1\u60c5","emotion_pity":"\u53ef\u60dc","emotion_pleasure":"\u5feb\u6a02","emotion_pride":"\u9a55\u50b2","emotion_primary_anger":"\u751f\u6c23","emotion_primary_fear":"\u6050\u61fc","emotion_primary_joy":"\u958b\u5fc3","emotion_primary_love":"\u559c\u611b","emotion_primary_sadness":"\u60b2\u50b7","emotion_primary_surprise":"\u9a5a\u8a1d","emotion_rage":"\u72c2\u6012","emotion_rapture":"\u72c2\u559c","emotion_regret":"\u5f8c\u6094","emotion_rejection":"\u62d2\u7d55","emotion_relief":"\u5982\u91cb\u91cd\u8ca0","emotion_remorse":"\u6094\u6068","emotion_resentment":"\u6028\u6068","emotion_revulsion":"\u53cd\u611f","emotion_sadness":"\u60b2\u50b7","emotion_satisfaction":"\u7a31\u5fc3\u5982\u610f","emotion_scorn":"\u8511\u8996","emotion_secondary_affection":"\u611f\u60c5","emotion_secondary_cheerfulness":"\u8208\u9ad8\u91c7\u70c8","emotion_secondary_contentment":"\u6eff\u8db3","emotion_secondary_disappointment":"\u5931\u671b","emotion_secondary_disgust":"\u53ad\u60e1","emotion_secondary_enthrallment":"\u6c89\u8ff7","emotion_secondary_envy":"\u5ac9\u5992","emotion_secondary_exasperation":"\u60f1\u6012","emotion_secondary_horror":"\u6050\u6016","emotion_secondary_irritation":"\u523a\u6fc0","emotion_secondary_longing":"\u6e34\u671b","emotion_secondary_lust":"\u617e\u671b","emotion_secondary_neglect":"\u5ffd\u8996","emotion_secondary_nervousness":"\u7dca\u5f35","emotion_secondary_optimism":"\u6a02\u89c0","emotion_secondary_pride":"\u9a55\u50b2","emotion_secondary_rage":"\u72c2\u6012","emotion_secondary_relief":"\u5982\u91cb\u91cd\u8ca0","emotion_secondary_sadness":"\u60b2\u50b7","emotion_secondary_shame":"\u6065\u8fb1","emotion_secondary_suffering":"\u75db\u82e6","emotion_secondary_surprise":"\u9a5a\u8a1d","emotion_secondary_sympathy":"\u540c\u60c5","emotion_secondary_zest":"\u71b1\u60c5","emotion_sentimentality":"\u591a\u6101\u5584\u611f","emotion_shame":"\u6065\u8fb1","emotion_shock":"\u9707\u64bc","emotion_sorrow":"\u60b2\u60a3","emotion_spite":"\u6028\u6068","emotion_suffering":"\u75db\u82e6","emotion_surprise":"\u9a5a\u8a1d","emotion_sympathy":"\u540c\u60c5","emotion_tenderness":"\u67d4\u60c5","emotion_tenseness":"\u795e\u7d93\u7dca\u7e43","emotion_terror":"\u6050\u6016","emotion_thrill":"\u5feb\u611f","emotion_uneasiness":"\u4e0d\u5b89","emotion_unhappiness":"\u4e0d\u5e78","emotion_vengefulness":"\u5831\u5fa9","emotion_woe":"\u69ae\u8fb1\u8207\u5171","emotion_worry":"\u64d4\u5fc3","emotion_wrath":"\u66b4\u6012","emotion_zeal":"\u72c2\u71b1","emotion_zest":"\u71b1\u60c5","error_help":"\u5f85\u6703\u898b\uff01","error_id":"\u932f\u8aa4\u7a0b\u5f0f\u78bc\uff1a:id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"\u6b64\u4f8b\u9805\u5c1a\u7121\u7b56\u7565","error_save":"\u7576\u5132\u5b58\u8cc7\u6599\u6642\u51fa\u73fe\u4e86\u4e00\u500b\u932f\u8aa4","error_title":"\u7cdf\u7cd5! \u51fa\u932f\u4e86\u3002","error_try_again":"\u51fa\u4e86\u9ede\u554f\u984c\uff0c\u8acb\u518d\u8a66\u4e00\u6b21\u3002","error_twitter":"\u95dc\u6ce8\u6211\u5011\u7684\u63a8\u7279<\/a>\u4f86\u5f97\u77e5\u7db2\u7ad9\u7684\u6700\u65b0\u8a0a\u606f\uff01","error_unauthorized":"\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u7de8\u8f2f\u6b64\u9801","error_unavailable":"\u670d\u52d9\u4e0d\u53ef\u7528","error_user_account":"\u6b64\u4f7f\u7528\u8005\u4e0d\u5c6c\u65bc\u6b64\u5e33\u865f","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"\u904e\u6ffe\u5217\u8868","footer_modal_version_release_away":"\u60a8\u6709\u4e00\u500b\u6700\u65b0\u767c\u5e03\u7248\u672c\u53ef\u66f4\u65b0\u3002\u60a8\u61c9\u8a72\u66f4\u65b0\u4f8b\u9805. |\u60a8\u5df2\u7d93\u6709:number\u500b\u7248\u672c\u6c92\u6709\u66f4\u65b0\uff0c\u61c9\u8a72\u66f4\u65b0\u4e86\u3002","footer_modal_version_whats_new":"\u65b0\u589e\u5167\u5bb9","footer_new_version":"A new version of Monica is available","footer_newsletter":"\u65b0\u805e\u7c21\u5831","footer_privacy":"\u96b1\u79c1\u689d\u6b3e","footer_release":"\u7248\u672c\u8aaa\u660e","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"\u6350\u52a9","footer_version":"\u7248\u672c::version","gender_female":"\u5973","gender_male":"\u7537","gender_no_gender":"\u7121\u6027\u5225","gender_none":"\u4fdd\u5bc6","go_back":"\u5f8c\u9000","header_changelog_link":"\u66f4\u65b0\u65e5\u8a8c","header_logout_link":"\u767b\u51fa","header_settings_link":"\u8a2d\u5b9a","load_more":"\u8f09\u5165\u66f4\u591a","loading":"Loading\u2026","main_nav_activities":"\u6d3b\u52d5","main_nav_cta":"\u806f\u7d61\u4eba","main_nav_dashboard":"\u5100\u8868\u76e4","main_nav_family":"\u806f\u7d61\u4eba","main_nav_journal":"\u65e5\u8a18","main_nav_tasks":"\u4efb\u52d9","markdown_description":"\u60f3\u7528\u4e00\u7a2e\u7f8e\u89c0\u7684\u65b9\u5f0f\u683c\u5f0f\u5316\u6587\u5b57\u55ce\uff1f\u6211\u5011\u4ee5Markdown\u8a9e\u6cd5\u652f\u63f4\u7c97\u9ad4\u3001\u659c\u9ad4\u3001\u5217\u8868\u7b49\u6a23\u5f0f\u3002","markdown_link":"\u95b1\u8b80\u6587\u4ef6","new":"\u65b0","no":"\u5426","percent_uploaded":"\u5df2\u4e0a\u50b3 {percent}%","relationship_type_bestfriend":"\u57fa\u53cb","relationship_type_bestfriend_female":"\u95a8\u5bc6","relationship_type_bestfriend_female_with_name":":name\u7684\u95a8\u5bc6","relationship_type_bestfriend_with_name":":name\u7684\u57fa\u53cb","relationship_type_boss":"\u4e0a\u53f8","relationship_type_boss_female":"\u4e0a\u53f8","relationship_type_boss_female_with_name":":name\u7684\u4e0a\u53f8","relationship_type_boss_with_name":":name\u7684\u4e0a\u53f8","relationship_type_child":"\u5152\u5b50","relationship_type_child_female":"\u5973\u5152","relationship_type_child_female_with_name":":name\u7684\u5973\u4eba","relationship_type_child_with_name":":name\u7684\u5152\u5b50","relationship_type_colleague":"\u540c\u4e8b","relationship_type_colleague_female":"\u540c\u4e8b","relationship_type_colleague_female_with_name":":name\u7684\u540c\u4e8b","relationship_type_colleague_with_name":":name\u7684\u540c\u4e8b","relationship_type_cousin":"\u5802\u5144\u5f1f","relationship_type_cousin_female":"\u5802\u59d0\u59b9","relationship_type_cousin_female_with_name":":name\u7684\u5802\u59d0\u59b9","relationship_type_cousin_with_name":":name\u7684\u5802\u5144\u5f1f","relationship_type_date":"\u7d04\u6703\u7269\u4ef6","relationship_type_date_female":"\u7d04\u6703\u7269\u4ef6","relationship_type_date_female_with_name":":name\u7684\u7d04\u6703\u7269\u4ef6","relationship_type_date_with_name":":name\u7684\u7d04\u6703\u7269\u4ef6","relationship_type_ex":"\u524d\u7537\u53cb","relationship_type_ex_female":"\u524d\u5973\u53cb","relationship_type_ex_female_with_name":":name\u7684\u524d\u5973\u53cb","relationship_type_ex_husband":"\u524d\u592b","relationship_type_ex_husband_female":"\u524d\u59bb","relationship_type_ex_husband_female_with_name":":name\u7684\u524d\u59bb","relationship_type_ex_husband_with_name":":name\u7684\u524d\u592b","relationship_type_ex_with_name":":name\u7684\u524d\u7537\u53cb","relationship_type_friend":"\u670b\u53cb","relationship_type_friend_female":"\u670b\u53cb","relationship_type_friend_female_with_name":":name\u7684\u670b\u53cb","relationship_type_friend_with_name":":name\u7684\u670b\u53cb","relationship_type_godfather":"\u795e\u7236","relationship_type_godfather_female":"\u795e\u6bcd","relationship_type_godfather_female_with_name":":name\u7684\u795e\u6bcd","relationship_type_godfather_with_name":":name\u7684\u795e\u7236","relationship_type_godson":"\u7fa9\u5b50","relationship_type_godson_female":"\u7fa9\u5973","relationship_type_godson_female_with_name":":name\u7684\u7fa9\u5973","relationship_type_godson_with_name":":name\u7684\u7fa9\u5b50","relationship_type_grandchild":"\u66fe\u5b6b","relationship_type_grandchild_female":"\u66fe\u5b6b\u5973","relationship_type_grandchild_female_with_name":":name\u7684\u66fe\u5b6b\u5973","relationship_type_grandchild_with_name":":name\u7684\u66fe\u5b6b","relationship_type_grandparent":"\u7956\u7236","relationship_type_grandparent_female":"\u7956\u6bcd","relationship_type_grandparent_female_with_name":":name\u7684\u7956\u6bcd","relationship_type_grandparent_with_name":":name\u7684\u7956\u7236","relationship_type_group_family":"\u5bb6\u5ead\u95dc\u4fc2","relationship_type_group_friend":"\u670b\u53cb\u95dc\u4fc2","relationship_type_group_love":"\u6200\u611b\u95dc\u4fc2","relationship_type_group_other":"\u5176\u4ed6\u95dc\u4fc2","relationship_type_group_work":"\u5de5\u4f5c\u95dc\u4fc2","relationship_type_inlovewith":"\u559c\u6b61\u7684\u4eba","relationship_type_inlovewith_female":"\u559c\u6b61\u7684\u4eba","relationship_type_inlovewith_female_with_name":":name\u559c\u6b61\u7684\u4eba","relationship_type_inlovewith_with_name":":name\u559c\u6b61\u7684\u4eba","relationship_type_lovedby":"\u8ffd\u6c42\u8005","relationship_type_lovedby_female":"\u8ffd\u6c42\u8005","relationship_type_lovedby_female_with_name":":name\u7684\u8ffd\u6c42\u8005","relationship_type_lovedby_with_name":":name\u7684\u8ffd\u6c42\u8005","relationship_type_lover":"\u60c5\u4eba","relationship_type_lover_female":"\u60c5\u4eba","relationship_type_lover_female_with_name":":name\u7684\u60c5\u4eba","relationship_type_lover_with_name":":name\u7684\u60c5\u4eba","relationship_type_mentor":"\u8001\u5e2b","relationship_type_mentor_female":"\u8001\u5e2b","relationship_type_mentor_female_with_name":":name\u7684\u8001\u5e2b","relationship_type_mentor_with_name":":name\u7684\u8001\u5e2b","relationship_type_nephew":"\u5916\u7525","relationship_type_nephew_female":"\u5916\u7525\u5973","relationship_type_nephew_female_with_name":":name\u7684\u5916\u7525\u5973","relationship_type_nephew_with_name":":name\u7684\u5916\u7525","relationship_type_parent":"\u7236\u89aa","relationship_type_parent_female":"\u6bcd\u89aa","relationship_type_parent_female_with_name":":name\u7684\u6bcd\u89aa","relationship_type_parent_with_name":":name\u7684\u7236\u89aa","relationship_type_partner":"\u642d\u6a94","relationship_type_partner_female":"\u642d\u6a94","relationship_type_partner_female_with_name":":name\u7684\u642d\u6a94","relationship_type_partner_with_name":":name\u7684\u642d\u6a94","relationship_type_protege":"\u5b78\u751f","relationship_type_protege_female":"\u5b78\u751f","relationship_type_protege_female_with_name":":name\u7684\u5b78\u751f","relationship_type_protege_with_name":":name\u7684\u5b78\u751f","relationship_type_sibling":"\u5144\u5f1f","relationship_type_sibling_female":"\u59d0\u59b9","relationship_type_sibling_female_with_name":":name\u7684\u59d0\u59b9","relationship_type_sibling_with_name":":name\u7684\u5144\u5f1f","relationship_type_spouse":"\u914d\u5076","relationship_type_spouse_female":"\u914d\u5076","relationship_type_spouse_female_with_name":":name\u7684\u914d\u5076","relationship_type_spouse_with_name":":name\u7684\u914d\u5076","relationship_type_stepchild":"\u7e7c\u5b50","relationship_type_stepchild_female":"\u7e7c\u5973","relationship_type_stepchild_female_with_name":":name\u7684\u7e7c\u5973","relationship_type_stepchild_with_name":":name\u7684\u7e7c\u5b50","relationship_type_stepparent":"\u7e7c\u7236","relationship_type_stepparent_female":"\u7e7c\u6bcd","relationship_type_stepparent_female_with_name":":name\u7684\u7e7c\u6bcd","relationship_type_stepparent_with_name":":name\u7684\u7e7c\u7236","relationship_type_subordinate":"\u4e0b\u5c6c","relationship_type_subordinate_female":"\u4e0b\u5c6c","relationship_type_subordinate_female_with_name":":name\u7684\u4e0b\u5c6c","relationship_type_subordinate_with_name":":name\u7684\u4e0b\u5c6c","relationship_type_uncle":"\u53d4\u53d4","relationship_type_uncle_female":"\u963f\u59e8","relationship_type_uncle_female_with_name":":name\u7684\u963f\u59e8","relationship_type_uncle_with_name":":name\u7684\u53d4\u53d4","remove":"\u522a\u9664","retry":"\u91cd\u8a66","revoke":"\u64a4\u92b7","save":"\u5132\u5b58","save_close":"\u5132\u5b58\u4e26\u95dc\u9589","today":"\u4eca\u5929","type":"\u578b\u5225","unknown":"\u6211\u4e0d\u77e5\u9053","update":"\u66f4\u65b0","upgrade":"\u5347\u7d1a\u89e3\u9396","upload":"\u4e0a\u50b3","verify":"\u9a57\u8b49","weather_clear-day":"\u6674\u6717","weather_clear-night":"\u6674\u6717\u7684\u591c\u665a","weather_cloudy":"\u591a\u96f2","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"\u7576\u524d\u5929\u6c23","weather_fog":"\u9727","weather_partly-cloudy-day":"\u5340\u57df\u6027\u591a\u96f2","weather_partly-cloudy-night":"\u5340\u57df\u6027\u591a\u96f2\u7684\u665a\u4e0a","weather_rain":"\u96e8","weather_sleet":"\u96e8\u593e\u96ea","weather_snow":"\u96ea","weather_wind":"\u98a8","with":"\u8207","yes":"\u662f","yesterday":"\u6628\u5929","zoom":"\u653e\u5927"},"auth":{"2fa_one_time_password":"\u9a57\u8b49\u78bc","2fa_otp_help":"\u958b\u555f\u60a8\u7684\u4e8c\u6b21\u9a57\u8b49APP\u4e26\u8907\u88fd\u9a57\u8b49\u78bc","2fa_recuperation_code":"\u8f38\u5165\u4e8c\u6b21\u9a57\u8b49\u6062\u5fa9\u78bc","2fa_title":"\u4e8c\u6b21\u9a57\u8b49","2fa_wrong_validation":"\u4e8c\u6b21\u9a57\u8b49\u5931\u6557","back_homepage":"\u56de\u5230\u4e3b\u9801","button_remember":"\u8a18\u4f4f\u6211","change_language":"\u66f4\u6539\u8a9e\u8a00\u81f3\uff1a:lang","change_language_title":"\u66f4\u6539\u8a9e\u8a00\uff1a","confirmation_again":"\u5982\u679c\u8981\u66f4\u6539\u96fb\u5b50\u90f5\u4ef6\u5730\u5740, \u53ef\u4ee5 \u9ede\u64ca\u6b64\u8655<\/a>\u3002","confirmation_check":"\u5728\u60a8\u7e7c\u7e8c\u4e4b\u524d\uff0c\u8acb\u6aa2\u67e5\u60a8\u7684\u4fe1\u7bb1\u4ee5\u7372\u5f97\u9a57\u8b49\u9023\u7d50\u3002","confirmation_fresh":"\u4e00\u689d\u65b0\u7684\u9a57\u8b49\u9023\u7d50\u5df2\u7d93\u767c\u9001\u5230\u60a8\u7684\u4fe1\u7bb1","confirmation_request_another":"\u5982\u679c\u60a8\u6c92\u6709\u6536\u5230\u96fb\u5b50\u90f5\u4ef6 , \u8acb\u9ede\u64ca\u6b64\u8655\u91cd\u65b0\u767c\u9001<\/a>\u3002","confirmation_title":"\u9a57\u8b49\u60a8\u7684\u96fb\u5b50\u90f5\u4ef6\u5730\u5740","create_account":"\u55ae\u64ca\u6b64\u8655 \u8a3b\u518a<\/a>","email":"\u96fb\u5b50\u90f5\u4ef6","email_change_current_email":"\u7576\u524d\u90f5\u4ef6\u5730\u5740\uff1a","email_change_new":"\u65b0\u90f5\u4ef6\u5730\u5740\uff1a","email_change_title":"\u66f4\u63db\u60a8\u7684\u96fb\u5b50\u90f5\u4ef6","email_changed":"\u60a8\u7684\u96fb\u5b50\u90f5\u4ef6\u5df2\u66f4\u63db\uff0c\u8acb\u6aa2\u67e5\u60a8\u7684\u6536\u4ef6\u7bb1\u4f86\u9a57\u8b49\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u3002","failed":"\u60a8\u8f38\u5165\u7684\u8cc7\u8a0a\u8207\u6211\u5011\u7684\u7d00\u9304\u4e0d\u5339\u914d\u3002","login":"\u767b\u5165","login_again":"\u8acb\u518d\u6b21\u767b\u5165\u60a8\u7684\u5e33\u865f","login_to_account":"\u767b\u5165\u60a8\u7684\u5e33\u865f","login_with_recovery":"\u4f7f\u7528\u6062\u5fa9\u7a0b\u5f0f\u78bc\u767b\u5165","mfa_auth_otp":"\u4f7f\u7528\u4e8c\u6b21\u9a57\u8b49\u88dd\u7f6e\u9032\u884c\u8a8d\u8b49","mfa_auth_webauthn":"\u4f7f\u7528\u5b89\u5168\u9470\u5319\u9a57\u8b49(WebAuthn)","not_authorized":"\u60a8\u7121\u6b0a\u57f7\u884c\u6b64\u64cd\u4f5c","password":"\u5bc6\u78bc","password_forget":"\u5fd8\u8a18\u5bc6\u78bc\uff1f","password_reset":"\u91cd\u7f6e\u5bc6\u78bc","password_reset_action":"\u91cd\u7f6e\u5bc6\u78bc","password_reset_email":"\u96fb\u5b50\u4fe1\u7bb1","password_reset_email_content":"\u55ae\u64ca\u6b64\u8655\u4f86\u91cd\u7f6e\u5bc6\u78bc:","password_reset_password":"\u5bc6\u78bc","password_reset_password_confirm":"\u78ba\u8a8d\u5bc6\u78bc","password_reset_send_link":"\u50b3\u9001\u91cd\u7f6e\u9023\u7d50","password_reset_title":"\u91cd\u7f6e\u5bc6\u78bc","recovery":"\u9084\u539f\u7a0b\u5f0f\u78bc","register_action":"\u8a3b\u518a","register_create_account":"\u60a8\u9700\u8981\u4e00\u500b\u5e33\u865f\u4f86\u4f7f\u7528Monica","register_email":"\u8acb\u8f38\u5165\u4e00\u500b\u6709\u6548\u7684\u4fe1\u7bb1","register_email_example":"example@example.com","register_firstname":"\u540d\u5b57","register_firstname_example":"\u4f8b: \u5c0f\u660e","register_invitation_email":"\u70ba\u4e86\u5b89\u5168\uff0c\u8acb\u60a8\u8f38\u5165\u9080\u8acb\u4eba\u7684\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u3002\u9019\u53ef\u4ee5\u5728\u53d7\u9080\u90f5\u4ef6\u4e2d\u627e\u5230","register_lastname":"\u59d3\u6c0f","register_lastname_example":"\u4f8b: \u738b","register_login":"\u5df2\u7d93\u6709\u5e33\u865f\u4e86\uff1f\u9ede\u6b64\u767b\u5165<\/a>","register_password":"\u5bc6\u78bc","register_password_confirmation":"\u91cd\u8907\u5bc6\u78bc","register_password_example":"\u9375\u5165\u5bc6\u78bc...","register_policy":"\u6211\u5df2\u95b1\u8b80\u4e26\u540c\u610f \u96b1\u79c1\u653f\u7b56<\/a> \u8207 \u4f7f\u7528\u8005\u5354\u8b70<\/a>","register_title_create":"\u5efa\u7acb\u60a8\u7684Monica\u5e33\u865f","register_title_welcome":"\u6b61\u8fce\u8a3b\u518a\u60a8\u7684\u79c1\u4eba\u793e\u4ea4\u95dc\u4fc2\u7ba1\u5bb6 - Monica","signup":"\u8a3b\u518a","signup_disabled":"\u8a3b\u518a\u7576\u524d\u5df2\u505c\u7528","signup_error":"An error occured trying to register the user","signup_no_account":"\u6c92\u6709\u5e33\u865f\uff1f","throttle":"\u767b\u5165\u5931\u6557\u6b21\u6578\u592a\u591a\u3002\u8acb :seconds \u5f8c\u518d\u8a66\u3002","use_recovery":"\u6216\u8005\u60a8\u53ef\u4ee5\u4f7f\u7528 \u9084\u539f\u7a0b\u5f0f\u78bc<\/a>"},"changelog":{"note":"\u6ce8\uff1a\u5f88\u62b1\u6b49\uff0c\u7576\u524d\u9801\u9762\u53ea\u652f\u63f4\u82f1\u6587\u5c55\u793a\u3002","title":"\u66f4\u65b0\u65e5\u8a8c"},"dashboard":{"dashboard_blank_cta":"\u65b0\u589e\u60a8\u7684\u7b2c\u4e00\u500b\u806f\u7d61\u4eba","dashboard_blank_description":"Monica \u662f\u4e00\u500b\u8a18\u9304\u4f60\u6240\u6709\u95dc\u5fc3\u7684\u4eba\u53ca\u8207\u5176\u4e92\u52d5\u8cc7\u8a0a\u7684\u5730\u65b9","dashboard_blank_illustration":"\u63d2\u756b\uff1a Freepik<\/a>","dashboard_blank_title":"\u6b61\u8fce\u767b\u5165\u5e33\u865f","debts_you_owe":"\u5f85\u9084\u91d1\u984d","notes_title":"\u60a8\u9084\u6c92\u6709\u4efb\u4f55\u4fbf\u7c64\u3002","product_changes":"\u66f4\u65b0\u65e5\u8a8c","product_view_details":"\u6aa2\u8996\u8a73\u60c5","reminders_next_months":"\u8fd1\u4e09\u500b\u6708\u7684\u6d3b\u52d5","reminders_none":"\u672c\u6708\u5c1a\u7121\u63d0\u9192\u4e8b\u9805.","statistics_activities":"\u6d3b\u52d5","statistics_contacts":"\u806f\u7d61\u4eba","statistics_gifts":"\u79ae\u7269","tab_calls_blank":"\u60a8\u9084\u6c92\u6709\u96fb\u8a71\u64a5\u6253\u8a18\u9304\u3002","tab_debts":"\u50b5\u52d9","tab_debts_blank":"\u60a8\u9084\u6c92\u6709\u65b0\u589e\u50b5\u52d9\u8cc7\u8a0a\u3002","tab_favorite_notes":"\u6536\u85cf\u4fbf\u7c64","tab_recent_calls":"\u6700\u8fd1\u901a\u8a71","tab_tasks":"\u4efb\u52d9","tab_tasks_blank":"\u4f60\u9084\u6c92\u6709\u4efb\u4f55\u4efb\u52d9","task_add_cta":"\u65b0\u589e\u4efb\u52d9","tasks_add_note":"\u6309\u56de\u8eca<\/kbd>\u4f86\u65b0\u589e\u4efb\u52d9","tasks_add_task_placeholder":"\u9019\u500b\u4efb\u52d9\u662f\u95dc\u65bc\u4ec0\u9ebc\u7684\uff1f","tasks_tab_your_contacts":"\u8207\u4efb\u52d9\u76f8\u95dc\u7684\u806f\u7d61\u4eba","tasks_tab_your_tasks":"\u60a8\u7684\u4efb\u52d9"},"format":{"full_date_year":"Y F d","full_hour":"h.i A","full_month":"F","full_month_year":"Y F","short_date":"M d","short_date_year":"Y M d","short_date_year_time":"Y M d H:i","short_day":"D","short_month":"M","short_month_year":"Y M","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u60a8\u78ba\u5b9a\u8981\u522a\u9664\u6b64\u689d\u76ee\u55ce\uff1f","entry_delete_success":"\u8a18\u9304\u689d\u76ee\u5df2\u6210\u529f\u522a\u9664\u3002","journal_add":"\u65b0\u589e\u65e5\u8a18\u689d\u76ee","journal_add_comment":"\u662f\u5426\u8981\u6dfb\u52a0\u8a3b\u91cb (\u53ef\u9078)\uff1f","journal_add_cta":"\u5132\u5b58","journal_add_date":"\u65e5\u671f","journal_add_post":"\u5167\u5bb9","journal_add_title":"\u6a19\u984c (\u53ef\u9078)","journal_blank_cta":"\u65b0\u589e\u60a8\u7684\u7b2c\u4e00\u500b\u8a18\u9304\u689d\u76ee","journal_blank_description":"\u8a18\u9304\u5141\u8a31\u60a8\u7de8\u5beb\u767c\u751f\u5728\u60a8\u8eab\u4e0a\u7684\u4e8b\u4ef6, \u4e26\u8a18\u4f4f\u5b83\u5011\u3002","journal_come_back":"\u8b1d\u8b1d. \u660e\u5929\u518d\u4f86\u7d66\u4f60\u7684\u4e00\u5929\u8a55\u50f9\u4e00\u4e0b\u3002","journal_created_at":"Created at {date}","journal_created_automatically":"\u81ea\u52d5\u5efa\u7acb","journal_description":"\u6ce8\u610f: \u8a18\u9304\u88e1\u5217\u51fa\u4e86\u5168\u90e8\u624b\u52d5\u8a18\u9304\u7684\u689d\u76ee, \u4ee5\u53ca\u60a8\u8207\u60a8\u7684\u806f\u7d61\u4eba\u9032\u884c\u7684\u6d3b\u52d5\u7b49\u81ea\u52d5\u689d\u76ee\u3002\u96d6\u7136\u53ef\u4ee5\u624b\u52d5\u522a\u9664\u8a18\u9304\u689d\u76ee, \u4f46\u5fc5\u9808\u76f4\u63a5\u5728 \"\u806f\u7d61\u4eba\" \u9801\u4e0a\u9032\u884c\u522a\u9664\u3002","journal_edit":"\u7de8\u8f2f\u65e5\u8a18\u689d\u76ee","journal_empty":"\u66ab\u7121\u65e5\u8a18","journal_entry_rate":"\u8a55\u50f9\u4f60\u7684\u4e00\u5929\u3002","journal_entry_type_activity":"\u6d3b\u52d5","journal_entry_type_journal":"\u8a18\u9304\u689d\u76ee","journal_rate":"\u4eca\u5929\u904e\u5f97\u600e\u9ebc\u6a23\uff1f\u4f60\u53ef\u4ee5\u6bcf\u5929\u7d66\u5b83\u4e00\u6b21\u8a55\u50f9\u3002","journal_show_comment":"\u986f\u793a\u8a55\u8ad6"},"logs":{"contact_log_contact_created":"\u5df2\u5efa\u7acb\u806f\u7d61\u4eba","contact_log_contact_description_cleared":"\u5df2\u6e05\u9664\u63cf\u8ff0","contact_log_contact_description_updated":"\u5df2\u66f4\u65b0\u63cf\u8ff0","contact_log_contact_work_updated":"\u66f4\u65b0\u5de5\u4f5c\u8cc7\u8a0a.","settings_log_company_created":"\u5efa\u7acb\u4e86\u4e00\u500b\u540d\u70ba :name \u7684\u516c\u53f8","settings_log_contact_created_with_name":"\u65b0\u589e :name \u70ba\u806f\u7d61\u4eba","settings_log_contact_description_cleared_with_name":"\u5df2\u6e05\u9664 :name \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u63cf\u8ff0","settings_log_contact_work_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u5de5\u4f5c\u8cc7\u8a0a"},"mail":{"comment":"\u5099\u8a3b\uff1a:comment","confirmation_email_bottom":"\u5982\u679c\u4e0d\u662f\u60a8\u672c\u4eba\u9032\u884c\u7684\u5efa\u7acb\u5e33\u6236\u64cd\u4f5c\uff0c\u8acb\u5ffd\u7565\u9019\u5c01\u90f5\u4ef6\u3002","confirmation_email_button":"Email \u8a8d\u8b49","confirmation_email_intro":"\u8acb\u9ede\u9078\u4ee5\u4e0b\u6309\u9215\u4f86\u5b8c\u6210Email\u8a8d\u8b49","confirmation_email_title":"Monica \u2013 Email \u8a8d\u8b49","footer_contact_info":"\u65b0\u589e\u3001\u6aa2\u8996\u3001\u5b8c\u6210\u548c\u66f4\u6539\u6709\u95dc\u6b64\u806f\u7d61\u4eba\u7684\u8cc7\u8a0a:","footer_contact_info2":"\u770b\u770b :name\u7684\u500b\u4eba\u8cc7\u6599","footer_contact_info2_link":"\u770b\u770b:name\u7684\u500b\u4eba\u8cc7\u6599: :url","for":"\u70ba\uff1a:name","greetings":"\u60a8\u597d:username","invitation_button":"\u63a5\u53d7\u9080\u8acb","invitation_expiration":"\u6b64\u9023\u7d50\u5c07\u5728 :count \u5929\u5f8c\u904e\u671f","invitation_intro":"\u60a8\u5df2\u88ab:name (:email)\u9080\u8acb\u4f7f\u7528 Monica, \u500b\u4eba\u793e\u4ea4\u95dc\u4fc2\u7ba1\u7406\u5de5\u5177\u3002","invitation_link":"\u8981\u63a5\u53d7\u9080\u8acb\uff0c\u8acb\u9ede\u9078\u4e0b\u9762\u7684\u9023\u7d50\uff1a","invitation_title":"Monica \u2014 \u60a8\u6536\u5230 :name \u7684\u9080\u8acb","notification_description":"\u5728:count\u5929\u5f8c(:date),\u5c07\u6709\u4ee5\u4e0b\u4e8b\u4ef6\u767c\u751f\uff1a","notification_subject_line":"\u60a8\u6709\u4e00\u500b\u5373\u5c07\u9032\u884c\u7684\u6d3b\u52d5","notifications_footer":"\u5982\u679c\u60a8\u7121\u6cd5\u9ede\u9078 \":actionText\" \u6309\u9215, \u8907\u88fd\u4ee5\u4e0b\u9023\u7d50\u81f3\u700f\u89bd\u5668\u958b\u555f: [:actionURL](:actionURL)","notifications_hello":"\u60a8\u597d\uff01","notifications_regards":"\u6b64\u81f4","notifications_rights":"\u7248\u6b0a\u6240\u6709","notifications_whoops":"\u7cdf\u4e86!","password_reset_bottom":"\u5982\u679c\u60a8\u6c92\u6709\u8acb\u6c42\u91cd\u7f6e\u5bc6\u78bc\uff0c\u8acb\u5ffd\u7565\u9019\u5c01\u90f5\u4ef6\u3002","password_reset_button":"\u91cd\u7f6e\u5bc6\u78bc","password_reset_expiration":"\u6b64\u5bc6\u78bc\u91cd\u7f6e\u9023\u7d50\u5c07\u5728 :count \u5206\u9418\u5f8c\u904e\u671f","password_reset_intro":"\u60a8\u6536\u5230\u6b64\u90f5\u4ef6\u662f\u56e0\u70ba\u6211\u5011\u6536\u5230\u4e86\u60a8\u7684\u5bc6\u78bc\u91cd\u7f6e\u8acb\u6c42","password_reset_title":"Monica \u2014 \u91cd\u7f6e\u5bc6\u78bc\u901a\u77e5","stay_in_touch_subject_description":"\u60a8\u7684\u5e38\u806f\u7d61\u63d0\u9192\uff1a \u6bcf :frequency \u5929 \u8207 :name \u806f\u7d61.","stay_in_touch_subject_line":"\u60a8\u7684\u300e\u5e38\u806f\u7d61\u300f\u63d0\u9192 :name","subject_line":"\u63d0\u9192:contact","want_reminded_of":"\u60a8\u7684\u63d0\u9192\u4e8b\u9805\uff1a:reason"},"pagination":{"next":"\u4e0b\u4e00\u9801 \u276f","previous":"\u276e \u4e0a\u4e00\u9801"},"passwords":{"changed":"\u5bc6\u78bc\u4fee\u6539\u6210\u529f","invalid":"\u60a8\u8f38\u5165\u7684\u5bc6\u78bc\u4e0d\u6b63\u78ba\u3002","reset":"\u60a8\u7684\u5bc6\u78bc\u5df2\u91cd\u7f6e\uff01","sent":"\u5982\u679c\u60a8\u8f38\u5165\u7684\u96fb\u5b50\u90f5\u4ef6\u5b58\u5728\u65bc\u6211\u5011\u7684\u7d00\u9304\u4e2d, \u5bc6\u78bc\u91cd\u7f6e\u9023\u7d50\u5c07\u88ab\u767c\u9001\u81f3\u6539\u4fe1\u7bb1\u3002","throttled":"\u8acb\u7a0d\u5019\u518d\u8a66","token":"\u5bc6\u78bc\u91cd\u7f6e\u7955\u9470\u7121\u6548\u3002","user":"\u5982\u679c\u60a8\u8f38\u5165\u7684\u96fb\u5b50\u90f5\u4ef6\u5b58\u5728\u65bc\u6211\u5011\u7684\u7d00\u9304\u4e2d, \u5bc6\u78bc\u91cd\u7f6e\u9023\u7d50\u5c07\u88ab\u767c\u9001\u81f3\u8a72\u4fe1\u7bb1\u3002"},"people":{"activities_activity":"\u6d3b\u52d5\u985e\u5225","activities_add_activity":"\u65b0\u589e\u6d3b\u52d5","activities_add_category":"\u6307\u5b9a\u985e\u5225","activities_add_date_occured":"\u6d3b\u52d5\u767c\u751f\u65bc...","activities_add_emotions":"\u65b0\u589e\u60c5\u7dd2","activities_add_emotions_title":"\u60a8\u60f3\u8a18\u9304\u60a8\u5728\u6b64\u901a\u8a71\u4e2d\u7684\u611f\u53d7\u55ce\uff1f(\u53ef\u9078)","activities_add_error":"\u65b0\u589e\u6d3b\u52d5\u6642\u51fa\u73fe\u932f\u8aa4","activities_add_more_details":"\u65b0\u589e\u66f4\u591a\u8a73\u60c5","activities_add_participants":"\u9664\u4e86 {name} \u4e4b\u5916\uff0c\u8ab0\u53c3\u8207\u4e86\u9019\u500b\u6d3b\u52d5\uff1f(\u53ef\u9078)","activities_add_participants_cta":"\u65b0\u589e\u53c3\u8207\u8005","activities_add_pick_activity":"\u6d3b\u52d5\u5206\u985e(\u53ef\u9078)","activities_add_success":"\u5df2\u6210\u529f\u65b0\u589e\u6d3b\u52d5","activities_add_title":"\u60a8\u8207 {name} \u4e00\u8d77\u505a\u4e86\u4ec0\u9ebc?","activities_blank_add_activity":"\u65b0\u589e\u6d3b\u52d5","activities_blank_title":"\u8a18\u9304\u60a8\u8207 {name} \u4e4b\u9593\u7684\u9ede\u6ef4","activities_delete_success":"\u6d3b\u52d5\u5df2\u6210\u529f\u522a\u9664","activities_item_information":":Activity\uff0c\u767c\u751f\u65bc:date","activities_list_category":"\u5206\u985e\uff1a","activities_list_date":"\u767c\u751f\u65bc","activities_list_emotions":"\u6211\u611f\u89ba:","activities_list_participants":"\u53c3\u8207\u8005\uff1a","activities_profile_number_occurences":":value \u6b21\u6d3b\u52d5","activities_profile_subtitle":"\u622a\u81f3\u76ee\u524d\u70ba\u6b62\u60a8\u8207:name\u7684\u6d3b\u52d5\u8a18\u9304\u5982\u4e0b\uff1a\u8fd1\u4e00\u5e74\u5171 :activities_last_twelve_months\u6b21\uff0c\u7e3d\u5171 :total_activities\u6b21","activities_profile_title":":name \u8207\u60a8\u4e4b\u9593\u7684\u6d3b\u52d5\u5831\u544a","activities_profile_year_summary":":year\u5e74\u4f60\u5011\u4e00\u8d77\u9032\u884c\u7684\u6d3b\u52d5","activities_profile_year_summary_activity_types":":year\u5e74\u6d3b\u52d5\u578b\u5225\u5f59\u7e3d","activities_summary":"\u63cf\u8ff0\u4f60\u505a\u4e86\u4ec0\u9ebc","activities_update_success":"\u6d3b\u52d5\u5df2\u6210\u529f\u66f4\u65b0","activities_view_activities_report":"\u6aa2\u8996\u6d3b\u52d5\u5831\u544a","activities_who_was_involved":"\u8ab0\u53c3\u8207\u4e86\uff1f","activity_title":"\u6d3b\u52d5","activity_type_ate_at_his_place":"\u5728\u5c0d\u65b9\u5bb6\u88e1\u505a\u5ba2","activity_type_ate_at_home":"\u5728\u5bb6\u5403\u98ef","activity_type_ate_restaurant":"\u5728\u98ef\u5e97\u5403","activity_type_category_cultural_activities":"\u6587\u5316","activity_type_category_food":"\u98df\u7269","activity_type_category_simple_activities":"\u4e00\u822c\u6d3b\u52d5","activity_type_category_sport":"\u904b\u52d5","activity_type_did_sport_activities_together":"\u4e00\u8d77\u6253\u7403","activity_type_just_hung_out":"\u7d04\u6703","activity_type_picnicked":"\u5df2\u9078\u64c7","activity_type_talked_at_home":"\u8ac7\u5fc3","activity_type_watched_movie_at_home":"\u770b\u96fb\u5f71","activity_type_went_bar":"\u6ce1\u5427","activity_type_went_concert":"\u53bb\u97f3\u6a02\u6703","activity_type_went_museum":"\u53bb\u535a\u7269\u9928","activity_type_went_play":"\u51fa\u53bb\u73a9","activity_type_went_theater":"\u770b\u6232","age_approximate_in_years":"\u5927\u6982:age\u6b72","age_exact_birthdate":"\u51fa\u751f:date","age_exact_in_years":":age\u6b72","auditlogs_author":":name \u65bc :date ","auditlogs_breadcrumb":"\u6b77\u53f2","auditlogs_link":"\u6b77\u53f2","auditlogs_title":":name \u767c\u751f\u7684\u6240\u6709\u4e8b\u4ef6","avatar_adorable_avatar":"\u559c\u611b\u982d\u50cf","avatar_change_title":"\u66f4\u63db\u982d\u50cf","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"\u4fdd\u6301\u7576\u524d\u982d\u50cf","avatar_default_avatar":"\u9810\u8a2d\u982d\u50cf","avatar_gravatar":"\u6b64\u4f7f\u7528\u8005\u7684\u96fb\u5b50\u90f5\u4ef6\u5730\u5740 \u8207 Gravatar \u95dc\u806f \u3002 Gravatar<\/a> \u662f\u5168\u7403\u901a\u7528\u7684\u982d\u50cf\u670d\u52d9\u3002","avatar_photo":"\u5f9e\u60a8\u4e0a\u50b3\u7684\u7167\u7247","avatar_question":"\u60a8\u60f3\u4f7f\u7528\u54ea\u500b\u982d\u50cf\uff1f","birthdate_not_set":"\u672a\u8a2d\u5b9a\u751f\u65e5","call_blank_desc":"\u4f60\u6253\u7d66{name}","call_blank_title":"\u8ffd\u8e64\u60a8\u8207{name} \u7684\u901a\u8a71\u8a18\u9304","call_button":"\u8a18\u9304\u901a\u8a71","call_delete_confirmation":"\u4f60\u78ba\u5b9a\u8981\u522a\u9664\u6b64\u901a\u8a71\u8a18\u9304\u55ce?","call_delete_success":"\u6210\u529f\u522a\u9664\u901a\u8a71\u8a18\u9304\uff01","call_emotions":"\u60c5\u7dd2\uff1a","call_empty_comment":"\u7121\u8a73\u7d30\u8cc7\u8a0a","call_he_called":"{name} \u64a5\u51fa\u7684","call_title":"\u901a\u8a71\u8a18\u9304","call_you_called":"\u60a8\u64a5\u51fa\u7684","calls_add_success":"\u5df2\u5132\u5b58\u901a\u8a71\u8a18\u9304\u3002","contact_address_form_city":"\u57ce\u5e02 (\u53ef\u9078)","contact_address_form_country":"\u570b\u5bb6 (\u53ef\u9078)","contact_address_form_latitude":"\u7def\u5ea6 (\u50c5\u9650\u6578\u5b57) (\u53ef\u9078)","contact_address_form_longitude":"\u7d93\u5ea6 (\u50c5\u9650\u6578\u5b57) (\u53ef\u9078)","contact_address_form_name":"\u6a19\u7c64 (\u53ef\u9078)","contact_address_form_postal_code":"\u90f5\u653f\u7de8\u78bc (\u53ef\u9078)","contact_address_form_province":"\u7701 (\u53ef\u9078)","contact_address_form_street":"\u8857 (\u53ef\u9078)","contact_address_title":"\u5730\u5740","contact_archive":"\u5b58\u6a94\u806f\u7d61\u4eba","contact_archive_help":"\u5b58\u6a94\u7684\u806f\u7d61\u4eba\u5c07\u4e0d\u6703\u986f\u793a\u5728\u806f\u7d61\u4eba\u5217\u8868\u4e2d, \u4f46\u4ecd\u6703\u986f\u793a\u5728\u641c\u5c0b\u7d50\u679c\u4e2d\u3002","contact_field_label_cell":"\u624b\u6a5f","contact_field_label_fax":"\u50b3\u771f","contact_field_label_home":"\u5bb6\u5ead","contact_field_label_main":"\u4e3b\u8981","contact_field_label_other":"\u5176\u5b83","contact_field_label_pager":"\u547c\u53eb\u5668","contact_field_label_personal":"\u500b\u4eba","contact_field_label_work":"\u5de5\u4f5c","contact_info_address":"\u751f\u6d3b\u5728","contact_info_form_contact_type":"\u806f\u7d61\u65b9\u5f0f","contact_info_form_content":"\u5167\u5bb9","contact_info_form_personalize":"\u500b\u6027\u5316","contact_info_title":"\u806f\u7d61\u8cc7\u8a0a","contact_unarchive":"\u53d6\u6d88\u5b58\u6a94","conversation_add_another":"\u65b0\u589e\u53e6\u4e00\u689d\u8a0a\u606f","conversation_add_content":"\u5beb\u4e0b\u4f60\u5011\u8aaa\u7684\u8a71","conversation_add_error":"\u60a8\u5fc5\u9808\u81f3\u5c11\u65b0\u589e\u4e00\u689d\u8cc7\u8a0a","conversation_add_how":"\u4f60\u5011\u600e\u9ebc\u4ea4\u6d41\uff1f","conversation_add_success":"\u5c0d\u8a71\u6210\u529f\u65b0\u589e","conversation_add_title":"\u8a18\u9304\u4e00\u500b\u65b0\u5c0d\u8a71","conversation_add_what_was_said":"\u60a8\u8aaa\u4e86\u4ec0\u9ebc\uff1f","conversation_add_when":"\u4f60\u5011\u4f55\u6642\u9032\u884c\u7684\u5c0d\u8a71\uff1f","conversation_add_who_wrote":"\u8ab0\u8aaa\u7684\uff1f","conversation_add_you":"\u60a8","conversation_blank":"\u8a18\u9304\u60a8\u8207:name\u901a\u904e\u7c21\u8a0a\u6216\u793e\u4ea4\u5a92\u9ad4\u7684\u8cc7\u8a0a\u8a18\u9304","conversation_delete_link":"\u522a\u9664\u5c0d\u8a71","conversation_delete_success":"\u5c0d\u8a71\u6210\u529f\u522a\u9664","conversation_edit_delete":"\u60a8\u662f\u5426\u8981\u522a\u9664\u9019\u500b\u5c0d\u8a71\uff1f\u64cd\u4f5c\u7121\u6cd5\u64a4\u92b7\u3002","conversation_edit_success":"\u5c0d\u8a71\u6210\u529f\u66f4\u65b0","conversation_edit_title":"\u7de8\u8f2f\u5c0d\u8a71","conversation_list_cta":"\u8a18\u9304\u5c0d\u8a71","conversation_list_table_content":"\u90e8\u5206\u5167\u5bb9(\u6700\u65b0\u8a0a\u606f)","conversation_list_table_messages":"\u8a0a\u606f","conversation_list_title":"\u5c0d\u8a71","debt_add_add_cta":"\u589e\u52a0\u50b5\u52d9","debt_add_amount":"\u6578\u984d","debt_add_cta":"\u589e\u52a0\u50b5\u52d9","debt_add_reason":"\u4e8b\u7531\uff08\u53ef\u9078\uff09","debt_add_success":"\u5df2\u6210\u529f\u65b0\u589e\u50b5\u52d9","debt_add_they_owe":"\u60a8\u501f\u7d66:name","debt_add_title":"\u50b5\u52d9\u7ba1\u7406","debt_add_you_owe":":name\u501f\u7d66\u60a8","debt_delete_confirmation":"\u662f\u5426\u78ba\u5be6\u8981\u522a\u9664\u6b64\u50b5\u52d9\uff1f","debt_delete_success":"\u5df2\u6210\u529f\u522a\u9664\u50b5\u52d9","debt_edit_success":"\u50b5\u52d9\u5df2\u6210\u529f\u66f4\u65b0","debt_edit_update_cta":"\u66f4\u65b0\u50b5\u52d9","debt_they_owe":":name\u6b20\u60a8:amount","debt_title":"\u50b5\u52d9","debt_you_owe":"\u60a8\u6b20:amount","debts_blank_title":"\u7ba1\u7406\u60a8\u8207:name\u4e4b\u9593\u7684\u50b5\u52d9\u95dc\u4fc2","deceased_add_reminder":"\u70ba\u6b64\u65e5\u671f\u65b0\u589e\u63d0\u9192","deceased_age":"\u4eab\u5e74","deceased_date_label":"\u6b7b\u4ea1\u65e5\u671f","deceased_know_date":"\u6211\u77e5\u9053\u9019\u500b\u4eba\u53bb\u4e16\u65e5\u671f","deceased_label":"\u901d\u8005","deceased_label_with_date":"\u5728:date\u53bb\u4e16","deceased_mark_person_deceased":"\u5c07\u6b64\u4eba\u6a19\u8a18\u70ba\u5df2\u901d\u8005","deceased_reminder_title":":name\u7684\u53bb\u4e16\u9031\u5e74\u61f7\u5ff5","document_list_blank_desc":"\u5728\u9019\u88e1, \u60a8\u53ef\u4ee5\u5132\u5b58\u8207\u6b64\u4eba\u76f8\u95dc\u7684\u6a94\u6848\u3002","document_list_cta":"\u4e0a\u8f09\u6a94\u6848","document_list_title":"\u6a94\u6848","document_upload_zone_cta":"\u4e0a\u50b3\u6a94\u6848","document_upload_zone_error":"\u4e0a\u50b3\u6a94\u6848\u6642\u51fa\u932f\uff0c\u8acb\u518d\u8a66\u4e00\u6b21 \uff01","document_upload_zone_progress":"\u6b63\u5728\u4e0a\u50b3\u6a94\u6848","edit_contact_information":"\u7de8\u8f2f\u806f\u7d61\u4eba\u8cc7\u8a0a","emotion_this_made_me_feel":"\u9019\u8b93\u4f60\u89ba\u5f97...","food_preferences_add_success":"\u98df\u54c1\u504f\u597d\u5df2\u88ab\u5132\u5b58","food_preferences_cta":"\u65b0\u589e\u98df\u7269\u504f\u597d","food_preferences_edit_cta":"\u5132\u5b58\u98df\u7269\u504f\u597d","food_preferences_edit_description":"\u4e5f\u8a31:firstname\u6216:family\u7684\u5bb6\u5ead\u6709\u904e\u654f\uff0c\u6216\u8005\u4e0d\u559c\u6b61\u4e00\u74f6\u7279\u5b9a\u7684\u9152\u7b49\u3002\u628a\u9019\u4e9b\u8cc7\u8a0a\u5217\u5728\u9019\u88e1\uff0c\u5728\u4e0b\u6b21\u548c\u9080\u8acb\u4ed6\u5011\u5403\u98ef\u6642\u53ef\u4ee5\u5728\u9019\u88e1\u770b\u5230\u9019\u4e9b\u8cc7\u8a0a\u3002","food_preferences_edit_description_no_last_name":"\u4e5f\u8a31:firstname\u6709\u904e\u654f\u60c5\u6cc1\uff0c\u6216\u8005\u4e0d\u559c\u6b61\u4e00\u74f6\u7279\u5b9a\u7684\u9152\u7b49\u3002\u628a\u9019\u4e9b\u8cc7\u8a0a\u5217\u5728\u9019\u88e1\uff0c\u5728\u4e0b\u6b21\u548c\u9080\u8acb\u4ed6\u5011\u5403\u98ef\u6642\u53ef\u4ee5\u5728\u9019\u88e1\u770b\u5230\u9019\u4e9b\u8cc7\u8a0a\u3002","food_preferences_edit_title":"\u8a3b\u660e\u98df\u7269\u504f\u597d","food_preferences_title":"\u98df\u7269\u504f\u597d","gifts_add_comment":"\u5099\u8a3b (\u53ef\u9078)","gifts_add_date":"\u65e5\u671f (\u9078\u586b)","gifts_add_gift":"\u65b0\u589e\u79ae\u7269","gifts_add_gift_already_offered":"\u9001\u51fa\u7684\u79ae\u7269","gifts_add_gift_idea":"\u79ae\u54c1\u5275\u610f","gifts_add_gift_name":"\u79ae\u54c1\u540d\u7a31","gifts_add_gift_received":"\u6536\u5230\u7684\u79ae\u7269","gifts_add_gift_title":"\u9019\u662f\u4ec0\u9ebc\u79ae\u7269\uff1f","gifts_add_link":"\u79ae\u7269\u9023\u7d50 (\u53ef\u9078)","gifts_add_photo":"\u76f8\u7247(\u53ef\u9078)","gifts_add_photo_title":"\u70ba\u6b64\u79ae\u7269\u65b0\u589e\u4e00\u5f35\u7167\u7247","gifts_add_recipient":"\u6536\u4ef6\u4eba(\u53ef\u9078)","gifts_add_recipient_field":"\u6536\u4ef6\u4eba","gifts_add_someone":"\u9019\u4efd\u79ae\u7269\u7279\u5225\u662f\u7d66{name}\u7684\u5bb6\u4eba","gifts_add_success":"\u5df2\u6210\u529f\u65b0\u589e\u79ae\u7269","gifts_add_title":"\u8207:name\u7684\u79ae\u7269\u4f86\u5f80","gifts_add_value":"\u503c (\u53ef\u9078)","gifts_delete_confirmation":"\u662f\u5426\u78ba\u5be6\u8981\u522a\u9664\u6b64\u79ae\u7269\uff1f","gifts_delete_cta":"\u522a\u9664","gifts_delete_success":"\u79ae\u7269\u5df2\u6210\u529f\u522a\u9664","gifts_delete_title":"\u522a\u9664\u79ae\u7269","gifts_for":"\u8d08\u4e88\uff1a{name}","gifts_ideas":"\u5fc3\u9858\u55ae","gifts_link":"\u9023\u7d50","gifts_mark_offered":"\u6a19\u8a18\u70ba\u63d0\u4f9b","gifts_offered":"\u9001\u51fa\u7684\u79ae\u7269","gifts_offered_as_an_idea":"\u6a19\u8a18\u70ba\u5fc3\u9858\u55ae","gifts_received":"\u6536\u5230\u7684\u79ae\u7269","gifts_title":"\u79ae\u7269\u5f80\u4f86","gifts_update_success":"\u79ae\u7269\u5df2\u6210\u529f\u66f4\u65b0","gifts_view_comment":"\u6aa2\u8996\u8a55\u8ad6","information_edit_birthdate_label":"\u751f\u65e5","information_edit_description":"\u8aaa\u660e (\u53ef\u9078)","information_edit_description_help":"\u7528\u65bc\u5728\u806f\u7d61\u4eba\u5217\u8868\u4e2d\u65b0\u589e\u4e00\u4e9b\u5143\u7d20\uff08\u5982\u6709\u5fc5\u8981\uff09","information_edit_exact":"\u6211\u77e5\u9053\u9019\u500b\u4eba\u7684\u78ba\u5207\u51fa\u751f\u65e5\u671f...","information_edit_firstname":"\u540d\u5b57","information_edit_lastname":"\u59d3\u6c0f\uff08\u53ef\u9078\uff09","information_edit_max_size":"\u6700\u5927\u503c :size Kb","information_edit_max_size2":"\u6700\u5927 {size} Kb","information_edit_not_year":"\u6211\u77e5\u9053\u9019\u500b\u4eba\u7684\u751f\u65e5\u7684\u65e5\u671f\u548c\u6708\u4efd, \u4f46\u4e0d\u77e5\u9053\u54ea\u4e00\u5e74\u3002","information_edit_probably":"\u6b64\u4eba\u53ef\u80fd\u662f...","information_edit_success":"\u7d00\u9304\u66f4\u65b0\u6210\u529f","information_edit_title":"\u7de8\u8f2f :name\u7684\u500b\u4eba\u8cc7\u8a0a","information_edit_unknown":"\u6211\u4e0d\u77e5\u9053\u5177\u9ad4\u5e74\u9f61","information_no_work_defined":"\u672a\u5b9a\u7fa9\u5de5\u4f5c\u8cc7\u8a0a","information_work_at":"\u5728 :company\u5de5\u4f5c","introductions_add_reminder":"\u65b0\u589e\u63d0\u9192\u4ee5\u6176\u795d\u6b64\u4e8b\u4ef6\u767c\u751f\u7684\u9031\u5e74\u7d00\u5ff5","introductions_additional_info":"\u4f60\u5728\u54ea\u88e1\u76f8\u9047","introductions_blank_cta":"\u60a8\u5982\u4f55\u9047\u5230\u7684:name","introductions_edit_met_through":"\u6709\u4eba\u628a\u4f60\u4ecb\u7d39\u7d66\u9019\u500b\u4eba\u55ce\uff1f","introductions_first_met_date":"\u7b2c\u4e00\u6b21\u76f8\u898b","introductions_first_met_date_known":"\u9019\u662f\u6211\u5011\u76f8\u9047\u7684\u65e5\u5b50","introductions_met_date":"\u5728:date\u9047\u5230","introductions_met_through":"\u901a\u904e :name<\/a>\u9047\u5230","introductions_no_first_met_date":"\u6211\u4e0d\u8a18\u5f97\u5177\u9ad4\u65e5\u671f","introductions_no_met_through":"\u6c92\u6709\u4eba","introductions_reminder_title":"\u4f60\u7b2c\u4e00\u6b21\u9047\u898b\u7684\u90a3\u4e00\u5929\u7684\u9031\u5e74\u7d00\u5ff5\u65e5","introductions_sidebar_title":"\u4f60\u5011\u662f\u5982\u4f55\u8a8d\u8b58\u7684\uff1f","introductions_title_edit":"\u4f60\u662f\u600e\u9ebc\u8a8d\u8b58:name\u7684\uff1f","introductions_update_success":"\u4f60\u6210\u529f\u66f4\u65b0\u4e86\u95dc\u65bc\u4f60\u5011\u76f8\u8b58\u7684\u6545\u4e8b","last_activity_date":"\u6700\u8fd1\u4e00\u8d77\u7684\u6d3b\u52d5: :date","last_activity_date_empty":"\u6700\u8fd1\u4e00\u8d77\u7684\u6d3b\u52d5: \u672a\u77e5","last_called":"\u6700\u8fd1\u901a\u8a71: :date","last_called_empty":"\u6700\u8fd1\u901a\u8a71: \u672a\u77e5","life_event_blank":"\u8a18\u9304\u5728{name} \u8eab\u4e0a\u767c\u751f\u7684\u4e8b\u60c5\u4ee5\u4f9b\u5c07\u4f86\u53c3\u8003","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"\u70ba\u8a72\u4e8b\u4ef6\u65b0\u589e\u5e74\u5ea6\u63d0\u9192","life_event_create_category":"\u5168\u90e8\u985e\u5225","life_event_create_date":"\u4f60\u4e0d\u9700\u8981\u8a73\u7d30\u5230\u67d0\u4e00\u5929 - \u53ea\u9700\u8981\u63d0\u4f9b\u5e74\u4efd\u5c31\u884c","life_event_create_default_description":"\u65b0\u589e\u4f60\u77e5\u9053\u7684\u8cc7\u8a0a","life_event_create_default_story":"\u6545\u4e8b (\u53ef\u9078)","life_event_create_default_title":"\u6a19\u984c (\u53ef\u9078)","life_event_create_life_event":"\u65b0\u589e\u751f\u6d3b\u4e8b\u4ef6","life_event_create_success":"\u751f\u6d3b\u4e8b\u4ef6\u65b0\u589e\u6210\u529f","life_event_date_it_happened":"\u767c\u751f\u65e5\u671f","life_event_delete_description":"\u78ba\u5be6\u8981\u522a\u9664\u6b64\u751f\u6d3b\u4e8b\u4ef6\u55ce\uff1f\u522a\u9664\u662f\u6c38\u4e45\u6027\u7684\u3002","life_event_delete_success":"\u4e8b\u4ef6\u5df2\u522a\u9664","life_event_delete_title":"\u522a\u9664\u751f\u6d3b\u4e8b\u4ef6","life_event_list_cta":"\u65b0\u589e\u751f\u6d3b\u4e8b\u4ef6","life_event_list_tab_life_events":"\u751f\u6d3b\u4e8b\u4ef6","life_event_list_tab_other":"\u4fbf\u7c64\u3001\u63d0\u9192..","life_event_list_title":"\u751f\u6d3b\u4e8b\u4ef6","life_event_sentence_achievement_or_award":"\u7372\u5f97\u6210\u5c31\u6216\u734e\u9805","life_event_sentence_anniversary":"\u9031\u5e74\u7d00\u5ff5\u65e5","life_event_sentence_bought_a_home":"\u8cb7\u4e86\u65b0\u623f\u5b50","life_event_sentence_broken_bone":"\u6298\u65b7\u4e86\u9aa8\u982d","life_event_sentence_changed_beliefs":"\u6539\u8b8a\u4fe1\u4ef0","life_event_sentence_dentist":"\u53bb\u770b\u7259\u91ab\u4e86","life_event_sentence_end_of_relationship":"\u7d50\u675f\u4e86\u4e00\u6bb5\u95dc\u4fc2","life_event_sentence_engagement":"\u8a02\u5a5a\u4e86","life_event_sentence_expecting_a_baby":"\u60f3\u8981\u5b69\u5b50","life_event_sentence_first_kiss":"\u7b2c\u4e00\u6b21\u63a5\u543b","life_event_sentence_first_word":"\u7b2c\u4e00\u6b21\u767c\u8a00","life_event_sentence_holidays":"\u53bb\u5ea6\u5047","life_event_sentence_home_improvement":"\u88dd\u4fee\u4e86","life_event_sentence_loss_of_a_loved_one":"\u5931\u53bb\u4e86\u5fc3\u611b\u7684\u4eba","life_event_sentence_marriage":"\u7d50\u5a5a","life_event_sentence_military_service":"\u958b\u59cb\u670d\u5f79","life_event_sentence_moved":"\u642c\u5bb6\u4e86","life_event_sentence_new_child":"\u6709\u500b\u5b69\u5b50","life_event_sentence_new_eating_habits":"\u958b\u59cb\u65b0\u7684\u98f2\u98df\u7fd2\u6163","life_event_sentence_new_family_member":"\u65b0\u589e\u4e86\u5bb6\u5ead\u6210\u54e1","life_event_sentence_new_hobby":"\u6709\u4e86\u65b0\u611b\u597d","life_event_sentence_new_instrument":"\u5b78\u6703\u4e86\u65b0\u6a02\u5668","life_event_sentence_new_job":"\u958b\u59cb\u4e86\u65b0\u7684\u5de5\u4f5c","life_event_sentence_new_language":"\u5b78\u4e86\u4e00\u9580\u65b0\u7684\u8a9e\u8a00","life_event_sentence_new_license":"\u7372\u5f97\u99d5\u7167","life_event_sentence_new_pet":"\u990a\u4e86\u5bf5\u7269","life_event_sentence_new_relationship":"\u958b\u59cb\u4e00\u6bb5\u95dc\u4fc2","life_event_sentence_new_roommate":"\u6709\u4e86\u65b0\u5ba4\u53cb","life_event_sentence_new_school":"\u958b\u59cb\u4e0a\u5b78","life_event_sentence_new_sport":"\u958b\u59cb\u904b\u52d5","life_event_sentence_new_vehicle":"\u8cb7\u4e86\u8f1b\u65b0\u8eca","life_event_sentence_overcame_an_illness":"\u71ac\u904e\u4e86\u75be\u75c5","life_event_sentence_published_book_or_paper":"\u767c\u8868\u4e86\u4e00\u7bc7\u8ad6\u6587","life_event_sentence_quit_a_habit":"\u6212\u6389\u4e00\u500b\u7fd2\u6163","life_event_sentence_removed_braces":"\u53bb\u6389\u4e86\u7259\u9f52\u77ef\u6b63\u5668","life_event_sentence_retirement":"\u9000\u4f11","life_event_sentence_study_abroad":"\u51fa\u570b\u7559\u5b78","life_event_sentence_surgery":"\u505a\u4e86\u624b\u8853","life_event_sentence_tattoo_or_piercing":"\u7d0b\u8eab\u4e86\u6216\u8005\u6253\u4e86\u8033\u6d1e","life_event_sentence_travel":"\u65c5\u904a\u4e86","life_event_sentence_volunteer_work":"\u958b\u59cb\u5fd7\u9858\u670d\u52d9","life_event_sentence_wear_glass_or_contact":"\u958b\u59cb\u4f69\u6234\u73bb\u7483\u6216\u96b1\u5f62\u773c\u93e1","life_event_sentence_weight_loss":"\u6e1b\u80a5\u4e86","list_link_to_active_contacts":"\u60a8\u6b63\u5728\u6aa2\u8996\u5b58\u6a94\u7684\u806f\u7d61\u4eba\uff0c \u55ae\u64ca\u9019\u88e1<\/a> \u4f86\u6aa2\u8996\u6d3b\u52d5\u7684\u806f\u7d61\u4eba\u5217\u8868\u3002","list_link_to_archived_contacts":"\u5df2\u5b58\u6a94\u806f\u7d61\u4eba\u5217\u8868","me":"\u9019\u662f\u4f60","modal_call_comment":"\u4f60\u5011\u8aaa\u4e86\u4ec0\u9ebc\uff1f\uff08\u53ef\u9078\uff09","modal_call_emotion":"\u60a8\u60f3\u8a18\u9304\u60a8\u5728\u6b64\u901a\u8a71\u4e2d\u7684\u611f\u53d7\u55ce\uff1f(\u53ef\u9078)","modal_call_exact_date":"\u901a\u8a71\u65e5\u671f","modal_call_title":"\u8a18\u9304\u901a\u8a71","modal_call_who_called":"\u8ab0\u6253\u4f86\u7684\uff1f","notes_add_cta":"\u65b0\u589e\u8a3b\u91cb","notes_create_success":"\u4fbf\u7c64\u5df2\u6210\u529f\u5efa\u7acb","notes_delete_confirmation":"\u78ba\u5be6\u8981\u522a\u9664\u6b64\u4fbf\u7c64\u55ce\uff1f","notes_delete_success":"\u8a3b\u91cb\u5df2\u6210\u529f\u522a\u9664","notes_delete_title":"\u522a\u9664\u4fbf\u7c64","notes_favorite":"\u65b0\u589e\/\u522a\u9664\u559c\u611b\u6a19\u8a18","notes_update_success":"\u4fbf\u7b8b\u5df2\u6210\u529f\u5132\u5b58","people_add_birthday_reminder":"\u795d: name\u751f\u65e5\u5feb\u6a02","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"\u65b0\u589e","people_add_firstname":"\u540d\u5b57","people_add_gender":"\u6027\u5225","people_add_import":"\u662f\u5426\u8981 \u532f\u5165\u60a8\u7684\u806f\u7d61\u4eba<\/a>\uff1f","people_add_lastname":"\u59d3\uff08\u53ef\u9078\uff09","people_add_middlename":"\u4e2d\u9593\u540d (\u53ef\u9078)","people_add_missing":"\u6c92\u6709\u806f\u7d61\u4eba\uff0c\u73fe\u5728\u65b0\u589e\u4e00\u500b","people_add_new":"\u65b0\u589e\u65b0\u7684\u806f\u7d61\u4eba","people_add_nickname":"\u66b1\u7a31\uff08\u53ef\u9078\uff09","people_add_reminder_for_birthday":"\u5efa\u7acb\u4e00\u500b\u5e74\u5ea6\u751f\u65e5\u63d0\u9192\u4e8b\u9805","people_add_success":":name \u5df2\u6210\u529f\u5efa\u7acb","people_add_title":"\u65b0\u589e\u4e00\u4f4d\u65b0\u7684\u806f\u7d61\u4eba","people_delete_confirmation":"\u78ba\u5be6\u8981\u522a\u9664\u6b64\u806f\u7d61\u4eba\u55ce\uff1f\u522a\u9664\u662f\u6c38\u4e45\u6027\u7684\u3002","people_delete_message":"\u522a\u9664\u806f\u7d61\u4eba","people_delete_success":"\u806f\u7d61\u4eba\u5df2\u88ab\u522a\u9664","people_edit_email_error":"\u60a8\u7684\u806f\u7d61\u4eba\u4e2d\u5df2\u7d93\u6709\u4eba\u4f7f\u7528\u6b64\u96fb\u5b50\u90f5\u4ef6\uff0c\u8acb\u66f4\u63db\u4e00\u500b","people_export":"\u532f\u51fa\u70ba vCard","people_list_account_upgrade_cta":"\u7acb\u5373\u5347\u7d1a","people_list_account_upgrade_title":"\u5347\u7d1a\u60a8\u7684\u5e33\u6236, \u4ee5\u958b\u555f\u5168\u90e8\u529f\u80fd\u3002","people_list_account_usage":"\u60a8\u7684\u8cec\u6236\u5df2\u806f\u7d61\u4eba\u4f7f\u7528\u60c5\u6cc1\u662f\uff1a:current\/:limit ","people_list_blank_cta":"\u65b0\u589e\u67d0\u4eba","people_list_blank_title":"\u60a8\u9084\u6c92\u6709\u4efb\u4f55\u806f\u7d61\u4eba","people_list_clear_filter":"\u6e05\u9664\u7be9\u9078","people_list_contacts_per_tags":":count \u500b\u806f\u7d61\u4eba","people_list_filter_tag":"\u64c1\u6709\u4ee5\u4e0b\u6a19\u7c64\u7684\u806f\u7d61\u4eba\uff1a","people_list_filter_untag":"\u6240\u6709\u672a\u52a0\u6a19\u7c64\u7684\u806f\u7d61\u4eba","people_list_firstnameAZ":"\u4ee5\u540d\u5b57A \u2192 Z\u6392\u5e8f","people_list_firstnameZA":"\u4ee5\u540d\u5b57 Z \u2192 A\u6392\u5e8f","people_list_hide_dead":"\u96b1\u85cf\u5df2\u6545\u4eba\u54e1 (:count)","people_list_last_updated":"\u6700\u8fd1\u66f4\u65b0:","people_list_lastactivitydateNewtoOld":"\u4ee5\u6700\u5f8c\u6d3b\u52d5\u65e5\u671f\u5f9e\u8fd1\u5230\u9060\u6392\u5e8f","people_list_lastactivitydateOldtoNew":"\u4ee5\u6700\u5f8c\u6d3b\u52d5\u65e5\u671f\u5f9e\u9060\u5230\u8fd1\u6392\u5e8f","people_list_lastnameAZ":"\u4ee5\u59d3A \u2192 Z\u6392\u5e8f","people_list_lastnameZA":"\u4ee5\u59d3Z \u2192 A\u6392\u5e8f","people_list_number_kids":":count \u500b\u5b69\u5b50","people_list_number_reminders":":count \u500b\u63d0\u9192","people_list_show_dead":"\u986f\u793a\u5df2\u6545\u4eba\u54e1 (:count)","people_list_sort":"\u6392\u5e8f","people_list_stats":":count \u500b\u806f\u7d61\u4eba","people_list_untagged":"\u6aa2\u8996\u672a\u52a0\u6a19\u7c64\u7684\u806f\u7d61\u4eba","people_not_found":"\u806f\u7d61\u4eba\u672a\u627e\u5230","people_save_and_add_another_cta":"\u63d0\u4ea4\u4f75\u65b0\u589e\u5176\u4ed6\u4eba","people_search":"\u641c\u5c0b\u806f\u7d61\u4eba...","people_search_all":"\u6240\u6709","people_search_next":"\u4e0b\u4e00\u9801","people_search_no_results":"\u672a\u627e\u5230\u4efb\u4f55\u7d50\u679c","people_search_of":"\/","people_search_page":"\u9801","people_search_prev":"\u4e0a\u4e00\u9801","people_search_rows_per_page":"Rows per page","pets_bird":"\u9ce5","pets_cat":"\u8c93","pets_create_success":"\u5df2\u6210\u529f\u65b0\u589e\u5bf5\u7269","pets_delete_success":"\u5bf5\u7269\u5df2\u88ab\u522a\u9664","pets_dog":"\u72d7","pets_fish":"\u9b5a","pets_hamster":"\u5009\u9f20","pets_horse":"\u99ac","pets_kind":"\u5bf5\u7269\u7a2e\u985e","pets_name":"\u540d\u5b57 (\u53ef\u9078)","pets_other":"\u5176\u5b83","pets_rabbit":"\u5154\u5b50","pets_rat":"\u9f20","pets_reptile":"\u722c\u884c\u52d5\u7269","pets_small_animal":"\u5c0f\u52d5\u7269","pets_title":"\u5bf5\u7269","pets_update_success":"\u5bf5\u7269\u5df2\u66f4\u65b0","photo_current_profile_pic":"\u76ee\u524d\u982d\u50cf","photo_delete":"\u522a\u9664\u7167\u7247","photo_list_blank_desc":"\u60a8\u53ef\u4ee5\u5132\u5b58\u6709\u95dc\u6b64\u806f\u7d61\u4eba\u7684\u5f71\u8c61\u3002\u7acb\u5373\u4e0a\u50b3\u4e00\u500b!","photo_list_cta":"\u4e0a\u50b3\u7167\u7247","photo_list_title":"\u76f8\u95dc\u7167\u7247","photo_make_profile_pic":"\u88fd\u4f5c\u982d\u50cf","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"\u7167\u7247","photo_upload_zone_cta":"\u4e0a\u50b3\u7167\u7247","relationship_delete_confirmation":"\u60a8\u78ba\u5b9a\u8981\u5c07\u95dc\u4fc2\u522a\u9664\u55ce\uff1f\u672c\u64cd\u4f5c\u7121\u6cd5\u64a4\u92b7\u3002","relationship_form_add":"\u65b0\u589e\u4e00\u500b\u65b0\u7684\u95dc\u4fc2","relationship_form_add_choice":"\u9019\u662f\u8207\u8ab0\u7684\u95dc\u4fc2\uff1f","relationship_form_add_description":"\u9019\u6703\u8b93\u4f60\u50cf\u5176\u4ed6\u806f\u7d61\u4eba\u4e00\u6a23\u5c0d\u5f85\u9019\u500b\u4eba\u3002","relationship_form_add_no_existing_contact":"\u60a8\u66ab\u6642\u6c92\u6709\u80fd\u8207 :name \u9023\u7d50\u7684\u806f\u7d61\u4eba","relationship_form_add_success":"\u95dc\u4fc2\u8a2d\u5b9a\u5b8c\u6210","relationship_form_also_create_contact":"\u5c07\u6b64\u4eba\u5efa\u7acb\u70ba\u60a8\u7684\u806f\u7d61\u4eba","relationship_form_associate_contact":"\u532f\u5165\u4e00\u4f4d\u5df2\u5b58\u5728\u7684\u806f\u7d61\u4eba","relationship_form_associate_dropdown":"\u8acb\u5f9e\u4e0b\u62c9\u9078\u55ae\u9078\u64c7\u4e00\u4f4d\u806f\u7d61\u4eba","relationship_form_associate_dropdown_placeholder":"\u641c\u5c0b\u4e26\u9078\u64c7\u4e00\u4f4d\u73fe\u6709\u806f\u7d61\u4eba","relationship_form_create_contact":"\u65b0\u589e\u4e00\u500b\u65b0\u7684\u4eba","relationship_form_deletion_success":"\u6b64\u95dc\u4fc2\u5df2\u522a\u9664","relationship_form_edit":"\u4fee\u6539\u4e00\u500b\u5df2\u6709\u95dc\u4fc2","relationship_form_is_with":"\u9019\u500b\u4eba\u662f...","relationship_form_is_with_name":":name \u662f...","relationship_unlink_confirmation":"\u60a8\u78ba\u5b9a\u8981\u5c07\u95dc\u4fc2\u522a\u9664\u55ce\uff1f\u6b64\u64cd\u4f5c\u4e0d\u6703\u5f9e\u60a8\u7684\u806f\u7d61\u4eba\u5217\u8868\u5c07\u5176\u522a\u9664\u3002","reminder_frequency_day":"\u6bcf:number\u5929","reminder_frequency_month":" \u6bcf:number\u6708","reminder_frequency_one_time":"\u5728:date","reminder_frequency_week":" \u6bcf:number\u661f\u671f","reminder_frequency_year":"\u6bcf:number\u5e74","reminders_add_cta":"\u65b0\u589e\u63d0\u9192","reminders_add_description":"\u8acb\u63d0\u9192\u6211...","reminders_add_error_custom_text":"\u60a8\u9700\u8981\u70ba\u6b64\u63d0\u9192\u6307\u5b9a\u6587\u5b57","reminders_add_next_time":"\u60a8\u5e0c\u671b\u4e0b\u4e00\u6b21\u95dc\u65bc\u9019\u500b\u7684\u63d0\u9192\u7684\u6642\u9593\u662f\uff1f","reminders_add_once":"\u50c5\u4e00\u6b21","reminders_add_optional_comment":"\u53ef\u9078\u5099\u8a3b","reminders_add_recurrent":"\u6bcf","reminders_add_starting_from":"\u63d0\u9192\u6211","reminders_add_title":"\u4f60\u9700\u8981\u95dc\u65bc:name\u7684\u63d0\u9192\u55ce\uff1f","reminders_birthday":":name\u7684\u751f\u65e5","reminders_blank_add_activity":"\u65b0\u589e\u63d0\u9192","reminders_blank_title":"\u60a8\u6709\u4ec0\u9ebc\u95dc\u65bc:name\u7684\u63d0\u9192\u55ce\uff1f","reminders_create_success":"\u5df2\u6210\u529f\u65b0\u589e\u63d0\u9192","reminders_cta":"\u65b0\u589e\u63d0\u9192","reminders_delete_confirmation":"\u78ba\u5be6\u8981\u522a\u9664\u6b64\u63d0\u9192\u55ce\uff1f","reminders_delete_cta":"\u522a\u9664","reminders_delete_success":"\u5df2\u6210\u529f\u522a\u9664\u63d0\u9192","reminders_description":"\u6211\u5011\u5c07\u50b3\u9001\u96fb\u5b50\u90f5\u4ef6\u7684\u6bcf\u4e00\u500b\u63d0\u9192\u5982\u4e0b\u3002\u6bcf\u5929\u65e9\u4e0a\u90fd\u6703\u767c\u51fa\u63d0\u9192,\u3002\u7121\u6cd5\u522a\u9664\u81ea\u52d5\u70ba\u751f\u65e5\u65b0\u589e\u7684\u63d0\u9192\u3002\u5982\u679c\u8981\u66f4\u6539\u9019\u4e9b\u65e5\u671f, \u8acb\u7de8\u8f2f\u806f\u7d61\u4eba\u7684\u751f\u65e5\u3002","reminders_edit_update_cta":"\u66f4\u65b0\u63d0\u9192","reminders_free_plan_warning":"\u60a8\u7576\u524d\u4f7f\u7528\u7684\u662f\u514d\u8cbb\u7248\u3002\u82e5\u9700\u8981\u90f5\u4ef6\u63d0\u9192\uff0c\u8acb\u5347\u7d1a\u60a8\u7684\u8cec\u6236\u3002","reminders_next_expected_date":"\u5728","reminders_one_time":"\u4e00\u6b21\u6027","reminders_type_month":"\u6708","reminders_type_week":"\u5468","reminders_type_year":"\u5e74","reminders_update_success":"\u5df2\u6210\u529f\u66f4\u65b0\u63d0\u9192","section_contact_information":"\u806f\u7d61\u4eba\u8cc7\u8a0a","section_personal_activities":"\u6d3b\u52d5","section_personal_gifts":"\u79ae\u7269","section_personal_notes":"\u4fbf\u7c64","section_personal_reminders":"\u63d0\u9192","section_personal_tasks":"\u4efb\u52d9","set_favorite":"\u60a8\u6536\u85cf\u7684\u806f\u7d61\u4eba\u5c07\u5728\u806f\u7d61\u4eba\u5217\u8868\u7f6e\u9802\u986f\u793a\u3002","stay_in_touch":"\u5e38\u806f\u7d61*","stay_in_touch_frequency":"\u5e38\u806f\u7d61*\u63d0\u9192\u983b\u7387\uff1a\u6bcf\u5929|\u5e38\u806f\u7d61*\u63d0\u9192\u983b\u7387\uff1a\u6bcf {count} \u5929","stay_in_touch_invalid":"\u983b\u7387\u5fc5\u9808\u5927\u65bc0\u3002","stay_in_touch_modal_desc":"\u6211\u5011\u5c07\u6703\u7528\u90f5\u4ef6\u63d0\u9192\u60a8\u8207{firstname}\u4fdd\u6301\u806f\u7d61\u3002","stay_in_touch_modal_label":"\u6bcf {count} \u5929\u7d66\u6211\u50b3\u9001\u90f5\u4ef6|\u6bcf {count} \u5929\u7d66\u6211\u50b3\u9001\u90f5\u4ef6","stay_in_touch_modal_title":"\u5e38\u806f\u7d61*","stay_in_touch_premium":"\u60a8\u9700\u8981\u5347\u7d1a\u5230\u9ad8\u968e\u8cec\u6236\u4f86\u4f7f\u7528\u9019\u500b\u529f\u80fd\uff01","tag_add":"\u65b0\u589e\u6a19\u7c64","tag_add_search":"\u65b0\u589e\u6216\u641c\u5c0b\u6a19\u7c64","tag_edit":"\u7de8\u8f2f\u6a19\u7c64","tag_no_tags":"\u9084\u6c92\u6709\u6a19\u7c64","tasks_add_task":"\u65b0\u589e\u4efb\u52d9","tasks_blank_title":"\u60a8\u66ab\u6642\u9084\u6c92\u4efb\u52d9\u3002","tasks_complete_success":"\u6210\u529f\u8b8a\u66f4\u4efb\u52d9\uff01","tasks_delete_success":"\u6210\u529f\u522a\u9664\u4efb\u52d9\uff01","tasks_form_description":"\u63cf\u8ff0 (\u53ef\u9078)","tasks_form_title":"\u6a19\u984c","tasks_title":"\u4efb\u52d9","work_add_cta":"\u66f4\u65b0\u5de5\u4f5c\u8cc7\u8a0a","work_edit_company":"\u516c\u53f8 (\u53ef\u9078)","work_edit_job":"\u8077\u4f4d\u540d\u7a31 (\u53ef\u9078)","work_edit_success":"Work information updated","work_edit_title":"\u66f4\u65b0:name\u7684\u5de5\u4f5c\u8cc7\u8a0a","work_information":"\u5de5\u4f5c\u8cc7\u8a0a"},"reminder":{"type_birthday":"\u795d\u6b64\u4eba\u751f\u65e5\u5feb\u6a02","type_birthday_kid":"\u795d\u6b64\u4eba\u7684\u5b69\u5b50\u751f\u65e5\u5feb\u6a02","type_email":"\u96fb\u5b50\u90f5\u4ef6","type_hangout":"\u8207\u6b64\u4eba\u7d04\u6703","type_lunch":"\u8207\u6b64\u4eba\u5171\u9032\u5348\u9910","type_phone_call":"\u547c\u53eb"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"\u5617\u8a66\u7981\u7528\u96d9\u91cd\u8eab\u4efd\u9a57\u8b49\u6642\u51fa\u932f","2fa_disable_success":"\u96d9\u91cd\u8eab\u4efd\u8a8d\u8b49\u5df2\u7981\u7528","2fa_disable_title":"\u95dc\u9589\u96d9\u91cd\u8eab\u4efd\u9a57\u8b49","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"\u5617\u8a66\u555f\u7528\u96d9\u91cd\u8eab\u4efd\u9a57\u8b49\u6642\u51fa\u932f","2fa_enable_error_already_set":"\u4e8c\u6b21\u9a57\u8b49\u5df2\u555f\u7528","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"\u96d9\u91cd\u8a8d\u8b49\u5df2\u555f\u7528","2fa_enable_title":"\u555f\u7528\u4e8c\u6b21\u9a57\u8b49","2fa_otp_title":"\u7528\u65bc\u4e8c\u6b21\u9a57\u8b49\u7684App","2fa_title":"\u96d9\u91cd\u9a57\u8b49","api_authorized_clients":"\u6388\u6b0a\u5ba2\u6236\u7aef\u5217\u8868","api_authorized_clients_desc":"\u672c\u7bc0\u5217\u51fa\u4e86\u60a8\u6388\u6b0a\u8a2a\u554f\u61c9\u7528\u7a0b\u5f0f\u7684\u6240\u6709\u5ba2\u6236\u7aef\uff0c\u60a8\u53ef\u4ee5\u96a8\u6642\u64a4\u92b7\u6b64\u6388\u6b0a\u3002","api_authorized_clients_name":"\u540d\u7a31","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"\u4f5c\u7528\u57df","api_authorized_clients_title":"\u5df2\u6388\u6b0a\u7684\u61c9\u7528","api_description":"API \u53ef\u4ee5\u7528\u4f86\u5f9e\u5916\u90e8\u61c9\u7528\u7a0b\u5f0f\u64cd\u7e31Monica\u7684\u8cc7\u6599, \u4f8b\u5982\u79fb\u52d5\u61c9\u7528\u7a0b\u5f0f\u3002","api_endpoint":"\u6b64 Monica \u4f8b\u9805\u7684 API \u7d42\u7aef\u662f\uff1a","api_help":"\u8981\u4f7f\u7528 API\uff0c\u5fc5\u9808\u8981\u6709\u4e00\u500bToken\u3002 \u60a8\u53ef\u4ee5\u5efa\u7acb\u500b\u4eba\u8a2a\u554f Token\uff0c\u4e5f\u53ef\u4ee5\u6388\u6b0aOAuth \u5ba2\u6236\u7aef\u70ba\u60a8\u5efa\u7acb\u5b83\u3002 \u6aa2\u8996 API \u6587\u4ef6<\/a>\u7372\u53d6\u8a73\u60c5","api_oauth_clientid":"\u5ba2\u6236\u7aef ID","api_oauth_clients":"\u60a8\u7684 Oauth \u5ba2\u6236\u7aef","api_oauth_clients_desc":"\u60a8\u53ef\u4ee5\u8a3b\u518a\u81ea\u5df1\u7684 OAuth \u5ba2\u6236\u7aef\u3002","api_oauth_clients_desc2":"\u4f7f\u7528\u6b64\u5ba2\u6236\u7aefID\u8acb\u6c42\u4e00\u500b\u65b0\u7684Token\uff0c\u4e26\u5c07\u6388\u6b0a\u78bc\u8f49\u63db\u70baToken\u3002\u8acb\u53c3\u95b1 Laravel Passport\u6587\u4ef6<\/a> \u7372\u53d6\u66f4\u591a\u8cc7\u8a0a\u3002","api_oauth_create":"\u5efa\u7acb\u5ba2\u6236\u7aef","api_oauth_create_new":"\u5efa\u7acb\u65b0\u7684\u5ba2\u6236\u7aef","api_oauth_edit":"\u7de8\u8f2f\u5ba2\u6236\u7aef","api_oauth_name":"\u540d\u7a31","api_oauth_name_help":"\u5b89\u5168\u78bc","api_oauth_not_created":"\u60a8\u5c1a\u672a\u5efa\u7acbOauth\u5ba2\u6236\u7aef","api_oauth_redirecturl":"\u91cd\u5b9a\u5411URL","api_oauth_redirecturl_help":"\u61c9\u7528\u7a0b\u5f0f\u7684\u6388\u6b0a\u56de\u64a5 URL\u3002","api_oauth_secret":"\u91d1\u9470","api_oauth_title":"OAuth \u5ba2\u6236\u7aef","api_pao_description":"\u8acb\u78ba\u4fdd\u5c07\u6b64token\u6388\u4e88\u60a8\u4fe1\u4efb\u7684\u6e90-\u56e0\u70ba\u5b83\u5011\u5141\u8a31\u60a8\u8a2a\u554f\u6240\u6709\u8cc7\u6599\u3002","api_personal_access_tokens":"\u500b\u4eba\u8a2a\u554f\u4ee4\u724c","api_title":"API \u8a2a\u554f","api_token_create":"\u5efa\u7acb\u91d1\u9470","api_token_create_new":"\u5efa\u7acb\u91d1\u9470","api_token_delete":"\u522a\u9664","api_token_expire":"\u904e\u671f\u65bc {date}","api_token_help":"\u9019\u662f\u60a8\u7684\u500b\u4eba\u8a2a\u554f\u91d1\u9470\uff0c\u6211\u5011\u53ea\u6703\u5c55\u793a\u4e00\u6b21\uff0c\u8acb\u59a5\u5584\u4fdd\u7ba1\u3002\u60a8\u73fe\u5728\u53ef\u4ee5\u4f7f\u7528\u9019\u500b\u91d1\u9470\u9032\u884cAPI\u8acb\u6c42","api_token_name":"Token \u540d\u7a31","api_token_not_created":"\u60a8\u6c92\u6709\u5df2\u5efa\u7acb\u7684\u8a2a\u554f\u91d1\u9470","api_token_scopes":"\u4f5c\u7528\u57df","api_token_title":"\u500b\u4eba\u8a2a\u554f Token","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"\u8ca8\u5e63","dav_caldav_birthdays_export":"\u5728\u4e00\u500b\u6a94\u6848\u4e2d\u532f\u51fa\u6240\u6709\u751f\u65e5","dav_caldav_tasks_export":"\u532f\u51fa\u4e00\u500b\u6a94\u6848\u4e2d\u7684\u6240\u6709\u4efb\u52d9","dav_carddav_export":"\u532f\u51fa\u4e00\u500b\u6a94\u6848\u4e2d\u7684\u6240\u6709\u806f\u7d61\u4eba","dav_clipboard_copied":"\u503c\u5df2\u8907\u88fd\u5230\u526a\u8cbc\u7c3f","dav_connect_help":"\u60a8\u53ef\u4ee5\u5728\u624b\u6a5f\u6216\u8a08\u7b97\u6a5f\u4e0a\u4f7f\u7528\u6b64\u57fa\u672c url \u9023\u7dda\u60a8\u7684\u806f\u7d61\u4eba\u548c\/\u6216\u65e5\u66c6\u3002","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"\u8907\u88fd\u5230\u60a8\u7684\u526a\u8cbc\u7c3f","dav_description":"\u5728\u9019\u88e1, \u60a8\u53ef\u4ee5\u627e\u5230\u6240\u6709\u8a2d\u5b9a, \u4ee5\u4fbf\u70ba Carddav \u548c CalDAV \u532f\u51fa\u4f7f\u7528 webdav \u8cc7\u6e90\u3002","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"\u6240\u6709CardDAV\u548cCalDAV\u8cc7\u6e90\u7684\u57fa\u672c url:","dav_url_caldav_birthdays":"\u7528\u65bc\u751f\u65e5\u8cc7\u6e90\u7684 caldav url:","dav_url_caldav_tasks":"\u7528\u65bc\u4efb\u52d9\u8cc7\u6e90\u7684 caldav url:","dav_url_carddav":"\u7528\u65bc\u806f\u7d61\u8cc7\u6e90\u7684 CardDAV","delete_cta":"\u522a\u9664\u5e33\u6236","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"\u522a\u9664\u60a8\u7684\u5e33\u6236","email":"\u96fb\u5b50\u90f5\u4ef6\u5730\u5740","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"\u8f38\u5165\u96fb\u5b50\u90f5\u7bb1","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"\u532f\u51fa\u5e33\u6236\u8cc7\u6599","export_title_sql":"Export data to SQL","firstname":"\u540d","import_blank_cta":"\u532f\u5165 vCard","import_blank_description":"\u6211\u5011\u53ef\u4ee5\u5f9e Google Contacts \u6216\u60a8\u7684Contact manager\u90a3\u88e1\u532f\u5165\u60a8\u7684 vCard \u6a94\u6848\u3002","import_blank_question":"\u662f\u5426\u7acb\u5373\u532f\u5165\u806f\u7d61\u4eba\uff1f","import_blank_title":"\u60a8\u66ab\u7121\u532f\u5165\u7684\u806f\u7d61\u4eba\u3002","import_cta":"\u4e0a\u8f09\u806f\u7d61\u4eba","import_in_progress":"\u532f\u5165\u6b63\u5728\u9032\u884c\u4e2d\u3002\u5728\u4e00\u5206\u9418\u5167\u91cd\u65b0\u8f09\u5165\u9801\u9762\u3002","import_need_subscription":"\u60a8\u9700\u8981\u8a02\u95b1\u624d\u80fd\u532f\u5165\u806f\u7d61\u4eba","import_report_date":"\u532f\u5165\u65e5\u671f","import_report_number_contacts":"\u6a94\u6848\u4e2d\u7684\u806f\u7d61\u4eba\u6578","import_report_number_contacts_imported":"\u532f\u5165\u7684\u806f\u7d61\u4eba\u6578\u91cf","import_report_number_contacts_skipped":"\u8df3\u904e\u7684\u806f\u7d61\u4eba\u6578","import_report_status_imported":"\u532f\u5165","import_report_status_skipped":"\u8df3\u904e","import_report_title":"\u532f\u5165\u5831\u8868","import_report_type":"\u532f\u5165\u578b\u5225","import_result_stat":"\u4e0a\u50b3\u4e86\u5305\u542b :total_contacts \u500b\u806f\u7d61\u4eba\u7684 vCard (:total_imported imported, :total_skipped skipped)","import_stat":"\u60a8\u76ee\u524d\u70ba\u6b62\u532f\u5165\u4e86:number\u500b\u6a94\u6848\u3002","import_title":"\u5728\u60a8\u7684\u5e33\u6236\u4e2d\u532f\u5165\u806f\u7d61\u4eba","import_upload_behaviour":"\u532f\u5165\u504f\u597d:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"\u66ff\u63db\u73fe\u6709\u689d\u76ee","import_upload_form_file":"\u4f60\u7684 .vcf<\/code> \u6216 . vCard<\/code> \u6a94\u6848:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"\u6211\u5011\u652f\u63f4 vcard<\/code> \u548c vcf<\/code> \u6a94\u6848\u3002","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"\u4f46\u662f, \u6211\u5011\u6709\u4e00\u4e9b\u898f\u5247:","import_upload_title":"\u5f9e vCard \u6a94\u6848\u532f\u5165\u806f\u7d61\u4eba","import_vcard_contact_exist":"\u806f\u7d61\u4eba\u5df2\u5b58\u5728","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"\u6a94\u6848\u4e0d\u5305\u542b\u806f\u7d61\u4eba","import_vcard_file_not_found":"\u6a94\u6848\u4e0d\u5b58\u5728","import_vcard_parse_error":"\u5206\u6790 vcard \u9805\u6642\u51fa\u932f","import_vcard_unknown_entry":"\u672a\u77e5\u7684\u806f\u7d61\u4eba\u59d3\u540d","import_view_report":"\u6aa2\u8996\u5831\u544a","lastname":"\u59d3\u6c0f","layout":"\u4f48\u5c40","layout_big":"\u700f\u89bd\u5668\u7684\u5168\u5bec\u5ea6","layout_small":"\u6700\u59271200\u756b\u7d20\u5bec","locale":"\u61c9\u7528\u7a0b\u5f0f\u4e2d\u4f7f\u7528\u7684\u8a9e\u8a00","locale_ar":"\u963f\u62c9\u4f2f\u6587","locale_cs":"\u6377\u514b\u6587","locale_de":"\u5fb7\u6587","locale_en":"\u82f1\u6587","locale_en-GB":"\u82f1\u8a9e (\u82f1\u570b)","locale_es":"\u897f\u73ed\u7259\u6587","locale_fr":"\u6cd5\u6587","locale_he":"\u5e0c\u4f2f\u4f86\u6587","locale_help":"\u60a8\u60f3\u8981\u5e6b\u52a9\u7ffb\u8b6fMonica\u6216\u65b0\u589e\u65b0\u8a9e\u8a00\u55ce\uff1f\u8acb\u9ede\u9078 \u77ad\u89e3\u66f4\u591a\u8cc7\u8a0a<\/a>\u3002","locale_hr":"\u514b\u7f85\u57c3\u897f\u4e9e\u6587","locale_it":"\u7fa9\u5927\u5229\u6587","locale_ja":"Japanese","locale_nl":"\u8377\u862d\u6587","locale_pt":"\u8461\u8404\u7259\u6587","locale_pt-BR":"\u8461\u8404\u7259\u8a9e (\u5df4\u897f)","locale_ru":"\u4fc4\u6587","locale_sv":"Swedish","locale_tr":"\u571f\u8033\u5176\u6587","locale_zh":"\u7c21\u9ad4\u4e2d\u6587","locale_zh-TW":"\u7e41\u9ad4\u4e2d\u6587\uff08\u53f0\u7063\uff09","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"\u9078\u64c7\u81ea\u5df1","me_choose_placeholder":"\u9078\u64c7\u81ea\u5df1","me_help":"\u9019\u500b\u806f\u7d61\u4eba\u5728Monica\u4ee3\u8868\u4e86 \u4f60<\/em>","me_no_contact":"\u6c92\u6709\u9078\u64c7\u806f\u7d61\u4eba","me_remove_contact":"\u522a\u9664\u95dc\u806f","me_select":"\u9078\u64c7\u806f\u7d61\u4eba","me_select_click":"\u55ae\u64ca\u6b64\u8655\u9078\u64c7\u4e00\u4f4d\u806f\u7d61\u4eba","me_title":"Me as a contact","name":"\u60a8\u7684\u59d3\u540d: :name","name_order":"\u540d\u7a31\u9806\u5e8f","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u66f4\u6539\u5bc6\u78bc","password_change":"Change your password","password_current":"\u7576\u524d\u5bc6\u78bc","password_current_placeholder":"\u8f38\u5165\u7576\u524d\u5bc6\u78bc","password_new1":"\u65b0\u5bc6\u78bc","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"\u9019\u662f\u4e00\u500b\u9ad8\u968e\u529f\u80fd\uff0c\u9700\u8981\u4ed8\u8cbb\u8a02\u95b1\u624d\u80fd\u555f\u7528\u3002\u901a\u904e\u8a2a\u554f \u8a2d\u5b9a > \u8a02\u95b1<\/a> \u4f86\u5347\u7d1a\u60a8\u7684\u5e33\u6236\u3002","personalisation_paid_upgrade_vue":"\u9019\u662f\u4e00\u500b\u9ad8\u968e\u529f\u80fd\uff0c\u9700\u8981\u4ed8\u8cbb\u8a02\u95b1\u624d\u80fd\u555f\u7528\u3002\u900f\u904e\u700f\u89bd \u8a2d\u5b9a > \u8a02\u95b1<\/a> \u4f86\u5347\u7d1a\u60a8\u7684\u5e33\u6236\u3002","personalization_activity_type_add_button":"\u589e\u52a0\u4e00\u500b\u6d3b\u52d5","personalization_activity_type_category_add":"\u589e\u52a0\u4e00\u500b\u6d3b\u52d5\u5206\u985e","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"\u589e\u52a0\u6d3b\u52d5\u5206\u985e","personalization_activity_type_category_modal_delete":"\u522a\u9664\u6d3b\u52d5\u5206\u985e","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"\u6211\u5011\u7121\u6cd5\u627e\u5230\u9019\u500b\u6d3b\u52d5\u5206\u985e","personalization_activity_type_category_modal_edit":"\u7de8\u8f2f\u6d3b\u52d5\u5206\u985e","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"\u884c\u52d5","personalization_activity_type_category_table_name":"\u540d\u7a31","personalization_activity_type_category_title":"\u6d3b\u52d5\u5206\u985e","personalization_activity_type_modal_add":"\u589e\u52a0\u4e00\u500b\u6d3b\u52d5","personalization_activity_type_modal_delete":"\u522a\u9664\u6d3b\u52d5","personalization_activity_type_modal_delete_desc":"\u60a8\u771f\u7684\u8981\u522a\u9664\u9019\u500b\u6d3b\u52d5\u55ce\uff1f","personalization_activity_type_modal_delete_error":"\u6211\u5011\u7121\u6cd5\u627e\u5230\u9019\u500b\u6d3b\u52d5","personalization_activity_type_modal_edit":"\u7de8\u8f2f\u6d3b\u52d5","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"\u65b0\u589e\u65b0\u6b04\u4f4d\u578b\u5225","personalization_contact_field_type_add_success":"\u5df2\u6210\u529f\u65b0\u589e\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u3002","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u5df2\u6210\u529f\u66f4\u65b0\u3002","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"\u522a\u9664\u73fe\u6709\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225","personalization_contact_field_type_modal_edit_title":"\u7de8\u8f2f\u73fe\u6709\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225","personalization_contact_field_type_modal_icon":"\u5716\u793a (\u53ef\u9078)","personalization_contact_field_type_modal_icon_help":"\u60a8\u53ef\u4ee5\u5c07\u5716\u793a\u8207\u6b64\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u95dc\u806f\u3002\u60a8\u9700\u8981\u65b0\u589e\u5c0dFont Awesome\u5716\u793a\u7684\u5f15\u7528\u3002","personalization_contact_field_type_modal_name":"\u540d\u7a31","personalization_contact_field_type_modal_protocol":"\u5354\u8b70 (\u53ef\u9078)","personalization_contact_field_type_modal_protocol_help":"\u6bcf\u500b\u65b0\u7684\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u90fd\u53ef\u4ee5\u9078\u5b9a\u3002\u5982\u679c\u8a2d\u5b9a\u4e86\u5354\u8b70, \u6211\u5011\u5c07\u4f7f\u7528\u5b83\u4f86\u89f8\u767c\u8a2d\u5b9a\u7684\u64cd\u4f5c\u3002","personalization_contact_field_type_modal_title":"\u65b0\u589e\u65b0\u7684\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225","personalization_contact_field_type_table_actions":"\u884c\u52d5","personalization_contact_field_type_table_name":"\u540d\u7a31","personalization_contact_field_type_table_protocol":"\u5354\u8b70","personalization_contact_field_type_title":"\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225","personalization_genders_add":"\u65b0\u589e\u65b0\u7684\u6027\u5225\u578b\u5225","personalization_genders_default":"\u9810\u8a2d\u6027\u5225","personalization_genders_desc":"\u4f60\u53ef\u4ee5\u6839\u64da\u9700\u8981\u5b9a\u7fa9\u5118\u53ef\u80fd\u591a\u7684\u6027\u5225\u3002\u60a8\u7684\u5e33\u6236\u4e2d\u81f3\u5c11\u9700\u8981\u4e00\u7a2e\u6027\u5225\u578b\u5225\u3002","personalization_genders_f":"\u5973\u6027","personalization_genders_list_contact_number":"{count} \u500b\u806f\u7d61\u4eba|{count} \u500b\u806f\u7d61\u4eba","personalization_genders_m":"\u7537\u6027","personalization_genders_make_default":"\u66f4\u6539\u9810\u8a2d\u6027\u5225","personalization_genders_modal_add":"\u65b0\u589e\u6027\u5225\u578b\u5225","personalization_genders_modal_default":"\u9078\u64c7\u65b0\u806f\u7d61\u4eba\u7684\u9810\u8a2d\u6027\u5225","personalization_genders_modal_delete":"\u522a\u9664\u6027\u5225\u578b\u5225","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"\u66f4\u65b0\u6027\u5225\u578b\u5225","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"\u540d\u7a31","personalization_genders_modal_name_help":"\u5728\u806f\u7d61\u4eba\u9801\u9762\u986f\u793a\u6027\u5225\u7684\u540d\u7a31","personalization_genders_modal_sex":"\u6027\u5225","personalization_genders_modal_sex_help":"\u5728\u532f\u5165\/\u532f\u51fa VCard \u6642\u7528\u65bc\u5b9a\u7fa9\u95dc\u4fc2","personalization_genders_n":"\u7121\u6216\u4e0d\u9069\u7528","personalization_genders_o":"\u5176\u4ed6","personalization_genders_select_default":"\u9078\u64c7\u9810\u8a2d\u6027\u5225","personalization_genders_table_default":"\u9810\u8a2d","personalization_genders_table_name":"\u540d\u7a31","personalization_genders_table_sex":"\u6027\u5225","personalization_genders_title":"\u6027\u5225\u578b\u5225","personalization_genders_u":"\u672a\u77e5","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"\u5bb6\u5ead\u8207\u6200\u611b","personalization_life_event_category_health_wellness":"\u5065\u5eb7\u8207\u98f2\u98df","personalization_life_event_category_home_living":"\u5bb6\u8207\u751f\u6d3b","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"\u65c5\u884c\u8207\u7d93\u6b77","personalization_life_event_category_work_education":"\u5de5\u4f5c\u8207\u6559\u80b2","personalization_life_event_type_achievement_or_award":"\u6210\u5c31\u6216\u734e\u9805","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"\u9031\u5e74\u7d00\u5ff5\u65e5","personalization_life_event_type_bought_a_home":"\u8cb7\u4e86\u65b0\u623f\u5b50","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"\u6539\u8b8a\u4fe1\u4ef0","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"\u7d50\u675f\u4e86\u4e00\u6bb5\u95dc\u4fc2","personalization_life_event_type_engagement":"\u8a02\u5a5a","personalization_life_event_type_expecting_a_baby":"\u60f3\u8981\u5b69\u5b50","personalization_life_event_type_first_kiss":"\u521d\u543b","personalization_life_event_type_first_met":"\u7b2c\u4e00\u6b21\u898b\u9762","personalization_life_event_type_first_word":"\u7b2c\u4e00\u6b21\u767c\u8a00","personalization_life_event_type_holidays":"\u5047\u65e5","personalization_life_event_type_home_improvement":"\u88dd\u4fee","personalization_life_event_type_loss_of_a_loved_one":"\u5931\u53bb\u5fc3\u611b\u7684\u4eba","personalization_life_event_type_marriage":"\u5a5a\u59fb","personalization_life_event_type_military_service":"\u5175\u5f79","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"\u642c\u5bb6\u4e86","personalization_life_event_type_new_child":"\u65b0\u7684\u5b69\u5b50","personalization_life_event_type_new_eating_habits":"\u65b0\u7684\u98f2\u98df\u7fd2\u6163","personalization_life_event_type_new_family_member":"\u65b0\u7684\u5bb6\u5ead\u6210\u54e1","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"\u65b0\u5de5\u4f5c","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"\u65b0\u99d5\u7167","personalization_life_event_type_new_pet":"\u65b0\u5bf5\u7269","personalization_life_event_type_new_relationship":"\u65b0\u95dc\u4fc2","personalization_life_event_type_new_roommate":"\u65b0\u5ba4\u53cb","personalization_life_event_type_new_school":"\u65b0\u5b78\u6821","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"\u65b0\u8eca","personalization_life_event_type_overcame_an_illness":"\u71ac\u904e\u4e86\u75be\u75c5","personalization_life_event_type_published_book_or_paper":"\u51fa\u7248\u4e00\u672c\u66f8\u6216\u4e00\u7bc7\u8ad6\u6587","personalization_life_event_type_quit_a_habit":"\u6212\u6389\u4e00\u500b\u7fd2\u6163","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"\u9000\u4f11","personalization_life_event_type_study_abroad":"\u7559\u5b78","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"\u7d0b\u8eab\u6216\u8033\u6d1e","personalization_life_event_type_travel":"\u65c5\u884c","personalization_life_event_type_volunteer_work":"\u5fd7\u9858\u8005\u5de5\u4f5c","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"\u6e1b\u80a5","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"\u66f4\u6539\u5df2\u88ab\u5132\u5b58","personalization_module_title":"\u529f\u80fd","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"\u63d0\u524d {count} \u5929|\u63d0\u524d {count} \u5929","personalization_reminder_rule_save":"\u66f4\u6539\u5df2\u5132\u5b58","personalization_reminder_rule_title":"\u63d0\u9192\u898f\u5247","personalization_tab_title":"\u500b\u6027\u5316\u60a8\u7684\u5e33\u6236","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"\u8907\u88fd\u5230\u60a8\u7684\u526a\u8cbc\u7c3f","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"\u60a8\u53ef\u4ee5\u4f7f\u7528\u6bcf\u500b\u6062\u5fa9\u7a0b\u5f0f\u78bc\u4e00\u6b21\u3002","recovery_help_intro":"\u4ee5\u4e0b\u662f\u60a8\u7684\u6062\u5fa9\u7a0b\u5f0f\u78bc:","recovery_show":"\u7372\u53d6\u6062\u5fa9\u7a0b\u5f0f\u78bc","recovery_title":"\u6062\u5fa9\u7a0b\u5f0f\u78bc","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"\u91cd\u7f6e\u5e33\u6236","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"\u522a\u9664\u60a8\u7684\u5e33\u6236","save":"\u66f4\u65b0\u504f\u597d","security_help":"\u66f4\u6539\u60a8\u7684\u5e33\u6236\u7684\u5b89\u5168\u9078\u9805\u3002","security_title":"\u5b89\u5168","settings_success":"\u504f\u597d\u8a2d\u5b9a\u5df2\u66f4\u65b0","sidebar_personalization":"\u500b\u6027\u5316","sidebar_settings":"\u5e33\u6236\u8a2d\u5b9a","sidebar_settings_api":"API","sidebar_settings_auditlogs":"\u8ffd\u8e64\u65e5\u8a8c","sidebar_settings_dav":"Dav \u8cc7\u6e90","sidebar_settings_export":"\u532f\u51fa\u8cc7\u6599","sidebar_settings_import":"\u532f\u5165\u8cc7\u6599","sidebar_settings_security":"\u5b89\u5168","sidebar_settings_storage":"\u5132\u5b58\u7a7a\u9593","sidebar_settings_subscriptions":"\u8a02\u95b1","sidebar_settings_tags":"Tag management","sidebar_settings_users":"\u4f7f\u7528\u8005","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"\u5728\u9019\u88e1, \u60a8\u53ef\u4ee5\u770b\u5230\u4e0a\u50b3\u7684\u6709\u95dc\u60a8\u7684\u806f\u7d61\u4eba\u7684\u6240\u6709\u6587\u4ef6\u548c\u7167\u7247\u3002","storage_title":"\u5132\u5b58\u7a7a\u9593","storage_upgrade_notice":"\u5347\u7d1a\u60a8\u7684\u5e33\u6236, \u4ee5\u4fbf\u4e0a\u50b3\u6587\u4ef6\u548c\u7167\u7247\u3002","stripe_error_api_connection":"\u8207Stripe\u7684\u901a\u8a0a\u5931\u6557\uff0c\u8acb\u7a0d\u5019\u91cd\u8a66\u3002","stripe_error_authentication":"Stripe\u6388\u6b0a\u5931\u6557","stripe_error_card":"\u60a8\u7684\u5361\u88ab\u62d2\uff0c\u539f\u56e0\u662f\uff1a:message","stripe_error_invalid_request":"\u7121\u6548\u7684\u5f15\u6578\uff0c\u8acb\u7a0d\u5f8c\u518d\u8a66\u3002","stripe_error_rate_limit":"\u8207Stripe\u7684\u901a\u8a0a\u6b21\u6578\u904e\u591a\uff0c\u8acb\u7a0d\u5019\u518d\u8a66\u3002","subscriptions_account_cancel":"\u60a8\u53ef\u4ee5\u96a8\u6642 \u53d6\u6d88\u8a02\u95b1<\/a>\u3002","subscriptions_account_confirm_payment":"\u4ea4\u6613\u5c1a\u672a\u5b8c\u6210\uff0c\u8acb\u60a8\u6309\u6b64\u78ba\u8a8d\u60a8\u7684\u4ed8\u6b3e<\/a>","subscriptions_account_current_paid_plan":"\u60a8\u7576\u524d\u7684\u8a02\u95b1\u662f\uff1a:name\uff0c\u611f\u8b1d\u60a8\u7684\u8a02\u95b1\u3002","subscriptions_account_current_plan":"\u60a8\u7576\u524d\u7684\u8a02\u95b1","subscriptions_account_free_plan":"\u60a8\u6b63\u5728\u4f7f\u7528\u514d\u8cbb\u7248","subscriptions_account_free_plan_benefits_import_data_vcard":"\u5f9e vCard \u6a94\u6848\u532f\u5165\u806f\u7d61\u4eba","subscriptions_account_free_plan_benefits_reminders":"\u96fb\u5b50\u90f5\u4ef6\u63d0\u9192","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"\u4e0d\u9650\u6578\u91cf\u7684\u4f7f\u7528\u8005","subscriptions_account_free_plan_upgrade":"\u60a8\u53ef\u4ee5\u5c07\u60a8\u7684\u5e33\u6236\u5347\u7d1a\u70ba:name, \u5b83\u7684\u6210\u672c\u70ba\u6bcf\u6708$:price\u3002\u60a8\u5c07\u4eab\u6709\u4ee5\u4e0b\u7279\u6b0a:","subscriptions_account_invoices":"\u767c\u7968","subscriptions_account_invoices_download":"\u4e0b\u8f09","subscriptions_account_invoices_subscription":"\u8a02\u95b1\u9031\u671f\uff1a:startDate \u81f3 :endDate","subscriptions_account_next_billing":"\u60a8\u7684\u8a02\u95b1\u5c07\u5728 :date<\/strong> \u81ea\u52d5\u7e8c\u8cbb","subscriptions_account_payment":"\u54ea\u500b\u4ed8\u8cbb\u9031\u671f\u6700\u9069\u5408\u60a8\uff1f","subscriptions_account_upgrade":"\u66f4\u65b0\u60a8\u7684\u8cec\u6236","subscriptions_account_upgrade_choice":"\u5728\u4e0b\u65b9\u9078\u64c7\u4e00\u500b\u8a02\u95b1\uff08\u5df2\u6709 :customers \u8a02\u95b1\u4e86\u9ad8\u968e\u7248\uff09","subscriptions_account_upgrade_title":"\u7acb\u5373\u5347\u7d1a\u60a8\u7684Monica\u8cec\u6236\u5427\uff01","subscriptions_back":"\u8fd4\u56de\u8a2d\u5b9a","subscriptions_downgrade_cta":"\u964d\u7d1a","subscriptions_downgrade_limitations":"\u514d\u8cbb\u7248\u7684\u529f\u80fd\u6709\u9650\u5236\u3002\u5982\u679c\u60a8\u9700\u8981\u964d\u7d1a\uff0c\u8acb\u60a8\u78ba\u4fdd\u5b8c\u6210\u4ee5\u4e0b\u6aa2\u67e5\uff1a","subscriptions_downgrade_rule_contacts":"\u60a8\u4e0d\u80fd\u8d85\u904e :number \u7684\u6d3b\u8e8d\u806f\u7d61\u4eba","subscriptions_downgrade_rule_contacts_constraint":"\u7576\u524d\u6709 :count \u4f4d\u806f\u7d61\u4eba<\/a>\u3002","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"\u60a8\u7684\u5e33\u6236\u4e2d\u5fc5\u9808\u53ea\u67091\u500b\u4f7f\u7528\u8005","subscriptions_downgrade_rule_users_constraint":"\u60a8\u7684\u5e33\u6236\u4e2d\u7576\u524d\u6709 :count \u500b\u4f7f\u7528\u8005<\/a>\u3002","subscriptions_downgrade_success":"\u60a8\u5df2\u964d\u7d1a\u5230\u514d\u8cbb\u7248\uff01","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"\u5c07\u60a8\u7684\u5e33\u6236\u964d\u7d1a\u70ba\u514d\u8cbb\u7248","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"\u5982\u679c\u6211\u6539\u8b8a\u4e3b\u610f\u600e\u9ebc\u8fa6\uff1f","subscriptions_help_discounts_desc":"\u7576\u7136\uff01Monica\u514d\u8cbb\u70ba\u5b78\u751f\uff0c\u975e\u76c8\u5229\u6a5f\u69cb\u63d0\u4f9b\u670d\u52d9\u3002\u60a8\u53ea\u9700\u8981\u63d0\u4ea4\u4e00\u4e0b\u6750\u6599\u7d66\u6211\u5011\u7684 \u652f\u63f4\u4eba\u54e1<\/a>\u3002","subscriptions_help_discounts_title":"\u4f60\u5011\u5c0d\u975e\u76c8\u5229\u6a5f\u69cb\u548c\u5b78\u751f\u6709\u512a\u60e0\u55ce\uff1f","subscriptions_help_limits_plan":"\u662f\u7684\u3002\u514d\u8cbb\u7248\u60a8\u80fd\u64c1\u6709:number\u4f4d\u806f\u7d61\u4eba\u3002","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"\u4ec0\u9ebc\u662f\u958b\u6e90\u5c08\u6848\uff1f","subscriptions_help_title":"\u60a8\u53ef\u80fd\u9084\u95dc\u5fc3","subscriptions_payment_cancelled":"\u60a8\u7684\u4ed8\u6b3e\u5df2\u88ab\u53d6\u6d88\u3002","subscriptions_payment_cancelled_title":"\u4ed8\u6b3e\u5df2\u53d6\u6d88","subscriptions_payment_confirm_information":"\u9700\u8981\u984d\u5916\u8cc7\u8a0a\u4f86\u8655\u7406\u60a8\u7684\u4ed8\u6b3e\uff0c\u8acb\u60a8\u88dc\u5145\u4e0b\u5217\u4ed8\u6b3e\u8cc7\u8a0a\u3002","subscriptions_payment_confirm_title":"\u78ba\u8a8d\u60a8\u7684 :amount \u4ed8\u6b3e","subscriptions_payment_error_name":"\u8acb\u63d0\u4f9b\u60a8\u7684\u59d3\u540d","subscriptions_payment_succeeded":"\u6b64\u4ea4\u6613\u5df2\u7d93\u5b8c\u6210\u3002","subscriptions_payment_succeeded_title":"\u652f\u4ed8\u6210\u529f","subscriptions_payment_success":"\u60a8\u7684\u4ed8\u6b3e\u5df2\u6210\u529f","subscriptions_pdf_title":"\u60a8\u7684:name\u6bcf\u6708\u8a02\u95b1","subscriptions_plan_choose":"\u9078\u64c7\u6b64\u8a08\u5283","subscriptions_plan_include1":"\u60a8\u5c07\u4eab\u6709\u4ee5\u4e0b\u7279\u6b0a\uff1a","subscriptions_plan_include2":"\u7121\u9650\u65b0\u589e\u806f\u7d61\u4eba\u00b7\u7121\u9650\u7684\u4f7f\u7528\u8005\u6578\u91cf\u00b7\u96fb\u5b50\u90f5\u4ef6\u63d0\u9192\u00b7\u532f\u5165 vCard \u00b7\u500b\u6027\u5316\u7684\u806f\u7d61\u4eba\u8cc7\u8a0a","subscriptions_plan_include3":"\u6536\u5165\u7684100% \u7528\u65bc\u6b64\u5c08\u6848\u7684\u958b\u767c\u3002","subscriptions_plan_month_bonus":"\u96a8\u6642\u53d6\u6d88","subscriptions_plan_month_cost":"$5 \u7f8e\u5143\/\u6708","subscriptions_plan_month_title":"\u6309\u6708\u652f\u4ed8","subscriptions_plan_year_bonus":"\u4e00\u6574\u5e74\u7684\u5b89\u5fc3","subscriptions_plan_year_cost":"$45 \u7f8e\u5143\/\u5e74","subscriptions_plan_year_cost_save":"\u60a8\u53ef\u4ee5\u7bc0\u7701 25%","subscriptions_plan_year_title":"\u6309\u5e74\u5ea6\u652f\u4ed8","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"\u652f\u4ed8\u670d\u52d9\u7531\u7b2c\u4e09\u65b9\u652f\u4ed8\u5e73\u81fa Stripe<\/a> \u63d0\u4f9b\uff0c\u6211\u5011\u7121\u6cd5\u63a5\u89f8\u5230\u60a8\u7684\u500b\u4eba\u8cc7\u8a0a\u3002","subscriptions_upgrade_choose":"\u60a8\u9078\u64c7\u4e86:plan","subscriptions_upgrade_credit":"\u4fe1\u7528\u5361\u6216\u501f\u8a18\u5361","subscriptions_upgrade_infos":"\u8acb\u5728\u4e0b\u65b9\u8f38\u5165\u60a8\u7684\u4ed8\u6b3e\u8cc7\u8a0a\uff1a","subscriptions_upgrade_name":"\u6301\u5361\u4eba\u59d3\u540d","subscriptions_upgrade_submit":"\u652f\u4ed8{amount}","subscriptions_upgrade_success":"\u611f\u8b1d\u60a8\u7684\u8a02\u95b1\uff01","subscriptions_upgrade_thanks":"\u6b61\u8fce\u4f86\u5230\u8b93\u4e16\u754c\u8b8a\u5f97\u66f4\u7f8e\u597d\u7684\u793e\u7fa4\u3002","subscriptions_upgrade_title":"\u5347\u7d1a\u60a8\u7684\u5e33\u6236","subscriptions_upgrade_zip":"\u90f5\u653f\u7de8\u78bc","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"\u6a19\u7c64\u662f\u5c0d\u60a8\u7684\u806f\u7d61\u4eba\u9032\u884c\u5206\u985e\u7684\u4e00\u7a2e\u5f88\u597d\u7684\u65b9\u5f0f\u3002","tags_list_contact_number":":count \u500b\u806f\u7d61\u4eba","tags_list_delete_confirmation":"\u78ba\u5be6\u8981\u522a\u9664\u8a72\u6a19\u7c64\u55ce\uff1f\u4e0d\u6703\u522a\u9664\u4efb\u4f55\u806f\u7d61\u4eba, \u53ea\u6709\u6a19\u7c64\u3002","tags_list_delete_success":"\u6a19\u7c64\u5df2\u6210\u529f\u522a\u9664","tags_list_description":"\u60a8\u53ef\u4ee5\u901a\u904e\u8a2d\u5b9a\u4f86\u6a19\u8a18\u806f\u7d61\u4eba\u3002\u6a19\u8a18\u7684\u5de5\u4f5c\u65b9\u5f0f\u985e\u4f3c\u65bc\u8cc7\u6599\u593e, \u4f46\u53ef\u4ee5\u5411\u806f\u7d61\u4eba\u65b0\u589e\u591a\u500b\u6a19\u8a18\u3002\u82e5\u8981\u65b0\u589e\u65b0\u6a19\u8a18, \u8acb\u5728\u806f\u7d61\u4eba\u4e2d\u65b0\u589e\u5373\u53ef\u3002","tags_list_title":"\u6a19\u7c64","temperature_scale":"\u6eab\u5ea6\u55ae\u4f4d","temperature_scale_celsius":"\u651d\u6c0f\u5ea6","temperature_scale_fahrenheit":"\u83ef\u6c0f\u5ea6","timezone":"\u6642\u5340","title_general":"\u57fa\u672c\u8cc7\u8a0a","title_i18n":"\u672c\u5730\u5316","title_layout":"\u4f48\u5c40","users_accept_title":"\u63a5\u53d7\u9080\u8acb\u4e26\u65b0\u5efa\u4e00\u500b\u8cec\u865f","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"\u901a\u904e\u96fb\u5b50\u90f5\u4ef6\u9080\u8acb\u4f7f\u7528\u8005","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"\u8f38\u5165\u60a8\u8981\u9080\u8acb\u7684\u4eba\u7684\u96fb\u5b50\u90f5\u4ef6","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"\u4f60\u60f3\u9080\u8acb\u5225\u4eba\u55ce\uff1f","users_blank_cta":"\u9080\u8acb\u4ed6\u4eba\u52a0\u5165","users_blank_description":"\u6b64\u4eba\u5c07\u5177\u6709\u60a8\u64c1\u6709\u7684\u76f8\u540c\u8a2a\u554f\u8a31\u53ef\u6b0a, \u4e26\u4e14\u53ef\u4ee5\u65b0\u589e\u3001\u7de8\u8f2f\u6216\u522a\u9664\u806f\u7d61\u4eba\u8cc7\u8a0a\u3002","users_blank_title":"\u60a8\u662f\u552f\u4e00\u53ef\u4ee5\u8a2a\u554f\u6b64\u5e33\u6236\u7684\u4eba\u3002","users_error_already_invited":"\u60a8\u5df2\u7d93\u9080\u8acb\u4e86\u6b64\u4f7f\u7528\u8005\u3002\u8acb\u9078\u64c7\u5176\u4ed6\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u3002","users_error_email_already_taken":"\u9019\u500b\u96fb\u5b50\u90f5\u4ef6\u5df2\u7d93\u5b58\u5728\uff0c\u8acb\u53e6\u9078\u4e00\u500b\uff01","users_error_email_not_similar":"\u9019\u4e0d\u662f\u9080\u8acb\u4eba\u7684\u96fb\u5b50\u90f5\u4ef6\u3002","users_error_please_confirm":"\u8acb\u60a8\u5148\u78ba\u8a8d\u60a8\u8981\u9080\u8acb\u6b64\u4f7f\u7528\u8005","users_invitation_deleted_confirmation_message":"\u5df2\u6210\u529f\u522a\u9664\u9080\u8acb","users_invitation_need_subscription":"\u60a8\u9700\u8981\u5347\u7d1a\u8cec\u6236\u624d\u80fd\u65b0\u589e\u66f4\u591a\u4f7f\u7528\u8005","users_invitations_delete_confirmation":"\u78ba\u5be6\u8981\u522a\u9664\u6b64\u9080\u8acb\u55ce\uff1f","users_list_add_user":"\u9080\u8acb\u65b0\u4f7f\u7528\u8005","users_list_delete_confirmation":"\u662f\u5426\u78ba\u5be6\u8981\u5f9e\u60a8\u7684\u5e33\u6236\u4e2d\u522a\u9664\u6b64\u4f7f\u7528\u8005\uff1f","users_list_invitations_explanation":"\u5df2\u9080\u8acb","users_list_invitations_invited_by":"\u88ab:name\u9080\u8acb","users_list_invitations_sent_date":"\u5728:date\u50b3\u9001","users_list_invitations_title":"\u5f85\u8655\u7406\u7684\u9080\u8acb","users_list_title":"\u53ef\u4ee5\u8a2a\u554f\u60a8\u7684\u5e33\u6236\u7684\u4f7f\u7528\u8005","users_list_you":"\u9019\u662f\u4f60","webauthn_buttonAdvise":"\u5982\u679c\u60a8\u7684\u5b89\u5168\u9470\u5319\u6709\u6309\u9215\uff0c\u8acb\u6309\u4e0b\u5b83\u3002","webauthn_delete_confirmation":"\u78ba\u5be6\u8981\u522a\u9664\u9019\u500b\u9470\u5319\u55ce?","webauthn_delete_success":"\u9470\u5319\u5df2\u522a\u9664","webauthn_enable_description":"\u65b0\u589e\u4e00\u500b\u5b89\u5168\u9470\u5319","webauthn_error_already_used":"\u9019\u500b\u9470\u5319\u5df2\u7d93\u8a3b\u518a\uff0c\u60a8\u7121\u9700\u5728\u8a3b\u518a\u4e00\u6b21\u3002","webauthn_error_not_allowed":"\u64cd\u4f5c\u8d85\u6642\u6216\u4e0d\u5141\u8a31\u3002","webauthn_insertKey":"\u63d2\u5165\u60a8\u7684\u5b89\u5168\u9470\u5319","webauthn_key_name":"\u9470\u5319\u540d\u7a31:","webauthn_key_name_help":"\u7d66\u4f60\u7684\u9470\u5319\u8d77\u500b\u540d\u5b57","webauthn_last_use":"\u6700\u5f8c\u4f7f\u7528: {timestamp}","webauthn_noButtonAdvise":"\u5982\u679c\u6c92\u6709, \u8acb\u5c07\u5176\u62d4\u51fa\u4e26\u518d\u6b21\u63d2\u5165\u3002","webauthn_not_secured":"WebAuthn\u53ea\u652f\u63f4SSL\u9023\u7dda\uff0c\u8acb\u4f7f\u7528https\u958b\u555f\u9019\u500b\u9801\u9762","webauthn_not_supported":"\u60a8\u7684\u904a\u89bd\u5668\u4e26\u4e0d\u652f\u63f4WebAuthn","webauthn_success":"\u60a8\u7684\u9470\u5319\u5df2\u88ab\u6aa2\u6e2c\u5230\u4e26\u9a57\u8b49\u5b8c\u7562\u3002","webauthn_title":"\u5b89\u5168\u9470\u5319 - WebAuthn"},"validation":{"accepted":"\u60a8\u5fc5\u9808\u540c\u610f :attribute\u3002","active_url":":attribute \u4e0d\u662f\u4e00\u500b\u6709\u6548\u7684 URL \u7db2\u5740","after":":attribute \u5fc5\u9808\u662f\u4e00\u500b\u5728 :date \u4e4b\u5f8c\u7684\u65e5\u671f\u3002","after_or_equal":":attribute \u5fc5\u9808\u662f\u4e00\u500b\u5728 :date \u6216\u4e4b\u5f8c\u7684\u65e5\u671f\u3002","alpha":":attribute \u53ea\u80fd\u5305\u542b\u5b57\u6bcd\u3002","alpha_dash":":attribute \u53ea\u80fd\u7531\u5b57\u6bcd\u3001\u6578\u5b57\u3001\u6e1b\u865f(-)\u548c\u5e95\u7dda(_)\u7d44\u6210\u3002","alpha_num":":attribute \u53ea\u5141\u8a31\u5305\u542b\u5b57\u6bcd\u548c\u6578\u5b57","array":":attribute \u5fc5\u9808\u662f\u500b\u9663\u5217\u3002","attributes":[],"before":":attribute \u5fc5\u9808\u5728 :date \u4e4b\u524d","before_or_equal":":attribute \u5fc5\u9808\u5728 :date \u6216\u4e4b\u524d","between":{"array":":attribute \u5fc5\u9808\u5728 :min \u5230 :max \u500b\u6578\u76ee\u4e4b\u9593","file":":attribute \u5fc5\u9808\u5728 :min KB \u5230 :max KB \u4e4b\u9593\u3002","numeric":":attribute \u5fc5\u9808\u5728 :min \u548c :max \u4e4b\u9593\u3002","string":":attribute \u5fc5\u9808\u5728 :min \u5230 :max \u5b57\u5143\u4e4b\u9593"},"boolean":":attribute \u6b04\u4f4d\u5fc5\u9808\u70ba true \u6216 false\u3002","confirmed":":attribute \u8207\u78ba\u8a8d\u5c08\u6848\u4e0d\u5339\u914d","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":":attribute \u4e0d\u662f\u500b\u6709\u6548\u65e5\u671f","date_equals":":attribute \u5fc5\u9808\u8981\u7b49\u65bc :date\u3002","date_format":":attribute \u4e0d\u7b26\u5408 :format \u7684\u683c\u5f0f","different":":attribute \u548c :other \u4e0d\u80fd\u76f8\u540c\u3002","digits":":attribute \u5fc5\u9808\u662f :digits \u6578\u5b57","digits_between":":attribute \u5fc5\u9808\u662f :min - :max \u4f4d\u6578\u5b57\u3002","dimensions":":attribute \u7684\u5716\u7247\u7121\u6548","distinct":"\uff1a\u5c6c\u6027\u6b04\u4f4d\u5177\u6709\u91cd\u8907\u503c\u3002","email":":attribute \u5fc5\u9808\u662f\u4e00\u500b\u6709\u6548\u7684\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u3002","ends_with":":attribute \u5fc5\u9808\u4ee5 :values \u70ba\u7d50\u5c3e\u3002","exists":"\u9078\u64c7\u7684 :attribute \u7121\u6548","file":":attribute \u5fc5\u9808\u662f\u500b\u6a94\u6848","filled":":attribute \u6b04\u4f4d\u5fc5\u9808\u6709\u4e00\u500b\u503c","gt":{"array":":attribute \u5fc5\u9808\u591a\u65bc :value \u500b\u5143\u7d20\u3002","file":":attribute \u5fc5\u9808\u5927\u65bc :value KB\u3002","numeric":":attribute \u5fc5\u9808\u5927\u65bc :value\u3002","string":":attribute \u5fc5\u9808\u591a\u65bc :value \u500b\u5b57\u5143\u3002"},"gte":{"array":":attribute \u5fc5\u9808\u591a\u65bc\u6216\u7b49\u65bc :value \u500b\u5143\u7d20\u3002","file":":attribute \u5fc5\u9808\u5927\u65bc\u6216\u7b49\u65bc :value KB\u3002","numeric":":attribute \u5fc5\u9808\u5927\u65bc\u6216\u7b49\u65bc :value\u3002","string":":attribute \u5fc5\u9808\u591a\u65bc\u6216\u7b49\u65bc :value \u500b\u5b57\u5143\u3002"},"image":":attribute \u5fc5\u9808\u662f\u5716\u7247\u3002","in":"\u9078\u64c7\u7684 :attribute \u7121\u6548","in_array":":attribute \u4e0d\u5728 :other \u4e2d\u3002","integer":":attribute \u5fc5\u9808\u662f\u6574\u6578","ip":":attribute \u5fc5\u9808\u662f\u4e00\u500b\u6709\u6548\u7684 IP \u4f4d\u5740","ipv4":":attribute \u5fc5\u9808\u662f\u4e00\u500b\u6709\u6548\u7684 IPv4 \u4f4d\u5740","ipv6":":attribute \u5fc5\u9808\u662f\u4e00\u500b\u6709\u6548\u7684 IPv6 \u4f4d\u5740","json":"\uff1a\u5c6c\u6027\u5fc5\u9808\u662f\u6709\u6548\u7684JSON\u5b57\u4e32\u3002","lt":{"array":":attribute \u5fc5\u9808\u5c11\u65bc :value \u500b\u5143\u7d20\u3002","file":":attribute \u5fc5\u9808\u5c0f\u65bc :value KB\u3002","numeric":":attribute \u5fc5\u9808\u5c0f\u65bc :value\u3002","string":":attribute \u5fc5\u9808\u5c11\u65bc :value \u500b\u5b57\u5143\u3002"},"lte":{"array":":attribute \u5fc5\u9808\u5c11\u65bc\u6216\u7b49\u65bc :value \u500b\u5143\u7d20\u3002","file":":attribute \u5fc5\u9808\u5c0f\u65bc\u6216\u7b49\u65bc :value KB\u3002","numeric":":attribute \u5fc5\u9808\u5c0f\u65bc\u6216\u7b49\u65bc :value\u3002","string":":attribute \u5fc5\u9808\u5c11\u65bc\u6216\u7b49\u65bc :value \u500b\u5b57\u5143\u3002"},"max":{"array":":attribute \u7684\u6578\u91cf\u4e0d\u80fd\u8d85\u904e :max \u500b\u3002","file":":attribute \u4e0d\u5927\u65bc :max kb","numeric":":attribute \u4e0d\u5927\u65bc :max","string":":attribute \u4e0d\u5927\u65bc :max \u5b57\u5143"},"mimes":":attribute \u6a94\u6848\u985e\u578b\u5fc5\u9808\u662f :values\u3002","mimetypes":":attribute \u6a94\u6848\u985e\u578b\u5fc5\u9808\u662f :values\u3002","min":{"array":":attribute \u81f3\u5c11\u70ba :min \u500b","file":":attribute \u6700\u5c0f\u662f :min \u5343\u4f4d\u5143\u7d44","numeric":":attribute \u6700\u5c11\u662f :min","string":":attribute \u6700\u5c11\u70ba :min \u500b\u5b57\u5143"},"not_in":"\u9078\u64c7\u7684 :attribute \u7121\u6548","not_regex":":attribute \u683c\u5f0f\u7121\u6548","numeric":":attribute \u5fc5\u9808\u662f\u6578\u5b57\u3002","password":"\u5bc6\u78bc\u932f\u8aa4","present":":attribute \u70ba\u5fc5\u586b\u9805\u3002","regex":":attribute \u683c\u5f0f\u4e0d\u5c0d","required":":attribute \u6b04\u4f4d\u5fc5\u586b","required_if":":attribute \u6b04\u4f4d\u5728 :other \u662f :value \u6642\u662f\u5fc5\u9808\u7684","required_unless":":attribute \u662f\u5fc5\u9808\u7684\u9664\u975e :other \u5728 :values \u4e2d\u3002","required_with":"\u7576 :values \u4e0d\u5b58\u5728\u6642\uff0c :attribute \u662f\u5fc5\u9700\u7684","required_with_all":"\u7576 :values \u5b58\u5728\u6642 :attribute \u4e0d\u80fd\u70ba\u7a7a\u3002","required_without":"\u7576 :values \u4e0d\u5b58\u5728\u6642\uff0c :attribute \u662f\u5fc5\u586b\u7684\u3002","required_without_all":"\u7576\u6c92\u6709\u4efb\u4f55 :values \u5b58\u5728\u6642\uff0c :attribute \u6b04\u4f4d\u70ba\u5fc5\u586b\u9805\u3002","same":":attribute \u548c :other \u5fc5\u9700\u5339\u914d","size":{"array":":attribute \u5fc5\u9808\u5305\u542b :size \u500b\u9805\u3002","file":":attribute \u5fc5\u9700\u662f :size kb","numeric":":attribute \u5fc5\u9700\u662f :size","string":":attribute \u5fc5\u9808\u5305\u542b :size \u500b\u5b57\u5143\u3002"},"starts_with":":attribute \u5fc5\u9808\u4ee5 :values \u70ba\u958b\u982d\u3002","string":":attribute \u5fc5\u9808\u662f\u4e00\u500b\u5b57\u4e32\u3002","timezone":":attribute \u5fc5\u9808\u662f\u500b\u6709\u6548\u7684\u5340\u57df\u3002","unique":":attribute \u5df2\u7d93\u88ab\u4f54\u7528","uploaded":":attribute \u4e0a\u50b3\u5931\u6557.","url":":attribute \u683c\u5f0f\u4e0d\u5c0d","uuid":":attribute \u5fc5\u9808\u662f\u6709\u6548\u7684 UUID\u3002","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/langs/zh.json b/public/js/langs/zh.json deleted file mode 100644 index fe887b1553a..00000000000 --- a/public/js/langs/zh.json +++ /dev/null @@ -1 +0,0 @@ -{"app":{"add":"\u6dfb\u52a0","another_day":"\u67d0\u4e00\u5929","application_description":"Monica\u662f\u7528\u6765\u6536\u96c6\u5e76\u7ba1\u7406\u60a8\u4e0e\u4eb2\u670b\u597d\u53cb\u4e4b\u95f4\u7684\u5173\u7cfb\u7684\u5f97\u529b\u52a9\u624b\u3002","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica \u2013 \u60a8\u7684\u79c1\u4eba\u793e\u4ea4\u5173\u7cfb\u7ba1\u5bb6","back":"\u8fd4\u56de","breadcrumb_add_note":"\u6dfb\u52a0\u6ce8\u91ca","breadcrumb_add_significant_other":"\u6dfb\u52a0\u5176\u4ed6\u91cd\u8981","breadcrumb_api":"API","breadcrumb_archived_contacts":"\u5b58\u6863\u7684\u8054\u7cfb\u4eba","breadcrumb_dashboard":"\u4eea\u8868\u76d8","breadcrumb_dav":"DAV \u8d44\u6e90","breadcrumb_edit_introductions":"\u4f60\u662f\u600e\u4e48\u77e5\u9053\u7684","breadcrumb_edit_note":"\u7f16\u8f91\u6ce8\u91ca","breadcrumb_edit_significant_other":"\u7f16\u8f91\u5176\u4ed6\u91cd\u8981","breadcrumb_journal":"\u65e5\u8bb0","breadcrumb_list_contacts":"\u8054\u7cfb\u4eba","breadcrumb_profile":":name\u7684\u8d44\u6599","breadcrumb_settings":"\u8bbe\u7f6e","breadcrumb_settings_export":"\u5bfc\u51fa","breadcrumb_settings_import":"\u5bfc\u5165","breadcrumb_settings_import_report":"\u5bfc\u5165\u62a5\u8868","breadcrumb_settings_import_upload":"\u4e0a\u4f20","breadcrumb_settings_personalization":"\u4e2a\u6027\u5316","breadcrumb_settings_security":"\u5b89\u5168","breadcrumb_settings_security_2fa":"\u4e8c\u6b21\u9a8c\u8bc1","breadcrumb_settings_subscriptions":"\u8ba2\u9605","breadcrumb_settings_tags":"\u6807\u7b7e","breadcrumb_settings_users":"\u7528\u6237","breadcrumb_settings_users_add":"\u6dfb\u52a0\u7528\u6237","cancel":"\u53d6\u6d88","close":"\u5173\u95ed","compliance_desc":"\u6211\u4eec\u66f4\u65b0\u4e86\u7528\u6237\u534f\u8bae<\/a> \u4ee5\u53ca \u9690\u79c1\u653f\u7b56<\/a>\uff0c\u60a8\u9700\u8981\u9605\u8bfb\u5e76\u540c\u610f\u624d\u80fd\u7ee7\u7eed\u4f7f\u7528\u60a8\u7684\u8d26\u53f7\u3002","compliance_desc_end":"\u6211\u4eec\u4f1a\u4fdd\u62a4\u60a8\u7684\u9690\u79c1\u5b89\u5168","compliance_terms":"\u6211\u5df2\u9605\u8bfb\u5e76\u540c\u610f","compliance_title":"\u62b1\u6b49\uff0c\u6253\u6270\u60a8\u4e00\u4e0b","confirm":"\u786e\u8ba4","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"\u590d\u5236","create":"\u521b\u5efa","date":"\u65e5\u671f","dav_birthdays":"\u751f\u65e5","dav_birthdays_description":":name\u7684\u540d\u7247\u751f\u65e5","dav_contacts":"\u540d\u7247","dav_contacts_description":":name\u7684\u540d\u7247","dav_tasks":"\u4efb\u52a1","dav_tasks_description":":name\u7684\u4efb\u52a1","default_save_success":"\u6570\u636e\u5df2\u88ab\u4fdd\u5b58","delete":"\u5220\u9664","delete_confirm":"Are you sure?","done":"\u5b8c\u6210","download":"\u4e0b\u8f7d","edit":"\u7f16\u8f91","emotion_adoration":"\u5d07\u62dc","emotion_affection":"\u611f\u60c5","emotion_aggravation":"\u6076\u5316","emotion_agitation":"\u9f13\u52a8","emotion_agony":"\u75db\u82e6","emotion_alarm":"\u8b66\u89c9","emotion_alienation":"\u5f02\u5316","emotion_amazement":"\u60ca\u5947","emotion_amusement":"\u5a31\u4e50","emotion_anger":"\u751f\u6c14","emotion_anguish":"\u751f\u4e0d\u5982\u6b7b","emotion_annoyance":"\u70e6\u607c","emotion_anxiety":"\u7126\u8651","emotion_apprehension":"\u5fe7\u8651","emotion_arousal":"\u6fc0\u52b1","emotion_astonishment":"\u60ca\u8bb6","emotion_attraction":"\u5438\u5f15","emotion_bitterness":"\u8f9b\u9178","emotion_bliss":"\u6b23\u559c\u82e5\u72c2","emotion_caring":"\u5173\u5fc3","emotion_cheerfulness":"\u5174\u9ad8\u91c7\u70c8","emotion_compassion":"\u540c\u60c5","emotion_contempt":"\u8f7b\u8511","emotion_contentment":"\u6ee1\u8db3","emotion_defeat":"\u5931\u8d25","emotion_dejection":"\u6cae\u4e27","emotion_delight":"\u559c\u60a6","emotion_depression":"\u5fe7\u90c1","emotion_desire":"\u671f\u671b","emotion_despair":"\u7edd\u671b","emotion_disappointment":"\u5931\u671b","emotion_disgust":"\u538c\u6076","emotion_dislike":"\u4e0d\u559c\u6b22","emotion_dismay":"\u6cae\u4e27","emotion_displeasure":"\u4e0d\u6ee1","emotion_distress":"\u82e6\u607c","emotion_dread":"\u60ca\u6050","emotion_eagerness":"\u6e34\u671b","emotion_ecstasy":"\u72c2\u559c","emotion_elation":"\u5174\u9ad8\u91c7\u70c8","emotion_embarrassment":"\u5c34\u5c2c","emotion_enjoyment":"\u4eab\u53d7","emotion_enthrallment":"\u6c89\u8ff7","emotion_enthusiasm":"\u70ed\u60c5\u9ad8\u6da8","emotion_envy":"\u5ac9\u5992","emotion_euphoria":"\u8fc7\u5ea6\u5174\u594b","emotion_exasperation":"\u607c\u6012","emotion_excitement":"\u5174\u594b","emotion_exhilaration":"\u4e0d\u4ea6\u4e50\u4e4e","emotion_fear":"\u6050\u60e7","emotion_ferocity":"\u51f6\u731b","emotion_fondness":"\u5ba0\u7231","emotion_fright":"\u60ca\u5413","emotion_frustration":"\u53d7\u632b","emotion_fury":"\u6124\u6012","emotion_gaiety":"\u6b22\u4e50","emotion_gladness":"\u559c\u60a6","emotion_glee":"\u9ad8\u5174","emotion_gloom":"\u6cae\u4e27","emotion_glumness":"\u9634\u6c89","emotion_grief":"\u60b2\u75db","emotion_grouchiness":"\u53d1\u7262\u9a9a","emotion_grumpiness":"\u813e\u6c14\u66b4\u8e81","emotion_guilt":"\u5185\u759a","emotion_happiness":"\u5feb\u4e50","emotion_hate":"\u8ba8\u538c","emotion_homesickness":"\u4e61\u6101","emotion_hope":"\u5e0c\u671b","emotion_hopelessness":"\u65e0\u53ef\u6551\u836f","emotion_horror":"\u6050\u6016","emotion_hostility":"\u654c\u610f","emotion_humiliation":"\u5c48\u8fb1","emotion_hurt":"\u4f24\u5fc3","emotion_hysteria":"\u6b47\u65af\u5e95\u91cc","emotion_infatuation":"\u8ff7\u604b","emotion_insecurity":"\u7d27\u5f20","emotion_insult":"\u4fae\u8fb1","emotion_irritation":"\u523a\u6fc0","emotion_isolation":"\u5206\u79bb","emotion_jealousy":"\u5ac9\u5992","emotion_jolliness":"\u4e54\u5229","emotion_joviality":"\u5feb\u4e50","emotion_joy":"\u5f00\u5fc3","emotion_jubilation":"\u559c\u5e86","emotion_liking":"\u559c\u6b22","emotion_loathing":"\u5acc\u6076","emotion_loneliness":"\u5b64\u72ec","emotion_longing":"\u6e34\u671b","emotion_love":"\u559c\u7231","emotion_lust":"\u6b32\u671b","emotion_melancholy":"\u60b2\u4f24","emotion_misery":"\u75db\u82e6","emotion_mortification":"\u5c48\u8fb1","emotion_neglect":"\u5ffd\u89c6","emotion_nervousness":"\u7d27\u5f20","emotion_optimism":"\u4e50\u89c2","emotion_outrage":"\u6124\u6012","emotion_panic":"\u6050\u614c","emotion_passion":"\u70ed\u60c5","emotion_pity":"\u53ef\u60dc","emotion_pleasure":"\u5feb\u4e50","emotion_pride":"\u9a84\u50b2","emotion_primary_anger":"\u751f\u6c14","emotion_primary_fear":"\u6050\u60e7","emotion_primary_joy":"\u5f00\u5fc3","emotion_primary_love":"\u559c\u7231","emotion_primary_sadness":"\u60b2\u4f24","emotion_primary_surprise":"\u60ca\u8bb6","emotion_rage":"\u72c2\u6012","emotion_rapture":"\u72c2\u559c","emotion_regret":"\u540e\u6094","emotion_rejection":"\u62d2\u7edd","emotion_relief":"\u5982\u91ca\u91cd\u8d1f","emotion_remorse":"\u6094\u6068","emotion_resentment":"\u6028\u6068","emotion_revulsion":"\u53cd\u611f","emotion_sadness":"\u60b2\u4f24","emotion_satisfaction":"\u79f0\u5fc3\u5982\u610f","emotion_scorn":"\u8511\u89c6","emotion_secondary_affection":"\u611f\u60c5","emotion_secondary_cheerfulness":"\u5174\u9ad8\u91c7\u70c8","emotion_secondary_contentment":"\u6ee1\u8db3","emotion_secondary_disappointment":"\u5931\u671b","emotion_secondary_disgust":"\u538c\u6076","emotion_secondary_enthrallment":"\u6c89\u8ff7","emotion_secondary_envy":"\u5ac9\u5992","emotion_secondary_exasperation":"\u607c\u6012","emotion_secondary_horror":"\u6050\u6016","emotion_secondary_irritation":"\u523a\u6fc0","emotion_secondary_longing":"\u6e34\u671b","emotion_secondary_lust":"\u6b32\u671b","emotion_secondary_neglect":"\u5ffd\u89c6","emotion_secondary_nervousness":"\u7d27\u5f20","emotion_secondary_optimism":"\u4e50\u89c2","emotion_secondary_pride":"\u9a84\u50b2","emotion_secondary_rage":"\u72c2\u6012","emotion_secondary_relief":"\u5982\u91ca\u91cd\u8d1f","emotion_secondary_sadness":"\u60b2\u4f24","emotion_secondary_shame":"\u803b\u8fb1","emotion_secondary_suffering":"\u75db\u82e6","emotion_secondary_surprise":"\u60ca\u8bb6","emotion_secondary_sympathy":"\u540c\u60c5","emotion_secondary_zest":"\u70ed\u60c5","emotion_sentimentality":"\u591a\u6101\u5584\u611f","emotion_shame":"\u803b\u8fb1","emotion_shock":"\u9707\u64bc","emotion_sorrow":"\u60b2\u60a3","emotion_spite":"\u6028\u6068","emotion_suffering":"\u75db\u82e6","emotion_surprise":"\u60ca\u8bb6","emotion_sympathy":"\u540c\u60c5","emotion_tenderness":"\u67d4\u60c5","emotion_tenseness":"\u795e\u7ecf\u7d27\u7ef7","emotion_terror":"\u6050\u6016","emotion_thrill":"\u5feb\u611f","emotion_uneasiness":"\u4e0d\u5b89","emotion_unhappiness":"\u4e0d\u5e78","emotion_vengefulness":"\u62a5\u590d","emotion_woe":"\u8363\u8fb1\u4e0e\u5171","emotion_worry":"\u62c5\u5fc3","emotion_wrath":"\u66b4\u6012","emotion_zeal":"\u72c2\u70ed","emotion_zest":"\u70ed\u60c5","error_help":"\u5f85\u4f1a\u89c1\uff01","error_id":"\u9519\u8bef\u4ee3\u7801\uff1a:id","error_maintenance":"Maintenance in progress. We\u2019ll be right back.","error_no_term":"\u6b64\u5b9e\u4f8b\u5c1a\u65e0\u7b56\u7565","error_save":"\u5f53\u50a8\u5b58\u6570\u636e\u65f6\u51fa\u73b0\u4e86\u4e00\u4e2a\u9519\u8bef","error_title":"\u7cdf\u7cd5! \u51fa\u9519\u4e86\u3002","error_try_again":"\u51fa\u4e86\u70b9\u95ee\u9898\uff0c\u8bf7\u518d\u8bd5\u4e00\u6b21\u3002","error_twitter":"\u5173\u6ce8\u6211\u4eec\u7684\u63a8\u7279<\/a>\u6765\u5f97\u77e5\u7f51\u7ad9\u7684\u6700\u65b0\u6d88\u606f\uff01","error_unauthorized":"\u4f60\u6ca1\u6709\u6743\u9650\u7f16\u8f91\u6b64\u9875","error_unavailable":"\u670d\u52a1\u4e0d\u53ef\u7528","error_user_account":"\u6b64\u7528\u6237\u4e0d\u5c5e\u4e8e\u6b64\u8d26\u53f7","file_selected":"One file selected\u2026|{count} files selected\u2026","filter":"\u8fc7\u6ee4\u5217\u8868","footer_modal_version_release_away":"\u60a8\u6709\u4e00\u4e2a\u6700\u65b0\u53d1\u5e03\u7248\u672c\u53ef\u66f4\u65b0\u3002\u60a8\u5e94\u8be5\u66f4\u65b0\u5b9e\u4f8b. |\u60a8\u5df2\u7ecf\u6709:number\u4e2a\u7248\u672c\u6ca1\u6709\u66f4\u65b0\uff0c\u5e94\u8be5\u66f4\u65b0\u4e86\u3002","footer_modal_version_whats_new":"\u65b0\u589e\u5185\u5bb9","footer_new_version":"A new version of Monica is available","footer_newsletter":"\u65b0\u95fb\u7b80\u62a5","footer_privacy":"\u9690\u79c1\u6761\u6b3e","footer_release":"\u7248\u672c\u8bf4\u660e","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"\u6350\u52a9","footer_version":"\u7248\u672c::version","gender_female":"\u5973","gender_male":"\u7537","gender_no_gender":"\u65e0\u6027\u522b","gender_none":"\u4fdd\u5bc6","go_back":"\u540e\u9000","header_changelog_link":"\u66f4\u65b0\u65e5\u5fd7","header_logout_link":"\u6ce8\u9500","header_settings_link":"\u8bbe\u7f6e","load_more":"\u8f7d\u5165\u66f4\u591a","loading":"Loading\u2026","main_nav_activities":"\u6d3b\u52a8","main_nav_cta":"\u8054\u7cfb\u4eba","main_nav_dashboard":"\u4eea\u8868\u76d8","main_nav_family":"\u8054\u7cfb\u4eba","main_nav_journal":"\u65e5\u8bb0","main_nav_tasks":"\u4efb\u52a1","markdown_description":"\u60f3\u7528\u4e00\u79cd\u7f8e\u89c2\u7684\u65b9\u5f0f\u683c\u5f0f\u5316\u6587\u672c\u5417\uff1f\u6211\u4eec\u4ee5Markdown\u8bed\u6cd5\u652f\u6301\u7c97\u4f53\u3001\u659c\u4f53\u3001\u5217\u8868\u7b49\u6837\u5f0f\u3002","markdown_link":"\u9605\u8bfb\u6587\u6863","new":"\u65b0","no":"\u5426","percent_uploaded":"\u5df2\u4e0a\u4f20 {percent}%","relationship_type_bestfriend":"\u57fa\u53cb","relationship_type_bestfriend_female":"\u95fa\u5bc6","relationship_type_bestfriend_female_with_name":":name\u7684\u95fa\u5bc6","relationship_type_bestfriend_with_name":":name\u7684\u57fa\u53cb","relationship_type_boss":"\u4e0a\u53f8","relationship_type_boss_female":"\u4e0a\u53f8","relationship_type_boss_female_with_name":":name\u7684\u4e0a\u53f8","relationship_type_boss_with_name":":name\u7684\u4e0a\u53f8","relationship_type_child":"\u513f\u5b50","relationship_type_child_female":"\u5973\u513f","relationship_type_child_female_with_name":":name\u7684\u5973\u4eba","relationship_type_child_with_name":":name\u7684\u513f\u5b50","relationship_type_colleague":"\u540c\u4e8b","relationship_type_colleague_female":"\u540c\u4e8b","relationship_type_colleague_female_with_name":":name\u7684\u540c\u4e8b","relationship_type_colleague_with_name":":name\u7684\u540c\u4e8b","relationship_type_cousin":"\u5802\u5144\u5f1f","relationship_type_cousin_female":"\u5802\u59d0\u59b9","relationship_type_cousin_female_with_name":":name\u7684\u5802\u59d0\u59b9","relationship_type_cousin_with_name":":name\u7684\u5802\u5144\u5f1f","relationship_type_date":"\u7ea6\u4f1a\u5bf9\u8c61","relationship_type_date_female":"\u7ea6\u4f1a\u5bf9\u8c61","relationship_type_date_female_with_name":":name\u7684\u7ea6\u4f1a\u5bf9\u8c61","relationship_type_date_with_name":":name\u7684\u7ea6\u4f1a\u5bf9\u8c61","relationship_type_ex":"\u524d\u7537\u53cb","relationship_type_ex_female":"\u524d\u5973\u53cb","relationship_type_ex_female_with_name":":name\u7684\u524d\u5973\u53cb","relationship_type_ex_husband":"\u524d\u592b","relationship_type_ex_husband_female":"\u524d\u59bb","relationship_type_ex_husband_female_with_name":":name\u7684\u524d\u59bb","relationship_type_ex_husband_with_name":":name\u7684\u524d\u592b","relationship_type_ex_with_name":":name\u7684\u524d\u7537\u53cb","relationship_type_friend":"\u670b\u53cb","relationship_type_friend_female":"\u670b\u53cb","relationship_type_friend_female_with_name":":name\u7684\u670b\u53cb","relationship_type_friend_with_name":":name\u7684\u670b\u53cb","relationship_type_godfather":"\u795e\u7236","relationship_type_godfather_female":"\u795e\u6bcd","relationship_type_godfather_female_with_name":":name\u7684\u795e\u6bcd","relationship_type_godfather_with_name":":name\u7684\u795e\u7236","relationship_type_godson":"\u4e49\u5b50","relationship_type_godson_female":"\u4e49\u5973","relationship_type_godson_female_with_name":":name\u7684\u4e49\u5973","relationship_type_godson_with_name":":name\u7684\u4e49\u5b50","relationship_type_grandchild":"\u66fe\u5b59","relationship_type_grandchild_female":"\u66fe\u5b59\u5973","relationship_type_grandchild_female_with_name":":name\u7684\u66fe\u5b59\u5973","relationship_type_grandchild_with_name":":name\u7684\u66fe\u5b59","relationship_type_grandparent":"\u7956\u7236","relationship_type_grandparent_female":"\u7956\u6bcd","relationship_type_grandparent_female_with_name":":name\u7684\u7956\u6bcd","relationship_type_grandparent_with_name":":name\u7684\u7956\u7236","relationship_type_group_family":"\u5bb6\u5ead\u5173\u7cfb","relationship_type_group_friend":"\u670b\u53cb\u5173\u7cfb","relationship_type_group_love":"\u604b\u7231\u5173\u7cfb","relationship_type_group_other":"\u5176\u4ed6\u5173\u7cfb","relationship_type_group_work":"\u5de5\u4f5c\u5173\u7cfb","relationship_type_inlovewith":"\u559c\u6b22\u7684\u4eba","relationship_type_inlovewith_female":"\u559c\u6b22\u7684\u4eba","relationship_type_inlovewith_female_with_name":":name\u559c\u6b22\u7684\u4eba","relationship_type_inlovewith_with_name":":name\u559c\u6b22\u7684\u4eba","relationship_type_lovedby":"\u8ffd\u6c42\u8005","relationship_type_lovedby_female":"\u8ffd\u6c42\u8005","relationship_type_lovedby_female_with_name":":name\u7684\u8ffd\u6c42\u8005","relationship_type_lovedby_with_name":":name\u7684\u8ffd\u6c42\u8005","relationship_type_lover":"\u60c5\u4eba","relationship_type_lover_female":"\u60c5\u4eba","relationship_type_lover_female_with_name":":name\u7684\u60c5\u4eba","relationship_type_lover_with_name":":name\u7684\u60c5\u4eba","relationship_type_mentor":"\u8001\u5e08","relationship_type_mentor_female":"\u8001\u5e08","relationship_type_mentor_female_with_name":":name\u7684\u8001\u5e08","relationship_type_mentor_with_name":":name\u7684\u8001\u5e08","relationship_type_nephew":"\u5916\u7525","relationship_type_nephew_female":"\u5916\u7525\u5973","relationship_type_nephew_female_with_name":":name\u7684\u5916\u7525\u5973","relationship_type_nephew_with_name":":name\u7684\u5916\u7525","relationship_type_parent":"\u7236\u4eb2","relationship_type_parent_female":"\u6bcd\u4eb2","relationship_type_parent_female_with_name":":name\u7684\u6bcd\u4eb2","relationship_type_parent_with_name":":name\u7684\u7236\u4eb2","relationship_type_partner":"\u642d\u6863","relationship_type_partner_female":"\u642d\u6863","relationship_type_partner_female_with_name":":name\u7684\u642d\u6863","relationship_type_partner_with_name":":name\u7684\u642d\u6863","relationship_type_protege":"\u5b66\u751f","relationship_type_protege_female":"\u5b66\u751f","relationship_type_protege_female_with_name":":name\u7684\u5b66\u751f","relationship_type_protege_with_name":":name\u7684\u5b66\u751f","relationship_type_sibling":"\u5144\u5f1f","relationship_type_sibling_female":"\u59d0\u59b9","relationship_type_sibling_female_with_name":":name\u7684\u59d0\u59b9","relationship_type_sibling_with_name":":name\u7684\u5144\u5f1f","relationship_type_spouse":"\u914d\u5076","relationship_type_spouse_female":"\u914d\u5076","relationship_type_spouse_female_with_name":":name\u7684\u914d\u5076","relationship_type_spouse_with_name":":name\u7684\u914d\u5076","relationship_type_stepchild":"\u7ee7\u5b50","relationship_type_stepchild_female":"\u7ee7\u5973","relationship_type_stepchild_female_with_name":":name\u7684\u7ee7\u5973","relationship_type_stepchild_with_name":":name\u7684\u7ee7\u5b50","relationship_type_stepparent":"\u7ee7\u7236","relationship_type_stepparent_female":"\u7ee7\u6bcd","relationship_type_stepparent_female_with_name":":name\u7684\u7ee7\u6bcd","relationship_type_stepparent_with_name":":name\u7684\u7ee7\u7236","relationship_type_subordinate":"\u4e0b\u5c5e","relationship_type_subordinate_female":"\u4e0b\u5c5e","relationship_type_subordinate_female_with_name":":name\u7684\u4e0b\u5c5e","relationship_type_subordinate_with_name":":name\u7684\u4e0b\u5c5e","relationship_type_uncle":"\u53d4\u53d4","relationship_type_uncle_female":"\u963f\u59e8","relationship_type_uncle_female_with_name":":name\u7684\u963f\u59e8","relationship_type_uncle_with_name":":name\u7684\u53d4\u53d4","remove":"\u5220\u9664","retry":"\u91cd\u8bd5","revoke":"\u64a4\u9500","save":"\u4fdd\u5b58","save_close":"\u4fdd\u5b58\u5e76\u5173\u95ed","today":"\u4eca\u5929","type":"\u7c7b\u578b","unknown":"\u6211\u4e0d\u77e5\u9053","update":"\u66f4\u65b0","upgrade":"\u5347\u7ea7\u89e3\u9501","upload":"\u4e0a\u4f20","verify":"\u9a8c\u8bc1","weather_clear-day":"\u6674\u6717","weather_clear-night":"\u6674\u6717\u7684\u591c\u665a","weather_cloudy":"\u591a\u4e91","weather_current_temperature_celsius":":temperature \u00b0C","weather_current_temperature_fahrenheit":":temperature \u00b0F","weather_current_title":"\u5f53\u524d\u5929\u6c14","weather_fog":"\u96fe","weather_partly-cloudy-day":"\u5c40\u90e8\u591a\u4e91","weather_partly-cloudy-night":"\u5c40\u90e8\u591a\u4e91\u7684\u665a\u4e0a","weather_rain":"\u96e8","weather_sleet":"\u96e8\u5939\u96ea","weather_snow":"\u96ea","weather_wind":"\u98ce","with":"\u4e0e","yes":"\u662f","yesterday":"\u6628\u5929","zoom":"\u653e\u5927"},"auth":{"2fa_one_time_password":"\u9a8c\u8bc1\u7801","2fa_otp_help":"\u6253\u5f00\u60a8\u7684\u4e8c\u6b21\u9a8c\u8bc1APP\u5e76\u590d\u5236\u9a8c\u8bc1\u7801","2fa_recuperation_code":"\u8f93\u5165\u4e8c\u6b21\u9a8c\u8bc1\u6062\u590d\u7801","2fa_title":"\u4e8c\u6b21\u9a8c\u8bc1","2fa_wrong_validation":"\u4e8c\u6b21\u9a8c\u8bc1\u5931\u8d25","back_homepage":"\u56de\u5230\u4e3b\u9875","button_remember":"\u8bb0\u4f4f\u6211","change_language":"\u66f4\u6539\u8bed\u8a00\u81f3\uff1a:lang","change_language_title":"\u66f4\u6539\u8bed\u8a00\uff1a","confirmation_again":"\u5982\u679c\u8981\u66f4\u6539\u7535\u5b50\u90ae\u4ef6\u5730\u5740, \u53ef\u4ee5 \u5355\u51fb\u6b64\u5904<\/a>\u3002","confirmation_check":"\u5728\u60a8\u7ee7\u7eed\u4e4b\u524d\uff0c\u8bf7\u68c0\u67e5\u60a8\u7684\u90ae\u7bb1\u4ee5\u83b7\u5f97\u9a8c\u8bc1\u94fe\u63a5\u3002","confirmation_fresh":"\u4e00\u6761\u65b0\u7684\u9a8c\u8bc1\u94fe\u63a5\u5df2\u7ecf\u53d1\u9001\u5230\u60a8\u7684\u90ae\u7bb1","confirmation_request_another":"\u5982\u679c\u60a8\u6ca1\u6709\u6536\u5230\u7535\u5b50\u90ae\u4ef6 , \u8bf7\u5355\u51fb\u6b64\u5904\u91cd\u65b0\u53d1\u9001<\/a>\u3002","confirmation_title":"\u9a8c\u8bc1\u60a8\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740","create_account":"\u5355\u51fb\u6b64\u5904 \u6ce8\u518c<\/a>","email":"\u7535\u5b50\u90ae\u7bb1","email_change_current_email":"\u5f53\u524d\u90ae\u4ef6\u5730\u5740\uff1a","email_change_new":"\u65b0\u90ae\u7bb1\u5730\u5740\uff1a","email_change_title":"\u66f4\u6362\u60a8\u7684\u7535\u5b50\u90ae\u7bb1","email_changed":"\u60a8\u7684\u7535\u5b50\u90ae\u7bb1\u5df2\u66f4\u6362\uff0c\u8bf7\u68c0\u67e5\u60a8\u7684\u6536\u4ef6\u7bb1\u6765\u9a8c\u8bc1\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u3002","failed":"\u60a8\u8f93\u5165\u7684\u4fe1\u606f\u4e0e\u6211\u4eec\u7684\u8bb0\u5f55\u4e0d\u5339\u914d\u3002","login":"\u767b\u5f55","login_again":"\u8bf7\u518d\u6b21\u767b\u5f55\u60a8\u7684\u8d26\u53f7","login_to_account":"\u767b\u5f55\u60a8\u7684\u8d26\u53f7","login_with_recovery":"\u4f7f\u7528\u6062\u590d\u4ee3\u7801\u767b\u5f55","mfa_auth_otp":"\u4f7f\u7528\u4e8c\u6b21\u9a8c\u8bc1\u8bbe\u5907\u8fdb\u884c\u8ba4\u8bc1","mfa_auth_webauthn":"\u4f7f\u7528\u5b89\u5168\u94a5\u5319\u9a8c\u8bc1(WebAuthn)","not_authorized":"\u60a8\u65e0\u6743\u6267\u884c\u6b64\u64cd\u4f5c","password":"\u5bc6\u7801","password_forget":"\u5fd8\u8bb0\u5bc6\u7801\uff1f","password_reset":"\u91cd\u7f6e\u5bc6\u7801","password_reset_action":"\u91cd\u7f6e\u5bc6\u7801","password_reset_email":"\u7535\u5b50\u90ae\u7bb1","password_reset_email_content":"\u5355\u51fb\u6b64\u5904\u6765\u91cd\u7f6e\u5bc6\u7801:","password_reset_password":"\u5bc6\u7801","password_reset_password_confirm":"\u786e\u8ba4\u5bc6\u7801","password_reset_send_link":"\u53d1\u9001\u91cd\u7f6e\u94fe\u63a5","password_reset_title":"\u91cd\u7f6e\u5bc6\u7801","recovery":"\u6062\u590d\u4ee3\u7801","register_action":"\u6ce8\u518c","register_create_account":"\u60a8\u9700\u8981\u4e00\u4e2a\u8d26\u53f7\u6765\u4f7f\u7528Monica","register_email":"\u8bf7\u8f93\u5165\u4e00\u4e2a\u6709\u6548\u7684\u90ae\u7bb1","register_email_example":"example@example.com","register_firstname":"\u540d\u5b57","register_firstname_example":"\u4f8b:\u5c0f\u660e","register_invitation_email":"\u4e3a\u4e86\u5b89\u5168\uff0c\u8bf7\u60a8\u8f93\u5165\u9080\u8bf7\u4eba\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u3002\u8fd9\u53ef\u4ee5\u5728\u53d7\u9080\u90ae\u4ef6\u4e2d\u627e\u5230","register_lastname":"\u59d3\u6c0f","register_lastname_example":"\u4f8b:\u738b","register_login":"\u5df2\u7ecf\u6709\u8d26\u53f7\u4e86\uff1f\u70b9\u6b64\u767b\u5f55<\/a>","register_password":"\u5bc6\u7801","register_password_confirmation":"\u91cd\u590d\u5bc6\u7801","register_password_example":"\u952e\u5165\u5bc6\u7801...","register_policy":"\u6211\u5df2\u9605\u8bfb\u5e76\u540c\u610f \u9690\u79c1\u653f\u7b56<\/a> \u4e0e \u7528\u6237\u534f\u8bae<\/a>","register_title_create":"\u521b\u5efa\u60a8\u7684Monica\u8d26\u53f7","register_title_welcome":"\u6b22\u8fce\u6ce8\u518c\u60a8\u7684\u79c1\u4eba\u793e\u4ea4\u5173\u7cfb\u7ba1\u5bb6 - Monica","signup":"\u6ce8\u518c","signup_disabled":"\u6ce8\u518c\u5f53\u524d\u5df2\u505c\u7528","signup_error":"An error occured trying to register the user","signup_no_account":"\u6ca1\u6709\u8d26\u53f7\uff1f","throttle":"\u767b\u5f55\u5931\u8d25\u6b21\u6570\u592a\u591a\u3002\u8bf7 :seconds \u540e\u518d\u8bd5\u3002","use_recovery":"\u6216\u8005\u60a8\u53ef\u4ee5\u4f7f\u7528 \u6062\u590d\u4ee3\u7801<\/a>"},"changelog":{"note":"\u6ce8\uff1a\u5f88\u62b1\u6b49\uff0c\u5f53\u524d\u9875\u9762\u53ea\u652f\u6301\u82f1\u6587\u5c55\u793a\u3002","title":"\u66f4\u65b0\u65e5\u5fd7"},"dashboard":{"dashboard_blank_cta":"\u6dfb\u52a0\u60a8\u7684\u7b2c\u4e00\u4e2a\u8054\u7cfb\u4eba","dashboard_blank_description":"Monica\u662f\u4e00\u4e2a\u8bb0\u5f55\u4f60\u6240\u6709\u5173\u5fc3\u7684\u4eba\u53ca\u4e0e\u5176\u4ea4\u4e92\u4fe1\u606f\u7684\u5730\u65b9","dashboard_blank_illustration":"\u63d2\u753b\uff1a Freepik<\/a>","dashboard_blank_title":"\u6b22\u8fce\u767b\u5f55\u8d26\u53f7","debts_you_owe":"\u5f85\u8fd8\u91d1\u989d","notes_title":"\u60a8\u8fd8\u6ca1\u6709\u4efb\u4f55\u4fbf\u7b7e\u3002","product_changes":"\u66f4\u65b0\u65e5\u5fd7","product_view_details":"\u67e5\u770b\u8be6\u60c5","reminders_next_months":"\u8fd1\u4e09\u4e2a\u6708\u7684\u6d3b\u52a8","reminders_none":"\u672c\u6708\u5c1a\u65e0\u63d0\u9192\u4e8b\u9879.","statistics_activities":"\u6d3b\u52a8","statistics_contacts":"\u8054\u7cfb\u4eba","statistics_gifts":"\u793c\u7269","tab_calls_blank":"\u60a8\u8fd8\u6ca1\u6709\u7535\u8bdd\u62e8\u6253\u8bb0\u5f55\u3002","tab_debts":"\u503a\u52a1","tab_debts_blank":"\u60a8\u8fd8\u6ca1\u6709\u6dfb\u52a0\u503a\u52a1\u4fe1\u606f\u3002","tab_favorite_notes":"\u6536\u85cf\u4fbf\u7b7e","tab_recent_calls":"\u6700\u8fd1\u901a\u8bdd","tab_tasks":"\u4efb\u52a1","tab_tasks_blank":"\u4f60\u8fd8\u6ca1\u6709\u4efb\u4f55\u4efb\u52a1","task_add_cta":"\u6dfb\u52a0\u4efb\u52a1","tasks_add_note":"\u6309\u56de\u8f66<\/kbd>\u6765\u6dfb\u52a0\u4efb\u52a1","tasks_add_task_placeholder":"\u8fd9\u4e2a\u4efb\u52a1\u662f\u5173\u4e8e\u4ec0\u4e48\u7684\uff1f","tasks_tab_your_contacts":"\u4e0e\u4efb\u52a1\u76f8\u5173\u7684\u8054\u7cfb\u4eba","tasks_tab_your_tasks":"\u60a8\u7684\u4efb\u52a1"},"format":{"full_date_year":"Y F d","full_hour":"h.i A","full_month":"F","full_month_year":"Y F","short_date":"M d","short_date_year":"Y M d","short_date_year_time":"Y M d H:i","short_day":"D","short_month":"M","short_month_year":"Y M","short_text":"{text}\u2026"},"journal":{"delete_confirmation":"\u60a8\u786e\u5b9a\u8981\u5220\u9664\u6b64\u6761\u76ee\u5417\uff1f","entry_delete_success":"\u8bb0\u5f55\u6761\u76ee\u5df2\u6210\u529f\u5220\u9664\u3002","journal_add":"\u6dfb\u52a0\u65e5\u8bb0\u6761\u76ee","journal_add_comment":"\u662f\u5426\u8981\u6dfb\u52a0\u6ce8\u91ca (\u53ef\u9009)\uff1f","journal_add_cta":"\u4fdd\u5b58","journal_add_date":"\u65e5\u671f","journal_add_post":"\u5185\u5bb9","journal_add_title":"\u6807\u9898 (\u53ef\u9009)","journal_blank_cta":"\u6dfb\u52a0\u60a8\u7684\u7b2c\u4e00\u4e2a\u8bb0\u5f55\u6761\u76ee","journal_blank_description":"\u8bb0\u5f55\u5141\u8bb8\u60a8\u7f16\u5199\u53d1\u751f\u5728\u60a8\u8eab\u4e0a\u7684\u4e8b\u4ef6, \u5e76\u8bb0\u4f4f\u5b83\u4eec\u3002","journal_come_back":"\u8c22\u8c22. \u660e\u5929\u518d\u6765\u7ed9\u4f60\u7684\u4e00\u5929\u8bc4\u4ef7\u4e00\u4e0b\u3002","journal_created_at":"Created at {date}","journal_created_automatically":"\u81ea\u52a8\u521b\u5efa","journal_description":"\u6ce8\u610f: \u8bb0\u5f55\u91cc\u5217\u51fa\u4e86\u5168\u90e8\u624b\u52a8\u8bb0\u5f55\u7684\u6761\u76ee, \u4ee5\u53ca\u60a8\u4e0e\u60a8\u7684\u8054\u7cfb\u4eba\u8fdb\u884c\u7684\u6d3b\u52a8\u7b49\u81ea\u52a8\u6761\u76ee\u3002\u867d\u7136\u53ef\u4ee5\u624b\u52a8\u5220\u9664\u8bb0\u5f55\u6761\u76ee, \u4f46\u5fc5\u987b\u76f4\u63a5\u5728 \"\u8054\u7cfb\u4eba\" \u9875\u4e0a\u8fdb\u884c\u5220\u9664\u3002","journal_edit":"\u7f16\u8f91\u65e5\u8bb0\u6761\u76ee","journal_empty":"\u6682\u65e0\u65e5\u8bb0","journal_entry_rate":"\u8bc4\u4ef7\u4f60\u7684\u4e00\u5929\u3002","journal_entry_type_activity":"\u6d3b\u52a8","journal_entry_type_journal":"\u8bb0\u5f55\u6761\u76ee","journal_rate":"\u4eca\u5929\u8fc7\u5f97\u600e\u4e48\u6837\uff1f\u4f60\u53ef\u4ee5\u6bcf\u5929\u7ed9\u5b83\u4e00\u6b21\u8bc4\u4ef7\u3002","journal_show_comment":"\u663e\u793a\u8bc4\u8bba"},"logs":{"contact_log_contact_created":"\u5df2\u521b\u5efa\u8054\u7cfb\u4eba","contact_log_contact_description_cleared":"\u5df2\u6e05\u9664\u63cf\u8ff0","contact_log_contact_description_updated":"\u5df2\u66f4\u65b0\u63cf\u8ff0","contact_log_contact_work_updated":"\u66f4\u65b0\u5de5\u4f5c\u4fe1\u606f.","settings_log_company_created":"\u521b\u5efa\u4e86\u4e00\u4e2a\u540d\u4e3a :name \u7684\u516c\u53f8","settings_log_contact_created_with_name":"\u6dfb\u52a0 :name \u4e3a\u8054\u7cfb\u4eba","settings_log_contact_description_cleared_with_name":"\u5df2\u6e05\u9664 :name \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u63cf\u8ff0","settings_log_contact_work_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u5de5\u4f5c\u4fe1\u606f"},"mail":{"comment":"\u5907\u6ce8\uff1a:comment","confirmation_email_bottom":"\u5982\u679c\u4e0d\u662f\u60a8\u672c\u4eba\u8fdb\u884c\u7684\u521b\u5efa\u5e10\u6237\u64cd\u4f5c\uff0c\u8bf7\u5ffd\u7565\u8fd9\u5c01\u90ae\u4ef6\u3002","confirmation_email_button":"Email \u8ba4\u8bc1","confirmation_email_intro":"\u8bf7\u70b9\u51fb\u4ee5\u4e0b\u6309\u94ae\u6765\u5b8c\u6210Email\u8ba4\u8bc1","confirmation_email_title":"Monica \u2013 Email \u8ba4\u8bc1","footer_contact_info":"\u6dfb\u52a0\u3001\u67e5\u770b\u3001\u5b8c\u6210\u548c\u66f4\u6539\u6709\u5173\u6b64\u8054\u7cfb\u4eba\u7684\u4fe1\u606f:","footer_contact_info2":"\u770b\u770b :name\u7684\u4e2a\u4eba\u8d44\u6599","footer_contact_info2_link":"\u770b\u770b:name\u7684\u4e2a\u4eba\u8d44\u6599: :url","for":"\u4e3a\uff1a:name","greetings":"\u60a8\u597d:username","invitation_button":"\u63a5\u53d7\u9080\u8bf7","invitation_expiration":"\u6b64\u94fe\u63a5\u5c06\u5728 :count \u5929\u540e\u8fc7\u671f","invitation_intro":"\u60a8\u5df2\u88ab:name (:email)\u9080\u8bf7\u4f7f\u7528 Monica, \u4e2a\u4eba\u793e\u4ea4\u5173\u7cfb\u7ba1\u7406\u5de5\u5177\u3002","invitation_link":"\u8981\u63a5\u53d7\u9080\u8bf7\uff0c\u8bf7\u70b9\u51fb\u4e0b\u9762\u7684\u94fe\u63a5\uff1a","invitation_title":"Monica \u2014 \u60a8\u6536\u5230 :name \u7684\u9080\u8bf7","notification_description":"\u5728:count\u5929\u540e(:date),\u5c06\u6709\u4ee5\u4e0b\u4e8b\u4ef6\u53d1\u751f\uff1a","notification_subject_line":"\u60a8\u6709\u4e00\u4e2a\u5373\u5c06\u8fdb\u884c\u7684\u6d3b\u52a8","notifications_footer":"\u5982\u679c\u60a8\u65e0\u6cd5\u70b9\u51fb \":actionText\" \u6309\u94ae, \u590d\u5236\u4ee5\u4e0b\u94fe\u63a5\u81f3\u6d4f\u89c8\u5668\u6253\u5f00: [:actionURL](:actionURL)","notifications_hello":"\u60a8\u597d\uff01","notifications_regards":"\u6b64\u81f4","notifications_rights":"\u7248\u6743\u6240\u6709","notifications_whoops":"\u7cdf\u4e86!","password_reset_bottom":"\u5982\u679c\u60a8\u6ca1\u6709\u8bf7\u6c42\u91cd\u7f6e\u5bc6\u7801\uff0c\u8bf7\u5ffd\u7565\u8fd9\u5c01\u90ae\u4ef6\u3002","password_reset_button":"\u91cd\u7f6e\u5bc6\u7801","password_reset_expiration":"\u6b64\u5bc6\u7801\u91cd\u7f6e\u94fe\u63a5\u5c06\u5728 :count \u5206\u949f\u540e\u8fc7\u671f","password_reset_intro":"\u60a8\u6536\u5230\u6b64\u90ae\u4ef6\u662f\u56e0\u4e3a\u6211\u4eec\u6536\u5230\u4e86\u60a8\u7684\u5bc6\u7801\u91cd\u7f6e\u8bf7\u6c42","password_reset_title":"Monica \u2014 \u91cd\u7f6e\u5bc6\u7801\u901a\u77e5","stay_in_touch_subject_description":"\u60a8\u7684\u5e38\u8054\u7cfb\u63d0\u9192\uff1a \u6bcf :frequency \u5929 \u4e0e :name \u8054\u7cfb.","stay_in_touch_subject_line":"\u60a8\u7684\u300e\u5e38\u8054\u7cfb\u300f\u63d0\u9192 :name","subject_line":"\u63d0\u9192:contact","want_reminded_of":"\u60a8\u7684\u63d0\u9192\u4e8b\u9879\uff1a:reason"},"pagination":{"next":"\u4e0b\u4e00\u9875 \u276f","previous":"\u276e \u4e0a\u4e00\u9875"},"passwords":{"changed":"\u5bc6\u7801\u4fee\u6539\u6210\u529f","invalid":"\u60a8\u8f93\u5165\u7684\u5bc6\u7801\u4e0d\u6b63\u786e\u3002","reset":"\u60a8\u7684\u5bc6\u7801\u5df2\u91cd\u7f6e\uff01","sent":"\u5982\u679c\u60a8\u8f93\u5165\u7684\u7535\u5b50\u90ae\u4ef6\u5b58\u5728\u4e8e\u6211\u4eec\u7684\u8bb0\u5f55\u4e2d, \u5bc6\u7801\u91cd\u7f6e\u94fe\u63a5\u5c06\u88ab\u53d1\u9001\u81f3\u6539\u90ae\u7bb1\u3002","throttled":"\u8bf7\u7a0d\u5019\u518d\u8bd5","token":"\u5bc6\u7801\u91cd\u7f6e\u79d8\u94a5\u65e0\u6548\u3002","user":"\u5982\u679c\u60a8\u8f93\u5165\u7684\u7535\u5b50\u90ae\u4ef6\u5b58\u5728\u4e8e\u6211\u4eec\u7684\u8bb0\u5f55\u4e2d, \u5bc6\u7801\u91cd\u7f6e\u94fe\u63a5\u5c06\u88ab\u53d1\u9001\u81f3\u8be5\u90ae\u7bb1\u3002"},"people":{"activities_activity":"\u6d3b\u52a8\u7c7b\u522b","activities_add_activity":"\u6dfb\u52a0\u6d3b\u52a8","activities_add_category":"\u6307\u5b9a\u7c7b\u522b","activities_add_date_occured":"\u6d3b\u52a8\u53d1\u751f\u4e8e...","activities_add_emotions":"\u6dfb\u52a0\u60c5\u7eea","activities_add_emotions_title":"\u60a8\u60f3\u8bb0\u5f55\u60a8\u5728\u6b64\u901a\u8bdd\u4e2d\u7684\u611f\u53d7\u5417\uff1f(\u53ef\u9009)","activities_add_error":"\u6dfb\u52a0\u6d3b\u52a8\u65f6\u51fa\u73b0\u9519\u8bef","activities_add_more_details":"\u6dfb\u52a0\u66f4\u591a\u8be6\u60c5","activities_add_participants":"\u9664\u4e86 {name} \u4e4b\u5916\uff0c\u8c01\u53c2\u4e0e\u4e86\u8fd9\u4e2a\u6d3b\u52a8\uff1f(\u53ef\u9009)","activities_add_participants_cta":"\u6dfb\u52a0\u53c2\u4e0e\u8005","activities_add_pick_activity":"\u6d3b\u52a8\u5206\u7c7b(\u53ef\u9009)","activities_add_success":"\u5df2\u6210\u529f\u6dfb\u52a0\u6d3b\u52a8","activities_add_title":"\u60a8\u4e0e {name} \u4e00\u8d77\u505a\u4e86\u4ec0\u4e48?","activities_blank_add_activity":"\u6dfb\u52a0\u6d3b\u52a8","activities_blank_title":"\u8bb0\u5f55\u60a8\u4e0e {name} \u4e4b\u95f4\u7684\u70b9\u6ef4","activities_delete_success":"\u6d3b\u52a8\u5df2\u6210\u529f\u5220\u9664","activities_item_information":":Activity\uff0c\u53d1\u751f\u4e8e:date","activities_list_category":"\u5206\u7c7b\uff1a","activities_list_date":"\u53d1\u751f\u4e8e","activities_list_emotions":"\u6211\u611f\u89c9:","activities_list_participants":"\u53c2\u4e0e\u8005\uff1a","activities_profile_number_occurences":":value \u6b21\u6d3b\u52a8","activities_profile_subtitle":"\u622a\u81f3\u76ee\u524d\u4e3a\u6b62\u60a8\u4e0e:name\u7684\u6d3b\u52a8\u8bb0\u5f55\u5982\u4e0b\uff1a\u8fd1\u4e00\u5e74\u5171 :activities_last_twelve_months\u6b21\uff0c\u603b\u5171 :total_activities\u6b21","activities_profile_title":":name \u4e0e\u60a8\u4e4b\u95f4\u7684\u6d3b\u52a8\u62a5\u544a","activities_profile_year_summary":":year\u5e74\u4f60\u4eec\u4e00\u8d77\u8fdb\u884c\u7684\u6d3b\u52a8","activities_profile_year_summary_activity_types":":year\u5e74\u6d3b\u52a8\u7c7b\u578b\u6c47\u603b","activities_summary":"\u63cf\u8ff0\u4f60\u505a\u4e86\u4ec0\u4e48","activities_update_success":"\u6d3b\u52a8\u5df2\u6210\u529f\u66f4\u65b0","activities_view_activities_report":"\u67e5\u770b\u6d3b\u52a8\u62a5\u544a","activities_who_was_involved":"\u8c01\u53c2\u4e0e\u4e86\uff1f","activity_title":"\u6d3b\u52a8","activity_type_ate_at_his_place":"\u5728\u5bf9\u65b9\u5bb6\u91cc\u505a\u5ba2","activity_type_ate_at_home":"\u5728\u5bb6\u5403\u996d","activity_type_ate_restaurant":"\u5728\u996d\u5e97\u5403","activity_type_category_cultural_activities":"\u6587\u5316","activity_type_category_food":"\u98df\u7269","activity_type_category_simple_activities":"\u4e00\u822c\u6d3b\u52a8","activity_type_category_sport":"\u8fd0\u52a8","activity_type_did_sport_activities_together":"\u4e00\u8d77\u6253\u7403","activity_type_just_hung_out":"\u7ea6\u4f1a","activity_type_picnicked":"\u5df2\u9009\u62e9","activity_type_talked_at_home":"\u8c08\u5fc3","activity_type_watched_movie_at_home":"\u770b\u7535\u5f71","activity_type_went_bar":"\u6ce1\u5427","activity_type_went_concert":"\u53bb\u97f3\u4e50\u4f1a","activity_type_went_museum":"\u53bb\u535a\u7269\u9986","activity_type_went_play":"\u51fa\u53bb\u73a9","activity_type_went_theater":"\u770b\u620f","age_approximate_in_years":"\u5927\u6982:age\u5c81","age_exact_birthdate":"\u51fa\u751f:date","age_exact_in_years":":age\u5c81","auditlogs_author":":name \u4e8e :date ","auditlogs_breadcrumb":"\u5386\u53f2","auditlogs_link":"\u5386\u53f2","auditlogs_title":":name \u53d1\u751f\u7684\u6240\u6709\u4e8b\u4ef6","avatar_adorable_avatar":"\u559c\u7231\u5934\u50cf","avatar_change_title":"\u66f4\u6362\u5934\u50cf","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"\u4fdd\u6301\u5f53\u524d\u5934\u50cf","avatar_default_avatar":"\u9ed8\u8ba4\u5934\u50cf","avatar_gravatar":"\u6b64\u7528\u6237\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740 \u4e0eGravatar\u5173\u8054 \u3002 Gravatar<\/a> \u662f\u5168\u7403\u901a\u7528\u7684\u5934\u50cf\u670d\u52a1\u3002","avatar_photo":"\u4ece\u60a8\u4e0a\u4f20\u7684\u7167\u7247","avatar_question":"\u60a8\u60f3\u4f7f\u7528\u54ea\u4e2a\u5934\u50cf\uff1f","birthdate_not_set":"\u672a\u8bbe\u7f6e\u751f\u65e5","call_blank_desc":"\u4f60\u6253\u7ed9{name}","call_blank_title":"\u8ffd\u8e2a\u60a8\u4e0e{name} \u7684\u901a\u8bdd\u8bb0\u5f55","call_button":"\u8bb0\u5f55\u901a\u8bdd","call_delete_confirmation":"\u4f60\u786e\u5b9a\u8981\u5220\u9664\u6b64\u901a\u8bdd\u8bb0\u5f55\u5417?","call_delete_success":"\u6210\u529f\u5220\u9664\u901a\u8bdd\u8bb0\u5f55\uff01","call_emotions":"\u60c5\u7eea\uff1a","call_empty_comment":"\u65e0\u8be6\u7ec6\u4fe1\u606f","call_he_called":"{name} \u62e8\u51fa\u7684","call_title":"\u901a\u8bdd\u8bb0\u5f55","call_you_called":"\u60a8\u62e8\u51fa\u7684","calls_add_success":"\u5df2\u4fdd\u5b58\u901a\u8bdd\u8bb0\u5f55\u3002","contact_address_form_city":"\u57ce\u5e02 (\u53ef\u9009)","contact_address_form_country":"\u56fd\u5bb6 (\u53ef\u9009)","contact_address_form_latitude":"\u7eac\u5ea6 (\u4ec5\u9650\u6570\u5b57) (\u53ef\u9009)","contact_address_form_longitude":"\u7ecf\u5ea6 (\u4ec5\u9650\u6570\u5b57) (\u53ef\u9009)","contact_address_form_name":"\u6807\u7b7e (\u53ef\u9009)","contact_address_form_postal_code":"\u90ae\u653f\u7f16\u7801 (\u53ef\u9009)","contact_address_form_province":"\u7701 (\u53ef\u9009)","contact_address_form_street":"\u8857 (\u53ef\u9009)","contact_address_title":"\u5730\u5740","contact_archive":"\u5b58\u6863\u8054\u7cfb\u4eba","contact_archive_help":"\u5b58\u6863\u7684\u8054\u7cfb\u4eba\u5c06\u4e0d\u4f1a\u663e\u793a\u5728\u8054\u7cfb\u4eba\u5217\u8868\u4e2d, \u4f46\u4ecd\u4f1a\u663e\u793a\u5728\u641c\u7d22\u7ed3\u679c\u4e2d\u3002","contact_field_label_cell":"\u624b\u673a","contact_field_label_fax":"\u4f20\u771f","contact_field_label_home":"\u5bb6\u5ead","contact_field_label_main":"\u4e3b\u8981","contact_field_label_other":"\u5176\u5b83","contact_field_label_pager":"\u5bfb\u547c\u673a","contact_field_label_personal":"\u4e2a\u4eba","contact_field_label_work":"\u5de5\u4f5c","contact_info_address":"\u751f\u6d3b\u5728","contact_info_form_contact_type":"\u8054\u7cfb\u65b9\u5f0f","contact_info_form_content":"\u5185\u5bb9","contact_info_form_personalize":"\u4e2a\u6027\u5316","contact_info_title":"\u8054\u7cfb\u4fe1\u606f","contact_unarchive":"\u53d6\u6d88\u5b58\u6863","conversation_add_another":"\u6dfb\u52a0\u53e6\u4e00\u6761\u6d88\u606f","conversation_add_content":"\u5199\u4e0b\u4f60\u4eec\u8bf4\u7684\u8bdd","conversation_add_error":"\u60a8\u5fc5\u987b\u81f3\u5c11\u6dfb\u52a0\u4e00\u6761\u4fe1\u606f","conversation_add_how":"\u4f60\u4eec\u600e\u4e48\u4ea4\u6d41\uff1f","conversation_add_success":"\u5bf9\u8bdd\u6210\u529f\u6dfb\u52a0","conversation_add_title":"\u8bb0\u5f55\u4e00\u4e2a\u65b0\u5bf9\u8bdd","conversation_add_what_was_said":"\u60a8\u8bf4\u4e86\u4ec0\u4e48\uff1f","conversation_add_when":"\u4f60\u4eec\u4f55\u65f6\u8fdb\u884c\u7684\u5bf9\u8bdd\uff1f","conversation_add_who_wrote":"\u8c01\u8bf4\u7684\uff1f","conversation_add_you":"\u60a8","conversation_blank":"\u8bb0\u5f55\u60a8\u4e0e:name\u901a\u8fc7\u77ed\u4fe1\u6216\u793e\u4ea4\u5a92\u4f53\u7684\u4fe1\u606f\u8bb0\u5f55","conversation_delete_link":"\u5220\u9664\u5bf9\u8bdd","conversation_delete_success":"\u5bf9\u8bdd\u6210\u529f\u5220\u9664","conversation_edit_delete":"\u60a8\u662f\u5426\u8981\u5220\u9664\u8fd9\u4e2a\u5bf9\u8bdd\uff1f\u64cd\u4f5c\u65e0\u6cd5\u64a4\u9500\u3002","conversation_edit_success":"\u5bf9\u8bdd\u6210\u529f\u66f4\u65b0","conversation_edit_title":"\u7f16\u8f91\u5bf9\u8bdd","conversation_list_cta":"\u8bb0\u5f55\u5bf9\u8bdd","conversation_list_table_content":"\u90e8\u5206\u5185\u5bb9(\u6700\u65b0\u6d88\u606f)","conversation_list_table_messages":"\u6d88\u606f","conversation_list_title":"\u5bf9\u8bdd","debt_add_add_cta":"\u589e\u52a0\u503a\u52a1","debt_add_amount":"\u6570\u989d","debt_add_cta":"\u589e\u52a0\u503a\u52a1","debt_add_reason":"\u4e8b\u7531\uff08\u53ef\u9009\uff09","debt_add_success":"\u5df2\u6210\u529f\u6dfb\u52a0\u503a\u52a1","debt_add_they_owe":"\u60a8\u501f\u7ed9:name","debt_add_title":"\u503a\u52a1\u7ba1\u7406","debt_add_you_owe":":name\u501f\u7ed9\u60a8","debt_delete_confirmation":"\u662f\u5426\u786e\u5b9e\u8981\u5220\u9664\u6b64\u503a\u52a1\uff1f","debt_delete_success":"\u5df2\u6210\u529f\u5220\u9664\u503a\u52a1","debt_edit_success":"\u503a\u52a1\u5df2\u6210\u529f\u66f4\u65b0","debt_edit_update_cta":"\u66f4\u65b0\u503a\u52a1","debt_they_owe":":name\u6b20\u60a8:amount","debt_title":"\u503a\u52a1","debt_you_owe":"\u60a8\u6b20:amount","debts_blank_title":"\u7ba1\u7406\u60a8\u4e0e:name\u4e4b\u95f4\u7684\u503a\u52a1\u5173\u7cfb","deceased_add_reminder":"\u4e3a\u6b64\u65e5\u671f\u6dfb\u52a0\u63d0\u9192","deceased_age":"\u4eab\u5e74","deceased_date_label":"\u6b7b\u4ea1\u65e5\u671f","deceased_know_date":"\u6211\u77e5\u9053\u8fd9\u4e2a\u4eba\u53bb\u4e16\u65e5\u671f","deceased_label":"\u901d\u8005","deceased_label_with_date":"\u5728:date\u53bb\u4e16","deceased_mark_person_deceased":"\u5c06\u6b64\u4eba\u6807\u8bb0\u4e3a\u5df2\u901d\u8005","deceased_reminder_title":":name\u7684\u53bb\u4e16\u5468\u5e74\u6000\u5ff5","document_list_blank_desc":"\u5728\u8fd9\u91cc, \u60a8\u53ef\u4ee5\u5b58\u50a8\u4e0e\u6b64\u4eba\u76f8\u5173\u7684\u6587\u6863\u3002","document_list_cta":"\u4e0a\u8f7d\u6587\u6863","document_list_title":"\u6587\u6863","document_upload_zone_cta":"\u4e0a\u4f20\u6587\u4ef6","document_upload_zone_error":"\u4e0a\u4f20\u6587\u4ef6\u65f6\u51fa\u9519\uff0c\u8bf7\u518d\u8bd5\u4e00\u6b21 \uff01","document_upload_zone_progress":"\u6b63\u5728\u4e0a\u4f20\u6587\u6863","edit_contact_information":"\u7f16\u8f91\u8054\u7cfb\u4eba\u4fe1\u606f","emotion_this_made_me_feel":"\u8fd9\u8ba9\u4f60\u89c9\u5f97...","food_preferences_add_success":"\u98df\u54c1\u504f\u597d\u5df2\u88ab\u4fdd\u5b58","food_preferences_cta":"\u6dfb\u52a0\u98df\u7269\u504f\u597d","food_preferences_edit_cta":"\u4fdd\u5b58\u98df\u7269\u504f\u597d","food_preferences_edit_description":"\u4e5f\u8bb8:firstname\u6216:family\u7684\u5bb6\u5ead\u6709\u8fc7\u654f\uff0c\u6216\u8005\u4e0d\u559c\u6b22\u4e00\u74f6\u7279\u5b9a\u7684\u9152\u7b49\u3002\u628a\u8fd9\u4e9b\u4fe1\u606f\u5217\u5728\u8fd9\u91cc\uff0c\u5728\u4e0b\u6b21\u548c\u9080\u8bf7\u4ed6\u4eec\u5403\u996d\u65f6\u53ef\u4ee5\u5728\u8fd9\u91cc\u770b\u5230\u8fd9\u4e9b\u4fe1\u606f\u3002","food_preferences_edit_description_no_last_name":"\u4e5f\u8bb8:firstname\u6709\u8fc7\u654f\u60c5\u51b5\uff0c\u6216\u8005\u4e0d\u559c\u6b22\u4e00\u74f6\u7279\u5b9a\u7684\u9152\u7b49\u3002\u628a\u8fd9\u4e9b\u4fe1\u606f\u5217\u5728\u8fd9\u91cc\uff0c\u5728\u4e0b\u6b21\u548c\u9080\u8bf7\u4ed6\u4eec\u5403\u996d\u65f6\u53ef\u4ee5\u5728\u8fd9\u91cc\u770b\u5230\u8fd9\u4e9b\u4fe1\u606f\u3002","food_preferences_edit_title":"\u6ce8\u660e\u98df\u7269\u504f\u597d","food_preferences_title":"\u98df\u7269\u504f\u597d","gifts_add_comment":"\u5907\u6ce8 (\u53ef\u9009)","gifts_add_date":"Date (optional)","gifts_add_gift":"\u6dfb\u52a0\u793c\u7269","gifts_add_gift_already_offered":"\u9001\u51fa\u7684\u793c\u7269","gifts_add_gift_idea":"\u793c\u54c1\u521b\u610f","gifts_add_gift_name":"\u793c\u54c1\u540d\u79f0","gifts_add_gift_received":"\u6536\u5230\u7684\u793c\u7269","gifts_add_gift_title":"\u8fd9\u662f\u4ec0\u4e48\u793c\u7269\uff1f","gifts_add_link":"\u793c\u7269\u94fe\u63a5 (\u53ef\u9009)","gifts_add_photo":"\u76f8\u7247(\u53ef\u9009)","gifts_add_photo_title":"\u4e3a\u6b64\u793c\u7269\u6dfb\u52a0\u4e00\u5f20\u7167\u7247","gifts_add_recipient":"\u6536\u4ef6\u4eba(\u53ef\u9009)","gifts_add_recipient_field":"\u6536\u4ef6\u4eba","gifts_add_someone":"\u8fd9\u4efd\u793c\u7269\u7279\u522b\u662f\u7ed9{name}\u7684\u5bb6\u4eba","gifts_add_success":"\u5df2\u6210\u529f\u6dfb\u52a0\u793c\u7269","gifts_add_title":"\u4e0e:name\u7684\u793c\u7269\u6765\u5f80","gifts_add_value":"\u503c (\u53ef\u9009)","gifts_delete_confirmation":"\u662f\u5426\u786e\u5b9e\u8981\u5220\u9664\u6b64\u793c\u7269\uff1f","gifts_delete_cta":"\u5220\u9664","gifts_delete_success":"\u793c\u7269\u5df2\u6210\u529f\u5220\u9664","gifts_delete_title":"\u5220\u9664\u793c\u7269","gifts_for":"\u8d60\u4e88\uff1a{name}","gifts_ideas":"\u5fc3\u613f\u5355","gifts_link":"\u94fe\u63a5","gifts_mark_offered":"\u6807\u8bb0\u4e3a\u63d0\u4f9b","gifts_offered":"\u9001\u51fa\u7684\u793c\u7269","gifts_offered_as_an_idea":"\u6807\u8bb0\u4e3a\u5fc3\u613f\u5355","gifts_received":"\u6536\u5230\u7684\u793c\u7269","gifts_title":"\u793c\u7269\u5f80\u6765","gifts_update_success":"\u793c\u7269\u5df2\u6210\u529f\u66f4\u65b0","gifts_view_comment":"\u67e5\u770b\u8bc4\u8bba","information_edit_birthdate_label":"\u751f\u65e5","information_edit_description":"\u8bf4\u660e (\u53ef\u9009)","information_edit_description_help":"\u7528\u4e8e\u5728\u8054\u7cfb\u4eba\u5217\u8868\u4e2d\u6dfb\u52a0\u4e00\u4e9b\u5143\u7d20\uff08\u5982\u6709\u5fc5\u8981\uff09","information_edit_exact":"\u6211\u77e5\u9053\u8fd9\u4e2a\u4eba\u7684\u786e\u5207\u51fa\u751f\u65e5\u671f...","information_edit_firstname":"\u540d\u5b57","information_edit_lastname":"\u59d3\u6c0f\uff08\u53ef\u9009\uff09","information_edit_max_size":"\u6700\u5927\u503c :size Kb","information_edit_max_size2":"\u6700\u5927 {size} Kb","information_edit_not_year":"\u6211\u77e5\u9053\u8fd9\u4e2a\u4eba\u7684\u751f\u65e5\u7684\u65e5\u671f\u548c\u6708\u4efd, \u4f46\u4e0d\u77e5\u9053\u54ea\u4e00\u5e74\u3002","information_edit_probably":"\u6b64\u4eba\u53ef\u80fd\u662f...","information_edit_success":"\u8bb0\u5f55\u66f4\u65b0\u6210\u529f","information_edit_title":"\u7f16\u8f91 :name\u7684\u4e2a\u4eba\u4fe1\u606f","information_edit_unknown":"\u6211\u4e0d\u77e5\u9053\u5177\u4f53\u5e74\u9f84","information_no_work_defined":"\u672a\u5b9a\u4e49\u5de5\u4f5c\u4fe1\u606f","information_work_at":"\u5728 :company\u5de5\u4f5c","introductions_add_reminder":"\u6dfb\u52a0\u63d0\u9192\u4ee5\u5e86\u795d\u6b64\u4e8b\u4ef6\u53d1\u751f\u7684\u5468\u5e74\u7eaa\u5ff5","introductions_additional_info":"\u4f60\u5728\u54ea\u91cc\u76f8\u9047","introductions_blank_cta":"\u60a8\u5982\u4f55\u9047\u5230\u7684:name","introductions_edit_met_through":"\u6709\u4eba\u628a\u4f60\u4ecb\u7ecd\u7ed9\u8fd9\u4e2a\u4eba\u5417\uff1f","introductions_first_met_date":"\u7b2c\u4e00\u6b21\u76f8\u89c1","introductions_first_met_date_known":"\u8fd9\u662f\u6211\u4eec\u76f8\u9047\u7684\u65e5\u5b50","introductions_met_date":"\u5728:date\u9047\u5230","introductions_met_through":"\u901a\u8fc7 :name<\/a>\u9047\u5230","introductions_no_first_met_date":"\u6211\u4e0d\u8bb0\u5f97\u5177\u4f53\u65e5\u671f","introductions_no_met_through":"\u6ca1\u6709\u4eba","introductions_reminder_title":"\u4f60\u7b2c\u4e00\u6b21\u9047\u89c1\u7684\u90a3\u4e00\u5929\u7684\u5468\u5e74\u7eaa\u5ff5\u65e5","introductions_sidebar_title":"\u4f60\u4eec\u662f\u5982\u4f55\u8ba4\u8bc6\u7684\uff1f","introductions_title_edit":"\u4f60\u662f\u600e\u4e48\u8ba4\u8bc6:name\u7684\uff1f","introductions_update_success":"\u4f60\u6210\u529f\u66f4\u65b0\u4e86\u5173\u4e8e\u4f60\u4eec\u76f8\u8bc6\u7684\u6545\u4e8b","last_activity_date":"\u6700\u8fd1\u4e00\u8d77\u7684\u6d3b\u52a8: :date","last_activity_date_empty":"\u6700\u8fd1\u4e00\u8d77\u7684\u6d3b\u52a8: \u672a\u77e5","last_called":"\u6700\u8fd1\u901a\u8bdd: :date","last_called_empty":"\u6700\u8fd1\u901a\u8bdd: \u672a\u77e5","life_event_blank":"\u8bb0\u5f55\u5728{name} \u8eab\u4e0a\u53d1\u751f\u7684\u4e8b\u60c5\u4ee5\u4f9b\u5c06\u6765\u53c2\u8003","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"\u4e3a\u8be5\u4e8b\u4ef6\u6dfb\u52a0\u5e74\u5ea6\u63d0\u9192","life_event_create_category":"\u5168\u90e8\u7c7b\u522b","life_event_create_date":"\u4f60\u4e0d\u9700\u8981\u8be6\u7ec6\u5230\u67d0\u4e00\u5929 - \u53ea\u9700\u8981\u63d0\u4f9b\u5e74\u4efd\u5c31\u884c","life_event_create_default_description":"\u6dfb\u52a0\u4f60\u77e5\u9053\u7684\u4fe1\u606f","life_event_create_default_story":"\u6545\u4e8b (\u53ef\u9009)","life_event_create_default_title":"\u6807\u9898 (\u53ef\u9009)","life_event_create_life_event":"\u6dfb\u52a0\u751f\u6d3b\u4e8b\u4ef6","life_event_create_success":"\u751f\u6d3b\u4e8b\u4ef6\u6dfb\u52a0\u6210\u529f","life_event_date_it_happened":"\u53d1\u751f\u65e5\u671f","life_event_delete_description":"\u786e\u5b9e\u8981\u5220\u9664\u6b64\u751f\u6d3b\u4e8b\u4ef6\u5417\uff1f\u5220\u9664\u662f\u6c38\u4e45\u6027\u7684\u3002","life_event_delete_success":"\u4e8b\u4ef6\u5df2\u5220\u9664","life_event_delete_title":"\u5220\u9664\u751f\u6d3b\u4e8b\u4ef6","life_event_list_cta":"\u6dfb\u52a0\u751f\u6d3b\u4e8b\u4ef6","life_event_list_tab_life_events":"\u751f\u6d3b\u4e8b\u4ef6","life_event_list_tab_other":"\u4fbf\u7b7e\u3001\u63d0\u9192..","life_event_list_title":"\u751f\u6d3b\u4e8b\u4ef6","life_event_sentence_achievement_or_award":"\u83b7\u5f97\u6210\u5c31\u6216\u5956\u9879","life_event_sentence_anniversary":"\u5468\u5e74\u7eaa\u5ff5\u65e5","life_event_sentence_bought_a_home":"\u4e70\u4e86\u65b0\u623f\u5b50","life_event_sentence_broken_bone":"\u6298\u65ad\u4e86\u9aa8\u5934","life_event_sentence_changed_beliefs":"\u6539\u53d8\u4fe1\u4ef0","life_event_sentence_dentist":"\u53bb\u770b\u7259\u533b\u4e86","life_event_sentence_end_of_relationship":"\u7ed3\u675f\u4e86\u4e00\u6bb5\u5173\u7cfb","life_event_sentence_engagement":"\u8ba2\u5a5a\u4e86","life_event_sentence_expecting_a_baby":"\u60f3\u8981\u5b69\u5b50","life_event_sentence_first_kiss":"\u7b2c\u4e00\u6b21\u63a5\u543b","life_event_sentence_first_word":"\u7b2c\u4e00\u6b21\u53d1\u8a00","life_event_sentence_holidays":"\u53bb\u5ea6\u5047","life_event_sentence_home_improvement":"\u88c5\u4fee\u4e86","life_event_sentence_loss_of_a_loved_one":"\u5931\u53bb\u4e86\u5fc3\u7231\u7684\u4eba","life_event_sentence_marriage":"\u7ed3\u5a5a","life_event_sentence_military_service":"\u5f00\u59cb\u670d\u5f79","life_event_sentence_moved":"\u642c\u5bb6\u4e86","life_event_sentence_new_child":"\u6709\u4e2a\u5b69\u5b50","life_event_sentence_new_eating_habits":"\u5f00\u59cb\u65b0\u7684\u996e\u98df\u4e60\u60ef","life_event_sentence_new_family_member":"\u65b0\u589e\u4e86\u5bb6\u5ead\u6210\u5458","life_event_sentence_new_hobby":"\u6709\u4e86\u65b0\u7231\u597d","life_event_sentence_new_instrument":"\u5b66\u4f1a\u4e86\u65b0\u4e50\u5668","life_event_sentence_new_job":"\u5f00\u59cb\u4e86\u65b0\u7684\u5de5\u4f5c","life_event_sentence_new_language":"\u5b66\u4e86\u4e00\u95e8\u65b0\u7684\u8bed\u8a00","life_event_sentence_new_license":"\u83b7\u5f97\u9a7e\u7167","life_event_sentence_new_pet":"\u517b\u4e86\u5ba0\u7269","life_event_sentence_new_relationship":"\u5f00\u59cb\u4e00\u6bb5\u5173\u7cfb","life_event_sentence_new_roommate":"\u6709\u4e86\u65b0\u5ba4\u53cb","life_event_sentence_new_school":"\u5f00\u59cb\u4e0a\u5b66","life_event_sentence_new_sport":"\u5f00\u59cb\u8fd0\u52a8","life_event_sentence_new_vehicle":"\u4e70\u4e86\u8f86\u65b0\u8f66","life_event_sentence_overcame_an_illness":"\u71ac\u8fc7\u4e86\u75be\u75c5","life_event_sentence_published_book_or_paper":"\u53d1\u8868\u4e86\u4e00\u7bc7\u8bba\u6587","life_event_sentence_quit_a_habit":"\u6212\u6389\u4e00\u4e2a\u4e60\u60ef","life_event_sentence_removed_braces":"\u53bb\u6389\u4e86\u7259\u9f7f\u77eb\u6b63\u5668","life_event_sentence_retirement":"\u9000\u4f11","life_event_sentence_study_abroad":"\u51fa\u56fd\u7559\u5b66","life_event_sentence_surgery":"\u505a\u4e86\u624b\u672f","life_event_sentence_tattoo_or_piercing":"\u7eb9\u8eab\u4e86\u6216\u8005\u6253\u4e86\u8033\u6d1e","life_event_sentence_travel":"\u65c5\u6e38\u4e86","life_event_sentence_volunteer_work":"\u5f00\u59cb\u5fd7\u613f\u670d\u52a1","life_event_sentence_wear_glass_or_contact":"\u5f00\u59cb\u4f69\u6234\u73bb\u7483\u6216\u9690\u5f62\u773c\u955c","life_event_sentence_weight_loss":"\u51cf\u80a5\u4e86","list_link_to_active_contacts":"\u60a8\u6b63\u5728\u67e5\u770b\u5b58\u6863\u7684\u8054\u7cfb\u4eba\uff0c \u5355\u51fb\u8fd9\u91cc<\/a> \u6765\u67e5\u770b\u6d3b\u52a8\u7684\u8054\u7cfb\u4eba\u5217\u8868\u3002","list_link_to_archived_contacts":"\u5df2\u5b58\u6863\u8054\u7cfb\u4eba\u5217\u8868","me":"\u8fd9\u662f\u4f60","modal_call_comment":"\u4f60\u4eec\u8bf4\u4e86\u4ec0\u4e48\uff1f\uff08\u53ef\u9009\uff09","modal_call_emotion":"\u60a8\u60f3\u8bb0\u5f55\u60a8\u5728\u6b64\u901a\u8bdd\u4e2d\u7684\u611f\u53d7\u5417\uff1f(\u53ef\u9009)","modal_call_exact_date":"\u901a\u8bdd\u65e5\u671f","modal_call_title":"\u8bb0\u5f55\u901a\u8bdd","modal_call_who_called":"\u8c01\u6253\u6765\u7684\uff1f","notes_add_cta":"\u6dfb\u52a0\u6ce8\u91ca","notes_create_success":"\u4fbf\u7b7e\u5df2\u6210\u529f\u521b\u5efa","notes_delete_confirmation":"\u786e\u5b9e\u8981\u5220\u9664\u6b64\u4fbf\u7b7e\u5417\uff1f","notes_delete_success":"\u6ce8\u91ca\u5df2\u6210\u529f\u5220\u9664","notes_delete_title":"\u5220\u9664\u4fbf\u7b7e","notes_favorite":"\u6dfb\u52a0\/\u5220\u9664\u559c\u7231\u6807\u8bb0","notes_update_success":"\u4fbf\u7b3a\u5df2\u6210\u529f\u4fdd\u5b58","people_add_birthday_reminder":"\u795d :name \u751f\u65e5\u5feb\u4e50","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"\u6dfb\u52a0","people_add_firstname":"\u540d\u5b57","people_add_gender":"\u6027\u522b","people_add_import":"\u662f\u5426\u8981 \u5bfc\u5165\u60a8\u7684\u8054\u7cfb\u4eba<\/a>\uff1f","people_add_lastname":"\u59d3\uff08\u53ef\u9009\uff09","people_add_middlename":"\u4e2d\u95f4\u540d (\u53ef\u9009)","people_add_missing":"\u6ca1\u6709\u8054\u7cfb\u4eba\uff0c\u73b0\u5728\u6dfb\u52a0\u4e00\u4e2a","people_add_new":"\u6dfb\u52a0\u65b0\u7684\u8054\u7cfb\u4eba","people_add_nickname":"\u6635\u79f0\uff08\u53ef\u9009\uff09","people_add_reminder_for_birthday":"\u521b\u5efa\u4e00\u4e2a\u5e74\u5ea6\u751f\u65e5\u63d0\u9192\u4e8b\u9879","people_add_success":":name \u5df2\u6210\u529f\u521b\u5efa","people_add_title":"\u6dfb\u52a0\u4e00\u4f4d\u65b0\u7684\u8054\u7cfb\u4eba","people_delete_confirmation":"\u786e\u5b9e\u8981\u5220\u9664\u6b64\u8054\u7cfb\u4eba\u5417\uff1f\u5220\u9664\u662f\u6c38\u4e45\u6027\u7684\u3002","people_delete_message":"\u5220\u9664\u8054\u7cfb\u4eba","people_delete_success":"\u8054\u7cfb\u4eba\u5df2\u88ab\u5220\u9664","people_edit_email_error":"\u60a8\u7684\u8054\u7cfb\u4eba\u4e2d\u5df2\u7ecf\u6709\u4eba\u4f7f\u7528\u6b64\u7535\u5b50\u90ae\u4ef6\uff0c\u8bf7\u66f4\u6362\u4e00\u4e2a","people_export":"\u5bfc\u51fa\u4e3a vCard","people_list_account_upgrade_cta":"\u7acb\u5373\u5347\u7ea7","people_list_account_upgrade_title":"\u5347\u7ea7\u60a8\u7684\u5e10\u6237, \u4ee5\u6253\u5f00\u5168\u90e8\u529f\u80fd\u3002","people_list_account_usage":"\u60a8\u7684\u8d26\u6237\u5df2\u8054\u7cfb\u4eba\u4f7f\u7528\u60c5\u51b5\u662f\uff1a:current\/:limit ","people_list_blank_cta":"\u6dfb\u52a0\u67d0\u4eba","people_list_blank_title":"\u60a8\u8fd8\u6ca1\u6709\u4efb\u4f55\u8054\u7cfb\u4eba","people_list_clear_filter":"\u6e05\u9664\u7b5b\u9009","people_list_contacts_per_tags":":count \u4e2a\u8054\u7cfb\u4eba","people_list_filter_tag":"\u62e5\u6709\u4ee5\u4e0b\u6807\u7b7e\u7684\u8054\u7cfb\u4eba\uff1a","people_list_filter_untag":"\u6240\u6709\u672a\u52a0\u6807\u7b7e\u7684\u8054\u7cfb\u4eba","people_list_firstnameAZ":"\u4ee5\u540d\u5b57A \u2192 Z\u6392\u5e8f","people_list_firstnameZA":"\u4ee5\u540d\u5b57 Z \u2192 A\u6392\u5e8f","people_list_hide_dead":"\u9690\u85cf\u5df2\u6545\u4eba\u5458 (:count)","people_list_last_updated":"\u6700\u8fd1\u66f4\u65b0:","people_list_lastactivitydateNewtoOld":"\u4ee5\u6700\u540e\u6d3b\u52a8\u65e5\u671f\u4ece\u8fd1\u5230\u8fdc\u6392\u5e8f","people_list_lastactivitydateOldtoNew":"\u4ee5\u6700\u540e\u6d3b\u52a8\u65e5\u671f\u4ece\u8fdc\u5230\u8fd1\u6392\u5e8f","people_list_lastnameAZ":"\u4ee5\u59d3A \u2192 Z\u6392\u5e8f","people_list_lastnameZA":"\u4ee5\u59d3Z \u2192 A\u6392\u5e8f","people_list_number_kids":":count \u4e2a\u5b69\u5b50","people_list_number_reminders":":count \u4e2a\u63d0\u9192","people_list_show_dead":"\u663e\u793a\u5df2\u6545\u4eba\u5458 (:count)","people_list_sort":"\u6392\u5e8f","people_list_stats":":count \u4e2a\u8054\u7cfb\u4eba","people_list_untagged":"\u67e5\u770b\u672a\u52a0\u6807\u7b7e\u7684\u8054\u7cfb\u4eba","people_not_found":"\u8054\u7cfb\u4eba\u672a\u627e\u5230","people_save_and_add_another_cta":"\u63d0\u4ea4\u5e76\u6dfb\u52a0\u5176\u4ed6\u4eba","people_search":"\u641c\u7d22\u8054\u7cfb\u4eba...","people_search_all":"\u6240\u6709","people_search_next":"\u4e0b\u4e00\u9875","people_search_no_results":"\u672a\u627e\u5230\u4efb\u4f55\u7ed3\u679c","people_search_of":"\/","people_search_page":"\u9875","people_search_prev":"\u4e0a\u4e00\u9875","people_search_rows_per_page":"Rows per page","pets_bird":"\u9e1f","pets_cat":"\u732b","pets_create_success":"\u5df2\u6210\u529f\u6dfb\u52a0\u5ba0\u7269","pets_delete_success":"\u5ba0\u7269\u5df2\u88ab\u5220\u9664","pets_dog":"\u72d7","pets_fish":"\u9c7c","pets_hamster":"\u4ed3\u9f20","pets_horse":"\u9a6c","pets_kind":"\u5ba0\u7269\u79cd\u7c7b","pets_name":"\u540d\u5b57 (\u53ef\u9009)","pets_other":"\u5176\u5b83","pets_rabbit":"\u5154\u5b50","pets_rat":"\u9f20","pets_reptile":"\u722c\u884c\u52a8\u7269","pets_small_animal":"\u5c0f\u52a8\u7269","pets_title":"\u5ba0\u7269","pets_update_success":"\u5ba0\u7269\u5df2\u66f4\u65b0","photo_current_profile_pic":"\u76ee\u524d\u5934\u50cf","photo_delete":"\u5220\u9664\u7167\u7247","photo_list_blank_desc":"\u60a8\u53ef\u4ee5\u5b58\u50a8\u6709\u5173\u6b64\u8054\u7cfb\u4eba\u7684\u56fe\u50cf\u3002\u7acb\u5373\u4e0a\u4f20\u4e00\u4e2a!","photo_list_cta":"\u4e0a\u4f20\u7167\u7247","photo_list_title":"\u76f8\u5173\u7167\u7247","photo_make_profile_pic":"\u5236\u4f5c\u5934\u50cf","photo_next":"Next photo \u276f","photo_previous":"\u276e Previous photo","photo_title":"\u7167\u7247","photo_upload_zone_cta":"\u4e0a\u4f20\u7167\u7247","relationship_delete_confirmation":"\u60a8\u786e\u5b9a\u8981\u5c06\u5173\u7cfb\u5220\u9664\u5417\uff1f\u672c\u64cd\u4f5c\u65e0\u6cd5\u64a4\u9500\u3002","relationship_form_add":"\u6dfb\u52a0\u4e00\u4e2a\u65b0\u7684\u5173\u7cfb","relationship_form_add_choice":"\u8fd9\u662f\u4e0e\u8c01\u7684\u5173\u7cfb\uff1f","relationship_form_add_description":"\u8fd9\u4f1a\u8ba9\u4f60\u50cf\u5176\u4ed6\u8054\u7cfb\u4eba\u4e00\u6837\u5bf9\u5f85\u8fd9\u4e2a\u4eba\u3002","relationship_form_add_no_existing_contact":"\u60a8\u6682\u65f6\u6ca1\u6709\u80fd\u4e0e :name \u94fe\u63a5\u7684\u8054\u7cfb\u4eba","relationship_form_add_success":"\u5173\u7cfb\u8bbe\u7f6e\u5b8c\u6210","relationship_form_also_create_contact":"\u5c06\u6b64\u4eba\u521b\u5efa\u4e3a\u60a8\u7684\u8054\u7cfb\u4eba","relationship_form_associate_contact":"\u5bfc\u5165\u4e00\u4f4d\u5df2\u5b58\u5728\u7684\u8054\u7cfb\u4eba","relationship_form_associate_dropdown":"\u8bf7\u4ece\u4e0b\u62c9\u83dc\u5355\u9009\u62e9\u4e00\u4f4d\u8054\u7cfb\u4eba","relationship_form_associate_dropdown_placeholder":"\u641c\u7d22\u5e76\u9009\u62e9\u4e00\u4f4d\u73b0\u6709\u8054\u7cfb\u4eba","relationship_form_create_contact":"\u6dfb\u52a0\u4e00\u4e2a\u65b0\u7684\u4eba","relationship_form_deletion_success":"\u6b64\u5173\u7cfb\u5df2\u5220\u9664","relationship_form_edit":"\u4fee\u6539\u4e00\u4e2a\u5df2\u6709\u5173\u7cfb","relationship_form_is_with":"\u8fd9\u4e2a\u4eba\u662f...","relationship_form_is_with_name":":name \u662f...","relationship_unlink_confirmation":"\u60a8\u786e\u5b9a\u8981\u5c06\u5173\u7cfb\u5220\u9664\u5417\uff1f\u6b64\u64cd\u4f5c\u4e0d\u4f1a\u4ece\u60a8\u7684\u8054\u7cfb\u4eba\u5217\u8868\u5c06\u5176\u5220\u9664\u3002","reminder_frequency_day":"\u6bcf:number\u5929","reminder_frequency_month":" \u6bcf:number\u6708","reminder_frequency_one_time":"\u5728:date","reminder_frequency_week":" \u6bcf:number\u661f\u671f","reminder_frequency_year":"\u6bcf:number\u5e74","reminders_add_cta":"\u6dfb\u52a0\u63d0\u9192","reminders_add_description":"\u8bf7\u63d0\u9192\u6211...","reminders_add_error_custom_text":"\u60a8\u9700\u8981\u4e3a\u6b64\u63d0\u9192\u6307\u5b9a\u6587\u672c","reminders_add_next_time":"\u60a8\u5e0c\u671b\u4e0b\u4e00\u6b21\u5173\u4e8e\u8fd9\u4e2a\u7684\u63d0\u9192\u7684\u65f6\u95f4\u662f\uff1f","reminders_add_once":"\u4ec5\u4e00\u6b21","reminders_add_optional_comment":"\u53ef\u9009\u5907\u6ce8","reminders_add_recurrent":"\u6bcf","reminders_add_starting_from":"\u63d0\u9192\u6211","reminders_add_title":"\u4f60\u9700\u8981\u5173\u4e8e:name\u7684\u63d0\u9192\u5417\uff1f","reminders_birthday":":name\u7684\u751f\u65e5","reminders_blank_add_activity":"\u6dfb\u52a0\u63d0\u9192","reminders_blank_title":"\u60a8\u6709\u4ec0\u4e48\u5173\u4e8e:name\u7684\u63d0\u9192\u5417\uff1f","reminders_create_success":"\u5df2\u6210\u529f\u6dfb\u52a0\u63d0\u9192","reminders_cta":"\u6dfb\u52a0\u63d0\u9192","reminders_delete_confirmation":"\u786e\u5b9e\u8981\u5220\u9664\u6b64\u63d0\u9192\u5417\uff1f","reminders_delete_cta":"\u5220\u9664","reminders_delete_success":"\u5df2\u6210\u529f\u5220\u9664\u63d0\u9192","reminders_description":"\u6211\u4eec\u5c06\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u7684\u6bcf\u4e00\u4e2a\u63d0\u9192\u5982\u4e0b\u3002\u6bcf\u5929\u65e9\u4e0a\u90fd\u4f1a\u53d1\u51fa\u63d0\u9192,\u3002\u65e0\u6cd5\u5220\u9664\u81ea\u52a8\u4e3a\u751f\u65e5\u6dfb\u52a0\u7684\u63d0\u9192\u3002\u5982\u679c\u8981\u66f4\u6539\u8fd9\u4e9b\u65e5\u671f, \u8bf7\u7f16\u8f91\u8054\u7cfb\u4eba\u7684\u751f\u65e5\u3002","reminders_edit_update_cta":"\u66f4\u65b0\u63d0\u9192","reminders_free_plan_warning":"\u60a8\u5f53\u524d\u4f7f\u7528\u7684\u662f\u514d\u8d39\u7248\u3002\u82e5\u9700\u8981\u90ae\u4ef6\u63d0\u9192\uff0c\u8bf7\u5347\u7ea7\u60a8\u7684\u8d26\u6237\u3002","reminders_next_expected_date":"\u5728","reminders_one_time":"\u4e00\u6b21\u6027","reminders_type_month":"\u6708","reminders_type_week":"\u5468","reminders_type_year":"\u5e74","reminders_update_success":"\u5df2\u6210\u529f\u66f4\u65b0\u63d0\u9192","section_contact_information":"\u8054\u7cfb\u4eba\u4fe1\u606f","section_personal_activities":"\u6d3b\u52a8","section_personal_gifts":"\u793c\u7269","section_personal_notes":"\u4fbf\u7b7e","section_personal_reminders":"\u63d0\u9192","section_personal_tasks":"\u4efb\u52a1","set_favorite":"\u60a8\u6536\u85cf\u7684\u8054\u7cfb\u4eba\u5c06\u5728\u8054\u7cfb\u4eba\u5217\u8868\u7f6e\u9876\u663e\u793a\u3002","stay_in_touch":"\u5e38\u8054\u7cfb*","stay_in_touch_frequency":"\u5e38\u8054\u7cfb*\u63d0\u9192\u9891\u7387\uff1a\u6bcf\u5929|\u5e38\u8054\u7cfb*\u63d0\u9192\u9891\u7387\uff1a\u6bcf {count} \u5929","stay_in_touch_invalid":"\u9891\u7387\u5fc5\u987b\u5927\u4e8e0\u3002","stay_in_touch_modal_desc":"\u6211\u4eec\u5c06\u4f1a\u7528\u90ae\u4ef6\u63d0\u9192\u60a8\u4e0e{firstname}\u4fdd\u6301\u8054\u7cfb\u3002","stay_in_touch_modal_label":"\u6bcf {count} \u5929\u7ed9\u6211\u53d1\u9001\u90ae\u4ef6|\u6bcf {count} \u5929\u7ed9\u6211\u53d1\u9001\u90ae\u4ef6","stay_in_touch_modal_title":"\u5e38\u8054\u7cfb*","stay_in_touch_premium":"\u60a8\u9700\u8981\u5347\u7ea7\u5230\u9ad8\u7ea7\u8d26\u6237\u6765\u4f7f\u7528\u8fd9\u4e2a\u529f\u80fd\uff01","tag_add":"\u6dfb\u52a0\u6807\u7b7e","tag_add_search":"\u6dfb\u52a0\u6216\u641c\u7d22\u6807\u7b7e","tag_edit":"\u7f16\u8f91\u6807\u7b7e","tag_no_tags":"\u8fd8\u6ca1\u6709\u6807\u7b7e","tasks_add_task":"\u6dfb\u52a0\u4efb\u52a1","tasks_blank_title":"\u60a8\u6682\u65f6\u8fd8\u6ca1\u4efb\u52a1\u3002","tasks_complete_success":"\u6210\u529f\u53d8\u66f4\u4efb\u52a1\uff01","tasks_delete_success":"\u6210\u529f\u5220\u9664\u4efb\u52a1\uff01","tasks_form_description":"\u63cf\u8ff0 (\u53ef\u9009)","tasks_form_title":"\u6807\u9898","tasks_title":"\u4efb\u52a1","work_add_cta":"\u66f4\u65b0\u5de5\u4f5c\u4fe1\u606f","work_edit_company":"\u516c\u53f8 (\u53ef\u9009)","work_edit_job":"\u804c\u4f4d\u540d\u79f0 (\u53ef\u9009)","work_edit_success":"Work information updated","work_edit_title":"\u66f4\u65b0:name\u7684\u5de5\u4f5c\u4fe1\u606f","work_information":"\u5de5\u4f5c\u4fe1\u606f"},"reminder":{"type_birthday":"\u795d\u6b64\u4eba\u751f\u65e5\u5feb\u4e50","type_birthday_kid":"\u795d\u6b64\u4eba\u7684\u5b69\u5b50\u751f\u65e5\u5feb\u4e50","type_email":"Email","type_hangout":"\u4e0e\u6b64\u4eba\u7ea6\u4f1a","type_lunch":"\u4e0e\u6b64\u4eba\u5171\u8fdb\u5348\u9910","type_phone_call":"\u547c\u53eb"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"\u5c1d\u8bd5\u7981\u7528\u53cc\u91cd\u8eab\u4efd\u9a8c\u8bc1\u65f6\u51fa\u9519","2fa_disable_success":"\u53cc\u91cd\u8eab\u4efd\u8ba4\u8bc1\u5df2\u7981\u7528","2fa_disable_title":"\u5173\u95ed\u53cc\u91cd\u8eab\u4efd\u9a8c\u8bc1","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"\u5c1d\u8bd5\u6fc0\u6d3b\u53cc\u91cd\u8eab\u4efd\u9a8c\u8bc1\u65f6\u51fa\u9519","2fa_enable_error_already_set":"\u4e8c\u6b21\u9a8c\u8bc1\u5df2\u6fc0\u6d3b","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set up:","2fa_enable_success":"\u53cc\u91cd\u8ba4\u8bc1\u5df2\u6fc0\u6d3b","2fa_enable_title":"\u542f\u7528\u4e8c\u6b21\u9a8c\u8bc1","2fa_otp_title":"\u7528\u4e8e\u4e8c\u6b21\u9a8c\u8bc1\u7684App","2fa_title":"\u53cc\u91cd\u9a8c\u8bc1","api_authorized_clients":"\u6388\u6743\u5ba2\u6237\u7aef\u5217\u8868","api_authorized_clients_desc":"\u672c\u8282\u5217\u51fa\u4e86\u60a8\u6388\u6743\u8bbf\u95ee\u5e94\u7528\u7a0b\u5e8f\u7684\u6240\u6709\u5ba2\u6237\u7aef\uff0c\u60a8\u53ef\u4ee5\u968f\u65f6\u64a4\u9500\u6b64\u6388\u6743\u3002","api_authorized_clients_name":"\u540d\u79f0","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"\u4f5c\u7528\u57df","api_authorized_clients_title":"\u5df2\u6388\u6743\u7684\u5e94\u7528","api_description":"API \u53ef\u4ee5\u7528\u6765\u4ece\u5916\u90e8\u5e94\u7528\u7a0b\u5e8f\u64cd\u7eb5Monica\u7684\u6570\u636e, \u4f8b\u5982\u79fb\u52a8\u5e94\u7528\u7a0b\u5e8f\u3002","api_endpoint":"\u6b64 Monica \u5b9e\u4f8b\u7684 API \u7ec8\u7aef\u662f\uff1a","api_help":"\u8981\u4f7f\u7528 API\uff0c\u5fc5\u987b\u8981\u6709\u4e00\u4e2aToken\u3002 \u60a8\u53ef\u4ee5\u521b\u5efa\u4e2a\u4eba\u8bbf\u95ee Token\uff0c\u4e5f\u53ef\u4ee5\u6388\u6743OAuth \u5ba2\u6237\u7aef\u4e3a\u60a8\u521b\u5efa\u5b83\u3002 \u67e5\u770b API \u6587\u6863<\/a>\u83b7\u53d6\u8be6\u60c5","api_oauth_clientid":"\u5ba2\u6237\u7aef ID","api_oauth_clients":"\u60a8\u7684 Oauth \u5ba2\u6237\u7aef","api_oauth_clients_desc":"\u60a8\u53ef\u4ee5\u6ce8\u518c\u81ea\u5df1\u7684 OAuth \u5ba2\u6237\u7aef\u3002","api_oauth_clients_desc2":"\u4f7f\u7528\u6b64\u5ba2\u6237\u7aefID\u8bf7\u6c42\u4e00\u4e2a\u65b0\u7684Token\uff0c\u5e76\u5c06\u6388\u6743\u7801\u8f6c\u6362\u4e3aToken\u3002\u8bf7\u53c2\u9605 Laravel Passport\u6587\u6863<\/a> \u83b7\u53d6\u66f4\u591a\u4fe1\u606f\u3002","api_oauth_create":"\u521b\u5efa\u5ba2\u6237\u7aef","api_oauth_create_new":"\u521b\u5efa\u65b0\u7684\u5ba2\u6237\u7aef","api_oauth_edit":"\u7f16\u8f91\u5ba2\u6237\u7aef","api_oauth_name":"\u540d\u79f0","api_oauth_name_help":"\u5b89\u5168\u7801","api_oauth_not_created":"\u60a8\u5c1a\u672a\u521b\u5efaOauth\u5ba2\u6237\u7aef","api_oauth_redirecturl":"\u91cd\u5b9a\u5411URL","api_oauth_redirecturl_help":"\u5e94\u7528\u7a0b\u5e8f\u7684\u6388\u6743\u56de\u8c03 URL\u3002","api_oauth_secret":"\u5bc6\u94a5","api_oauth_title":"OAuth \u5ba2\u6237\u7aef","api_pao_description":"\u8bf7\u786e\u4fdd\u5c06\u6b64token\u6388\u4e88\u60a8\u4fe1\u4efb\u7684\u6e90-\u56e0\u4e3a\u5b83\u4eec\u5141\u8bb8\u60a8\u8bbf\u95ee\u6240\u6709\u6570\u636e\u3002","api_personal_access_tokens":"\u4e2a\u4eba\u8bbf\u95ee\u4ee4\u724c","api_title":"API \u8bbf\u95ee","api_token_create":"\u521b\u5efa\u5bc6\u94a5","api_token_create_new":"\u521b\u5efa\u5bc6\u94a5","api_token_delete":"\u5220\u9664","api_token_expire":"\u8fc7\u671f\u4e8e {date}","api_token_help":"\u8fd9\u662f\u60a8\u7684\u4e2a\u4eba\u8bbf\u95ee\u5bc6\u94a5\uff0c\u6211\u4eec\u53ea\u4f1a\u5c55\u793a\u4e00\u6b21\uff0c\u8bf7\u59a5\u5584\u4fdd\u7ba1\u3002\u60a8\u73b0\u5728\u53ef\u4ee5\u4f7f\u7528\u8fd9\u4e2a\u5bc6\u94a5\u8fdb\u884cAPI\u8bf7\u6c42","api_token_name":"Token \u540d\u79f0","api_token_not_created":"\u60a8\u6ca1\u6709\u5df2\u521b\u5efa\u7684\u8bbf\u95ee\u5bc6\u94a5","api_token_scopes":"\u4f5c\u7528\u57df","api_token_title":"\u4e2a\u4eba\u8bbf\u95ee Token","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"\u8d27\u5e01","dav_caldav_birthdays_export":"\u5728\u4e00\u4e2a\u6587\u4ef6\u4e2d\u5bfc\u51fa\u6240\u6709\u751f\u65e5","dav_caldav_tasks_export":"\u5bfc\u51fa\u4e00\u4e2a\u6587\u4ef6\u4e2d\u7684\u6240\u6709\u4efb\u52a1","dav_carddav_export":"\u5bfc\u51fa\u4e00\u4e2a\u6587\u4ef6\u4e2d\u7684\u6240\u6709\u8054\u7cfb\u4eba","dav_clipboard_copied":"\u503c\u5df2\u590d\u5236\u5230\u526a\u8d34\u677f","dav_connect_help":"\u60a8\u53ef\u4ee5\u5728\u624b\u673a\u6216\u8ba1\u7b97\u673a\u4e0a\u4f7f\u7528\u6b64\u57fa\u672c url \u8fde\u63a5\u60a8\u7684\u8054\u7cfb\u4eba\u548c\/\u6216\u65e5\u5386\u3002","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"\u590d\u5236\u5230\u60a8\u7684\u526a\u8d34\u677f","dav_description":"\u5728\u8fd9\u91cc, \u60a8\u53ef\u4ee5\u627e\u5230\u6240\u6709\u8bbe\u7f6e, \u4ee5\u4fbf\u4e3a Carddav \u548c CalDAV \u5bfc\u51fa\u4f7f\u7528 webdav \u8d44\u6e90\u3002","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"\u6240\u6709CardDAV\u548cCalDAV\u8d44\u6e90\u7684\u57fa\u672c url:","dav_url_caldav_birthdays":"\u7528\u4e8e\u751f\u65e5\u8d44\u6e90\u7684 caldav url:","dav_url_caldav_tasks":"\u7528\u4e8e\u4efb\u52a1\u8d44\u6e90\u7684 caldav url:","dav_url_carddav":"\u7528\u4e8e\u8054\u7cfb\u8d44\u6e90\u7684CardDAV","delete_cta":"\u5220\u9664\u5e10\u6237","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account\u2019s deletion.","delete_title":"\u5220\u9664\u60a8\u7684\u5e10\u6237","email":"\u7535\u5b50\u90ae\u4ef6\u5730\u5740","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"\u8f93\u5165\u7535\u5b50\u90ae\u7bb1","export_be_patient":"Click the button to start the export. It may take several minutes to process the export \u2013 please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions<\/a> to learn how to import this file into your instance.","export_title":"\u5bfc\u51fa\u5e10\u6237\u6570\u636e","export_title_sql":"Export data to SQL","firstname":"\u540d","import_blank_cta":"\u5bfc\u5165 vCard","import_blank_description":"\u6211\u4eec\u53ef\u4ee5\u4ece Google Contacts \u6216\u60a8\u7684Contact manager\u90a3\u91cc\u5bfc\u5165\u60a8\u7684 vCard \u6587\u4ef6\u3002","import_blank_question":"\u662f\u5426\u7acb\u5373\u5bfc\u5165\u8054\u7cfb\u4eba\uff1f","import_blank_title":"\u60a8\u6682\u65e0\u5bfc\u5165\u7684\u8054\u7cfb\u4eba\u3002","import_cta":"\u4e0a\u8f7d\u8054\u7cfb\u4eba","import_in_progress":"\u5bfc\u5165\u6b63\u5728\u8fdb\u884c\u4e2d\u3002\u5728\u4e00\u5206\u949f\u5185\u91cd\u65b0\u52a0\u8f7d\u9875\u9762\u3002","import_need_subscription":"\u60a8\u9700\u8981\u8ba2\u9605\u624d\u80fd\u5bfc\u5165\u8054\u7cfb\u4eba","import_report_date":"\u5bfc\u5165\u65e5\u671f","import_report_number_contacts":"\u6587\u4ef6\u4e2d\u7684\u8054\u7cfb\u4eba\u6570","import_report_number_contacts_imported":"\u5bfc\u5165\u7684\u8054\u7cfb\u4eba\u6570\u91cf","import_report_number_contacts_skipped":"\u8df3\u8fc7\u7684\u8054\u7cfb\u4eba\u6570","import_report_status_imported":"\u5bfc\u5165","import_report_status_skipped":"\u8df3\u8fc7","import_report_title":"\u5bfc\u5165\u62a5\u8868","import_report_type":"\u5bfc\u5165\u7c7b\u578b","import_result_stat":"\u4e0a\u4f20\u4e86\u5305\u542b :total_contacts \u4e2a\u8054\u7cfb\u4eba\u7684 vCard (:total_imported imported, :total_skipped skipped)","import_stat":"\u60a8\u76ee\u524d\u4e3a\u6b62\u5bfc\u5165\u4e86:number\u4e2a\u6587\u4ef6\u3002","import_title":"\u5728\u60a8\u7684\u5e10\u6237\u4e2d\u5bfc\u5165\u8054\u7cfb\u4eba","import_upload_behaviour":"\u5bfc\u5165\u504f\u597d:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"\u66ff\u6362\u73b0\u6709\u6761\u76ee","import_upload_form_file":"\u4f60\u7684 .vcf<\/code> \u6216 . vCard<\/code> \u6587\u4ef6:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can\u2019t undo the upload.","import_upload_rule_format":"\u6211\u4eec\u652f\u6301 vcard<\/code> \u548c vcf<\/code> \u6587\u4ef6\u3002","import_upload_rule_instructions":"Export instructions for macOS Contacts.app<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10\u2009MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS\u2019s Contacts.app and Google Contacts.","import_upload_rules_desc":"\u4f46\u662f, \u6211\u4eec\u6709\u4e00\u4e9b\u89c4\u5219:","import_upload_title":"\u4ece vCard \u6587\u4ef6\u5bfc\u5165\u8054\u7cfb\u4eba","import_vcard_contact_exist":"\u8054\u7cfb\u4eba\u5df2\u5b58\u5728","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"\u6587\u4ef6\u4e0d\u5305\u542b\u8054\u7cfb\u4eba","import_vcard_file_not_found":"\u6587\u4ef6\u4e0d\u5b58\u5728","import_vcard_parse_error":"\u5206\u6790 vcard \u9879\u65f6\u51fa\u9519","import_vcard_unknown_entry":"\u672a\u77e5\u7684\u8054\u7cfb\u4eba\u59d3\u540d","import_view_report":"\u67e5\u770b\u62a5\u544a","lastname":"\u59d3\u6c0f","layout":"\u5e03\u5c40","layout_big":"\u6d4f\u89c8\u5668\u7684\u5168\u5bbd\u5ea6","layout_small":"\u6700\u59271200\u50cf\u7d20\u5bbd","locale":"\u5e94\u7528\u7a0b\u5e8f\u4e2d\u4f7f\u7528\u7684\u8bed\u8a00","locale_ar":"\u963f\u62c9\u4f2f\u6587","locale_cs":"\u6377\u514b\u6587","locale_de":"\u5fb7\u6587","locale_en":"\u82f1\u6587","locale_en-GB":"\u82f1\u8bed (\u82f1\u56fd)","locale_es":"\u897f\u73ed\u7259\u6587","locale_fr":"\u6cd5\u6587","locale_he":"\u5e0c\u4f2f\u6765\u6587","locale_help":"\u60a8\u60f3\u8981\u5e2e\u52a9\u7ffb\u8bd1Monica\u6216\u6dfb\u52a0\u65b0\u8bed\u8a00\u5417\uff1f\u8bf7\u70b9\u51fb \u4e86\u89e3\u66f4\u591a\u4fe1\u606f<\/a>\u3002","locale_hr":"\u514b\u7f57\u5730\u4e9a\u6587","locale_it":"\u610f\u5927\u5229\u6587","locale_ja":"Japanese","locale_nl":"\u8377\u5170\u6587","locale_pt":"\u8461\u8404\u7259\u6587","locale_pt-BR":"\u8461\u8404\u7259\u8bed (\u5df4\u897f)","locale_ru":"\u4fc4\u6587","locale_sv":"Swedish","locale_tr":"\u571f\u8033\u5176\u6587","locale_zh":"\u7b80\u4f53\u4e2d\u6587","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"\u9009\u62e9\u81ea\u5df1","me_choose_placeholder":"\u9009\u62e9\u81ea\u5df1","me_help":"\u8fd9\u4e2a\u8054\u7cfb\u4eba\u5728Monica\u4ee3\u8868\u4e86 \u4f60<\/em>","me_no_contact":"\u6ca1\u6709\u9009\u62e9\u8054\u7cfb\u4eba","me_remove_contact":"\u5220\u9664\u5173\u8054","me_select":"\u9009\u62e9\u8054\u7cfb\u4eba","me_select_click":"\u5355\u51fb\u6b64\u5904\u9009\u62e9\u4e00\u4f4d\u8054\u7cfb\u4eba","me_title":"Me as a contact","name":"\u60a8\u7684\u59d3\u540d: :name","name_order":"\u540d\u79f0\u987a\u5e8f","name_order_firstname_lastname":" \u2013 John Doe","name_order_firstname_lastname_nickname":" () \u2013 John Doe (Rambo)","name_order_firstname_nickname_lastname":" () \u2013 John (Rambo) Doe","name_order_lastname_firstname":" \u2013 Doe John","name_order_lastname_firstname_nickname":" () \u2013 Doe John (Rambo)","name_order_lastname_nickname_firstname":" () \u2013 Doe (Rambo) John","name_order_nickname":" \u2013 Rambo","name_order_nickname_firstname_lastname":" ( ) \u2013 Rambo (Doe John)","password_btn":"\u66f4\u6539\u5bc6\u7801","password_change":"Change your password","password_current":"\u5f53\u524d\u5bc6\u7801","password_current_placeholder":"\u8f93\u5165\u5f53\u524d\u5bc6\u7801","password_new1":"\u65b0\u5bc6\u7801","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"\u8fd9\u662f\u4e00\u4e2a\u9ad8\u7ea7\u529f\u80fd\uff0c\u9700\u8981\u4ed8\u8d39\u8ba2\u9605\u624d\u80fd\u6fc0\u6d3b\u3002\u901a\u8fc7\u8bbf\u95ee \u8bbe\u7f6e > \u8ba2\u9605<\/a> \u6765\u5347\u7ea7\u60a8\u7684\u5e10\u6237\u3002","personalisation_paid_upgrade_vue":"\u8fd9\u662f\u4e00\u4e2a\u9ad8\u7ea7\u529f\u80fd\uff0c\u9700\u8981\u4ed8\u8d39\u8ba2\u9605\u624d\u80fd\u6fc0\u6d3b\u3002\u901a\u8fc7\u8bbf\u95ee \u8bbe\u7f6e > \u8ba2\u9605<\/a> \u6765\u5347\u7ea7\u60a8\u7684\u5e10\u6237\u3002","personalization_activity_type_add_button":"\u589e\u52a0\u4e00\u4e2a\u6d3b\u52a8","personalization_activity_type_category_add":"\u589e\u52a0\u4e00\u4e2a\u6d3b\u52a8\u5206\u7c7b","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"\u589e\u52a0\u6d3b\u52a8\u5206\u7c7b","personalization_activity_type_category_modal_delete":"\u5220\u9664\u6d3b\u52a8\u5206\u7c7b","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"\u6211\u4eec\u65e0\u6cd5\u627e\u5230\u8fd9\u4e2a\u6d3b\u52a8\u5206\u7c7b","personalization_activity_type_category_modal_edit":"\u7f16\u8f91\u6d3b\u52a8\u5206\u7c7b","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"\u884c\u52a8","personalization_activity_type_category_table_name":"\u540d\u79f0","personalization_activity_type_category_title":"\u6d3b\u52a8\u5206\u7c7b","personalization_activity_type_modal_add":"\u589e\u52a0\u4e00\u4e2a\u6d3b\u52a8","personalization_activity_type_modal_delete":"\u5220\u9664\u6d3b\u52a8","personalization_activity_type_modal_delete_desc":"\u60a8\u771f\u7684\u8981\u5220\u9664\u8fd9\u4e2a\u6d3b\u52a8\u5417\uff1f","personalization_activity_type_modal_delete_error":"\u6211\u4eec\u65e0\u6cd5\u627e\u5230\u8fd9\u4e2a\u6d3b\u52a8","personalization_activity_type_modal_edit":"\u7f16\u8f91\u6d3b\u52a8","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"\u6dfb\u52a0\u65b0\u5b57\u6bb5\u7c7b\u578b","personalization_contact_field_type_add_success":"\u5df2\u6210\u529f\u6dfb\u52a0\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u3002","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u5df2\u6210\u529f\u66f4\u65b0\u3002","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"\u5220\u9664\u73b0\u6709\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b","personalization_contact_field_type_modal_edit_title":"\u7f16\u8f91\u73b0\u6709\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b","personalization_contact_field_type_modal_icon":"\u56fe\u6807 (\u53ef\u9009)","personalization_contact_field_type_modal_icon_help":"\u60a8\u53ef\u4ee5\u5c06\u56fe\u6807\u4e0e\u6b64\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u5173\u8054\u3002\u60a8\u9700\u8981\u6dfb\u52a0\u5bf9Font Awesome\u56fe\u6807\u7684\u5f15\u7528\u3002","personalization_contact_field_type_modal_name":"\u540d\u79f0","personalization_contact_field_type_modal_protocol":"\u534f\u8bae (\u53ef\u9009)","personalization_contact_field_type_modal_protocol_help":"\u6bcf\u4e2a\u65b0\u7684\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u90fd\u53ef\u4ee5\u9009\u5b9a\u3002\u5982\u679c\u8bbe\u7f6e\u4e86\u534f\u8bae, \u6211\u4eec\u5c06\u4f7f\u7528\u5b83\u6765\u89e6\u53d1\u8bbe\u7f6e\u7684\u64cd\u4f5c\u3002","personalization_contact_field_type_modal_title":"\u6dfb\u52a0\u65b0\u7684\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b","personalization_contact_field_type_table_actions":"\u884c\u52a8","personalization_contact_field_type_table_name":"\u540d\u79f0","personalization_contact_field_type_table_protocol":"\u534f\u8bae","personalization_contact_field_type_title":"\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b","personalization_genders_add":"\u6dfb\u52a0\u65b0\u7684\u6027\u522b\u7c7b\u578b","personalization_genders_default":"\u9ed8\u8ba4\u6027\u522b","personalization_genders_desc":"\u4f60\u53ef\u4ee5\u6839\u636e\u9700\u8981\u5b9a\u4e49\u5c3d\u53ef\u80fd\u591a\u7684\u6027\u522b\u3002\u60a8\u7684\u5e10\u6237\u4e2d\u81f3\u5c11\u9700\u8981\u4e00\u79cd\u6027\u522b\u7c7b\u578b\u3002","personalization_genders_f":"\u5973\u6027","personalization_genders_list_contact_number":"{count} \u4e2a\u8054\u7cfb\u4eba|{count} \u4e2a\u8054\u7cfb\u4eba","personalization_genders_m":"\u7537\u6027","personalization_genders_make_default":"\u66f4\u6539\u9ed8\u8ba4\u6027\u522b","personalization_genders_modal_add":"\u6dfb\u52a0\u6027\u522b\u7c7b\u578b","personalization_genders_modal_default":"\u9009\u62e9\u65b0\u8054\u7cfb\u4eba\u7684\u9ed8\u8ba4\u6027\u522b","personalization_genders_modal_delete":"\u5220\u9664\u6027\u522b\u7c7b\u578b","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender \u201c{name}\u201d?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"\u66f4\u65b0\u6027\u522b\u7c7b\u578b","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"\u540d\u79f0","personalization_genders_modal_name_help":"\u5728\u8054\u7cfb\u4eba\u9875\u9762\u663e\u793a\u6027\u522b\u7684\u540d\u79f0","personalization_genders_modal_sex":"\u6027\u522b","personalization_genders_modal_sex_help":"\u5728\u5bfc\u5165\/\u5bfc\u51fa VCard \u65f6\u7528\u4e8e\u5b9a\u4e49\u5173\u7cfb","personalization_genders_n":"\u65e0\u6216\u4e0d\u9002\u7528","personalization_genders_o":"\u5176\u4ed6","personalization_genders_select_default":"\u9009\u62e9\u9ed8\u8ba4\u6027\u522b","personalization_genders_table_default":"\u9ed8\u8ba4","personalization_genders_table_name":"\u540d\u79f0","personalization_genders_table_sex":"\u6027\u522b","personalization_genders_title":"\u6027\u522b\u7c7b\u578b","personalization_genders_u":"\u672a\u77e5","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"\u5bb6\u5ead\u4e0e\u604b\u7231","personalization_life_event_category_health_wellness":"\u5065\u5eb7\u4e0e\u996e\u98df","personalization_life_event_category_home_living":"\u5bb6\u4e0e\u751f\u6d3b","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"\u65c5\u884c\u4e0e\u7ecf\u5386","personalization_life_event_category_work_education":"\u5de5\u4f5c\u4e0e\u6559\u80b2","personalization_life_event_type_achievement_or_award":"\u6210\u5c31\u6216\u5956\u9879","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"\u5468\u5e74\u7eaa\u5ff5\u65e5","personalization_life_event_type_bought_a_home":"\u4e70\u4e86\u65b0\u623f\u5b50","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"\u6539\u53d8\u4fe1\u4ef0","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"\u7ed3\u675f\u4e86\u4e00\u6bb5\u5173\u7cfb","personalization_life_event_type_engagement":"\u8ba2\u5a5a","personalization_life_event_type_expecting_a_baby":"\u60f3\u8981\u5b69\u5b50","personalization_life_event_type_first_kiss":"\u521d\u543b","personalization_life_event_type_first_met":"\u7b2c\u4e00\u6b21\u89c1\u9762","personalization_life_event_type_first_word":"\u7b2c\u4e00\u6b21\u53d1\u8a00","personalization_life_event_type_holidays":"\u5047\u65e5","personalization_life_event_type_home_improvement":"\u88c5\u4fee","personalization_life_event_type_loss_of_a_loved_one":"\u5931\u53bb\u5fc3\u7231\u7684\u4eba","personalization_life_event_type_marriage":"\u5a5a\u59fb","personalization_life_event_type_military_service":"\u5175\u5f79","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can\u2019t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"\u642c\u5bb6\u4e86","personalization_life_event_type_new_child":"\u65b0\u7684\u5b69\u5b50","personalization_life_event_type_new_eating_habits":"\u65b0\u7684\u996e\u98df\u4e60\u60ef","personalization_life_event_type_new_family_member":"\u65b0\u7684\u5bb6\u5ead\u6210\u5458","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"\u65b0\u5de5\u4f5c","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"\u65b0\u9a7e\u7167","personalization_life_event_type_new_pet":"\u65b0\u5ba0\u7269","personalization_life_event_type_new_relationship":"\u65b0\u5173\u7cfb","personalization_life_event_type_new_roommate":"\u65b0\u5ba4\u53cb","personalization_life_event_type_new_school":"\u65b0\u5b66\u6821","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"\u65b0\u8f66","personalization_life_event_type_overcame_an_illness":"\u71ac\u8fc7\u4e86\u75be\u75c5","personalization_life_event_type_published_book_or_paper":"\u51fa\u7248\u4e00\u672c\u4e66\u6216\u4e00\u7bc7\u8bba\u6587","personalization_life_event_type_quit_a_habit":"\u6212\u6389\u4e00\u4e2a\u4e60\u60ef","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"\u9000\u4f11","personalization_life_event_type_study_abroad":"\u7559\u5b66","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"\u7eb9\u8eab\u6216\u8033\u6d1e","personalization_life_event_type_travel":"\u65c5\u884c","personalization_life_event_type_volunteer_work":"\u5fd7\u613f\u8005\u5de5\u4f5c","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"\u51cf\u80a5","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica\u2019s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"\u66f4\u6539\u5df2\u88ab\u4fdd\u5b58","personalization_module_title":"\u529f\u80fd","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"\u63d0\u524d {count} \u5929|\u63d0\u524d {count} \u5929","personalization_reminder_rule_save":"\u66f4\u6539\u5df2\u4fdd\u5b58","personalization_reminder_rule_title":"\u63d0\u9192\u89c4\u5219","personalization_tab_title":"\u4e2a\u6027\u5316\u60a8\u7684\u5e10\u6237","personalization_title":"Here you will find different settings to configure your account. These features are intended for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"\u590d\u5236\u5230\u60a8\u7684\u526a\u8d34\u677f","recovery_generate":"Generate new codes\u2026","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"\u60a8\u53ef\u4ee5\u4f7f\u7528\u6bcf\u4e2a\u6062\u590d\u4ee3\u7801\u4e00\u6b21\u3002","recovery_help_intro":"\u4ee5\u4e0b\u662f\u60a8\u7684\u6062\u590d\u4ee3\u7801:","recovery_show":"\u83b7\u53d6\u6062\u590d\u4ee3\u7801","recovery_title":"\u6062\u590d\u4ee3\u7801","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}<\/span>.","reset_cta":"\u91cd\u7f6e\u5e10\u6237","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"\u5220\u9664\u60a8\u7684\u5e10\u6237","save":"\u66f4\u65b0\u504f\u597d","security_help":"\u66f4\u6539\u60a8\u7684\u5e10\u6237\u7684\u5b89\u5168\u9009\u9879\u3002","security_title":"\u5b89\u5168","settings_success":"\u504f\u597d\u8bbe\u7f6e\u5df2\u66f4\u65b0","sidebar_personalization":"\u4e2a\u6027\u5316","sidebar_settings":"\u5e10\u6237\u8bbe\u7f6e","sidebar_settings_api":"API","sidebar_settings_auditlogs":"\u8ffd\u8e2a\u65e5\u5fd7","sidebar_settings_dav":"Dav \u8d44\u6e90","sidebar_settings_export":"\u5bfc\u51fa\u6570\u636e","sidebar_settings_import":"\u5bfc\u5165\u6570\u636e","sidebar_settings_security":"\u5b89\u5168","sidebar_settings_storage":"\u5b58\u50a8\u7a7a\u95f4","sidebar_settings_subscriptions":"\u8ba2\u9605","sidebar_settings_tags":"Tag management","sidebar_settings_users":"\u7528\u6237","storage_account_info":"Your account limit is :accountLimit\u2009MB. Your current usage is :currentAccountSize\u2009MB (about :percentUsage%).","storage_description":"\u5728\u8fd9\u91cc, \u60a8\u53ef\u4ee5\u770b\u5230\u4e0a\u4f20\u7684\u6709\u5173\u60a8\u7684\u8054\u7cfb\u4eba\u7684\u6240\u6709\u6587\u6863\u548c\u7167\u7247\u3002","storage_title":"\u5b58\u50a8\u7a7a\u95f4","storage_upgrade_notice":"\u5347\u7ea7\u60a8\u7684\u5e10\u6237, \u4ee5\u4fbf\u4e0a\u4f20\u6587\u6863\u548c\u7167\u7247\u3002","stripe_error_api_connection":"\u4e0eStripe\u7684\u901a\u4fe1\u5931\u8d25\uff0c\u8bf7\u7a0d\u5019\u91cd\u8bd5\u3002","stripe_error_authentication":"Stripe\u6388\u6743\u5931\u8d25","stripe_error_card":"\u60a8\u7684\u5361\u88ab\u62d2\uff0c\u539f\u56e0\u662f\uff1a:message","stripe_error_invalid_request":"\u65e0\u6548\u7684\u53c2\u6570\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\u3002","stripe_error_rate_limit":"\u4e0eStripe\u7684\u901a\u4fe1\u6b21\u6570\u8fc7\u591a\uff0c\u8bf7\u7a0d\u5019\u518d\u8bd5\u3002","subscriptions_account_cancel":"\u60a8\u53ef\u4ee5\u968f\u65f6 \u53d6\u6d88\u8ba2\u9605<\/a>\u3002","subscriptions_account_confirm_payment":"\u4ea4\u6613\u5c1a\u672a\u5b8c\u6210\uff0c\u8bf7\u60a8\u6309\u6b64\u786e\u8ba4\u60a8\u7684\u4ed8\u6b3e<\/a>","subscriptions_account_current_paid_plan":"\u60a8\u5f53\u524d\u7684\u8ba2\u9605\u662f\uff1a:name\uff0c\u611f\u8c22\u60a8\u7684\u8ba2\u9605\u3002","subscriptions_account_current_plan":"\u60a8\u5f53\u524d\u7684\u8ba2\u9605","subscriptions_account_free_plan":"\u60a8\u6b63\u5728\u4f7f\u7528\u514d\u8d39\u7248","subscriptions_account_free_plan_benefits_import_data_vcard":"\u4ece vCard \u6587\u4ef6\u5bfc\u5165\u8054\u7cfb\u4eba","subscriptions_account_free_plan_benefits_reminders":"\u7535\u5b50\u90ae\u4ef6\u63d0\u9192","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"\u4e0d\u9650\u6570\u91cf\u7684\u7528\u6237","subscriptions_account_free_plan_upgrade":"\u60a8\u53ef\u4ee5\u5c06\u60a8\u7684\u5e10\u6237\u5347\u7ea7\u4e3a:name, \u5b83\u7684\u6210\u672c\u4e3a\u6bcf\u6708$:price\u3002\u60a8\u5c06\u4eab\u6709\u4ee5\u4e0b\u7279\u6743:","subscriptions_account_invoices":"\u53d1\u7968","subscriptions_account_invoices_download":"\u4e0b\u8f7d","subscriptions_account_invoices_subscription":"\u8ba2\u9605\u5468\u671f\uff1a:startDate \u81f3 :endDate","subscriptions_account_next_billing":"\u60a8\u7684\u8ba2\u9605\u5c06\u5728 :date<\/strong> \u81ea\u52a8\u7eed\u8d39","subscriptions_account_payment":"\u54ea\u4e2a\u4ed8\u8d39\u5468\u671f\u6700\u9002\u5408\u60a8\uff1f","subscriptions_account_upgrade":"\u66f4\u65b0\u60a8\u7684\u8d26\u6237","subscriptions_account_upgrade_choice":"\u5728\u4e0b\u65b9\u9009\u62e9\u4e00\u4e2a\u8ba2\u9605\uff08\u5df2\u6709 :customers \u8ba2\u9605\u4e86\u9ad8\u7ea7\u7248\uff09","subscriptions_account_upgrade_title":"\u7acb\u5373\u5347\u7ea7\u60a8\u7684Monica\u8d26\u6237\u5427\uff01","subscriptions_back":"\u8fd4\u56de\u8bbe\u7f6e","subscriptions_downgrade_cta":"\u964d\u7ea7","subscriptions_downgrade_limitations":"\u514d\u8d39\u7248\u7684\u529f\u80fd\u6709\u9650\u5236\u3002\u5982\u679c\u60a8\u9700\u8981\u964d\u7ea7\uff0c\u8bf7\u60a8\u786e\u4fdd\u5b8c\u6210\u4ee5\u4e0b\u68c0\u67e5\uff1a","subscriptions_downgrade_rule_contacts":"\u60a8\u4e0d\u80fd\u8d85\u8fc7 :number \u7684\u6d3b\u8dc3\u8054\u7cfb\u4eba","subscriptions_downgrade_rule_contacts_constraint":"\u5f53\u524d\u6709 :count \u4f4d\u8054\u7cfb\u4eba<\/a>\u3002","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a>.|You currently have :count pending invitations<\/a>.","subscriptions_downgrade_rule_users":"\u60a8\u7684\u5e10\u6237\u4e2d\u5fc5\u987b\u53ea\u67091\u4e2a\u7528\u6237","subscriptions_downgrade_rule_users_constraint":"\u60a8\u7684\u5e10\u6237\u4e2d\u5f53\u524d\u6709 :count \u4e2a\u7528\u6237<\/a>\u3002","subscriptions_downgrade_success":"\u60a8\u5df2\u964d\u7ea7\u5230\u514d\u8d39\u7248\uff01","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time \u2013 so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"\u5c06\u60a8\u7684\u5e10\u6237\u964d\u7ea7\u4e3a\u514d\u8d39\u7248","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself \u2013 no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"\u5982\u679c\u6211\u6539\u53d8\u4e3b\u610f\u600e\u4e48\u529e\uff1f","subscriptions_help_discounts_desc":"\u5f53\u7136\uff01Monica\u514d\u8d39\u4e3a\u5b66\u751f\uff0c\u975e\u76c8\u5229\u673a\u6784\u63d0\u4f9b\u670d\u52a1\u3002\u60a8\u53ea\u9700\u8981\u63d0\u4ea4\u4e00\u4e0b\u6750\u6599\u7ed9\u6211\u4eec\u7684 \u652f\u6301\u4eba\u5458<\/a>\u3002","subscriptions_help_discounts_title":"\u4f60\u4eec\u5bf9\u975e\u76c8\u5229\u673a\u6784\u548c\u5b66\u751f\u6709\u4f18\u60e0\u5417\uff1f","subscriptions_help_limits_plan":"\u662f\u7684\u3002\u514d\u8d39\u7248\u60a8\u80fd\u62e5\u6709:number\u4f4d\u8054\u7cfb\u4eba\u3002","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn\u2019t do it without you.","subscriptions_help_opensource_title":"\u4ec0\u4e48\u662f\u5f00\u6e90\u9879\u76ee\uff1f","subscriptions_help_title":"\u60a8\u53ef\u80fd\u8fd8\u5173\u5fc3","subscriptions_payment_cancelled":"\u60a8\u7684\u4ed8\u6b3e\u5df2\u88ab\u53d6\u6d88\u3002","subscriptions_payment_cancelled_title":"\u4ed8\u6b3e\u5df2\u53d6\u6d88","subscriptions_payment_confirm_information":"\u9700\u8981\u989d\u5916\u4fe1\u606f\u6765\u5904\u7406\u60a8\u7684\u4ed8\u6b3e\uff0c\u8bf7\u60a8\u8865\u5145\u4e0b\u5217\u4ed8\u6b3e\u4fe1\u606f\u3002","subscriptions_payment_confirm_title":"\u786e\u8ba4\u60a8\u7684 :amount \u4ed8\u6b3e","subscriptions_payment_error_name":"\u8bf7\u63d0\u4f9b\u60a8\u7684\u59d3\u540d","subscriptions_payment_succeeded":"\u6b64\u4ea4\u6613\u5df2\u7ecf\u5b8c\u6210\u3002","subscriptions_payment_succeeded_title":"\u652f\u4ed8\u6210\u529f","subscriptions_payment_success":"\u60a8\u7684\u4ed8\u6b3e\u5df2\u6210\u529f","subscriptions_pdf_title":"\u60a8\u7684:name\u6bcf\u6708\u8ba2\u9605","subscriptions_plan_choose":"\u9009\u62e9\u6b64\u8ba1\u5212","subscriptions_plan_include1":"\u60a8\u5c06\u4eab\u6709\u4ee5\u4e0b\u7279\u6743\uff1a","subscriptions_plan_include2":"\u65e0\u9650\u6dfb\u52a0\u8054\u7cfb\u4eba\u00b7\u65e0\u9650\u7684\u7528\u6237\u6570\u91cf\u00b7\u7535\u5b50\u90ae\u4ef6\u63d0\u9192\u00b7\u5bfc\u5165 vCard \u00b7\u4e2a\u6027\u5316\u7684\u8054\u7cfb\u4eba\u4fe1\u606f","subscriptions_plan_include3":"\u6536\u5165\u7684100% \u7528\u4e8e\u6b64\u9879\u76ee\u7684\u5f00\u53d1\u3002","subscriptions_plan_month_bonus":"\u968f\u65f6\u53d6\u6d88","subscriptions_plan_month_cost":"$5 \u7f8e\u5143\/\u6708","subscriptions_plan_month_title":"\u6309\u6708\u652f\u4ed8","subscriptions_plan_year_bonus":"\u4e00\u6574\u5e74\u7684\u5b89\u5fc3","subscriptions_plan_year_cost":"$45 \u7f8e\u5143\/\u5e74","subscriptions_plan_year_cost_save":"\u60a8\u53ef\u4ee5\u8282\u7701 25%","subscriptions_plan_year_title":"\u6309\u5e74\u5ea6\u652f\u4ed8","subscriptions_upgrade_charge":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"\u652f\u4ed8\u670d\u52a1\u7531\u7b2c\u4e09\u65b9\u652f\u4ed8\u5e73\u53f0 Stripe<\/a> \u63d0\u4f9b\uff0c\u6211\u4eec\u65e0\u6cd5\u63a5\u89e6\u5230\u60a8\u7684\u4e2a\u4eba\u4fe1\u606f\u3002","subscriptions_upgrade_choose":"\u60a8\u9009\u62e9\u4e86:plan","subscriptions_upgrade_credit":"\u4fe1\u7528\u5361\u6216\u501f\u8bb0\u5361","subscriptions_upgrade_infos":"\u8bf7\u5728\u4e0b\u65b9\u8f93\u5165\u60a8\u7684\u4ed8\u6b3e\u4fe1\u606f\uff1a","subscriptions_upgrade_name":"\u6301\u5361\u4eba\u59d3\u540d","subscriptions_upgrade_submit":"\u652f\u4ed8{amount}","subscriptions_upgrade_success":"\u611f\u8c22\u60a8\u7684\u8ba2\u9605\uff01","subscriptions_upgrade_thanks":"\u6b22\u8fce\u6765\u5230\u8ba9\u4e16\u754c\u53d8\u5f97\u66f4\u7f8e\u597d\u7684\u793e\u533a\u3002","subscriptions_upgrade_title":"\u5347\u7ea7\u60a8\u7684\u5e10\u6237","subscriptions_upgrade_zip":"\u90ae\u653f\u7f16\u7801","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"\u6807\u7b7e\u662f\u5bf9\u60a8\u7684\u8054\u7cfb\u4eba\u8fdb\u884c\u5206\u7c7b\u7684\u4e00\u79cd\u5f88\u597d\u7684\u65b9\u5f0f\u3002","tags_list_contact_number":":count \u4e2a\u8054\u7cfb\u4eba","tags_list_delete_confirmation":"\u786e\u5b9e\u8981\u5220\u9664\u8be5\u6807\u7b7e\u5417\uff1f\u4e0d\u4f1a\u5220\u9664\u4efb\u4f55\u8054\u7cfb\u4eba, \u53ea\u6709\u6807\u7b7e\u3002","tags_list_delete_success":"\u6807\u7b7e\u5df2\u6210\u529f\u5220\u9664","tags_list_description":"\u60a8\u53ef\u4ee5\u901a\u8fc7\u8bbe\u7f6e\u6765\u6807\u8bb0\u8054\u7cfb\u4eba\u3002\u6807\u8bb0\u7684\u5de5\u4f5c\u65b9\u5f0f\u7c7b\u4f3c\u4e8e\u6587\u4ef6\u5939, \u4f46\u53ef\u4ee5\u5411\u8054\u7cfb\u4eba\u6dfb\u52a0\u591a\u4e2a\u6807\u8bb0\u3002\u82e5\u8981\u6dfb\u52a0\u65b0\u6807\u8bb0, \u8bf7\u5728\u8054\u7cfb\u4eba\u4e2d\u6dfb\u52a0\u5373\u53ef\u3002","tags_list_title":"\u6807\u7b7e","temperature_scale":"\u6e29\u5ea6\u5355\u4f4d","temperature_scale_celsius":"\u6444\u6c0f\u5ea6","temperature_scale_fahrenheit":"\u534e\u6c0f\u5ea6","timezone":"\u65f6\u533a","title_general":"\u57fa\u672c\u4fe1\u606f","title_i18n":"\u672c\u5730\u5316","title_layout":"\u5e03\u5c40","users_accept_title":"\u63a5\u53d7\u9080\u8bf7\u5e76\u65b0\u5efa\u4e00\u4e2a\u8d26\u53f7","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u9080\u8bf7\u7528\u6237","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"\u8f93\u5165\u60a8\u8981\u9080\u8bf7\u7684\u4eba\u7684\u7535\u5b50\u90ae\u4ef6","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"\u4f60\u60f3\u9080\u8bf7\u522b\u4eba\u5417\uff1f","users_blank_cta":"\u9080\u8bf7\u4ed6\u4eba\u52a0\u5165","users_blank_description":"\u6b64\u4eba\u5c06\u5177\u6709\u60a8\u62e5\u6709\u7684\u76f8\u540c\u8bbf\u95ee\u6743\u9650, \u5e76\u4e14\u53ef\u4ee5\u6dfb\u52a0\u3001\u7f16\u8f91\u6216\u5220\u9664\u8054\u7cfb\u4eba\u4fe1\u606f\u3002","users_blank_title":"\u60a8\u662f\u552f\u4e00\u53ef\u4ee5\u8bbf\u95ee\u6b64\u5e10\u6237\u7684\u4eba\u3002","users_error_already_invited":"\u60a8\u5df2\u7ecf\u9080\u8bf7\u4e86\u6b64\u7528\u6237\u3002\u8bf7\u9009\u62e9\u5176\u4ed6\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u3002","users_error_email_already_taken":"\u8fd9\u4e2a\u7535\u5b50\u90ae\u4ef6\u5df2\u7ecf\u5b58\u5728\uff0c\u8bf7\u53e6\u9009\u4e00\u4e2a\uff01","users_error_email_not_similar":"\u8fd9\u4e0d\u662f\u9080\u8bf7\u4eba\u7684\u7535\u5b50\u90ae\u4ef6\u3002","users_error_please_confirm":"\u8bf7\u60a8\u5148\u786e\u8ba4\u60a8\u8981\u9080\u8bf7\u6b64\u7528\u6237","users_invitation_deleted_confirmation_message":"\u5df2\u6210\u529f\u5220\u9664\u9080\u8bf7","users_invitation_need_subscription":"\u60a8\u9700\u8981\u5347\u7ea7\u8d26\u6237\u624d\u80fd\u6dfb\u52a0\u66f4\u591a\u7528\u6237","users_invitations_delete_confirmation":"\u786e\u5b9e\u8981\u5220\u9664\u6b64\u9080\u8bf7\u5417\uff1f","users_list_add_user":"\u9080\u8bf7\u65b0\u7528\u6237","users_list_delete_confirmation":"\u662f\u5426\u786e\u5b9e\u8981\u4ece\u60a8\u7684\u5e10\u6237\u4e2d\u5220\u9664\u6b64\u7528\u6237\uff1f","users_list_invitations_explanation":"\u5df2\u9080\u8bf7","users_list_invitations_invited_by":"\u88ab:name\u9080\u8bf7","users_list_invitations_sent_date":"\u5728:date\u53d1\u9001","users_list_invitations_title":"\u5f85\u5904\u7406\u7684\u9080\u8bf7","users_list_title":"\u53ef\u4ee5\u8bbf\u95ee\u60a8\u7684\u5e10\u6237\u7684\u7528\u6237","users_list_you":"\u8fd9\u662f\u4f60","webauthn_buttonAdvise":"\u5982\u679c\u60a8\u7684\u5b89\u5168\u94a5\u5319\u6709\u6309\u94ae\uff0c\u8bf7\u6309\u4e0b\u5b83\u3002","webauthn_delete_confirmation":"\u786e\u5b9e\u8981\u5220\u9664\u8fd9\u4e2a\u94a5\u5319\u5417?","webauthn_delete_success":"\u94a5\u5319\u5df2\u5220\u9664","webauthn_enable_description":"\u6dfb\u52a0\u4e00\u4e2a\u5b89\u5168\u94a5\u5319","webauthn_error_already_used":"\u8fd9\u4e2a\u94a5\u5319\u5df2\u7ecf\u6ce8\u518c\uff0c\u60a8\u65e0\u9700\u5728\u6ce8\u518c\u4e00\u6b21\u3002","webauthn_error_not_allowed":"\u64cd\u4f5c\u8d85\u65f6\u6216\u4e0d\u5141\u8bb8\u3002","webauthn_insertKey":"\u63d2\u5165\u60a8\u7684\u5b89\u5168\u94a5\u5319","webauthn_key_name":"\u94a5\u5319\u540d\u79f0:","webauthn_key_name_help":"\u7ed9\u4f60\u7684\u94a5\u5319\u8d77\u4e2a\u540d\u5b57","webauthn_last_use":"\u6700\u540e\u4f7f\u7528: {timestamp}","webauthn_noButtonAdvise":"\u5982\u679c\u6ca1\u6709, \u8bf7\u5c06\u5176\u62d4\u51fa\u5e76\u518d\u6b21\u63d2\u5165\u3002","webauthn_not_secured":"WebAuthn\u53ea\u652f\u6301SSL\u8fde\u63a5\uff0c\u8bf7\u4f7f\u7528https\u6253\u5f00\u8fd9\u4e2a\u9875\u9762","webauthn_not_supported":"\u60a8\u7684\u6e38\u89c8\u5668\u5e76\u4e0d\u652f\u6301WebAuthn","webauthn_success":"\u60a8\u7684\u94a5\u5319\u5df2\u88ab\u68c0\u6d4b\u5230\u5e76\u9a8c\u8bc1\u5b8c\u6bd5\u3002","webauthn_title":"\u5b89\u5168\u94a5\u5319 - WebAuthn"},"validation":{"accepted":"\u60a8\u5fc5\u987b\u540c\u610f :attribute\u3002","active_url":":attribute \u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684URL\u7f51\u5740","after":":attribute \u5fc5\u987b\u662f\u4e00\u4e2a\u5728 :date \u4e4b\u540e\u7684\u65e5\u671f\u3002","after_or_equal":":attribute \u5fc5\u987b\u662f\u4e00\u4e2a\u5728 :date \u6216\u4e4b\u540e\u7684\u65e5\u671f\u3002","alpha":":attribute \u53ea\u80fd\u5305\u542b\u5b57\u6bcd\u3002","alpha_dash":":attribute \u53ea\u80fd\u7531\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u77ed\u5212\u7ebf(-)\u548c\u4e0b\u5212\u7ebf(_)\u7ec4\u6210\u3002","alpha_num":":attribute \u53ea\u5141\u8bb8\u5305\u542b\u5b57\u6bcd\u548c\u6570\u5b57","array":":attribute \u5fc5\u987b\u662f\u4e2a\u6570\u7ec4\u3002","attributes":[],"before":":attribute \u5fc5\u987b\u5728 :date \u4e4b\u524d","before_or_equal":":attribute \u5fc5\u987b\u5728 :date \u6216\u4e4b\u524d","between":{"array":":attribute \u5fc5\u987b\u5728 :min \u5230 :max \u4e2a\u6570\u76ee\u4e4b\u95f4","file":":attribute \u5fc5\u987b\u5728 :min \u5343\u5b57\u8282\u5230 :max \u5343\u5b57\u8282\u4e4b\u95f4\u3002","numeric":":attribute \u5fc5\u987b\u5728 :min \u548c :max \u4e4b\u95f4\u3002","string":":attribute \u5fc5\u987b\u5728 :min \u5230 :max \u5b57\u7b26\u4e4b\u95f4"},"boolean":":attribute \u5b57\u6bb5\u5fc5\u987b\u4e3a true \u6216 false\u3002","confirmed":":attribute \u4e0e\u786e\u8ba4\u9879\u76ee\u4e0d\u5339\u914d","custom":{"attribute-name":{"rule-name":"\u81ea\u5b9a\u4e49\u6d88\u606f"}},"date":":attribute \u4e0d\u662f\u4e2a\u6709\u6548\u65e5\u671f","date_equals":":attribute \u5fc5\u987b\u8981\u7b49\u4e8e :date\u3002","date_format":":attribute \u4e0d\u7b26\u5408 :format \u7684\u683c\u5f0f","different":":attribute \u548c :other \u4e0d\u80fd\u76f8\u540c\u3002","digits":":attribute \u5fc5\u987b\u662f :digits \u6570\u5b57","digits_between":":attribute \u5fc5\u987b\u662f :min - :max \u4f4d\u6570\u5b57\u3002","dimensions":":attribute \u7684\u56fe\u7247\u65e0\u6548","distinct":"\uff1a\u5c5e\u6027\u5b57\u6bb5\u5177\u6709\u91cd\u590d\u503c\u3002","email":":attribute \u5fc5\u987b\u662f\u4e00\u4e2a\u6709\u6548\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u3002","ends_with":":attribute \u5fc5\u987b\u4ee5 :values \u4e3a\u7ed3\u5c3e\u3002","exists":"\u9009\u62e9\u7684 :attribute \u65e0\u6548","file":":attribute \u5fc5\u987b\u662f\u4e2a\u6587\u4ef6","filled":":attribute \u5b57\u6bb5\u5fc5\u987b\u6709\u4e00\u4e2a\u503c","gt":{"array":":attribute \u5fc5\u987b\u591a\u4e8e :value \u4e2a\u5143\u7d20\u3002","file":":attribute \u5fc5\u987b\u5927\u4e8e :value KB\u3002","numeric":":attribute \u5fc5\u987b\u5927\u4e8e :value\u3002","string":":attribute \u5fc5\u987b\u591a\u4e8e :value \u4e2a\u5b57\u7b26\u3002"},"gte":{"array":":attribute \u5fc5\u987b\u591a\u4e8e\u6216\u7b49\u4e8e :value \u4e2a\u5143\u7d20\u3002","file":":attribute \u5fc5\u987b\u5927\u4e8e\u6216\u7b49\u4e8e :value KB\u3002","numeric":":attribute \u5fc5\u987b\u5927\u4e8e\u6216\u7b49\u4e8e :value\u3002","string":":attribute \u5fc5\u987b\u591a\u4e8e\u6216\u7b49\u4e8e :value \u4e2a\u5b57\u7b26\u3002"},"image":":attribute \u5fc5\u987b\u662f\u56fe\u7247\u3002","in":"\u9009\u62e9\u7684 :attribute \u65e0\u6548","in_array":":attribute \u4e0d\u5728 :other \u4e2d\u3002","integer":":attribute \u5fc5\u987b\u662f\u6574\u6570","ip":":attribute \u5fc5\u987b\u662f\u4e00\u4e2a\u6709\u6548\u7684 IP \u5730\u5740","ipv4":":attribute \u5fc5\u987b\u662f\u4e00\u4e2a\u6709\u6548\u7684 IPv4 \u5730\u5740","ipv6":":attribute \u5fc5\u987b\u662f\u4e00\u4e2a\u6709\u6548\u7684 IPv6 \u5730\u5740","json":"\uff1a\u5c5e\u6027\u5fc5\u987b\u662f\u6709\u6548\u7684JSON\u5b57\u7b26\u4e32\u3002","lt":{"array":":attribute \u5fc5\u987b\u5c11\u4e8e :value \u4e2a\u5143\u7d20\u3002","file":":attribute \u5fc5\u987b\u5c0f\u4e8e :value KB\u3002","numeric":":attribute \u5fc5\u987b\u5c0f\u4e8e :value\u3002","string":":attribute \u5fc5\u987b\u5c11\u4e8e :value \u4e2a\u5b57\u7b26\u3002"},"lte":{"array":":attribute \u5fc5\u987b\u5c11\u4e8e\u6216\u7b49\u4e8e :value \u4e2a\u5143\u7d20\u3002","file":":attribute \u5fc5\u987b\u5c0f\u4e8e\u6216\u7b49\u4e8e :value KB\u3002","numeric":":attribute \u5fc5\u987b\u5c0f\u4e8e\u6216\u7b49\u4e8e :value\u3002","string":":attribute \u5fc5\u987b\u5c11\u4e8e\u6216\u7b49\u4e8e :value \u4e2a\u5b57\u7b26\u3002"},"max":{"array":":attribute \u7684\u6570\u91cf\u4e0d\u80fd\u8d85\u8fc7 :max \u4e2a\u3002","file":":attribute \u4e0d\u5927\u4e8e :max kb","numeric":":attribute \u4e0d\u5927\u4e8e :max","string":":attribute \u4e0d\u5927\u4e8e :max \u5b57\u7b26"},"mimes":":attribute \u6587\u4ef6\u7c7b\u578b\u5fc5\u987b\u662f :values\u3002","mimetypes":":attribute \u6587\u4ef6\u7c7b\u578b\u5fc5\u987b\u662f :values\u3002","min":{"array":":attribute \u81f3\u5c11\u4e3a :min \u4e2a","file":":attribute \u6700\u5c0f\u662f :min \u5343\u5b57\u8282","numeric":":attribute \u6700\u5c11\u662f :min","string":":attribute \u6700\u5c11\u4e3a :min\u4e2a\u5b57\u7b26"},"not_in":"\u9009\u62e9\u7684 :attribute \u65e0\u6548","not_regex":":attribute \u683c\u5f0f\u65e0\u6548","numeric":":attribute \u5fc5\u987b\u662f\u6570\u5b57\u3002","password":"\u5bc6\u7801\u9519\u8bef","present":":attribute \u4e3a\u5fc5\u586b\u9879\u3002","regex":":attribute \u683c\u5f0f\u4e0d\u5bf9","required":":attribute \u5b57\u6bb5\u5fc5\u586b","required_if":":attribute \u5b57\u6bb5\u5728 :other \u662f :value \u65f6\u662f\u5fc5\u987b\u7684","required_unless":":attribute \u662f\u5fc5\u987b\u7684\u9664\u975e :other \u5728 :values \u4e2d\u3002","required_with":"\u5f53 :values \u4e0d\u5b58\u5728\u65f6\uff0c :attribute \u662f\u5fc5\u9700\u7684","required_with_all":"\u5f53 :values \u5b58\u5728\u65f6 :attribute \u4e0d\u80fd\u4e3a\u7a7a\u3002","required_without":"\u5f53 :values \u4e0d\u5b58\u5728\u65f6\uff0c :attribute \u662f\u5fc5\u586b\u7684\u3002","required_without_all":"\u5f53\u6ca1\u6709\u4efb\u4f55 :values \u5b58\u5728\u65f6\uff0c :attribute \u5b57\u6bb5\u4e3a\u5fc5\u586b\u9879\u3002","same":":attribute \u548c :other \u5fc5\u9700\u5339\u914d","size":{"array":":attribute \u5fc5\u987b\u5305\u542b :size \u4e2a\u9879\u3002","file":":attribute \u5fc5\u9700\u662f :size kb","numeric":":attribute \u5fc5\u9700\u662f :size","string":":attribute \u5fc5\u987b\u5305\u542b :size \u4e2a\u5b57\u7b26\u3002"},"starts_with":":attribute \u5fc5\u987b\u4ee5 :values \u4e3a\u5f00\u5934\u3002","string":":attribute \u5fc5\u987b\u662f\u4e00\u4e2a\u5b57\u7b26\u4e32\u3002","timezone":":attribute \u5fc5\u987b\u662f\u4e2a\u6709\u6548\u7684\u533a\u57df\u3002","unique":":attribute \u5df2\u7ecf\u88ab\u5360\u7528","uploaded":":attribute\u4e0a\u4f20\u5931\u8d25.","url":":attribute \u683c\u5f0f\u4e0d\u5bf9","uuid":":attribute \u5fc5\u987b\u662f\u6709\u6548\u7684 UUID\u3002","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}} diff --git a/public/js/manifest.js b/public/js/manifest.js deleted file mode 100644 index 54c134aee5a..00000000000 --- a/public/js/manifest.js +++ /dev/null @@ -1 +0,0 @@ -(()=>{"use strict";var e,r={},t={};function o(e){var n=t[e];if(void 0!==n)return n.exports;var l=t[e]={id:e,loaded:!1,exports:{}};return r[e].call(l.exports,l,l.exports,o),l.loaded=!0,l.exports}o.m=r,e=[],o.O=(r,t,n,l)=>{if(!t){var i=1/0;for(d=0;d=l)&&Object.keys(o.O).every((e=>o.O[e](t[u])))?t.splice(u--,1):(a=!1,l0&&e[d-1][2]>l;d--)e[d]=e[d-1];e[d]=[t,n,l]},o.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return o.d(r,{a:r}),r},o.d=(e,r)=>{for(var t in r)o.o(r,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e={929:0,829:0,893:0,475:0};o.O.j=r=>0===e[r];var r=(r,t)=>{var n,l,[i,a,u]=t,d=0;for(n in a)o.o(a,n)&&(o.m[n]=a[n]);if(u)var f=u(o);for(r&&r(t);d{window._=a(6486);try{window.Popper=a(8981).default,window.$=window.jQuery=a(9755),a(6801),a(9331),a(3863),a(9872),a(7424),a(8471)}catch(e){}window.axios=a(9669),window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest"},6880:(e,t,a)=>{"use strict";a.d(t,{Z:()=>u});var i=a(9669),o=a.n(i),n=a(7152),s=a(381),r=a.n(s);const _=JSON.parse('{"app":{"add":"Add","another_day":"another day","application_description":"Monica is a tool to manage your interactions with your loved ones, friends, and family.","application_og_title":"Have better relations with your loved ones. Free online CRM for friends and family.","application_title":"Monica – personal relationship manager","back":"Back","breadcrumb_add_note":"Add a note","breadcrumb_add_significant_other":"Add significant other","breadcrumb_api":"API","breadcrumb_archived_contacts":"Archived contacts","breadcrumb_dashboard":"Dashboard","breadcrumb_dav":"DAV Resources","breadcrumb_edit_introductions":"How did you meet","breadcrumb_edit_note":"Edit a note","breadcrumb_edit_significant_other":"Edit significant other","breadcrumb_journal":"Journal","breadcrumb_list_contacts":"List of people","breadcrumb_profile":"Profile of :name","breadcrumb_settings":"Settings","breadcrumb_settings_export":"Export","breadcrumb_settings_import":"Import","breadcrumb_settings_import_report":"Import report","breadcrumb_settings_import_upload":"Upload","breadcrumb_settings_personalization":"Personalization","breadcrumb_settings_security":"Security","breadcrumb_settings_security_2fa":"Two Factor Authentication","breadcrumb_settings_subscriptions":"Subscription","breadcrumb_settings_tags":"Tags","breadcrumb_settings_users":"Users","breadcrumb_settings_users_add":"Add a user","cancel":"Cancel","close":"Close","compliance_desc":"We have changed our Terms of Use and Privacy Policy. By law we have to ask you to review them and accept them so you can continue to use your account.","compliance_desc_end":"We don’t do anything nasty with your data or your account and we never will.","compliance_terms":"Accept new terms and privacy policy","compliance_title":"Sorry for the interruption.","confirm":"Confirm","contact_list_avatar":"Avatar","contact_list_description":"Description","contact_list_name":"Contact","copy":"Copy","create":"Create","date":"Date","dav_birthdays":"Birthdays","dav_birthdays_description":":name’s contact’s birthdays","dav_contacts":"Contacts","dav_contacts_description":":name’s contacts","dav_tasks":"Tasks","dav_tasks_description":":name’s tasks","default_save_success":"The data has been saved.","delete":"Delete","delete_confirm":"Are you sure?","done":"Done","download":"Download","edit":"Edit","emotion_adoration":"Adoration","emotion_affection":"Affection","emotion_aggravation":"Aggravation","emotion_agitation":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Amusement","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Arousal","emotion_astonishment":"Astonishment","emotion_attraction":"Attraction","emotion_bitterness":"Bitterness","emotion_bliss":"Bliss","emotion_caring":"Caring","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Compassion","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desire","emotion_despair":"Despair","emotion_disappointment":"Disappointment","emotion_disgust":"Disgust","emotion_dislike":"Dislike","emotion_dismay":"Dismay","emotion_displeasure":"Displeasure","emotion_distress":"Distress","emotion_dread":"Dread","emotion_eagerness":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Embarrassment","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Envy","emotion_euphoria":"Euphoria","emotion_exasperation":"Exasperation","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Fear","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","emotion_gloom":"Gloom","emotion_glumness":"Glumness","emotion_grief":"Grief","emotion_grouchiness":"Grouchiness","emotion_grumpiness":"Grumpiness","emotion_guilt":"Guilt","emotion_happiness":"Happiness","emotion_hate":"Hate","emotion_homesickness":"Homesickness","emotion_hope":"Hope","emotion_hopelessness":"Hopelessness","emotion_horror":"Horror","emotion_hostility":"Hostility","emotion_humiliation":"Humiliation","emotion_hurt":"Hurt","emotion_hysteria":"Hysteria","emotion_infatuation":"Infatuation","emotion_insecurity":"Insecurity","emotion_insult":"Insult","emotion_irritation":"Irritation","emotion_isolation":"Isolation","emotion_jealousy":"Jealousy","emotion_jolliness":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Joy","emotion_jubilation":"Jubilation","emotion_liking":"Liking","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Longing","emotion_love":"Love","emotion_lust":"Lust","emotion_melancholy":"Melancholy","emotion_misery":"Misery","emotion_mortification":"Mortification","emotion_neglect":"Neglect","emotion_nervousness":"Nervousness","emotion_optimism":"Optimism","emotion_outrage":"Outrage","emotion_panic":"Panic","emotion_passion":"Passion","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","emotion_primary_anger":"Anger","emotion_primary_fear":"Fear","emotion_primary_joy":"Joy","emotion_primary_love":"Love","emotion_primary_sadness":"Sadness","emotion_primary_surprise":"Surprise","emotion_rage":"Rage","emotion_rapture":"Rapture","emotion_regret":"Regret","emotion_rejection":"Rejection","emotion_relief":"Relief","emotion_remorse":"Remorse","emotion_resentment":"Resentment","emotion_revulsion":"Revulsion","emotion_sadness":"Sadness","emotion_satisfaction":"Satisfaction","emotion_scorn":"Scorn","emotion_secondary_affection":"Affection","emotion_secondary_cheerfulness":"Cheerfulness","emotion_secondary_contentment":"Contentment","emotion_secondary_disappointment":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envy","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","emotion_secondary_longing":"Longing","emotion_secondary_lust":"Lust","emotion_secondary_neglect":"Neglect","emotion_secondary_nervousness":"Nervousness","emotion_secondary_optimism":"Optimism","emotion_secondary_pride":"Pride","emotion_secondary_rage":"Rage","emotion_secondary_relief":"Relief","emotion_secondary_sadness":"Sadness","emotion_secondary_shame":"Shame","emotion_secondary_suffering":"Suffering","emotion_secondary_surprise":"Surprise","emotion_secondary_sympathy":"Sympathy","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","emotion_shock":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Tenderness","emotion_tenseness":"Tenseness","emotion_terror":"Terror","emotion_thrill":"Thrill","emotion_uneasiness":"Uneasiness","emotion_unhappiness":"Unhappiness","emotion_vengefulness":"Vengefulness","emotion_woe":"Woe","emotion_worry":"Worry","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"We’ll be right back.","error_id":"Error ID: :id","error_maintenance":"Maintenance in progress. We’ll be right back.","error_no_term":"There is no policy for this instance yet.","error_save":"We had an error trying to save the data.","error_title":"Whoops! Something went wrong.","error_try_again":"Something went wrong. Please try again.","error_twitter":"Follow our Twitter account to be alerted when it’s up again.","error_unauthorized":"You don’t have the right to edit this resource.","error_unavailable":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"One file selected…|{count} files selected…","filter":"Filter the list","footer_modal_version_release_away":"You are 1 release behind the latest version available. You should update your instance.|You are :number releases behind the latest version available. You should update your instance.","footer_modal_version_whats_new":"What’s new","footer_new_version":"A new version of Monica is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Comments?","footer_send_email":"Send us an email","footer_source_code":"Contribute","footer_version":"Version: :version","gender_female":"Woman","gender_male":"Man","gender_no_gender":"No gender","gender_none":"Rather not say","go_back":"Go back","header_changelog_link":"Product changes","header_logout_link":"Logout","header_settings_link":"Settings","load_more":"Load more","loading":"Loading…","main_nav_activities":"Activities","main_nav_cta":"Add people","main_nav_dashboard":"Dashboard","main_nav_family":"Contacts","main_nav_journal":"Journal","main_nav_tasks":"Tasks","markdown_description":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","markdown_link":"Read documentation","new":"new","no":"No","percent_uploaded":"{percent}% uploaded","relationship_type_bestfriend":"best friend","relationship_type_bestfriend_female":"best friend","relationship_type_bestfriend_female_with_name":":name’s best friend","relationship_type_bestfriend_with_name":":name’s best friend","relationship_type_boss":"boss","relationship_type_boss_female":"boss","relationship_type_boss_female_with_name":":name’s boss","relationship_type_boss_with_name":":name’s boss","relationship_type_child":"son","relationship_type_child_female":"daughter","relationship_type_child_female_with_name":":name’s daughter","relationship_type_child_with_name":":name’s son","relationship_type_colleague":"colleague","relationship_type_colleague_female":"colleague","relationship_type_colleague_female_with_name":":name’s colleague","relationship_type_colleague_with_name":":name’s colleague","relationship_type_cousin":"cousin","relationship_type_cousin_female":"cousin","relationship_type_cousin_female_with_name":":name’s cousin","relationship_type_cousin_with_name":":name’s cousin","relationship_type_date":"date","relationship_type_date_female":"date","relationship_type_date_female_with_name":":name’s date","relationship_type_date_with_name":":name’s date","relationship_type_ex":"ex-boyfriend","relationship_type_ex_female":"ex-girlfriend","relationship_type_ex_female_with_name":":name’s ex-girlfriend","relationship_type_ex_husband":"ex-husband","relationship_type_ex_husband_female":"ex-wife","relationship_type_ex_husband_female_with_name":":name’s ex-wife","relationship_type_ex_husband_with_name":":name’s ex-husband","relationship_type_ex_with_name":":name’s ex-boyfriend","relationship_type_friend":"friend","relationship_type_friend_female":"friend","relationship_type_friend_female_with_name":":name’s friend","relationship_type_friend_with_name":":name’s friend","relationship_type_godfather":"godfather","relationship_type_godfather_female":"godmother","relationship_type_godfather_female_with_name":":name’s godmother","relationship_type_godfather_with_name":":name’s godfather","relationship_type_godson":"godson","relationship_type_godson_female":"goddaughter","relationship_type_godson_female_with_name":":name’s goddaughter","relationship_type_godson_with_name":":name’s godson","relationship_type_grandchild":"grand child","relationship_type_grandchild_female":"grand child","relationship_type_grandchild_female_with_name":":name’s grand child","relationship_type_grandchild_with_name":":name’s grand child","relationship_type_grandparent":"grand parent","relationship_type_grandparent_female":"grand parent","relationship_type_grandparent_female_with_name":":name’s grand parent","relationship_type_grandparent_with_name":":name’s grand parent","relationship_type_group_family":"Family relationships","relationship_type_group_friend":"Friend relationships","relationship_type_group_love":"Love relationships","relationship_type_group_other":"Other kind of relationships","relationship_type_group_work":"Work relationships","relationship_type_inlovewith":"in love with","relationship_type_inlovewith_female":"in love with","relationship_type_inlovewith_female_with_name":"someone :name is in love with","relationship_type_inlovewith_with_name":"someone :name is in love with","relationship_type_lovedby":"loved by","relationship_type_lovedby_female":"loved by","relationship_type_lovedby_female_with_name":":name’s secret lover","relationship_type_lovedby_with_name":":name’s secret lover","relationship_type_lover":"lover","relationship_type_lover_female":"lover","relationship_type_lover_female_with_name":":name’s lover","relationship_type_lover_with_name":":name’s lover","relationship_type_mentor":"mentor","relationship_type_mentor_female":"mentor","relationship_type_mentor_female_with_name":":name’s mentor","relationship_type_mentor_with_name":":name’s mentor","relationship_type_nephew":"nephew","relationship_type_nephew_female":"niece","relationship_type_nephew_female_with_name":":name’s niece","relationship_type_nephew_with_name":":name’s nephew","relationship_type_parent":"father","relationship_type_parent_female":"mother","relationship_type_parent_female_with_name":":name’s mother","relationship_type_parent_with_name":":name’s father","relationship_type_partner":"significant other","relationship_type_partner_female":"significant other","relationship_type_partner_female_with_name":":name’s significant other","relationship_type_partner_with_name":":name’s significant other","relationship_type_protege":"protege","relationship_type_protege_female":"protege","relationship_type_protege_female_with_name":":name’s protege","relationship_type_protege_with_name":":name’s protege","relationship_type_sibling":"brother","relationship_type_sibling_female":"sister","relationship_type_sibling_female_with_name":":name’s sister","relationship_type_sibling_with_name":":name’s brother","relationship_type_spouse":"spouse","relationship_type_spouse_female":"spouse","relationship_type_spouse_female_with_name":":name’s spouse","relationship_type_spouse_with_name":":name’s spouse","relationship_type_stepchild":"stepson","relationship_type_stepchild_female":"stepdaughter","relationship_type_stepchild_female_with_name":":name’s stepdaughter","relationship_type_stepchild_with_name":":name’s stepson","relationship_type_stepparent":"stepfather","relationship_type_stepparent_female":"stepmother","relationship_type_stepparent_female_with_name":":name’s stepmother","relationship_type_stepparent_with_name":":name’s stepfather","relationship_type_subordinate":"subordinate","relationship_type_subordinate_female":"subordinate","relationship_type_subordinate_female_with_name":":name’s subordinate","relationship_type_subordinate_with_name":":name’s subordinate","relationship_type_uncle":"uncle","relationship_type_uncle_female":"aunt","relationship_type_uncle_female_with_name":":name’s aunt","relationship_type_uncle_with_name":":name’s uncle","remove":"Remove","retry":"Retry","revoke":"Revoke","save":"Save","save_close":"Save and close","today":"today","type":"Type","unknown":"I don’t know","update":"Update","upgrade":"Upgrade to unlock","upload":"Upload","verify":"Verify","weather_clear-day":"Clear day","weather_clear-night":"Clear night","weather_cloudy":"Cloudy","weather_current_temperature_celsius":":temperature °C","weather_current_temperature_fahrenheit":":temperature °F","weather_current_title":"Current weather","weather_fog":"Fog","weather_partly-cloudy-day":"Partly cloudy day","weather_partly-cloudy-night":"Partly cloudy night","weather_rain":"Rain","weather_sleet":"Sleet","weather_snow":"Snow","weather_wind":"Wind","with":"with","yes":"Yes","yesterday":"yesterday","zoom":"Zoom"},"auth":{"2fa_one_time_password":"Two factor authentication code","2fa_otp_help":"Open up your two factor authentication mobile app and copy the code","2fa_recuperation_code":"Enter a two factor recovery code","2fa_title":"Two Factor Authentication","2fa_wrong_validation":"The two factor authentication has failed.","back_homepage":"Back to homepage","button_remember":"Remember Me","change_language":"Change language to :lang","change_language_title":"Change language:","confirmation_again":"If you want to change your email address you can click here.","confirmation_check":"Before proceeding, please check your email for a verification link.","confirmation_fresh":"A fresh verification link has been sent to your email address.","confirmation_request_another":"If you did not receive the email click here to request another.","confirmation_title":"Verify Your Email Address","create_account":"Create the first account by signing up","email":"Email","email_change_current_email":"Current email address:","email_change_new":"New email address","email_change_title":"Change your email address","email_changed":"Your email address has been changed. Check your mailbox to validate it.","failed":"These credentials do not match our records.","login":"Login","login_again":"Please login again to your account","login_to_account":"Login to your account","login_with_recovery":"Login with a recovery code","mfa_auth_otp":"Authenticate with your two factor device","mfa_auth_webauthn":"Authenticate with a security key (WebAuthn)","not_authorized":"You are not authorized to execute this action","password":"Password","password_forget":"Forget your password?","password_reset":"Reset your password","password_reset_action":"Reset Password","password_reset_email":"E-Mail Address","password_reset_email_content":"Click here to reset your password:","password_reset_password":"Password","password_reset_password_confirm":"Confirm Password","password_reset_send_link":"Send Password Reset Link","password_reset_title":"Reset Password","recovery":"Recovery code","register_action":"Register","register_create_account":"You need to create an account to use Monica","register_email":"Enter a valid email address","register_email_example":"you@home","register_firstname":"First name","register_firstname_example":"eg. John","register_invitation_email":"For security purposes, please indicate the email of the person who’ve invited you to join this account. This information is provided in the invitation email.","register_lastname":"Last name","register_lastname_example":"eg. Doe","register_login":"Log in if you already have an account.","register_password":"Password","register_password_confirmation":"Password confirmation","register_password_example":"Enter a secure password","register_policy":"Signing up signifies you’ve read and agree to our Privacy Policy and Terms of use.","register_title_create":"Create your Monica account","register_title_welcome":"Welcome to your newly installed Monica instance","signup":"Sign up","signup_disabled":"Registration is currently disabled","signup_error":"An error occured trying to register the user","signup_no_account":"Don’t have an account?","throttle":"Too many login attempts. Please try again in :seconds seconds.","use_recovery":"Or you can use a recovery code"},"changelog":{"note":"Note: unfortunately, this page is only in English.","title":"Product changes"},"dashboard":{"dashboard_blank_cta":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the people you care about.","dashboard_blank_illustration":"Illustration by Freepik","dashboard_blank_title":"Welcome to your account!","debts_you_owe":"You owe","notes_title":"You don’t have any starred notes yet.","product_changes":"Product changes","product_view_details":"View details","reminders_next_months":"Events in the next 3 months","reminders_none":"No reminders for this month.","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven’t logged any calls yet.","tab_debts":"Debts","tab_debts_blank":"You haven’t logged any debts yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven’t any tasks yet.","task_add_cta":"Add a task","tasks_add_note":"Press Enter to add the task.","tasks_add_task_placeholder":"What is this task about?","tasks_tab_your_contacts":"Tasks related to your contacts","tasks_tab_your_tasks":"Your tasks"},"format":{"full_date_year":"F d, Y","full_hour":"h.i A","full_month":"F","full_month_year":"F Y","short_date":"M d","short_date_year":"M d, Y","short_date_year_time":"M d, Y H:i","short_day":"D","short_month":"M","short_month_year":"M Y","short_text":"{text}…"},"journal":{"delete_confirmation":"Are you sure you want to delete this journal entry?","entry_delete_success":"The journal entry has been successfully deleted.","journal_add":"Add a journal entry","journal_add_comment":"Care to add a comment (optional)?","journal_add_cta":"Save","journal_add_date":"Date","journal_add_post":"Entry","journal_add_title":"Title (optional)","journal_blank_cta":"Add your first journal entry","journal_blank_description":"The journal lets you write events that happened to you, and remember them.","journal_come_back":"Thanks. Come back tomorrow to rate your day again.","journal_created_at":"Created at {date}","journal_created_automatically":"Created automatically","journal_description":"Note: the journal lists both manual journal entries, and automatic entries like Activities done with your contacts. While you can delete journal entries manually, you’ll have to delete the activity directly on the contact page.","journal_edit":"Edit a journal entry","journal_empty":"Empty journal","journal_entry_rate":"You rated your day.","journal_entry_type_activity":"Activity","journal_entry_type_journal":"Journal entry","journal_rate":"How was your day? You can rate it once a day.","journal_show_comment":"Show comment"},"logs":{"contact_log_contact_created":"Created the contact.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Updated the description.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_work_updated_with_name":"Updated work information of :name."},"mail":{"comment":"Comment: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","confirmation_email_button":"Verify email address","confirmation_email_intro":"To validate your email click on the button below","confirmation_email_title":"Monica – Email verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name’s profile","footer_contact_info2_link":"See :name’s profile: :url","for":"For: :name","greetings":"Hi :username","invitation_button":"Accept invitation","invitation_expiration":"This link will expire in :count days.","invitation_intro":"You’ve been invited by :name (:email) to use Monica, a nice Personal Relationship Management tool.","invitation_link":"To accept the invitation, click on the link below:","invitation_title":"Monica – You are invited by :name","notification_description":"In :count days (on :date), the following event will happen:","notification_subject_line":"You have an upcoming event","notifications_footer":"If you’re having trouble clicking the \\":actionText\\" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)","notifications_hello":"Hello!","notifications_regards":"Regards","notifications_rights":"All rights reserved","notifications_whoops":"Whoops!","password_reset_bottom":"If you did not request a password reset, no further action is required.","password_reset_button":"Reset Password","password_reset_expiration":"This password reset link will expire in :count minutes.","password_reset_intro":"You are receiving this email because we received a password reset request for your account.","password_reset_title":"Monica – Reset Password Notification","stay_in_touch_subject_description":"You asked to be reminded to stay in touch with :name every :frequency day.|You asked to be reminded to stay in touch with :name every :frequency days.","stay_in_touch_subject_line":"Stay in touch with :name","subject_line":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :reason"},"pagination":{"next":"Next ❯","previous":"❮ Previous"},"passwords":{"changed":"Password changed successfully.","invalid":"Current password you entered is not correct.","reset":"Your password has been reset!","sent":"If the email you entered exists in our records, you’ve been sent a password reset link.","throttled":"Please wait before retrying.","token":"This password reset token is invalid.","user":"If the email you entered exists in our records, you’ve been sent a password reset link."},"people":{"activities_activity":"Activity Category","activities_add_activity":"Add activity","activities_add_category":"Indicate a category","activities_add_date_occured":"The activity happened on...","activities_add_emotions":"Add emotions","activities_add_emotions_title":"Do you want to log how you felt during this activity? (optional)","activities_add_error":"Error when adding the activity","activities_add_more_details":"Add more details","activities_add_participants":"Who, apart from {name}, participated in this activity? (optional)","activities_add_participants_cta":"Add participants","activities_add_pick_activity":"(Optional) Would you like to categorize this activity? You don’t have to, but it will give you statistics later on","activities_add_success":"The activity has been added successfully","activities_add_title":"What did you do with {name}?","activities_blank_add_activity":"Add an activity","activities_blank_title":"Keep track of what you’ve done with {name} in the past, and what you’ve talked about","activities_delete_success":"The activity has been deleted successfully","activities_item_information":":Activity. Happened on :date","activities_list_category":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","activities_profile_number_occurences":":value activity|:value activities","activities_profile_subtitle":"You’ve logged :total_activities activity with :name in total and :activities_last_twelve_months in the last 12 months so far.|You’ve logged :total_activities activities with :name in total and :activities_last_twelve_months in the last 12 months so far.","activities_profile_title":"Activities report between :name and you","activities_profile_year_summary":"Here is what you two have done in :year","activities_profile_year_summary_activity_types":"Here is a breakdown of the type of activities you’ve done together in :year","activities_summary":"Describe what you did","activities_update_success":"The activity has been updated successfully","activities_view_activities_report":"View activities report","activities_who_was_involved":"Who was involved?","activity_title":"Activities","activity_type_ate_at_his_place":"ate at their place","activity_type_ate_at_home":"ate at home","activity_type_ate_restaurant":"ate at a restaurant","activity_type_category_cultural_activities":"Cultural activities","activity_type_category_food":"Food","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"Sport","activity_type_did_sport_activities_together":"played a sport together","activity_type_just_hung_out":"just hung out","activity_type_picnicked":"picnicked","activity_type_talked_at_home":"just talked at home","activity_type_watched_movie_at_home":"watched a movie at home","activity_type_went_bar":"went to a bar","activity_type_went_concert":"went to a concert","activity_type_went_museum":"went to the museum","activity_type_went_play":"went to a play","activity_type_went_theater":"went to the theater","age_approximate_in_years":"around :age years old","age_exact_birthdate":"born :date","age_exact_in_years":":age years old","auditlogs_author":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"The Adorable avatar","avatar_change_title":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","avatar_current":"Keep the current avatar","avatar_default_avatar":"The default avatar","avatar_gravatar":"The Gravatar associated with the email address of this person. Gravatar is a global system that lets users associate email addresses with photos.","avatar_photo":"From a photo that you upload","avatar_question":"Which avatar would you like to use?","birthdate_not_set":"Birthdate is not set","call_blank_desc":"You called {name}","call_blank_title":"Keep track of the phone calls you’ve done with {name}","call_button":"Log a call","call_delete_confirmation":"Are you sure you want to delete this call?","call_delete_success":"The call has been deleted successfully","call_emotions":"Emotions:","call_empty_comment":"No details","call_he_called":"{name} called","call_title":"Phone calls","call_you_called":"You called","calls_add_success":"The phone call has been saved.","contact_address_form_city":"City (optional)","contact_address_form_country":"Country (optional)","contact_address_form_latitude":"Latitude (numbers only) (optional)","contact_address_form_longitude":"Longitude (numbers only) (optional)","contact_address_form_name":"Label (optional)","contact_address_form_postal_code":"Postal code (optional)","contact_address_form_province":"Province (optional)","contact_address_form_street":"Street (optional)","contact_address_title":"Addresses","contact_archive":"Archive contact","contact_archive_help":"Archived contacts will not be shown on the contact list, but still appear in search results.","contact_field_label_cell":"Mobile","contact_field_label_fax":"Fax","contact_field_label_home":"Home","contact_field_label_main":"Main","contact_field_label_other":"Other","contact_field_label_pager":"Pager","contact_field_label_personal":"Personal","contact_field_label_work":"Work","contact_info_address":"Lives in","contact_info_form_contact_type":"Contact type","contact_info_form_content":"Content","contact_info_form_personalize":"Personalize","contact_info_title":"Contact information","contact_unarchive":"Unarchive contact","conversation_add_another":"Add another message","conversation_add_content":"Write down what was said","conversation_add_error":"You must add at least one message.","conversation_add_how":"How did you communicate?","conversation_add_success":"The conversation has been successfully added.","conversation_add_title":"Record a new conversation","conversation_add_what_was_said":"What did you say?","conversation_add_when":"When did you have this conversation?","conversation_add_who_wrote":"Who said this message?","conversation_add_you":"You","conversation_blank":"Record conversations you have with :name on social media, SMS, ...","conversation_delete_link":"Delete the conversation","conversation_delete_success":"The conversation has been successfully deleted.","conversation_edit_delete":"Are you sure you want to delete this conversation? Deletion is permanent.","conversation_edit_success":"The conversation has been successfully updated.","conversation_edit_title":"Edit conversation","conversation_list_cta":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","debt_add_add_cta":"Add debt","debt_add_amount":"the sum of","debt_add_cta":"Add debt","debt_add_reason":"for the following reason (optional)","debt_add_success":"The debt has been added successfully","debt_add_they_owe":":name owes you","debt_add_title":"Debt management","debt_add_you_owe":"You owe :name","debt_delete_confirmation":"Are you sure you want to delete this debt?","debt_delete_success":"The debt has been deleted successfully","debt_edit_success":"The debt has been updated successfully","debt_edit_update_cta":"Update debt","debt_they_owe":":name owes you :amount","debt_title":"Debts","debt_you_owe":"You owe :amount","debts_blank_title":"Manage debts you owe to :name or :name owes you","deceased_add_reminder":"Add a reminder for this date","deceased_age":"Age at death","deceased_date_label":"Deceased date","deceased_know_date":"I know the date this person died","deceased_label":"Deceased","deceased_label_with_date":"Deceased on :date","deceased_mark_person_deceased":"Mark this person as deceased","deceased_reminder_title":"Anniversary of the death of :name","document_list_blank_desc":"Here you can store documents related to this person.","document_list_cta":"Upload document","document_list_title":"Documents","document_upload_zone_cta":"Upload a file","document_upload_zone_error":"There was an error uploading the document. Please try again below.","document_upload_zone_progress":"Uploading the document...","edit_contact_information":"Edit contact information","emotion_this_made_me_feel":"This made you feel…","food_preferences_add_success":"Food preferences have been saved","food_preferences_cta":"Add food preferences","food_preferences_edit_cta":"Save food preferences","food_preferences_edit_description":"Perhaps :firstname or someone in the :family’s family has an allergy. Or doesn’t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_description_no_last_name":"Perhaps :firstname has an allergy. Or doesn’t like a specific bottle of wine. Indicate them here so you will remember it next time you invite them for dinner","food_preferences_edit_title":"Indicate food preferences","food_preferences_title":"Food preferences","gifts_add_comment":"Comment (optional)","gifts_add_date":"Date (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift given","gifts_add_gift_idea":"Gift idea","gifts_add_gift_name":"Gift name","gifts_add_gift_received":"Gift received","gifts_add_gift_title":"What is this gift?","gifts_add_link":"Link to the web page (optional)","gifts_add_photo":"Photo (optional)","gifts_add_photo_title":"Add a photo for this gift","gifts_add_recipient":"Recipient (optional)","gifts_add_recipient_field":"Recipient","gifts_add_someone":"This gift is for someone in {name}’s family in particular","gifts_add_success":"The gift has been added successfully","gifts_add_title":"Gift management for :name","gifts_add_value":"Value (optional)","gifts_delete_confirmation":"Are you sure you want to delete this gift?","gifts_delete_cta":"Delete","gifts_delete_success":"The gift has been deleted successfully","gifts_delete_title":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Gift ideas","gifts_link":"Link","gifts_mark_offered":"Mark as given","gifts_offered":"Gifts given","gifts_offered_as_an_idea":"Mark as an idea","gifts_received":"Gifts received","gifts_title":"Gifts","gifts_update_success":"The gift has been updated successfully","gifts_view_comment":"View comment","information_edit_birthdate_label":"Birthdate","information_edit_description":"Description (Optional)","information_edit_description_help":"Used on the contact list to add some context, if necessary.","information_edit_exact":"I know the exact birthdate of this person...","information_edit_firstname":"First name","information_edit_lastname":"Last name (Optional)","information_edit_max_size":"Max :size Kb.","information_edit_max_size2":"Max {size} Kb.","information_edit_not_year":"I know the day and month of the birthdate of this person, but not the year…","information_edit_probably":"This person is probably...","information_edit_success":"The profile has been updated successfully","information_edit_title":"Edit :name’s personal information","information_edit_unknown":"I do not know this person’s age","information_no_work_defined":"No work information defined","information_work_at":"at :company","introductions_add_reminder":"Add a reminder to celebrate this encounter on the anniversary this event happened","introductions_additional_info":"Explain how and where you met","introductions_blank_cta":"Indicate how you met :name","introductions_edit_met_through":"Has someone introduced you to this person?","introductions_first_met_date":"Date you met","introductions_first_met_date_known":"This is the date we met","introductions_met_date":"Met on :date","introductions_met_through":"Met through :name","introductions_no_first_met_date":"I don’t know the date we met","introductions_no_met_through":"No one","introductions_reminder_title":"Anniversary of the day you first met","introductions_sidebar_title":"How you met","introductions_title_edit":"How did you meet :name?","introductions_update_success":"You’ve successfully updated the information about how you met this person","last_activity_date":"Last activity together: :date","last_activity_date_empty":"Last activity together: unknown","last_called":"Last called: :date","last_called_empty":"Last called: unknown","life_event_blank":"Log what happens to the life of {name} for your future reference.","life_event_category_family_relationships":"Family & relationships","life_event_category_health_wellness":"Health & wellness","life_event_category_home_living":"Home & living","life_event_category_travel_experiences":"Travel & experiences","life_event_category_work_education":"Work & education","life_event_create_add_yearly_reminder":"Add a yearly reminder for this event","life_event_create_category":"All categories","life_event_create_date":"You do not need to indicate a month or a day - only the year is mandatory.","life_event_create_default_description":"Add information about what you know","life_event_create_default_story":"Story (optional)","life_event_create_default_title":"Title (optional)","life_event_create_life_event":"Add life event","life_event_create_success":"The life event has been added","life_event_date_it_happened":"Date it happened","life_event_delete_description":"Are you sure you want to delete this life event? Deletion is permanent.","life_event_delete_success":"The life event has been deleted","life_event_delete_title":"Delete a life event","life_event_list_cta":"Add life event","life_event_list_tab_life_events":"Life events","life_event_list_tab_other":"Notes, reminders, ...","life_event_list_title":"Life events","life_event_sentence_achievement_or_award":"Got an achievement or award","life_event_sentence_anniversary":"Anniversary","life_event_sentence_bought_a_home":"Bought a home","life_event_sentence_broken_bone":"Broke a bone","life_event_sentence_changed_beliefs":"Changed beliefs","life_event_sentence_dentist":"Went to the dentist","life_event_sentence_end_of_relationship":"Ended a relationship","life_event_sentence_engagement":"Got engaged","life_event_sentence_expecting_a_baby":"Expects a baby","life_event_sentence_first_kiss":"Kissed for the first time","life_event_sentence_first_word":"Spoke for the first time","life_event_sentence_holidays":"Went on holidays","life_event_sentence_home_improvement":"Made a home improvement","life_event_sentence_loss_of_a_loved_one":"Lost a loved one","life_event_sentence_marriage":"Got married","life_event_sentence_military_service":"Started military service","life_event_sentence_moved":"Moved","life_event_sentence_new_child":"Had a child","life_event_sentence_new_eating_habits":"Started new eating habits","life_event_sentence_new_family_member":"Added a family member","life_event_sentence_new_hobby":"Started a hobby","life_event_sentence_new_instrument":"Learned a new instrument","life_event_sentence_new_job":"Started a new job","life_event_sentence_new_language":"Learned a new language","life_event_sentence_new_license":"Got a license","life_event_sentence_new_pet":"Got a pet","life_event_sentence_new_relationship":"Started a relationship","life_event_sentence_new_roommate":"Got a roommate","life_event_sentence_new_school":"Started school","life_event_sentence_new_sport":"Started a sport","life_event_sentence_new_vehicle":"Got a new vehicle","life_event_sentence_overcame_an_illness":"Overcame an illness","life_event_sentence_published_book_or_paper":"Published a paper","life_event_sentence_quit_a_habit":"Quit a habit","life_event_sentence_removed_braces":"Removed braces","life_event_sentence_retirement":"Retired","life_event_sentence_study_abroad":"Studied abroad","life_event_sentence_surgery":"Had surgery","life_event_sentence_tattoo_or_piercing":"Got a tattoo or piercing","life_event_sentence_travel":"Traveled","life_event_sentence_volunteer_work":"Started volunteering","life_event_sentence_wear_glass_or_contact":"Started to wear glass or contact lenses","life_event_sentence_weight_loss":"Lost weight","list_link_to_active_contacts":"You are viewing archived contacts. See the list of active contacts instead.","list_link_to_archived_contacts":"List of archived contacts","me":"This is you","modal_call_comment":"What did you talk about? (optional)","modal_call_emotion":"Do you want to log how you felt during this call? (optional)","modal_call_exact_date":"The phone call happened on","modal_call_title":"Log a call","modal_call_who_called":"Who called?","notes_add_cta":"Add note","notes_create_success":"The note has been created successfully","notes_delete_confirmation":"Are you sure you want to delete this note? Deletion is permanent","notes_delete_success":"The note has been deleted successfully","notes_delete_title":"Delete a note","notes_favorite":"Add/remove from favorites","notes_update_success":"The note has been saved successfully","people_add_birthday_reminder":"Wish happy birthday to :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","people_add_cta":"Add","people_add_firstname":"First name","people_add_gender":"Gender","people_add_import":"Do you want to import your contacts?","people_add_lastname":"Last name (Optional)","people_add_middlename":"Middle name (Optional)","people_add_missing":"No Person Found Add New One Now","people_add_new":"Add new person","people_add_nickname":"Nickname (Optional)","people_add_reminder_for_birthday":"Create an annual reminder for the birthday","people_add_success":":name has been successfully created","people_add_title":"Add a new person","people_delete_confirmation":"Are you sure you want to delete this contact? Deletion is permanent.","people_delete_message":"Delete contact","people_delete_success":"The contact has been deleted","people_edit_email_error":"There is already a contact in your account with this email address. Please choose another one.","people_export":"Export as vCard","people_list_account_upgrade_cta":"Upgrade now","people_list_account_upgrade_title":"Upgrade your account to unlock it to its full potential.","people_list_account_usage":"Your account usage: :current/:limit contacts","people_list_blank_cta":"Add someone","people_list_blank_title":"You don’t have anyone in your account yet","people_list_clear_filter":"Clear filter","people_list_contacts_per_tags":"1 contact|:count contacts","people_list_filter_tag":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"Sort by first name A → Z","people_list_firstnameZA":"Sort by first name Z → A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Last consulted:","people_list_lastactivitydateNewtoOld":"Sort by last activity date newest to oldest","people_list_lastactivitydateOldtoNew":"Sort by last activity date oldest to newest","people_list_lastnameAZ":"Sort by last name A → Z","people_list_lastnameZA":"Sort by last name Z → A","people_list_number_kids":"1 kid|:count kids","people_list_number_reminders":"1 reminder|:count reminders","people_list_show_dead":"Show deceased people (:count)","people_list_sort":"Sort","people_list_stats":"1 contact|:count contacts","people_list_untagged":"View untagged contacts","people_not_found":"Contact not found","people_save_and_add_another_cta":"Submit and add someone else","people_search":"Search your contacts...","people_search_all":"All","people_search_next":"Next","people_search_no_results":"No results found","people_search_of":"of","people_search_page":"Page","people_search_prev":"Prev","people_search_rows_per_page":"Rows per page","pets_bird":"Bird","pets_cat":"Cat","pets_create_success":"The pet has been successfully added","pets_delete_success":"The pet has been deleted","pets_dog":"Dog","pets_fish":"Fish","pets_hamster":"Hamster","pets_horse":"Horse","pets_kind":"Kind of pet","pets_name":"Name (optional)","pets_other":"Other","pets_rabbit":"Rabbit","pets_rat":"Rat","pets_reptile":"Reptile","pets_small_animal":"Small animal","pets_title":"Pets","pets_update_success":"The pet has been updated","photo_current_profile_pic":"Current profile picture","photo_delete":"Delete photo","photo_list_blank_desc":"You can store images about this contact. Upload one now!","photo_list_cta":"Upload photo","photo_list_title":"Related photos","photo_make_profile_pic":"Make profile picture","photo_next":"Next photo ❯","photo_previous":"❮ Previous photo","photo_title":"Photos","photo_upload_zone_cta":"Upload a photo","relationship_delete_confirmation":"Are you sure you want to delete this relationship? Deletion is permanent.","relationship_form_add":"Add a new relationship","relationship_form_add_choice":"Who is the relationship with?","relationship_form_add_description":"This will let you treat this person like any other contact.","relationship_form_add_no_existing_contact":"You don’t have any contacts who can be related to :name at the moment.","relationship_form_add_success":"The relationship has been successfully set.","relationship_form_also_create_contact":"Create a Contact entry for this person.","relationship_form_associate_contact":"An existing contact","relationship_form_associate_dropdown":"Search and select an existing contact from the dropdown below","relationship_form_associate_dropdown_placeholder":"Search and select an existing contact","relationship_form_create_contact":"Add a new person","relationship_form_deletion_success":"The relationship has been deleted.","relationship_form_edit":"Edit an existing relationship","relationship_form_is_with":"This person is...","relationship_form_is_with_name":":name is...","relationship_unlink_confirmation":"Are you sure you want to delete this relationship? This person will not be deleted – only the relationship between the two.","reminder_frequency_day":"every day|every :number days","reminder_frequency_month":"every month|every :number months","reminder_frequency_one_time":"on :date","reminder_frequency_week":"every week|every :number weeks","reminder_frequency_year":"every year|every :number year","reminders_add_cta":"Add reminder","reminders_add_description":"Please remind me to...","reminders_add_error_custom_text":"You need to indicate a text for this reminder","reminders_add_next_time":"When is the next time you would like to be reminded about this?","reminders_add_once":"Remind me about this just once","reminders_add_optional_comment":"Optional comment","reminders_add_recurrent":"Remind me about this every","reminders_add_starting_from":"starting from the date specified above","reminders_add_title":"What would you like to be reminded of about :name?","reminders_birthday":"Birthday of :name","reminders_blank_add_activity":"Add a reminder","reminders_blank_title":"Is there something you want to be reminded of about :name?","reminders_create_success":"The reminder has been added successfully","reminders_cta":"Add a reminder","reminders_delete_confirmation":"Are you sure you want to delete this reminder?","reminders_delete_cta":"Delete","reminders_delete_success":"The reminder has been deleted successfully","reminders_description":"We will send an email for each one of the reminders below. Reminders are sent every morning the day events will happen. Reminders automatically added for birthdates can not be deleted. If you want to change those dates, edit the birthdate of the contacts.","reminders_edit_update_cta":"Update reminder","reminders_free_plan_warning":"You are on the Free plan. No emails are sent on this plan. To receive your reminders by email, upgrade your account.","reminders_next_expected_date":"on","reminders_one_time":"One time","reminders_type_month":"month","reminders_type_week":"week","reminders_type_year":"year","reminders_update_success":"The reminder has been updated successfully","section_contact_information":"Contact information","section_personal_activities":"Activities","section_personal_gifts":"Gifts","section_personal_notes":"Notes","section_personal_reminders":"Reminders","section_personal_tasks":"Tasks","set_favorite":"Favorite contacts are placed at the top of the contact list","stay_in_touch":"Stay in touch","stay_in_touch_frequency":"Stay in touch every day|Stay in touch every {count} days","stay_in_touch_invalid":"The frequency must be a number greater than 0.","stay_in_touch_modal_desc":"We can remind you by email to keep in touch with {firstname} at a regular interval.","stay_in_touch_modal_label":"Send me an email every... {count} day|Send me an email every... {count} days","stay_in_touch_modal_title":"Stay in touch","stay_in_touch_premium":"You need to upgrade your account to make use of this feature","tag_add":"Add tags","tag_add_search":"Add or search tags","tag_edit":"Edit tag","tag_no_tags":"No tags yet","tasks_add_task":"Add a task","tasks_blank_title":"You don’t have any tasks yet.","tasks_complete_success":"The task has changed status successfully","tasks_delete_success":"The task has been deleted successfully","tasks_form_description":"Description (optional)","tasks_form_title":"Title","tasks_title":"Tasks","work_add_cta":"Update work information","work_edit_company":"Company (optional)","work_edit_job":"Job title (optional)","work_edit_success":"Work information updated","work_edit_title":"Update :name’s job information","work_information":"Work information"},"reminder":{"type_birthday":"Wish happy birthday to","type_birthday_kid":"Wish happy birthday to the kid of","type_email":"Email","type_hangout":"Hangout with","type_lunch":"Lunch with","type_phone_call":"Call"},"settings":{"2fa_disable_description":"Disable Two Factor Authentication for your account. Be careful, your account will be much less secure!","2fa_disable_error":"Error when trying to disable Two Factor Authentication","2fa_disable_success":"Two Factor Authentication disabled","2fa_disable_title":"Disable Two Factor Authentication","2fa_enable_description":"Enable Two Factor Authentication to increase the security of your account.","2fa_enable_error":"Error when trying to activate Two Factor Authentication","2fa_enable_error_already_set":"Two Factor Authentication is already activated","2fa_enable_otp":"Open up your Two Factor Authentication mobile app and scan the following QR barcode:","2fa_enable_otp_help":"If your Two Factor Authentication mobile app does not support QR barcodes, enter in the following code:","2fa_enable_otp_validate":"Please validate the new device you’ve just set up:","2fa_enable_success":"Two Factor Authentication activated","2fa_enable_title":"Enable Two Factor Authentication","2fa_otp_title":"Two Factor Authentication mobile application","2fa_title":"Two Factor Authentication","api_authorized_clients":"List of authorized clients","api_authorized_clients_desc":"This section lists all the clients you’ve authorized to access your application data. You can revoke this authorization at anytime.","api_authorized_clients_name":"Name","api_authorized_clients_none":"There are no authorized clients yet.","api_authorized_clients_scopes":"Scopes","api_authorized_clients_title":"Authorized Applications","api_description":"The API can be used to manipulate Monica’s data from an external application, like a mobile application for instance.","api_endpoint":"The API endpoint for this Monica instance is:","api_help":"To use the API, a token is mandatory. You can either create a personal access token (Bearer authentication), or authorize an OAuth client to create it for you. See API documentation.","api_oauth_clientid":"Client ID","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"This section lets you register your own OAuth clients.","api_oauth_clients_desc2":"Use this client id to request a new token, and convert authorization codes to access tokens. See Laravel Passport documentation for more information.","api_oauth_create":"Create Client","api_oauth_create_new":"Create New Client","api_oauth_edit":"Edit Client","api_oauth_name":"Name","api_oauth_name_help":"Something your users will recognize and trust.","api_oauth_not_created":"You have not created any OAuth clients.","api_oauth_redirecturl":"Redirect URL","api_oauth_redirecturl_help":"Your application’s authorization callback URL.","api_oauth_secret":"Secret","api_oauth_title":"OAuth Clients","api_pao_description":"Make sure you give this token to a source you trust – as they allow you to access all your data.","api_personal_access_tokens":"Personal access tokens","api_title":"API access","api_token_create":"Create Token","api_token_create_new":"Create New Token","api_token_delete":"Delete","api_token_expire":"Expires at {date}","api_token_help":"Here is your new personal access token. This is the only time it will be shown so don’t lose it! You may now use this token to make API requests.","api_token_name":"Token name","api_token_not_created":"You have not created any personal access tokens.","api_token_scopes":"Scopes","api_token_title":"Personal Access Tokens","archive_cta":"Archive all of your contacts","archive_desc":"This will archive all of the contacts in your account.","archive_title":"Archive all of the contacts in your account","currency":"Currency","dav_caldav_birthdays_export":"Export all birthdays in one file","dav_caldav_tasks_export":"Export all tasks in one file","dav_carddav_export":"Export all contacts in one file","dav_clipboard_copied":"Value copied into your clipboard","dav_connect_help":"You can connect your contacts and/or calendars with this base url on you phone or computer.","dav_connect_help2":"Use your login (email) and create an API token as the password to authenticate.","dav_copy_help":"Copy into your clipboard","dav_description":"Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.","dav_title":"WebDAV","dav_title_caldav":"CalDAV","dav_title_carddav":"CardDAV","dav_url_base":"Base url for all CardDAV and CalDAV resources:","dav_url_caldav_birthdays":"CalDAV url for Birthdays resources:","dav_url_caldav_tasks":"CalDAV url for Tasks resources:","dav_url_carddav":"CardDAV url for Contacts resource:","delete_cta":"Delete account","delete_desc":"Do you wish to delete your account? Deletion is permanent and all of your data will be erased permanently. If you have a subscription, it will be cancelled immediately.","delete_notice":"Are you sure you want to delete your account? This is permanent and cannot be undone. All of your data will be deleted and will not be recoverable.","delete_other_desc":"Your data in the main database will be deleted immediately. As described in our privacy policy, we carry out daily backups, securely encrypted backups of the database and this backup is kept for 30 days after which it is completely deleted. We cannot delete specific data from the backups we hold any earlier than this. All of your data will be completely deleted within 30 days of your account’s deletion.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where Monica will send your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It may take several minutes to process the export – please be patient and do not repeatedly click the button.","export_sql_cta":"Export data to SQL","export_sql_explanation":"Exporting your data in SQL format allows you to take your data and import it to your own Monica instance. This is only useful if you are running Monica on your own server.","export_sql_link_instructions":"Read the instructions to learn how to import this file into your instance.","export_title":"Export your account data","export_title_sql":"Export data to SQL","firstname":"First name","import_blank_cta":"Import vCard","import_blank_description":"We can import vCard files that you can get from Google Contacts or your Contact manager.","import_blank_question":"Would you like to import contacts now?","import_blank_title":"You haven’t imported any contacts yet.","import_cta":"Upload contacts","import_in_progress":"The import is in progress. Reload the page in one minute.","import_need_subscription":"Importing data requires a subscription.","import_report_date":"Date of the import","import_report_number_contacts":"Number of contacts in the file","import_report_number_contacts_imported":"Number of imported contacts","import_report_number_contacts_skipped":"Number of skipped contacts","import_report_status_imported":"Imported","import_report_status_skipped":"Skipped","import_report_title":"Importing report","import_report_type":"Type of import","import_result_stat":"Uploaded vCard with 1 contact (:total_imported imported, :total_skipped skipped)|Uploaded vCard with :total_contacts contacts (:total_imported imported, :total_skipped skipped)","import_stat":"You’ve imported :number files so far.","import_title":"Import contacts in your account","import_upload_behaviour":"Import behaviour:","import_upload_behaviour_add":"Add new contacts and skip existing","import_upload_behaviour_help":"Replacing will replace all data found in the vCard, but will keep existing contact fields.","import_upload_behaviour_replace":"Replace existing contacts","import_upload_form_file":"Your .vcf or .vCard file:","import_upload_rule_cant_revert":"Please make sure data is accurate before uploading, as you can’t undo the upload.","import_upload_rule_format":"We support .vcard and .vcf files.","import_upload_rule_instructions":"Export instructions for macOS Contacts.app and Google Contacts.","import_upload_rule_limit":"Files are limited to 10 MB.","import_upload_rule_multiple":"If your contacts have multiple email addresses or phone numbers, only the first entry will be saved.","import_upload_rule_time":"It might take up to a minute to upload the contacts and process them. Please be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for macOS’s Contacts.app and Google Contacts.","import_upload_rules_desc":"We do however have some rules:","import_upload_title":"Import your contacts from a vCard file","import_vcard_contact_exist":"Contact already exists","import_vcard_contact_no_firstname":"No first name (mandatory)","import_vcard_file_no_entries":"File contains no entries","import_vcard_file_not_found":"File not found","import_vcard_parse_error":"Error when parsing the vCard entry","import_vcard_unknown_entry":"Unknown contact name","import_view_report":"View report","lastname":"Last name","layout":"Layout","layout_big":"Full width of the browser","layout_small":"Maximum 1200 pixels wide","locale":"Language used in the app","locale_ar":"Arabic","locale_cs":"Czech","locale_de":"German","locale_en":"English","locale_en-GB":"English (United Kingdom)","locale_es":"Spanish","locale_fr":"French","locale_he":"Hebrew","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information.","locale_hr":"Croatian","locale_it":"Italian","locale_ja":"Japanese","locale_nl":"Dutch","locale_pt":"Portuguese","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russian","locale_sv":"Swedish","locale_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_actor":"Actor","logs_description":"Description","logs_object":"Object","logs_size":"Size (Kb)","logs_subject":"Subject","logs_timestamp":"Timestamp","logs_title":"Everything that has happened to this account","me_choose":"Choose yourself","me_choose_placeholder":"Choose yourself","me_help":"This is the contact that represents you in Monica","me_no_contact":"No contact selected yet.","me_remove_contact":"Remove the association","me_select":"Select a contact","me_select_click":"Click here to select a contact.","me_title":"Me as a contact","name":"Your name: :name","name_order":"Name order","name_order_firstname_lastname":" – John Doe","name_order_firstname_lastname_nickname":" () – John Doe (Rambo)","name_order_firstname_nickname_lastname":" () – John (Rambo) Doe","name_order_lastname_firstname":" – Doe John","name_order_lastname_firstname_nickname":" () – Doe John (Rambo)","name_order_lastname_nickname_firstname":" () – Doe (Rambo) John","name_order_nickname":" – Rambo","name_order_nickname_firstname_lastname":" ( ) – Rambo (Doe John)","password_btn":"Change password","password_change":"Change your password","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter your new password","password_new2":"Confirm your new password","password_new2_placeholder":"Retype your new password","personalisation_paid_upgrade":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription.","personalisation_paid_upgrade_vue":"This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription.","personalization_activity_type_add_button":"Add a new activity type","personalization_activity_type_category_add":"Add a new activity type category","personalization_activity_type_category_description":"An activity with one of your contacts can have a type and a category type. Your account comes with a set of predefined category types by default, but you can customize these here.","personalization_activity_type_category_modal_add":"Add a new activity type category","personalization_activity_type_category_modal_delete":"Delete an activity type category","personalization_activity_type_category_modal_delete_desc":"Are you sure you want to delete this category? Deleting it will delete all associated activity types. Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_category_modal_delete_error":"We can’t find this activity type category.","personalization_activity_type_category_modal_edit":"Edit an activity type category","personalization_activity_type_category_modal_question":"What should we name this new category?","personalization_activity_type_category_table_actions":"Actions","personalization_activity_type_category_table_name":"Name","personalization_activity_type_category_title":"Activity type categories","personalization_activity_type_modal_add":"Add a new activity type","personalization_activity_type_modal_delete":"Delete an activity type","personalization_activity_type_modal_delete_desc":"Are you sure you want to delete this activity type? Activities that belong to this category will not be affected by this deletion.","personalization_activity_type_modal_delete_error":"We can’t find this activity type.","personalization_activity_type_modal_edit":"Edit an activity type","personalization_activity_type_modal_question":"What should we name this new activity type?","personalization_contact_field_type_add":"Add new field type","personalization_contact_field_type_add_success":"The contact field type has been successfully added.","personalization_contact_field_type_delete_success":"The contact field type has been successfully deleted.","personalization_contact_field_type_description":"You can configure all the different types of contact fields that you can associate to all your contacts. For example, if a new social network appears in the future, you will be able to add this new way of communicating with your contacts right here.","personalization_contact_field_type_edit_success":"The contact field type has been successfully updated.","personalization_contact_field_type_modal_delete_description":"Are you sure you want to delete this contact field type? Deleting this type of contact field will delete ALL the data with this type for all of your contacts.","personalization_contact_field_type_modal_delete_title":"Delete an existing contact field type","personalization_contact_field_type_modal_edit_title":"Edit an existing contact field type","personalization_contact_field_type_modal_icon":"Icon (optional)","personalization_contact_field_type_modal_icon_help":"You can associate an icon with this contact field type. You need to add a reference to a Font Awesome icon.","personalization_contact_field_type_modal_name":"Name","personalization_contact_field_type_modal_protocol":"Protocol (optional)","personalization_contact_field_type_modal_protocol_help":"Each new contact field type can be clickable. If a protocol is set, we will use it to trigger the action that is set.","personalization_contact_field_type_modal_title":"Add a new contact field type","personalization_contact_field_type_table_actions":"Actions","personalization_contact_field_type_table_name":"Name","personalization_contact_field_type_table_protocol":"Protocol","personalization_contact_field_type_title":"Contact field types","personalization_genders_add":"Add new gender type","personalization_genders_default":"Default gender","personalization_genders_desc":"You can define as many genders as you need to. You need at least one gender type in your account.","personalization_genders_f":"Female","personalization_genders_list_contact_number":"{count} contact|{count} contacts","personalization_genders_m":"Male","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Add gender type","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Delete gender type","personalization_genders_modal_delete_desc":"Are you sure you want to delete the gender “{name}”?","personalization_genders_modal_delete_question":"You currently have {count} contact with this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts with this gender. If you delete this gender, what gender should these contacts have?","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the new default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a gender from the list.","personalization_genders_modal_name":"Name","personalization_genders_modal_name_help":"The name used to display the gender on a contact page.","personalization_genders_modal_sex":"Sex","personalization_genders_modal_sex_help":"Used to define the relationships, and during the VCard import/export process.","personalization_genders_n":"None or not applicable","personalization_genders_o":"Other","personalization_genders_select_default":"Select default gender","personalization_genders_table_default":"Default","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Sex","personalization_genders_title":"Gender types","personalization_genders_u":"Unknown","personalization_life_event_category_description":"A life event can have a type and a category. Your account comes with a set of predefined categories and types by default, but you can customize life event types here.","personalization_life_event_category_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_title":"Life event categories","personalization_life_event_category_travel_experiences":"Travel & experiences","personalization_life_event_category_work_education":"Work & education","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_add_button":"Add a new life event type","personalization_life_event_type_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broke a bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Had dental treatment","personalization_life_event_type_end_of_relationship":"End of relationship","personalization_life_event_type_engagement":"Engagement","personalization_life_event_type_expecting_a_baby":"Expecting a baby","personalization_life_event_type_first_kiss":"First kiss","personalization_life_event_type_first_met":"First met","personalization_life_event_type_first_word":"First word","personalization_life_event_type_holidays":"Holidays","personalization_life_event_type_home_improvement":"Home improvement","personalization_life_event_type_loss_of_a_loved_one":"Loss of a loved one","personalization_life_event_type_marriage":"Marriage","personalization_life_event_type_military_service":"Military service","personalization_life_event_type_modal_add":"Add a new life event type","personalization_life_event_type_modal_delete":"Delete a life event type","personalization_life_event_type_modal_delete_desc":"Are you sure you want to delete this life event type? Life events that belong to this type will be deleted by performing this action.","personalization_life_event_type_modal_delete_error":"We can’t find this life event type.","personalization_life_event_type_modal_edit":"Edit a life event type","personalization_life_event_type_modal_question":"What should we name this new life event type?","personalization_life_event_type_moved":"Moved","personalization_life_event_type_new_child":"New child","personalization_life_event_type_new_eating_habits":"New eating habits","personalization_life_event_type_new_family_member":"New family member","personalization_life_event_type_new_hobby":"Took up a new hobby","personalization_life_event_type_new_instrument":"Started learning a new instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"Started learning a new language","personalization_life_event_type_new_license":"New license","personalization_life_event_type_new_pet":"New pet","personalization_life_event_type_new_relationship":"New relationship","personalization_life_event_type_new_roommate":"New roommate","personalization_life_event_type_new_school":"New school","personalization_life_event_type_new_sport":"Started playing a new sport","personalization_life_event_type_new_vehicle":"New vehicle","personalization_life_event_type_overcame_an_illness":"Overcame an illness","personalization_life_event_type_published_book_or_paper":"Published a book or paper","personalization_life_event_type_quit_a_habit":"Quit a habit","personalization_life_event_type_removed_braces":"Had braces removed","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"Had surgery","personalization_life_event_type_tattoo_or_piercing":"Tattoo or piercing","personalization_life_event_type_travel":"Travel","personalization_life_event_type_volunteer_work":"Volunteer work","personalization_life_event_type_wear_glass_or_contact":"Started wearing glasses or contacts","personalization_life_event_type_weight_loss":"Weight loss","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"You may not need all of Monica’s features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Turning off a feature does not delete any data, it simply hides the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, Monica can send you an email a number of days before the event happens. You can adjust these notification settings here. These notifications only apply to monthly and yearly reminders.","personalization_reminder_rule_line":"{count} day before|{count} days before","personalization_reminder_rule_save":"The change has been saved","personalization_reminder_rule_title":"Reminder rules","personalization_tab_title":"Personalize your account","personalization_title":"Here you will find different settings to configure your account. These features are intended for “power users” who want maximum control over Monica.","recovery_already_used_help":"This code has already been used.","recovery_clipboard":"Codes copied to the clipboard.","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes…","recovery_generate_help":"Generating new codes will invalidate previously generated codes.","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Get recovery codes","recovery_title":"Recovery codes","reminder_time_to_send":"Time of the day reminders will be sent","reminder_time_to_send_help":"Your next reminder is scheduled to be sent on {dateTime}.","reset_cta":"Reset account","reset_desc":"Do you wish to reset your account? This will remove all your contacts, and all of the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? This is permanent and cannot be undone.","reset_success":"Your account has been reset successfully.","reset_title":"Reset your account","save":"Update preferences","security_help":"Change security matters for your account.","security_title":"Security","settings_success":"Preferences updated!","sidebar_personalization":"Personalization","sidebar_settings":"Account settings","sidebar_settings_api":"API","sidebar_settings_auditlogs":"Audit logs","sidebar_settings_dav":"DAV Resources","sidebar_settings_export":"Export data","sidebar_settings_import":"Import data","sidebar_settings_security":"Security","sidebar_settings_storage":"Storage","sidebar_settings_subscriptions":"Subscription","sidebar_settings_tags":"Tag management","sidebar_settings_users":"Users","storage_account_info":"Your account limit is :accountLimit MB. Your current usage is :currentAccountSize MB (about :percentUsage%).","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Storage","storage_upgrade_notice":"Upgrade your account to be able to upload documents and photos.","stripe_error_api_connection":"Network communication with Stripe failed. Try again later.","stripe_error_authentication":"Wrong authentication with Stripe","stripe_error_card":"Your card was declined. Decline message is: :message","stripe_error_invalid_request":"Invalid parameters. Try again later.","stripe_error_rate_limit":"Too many requests with Stripe right now. Try again later.","subscriptions_account_cancel":"You can cancel subscription anytime.","subscriptions_account_confirm_payment":"Your payment is currently incomplete, please confirm your payment.","subscriptions_account_current_paid_plan":"You are on the :name plan. Thanks so much for being a subscriber.","subscriptions_account_current_plan":"Your current plan","subscriptions_account_free_plan":"You are on the free plan.","subscriptions_account_free_plan_benefits_import_data_vcard":"Import your contacts with vCard","subscriptions_account_free_plan_benefits_reminders":"Reminders by email","subscriptions_account_free_plan_benefits_support":"Support the project in the long run, so we can introduce more great features.","subscriptions_account_free_plan_benefits_users":"Unlimited number of users","subscriptions_account_free_plan_upgrade":"You can upgrade your account to the :name plan, which costs $:price per month. Here are the advantages:","subscriptions_account_invoices":"Invoices","subscriptions_account_invoices_download":"Download","subscriptions_account_invoices_subscription":"Subscription from :startDate to :endDate","subscriptions_account_next_billing":"Your subscription will auto-renew on :date.","subscriptions_account_payment":"Which payment option fits you best?","subscriptions_account_upgrade":"Upgrade your account","subscriptions_account_upgrade_choice":"Pick a plan below and join over :customers persons who upgraded their Monica.","subscriptions_account_upgrade_title":"Upgrade Monica today and have more meaningful relationships.","subscriptions_back":"Back to settings","subscriptions_downgrade_cta":"Downgrade","subscriptions_downgrade_limitations":"The free plan has limitations. In order to be able to downgrade, you need to pass the checklist below:","subscriptions_downgrade_rule_contacts":"You must not have more than :number active contacts","subscriptions_downgrade_rule_contacts_constraint":"You currently have 1 contact.|You currently have :count contacts.","subscriptions_downgrade_rule_invitations":"You must not have any pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation.|You currently have :count pending invitations.","subscriptions_downgrade_rule_users":"You must have only 1 user in your account","subscriptions_downgrade_rule_users_constraint":"You currently have 1 user in your account.|You currently have :count users in your account.","subscriptions_downgrade_success":"You are back to the Free plan!","subscriptions_downgrade_thanks":"Thanks so much for trying the paid plan. We keep adding new features on Monica all the time – so you might want to come back in the future to see if you might be interested in taking a subscription again.","subscriptions_downgrade_title":"Downgrade your account to the free plan","subscriptions_help_change_desc":"You can cancel anytime, no questions asked, and all by yourself – no need to contact support. However, you will not be refunded for the current period.","subscriptions_help_change_title":"What if I change my mind?","subscriptions_help_discounts_desc":"We do! Monica is free for students, and free for non-profits and charities. Just contact the support with a proof of your status and we’ll apply this special status in your account.","subscriptions_help_discounts_title":"Do you have discounts for non-profits and education?","subscriptions_help_limits_plan":"Yes. Free plans let you manage :number contacts.","subscriptions_help_limits_title":"Is there a limit to the number of contacts we can have on the free plan?","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by a community who wants to build a great tool for the greater good. Being open source means the code is publicly available on GitHub, and everyone can inspect it, modify it or enhance it. All the money we raise is dedicated to building better features, paying for more powerful servers, and paying other costs. Thanks for your help. We couldn’t do it without you.","subscriptions_help_opensource_title":"What is an open source project?","subscriptions_help_title":"Additional details you may be curious about","subscriptions_payment_cancelled":"This payment was cancelled.","subscriptions_payment_cancelled_title":"Payment Cancelled","subscriptions_payment_confirm_information":"Extra confirmation is needed to process your payment. Please confirm your payment by filling out your payment details below.","subscriptions_payment_confirm_title":"Confirm your :amount payment","subscriptions_payment_error_name":"Please provide your name.","subscriptions_payment_succeeded":"This payment was already successfully confirmed.","subscriptions_payment_succeeded_title":"Payment Successful","subscriptions_payment_success":"The payment was successful.","subscriptions_pdf_title":"Your :name monthly subscription","subscriptions_plan_choose":"Choose this plan","subscriptions_plan_include1":"Included with your upgrade:","subscriptions_plan_include2":"Unlimited number of contacts • Unlimited number of users • Reminders by email • Import with vCard • Personalization of the contact sheet","subscriptions_plan_include3":"100% of the profits go the development of this great open source project.","subscriptions_plan_month_bonus":"Cancel any time","subscriptions_plan_month_cost":"$5/month","subscriptions_plan_month_title":"Pay monthly","subscriptions_plan_year_bonus":"Peace of mind for a whole year","subscriptions_plan_year_cost":"$45/year","subscriptions_plan_year_cost_save":"you’ll save 25%","subscriptions_plan_year_title":"Pay annually","subscriptions_upgrade_charge":"We’ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel at any time, no questions asked.","subscriptions_upgrade_charge_handled":"The payment is handled by Stripe. No card information touches our server.","subscriptions_upgrade_choose":"You picked the :plan plan.","subscriptions_upgrade_credit":"Credit or debit card","subscriptions_upgrade_infos":"We couldn’t be happier. Enter your payment info below.","subscriptions_upgrade_name":"Name on card","subscriptions_upgrade_submit":"Pay {amount}","subscriptions_upgrade_success":"Thank you! You are now subscribed.","subscriptions_upgrade_thanks":"Welcome to the community of people who try to make the world a better place.","subscriptions_upgrade_title":"Upgrade your account","subscriptions_upgrade_zip":"ZIP or postal code","tags_blank_description":"Tags work like folders, but you can add more than one tag to a contact. Go to a contact and tag a friend, right below the name. Once a contact is tagged, come back here to manage all the tags in your account.","tags_blank_title":"Tags are a great way of categorizing your contacts.","tags_list_contact_number":"1 contact|:count contacts","tags_list_delete_confirmation":"Are you sure you want to delete the tag? No contacts will be deleted, only the tag.","tags_list_delete_success":"The tag has been successfully deleted","tags_list_description":"You can organize your contacts by setting up tags. Tags work like folders, but you can add more than one tag to a contact. To add a new tag, add it on the contact itself.","tags_list_title":"Tags","temperature_scale":"Temperature scale","temperature_scale_celsius":"Celsius","temperature_scale_fahrenheit":"Fahrenheit","timezone":"Timezone","title_general":"General Information","title_i18n":"International settings","title_layout":"Layout","users_accept_title":"Accept invitation and create a new account","users_add_confirmation":"I confirm that I want to invite this user to my account. I understand that this person will have access to ALL of my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same access as you do, including inviting or deleting other users, including you. Make sure you trust this person before giving them access.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user to your account by email","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invite someone","users_blank_description":"This person will have the same access that you have, and will be able to add, edit or delete contact information.","users_blank_title":"You are the only one who has access to this account.","users_error_already_invited":"You already have invited this user. Please choose another email address.","users_error_email_already_taken":"This email is already taken. Please choose another one","users_error_email_not_similar":"This is not the email of the person who’ve invited you.","users_error_please_confirm":"Please confirm that you want to invite this user before proceeding with the invitation","users_invitation_deleted_confirmation_message":"The invitation has been successfully deleted","users_invitation_need_subscription":"Adding more users requires a subscription.","users_invitations_delete_confirmation":"Are you sure you want to delete this invitation?","users_list_add_user":"Invite a new user","users_list_delete_confirmation":"Are you sure to delete this user from your account?","users_list_invitations_explanation":"Below are the people you’ve invited to join Monica as a collaborator.","users_list_invitations_invited_by":"invited by :name","users_list_invitations_sent_date":"sent on :date","users_list_invitations_title":"Pending invitations","users_list_title":"Users with access to your account","users_list_you":"That’s you","webauthn_buttonAdvise":"If your security key has a button, press it.","webauthn_delete_confirmation":"Are you sure you want to delete this key?","webauthn_delete_success":"Key deleted","webauthn_enable_description":"Add a new security key","webauthn_error_already_used":"This key is already registered. It’s not necessary to register it again.","webauthn_error_not_allowed":"The operation either timed out or was not allowed.","webauthn_insertKey":"Insert your security key.","webauthn_key_name":"Key name:","webauthn_key_name_help":"Give your key a name.","webauthn_last_use":"Last use: {timestamp}","webauthn_noButtonAdvise":"If it does not, remove it and insert it again.","webauthn_not_secured":"WebAuthn only supports secure connections. Please load this page with https scheme.","webauthn_not_supported":"Your browser doesn’t currently support WebAuthn.","webauthn_success":"Your key is detected and validated.","webauthn_title":"Security key — WebAuthn protocol"},"validation":{"accepted":"The :attribute must be accepted.","active_url":"The :attribute is not a valid URL.","after":"The :attribute must be a date after :date.","after_or_equal":"The :attribute must be a date after or equal to :date.","alpha":"The :attribute may only contain letters.","alpha_dash":"The :attribute may only contain letters, numbers, dashes and underscores.","alpha_num":"The :attribute may only contain letters and numbers.","array":"The :attribute must be an array.","attributes":[],"before":"The :attribute must be a date before :date.","before_or_equal":"The :attribute must be a date before or equal to :date.","between":{"array":"The :attribute must have between :min and :max items.","file":"The :attribute must be between :min and :max kilobytes.","numeric":"The :attribute must be between :min and :max.","string":"The :attribute must be between :min and :max characters."},"boolean":"The :attribute field must be true or false.","confirmed":"The :attribute confirmation does not match.","custom":{"attribute-name":{"rule-name":"custom-message"}},"date":"The :attribute is not a valid date.","date_equals":"The :attribute must be a date equal to :date.","date_format":"The :attribute does not match the format :format.","different":"The :attribute and :other must be different.","digits":"The :attribute must be :digits digits.","digits_between":"The :attribute must be between :min and :max digits.","dimensions":"The :attribute has invalid image dimensions.","distinct":"The :attribute field has a duplicate value.","email":"The :attribute must be a valid email address.","ends_with":"The :attribute must end with one of the following: :values.","exists":"The selected :attribute is invalid.","file":"The :attribute must be a file.","filled":"The :attribute field must have a value.","gt":{"array":"The :attribute must have more than :value items.","file":"The :attribute must be greater than :value kilobytes.","numeric":"The :attribute must be greater than :value.","string":"The :attribute must be greater than :value characters."},"gte":{"array":"The :attribute must have :value items or more.","file":"The :attribute must be greater than or equal :value kilobytes.","numeric":"The :attribute must be greater than or equal :value.","string":"The :attribute must be greater than or equal :value characters."},"image":"The :attribute must be an image.","in":"The selected :attribute is invalid.","in_array":"The :attribute field does not exist in :other.","integer":"The :attribute must be an integer.","ip":"The :attribute must be a valid IP address.","ipv4":"The :attribute must be a valid IPv4 address.","ipv6":"The :attribute must be a valid IPv6 address.","json":"The :attribute must be a valid JSON string.","lt":{"array":"The :attribute must have less than :value items.","file":"The :attribute must be less than :value kilobytes.","numeric":"The :attribute must be less than :value.","string":"The :attribute must be less than :value characters."},"lte":{"array":"The :attribute must not have more than :value items.","file":"The :attribute must be less than or equal :value kilobytes.","numeric":"The :attribute must be less than or equal :value.","string":"The :attribute must be less than or equal :value characters."},"max":{"array":"The :attribute may not have more than :max items.","file":"The :attribute may not be greater than :max kilobytes.","numeric":"The :attribute may not be greater than :max.","string":"The :attribute may not be greater than :max characters."},"mimes":"The :attribute must be a file of type: :values.","mimetypes":"The :attribute must be a file of type: :values.","min":{"array":"The :attribute must have at least :min items.","file":"The :attribute must be at least :min kilobytes.","numeric":"The :attribute must be at least :min.","string":"The :attribute must be at least :min characters."},"not_in":"The selected :attribute is invalid.","not_regex":"The :attribute format is invalid.","numeric":"The :attribute must be a number.","password":"The password is incorrect.","present":"The :attribute field must be present.","regex":"The :attribute format is invalid.","required":"The :attribute field is required.","required_if":"The :attribute field is required when :other is :value.","required_unless":"The :attribute field is required unless :other is in :values.","required_with":"The :attribute field is required when :values is present.","required_with_all":"The :attribute field is required when :values are present.","required_without":"The :attribute field is required when :values is not present.","required_without_all":"The :attribute field is required when none of :values are present.","same":"The :attribute and :other must match.","size":{"array":"The :attribute must contain :size items.","file":"The :attribute must be :size kilobytes.","numeric":"The :attribute must be :size.","string":"The :attribute must be :size characters."},"starts_with":"The :attribute must start with one of the following: :values.","string":"The :attribute must be a string.","timezone":"The :attribute must be a valid zone.","unique":"The :attribute has already been taken.","uploaded":"The :attribute failed to upload.","url":"The :attribute format is invalid.","uuid":"The :attribute must be a valid UUID.","vue":{"max":{"numeric":"{field} may not be greater than {max}.","string":"{field} may not be greater than {max} characters."},"required":"{field} is required.","url":"{field} is not a valid URL."}}}');function l(e,t){return 0}function c(e,t){var a=Math.abs(e);return a=a%10==1&&a%100!=11?0:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?1:2,Math.min(a,t-1)}const d={ar:function(e,t){var a=Math.abs(e);return a=0==a?0:1==a?1:2==a?2:a%100>=3&&a%100<=10?3:a%100>=11&&a%100<=99?4:5,Math.min(a,t-1)},cs:function(e,t){var a=Math.abs(e);return a=1==a?0:a>=2&&a<=4?1:2,Math.min(a,t-1)},fr:function(e,t){var a=Math.abs(e);return a=0==a||1==a?0:1,Math.min(a,t-1)},he:function(e,t){var a=Math.abs(e);return a=1==a?0:2==a?1:a<10&&a%10==0?2:3,Math.min(a,t-1)},hr:c,ja:l,ru:c,tr:l,uk:c,vi:l,zh:l,"zh-TW":l};Vue.use(n.Z),Vue.filter("formatDate",(function(e){if(e)return r()(String(e)).format("LL")})),window.marked=a(7084);const u={i18n:new n.Z({locale:"en",fallbackLocale:"en",messages:{en:_},pluralizationRules:d}),loadedLanguages:["en"],_setI18nLanguage:function(e){this.i18n.locale=e,o().defaults.headers.common["Accept-Language"]=e,document.querySelector("html").setAttribute("lang",e)},_loadLanguageAsync:function(e){var t=this;return this.i18n.locale===e||this.loadedLanguages.includes(e)?Promise.resolve(this.i18n):o().get("js/langs/".concat(e,".json")).then((function(a){return t.i18n.setLocaleMessage(e,a.data),t.loadedLanguages.push(e),t.i18n}))},loadLanguage:function(e,t){var a=this;return this._loadLanguageAsync(e).then((function(i){return t&&a._setI18nLanguage(e),r().locale("zh"===e?"zh-cn":e),i}))}}},9848:(e,t,a)=>{"use strict";var i=a(538),o=a(4765),n=a.n(o);a(9147),window.Vue=i.default,i.default.use(n()),i.default.component("StripeSubscription",a(5519).Z),i.default.component("FormInput",a(4651).Z),i.default.component("ContactSearch",a(4502).Z),a(6880).Z.loadLanguage(window.Laravel.locale,!0).then((function(e){return new i.default({i18n:e,data:{htmldir:window.Laravel.htmldir,locale:e.locale}}).$mount("#app")}))},4245:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>n});var i=a(3645),o=a.n(i)()((function(e){return e[1]}));o.push([e.id,".input[data-v-4de0f45a]{transition:all;transition-duration:.2s;border:1px solid #c4cdd5}.input[data-v-4de0f45a]:focus{border:1px solid #5c6ac4}",""]);const n=o},8260:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>n});var i=a(3645),o=a.n(i)()((function(e){return e[1]}));o.push([e.id,".autosuggest__results-container{position:relative;width:100%}.autosuggest__results,.autosuggest__results-overflow{position:absolute;width:100%;z-index:100}.autosuggest__results-overflow{overflow:scroll;max-height:361px}.autosuggest__results-item{background:#fff}.autosuggest__results-item--highlighted,.autosuggest__results-item:active,.autosuggest__results-item:focus,.autosuggest__results-item:hover{background:#f5f5f5}",""]);const n=o},9752:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>n});var i=a(3645),o=a.n(i)()((function(e){return e[1]}));o.push([e.id,".avatar-new[data-v-bf52d8fa]{background-color:#fdb660}.item-search-result[data-v-bf52d8fa]{position:relative;background:transparent}.item-search-result a[data-v-bf52d8fa]{color:inherit;text-decoration:none;vertical-align:middle;background:transparent}.item-search-result a span[data-v-bf52d8fa]{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1}.item-search-result a[data-v-bf52d8fa]:hover{background:inherit;color:inherit}.item-search-result .avatar[data-v-bf52d8fa]{border-radius:3px;display:inline-block;height:36px;margin:10px;width:36px}.item-search-result .avatar-initials[data-v-bf52d8fa]{text-align:center;padding-top:6px;font-size:15px;color:#fff}.item-search-result[data-v-bf52d8fa]:last-child{border-bottom:initial}",""]);const n=o},595:(e,t,a)=>{var i={"./ar":867,"./ar.js":867,"./de":9740,"./de.js":9740,"./en-gb":2243,"./en-gb.js":2243,"./es":7093,"./es.js":7093,"./fr":4470,"./fr.js":4470,"./he":4206,"./he.js":4206,"./it":626,"./it.js":626,"./nl":3901,"./nl.js":3901,"./sv":8760,"./sv.js":8760,"./tr":2397,"./tr.js":2397,"./zh-cn":3839,"./zh-cn.js":3839,"./zh-tw":4152,"./zh-tw.js":4152};function o(e){var t=n(e);return a(t)}function n(e){if(!a.o(i,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return i[e]}o.keys=function(){return Object.keys(i)},o.resolve=n,e.exports=o,o.id=595},4651:(e,t,a)=>{"use strict";a.d(t,{Z:()=>o});const i={props:{value:{type:[String,Number],default:""},title:{type:String,default:""},label:{type:String,default:null},id:{type:String,default:""},placeholder:{type:String,default:""},required:{type:Boolean,default:!0},inputType:{type:String,default:""},step:{type:String,default:""},width:{type:Number,default:-1},iclass:{type:[String,Array],default:""},maxlength:{type:Number,default:null},validator:{type:Object,default:null}},computed:{realid:function(){return this.id+this._uid},inputClass:function(){var e=[""!=this.iclass?this.iclass:"br2 f5 w-100 ba b--black-40 pa2 outline-0"];return this.validator&&e.push({error:this.validator.$error}),e.push("input"),e},inputStyle:function(){return this.width>=0?"width:"+this.width+"px":""},field:function(){return this.label&&this.label.length>0?this.label:this.title},requiredMessage:function(){return this.$t("validation.vue.required",{field:this.field})},urlMessage:function(){return this.$t("validation.vue.url",{field:this.field})},maxLengthMessage:function(){switch(this.inputType){case"number":"numeric"}return this.$t("validation.vue.max.".type,{field:this.field,max:this.validator?this.validator.$params.maxLength.max:""})}},methods:{focus:function(){this.$refs.input.focus()},onInput:function(e){this.validator&&void 0!==e.data&&this.validator.$reset(),this.$emit("input",e.target.value)},onSubmit:function(e){this.validator&&this.validator.$touch(),this.$emit("submit",e.target.value)},onBlur:function(e){this.validator&&""!==e.target.value&&this.validator.$touch(),this.$emit("blur",e.target.value)},onChange:function(e){this.validator&&this.validator.$touch(),this.$emit("change",e.target.value)}}};a(3553);const o=(0,a(1900).Z)(i,(function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{class:{"form-group-error":e.validator&&e.validator.$error}},[e.title?a("label",{staticClass:"mb2",class:{b:e.required,error:e.validator&&e.validator.$error},attrs:{for:e.realid}},[e._v("\n "+e._s(e.title)+"\n ")]):e._e(),e._v(" "),a("input",{ref:"input",class:e.inputClass,style:e.inputStyle,attrs:{id:e.realid,type:e.inputType,autofocus:"",required:e.required,name:e.id,placeholder:e.placeholder,maxlength:e.maxlength,step:e.step},domProps:{value:e.value},on:{input:function(t){return e.onInput(t)},blur:function(t){return e.onBlur(t)},change:function(t){return e.onChange(t)},keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.onSubmit(t)}}}),e._v(" "),e.validator&&e.validator.$error&&void 0!==e.validator.required&&!e.validator.required?a("small",{staticClass:"error"},[e._v("\n "+e._s(e.requiredMessage)+"\n ")]):e._e(),e._v(" "),e.validator&&e.validator.$error&&void 0!==e.validator.maxLength&&!e.validator.maxLength?a("small",{staticClass:"error"},[e._v("\n "+e._s(e.maxLengthMessage)+"\n ")]):e._e(),e._v(" "),e.validator&&e.validator.$error&&void 0!==e.validator.url&&!e.validator.url?a("small",{staticClass:"error"},[e._v("\n "+e._s(e.urlMessage)+"\n ")]):e._e()])}),[],!1,null,"4de0f45a",null).exports},4502:(e,t,a)=>{"use strict";a.d(t,{Z:()=>s});var i=a(3363),o=a(8862);const n={components:{ContactAutosuggest:i.Z},props:{title:{type:String,default:null},required:{type:Boolean,default:!0},placeholder:{type:String,default:""},formNameOrder:{type:String,default:"firstname"}},computed:{componentItem:function(){return o.Z}},methods:{select:function(e){if(e.item.id>0)window.location=e.item.route;else{var t,a,i=e.item.keyword.split(" ").map((function(e){return _.capitalize(e)}));"firstname"==this.formNameOrder?(t=i[0],a=i.slice(1).join(" ")):(t=i.slice(1).join(" "),a=i[0]);var o=new URLSearchParams;t&&o.set("first_name",t),a&&o.set("last_name",a),window.location="people/add"+(""!=o?"?"+o:"")}}}};const s=(0,a(1900).Z)(n,(function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[a("contact-autosuggest",{attrs:{title:e.title,required:e.required,placeholder:e.placeholder,"component-item":e.componentItem,"input-class":"header-search-input"},on:{select:e.select}})],1)}),[],!1,null,null,null).exports},3363:(e,t,a)=>{"use strict";a.d(t,{Z:()=>s});var i=a(9669),o=a.n(i);const n={components:{VueAutosuggest:a(3106).iC},props:{id:{type:String,default:null},title:{type:String,default:null},required:{type:Boolean,default:!0},addNoResult:{type:Boolean,default:!0},placeholder:{type:String,default:""},componentItem:{type:Object,default:function(){return null}},wait:{type:Number,default:200},minLen:{type:Number,default:1},overflow:{type:Boolean,default:!1},inputClass:{type:String,default:""},filter:{type:Function,default:function(){return!0}}},data:function(){return{items:[],callUpdateItems:null,cache:[]}},computed:{realid:function(){return this.id?this.id:"autosuggest__input"},inputProps:function(){return{id:this.realid,placeholder:this.placeholder,class:["form-control",this.inputClass]}}},mounted:function(){var e=this;this.callUpdateItems=_.debounce((function(t){e.getContacts(t,e).then((function(a){e.cache[t]=a,e.displayItems(t)}))}),this.wait)},methods:{updateItems:function(e){null!=e&&(e.length0?e.item.complete_name:e.item.keyword}}};a(4366);const s=(0,a(1900).Z)(n,(function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[e.title?a("label",{staticClass:"mb2",class:{b:e.required},attrs:{for:e.realid}},[e._v("\n "+e._s(e.title)+"\n ")]):e._e(),e._v(" "),a("vue-autosuggest",{ref:"autosuggest",attrs:{suggestions:e.items,"input-props":e.inputProps,"get-suggestion-value":e.getSuggestionValue,"component-attr-class-autosuggest-results":e.overflow?"autosuggest__results-overflow":"autosuggest__results"},on:{selected:e.selectHandler,click:e.clickHandler,blur:e.blurHandler,input:e.updateItems},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.suggestion;return[a(e.componentItem,{tag:"component",attrs:{item:i.item}})]}}])})],1)}),[],!1,null,null,null).exports},8862:(e,t,a)=>{"use strict";a.d(t,{Z:()=>o});const i={props:{item:{type:Object,required:!0,default:null},withName:{type:Boolean,default:!0},className:{type:String,default:"avatar"}},data:function(){return{check:!0}}};a(1198);const o=(0,a(1900).Z)(i,(function(){var e=this,t=e.$createElement,a=e._self._c||t;return e.item.id>0?a("div",{staticClass:"item-search-result",attrs:{"data-contact":e.item.id,"data-name":e.item.name}},[a("a",{attrs:{href:e.item.route}},[e.check?a("img",{class:e.className,attrs:{src:e.item.information.avatar.url,alt:e.item.complete_name},on:{error:function(t){e.check=!1}}}):a("div",{class:[e.className,"avatar-initials"],style:"background-color: "+e.item.information.avatar.default_avatar_color},[e._v("\n "+e._s(e.item.initials)+"\n ")]),e._v(" "),e.withName?[e._v("\n "+e._s(e.item.complete_name)+"\n ")]:e._e(),e._v(" "),a("span")],2)]):a("div",{staticClass:"item-search-result"},[a("div",{staticClass:"avatar avatar-initials avatar-new"},[e._v("\n +\n ")]),e._v("\n "+e._s(e.$t("people.people_add_new"))+"\n "),a("span")])}),[],!1,null,"bf52d8fa",null).exports},5519:(e,t,a)=>{"use strict";a.d(t,{Z:()=>o});const i={props:{name:{type:String,default:""},stripeKey:{type:String,default:""},clientSecret:{type:String,default:""},plan:{type:String,default:""},amount:{type:String,default:""},callback:{type:String,default:""},token:{type:String,default:""},confirm:{type:Boolean,default:!1},paymentSucceeded:{type:Boolean,default:!1},paymentCancelled:{type:Boolean,default:!1}},data:function(){return{selectedName:"",stripe:null,zip:"",errors:"",successMessage:"",cardElement:null,paymentMethod:"",paymentProcessing:!1,paymentProcessed:!1}},watch:{name:function(){this.selectedName=this.name}},mounted:function(){this.selectedName=this.name,(this.paymentSucceeded||this.paymentCancelled)&&(this.paymentProcessed=!0),this.paymentProcessed||this.start()},methods:{start:function(){this.stripe=Stripe(this.stripeKey);var e=this.stripe.elements();this.cardElement=e.create("card",{hidePostalCode:!0,style:{base:{color:"#32325d",lineHeight:"18px",fontFamily:'"Helvetica Neue", Helvetica, sans-serif',fontSmoothing:"antialiased",fontSize:"16px","::placeholder":{color:"#aab7c4"}},invalid:{color:"#fa755a",iconColor:"#fa755a"}}}),this.cardElement.mount("#card-element");var t=this;this.cardElement.addEventListener("change",(function(e){e.error?t.errors=e.error.message:t.errors=""}))},handleError:function(e){"parameter_invalid_empty"===e.code&&"payment_method_data[billing_details][name]"===e.param?this.errors=this.$t("settings.subscriptions_payment_error_name"):this.errors=e.message},subscribe:function(){var e=this;this.errors="",this.paymentProcessing=!0,this.paymentProcessed=!1,this.stripe.handleCardSetup(e.clientSecret,e.cardElement,{payment_method_data:{billing_details:{name:e.selectedName,address:{postal_code:e.zip}}}}).then((function(t){e.paymentProcessing=!1,t.error?e.handleError(t.error):(e.paymentProcessed=!0,e.paymentSucceeded=!0,e.successMessage=e.$t("settings.subscriptions_payment_success"),e.notify(e.successMessage,!0),e.processPayment(t.setupIntent))}))},processPayment:function(e){var t=this;this.paymentMethod=e.payment_method,setTimeout((function(){t.$refs.form.submit()}),10)},confirmPayment:function(){var e=this;this.paymentProcessing=!0,this.paymentProcessed=!1,this.errorMessage="",this.stripe.handleCardPayment(e.clientSecret,e.cardElement,{payment_method_data:{billing_details:{name:this.selectedName}}}).then((function(t){e.paymentProcessing=!1,t.error?e.handleError(t.error):(e.paymentProcessed=!0,e.paymentSucceeded=!0,e.successMessage=e.$t("settings.subscriptions_payment_success"),e.notify(e.successMessage,!0),setTimeout((function(){window.location=e.callback}),3e3))}))},notify:function(e,t){this.$notify({group:"subscription",title:e,text:"",type:t?"success":"error"})}}};const o=(0,a(1900).Z)(i,(function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("form",{ref:"form",staticClass:"mb4",attrs:{action:e.callback,method:"post"},on:{submit:function(t){return t.preventDefault(),e.subscribe()}}},[a("notifications",{attrs:{group:"subscription",position:"top middle",duration:5e3,width:"400"}}),e._v(" "),a("div",{staticClass:"form-group"},[e.errors?a("div",{staticClass:"alert alert-danger w-100",attrs:{role:"alert"}},[e._v("\n "+e._s(e.errors)+"\n ")]):e._e(),e._v(" "),e.paymentSucceeded?a("div",[a("h1",{staticClass:"text-xl mt-2 mb-4 text-gray-700"},[e._v("\n "+e._s(e.$t("settings.subscriptions_payment_succeeded_title"))+"\n ")]),e._v(" "),e.successMessage?a("p",{staticClass:"mb-6"},[e._v("\n "+e._s(e.successMessage)+"\n ")]):a("p",{staticClass:"mb-6"},[e._v("\n "+e._s(e.$t("settings.subscriptions_payment_succeeded"))+"\n ")])]):e.paymentCancelled?a("div",[a("h1",{staticClass:"text-xl mt-2 mb-4 text-gray-700"},[e._v("\n "+e._s(e.$t("settings.subscriptions_payment_cancelled_title"))+"\n ")]),e._v(" "),a("p",{staticClass:"mb-6"},[e._v("\n "+e._s(e.$t("settings.subscriptions_payment_cancelled"))+"\n ")])]):e.paymentProcessed?e._e():a("div",{staticClass:"b--gray-monica ba pa4 br2 mb3 bg-black-05",attrs:{id:"payment-elements"}},[a("div",{staticClass:"form-row"},[a("div",{staticClass:"mb3"},[a("form-input",{attrs:{id:"cardholder-name","input-type":"text",iclass:"br3 b--black-30 ba pa3 w-100 f4",required:!0,title:e.$t("settings.subscriptions_upgrade_name")},model:{value:e.selectedName,callback:function(t){e.selectedName=t},expression:"selectedName"}})],1),e._v(" "),a("div",{staticClass:"mb3"},[a("form-input",{attrs:{id:"address-zip","input-type":"text",iclass:"br3 b--black-30 ba pa3 w-100 f4",title:e.$t("settings.subscriptions_upgrade_zip")},model:{value:e.zip,callback:function(t){e.zip=t},expression:"zip"}})],1),e._v(" "),a("label",{attrs:{for:"card-element"}},[e._v("\n "+e._s(e.$t("settings.subscriptions_upgrade_credit"))+"\n ")]),e._v(" "),a("div",{attrs:{id:"card-element"}})]),e._v(" "),a("button",{staticClass:"btn btn-primary w-100 mt3",attrs:{id:"card-button",disabled:e.paymentProcessing},domProps:{innerHTML:e._s(e.$t("settings.subscriptions_upgrade_submit",{amount:e.amount}))},on:{click:function(t){t.preventDefault(),e.confirm?e.confirmPayment():e.subscribe()}}})]),e._v(" "),e.paymentProcessed?a("a",{staticClass:"btn btn-secondary w-100 tc",attrs:{href:e.callback}},[e._v("\n "+e._s(e.$t("app.go_back"))+"\n ")]):e._e()]),e._v(" "),a("input",{attrs:{type:"hidden",name:"_token"},domProps:{value:e.token}}),e._v(" "),a("input",{attrs:{type:"hidden",name:"plan"},domProps:{value:e.plan}}),e._v(" "),a("input",{attrs:{type:"hidden",name:"payment_method"},domProps:{value:e.paymentMethod}})],1)}),[],!1,null,null,null).exports},3553:(e,t,a)=>{var i=a(4245);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,a(5346).Z)("2026d81d",i,!0,{})},4366:(e,t,a)=>{var i=a(8260);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,a(5346).Z)("49ad299d",i,!0,{})},1198:(e,t,a)=>{var i=a(9752);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[e.id,i,""]]),i.locals&&(e.exports=i.locals);(0,a(5346).Z)("b6858088",i,!0,{})}},e=>{"use strict";e.O(0,[898],(()=>{return t=9848,e(e.s=t);var t}));e.O()}]); \ No newline at end of file diff --git a/public/js/u2f-api.js b/public/js/u2f-api.js deleted file mode 100644 index 8b137891791..00000000000 --- a/public/js/u2f-api.js +++ /dev/null @@ -1 +0,0 @@ - diff --git a/public/js/vendor.js b/public/js/vendor.js deleted file mode 100644 index cb21b8e4af2..00000000000 --- a/public/js/vendor.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see vendor.js.LICENSE.txt */ -(self.webpackChunk=self.webpackChunk||[]).push([[898],{600:(e,t,n)=>{"use strict";n.d(t,{Z:()=>h});var r=n(381),i=n.n(r);function o(){return(o=Object.assign||function(e){for(var t=1;t")])]),e._v(" "),n("div",{class:e.isRtl?"flex-rtl":""},[e._l(e.daysOfWeek,(function(t){return n("span",{key:t.timestamp,staticClass:"cell day-header"},[e._v(e._s(t))])})),e._v(" "),e.blankDays>0?e._l(e.blankDays,(function(e){return n("span",{key:e.timestamp,staticClass:"cell day blank"})})):e._e(),e._l(e.days,(function(t){return n("span",{key:t.timestamp,staticClass:"cell day",class:e.dayClasses(t),domProps:{innerHTML:e._s(e.dayCellContent(t))},on:{click:function(n){return e.selectDate(t)}}})}))],2)],2)},staticRenderFns:[]},undefined,{props:{showDayView:Boolean,selectedDate:Date,pageDate:Date,pageTimestamp:Number,fullMonthName:Boolean,allowedToShowView:Function,dayCellContent:{type:Function,default:function(e){return e.date}},disabledDates:Object,highlighted:Object,calendarClass:[String,Object,Array],calendarStyle:Object,language:String,mondayFirst:Boolean,useUtc:Boolean},data:function(){return{utils:s(this.useUtc,this.language)}},watch:{language:function(e){this.utils=s(this.useUtc,e)},useUtc:function(e){this.utils=s(e,this.language)}},computed:{isRtl:function(){return-1!==u.indexOf(this.language)},daysOfWeek:function(){return this.utils.getDaysOfWeek(this.mondayFirst)},blankDays:function(){var e=this.pageDate,t=this.useUtc?new Date(Date.UTC(e.getUTCFullYear(),e.getUTCMonth(),1)):new Date(e.getFullYear(),e.getMonth(),1,e.getHours(),e.getMinutes());return this.mondayFirst?this.utils.getDay(t)>0?this.utils.getDay(t)-1:6:this.utils.getDay(t)},days:function(){for(var e=this.pageDate,t=[],n=this.useUtc?new Date(Date.UTC(e.getUTCFullYear(),e.getUTCMonth(),1)):new Date(e.getFullYear(),e.getMonth(),1,e.getHours(),e.getMinutes()),r=this.utils.daysInMonth(this.utils.getFullYear(n),this.utils.getMonth(n)),i=0;i=this.utils.getMonth(e)&&this.utils.getFullYear(this.disabledDates.to)>=this.utils.getFullYear(e)},nextMonth:function(){this.isNextMonthDisabled()||this.changeMonth(1)},isNextMonthDisabled:function(){if(!this.disabledDates||!this.disabledDates.from)return!1;var e=this.pageDate;return this.utils.getMonth(this.disabledDates.from)<=this.utils.getMonth(e)&&this.utils.getFullYear(this.disabledDates.from)<=this.utils.getFullYear(e)},isSelectedDate:function(e){return this.selectedDate&&this.utils.compareDates(this.selectedDate,e)},isDisabledDate:function(e){var t=this,n=!1;return void 0!==this.disabledDates&&(void 0!==this.disabledDates.dates&&this.disabledDates.dates.forEach((function(r){if(t.utils.compareDates(e,r))return n=!0,!0})),void 0!==this.disabledDates.to&&this.disabledDates.to&&ethis.disabledDates.from&&(n=!0),void 0!==this.disabledDates.ranges&&this.disabledDates.ranges.forEach((function(t){if(void 0!==t.from&&t.from&&void 0!==t.to&&t.to&&et.from)return n=!0,!0})),void 0!==this.disabledDates.days&&-1!==this.disabledDates.days.indexOf(this.utils.getDay(e))&&(n=!0),void 0!==this.disabledDates.daysOfMonth&&-1!==this.disabledDates.daysOfMonth.indexOf(this.utils.getDate(e))&&(n=!0),"function"==typeof this.disabledDates.customPredictor&&this.disabledDates.customPredictor(e)&&(n=!0),n)},isHighlightedDate:function(e){var t=this;if((!this.highlighted||!this.highlighted.includeDisabled)&&this.isDisabledDate(e))return!1;var n=!1;return void 0!==this.highlighted&&(void 0!==this.highlighted.dates&&this.highlighted.dates.forEach((function(r){if(t.utils.compareDates(e,r))return n=!0,!0})),this.isDefined(this.highlighted.from)&&this.isDefined(this.highlighted.to)&&(n=e>=this.highlighted.from&&e<=this.highlighted.to),void 0!==this.highlighted.days&&-1!==this.highlighted.days.indexOf(this.utils.getDay(e))&&(n=!0),void 0!==this.highlighted.daysOfMonth&&-1!==this.highlighted.daysOfMonth.indexOf(this.utils.getDate(e))&&(n=!0),"function"==typeof this.highlighted.customPredictor&&this.highlighted.customPredictor(e)&&(n=!0),n)},dayClasses:function(e){return{selected:e.isSelected,disabled:e.isDisabled,highlighted:e.isHighlighted,today:e.isToday,weekend:e.isWeekend,sat:e.isSaturday,sun:e.isSunday,"highlight-start":e.isHighlightStart,"highlight-end":e.isHighlightEnd}},isHighlightStart:function(e){return this.isHighlightedDate(e)&&this.highlighted.from instanceof Date&&this.utils.getFullYear(this.highlighted.from)===this.utils.getFullYear(e)&&this.utils.getMonth(this.highlighted.from)===this.utils.getMonth(e)&&this.utils.getDate(this.highlighted.from)===this.utils.getDate(e)},isHighlightEnd:function(e){return this.isHighlightedDate(e)&&this.highlighted.to instanceof Date&&this.utils.getFullYear(this.highlighted.to)===this.utils.getFullYear(e)&&this.utils.getMonth(this.highlighted.to)===this.utils.getMonth(e)&&this.utils.getDate(this.highlighted.to)===this.utils.getDate(e)},isDefined:function(e){return void 0!==e&&e}}},undefined,!1,undefined,void 0,void 0),PickerMonth:d({render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{directives:[{name:"show",rawName:"v-show",value:e.showMonthView,expression:"showMonthView"}],class:[e.calendarClass,"vdp-datepicker__calendar"],style:e.calendarStyle,on:{mousedown:function(e){e.preventDefault()}}},[e._t("beforeCalendarHeader"),e._v(" "),n("header",[n("span",{staticClass:"prev",class:{disabled:e.isLeftNavDisabled},on:{click:function(t){e.isRtl?e.nextYear():e.previousYear()}}},[e._v("<")]),e._v(" "),n("span",{staticClass:"month__year_btn",class:e.allowedToShowView("year")?"up":"",on:{click:e.showYearCalendar}},[e._v(e._s(e.pageYearName))]),e._v(" "),n("span",{staticClass:"next",class:{disabled:e.isRightNavDisabled},on:{click:function(t){e.isRtl?e.previousYear():e.nextYear()}}},[e._v(">")])]),e._v(" "),e._l(e.months,(function(t){return n("span",{key:t.timestamp,staticClass:"cell month",class:{selected:t.isSelected,disabled:t.isDisabled},on:{click:function(n){return n.stopPropagation(),e.selectMonth(t)}}},[e._v(e._s(t.month))])}))],2)},staticRenderFns:[]},undefined,{props:{showMonthView:Boolean,selectedDate:Date,pageDate:Date,pageTimestamp:Number,disabledDates:Object,calendarClass:[String,Object,Array],calendarStyle:Object,language:String,allowedToShowView:Function,useUtc:Boolean},data:function(){return{utils:s(this.useUtc,this.language)}},watch:{language:function(e){this.utils=s(this.useUtc,e)},useUtc:function(e){this.utils=s(e,this.language)}},computed:{isRtl:function(){return-1!==u.indexOf(this.language)},months:function(){for(var e=this.pageDate,t=[],n=this.useUtc?new Date(Date.UTC(e.getUTCFullYear(),0,e.getUTCDate())):new Date(e.getFullYear(),0,e.getDate(),e.getHours(),e.getMinutes()),r=0;r<12;r++)t.push({month:this.utils.getMonthName(n),timestamp:n.getTime(),isSelected:this.isSelectedMonth(n),isDisabled:this.isDisabledMonth(n)}),this.utils.setMonth(n,this.utils.getMonth(n)+1);return t},pageYearName:function(){var e=f[this.language]||"";return""+this.utils.getFullYear(this.pageDate)+e},isLeftNavDisabled:function(){return this.isRtl?this.isNextYearDisabled(this.pageTimestamp):this.isPreviousYearDisabled(this.pageTimestamp)},isRightNavDisabled:function(){return this.isRtl?this.isPreviousYearDisabled(this.pageTimestamp):this.isNextYearDisabled(this.pageTimestamp)}},methods:{selectMonth:function(e){if(e.isDisabled)return!1;this.$emit("selectMonth",e)},changeYear:function(e){var t=this.pageDate;this.utils.setFullYear(t,this.utils.getFullYear(t)+e),this.$emit("changedYear",t)},previousYear:function(){this.isPreviousYearDisabled()||this.changeYear(-1)},isPreviousYearDisabled:function(){return!(!this.disabledDates||!this.disabledDates.to)&&this.utils.getFullYear(this.disabledDates.to)>=this.utils.getFullYear(this.pageDate)},nextYear:function(){this.isNextYearDisabled()||this.changeYear(1)},isNextYearDisabled:function(){return!(!this.disabledDates||!this.disabledDates.from)&&this.utils.getFullYear(this.disabledDates.from)<=this.utils.getFullYear(this.pageDate)},showYearCalendar:function(){this.$emit("showYearCalendar")},isSelectedMonth:function(e){return this.selectedDate&&this.utils.getFullYear(this.selectedDate)===this.utils.getFullYear(e)&&this.utils.getMonth(this.selectedDate)===this.utils.getMonth(e)},isDisabledMonth:function(e){var t=!1;return void 0!==this.disabledDates&&(void 0!==this.disabledDates.to&&this.disabledDates.to&&(this.utils.getMonth(e)this.utils.getMonth(this.disabledDates.from)&&this.utils.getFullYear(e)>=this.utils.getFullYear(this.disabledDates.from)||this.utils.getFullYear(e)>this.utils.getFullYear(this.disabledDates.from))&&(t=!0),"function"==typeof this.disabledDates.customPredictor&&this.disabledDates.customPredictor(e)&&(t=!0),t)}}},undefined,!1,undefined,void 0,void 0),PickerYear:d({render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{directives:[{name:"show",rawName:"v-show",value:e.showYearView,expression:"showYearView"}],class:[e.calendarClass,"vdp-datepicker__calendar"],style:e.calendarStyle,on:{mousedown:function(e){e.preventDefault()}}},[e._t("beforeCalendarHeader"),e._v(" "),n("header",[n("span",{staticClass:"prev",class:{disabled:e.isLeftNavDisabled},on:{click:function(t){e.isRtl?e.nextDecade():e.previousDecade()}}},[e._v("<")]),e._v(" "),n("span",[e._v(e._s(e.getPageDecade))]),e._v(" "),n("span",{staticClass:"next",class:{disabled:e.isRightNavDisabled},on:{click:function(t){e.isRtl?e.previousDecade():e.nextDecade()}}},[e._v(">")])]),e._v(" "),e._l(e.years,(function(t){return n("span",{key:t.timestamp,staticClass:"cell year",class:{selected:t.isSelected,disabled:t.isDisabled},on:{click:function(n){return n.stopPropagation(),e.selectYear(t)}}},[e._v(e._s(t.year))])}))],2)},staticRenderFns:[]},undefined,{props:{showYearView:Boolean,selectedDate:Date,pageDate:Date,pageTimestamp:Number,disabledDates:Object,highlighted:Object,calendarClass:[String,Object,Array],calendarStyle:Object,language:String,allowedToShowView:Function,useUtc:Boolean},watch:{language:function(e){this.utils=s(this.useUtc,e)},useUtc:function(e){this.utils=s(e,this.language)}},computed:{isRtl:function(){return-1!==u.indexOf(this.language)},years:function(){for(var e=this.pageDate,t=[],n=this.useUtc?new Date(Date.UTC(10*Math.floor(e.getUTCFullYear()/10),e.getUTCMonth(),e.getUTCDate())):new Date(10*Math.floor(e.getFullYear()/10),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes()),r=0;r<10;r++)t.push({year:this.utils.getFullYear(n),timestamp:n.getTime(),isSelected:this.isSelectedYear(n),isDisabled:this.isDisabledYear(n)}),this.utils.setFullYear(n,this.utils.getFullYear(n)+1);return t},getPageDecade:function(){var e=10*Math.floor(this.utils.getFullYear(this.pageDate)/10);return e+" - "+(e+9)+(f[this.language]||"")},isLeftNavDisabled:function(){return this.isRtl?this.isNextDecadeDisabled(this.pageTimestamp):this.isPreviousDecadeDisabled(this.pageTimestamp)},isRightNavDisabled:function(){return this.isRtl?this.isPreviousDecadeDisabled(this.pageTimestamp):this.isNextDecadeDisabled(this.pageTimestamp)}},data:function(){return{utils:s(this.useUtc,this.language)}},methods:{selectYear:function(e){if(e.isDisabled)return!1;this.$emit("selectYear",e)},changeYear:function(e){var t=this.pageDate;this.utils.setFullYear(t,this.utils.getFullYear(t)+e),this.$emit("changedDecade",t)},previousDecade:function(){if(this.isPreviousDecadeDisabled())return!1;this.changeYear(-10)},isPreviousDecadeDisabled:function(){return!(!this.disabledDates||!this.disabledDates.to)&&this.utils.getFullYear(this.disabledDates.to)>10*Math.floor(this.utils.getFullYear(this.pageDate)/10)-1},nextDecade:function(){if(this.isNextDecadeDisabled())return!1;this.changeYear(10)},isNextDecadeDisabled:function(){return!(!this.disabledDates||!this.disabledDates.from)&&this.utils.getFullYear(this.disabledDates.from)<10*Math.ceil(this.utils.getFullYear(this.pageDate)/10)},isSelectedYear:function(e){return this.selectedDate&&this.utils.getFullYear(this.selectedDate)===this.utils.getFullYear(e)},isDisabledYear:function(e){var t=!1;return!(void 0===this.disabledDates||!this.disabledDates)&&(void 0!==this.disabledDates.to&&this.disabledDates.to&&this.utils.getFullYear(e)this.utils.getFullYear(this.disabledDates.from)&&(t=!0),"function"==typeof this.disabledDates.customPredictor&&this.disabledDates.customPredictor(e)&&(t=!0),t)}}},undefined,!1,undefined,void 0,void 0)},props:{value:{validator:function(e){return c.validateDateInput(e)}},name:String,refName:String,id:String,format:{type:[String,Function],default:"DD MMM YYYY"},language:{type:String,default:"en"},openDate:{validator:function(e){return c.validateDateInput(e)}},dayCellContent:Function,fullMonthName:Boolean,disabledDates:Object,highlighted:Object,placeholder:String,inline:Boolean,calendarClass:[String,Object,Array],inputClass:[String,Object,Array],wrapperClass:[String,Object,Array],mondayFirst:Boolean,clearButton:Boolean,clearButtonIcon:String,calendarButton:Boolean,calendarButtonIcon:String,calendarButtonIconContent:String,bootstrapStyling:Boolean,initialView:String,disabled:Boolean,required:Boolean,typeable:Boolean,parseTypedDate:Function,useUtc:Boolean,minimumView:{type:String,default:"day"},maximumView:{type:String,default:"year"},showCalendarOnFocus:Boolean},data:function(){var e=this.openDate?new Date(this.openDate):new Date,t=s(this.useUtc,this.language);return{pageTimestamp:t.setDate(e,1),selectedDate:null,showDayView:!1,showMonthView:!1,showYearView:!1,calendarHeight:0,resetTypedDate:new Date,utils:t}},watch:{language:function(e){this.utils=s(this.useUtc,e)},useUtc:function(e){this.utils=s(e,this.language)},value:function(e){this.setValue(e)},openDate:function(){this.setPageDate()},initialView:function(){this.setInitialView()}},computed:{computedInitialView:function(){return this.initialView?this.initialView:this.minimumView},pageDate:function(){return new Date(this.pageTimestamp)},calendarStyle:function(){return{position:this.isInline?"static":void 0}},isOpen:function(){return this.showDayView||this.showMonthView||this.showYearView},isInline:function(){return!!this.inline},isRtl:function(){return-1!==u.indexOf(this.language)}},methods:{resetDefaultPageDate:function(){null!==this.selectedDate?this.setPageDate(this.selectedDate):this.setPageDate()},showCalendar:function(){return!this.disabled&&!this.isInline&&(this.isOpen?this.close(!0):(this.setInitialView(),void this.$emit("opened")))},setInitialView:function(){var e=this.computedInitialView;if(!this.allowedToShowView(e))throw new Error("initialView '"+this.initialView+"' cannot be rendered based on minimum '"+this.minimumView+"' and maximum '"+this.maximumView+"'");switch(e){case"year":this.showYearCalendar();break;case"month":this.showMonthCalendar();break;default:this.showDayCalendar()}},allowedToShowView:function(e){var t=["day","month","year"],n=t.indexOf(this.minimumView),r=t.indexOf(this.maximumView),i=t.indexOf(e);return i>=n&&i<=r},showDayCalendar:function(){return!!this.allowedToShowView("day")&&(this.close(),this.showDayView=!0,!0)},showMonthCalendar:function(){return!!this.allowedToShowView("month")&&(this.close(),this.showMonthView=!0,!0)},showYearCalendar:function(){return!!this.allowedToShowView("year")&&(this.close(),this.showYearView=!0,!0)},setDate:function(e){var t=new Date(e);this.selectedDate=t,this.setPageDate(t),this.$emit("selected",t),this.$emit("input",t)},clearDate:function(){this.selectedDate=null,this.setPageDate(),this.$emit("selected",null),this.$emit("input",null),this.$emit("cleared")},selectDate:function(e){this.setDate(e.timestamp),this.isInline||this.close(!0),this.resetTypedDate=new Date},selectDisabledDate:function(e){this.$emit("selectedDisabled",e)},selectMonth:function(e){var t=new Date(e.timestamp);this.allowedToShowView("day")?(this.setPageDate(t),this.$emit("changedMonth",e),this.showDayCalendar()):this.selectDate(e)},selectYear:function(e){var t=new Date(e.timestamp);this.allowedToShowView("month")?(this.setPageDate(t),this.$emit("changedYear",e),this.showMonthCalendar()):this.selectDate(e)},setValue:function(e){if("string"==typeof e||"number"==typeof e){var t=this.utils.parseDate(e);e=isNaN(t.valueOf())?null:t}if(!e)return this.setPageDate(),void(this.selectedDate=null);this.selectedDate=e,this.setPageDate(e)},setPageDate:function(e){e||(e=this.openDate?new Date(this.openDate):new Date),this.pageTimestamp=this.utils.setDate(new Date(e),1)},handleChangedMonthFromDayPicker:function(e){this.setPageDate(e),this.$emit("changedMonth",e)},setTypedDate:function(e){this.setDate(e.getTime())},close:function(e){this.showDayView=this.showMonthView=this.showYearView=!1,this.isInline||(e&&this.$emit("closed"),document.removeEventListener("click",this.clickOutside,!1))},init:function(){this.value&&this.setValue(this.value),this.isInline&&this.setInitialView()}},mounted:function(){this.init()}};!function(e,t){void 0===t&&(t={});var n=t.insertAt;if(e&&"undefined"!=typeof document){var r=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===n&&r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}("");const h=d({render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"vdp-datepicker",class:[e.wrapperClass,e.isRtl?"rtl":""]},[n("date-input",{attrs:{selectedDate:e.selectedDate,resetTypedDate:e.resetTypedDate,format:e.format,language:e.language,inline:e.inline,id:e.id,name:e.name,refName:e.refName,openDate:e.openDate,placeholder:e.placeholder,inputClass:e.inputClass,typeable:e.typeable,"parse-typed-date":e.parseTypedDate,clearButton:e.clearButton,clearButtonIcon:e.clearButtonIcon,calendarButton:e.calendarButton,calendarButtonIcon:e.calendarButtonIcon,calendarButtonIconContent:e.calendarButtonIconContent,disabled:e.disabled,required:e.required,bootstrapStyling:e.bootstrapStyling,"use-utc":e.useUtc,"show-calendar-on-focus":e.showCalendarOnFocus},on:{showCalendar:e.showCalendar,closeCalendar:e.close,typedDate:e.setTypedDate,clearDate:e.clearDate}},[e._t("beforeDateInput",null,{slot:"beforeDateInput"}),e._v(" "),e._t("afterDateInput",null,{slot:"afterDateInput"})],2),e._v(" "),e.allowedToShowView("day")?n("picker-day",{attrs:{pageDate:e.pageDate,selectedDate:e.selectedDate,showDayView:e.showDayView,fullMonthName:e.fullMonthName,allowedToShowView:e.allowedToShowView,disabledDates:e.disabledDates,highlighted:e.highlighted,calendarClass:e.calendarClass,calendarStyle:e.calendarStyle,language:e.language,pageTimestamp:e.pageTimestamp,mondayFirst:e.mondayFirst,dayCellContent:e.dayCellContent,"use-utc":e.useUtc},on:{changedMonth:e.handleChangedMonthFromDayPicker,selectDate:e.selectDate,showMonthCalendar:e.showMonthCalendar,selectedDisabled:e.selectDisabledDate}},[e._t("beforeCalendarHeader",null,{slot:"beforeCalendarHeader"})],2):e._e(),e._v(" "),e.allowedToShowView("month")?n("picker-month",{attrs:{pageDate:e.pageDate,selectedDate:e.selectedDate,showMonthView:e.showMonthView,allowedToShowView:e.allowedToShowView,disabledDates:e.disabledDates,calendarClass:e.calendarClass,calendarStyle:e.calendarStyle,language:e.language,"use-utc":e.useUtc},on:{selectMonth:e.selectMonth,showYearCalendar:e.showYearCalendar,changedYear:e.setPageDate}},[e._t("beforeCalendarHeader",null,{slot:"beforeCalendarHeader"})],2):e._e(),e._v(" "),e.allowedToShowView("year")?n("picker-year",{attrs:{pageDate:e.pageDate,selectedDate:e.selectedDate,showYearView:e.showYearView,allowedToShowView:e.allowedToShowView,disabledDates:e.disabledDates,calendarClass:e.calendarClass,calendarStyle:e.calendarStyle,language:e.language,"use-utc":e.useUtc},on:{selectYear:e.selectYear,changedDecade:e.setPageDate}},[e._t("beforeCalendarHeader",null,{slot:"beforeCalendarHeader"})],2):e._e()],1)},staticRenderFns:[]},undefined,p,undefined,!1,undefined,void 0,void 0)},9669:(e,t,n)=>{e.exports=n(1609)},5448:(e,t,n)=>{"use strict";var r=n(4867),i=n(6026),o=n(4372),a=n(5327),s=n(4097),c=n(4109),u=n(7985),l=n(5061);e.exports=function(e){return new Promise((function(t,n){var f=e.data,d=e.headers;r.isFormData(f)&&delete d["Content-Type"];var p=new XMLHttpRequest;if(e.auth){var h=e.auth.username||"",m=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";d.Authorization="Basic "+btoa(h+":"+m)}var b=s(e.baseURL,e.url);if(p.open(e.method.toUpperCase(),a(b,e.params,e.paramsSerializer),!0),p.timeout=e.timeout,p.onreadystatechange=function(){if(p&&4===p.readyState&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var r="getAllResponseHeaders"in p?c(p.getAllResponseHeaders()):null,o={data:e.responseType&&"text"!==e.responseType?p.response:p.responseText,status:p.status,statusText:p.statusText,headers:r,config:e,request:p};i(t,n,o),p=null}},p.onabort=function(){p&&(n(l("Request aborted",e,"ECONNABORTED",p)),p=null)},p.onerror=function(){n(l("Network Error",e,null,p)),p=null},p.ontimeout=function(){var t="timeout of "+e.timeout+"ms exceeded";e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(l(t,e,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var g=(e.withCredentials||u(b))&&e.xsrfCookieName?o.read(e.xsrfCookieName):void 0;g&&(d[e.xsrfHeaderName]=g)}if("setRequestHeader"in p&&r.forEach(d,(function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete d[t]:p.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(p.withCredentials=!!e.withCredentials),e.responseType)try{p.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&p.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&p.upload&&p.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then((function(e){p&&(p.abort(),n(e),p=null)})),f||(f=null),p.send(f)}))}},1609:(e,t,n)=>{"use strict";var r=n(4867),i=n(1849),o=n(321),a=n(7185);function s(e){var t=new o(e),n=i(o.prototype.request,t);return r.extend(n,o.prototype,t),r.extend(n,t),n}var c=s(n(5655));c.Axios=o,c.create=function(e){return s(a(c.defaults,e))},c.Cancel=n(5263),c.CancelToken=n(4972),c.isCancel=n(6502),c.all=function(e){return Promise.all(e)},c.spread=n(8713),c.isAxiosError=n(6268),e.exports=c,e.exports.default=c},5263:e=>{"use strict";function t(e){this.message=e}t.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},t.prototype.__CANCEL__=!0,e.exports=t},4972:(e,t,n)=>{"use strict";var r=n(5263);function i(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;e((function(e){n.reason||(n.reason=new r(e),t(n.reason))}))}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var e;return{token:new i((function(t){e=t})),cancel:e}},e.exports=i},6502:e=>{"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},321:(e,t,n)=>{"use strict";var r=n(4867),i=n(5327),o=n(782),a=n(3572),s=n(7185);function c(e){this.defaults=e,this.interceptors={request:new o,response:new o}}c.prototype.request=function(e){"string"==typeof e?(e=arguments[1]||{}).url=arguments[0]:e=e||{},(e=s(this.defaults,e)).method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=[a,void 0],n=Promise.resolve(e);for(this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));t.length;)n=n.then(t.shift(),t.shift());return n},c.prototype.getUri=function(e){return e=s(this.defaults,e),i(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(e){c.prototype[e]=function(t,n){return this.request(s(n||{},{method:e,url:t,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(e){c.prototype[e]=function(t,n,r){return this.request(s(r||{},{method:e,url:t,data:n}))}})),e.exports=c},782:(e,t,n)=>{"use strict";var r=n(4867);function i(){this.handlers=[]}i.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},i.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},i.prototype.forEach=function(e){r.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=i},4097:(e,t,n)=>{"use strict";var r=n(1793),i=n(7303);e.exports=function(e,t){return e&&!r(t)?i(e,t):t}},5061:(e,t,n)=>{"use strict";var r=n(481);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},3572:(e,t,n)=>{"use strict";var r=n(4867),i=n(8527),o=n(6502),a=n(5655);function s(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){return s(e),e.headers=e.headers||{},e.data=i(e.data,e.headers,e.transformRequest),e.headers=r.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||a.adapter)(e).then((function(t){return s(e),t.data=i(t.data,t.headers,e.transformResponse),t}),(function(t){return o(t)||(s(e),t&&t.response&&(t.response.data=i(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},481:e=>{"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},7185:(e,t,n)=>{"use strict";var r=n(4867);e.exports=function(e,t){t=t||{};var n={},i=["url","method","data"],o=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function c(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function u(i){r.isUndefined(t[i])?r.isUndefined(e[i])||(n[i]=c(void 0,e[i])):n[i]=c(e[i],t[i])}r.forEach(i,(function(e){r.isUndefined(t[e])||(n[e]=c(void 0,t[e]))})),r.forEach(o,u),r.forEach(a,(function(i){r.isUndefined(t[i])?r.isUndefined(e[i])||(n[i]=c(void 0,e[i])):n[i]=c(void 0,t[i])})),r.forEach(s,(function(r){r in t?n[r]=c(e[r],t[r]):r in e&&(n[r]=c(void 0,e[r]))}));var l=i.concat(o).concat(a).concat(s),f=Object.keys(e).concat(Object.keys(t)).filter((function(e){return-1===l.indexOf(e)}));return r.forEach(f,u),n}},6026:(e,t,n)=>{"use strict";var r=n(5061);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},8527:(e,t,n)=>{"use strict";var r=n(4867);e.exports=function(e,t,n){return r.forEach(n,(function(n){e=n(e,t)})),e}},5655:(e,t,n)=>{"use strict";var r=n(4155),i=n(4867),o=n(6016),a={"Content-Type":"application/x-www-form-urlencoded"};function s(e,t){!i.isUndefined(e)&&i.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var c,u={adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==r&&"[object process]"===Object.prototype.toString.call(r))&&(c=n(5448)),c),transformRequest:[function(e,t){return o(t,"Accept"),o(t,"Content-Type"),i.isFormData(e)||i.isArrayBuffer(e)||i.isBuffer(e)||i.isStream(e)||i.isFile(e)||i.isBlob(e)?e:i.isArrayBufferView(e)?e.buffer:i.isURLSearchParams(e)?(s(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):i.isObject(e)?(s(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],(function(e){u.headers[e]={}})),i.forEach(["post","put","patch"],(function(e){u.headers[e]=i.merge(a)})),e.exports=u},1849:e=>{"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r{"use strict";var r=n(4867);function i(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(r.isURLSearchParams(t))o=t.toString();else{var a=[];r.forEach(t,(function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),a.push(i(t)+"="+i(e))})))})),o=a.join("&")}if(o){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+o}return e}},7303:e=>{"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},4372:(e,t,n)=>{"use strict";var r=n(4867);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},1793:e=>{"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},6268:e=>{"use strict";e.exports=function(e){return"object"==typeof e&&!0===e.isAxiosError}},7985:(e,t,n)=>{"use strict";var r=n(4867);e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=i(window.location.href),function(t){var n=r.isString(t)?i(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0}},6016:(e,t,n)=>{"use strict";var r=n(4867);e.exports=function(e,t){r.forEach(e,(function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])}))}},4109:(e,t,n)=>{"use strict";var r=n(4867),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),(function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}})),a):a}},8713:e=>{"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},4867:(e,t,n)=>{"use strict";var r=n(1849),i=Object.prototype.toString;function o(e){return"[object Array]"===i.call(e)}function a(e){return void 0===e}function s(e){return null!==e&&"object"==typeof e}function c(e){if("[object Object]"!==i.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function u(e){return"[object Function]"===i.call(e)}function l(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),o(e))for(var n=0,r=e.length;n0&&(this._selector=s,this._triggerArray.push(a))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=e.prototype;return t.toggle=function(){r.default(this._element).hasClass(A)?this.hide():this.show()},t.show=function(){var t,n,o=this;if(!(this._isTransitioning||r.default(this._element).hasClass(A)||(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(T)).filter((function(e){return"string"==typeof o._config.parent?e.getAttribute("data-parent")===o._config.parent:e.classList.contains(_)}))).length&&(t=null),t&&(n=r.default(t).not(this._selector).data(l))&&n._isTransitioning))){var a=r.default.Event(b);if(r.default(this._element).trigger(a),!a.isDefaultPrevented()){t&&(e._jQueryInterface.call(r.default(t).not(this._selector),"hide"),n||r.default(t).data(l,null));var s=this._getDimension();r.default(this._element).removeClass(_).addClass(w),this._element.style[s]=0,this._triggerArray.length&&r.default(this._triggerArray).removeClass(z).attr("aria-expanded",!0),this.setTransitioning(!0);var c=function(){r.default(o._element).removeClass(w).addClass(_+" "+A),o._element.style[s]="",o.setTransitioning(!1),r.default(o._element).trigger(g)},u="scroll"+(s[0].toUpperCase()+s.slice(1)),f=i.default.getTransitionDurationFromElement(this._element);r.default(this._element).one(i.default.TRANSITION_END,c).emulateTransitionEnd(f),this._element.style[s]=this._element[u]+"px"}}},t.hide=function(){var e=this;if(!this._isTransitioning&&r.default(this._element).hasClass(A)){var t=r.default.Event(v);if(r.default(this._element).trigger(t),!t.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",i.default.reflow(this._element),r.default(this._element).addClass(w).removeClass(_+" "+A);var o=this._triggerArray.length;if(o>0)for(var a=0;a0},t._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=u({},t.offsets,e._config.offset(t.offsets,e._element)||{}),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var e={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(e.modifiers.applyStyle={enabled:!1}),u({},e,this._config.popperConfig)},e._jQueryInterface=function(t){return this.each((function(){var n=i.default(this).data(d);if(n||(n=new e(this,"object"==typeof t?t:null),i.default(this).data(d,n)),"string"==typeof t){if(void 0===n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},e._clearMenus=function(t){if(!t||t.which!==A&&("keyup"!==t.type||t.which===v))for(var n=[].slice.call(document.querySelectorAll(P)),r=0,o=n.length;r0&&a--,t.which===y&&adocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(q);var o=i.default.getTransitionDurationFromElement(this._dialog);r.default(this._element).off(i.default.TRANSITION_END),r.default(this._element).one(i.default.TRANSITION_END,(function(){e._element.classList.remove(q),n||r.default(e._element).one(i.default.TRANSITION_END,(function(){e._element.style.overflowY=""})).emulateTransitionEnd(e._element,o)})).emulateTransitionEnd(o),this._element.focus()}},t._showElement=function(e){var t=this,n=r.default(this._element).hasClass(k),o=this._dialog?this._dialog.querySelector(W):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),r.default(this._dialog).hasClass(D)&&o?o.scrollTop=0:this._element.scrollTop=0,n&&i.default.reflow(this._element),r.default(this._element).addClass(E),this._config.focus&&this._enforceFocus();var a=r.default.Event(A,{relatedTarget:e}),s=function(){t._config.focus&&t._element.focus(),t._isTransitioning=!1,r.default(t._element).trigger(a)};if(n){var c=i.default.getTransitionDurationFromElement(this._dialog);r.default(this._dialog).one(i.default.TRANSITION_END,s).emulateTransitionEnd(c)}else s()},t._enforceFocus=function(){var e=this;r.default(document).off(_).on(_,(function(t){document!==t.target&&e._element!==t.target&&0===r.default(e._element).has(t.target).length&&e._element.focus()}))},t._setEscapeEvent=function(){var e=this;this._isShown?r.default(this._element).on(O,(function(t){e._config.keyboard&&t.which===h?(t.preventDefault(),e.hide()):e._config.keyboard||t.which!==h||e._triggerBackdropTransition()})):this._isShown||r.default(this._element).off(O)},t._setResizeEvent=function(){var e=this;this._isShown?r.default(window).on(w,(function(t){return e.handleUpdate(t)})):r.default(window).off(w)},t._hideModal=function(){var e=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){r.default(document.body).removeClass(N),e._resetAdjustments(),e._resetScrollbar(),r.default(e._element).trigger(M)}))},t._removeBackdrop=function(){this._backdrop&&(r.default(this._backdrop).remove(),this._backdrop=null)},t._showBackdrop=function(e){var t=this,n=r.default(this._element).hasClass(k)?k:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className=S,n&&this._backdrop.classList.add(n),r.default(this._backdrop).appendTo(document.body),r.default(this._element).on(z,(function(e){t._ignoreBackdropClick?t._ignoreBackdropClick=!1:e.target===e.currentTarget&&("static"===t._config.backdrop?t._triggerBackdropTransition():t.hide())})),n&&i.default.reflow(this._backdrop),r.default(this._backdrop).addClass(E),!e)return;if(!n)return void e();var o=i.default.getTransitionDurationFromElement(this._backdrop);r.default(this._backdrop).one(i.default.TRANSITION_END,e).emulateTransitionEnd(o)}else if(!this._isShown&&this._backdrop){r.default(this._backdrop).removeClass(E);var a=function(){t._removeBackdrop(),e&&e()};if(r.default(this._element).hasClass(k)){var s=i.default.getTransitionDurationFromElement(this._backdrop);r.default(this._backdrop).one(i.default.TRANSITION_END,a).emulateTransitionEnd(s)}else a()}else e&&e()},t._adjustDialog=function(){var e=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&e&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!e&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var e=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(e.left+e.right)=a)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};return l.jQueryDetection(),u(),l}(n(9755))},1653:function(e){e.exports=function(){return n={},e.m=t=[function(e,t){e.exports=function(e){var t;if("SELECT"===e.nodeName)e.focus(),t=e.value;else if("INPUT"===e.nodeName||"TEXTAREA"===e.nodeName){var n=e.hasAttribute("readonly");n||e.setAttribute("readonly",""),e.select(),e.setSelectionRange(0,e.value.length),n||e.removeAttribute("readonly"),t=e.value}else{e.hasAttribute("contenteditable")&&e.focus();var r=window.getSelection(),i=document.createRange();i.selectNodeContents(e),r.removeAllRanges(),r.addRange(i),t=r.toString()}return t}},function(e,t){function n(){}n.prototype={on:function(e,t,n){var r=this.e||(this.e={});return(r[e]||(r[e]=[])).push({fn:t,ctx:n}),this},once:function(e,t,n){var r=this;function i(){r.off(e,i),t.apply(n,arguments)}return i._=t,this.on(e,i,n)},emit:function(e){for(var t=[].slice.call(arguments,1),n=((this.e||(this.e={}))[e]||[]).slice(),r=0,i=n.length;r{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(3645),i=n.n(r)()((function(e){return e[1]}));i.push([e.id,".v-select{position:relative;font-family:inherit}.v-select,.v-select *{box-sizing:border-box}@-webkit-keyframes vSelectSpinner{to{transform:rotate(1turn)}}@keyframes vSelectSpinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.vs__fade-enter-active,.vs__fade-leave-active{pointer-events:none;transition:opacity .15s cubic-bezier(1,.5,.8,1)}.vs__fade-enter,.vs__fade-leave-to{opacity:0}.vs--disabled .vs__clear,.vs--disabled .vs__dropdown-toggle,.vs--disabled .vs__open-indicator,.vs--disabled .vs__search,.vs--disabled .vs__selected{cursor:not-allowed;background-color:#f8f8f8}.v-select[dir=rtl] .vs__actions{padding:0 3px 0 6px}.v-select[dir=rtl] .vs__clear{margin-left:6px;margin-right:0}.v-select[dir=rtl] .vs__deselect{margin-left:0;margin-right:2px}.v-select[dir=rtl] .vs__dropdown-menu{text-align:right}.vs__dropdown-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:flex;padding:0 0 4px;background:none;border:1px solid rgba(60,60,60,.26);border-radius:4px;white-space:normal}.vs__selected-options{display:flex;flex-basis:100%;flex-grow:1;flex-wrap:wrap;padding:0 2px;position:relative}.vs__actions{display:flex;align-items:center;padding:4px 6px 0 3px}.vs--searchable .vs__dropdown-toggle{cursor:text}.vs--unsearchable .vs__dropdown-toggle{cursor:pointer}.vs--open .vs__dropdown-toggle{border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.vs__open-indicator{fill:rgba(60,60,60,.5);transform:scale(1);transition:transform .15s cubic-bezier(1,-.115,.975,.855);transition-timing-function:cubic-bezier(1,-.115,.975,.855)}.vs--open .vs__open-indicator{transform:rotate(180deg) scale(1)}.vs--loading .vs__open-indicator{opacity:0}.vs__clear{fill:rgba(60,60,60,.5);padding:0;border:0;background-color:transparent;cursor:pointer;margin-right:8px}.vs__dropdown-menu{display:block;box-sizing:border-box;position:absolute;top:calc(100% - 1px);left:0;z-index:1000;padding:5px 0;margin:0;width:100%;max-height:350px;min-width:160px;overflow-y:auto;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);border:1px solid rgba(60,60,60,.26);border-top-style:none;border-radius:0 0 4px 4px;text-align:left;list-style:none;background:#fff}.vs__no-options{text-align:center}.vs__dropdown-option{line-height:1.42857143;display:block;padding:3px 20px;clear:both;color:#333;white-space:nowrap}.vs__dropdown-option:hover{cursor:pointer}.vs__dropdown-option--highlight{background:#5897fb;color:#fff}.vs__dropdown-option--disabled{background:inherit;color:rgba(60,60,60,.5)}.vs__dropdown-option--disabled:hover{cursor:inherit}.vs__selected{display:flex;align-items:center;background-color:#f0f0f0;border:1px solid rgba(60,60,60,.26);border-radius:4px;color:#333;line-height:1.4;margin:4px 2px 0;padding:0 .25em;z-index:0}.vs__deselect{display:inline-flex;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin-left:4px;padding:0;border:0;cursor:pointer;background:none;fill:rgba(60,60,60,.5);text-shadow:0 1px 0 #fff}.vs--single .vs__selected{background-color:transparent;border-color:transparent}.vs--single.vs--open .vs__selected{position:absolute;opacity:.4}.vs--single.vs--searching .vs__selected{display:none}.vs__search::-webkit-search-cancel-button{display:none}.vs__search::-ms-clear,.vs__search::-webkit-search-decoration,.vs__search::-webkit-search-results-button,.vs__search::-webkit-search-results-decoration{display:none}.vs__search,.vs__search:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;line-height:1.4;font-size:1em;border:1px solid transparent;border-left:none;outline:none;margin:4px 0 0;padding:0 7px;background:none;box-shadow:none;width:0;max-width:100%;flex-grow:1;z-index:1}.vs__search::-moz-placeholder{color:inherit}.vs__search:-ms-input-placeholder{color:inherit}.vs__search::placeholder{color:inherit}.vs--unsearchable .vs__search{opacity:1}.vs--unsearchable:not(.vs--disabled) .vs__search:hover{cursor:pointer}.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search{opacity:.2}.vs__spinner{align-self:center;opacity:0;font-size:5px;text-indent:-9999em;overflow:hidden;border:.9em solid hsla(0,0%,39.2%,.1);border-left-color:rgba(60,60,60,.45);transform:translateZ(0);-webkit-animation:vSelectSpinner 1.1s linear infinite;animation:vSelectSpinner 1.1s linear infinite;transition:opacity .1s}.vs__spinner,.vs__spinner:after{border-radius:50%;width:5em;height:5em}.vs--loading .vs__spinner{opacity:1}",""]);const o=i},5918:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(3645),i=n.n(r)()((function(e){return e[1]}));i.push([e.id,'@-webkit-keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}to{width:25px;left:14px;top:45px}}@keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}to{width:25px;left:14px;top:45px}}@-webkit-keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}to{width:47px;right:8px;top:38px}}@keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}to{width:47px;right:8px;top:38px}}@-webkit-keyframes rotatePlaceholder{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes rotatePlaceholder{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}.sweet-modal-icon.sweet-modal-success.animate:after{-webkit-animation:rotatePlaceholder 4.25s ease-in;animation:rotatePlaceholder 4.25s ease-in}@-webkit-keyframes animateErrorIcon{0%{transform:rotateX(100deg);opacity:0}to{transform:rotateX(0deg);opacity:1}}@keyframes animateErrorIcon{0%{transform:rotateX(100deg);opacity:0}to{transform:rotateX(0deg);opacity:1}}@-webkit-keyframes animateXMark{0%{transform:scale(.4);margin-top:26px;opacity:0}50%{transform:scale(.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);margin-top:-6px}to{transform:scale(1);margin-top:0;opacity:1}}@keyframes animateXMark{0%{transform:scale(.4);margin-top:26px;opacity:0}50%{transform:scale(.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);margin-top:-6px}to{transform:scale(1);margin-top:0;opacity:1}}@-webkit-keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}@keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}@-webkit-keyframes pulseWarningIns{0%{background-color:#f8d486}to{background-color:#f8bb86}}@keyframes pulseWarningIns{0%{background-color:#f8d486}to{background-color:#f8bb86}}@-webkit-keyframes rotate-loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotate-loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.sweet-modal-icon{position:relative;width:80px;height:80px;border:4px solid grey;border-radius:50%;margin:auto;padding:0;box-sizing:content-box}.sweet-modal-icon.sweet-modal-error{border-color:#f44336}.sweet-modal-icon.sweet-modal-error .sweet-modal-x-mark{position:relative;display:block}.sweet-modal-icon.sweet-modal-error .sweet-modal-line{display:block;position:absolute;top:37px;height:5px;width:47px;background-color:#f44336;border-radius:2px}.sweet-modal-icon.sweet-modal-error .sweet-modal-line.sweet-modal-left{transform:rotate(45deg);left:17px}.sweet-modal-icon.sweet-modal-error .sweet-modal-line.sweet-modal-right{transform:rotate(-45deg);right:16px}.sweet-modal-icon.sweet-modal-warning{border-color:#ff9800}.sweet-modal-icon.sweet-modal-warning .sweet-modal-body{position:absolute;width:5px;height:47px;left:50%;top:10px;margin-left:-2px;border-radius:2px;background-color:#ff9800}.sweet-modal-icon.sweet-modal-warning .sweet-modal-dot{position:absolute;left:50%;bottom:10px;width:7px;height:7px;margin-left:-3px;border-radius:50%;background-color:#ff9800}.sweet-modal-icon.sweet-modal-info{border-color:#039be5}.sweet-modal-icon.sweet-modal-info:before{content:"";position:absolute;width:5px;height:29px;left:50%;bottom:17px;margin-left:-2px;border-radius:2px;background-color:#039be5}.sweet-modal-icon.sweet-modal-info:after{content:"";position:absolute;width:7px;height:7px;top:19px;margin-left:-3px;border-radius:50%;background-color:#039be5}.sweet-modal-icon.sweet-modal-success{border-color:#4caf50}.sweet-modal-icon.sweet-modal-success:after,.sweet-modal-icon.sweet-modal-success:before{content:"";position:absolute;border-radius:40px;width:60px;height:120px;background:#fff;transform:rotate(45deg)}.sweet-modal-icon.sweet-modal-success:before{border-radius:120px 0 0 120px;top:-7px;left:-33px;transform:rotate(-45deg);transform-origin:60px 60px}.sweet-modal-icon.sweet-modal-success:after{border-radius:0 120px 120px 0;top:-11px;left:30px;transform:rotate(-45deg);transform-origin:0 60px}.sweet-modal-icon.sweet-modal-success .sweet-modal-placeholder{box-sizing:content-box;position:absolute;left:-4px;top:-4px;z-index:2;width:80px;height:80px;border:4px solid rgba(76,175,80,.2);border-radius:50%}.sweet-modal-icon.sweet-modal-success .sweet-modal-fix{position:absolute;left:28px;top:8px;z-index:1;width:7px;height:90px;background-color:#fff;transform:rotate(-45deg)}.sweet-modal-icon.sweet-modal-success .sweet-modal-line{display:block;position:absolute;z-index:2;height:5px;background-color:#4caf50;border-radius:2px}.sweet-modal-icon.sweet-modal-success .sweet-modal-line.sweet-modal-tip{width:25px;left:14px;top:46px;transform:rotate(45deg)}.sweet-modal-icon.sweet-modal-success .sweet-modal-line.sweet-modal-long{width:47px;right:8px;top:38px;transform:rotate(-45deg)}.sweet-modal-icon.sweet-modal-custom{border-radius:0;border:none;background-size:contain;background-position:50%;background-repeat:no-repeat}.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success .sweet-modal-fix,.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success:after,.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success:before{background-color:#182028}.sweet-modal-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:9001;font-size:14px;-webkit-font-smoothing:antialiased;background:hsla(0,0%,100%,.9);opacity:0;transition:opacity .3s;transform:translateZ(0);-webkit-perspective:500px}.sweet-modal-overlay.theme-dark{background:rgba(24,32,40,.94)}.sweet-modal-overlay.is-visible{opacity:1}.sweet-modal{box-sizing:border-box;background:#fff;box-shadow:0 8px 46px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.03);position:absolute;top:50%;left:50%;width:80%;max-width:640px;max-height:100vh;overflow-y:auto;border-radius:2px;transform:scale(.9) translate(calc(-50% - 32px),-50%);opacity:0;transition-property:transform,opacity;transition-duration:.3s;transition-delay:.05s;transition-timing-function:cubic-bezier(.52,.02,.19,1.02)}.sweet-modal .sweet-box-actions{position:absolute;top:12px;right:12px}.sweet-modal .sweet-box-actions .sweet-action-close{display:inline-block;cursor:pointer;color:#222c38;text-align:center;width:42px;height:42px;line-height:42px;border-radius:50%}.sweet-modal .sweet-box-actions .sweet-action-close svg{width:24px;height:24px;vertical-align:middle;margin-top:-2px}.sweet-modal .sweet-box-actions .sweet-action-close svg,.sweet-modal .sweet-box-actions .sweet-action-close svg circle,.sweet-modal .sweet-box-actions .sweet-action-close svg path,.sweet-modal .sweet-box-actions .sweet-action-close svg polygon,.sweet-modal .sweet-box-actions .sweet-action-close svg rect{fill:currentColor}.sweet-modal .sweet-box-actions .sweet-action-close:hover{background:#039be5;color:#fff}.sweet-modal .sweet-title{height:64px;line-height:64px;border-bottom:1px solid #eaeaea;padding-left:32px;padding-right:64px}.sweet-modal .sweet-title,.sweet-modal .sweet-title>h2{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.sweet-modal .sweet-title>h2{margin:0;padding:0;font-weight:500;font-size:22px}.sweet-modal ul.sweet-modal-tabs{padding:0;list-style-type:none;display:flex;align-items:center;width:calc(100% + 32px);height:100%;margin:0 0 0 -32px;overflow-x:auto}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab{display:block;height:100%}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:flex;align-items:center;padding-left:20px;padding-right:20px;color:#222c38;text-decoration:none;text-align:center;height:100%}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-title{display:block}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon{display:block;line-height:1}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg{width:16px;height:16px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img circle,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img path,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img polygon,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img rect,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg circle,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg path,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg polygon,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg rect{fill:currentColor}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon+span.sweet-modal-tab-title{line-height:1;margin-top:8px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab:first-child a{padding-left:32px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab.active a{font-weight:600;color:#039be5}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab.disabled a{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;pointer-events:none;color:#999}.sweet-modal.has-tabs:not(.has-title) .sweet-title{height:84px;line-height:84px}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs{width:100%;height:48px;margin:0;border-bottom:1px solid #eaeaea}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a{margin-top:-4px}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon{display:inline-block}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg{vertical-align:middle;margin-top:-2px;margin-right:8px}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-title{display:inline-block}.sweet-modal .sweet-content{display:flex;align-items:center;padding:24px 32px;line-height:1.5}.sweet-modal .sweet-content .sweet-content-content{flex-grow:1}.sweet-modal .sweet-content .sweet-modal-tab:not(.active){display:none}.sweet-modal .sweet-content .sweet-modal-icon{margin-bottom:36px}.sweet-modal .sweet-buttons{text-align:right;padding:12px 20px}.sweet-modal .sweet-content+.sweet-buttons{border-top:1px solid #eaeaea}.sweet-modal.is-alert .sweet-content{display:block;text-align:center;font-size:16px;padding-top:64px;padding-bottom:64px}.sweet-modal.has-tabs.has-icon .sweet-content{padding-top:32px;padding-bottom:32px}.sweet-modal.has-tabs.has-icon .sweet-content .sweet-content-content{padding-left:32px}.sweet-modal.has-tabs.has-icon .sweet-content .sweet-modal-icon,.sweet-modal:not(.has-content) .sweet-modal-icon{margin-bottom:0}.sweet-modal.theme-dark{background:#182028;color:#fff}.sweet-modal.theme-dark .sweet-box-actions .sweet-action-close{color:#fff}.sweet-modal.theme-dark .sweet-title{border-bottom-color:#090c0f;box-shadow:0 1px 0 #273442}.sweet-modal.theme-dark ul.sweet-modal-tabs li a{color:#fff}.sweet-modal.theme-dark ul.sweet-modal-tabs li.active a{color:#039be5}.sweet-modal.theme-dark ul.sweet-modal-tabs li.disabled a{color:#3e5368}.sweet-modal.theme-dark.has-tabs.has-title ul.sweet-modal-tabs{border-bottom-color:#090c0f;box-shadow:0 1px 0 #273442}.sweet-modal.theme-dark .sweet-content+.sweet-buttons{border-top-color:#273442;box-shadow:0 -1px 0 #090c0f}.sweet-modal .sweet-buttons,.sweet-modal .sweet-content{opacity:0;transition-property:transform,opacity;transition-duration:.3s;transition-delay:.09s;transition-timing-function:cubic-bezier(.52,.02,.19,1.02)}.sweet-modal .sweet-content{transform:translateY(-8px)}.sweet-modal .sweet-buttons{transform:translateY(16px)}.sweet-modal.is-visible{transform:translate(-50%,-50%);opacity:1}.sweet-modal.is-visible .sweet-buttons,.sweet-modal.is-visible .sweet-content{transform:none;opacity:1}.sweet-modal.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-direction:alternate;animation-direction:alternate}@media screen and (min-width:601px){@-webkit-keyframes bounce{0%{transform:scale(1) translate(-50%,-50%)}50%{transform:scale(1.02) translate(calc(-50% + 8px),-50%)}to{transform:scale(1) translate(-50%,-50%)}}@keyframes bounce{0%{transform:scale(1) translate(-50%,-50%)}50%{transform:scale(1.02) translate(calc(-50% + 8px),-50%)}to{transform:scale(1) translate(-50%,-50%)}}}@media screen and (max-width:600px){.sweet-modal.is-mobile-fullscreen{width:100%;height:100vh;left:0;top:0;transform:scale(.9)}.sweet-modal.is-mobile-fullscreen.is-visible{transform:none}.sweet-modal.is-mobile-fullscreen .sweet-buttons{box-sizing:border-box;position:absolute;bottom:0;left:0;width:100%}}',""]);const o=i},6686:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(3645),i=n.n(r)()((function(e){return e[1]}));i.push([e.id,".vuejs-clipper-basic__img-wrap[data-v-45869ad8]{position:relative!important;width:100%!important;height:100%!important;overflow:hidden!important;-webkit-box-sizing:border-box!important;box-sizing:border-box!important}.vuejs-clipper-basic__img-wrap .vuejs-clipper-basic__img[data-v-45869ad8]{position:relative!important}.vuejs-clipper-basic__img-wrap .vuejs-clipper-basic__img[data-v-45869ad8],.vuejs-clipper-basic__stem-canvas[data-v-45869ad8]{width:100%!important;display:block!important;pointer-events:none!important}.vuejs-clipper-basic__padding[data-v-45869ad8]{position:relative!important;width:100%!important;-webkit-box-sizing:border-box!important;box-sizing:border-box!important;overflow:hidden}.vuejs-clipper-basic__in-pad[data-v-45869ad8]{position:absolute!important;top:0!important;left:0!important;width:100%!important;height:100%!important;-webkit-box-sizing:border-box!important;box-sizing:border-box!important}.vuejs-clipper-basic__img-scale[data-v-45869ad8]{pointer-events:none!important;top:0;left:0;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vuejs-clipper-basic__clip-area[data-v-45869ad8],.vuejs-clipper-basic__img-scale[data-v-45869ad8]{position:relative!important;width:100%!important;height:100%!important}.vuejs-clipper-basic__clip-area[data-v-45869ad8]{cursor:crosshair}.vuejs-clipper-basic__zoom-area[data-v-45869ad8]{position:absolute!important;overflow:visible!important}.vuejs-clipper-basic__corner[data-v-45869ad8]{position:absolute;border-color:#fff;border-style:solid;width:10px;height:10px;opacity:.7}.vuejs-clipper-basic__corner[data-v-45869ad8]:hover{opacity:1}.vuejs-clipper-basic__corner1[data-v-45869ad8]{top:0;left:0;border-width:3px 0 0 3px;cursor:nwse-resize}.vuejs-clipper-basic__corner2[data-v-45869ad8]{top:0;right:0;border-width:3px 3px 0 0;cursor:nesw-resize}.vuejs-clipper-basic__corner3[data-v-45869ad8]{bottom:0;right:0;border-width:0 3px 3px 0;cursor:nwse-resize}.vuejs-clipper-basic__corner4[data-v-45869ad8]{bottom:0;left:0;border-width:0 0 3px 3px;cursor:nesw-resize}.vuejs-clipper-basic__extend[data-v-45869ad8]{color:#fff;top:0;left:0;width:100%;height:100%;cursor:move}.vuejs-clipper-basic__extend--outer[data-v-45869ad8]{width:100%;height:100%;position:absolute;border-style:solid;-webkit-box-sizing:content-box;box-sizing:content-box;opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s}.vuejs-clipper-basic__extend--outer[data-v-45869ad8]:hover{opacity:.3}.vuejs-clipper-basic__extend--inner[data-v-45869ad8]{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.vuejs-clipper-basic__extend--inner:hover .vuejs-clipper-basic__drag-inset[data-v-45869ad8]{opacity:.3}.vuejs-clipper-basic__extend--inner:hover .vuejs-clipper-basic__drag-inset:hover.vuejs-clipper-basic__drag-inset[data-v-45869ad8]{opacity:0}.vuejs-clipper-basic__drag-inset[data-v-45869ad8]{position:relative;-webkit-box-shadow:0 0 0 4080px #fff;box-shadow:0 0 0 4080px #fff;top:0;left:0;width:100%;height:100%;cursor:-webkit-grab;cursor:grab;opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s}.vuejs-clipper-basic__grid[data-v-45869ad8]{width:100%;height:100%;position:absolute;top:0;left:0;pointer-events:none}.vuejs-clipper-basic__grid-item[data-v-45869ad8]{position:absolute;border-color:hsla(0,0%,100%,.7);border-style:dashed;width:50%;height:50%;-webkit-box-sizing:border-box;box-sizing:border-box}.vuejs-clipper-basic__grid-item[data-v-45869ad8]:first-child{top:0;left:0;border-width:0 1px 1px 0;-webkit-transform:translate(.5px,.5px);transform:translate(.5px,.5px)}.vuejs-clipper-basic__grid-item[data-v-45869ad8]:nth-child(2){top:0;right:0;border-width:0 0 1px;-webkit-transform:translate(-.5px,.5px);transform:translate(-.5px,.5px)}.vuejs-clipper-basic__grid-item[data-v-45869ad8]:nth-child(3){bottom:0;left:0;border-width:0 1px 0 0;-webkit-transform:translate(.5px,-.5px);transform:translate(.5px,-.5px)}.vuejs-clipper-basic__grid-item[data-v-45869ad8]:nth-child(4){bottom:0;right:0;border-width:0;-webkit-transform:translate(-.5px,-.5px);transform:translate(-.5px,-.5px)}",""]);const o=i},7597:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(3645),i=n.n(r)()((function(e){return e[1]}));i.push([e.id,"",""]);const o=i},5603:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(3645),i=n.n(r)()((function(e){return e[1]}));i.push([e.id,".img[data-v-7c25a830]{left:0;top:0;position:relative;width:100%;display:block}",""]);const o=i},3578:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(3645),i=n.n(r)()((function(e){return e[1]}));i.push([e.id,".bar[data-v-7f413ba8]{position:absolute;cursor:pointer;width:12px;height:100%;background-color:#fff;-webkit-box-shadow:1px 1px 4px rgba(0,0,0,.5);box-shadow:1px 1px 4px rgba(0,0,0,.5);top:0;left:0}",""]);const o=i},3645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=e(t);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(r)for(var o=0;o")+8,l=(c=c.substring(c.indexOf("4?p:t+8,a=[],c=0;c4?p:t+8,d-1);case 3:if(1==d)return e.getUint16(t+8,!i);for(o=d>2?p:t+8,a=[],c=0;ce.byteLength)return{};var o=b(e,t,t+i,u,r);if(o.Compression)switch(o.Compression){case 6:if(o.JpegIFOffset&&o.JpegIFByteCount){var a=t+o.JpegIFOffset,s=o.JpegIFByteCount;o.blob=new Blob([new Uint8Array(e.buffer,a,s)],{type:"image/jpeg"})}break;case 1:console.log("Thumbnail image format is TIFF, which is not implemented.");break;default:console.log("Unknown thumbnail image format '%s'",o.Compression)}else 2==o.PhotometricInterpretation&&console.log("Thumbnail image format is RGB, which is not implemented.");return o}(e,d,p,n),r}function y(e){var t={};if(1==e.nodeType){if(e.attributes.length>0){t["@attributes"]={};for(var n=0;n0)for(var n=0;n0&&t-1 in e)}z.fn=z.prototype={jquery:w,constructor:z,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=z.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return z.each(this,e)},map:function(e){return this.pushStack(z.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(z.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(z.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|[\\x20\\t\\r\\n\\f])[\\x20\\t\\r\\n\\f]*"),H=new RegExp(W+"|>"),Y=new RegExp(R),U=new RegExp("^"+P+"$"),V={ID:new RegExp("^#("+P+")"),CLASS:new RegExp("^\\.("+P+")"),TAG:new RegExp("^("+P+"|[*])"),ATTR:new RegExp("^"+X),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\([\\x20\\t\\r\\n\\f]*(even|odd|(([+-]|)(\\d*)n|)[\\x20\\t\\r\\n\\f]*(?:([+-]|)[\\x20\\t\\r\\n\\f]*(\\d+)|))[\\x20\\t\\r\\n\\f]*\\)|)","i"),bool:new RegExp("^(?:"+B+")$","i"),needsContext:new RegExp("^[\\x20\\t\\r\\n\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\([\\x20\\t\\r\\n\\f]*((?:-\\d)?\\d*)[\\x20\\t\\r\\n\\f]*\\)|)(?=[^-]|$)","i")},G=/HTML$/i,K=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}[\\x20\\t\\r\\n\\f]?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){d()},ae=ye((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{k.apply(C=E.call(A.childNodes),A.childNodes),C[A.childNodes.length].nodeType}catch(e){k={apply:C.length?function(e,t){N.apply(e,E.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,u,l,f,h,g,v=t&&t.ownerDocument,A=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==A&&9!==A&&11!==A)return r;if(!i&&(d(t),t=t||p,m)){if(11!==A&&(f=Z.exec(e)))if(o=f[1]){if(9===A){if(!(u=t.getElementById(o)))return r;if(u.id===o)return r.push(u),r}else if(v&&(u=v.getElementById(o))&&M(t,u)&&u.id===o)return r.push(u),r}else{if(f[2])return k.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return k.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!T[e+" "]&&(!b||!b.test(e))&&(1!==A||"object"!==t.nodeName.toLowerCase())){if(g=e,v=t,1===A&&(H.test(e)||$.test(e))){for((v=ee.test(e)&&ge(t.parentNode)||t)===t&&n.scope||((l=t.getAttribute("id"))?l=l.replace(re,ie):t.setAttribute("id",l=y)),s=(h=a(e)).length;s--;)h[s]=(l?"#"+l:":scope")+" "+Me(h[s]);g=h.join(",")}try{return k.apply(r,v.querySelectorAll(g)),r}catch(t){T(e,!0)}finally{l===y&&t.removeAttribute("id")}}}return c(e.replace(j,"$1"),t,r,i)}function ce(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function ue(e){return e[y]=!0,e}function le(e){var t=p.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function pe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function me(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function be(e){return ue((function(t){return t=+t,ue((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ge(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!G.test(t||n&&n.nodeName||"HTML")},d=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:A;return a!=p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,m=!o(p),A!=p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=le((function(e){return h.appendChild(e).appendChild(p.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=le((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=le((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=J.test(p.getElementsByClassName),n.getById=le((function(e){return h.appendChild(e).id=y,!p.getElementsByName||!p.getElementsByName(y).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&m)return t.getElementsByClassName(e)},g=[],b=[],(n.qsa=J.test(p.querySelectorAll))&&(le((function(e){var t;h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&b.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll("[selected]").length||b.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|"+B+")"),e.querySelectorAll("[id~="+y+"-]").length||b.push("~="),(t=p.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||b.push("\\[[\\x20\\t\\r\\n\\f]*name[\\x20\\t\\r\\n\\f]*=[\\x20\\t\\r\\n\\f]*(?:''|\"\")"),e.querySelectorAll(":checked").length||b.push(":checked"),e.querySelectorAll("a#"+y+"+*").length||b.push(".#.+[+~]"),e.querySelectorAll("\\\f"),b.push("[\\r\\n\\f]")})),le((function(e){e.innerHTML="";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&b.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&b.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&b.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),b.push(",.*:")}))),(n.matchesSelector=J.test(v=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&le((function(e){n.disconnectedMatch=v.call(e,"*"),v.call(e,"[s!='']:x"),g.push("!=",R)})),b=b.length&&new RegExp(b.join("|")),g=g.length&&new RegExp(g.join("|")),t=J.test(h.compareDocumentPosition),M=t||J.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},L=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==p||e.ownerDocument==A&&M(A,e)?-1:t==p||t.ownerDocument==A&&M(A,t)?1:l?q(l,e)-q(l,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==p?-1:t==p?1:i?-1:o?1:l?q(l,e)-q(l,t):0;if(i===o)return de(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?de(a[r],s[r]):a[r]==A?-1:s[r]==A?1:0},p):p},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(d(e),n.matchesSelector&&m&&!T[t+" "]&&(!g||!g.test(t))&&(!b||!b.test(t)))try{var r=v.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){T(t,!0)}return se(t,p,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=p&&d(e),M(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=p&&d(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!m):void 0;return void 0!==o?o:n.attributes||!m?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(L),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return l=null,e},i=se.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:ue,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&Y.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=z[e+" "];return t||(t=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+e+"("+W+"|$)"))&&z(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(F," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,c){var u,l,f,d,p,h,m=o!==a?"nextSibling":"previousSibling",b=t.parentNode,g=s&&t.nodeName.toLowerCase(),v=!c&&!s,M=!1;if(b){if(o){for(;m;){for(d=t;d=d[m];)if(s?d.nodeName.toLowerCase()===g:1===d.nodeType)return!1;h=m="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?b.firstChild:b.lastChild],a&&v){for(M=(p=(u=(l=(f=(d=b)[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===_&&u[1])&&u[2],d=p&&b.childNodes[p];d=++p&&d&&d[m]||(M=p=0)||h.pop();)if(1===d.nodeType&&++M&&d===t){l[e]=[_,p,M];break}}else if(v&&(M=p=(u=(l=(f=(d=t)[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===_&&u[1]),!1===M)for(;(d=++p&&d&&d[m]||(M=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==g:1!==d.nodeType)||!++M||(v&&((l=(f=d[y]||(d[y]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]=[_,M]),d!==t)););return(M-=i)===r||M%r==0&&M/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return i[y]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ue((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=q(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:ue((function(e){var t=[],n=[],r=s(e.replace(j,"$1"));return r[y]?ue((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:ue((function(e){return function(t){return se(e,t).length>0}})),contains:ue((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:ue((function(e){return U.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return K.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:be((function(){return[0]})),last:be((function(e,t){return[t-1]})),eq:be((function(e,t,n){return[n<0?n+t:n]})),even:be((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:be((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function _e(e,t,n,r,i){for(var o,a=[],s=0,c=e.length,u=null!=t;s-1&&(o[u]=!(a[u]=f))}}else g=_e(g===a?g.splice(h,g.length):g),i?i(null,a,g,c):k.apply(a,g)}))}function ze(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],c=a?1:0,l=ye((function(e){return e===t}),s,!0),f=ye((function(e){return q(t,e)>-1}),s,!0),d=[function(e,n,r){var i=!a&&(r||n!==u)||((t=n).nodeType?l(e,n,r):f(e,n,r));return t=null,i}];c1&&Ae(d),c>1&&Me(e.slice(0,c-1).concat({value:" "===e[c-2].type?"*":""})).replace(j,"$1"),n,c0,i=e.length>0,o=function(o,a,s,c,l){var f,h,b,g=0,v="0",M=o&&[],y=[],A=u,w=o||i&&r.find.TAG("*",l),z=_+=null==A?1:Math.random()||.1,O=w.length;for(l&&(u=a==p||a||l);v!==O&&null!=(f=w[v]);v++){if(i&&f){for(h=0,a||f.ownerDocument==p||(d(f),s=!m);b=e[h++];)if(b(f,a||p,s)){c.push(f);break}l&&(_=z)}n&&((f=!b&&f)&&g--,o&&M.push(f))}if(g+=v,n&&v!==g){for(h=0;b=t[h++];)b(M,y,a,s);if(o){if(g>0)for(;v--;)M[v]||y[v]||(y[v]=S.call(c));y=_e(y)}k.apply(c,y),l&&!o&&y.length>0&&g+t.length>1&&se.uniqueSort(c)}return l&&(_=z,u=A),M};return n?ue(o):o}(o,i))).selector=e}return s},c=se.select=function(e,t,n,i){var o,c,u,l,f,d="function"==typeof e&&e,p=!i&&a(e=d.selector||e);if(n=n||[],1===p.length){if((c=p[0]=p[0].slice(0)).length>2&&"ID"===(u=c[0]).type&&9===t.nodeType&&m&&r.relative[c[1].type]){if(!(t=(r.find.ID(u.matches[0].replace(te,ne),t)||[])[0]))return n;d&&(t=t.parentNode),e=e.slice(c.shift().value.length)}for(o=V.needsContext.test(e)?0:c.length;o--&&(u=c[o],!r.relative[l=u.type]);)if((f=r.find[l])&&(i=f(u.matches[0].replace(te,ne),ee.test(c[0].type)&&ge(t.parentNode)||t))){if(c.splice(o,1),!(e=i.length&&Me(c)))return k.apply(n,i),n;break}}return(d||s(e,p))(i,t,!m,n,!t||ee.test(e)&&ge(t.parentNode)||t),n},n.sortStable=y.split("").sort(L).join("")===y,n.detectDuplicates=!!f,d(),n.sortDetached=le((function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))})),le((function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")}))||fe("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&le((function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||fe("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),le((function(e){return null==e.getAttribute("disabled")}))||fe(B,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(r);z.find=x,z.expr=x.selectors,z.expr[":"]=z.expr.pseudos,z.uniqueSort=z.unique=x.uniqueSort,z.text=x.getText,z.isXMLDoc=x.isXML,z.contains=x.contains,z.escapeSelector=x.escape;var T=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&z(e).is(n))break;r.push(e)}return r},L=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=z.expr.match.needsContext;function C(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var S=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function N(e,t,n){return g(t)?z.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?z.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?z.grep(e,(function(e){return l.call(t,e)>-1!==n})):z.filter(t,e,n)}z.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?z.find.matchesSelector(r,e)?[r]:[]:z.find.matches(e,z.grep(t,(function(e){return 1===e.nodeType})))},z.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(z(e).filter((function(){for(t=0;t1?z.uniqueSort(n):n},filter:function(e){return this.pushStack(N(this,e||[],!1))},not:function(e){return this.pushStack(N(this,e||[],!0))},is:function(e){return!!N(this,"string"==typeof e&&D.test(e)?z(e):e||[],!1).length}});var k,E=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(z.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:E.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof z?t[0]:t,z.merge(this,z.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:M,!0)),S.test(r[1])&&z.isPlainObject(t))for(r in t)g(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=M.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(z):z.makeArray(e,this)}).prototype=z.fn,k=z(M);var q=/^(?:parents|prev(?:Until|All))/,B={children:!0,contents:!0,next:!0,prev:!0};function W(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}z.fn.extend({has:function(e){var t=z(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&z.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?z.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?l.call(z(e),this[0]):l.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(z.uniqueSort(z.merge(this.get(),z(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),z.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return W(e,"nextSibling")},prev:function(e){return W(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return L((e.parentNode||{}).firstChild,e)},children:function(e){return L(e.firstChild)},contents:function(e){return null!=e.contentDocument&&a(e.contentDocument)?e.contentDocument:(C(e,"template")&&(e=e.content||e),z.merge([],e.childNodes))}},(function(e,t){z.fn[e]=function(n,r){var i=z.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=z.filter(r,i)),this.length>1&&(B[e]||z.uniqueSort(i),q.test(e)&&i.reverse()),this.pushStack(i)}}));var P=/[^\x20\t\r\n\f]+/g;function X(e){return e}function R(e){throw e}function F(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}z.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return z.each(e.match(P)||[],(function(e,n){t[n]=!0})),t}(e):z.extend({},e);var t,n,r,i,o=[],a=[],s=-1,c=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?z.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||c()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!r}};return u},z.extend({Deferred:function(e){var t=[["notify","progress",z.Callbacks("memory"),z.Callbacks("memory"),2],["resolve","done",z.Callbacks("once memory"),z.Callbacks("once memory"),0,"resolved"],["reject","fail",z.Callbacks("once memory"),z.Callbacks("once memory"),1,"rejected"]],n="pending",i={state:function(){return n},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return z.Deferred((function(n){z.each(t,(function(t,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(e,n,i){var o=0;function a(e,t,n,i){return function(){var s=this,c=arguments,u=function(){var r,u;if(!(e=o&&(n!==R&&(s=void 0,c=[r]),t.rejectWith(s,c))}};e?l():(z.Deferred.getStackHook&&(l.stackTrace=z.Deferred.getStackHook()),r.setTimeout(l))}}return z.Deferred((function(r){t[0][3].add(a(0,r,g(i)?i:X,r.notifyWith)),t[1][3].add(a(0,r,g(e)?e:X)),t[2][3].add(a(0,r,g(n)?n:R))})).promise()},promise:function(e){return null!=e?z.extend(e,i):i}},o={};return z.each(t,(function(e,r){var a=r[2],s=r[5];i[r[1]]=a.add,s&&a.add((function(){n=s}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),a.add(r[3].fire),o[r[0]]=function(){return o[r[0]+"With"](this===o?void 0:this,arguments),this},o[r[0]+"With"]=a.fireWith})),i.promise(o),e&&e.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=s.call(arguments),o=z.Deferred(),a=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?s.call(arguments):n,--t||o.resolveWith(r,i)}};if(t<=1&&(F(e,o.done(a(n)).resolve,o.reject,!t),"pending"===o.state()||g(i[n]&&i[n].then)))return o.then();for(;n--;)F(i[n],a(n),o.reject);return o.promise()}});var j=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;z.Deferred.exceptionHook=function(e,t){r.console&&r.console.warn&&e&&j.test(e.name)&&r.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},z.readyException=function(e){r.setTimeout((function(){throw e}))};var I=z.Deferred();function $(){M.removeEventListener("DOMContentLoaded",$),r.removeEventListener("load",$),z.ready()}z.fn.ready=function(e){return I.then(e).catch((function(e){z.readyException(e)})),this},z.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--z.readyWait:z.isReady)||(z.isReady=!0,!0!==e&&--z.readyWait>0||I.resolveWith(M,[z]))}}),z.ready.then=I.then,"complete"===M.readyState||"loading"!==M.readyState&&!M.documentElement.doScroll?r.setTimeout(z.ready):(M.addEventListener("DOMContentLoaded",$),r.addEventListener("load",$));var H=function(e,t,n,r,i,o,a){var s=0,c=e.length,u=null==n;if("object"===_(n))for(s in i=!0,n)H(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,g(r)||(a=!0),u&&(a?(t.call(e,r),t=null):(u=t,t=function(e,t,n){return u.call(z(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Z.remove(this,e)}))}}),z.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,z.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=z.queue(e,t),r=n.length,i=n.shift(),o=z._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){z.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:z.Callbacks("once memory").add((function(){J.remove(e,[t+"queue",n])}))})}}),z.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]*)/i,ve=/^$|^module$|\/(?:java|ecma)script/i;he=M.createDocumentFragment().appendChild(M.createElement("div")),(me=M.createElement("input")).setAttribute("type","radio"),me.setAttribute("checked","checked"),me.setAttribute("name","t"),he.appendChild(me),b.checkClone=he.cloneNode(!0).cloneNode(!0).lastChild.checked,he.innerHTML="",b.noCloneChecked=!!he.cloneNode(!0).lastChild.defaultValue,he.innerHTML="",b.option=!!he.lastChild;var Me={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&C(e,t)?z.merge([e],n):n}function Ae(e,t){for(var n=0,r=e.length;n",""]);var _e=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,c,u,l,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p-1)i&&i.push(o);else if(u=se(o),a=ye(f.appendChild(o),"script"),u&&Ae(a),n)for(l=0;o=a[l++];)ve.test(o.type||"")&&n.push(o);return f}var ze=/^([^.]*)(?:\.(.+)|)/;function Oe(){return!0}function xe(){return!1}function Te(e,t){return e===function(){try{return M.activeElement}catch(e){}}()==("focus"===t)}function Le(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Le(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=xe;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return z().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=z.guid++)),e.each((function(){z.event.add(this,t,i,r,n)}))}function De(e,t,n){n?(J.set(e,t,!1),z.event.add(e,t,{namespace:!1,handler:function(e){var r,i,o=J.get(this,t);if(1&e.isTrigger&&this[t]){if(o.length)(z.event.special[t]||{}).delegateType&&e.stopPropagation();else if(o=s.call(arguments),J.set(this,t,o),r=n(this,t),this[t](),o!==(i=J.get(this,t))||r?J.set(this,t,!1):i={},o!==i)return e.stopImmediatePropagation(),e.preventDefault(),i&&i.value}else o.length&&(J.set(this,t,{value:z.event.trigger(z.extend(o[0],z.Event.prototype),o.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===J.get(e,t)&&z.event.add(e,t,Oe)}z.event={global:{},add:function(e,t,n,r,i){var o,a,s,c,u,l,f,d,p,h,m,b=J.get(e);if(K(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&z.find.matchesSelector(ae,i),n.guid||(n.guid=z.guid++),(c=b.events)||(c=b.events=Object.create(null)),(a=b.handle)||(a=b.handle=function(t){return void 0!==z&&z.event.triggered!==t.type?z.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(P)||[""]).length;u--;)p=m=(s=ze.exec(t[u])||[])[1],h=(s[2]||"").split(".").sort(),p&&(f=z.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=z.event.special[p]||{},l=z.extend({type:p,origType:m,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&z.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=c[p])||((d=c[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),f.add&&(f.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,l):d.push(l),z.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,a,s,c,u,l,f,d,p,h,m,b=J.hasData(e)&&J.get(e);if(b&&(c=b.events)){for(u=(t=(t||"").match(P)||[""]).length;u--;)if(p=m=(s=ze.exec(t[u])||[])[1],h=(s[2]||"").split(".").sort(),p){for(f=z.event.special[p]||{},d=c[p=(r?f.delegateType:f.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)l=d[o],!i&&m!==l.origType||n&&n.guid!==l.guid||s&&!s.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(d.splice(o,1),l.selector&&d.delegateCount--,f.remove&&f.remove.call(e,l));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,b.handle)||z.removeEvent(e,p,b.handle),delete c[p])}else for(p in c)z.event.remove(e,p+t[u],n,r,!0);z.isEmptyObject(c)&&J.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),c=z.event.fix(e),u=(J.get(this,"events")||Object.create(null))[c.type]||[],l=z.event.special[c.type]||{};for(s[0]=c,t=1;t=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(o=[],a={},n=0;n-1:z.find(i,this,null,[u]).length),a[i]&&o.push(r);o.length&&s.push({elem:u,handlers:o})}return u=this,c\s*$/g;function ke(e,t){return C(e,"table")&&C(11!==t.nodeType?t:t.firstChild,"tr")&&z(e).children("tbody")[0]||e}function Ee(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Be(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(J.hasData(e)&&(s=J.get(e).events))for(i in J.remove(t,"handle events"),s)for(n=0,r=s[i].length;n1&&"string"==typeof h&&!b.checkClone&&Se.test(h))return e.each((function(i){var o=e.eq(i);m&&(t[0]=h.call(this,i,o.html())),Pe(o,t,n,r)}));if(d&&(o=(i=we(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(s=(a=z.map(ye(i,"script"),Ee)).length;f0&&Ae(a,!c&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=z.event.special,o=0;void 0!==(n=e[o]);o++)if(K(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?z.event.remove(n,r):z.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[Z.expando]&&(n[Z.expando]=void 0)}}}),z.fn.extend({detach:function(e){return Xe(this,e,!0)},remove:function(e){return Xe(this,e)},text:function(e){return H(this,(function(e){return void 0===e?z.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Pe(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||ke(this,e).appendChild(e)}))},prepend:function(){return Pe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ke(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(z.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return z.clone(this,e,t)}))},html:function(e){return H(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ce.test(e)&&!Me[(ge.exec(e)||["",""])[1].toLowerCase()]){e=z.htmlPrefilter(e);try{for(;n=0&&(c+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-c-s-.5))||0),c}function nt(e,t,n){var r=Fe(e),i=(!b.boxSizingReliable()||n)&&"border-box"===z.css(e,"boxSizing",!1,r),o=i,a=$e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Re.test(a)){if(!n)return a;a="auto"}return(!b.boxSizingReliable()&&i||!b.reliableTrDimensions()&&C(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===z.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===z.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+tt(e,t,n||(i?"border":"content"),o,r,a)+"px"}function rt(e,t,n,r,i){return new rt.prototype.init(e,t,n,r,i)}z.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=$e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),c=Qe.test(t),u=e.style;if(c||(t=Ge(s)),a=z.cssHooks[t]||z.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:u[t];"string"===(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||c||(n+=i&&i[3]||(z.cssNumber[s]?"":"px")),b.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(c?u.setProperty(t,n):u[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Qe.test(t)||(t=Ge(s)),(a=z.cssHooks[t]||z.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=$e(e,t,r)),"normal"===i&&t in Ze&&(i=Ze[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),z.each(["height","width"],(function(e,t){z.cssHooks[t]={get:function(e,n,r){if(n)return!Ke.test(z.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?nt(e,t,r):je(e,Je,(function(){return nt(e,t,r)}))},set:function(e,n,r){var i,o=Fe(e),a=!b.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===z.css(e,"boxSizing",!1,o),c=r?tt(e,t,r,s,o):0;return s&&a&&(c-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-tt(e,t,"border",!1,o)-.5)),c&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=z.css(e,t)),et(0,n,c)}}})),z.cssHooks.marginLeft=He(b.reliableMarginLeft,(function(e,t){if(t)return(parseFloat($e(e,"marginLeft"))||e.getBoundingClientRect().left-je(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),z.each({margin:"",padding:"",border:"Width"},(function(e,t){z.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(z.cssHooks[e+t].set=et)})),z.fn.extend({css:function(e,t){return H(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a1)}}),z.Tween=rt,rt.prototype={constructor:rt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||z.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(z.cssNumber[n]?"":"px")},cur:function(){var e=rt.propHooks[this.prop];return e&&e.get?e.get(this):rt.propHooks._default.get(this)},run:function(e){var t,n=rt.propHooks[this.prop];return this.options.duration?this.pos=t=z.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rt.propHooks._default.set(this),this}},rt.prototype.init.prototype=rt.prototype,rt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=z.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){z.fx.step[e.prop]?z.fx.step[e.prop](e):1!==e.elem.nodeType||!z.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:z.style(e.elem,e.prop,e.now+e.unit)}}},rt.propHooks.scrollTop=rt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},z.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},z.fx=rt.prototype.init,z.fx.step={};var it,ot,at=/^(?:toggle|show|hide)$/,st=/queueHooks$/;function ct(){ot&&(!1===M.hidden&&r.requestAnimationFrame?r.requestAnimationFrame(ct):r.setTimeout(ct,z.fx.interval),z.fx.tick())}function ut(){return r.setTimeout((function(){it=void 0})),it=Date.now()}function lt(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ft(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){z.removeAttr(this,e)}))}}),z.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?z.prop(e,t,n):(1===o&&z.isXMLDoc(e)||(i=z.attrHooks[t.toLowerCase()]||(z.expr.match.bool.test(t)?pt:void 0)),void 0!==n?null===n?void z.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=z.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!b.radioValue&&"radio"===t&&C(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),pt={set:function(e,t,n){return!1===t?z.removeAttr(e,n):e.setAttribute(n,n),n}},z.each(z.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=ht[t]||z.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}}));var mt=/^(?:input|select|textarea|button)$/i,bt=/^(?:a|area)$/i;function gt(e){return(e.match(P)||[]).join(" ")}function vt(e){return e.getAttribute&&e.getAttribute("class")||""}function Mt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}z.fn.extend({prop:function(e,t){return H(this,z.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[z.propFix[e]||e]}))}}),z.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&z.isXMLDoc(e)||(t=z.propFix[t]||t,i=z.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=z.find.attr(e,"tabindex");return t?parseInt(t,10):mt.test(e.nodeName)||bt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),b.optSelected||(z.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),z.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){z.propFix[this.toLowerCase()]=this})),z.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,c=0;if(g(e))return this.each((function(t){z(this).addClass(e.call(this,t,vt(this)))}));if((t=Mt(e)).length)for(;n=this[c++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,c=0;if(g(e))return this.each((function(t){z(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr("class","");if((t=Mt(e)).length)for(;n=this[c++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=gt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each((function(n){z(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=z(this),a=Mt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=vt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+gt(vt(n))+" ").indexOf(t)>-1)return!0;return!1}});var yt=/\r/g;z.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=g(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,z(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=z.map(i,(function(e){return null==e?"":e+""}))),(t=z.valHooks[this.type]||z.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=z.valHooks[i.type]||z.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(yt,""):null==n?"":n:void 0}}),z.extend({valHooks:{option:{get:function(e){var t=z.find.attr(e,"value");return null!=t?t:gt(z.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],c=a?o+1:i.length;for(r=o<0?c:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),z.each(["radio","checkbox"],(function(){z.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=z.inArray(z(e).val(),t)>-1}},b.checkOn||(z.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),b.focusin="onfocusin"in r;var At=/^(?:focusinfocus|focusoutblur)$/,_t=function(e){e.stopPropagation()};z.extend(z.event,{trigger:function(e,t,n,i){var o,a,s,c,u,l,f,d,h=[n||M],m=p.call(e,"type")?e.type:e,b=p.call(e,"namespace")?e.namespace.split("."):[];if(a=d=s=n=n||M,3!==n.nodeType&&8!==n.nodeType&&!At.test(m+z.event.triggered)&&(m.indexOf(".")>-1&&(b=m.split("."),m=b.shift(),b.sort()),u=m.indexOf(":")<0&&"on"+m,(e=e[z.expando]?e:new z.Event(m,"object"==typeof e&&e)).isTrigger=i?2:3,e.namespace=b.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:z.makeArray(t,[e]),f=z.event.special[m]||{},i||!f.trigger||!1!==f.trigger.apply(n,t))){if(!i&&!f.noBubble&&!v(n)){for(c=f.delegateType||m,At.test(c+m)||(a=a.parentNode);a;a=a.parentNode)h.push(a),s=a;s===(n.ownerDocument||M)&&h.push(s.defaultView||s.parentWindow||r)}for(o=0;(a=h[o++])&&!e.isPropagationStopped();)d=a,e.type=o>1?c:f.bindType||m,(l=(J.get(a,"events")||Object.create(null))[e.type]&&J.get(a,"handle"))&&l.apply(a,t),(l=u&&a[u])&&l.apply&&K(a)&&(e.result=l.apply(a,t),!1===e.result&&e.preventDefault());return e.type=m,i||e.isDefaultPrevented()||f._default&&!1!==f._default.apply(h.pop(),t)||!K(n)||u&&g(n[m])&&!v(n)&&((s=n[u])&&(n[u]=null),z.event.triggered=m,e.isPropagationStopped()&&d.addEventListener(m,_t),n[m](),e.isPropagationStopped()&&d.removeEventListener(m,_t),z.event.triggered=void 0,s&&(n[u]=s)),e.result}},simulate:function(e,t,n){var r=z.extend(new z.Event,n,{type:e,isSimulated:!0});z.event.trigger(r,null,t)}}),z.fn.extend({trigger:function(e,t){return this.each((function(){z.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return z.event.trigger(e,t,n,!0)}}),b.focusin||z.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){z.event.simulate(t,e.target,z.event.fix(e))};z.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}}));var wt=r.location,zt={guid:Date.now()},Ot=/\?/;z.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new r.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||z.error("Invalid XML: "+(n?z.map(n.childNodes,(function(e){return e.textContent})).join("\n"):e)),t};var xt=/\[\]$/,Tt=/\r?\n/g,Lt=/^(?:submit|button|image|reset|file)$/i,Dt=/^(?:input|select|textarea|keygen)/i;function Ct(e,t,n,r){var i;if(Array.isArray(t))z.each(t,(function(t,i){n||xt.test(e)?r(e,i):Ct(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==_(t))r(e,t);else for(i in t)Ct(e+"["+i+"]",t[i],n,r)}z.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!z.isPlainObject(e))z.each(e,(function(){i(this.name,this.value)}));else for(n in e)Ct(n,e[n],t,i);return r.join("&")},z.fn.extend({serialize:function(){return z.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=z.prop(this,"elements");return e?z.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!z(this).is(":disabled")&&Dt.test(this.nodeName)&&!Lt.test(e)&&(this.checked||!be.test(e))})).map((function(e,t){var n=z(this).val();return null==n?null:Array.isArray(n)?z.map(n,(function(e){return{name:t.name,value:e.replace(Tt,"\r\n")}})):{name:t.name,value:n.replace(Tt,"\r\n")}})).get()}});var St=/%20/g,Nt=/#.*$/,kt=/([?&])_=[^&]*/,Et=/^(.*?):[ \t]*([^\r\n]*)$/gm,qt=/^(?:GET|HEAD)$/,Bt=/^\/\//,Wt={},Pt={},Xt="*/".concat("*"),Rt=M.createElement("a");function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(P)||[];if(g(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function jt(e,t,n,r){var i={},o=e===Pt;function a(s){var c;return i[s]=!0,z.each(e[s]||[],(function(e,s){var u=s(t,n,r);return"string"!=typeof u||o||i[u]?o?!(c=u):void 0:(t.dataTypes.unshift(u),a(u),!1)})),c}return a(t.dataTypes[0])||!i["*"]&&a("*")}function It(e,t){var n,r,i=z.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&z.extend(!0,e,r),e}Rt.href=wt.href,z.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Xt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":z.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?It(It(e,z.ajaxSettings),t):It(z.ajaxSettings,e)},ajaxPrefilter:Ft(Wt),ajaxTransport:Ft(Pt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var n,i,o,a,s,c,u,l,f,d,p=z.ajaxSetup({},t),h=p.context||p,m=p.context&&(h.nodeType||h.jquery)?z(h):z.event,b=z.Deferred(),g=z.Callbacks("once memory"),v=p.statusCode||{},y={},A={},_="canceled",w={readyState:0,getResponseHeader:function(e){var t;if(u){if(!a)for(a={};t=Et.exec(o);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return u?o:null},setRequestHeader:function(e,t){return null==u&&(e=A[e.toLowerCase()]=A[e.toLowerCase()]||e,y[e]=t),this},overrideMimeType:function(e){return null==u&&(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(u)w.always(e[w.status]);else for(t in e)v[t]=[v[t],e[t]];return this},abort:function(e){var t=e||_;return n&&n.abort(t),O(0,t),this}};if(b.promise(w),p.url=((e||p.url||wt.href)+"").replace(Bt,wt.protocol+"//"),p.type=t.method||t.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(P)||[""],null==p.crossDomain){c=M.createElement("a");try{c.href=p.url,c.href=c.href,p.crossDomain=Rt.protocol+"//"+Rt.host!=c.protocol+"//"+c.host}catch(e){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=z.param(p.data,p.traditional)),jt(Wt,p,t,w),u)return w;for(f in(l=z.event&&p.global)&&0==z.active++&&z.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!qt.test(p.type),i=p.url.replace(Nt,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(St,"+")):(d=p.url.slice(i.length),p.data&&(p.processData||"string"==typeof p.data)&&(i+=(Ot.test(i)?"&":"?")+p.data,delete p.data),!1===p.cache&&(i=i.replace(kt,"$1"),d=(Ot.test(i)?"&":"?")+"_="+zt.guid+++d),p.url=i+d),p.ifModified&&(z.lastModified[i]&&w.setRequestHeader("If-Modified-Since",z.lastModified[i]),z.etag[i]&&w.setRequestHeader("If-None-Match",z.etag[i])),(p.data&&p.hasContent&&!1!==p.contentType||t.contentType)&&w.setRequestHeader("Content-Type",p.contentType),w.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Xt+"; q=0.01":""):p.accepts["*"]),p.headers)w.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(!1===p.beforeSend.call(h,w,p)||u))return w.abort();if(_="abort",g.add(p.complete),w.done(p.success),w.fail(p.error),n=jt(Pt,p,t,w)){if(w.readyState=1,l&&m.trigger("ajaxSend",[w,p]),u)return w;p.async&&p.timeout>0&&(s=r.setTimeout((function(){w.abort("timeout")}),p.timeout));try{u=!1,n.send(y,O)}catch(e){if(u)throw e;O(-1,e)}}else O(-1,"No Transport");function O(e,t,a,c){var f,d,M,y,A,_=t;u||(u=!0,s&&r.clearTimeout(s),n=void 0,o=c||"",w.readyState=e>0?4:0,f=e>=200&&e<300||304===e,a&&(y=function(e,t,n){for(var r,i,o,a,s=e.contents,c=e.dataTypes;"*"===c[0];)c.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){c.unshift(i);break}if(c[0]in n)o=c[0];else{for(i in n){if(!c[0]||e.converters[i+" "+c[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==c[0]&&c.unshift(o),n[o]}(p,w,a)),!f&&z.inArray("script",p.dataTypes)>-1&&z.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),y=function(e,t,n,r){var i,o,a,s,c,u={},l=e.dataTypes.slice();if(l[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];for(o=l.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!c&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),c=o,o=l.shift())if("*"===o)o=c;else if("*"!==c&&c!==o){if(!(a=u[c+" "+o]||u["* "+o]))for(i in u)if((s=i.split(" "))[1]===o&&(a=u[c+" "+s[0]]||u["* "+s[0]])){!0===a?a=u[i]:!0!==u[i]&&(o=s[0],l.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+c+" to "+o}}}return{state:"success",data:t}}(p,y,w,f),f?(p.ifModified&&((A=w.getResponseHeader("Last-Modified"))&&(z.lastModified[i]=A),(A=w.getResponseHeader("etag"))&&(z.etag[i]=A)),204===e||"HEAD"===p.type?_="nocontent":304===e?_="notmodified":(_=y.state,d=y.data,f=!(M=y.error))):(M=_,!e&&_||(_="error",e<0&&(e=0))),w.status=e,w.statusText=(t||_)+"",f?b.resolveWith(h,[d,_,w]):b.rejectWith(h,[w,_,M]),w.statusCode(v),v=void 0,l&&m.trigger(f?"ajaxSuccess":"ajaxError",[w,p,f?d:M]),g.fireWith(h,[w,_]),l&&(m.trigger("ajaxComplete",[w,p]),--z.active||z.event.trigger("ajaxStop")))}return w},getJSON:function(e,t,n){return z.get(e,t,n,"json")},getScript:function(e,t){return z.get(e,void 0,t,"script")}}),z.each(["get","post"],(function(e,t){z[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),z.ajax(z.extend({url:e,type:t,dataType:i,data:n,success:r},z.isPlainObject(e)&&e))}})),z.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),z._evalUrl=function(e,t,n){return z.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){z.globalEval(e,t,n)}})},z.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=z(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return g(e)?this.each((function(t){z(this).wrapInner(e.call(this,t))})):this.each((function(){var t=z(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=g(e);return this.each((function(n){z(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){z(this).replaceWith(this.childNodes)})),this}}),z.expr.pseudos.hidden=function(e){return!z.expr.pseudos.visible(e)},z.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},z.ajaxSettings.xhr=function(){try{return new r.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},Ht=z.ajaxSettings.xhr();b.cors=!!Ht&&"withCredentials"in Ht,b.ajax=Ht=!!Ht,z.ajaxTransport((function(e){var t,n;if(b.cors||Ht&&!e.crossDomain)return{send:function(i,o){var a,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)s[a]=e.xhrFields[a];for(a in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);t=function(e){return function(){t&&(t=n=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o($t[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),n=s.onerror=s.ontimeout=t("error"),void 0!==s.onabort?s.onabort=n:s.onreadystatechange=function(){4===s.readyState&&r.setTimeout((function(){t&&n()}))},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),z.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),z.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return z.globalEval(e),e}}}),z.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),z.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=z("