From 65cde104fd966024098c70d15ca6684d8ebefb1c Mon Sep 17 00:00:00 2001 From: Alexis Saettler Date: Sat, 12 Dec 2020 13:10:17 +0100 Subject: [PATCH] chore(i18n): update translations (#4685) --- public/css/app-ltr.css | 4 +- public/css/app-rtl.css | 4 +- public/js/langs/ar.json | 2 +- public/js/langs/cs.json | 2 +- public/js/langs/da.json | 2 +- public/js/langs/de.json | 2 +- public/js/langs/el.json | 1 + public/js/langs/en-GB.json | 2 +- public/js/langs/es.json | 2 +- public/js/langs/fr.json | 2 +- public/js/langs/he.json | 2 +- public/js/langs/hr.json | 2 +- public/js/langs/it.json | 2 +- public/js/langs/ja.json | 2 +- public/js/langs/nl.json | 2 +- public/js/langs/no.json | 2 +- public/js/langs/pt-BR.json | 2 +- public/js/langs/pt.json | 2 +- public/js/langs/ru.json | 2 +- public/js/langs/sv.json | 1 + public/js/langs/tr.json | 2 +- public/js/langs/uk.json | 2 +- public/js/langs/vendor.json | 2 +- public/js/langs/vi.json | 1 + public/js/langs/zh-TW.json | 2 +- public/js/langs/zh.json | 2 +- public/mix-manifest.json | 4 +- resources/lang/ar/settings.php | 13 + resources/lang/cs/settings.php | 13 + resources/lang/da/settings.php | 13 + resources/lang/de/app.php | 34 +- resources/lang/de/auth.php | 4 +- resources/lang/de/logs.php | 22 +- resources/lang/de/mail.php | 26 +- resources/lang/de/people.php | 58 +- resources/lang/de/settings.php | 223 ++++---- resources/lang/el/app.php | 465 +++++++++++++++ resources/lang/el/auth.php | 88 +++ resources/lang/el/changelog.php | 12 + resources/lang/el/dashboard.php | 42 ++ resources/lang/el/format.php | 36 ++ resources/lang/el/journal.php | 30 + resources/lang/el/logs.php | 33 ++ resources/lang/el/mail.php | 48 ++ resources/lang/el/pagination.php | 25 + resources/lang/el/passwords.php | 30 + resources/lang/el/people.php | 534 ++++++++++++++++++ resources/lang/el/reminder.php | 17 + resources/lang/el/settings.php | 518 +++++++++++++++++ resources/lang/el/validation.php | 157 +++++ resources/lang/en-GB/settings.php | 13 + resources/lang/es/app.php | 8 +- resources/lang/es/mail.php | 4 +- resources/lang/es/passwords.php | 4 +- resources/lang/es/people.php | 18 +- resources/lang/es/settings.php | 45 +- resources/lang/fr/settings.php | 13 + resources/lang/he/settings.php | 13 + resources/lang/hr/settings.php | 13 + resources/lang/it/auth.php | 2 +- resources/lang/it/people.php | 24 +- resources/lang/it/settings.php | 17 +- resources/lang/ja/settings.php | 13 + resources/lang/nl/app.php | 12 +- resources/lang/nl/auth.php | 2 +- resources/lang/nl/logs.php | 12 +- resources/lang/nl/people.php | 8 +- resources/lang/nl/settings.php | 21 +- resources/lang/no/settings.php | 13 + resources/lang/pt-BR/settings.php | 13 + resources/lang/pt/settings.php | 13 + resources/lang/ru/settings.php | 13 + resources/lang/sv/app.php | 465 +++++++++++++++ resources/lang/sv/auth.php | 88 +++ resources/lang/sv/changelog.php | 12 + resources/lang/sv/dashboard.php | 42 ++ resources/lang/sv/format.php | 36 ++ resources/lang/sv/journal.php | 30 + resources/lang/sv/logs.php | 33 ++ resources/lang/sv/mail.php | 48 ++ resources/lang/sv/pagination.php | 25 + resources/lang/sv/passwords.php | 30 + resources/lang/sv/people.php | 534 ++++++++++++++++++ resources/lang/sv/reminder.php | 17 + resources/lang/sv/settings.php | 518 +++++++++++++++++ resources/lang/sv/validation.php | 157 +++++ resources/lang/tr/auth.php | 2 +- resources/lang/tr/people.php | 16 +- resources/lang/tr/settings.php | 15 +- resources/lang/uk/settings.php | 13 + .../vendor/confirmation/el/confirmation.php | 16 + .../vendor/confirmation/sv/confirmation.php | 16 + .../vendor/confirmation/vi/confirmation.php | 16 + resources/lang/vendor/webauthn/de/errors.php | 8 +- resources/lang/vendor/webauthn/el/errors.php | 15 + resources/lang/vendor/webauthn/es/errors.php | 4 +- resources/lang/vendor/webauthn/sv/errors.php | 15 + resources/lang/vendor/webauthn/vi/errors.php | 15 + resources/lang/vi/app.php | 465 +++++++++++++++ resources/lang/vi/auth.php | 88 +++ resources/lang/vi/changelog.php | 12 + resources/lang/vi/dashboard.php | 42 ++ resources/lang/vi/format.php | 36 ++ resources/lang/vi/journal.php | 30 + resources/lang/vi/logs.php | 33 ++ resources/lang/vi/mail.php | 48 ++ resources/lang/vi/pagination.php | 25 + resources/lang/vi/passwords.php | 30 + resources/lang/vi/people.php | 534 ++++++++++++++++++ resources/lang/vi/reminder.php | 17 + resources/lang/vi/settings.php | 518 +++++++++++++++++ resources/lang/vi/validation.php | 157 +++++ resources/lang/zh-TW/settings.php | 13 + resources/lang/zh/people.php | 2 +- resources/lang/zh/settings.php | 13 + 115 files changed, 6751 insertions(+), 290 deletions(-) create mode 100644 public/js/langs/el.json create mode 100644 public/js/langs/sv.json create mode 100644 public/js/langs/vi.json create mode 100644 resources/lang/el/app.php create mode 100644 resources/lang/el/auth.php create mode 100644 resources/lang/el/changelog.php create mode 100644 resources/lang/el/dashboard.php create mode 100644 resources/lang/el/format.php create mode 100644 resources/lang/el/journal.php create mode 100644 resources/lang/el/logs.php create mode 100644 resources/lang/el/mail.php create mode 100644 resources/lang/el/pagination.php create mode 100644 resources/lang/el/passwords.php create mode 100644 resources/lang/el/people.php create mode 100644 resources/lang/el/reminder.php create mode 100644 resources/lang/el/settings.php create mode 100644 resources/lang/el/validation.php create mode 100644 resources/lang/sv/app.php create mode 100644 resources/lang/sv/auth.php create mode 100644 resources/lang/sv/changelog.php create mode 100644 resources/lang/sv/dashboard.php create mode 100644 resources/lang/sv/format.php create mode 100644 resources/lang/sv/journal.php create mode 100644 resources/lang/sv/logs.php create mode 100644 resources/lang/sv/mail.php create mode 100644 resources/lang/sv/pagination.php create mode 100644 resources/lang/sv/passwords.php create mode 100644 resources/lang/sv/people.php create mode 100644 resources/lang/sv/reminder.php create mode 100644 resources/lang/sv/settings.php create mode 100644 resources/lang/sv/validation.php create mode 100644 resources/lang/vendor/confirmation/el/confirmation.php create mode 100644 resources/lang/vendor/confirmation/sv/confirmation.php create mode 100644 resources/lang/vendor/confirmation/vi/confirmation.php create mode 100644 resources/lang/vendor/webauthn/el/errors.php create mode 100644 resources/lang/vendor/webauthn/sv/errors.php create mode 100644 resources/lang/vendor/webauthn/vi/errors.php create mode 100644 resources/lang/vi/app.php create mode 100644 resources/lang/vi/auth.php create mode 100644 resources/lang/vi/changelog.php create mode 100644 resources/lang/vi/dashboard.php create mode 100644 resources/lang/vi/format.php create mode 100644 resources/lang/vi/journal.php create mode 100644 resources/lang/vi/logs.php create mode 100644 resources/lang/vi/mail.php create mode 100644 resources/lang/vi/pagination.php create mode 100644 resources/lang/vi/passwords.php create mode 100644 resources/lang/vi/people.php create mode 100644 resources/lang/vi/reminder.php create mode 100644 resources/lang/vi/settings.php create mode 100644 resources/lang/vi/validation.php diff --git a/public/css/app-ltr.css b/public/css/app-ltr.css index 3da6018781a..da8d2edef2d 100644 --- a/public/css/app-ltr.css +++ b/public/css/app-ltr.css @@ -6,7 +6,7 @@ * Copyright 2011-2020 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:#f8fafc}[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}a{color:#3490dc;text-decoration:none}a:hover{color:#1d68a7;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{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}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} + */*,: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:#f8fafc}[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:#3490dc;text-decoration:none}a:hover{color:#1d68a7;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{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}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.5.3 (https://getbootstrap.com/) @@ -21,7 +21,7 @@ /*! 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,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}.fw3{font-weight:300}.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}.ph1{padding-left:.25rem;padding-right:.25rem}.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}.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}} +/*! 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}.fw3{font-weight:300}.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}.ph1{padding-left:.25rem;padding-right:.25rem}.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 diff --git a/public/css/app-rtl.css b/public/css/app-rtl.css index e15b13b8a17..a21ed8d838b 100644 --- a/public/css/app-rtl.css +++ b/public/css/app-rtl.css @@ -6,7 +6,7 @@ * Copyright 2011-2020 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:#f8fafc}[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}a{color:#3490dc;text-decoration:none}a:hover{color:#1d68a7;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{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}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} + */*,: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:#f8fafc}[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:#3490dc;text-decoration:none}a:hover{color:#1d68a7;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{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}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.5.3 (https://getbootstrap.com/) @@ -21,7 +21,7 @@ /*! 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,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}.fw3{font-weight:300}.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}.ph1{padding-left:.25rem;padding-right:.25rem}.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}.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}} +/*! 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}.fw3{font-weight:300}.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}.ph1{padding-left:.25rem;padding-right:.25rem}.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 diff --git a/public/js/langs/ar.json b/public/js/langs/ar.json index 0d28981a02a..9f6f77accf9 100644 --- a/public/js/langs/ar.json +++ b/public/js/langs/ar.json @@ -1 +1 @@ -{"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":"\u0627\u0645\u062a\u0644\u0643 \u0639\u0644\u0627\u0642\u0627\u062a \u0623\u0641\u0636\u0644 \u0645\u0639 \u0623\u062d\u0628\u0627\u0626\u0643. \u0645\u062f\u064a\u0631 \u0639\u0644\u0627\u0642\u0627\u062a \u0645\u062c\u0627\u0646\u064a \u0639\u0644\u0649 \u0627\u0644\u0648\u064a\u0628 \u0644\u0644\u0639\u0627\u0626\u0644\u0629 \u0648 \u0627\u0644\u0623\u0635\u062f\u0642\u0627\u0621.","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","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":"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":"\u062a\u062a\u0645 \u0627\u0644\u0635\u064a\u0627\u0646\u0629. \u0633\u0646\u0639\u0648\u062f \u062d\u0627\u0644\u0627\u064b.","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":"1 file selected...|{count} files selected...","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":"\u064a\u062a\u0648\u0641\u0631 \u0625\u0635\u062f\u0627\u0631 \u062c\u062f\u064a\u062f","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":"\u0623\u064a \u0645\u0644\u0627\u062d\u0638\u0627\u062a\u061f","footer_send_email":"\u0623\u0631\u0633\u0644 \u0644\u064a \u0631\u0633\u0627\u0644\u0629","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":"\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u0645\u064a\u0644...","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":"\u0644\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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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","photo_previous":"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":"\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0639\u0645\u0644 \u0628\u0646\u062c\u0627\u062d","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":"\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0644\u062d\u0633\u0627\u0628\u0643. \u0643\u0646 \u062d\u0630\u0631\u0627\u064b\u060c \u0644\u0646 \u064a\u0643\u0648\u0646 \u062d\u0633\u0627\u0628\u0643 \u0622\u0645\u0646\u0627\u064b \u0628\u0639\u062f \u0627\u0644\u0622\u0646!","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":"\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0644\u0632\u064a\u0627\u062f\u0629 \u0623\u0645\u0646 \u062d\u0633\u0627\u0628\u0643.","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":"\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 \u0627\u0644\u062a\u0627\u0644\u064a:","2fa_enable_otp_help":"\u0625\u0630\u0627 \u0643\u0627\u0646 \u062a\u0637\u0628\u064a\u0642\u0643 \u0644\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0644\u0627 \u064a\u062f\u0639\u0645 QR barcodes\u060c \u0641\u0623\u062f\u062e\u0644 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u062a\u0627\u0644\u064a:","2fa_enable_otp_validate":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0635\u062d\u0629 \u0627\u0644\u062c\u0647\u0627\u0632 \u0627\u0644\u062c\u062f\u064a\u062f \u0627\u0644\u0630\u064a \u0642\u0645\u062a \u0628\u062a\u0639\u064a\u064a\u0646\u0647 \u0644\u0644\u062a\u0648:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u062d\u0633\u0627\u0628\u0643\u061f \u0644\u064a\u0633 \u0647\u0646\u0627\u0644\u0643 \u0639\u0648\u062f\u0629.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","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":"\u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u0630\u064a \u064a\u062a\u0645 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647 \u0644\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644\u060c \u0648 \u062d\u064a\u062b \u0633\u0648\u0641 \u062a\u062a\u0644\u0642\u0649 \u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u062a\u0630\u0643\u064a\u0631 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643.","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":"\u0627\u0646\u0642\u0631 \u0641\u0648\u0642 \u0627\u0644\u0632\u0631 \u0644\u0628\u062f\u0621 \u0627\u0644\u062a\u0635\u062f\u064a\u0631. \u0642\u062f \u064a\u0633\u062a\u063a\u0631\u0642 \u0627\u0644\u0623\u0645\u0631 \u0639\u062f\u0629 \u062f\u0642\u0627\u0626\u0642 \u0644\u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u2013 \u064a\u0631\u062c\u0649 \u0627\u0644\u062a\u062d\u0644\u064a \u0628\u0627\u0644\u0635\u0628\u0631\u060c \u0648 \u0644\u0627 \u062a\u0636\u063a\u0637 \u0643\u062b\u064a\u0631\u0627\u064b \u0639\u0644\u0649 \u0627\u0644\u0632\u0631.","export_sql_cta":"\u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u0625\u0644\u0649 SQL","export_sql_explanation":"\u062a\u0635\u062f\u064a\u0631 \u0628\u064a\u0627\u0646\u0627\u062a\u0643 \u0641\u064a \u0635\u064a\u063a\u0629 SQL \u064a\u0633\u0645\u062d \u0644\u0643 \u0628\u0623\u062e\u0630 \u0628\u064a\u0627\u0646\u0627\u062a\u0643 \u0648 \u0625\u0633\u062a\u064a\u0631\u0627\u062f\u0647\u0627 \u0644\u0646\u0645\u0648\u0630\u062c Monica \u0627\u0644\u062e\u0627\u0635 \u0628\u0643. \u0647\u0630\u0627 \u0627\u0644\u0623\u0645\u0631 \u0642\u064a\u0645 \u0641\u0642\u0637 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0644\u062f\u064a\u0643 \u062e\u0627\u062f\u0645 \u062e\u0627\u0635 \u0628\u0643.","export_sql_link_instructions":"\u0645\u0644\u0627\u062d\u0638\u0629: \u0627\u0642\u0631\u0623 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0627\u062a<\/a> \u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u0639\u0646 \u0625\u0633\u062a\u064a\u0631\u0627\u062f \u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u0644\u0646\u0645\u0648\u0630\u062c\u0643.","export_title":"\u0642\u0645 \u0628\u062a\u0635\u062f\u064a\u0631 \u0628\u064a\u0627\u0646\u0627\u062a \u062d\u0633\u0627\u0628\u0643","export_title_sql":"\u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u0625\u0644\u0649 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":"\u0625\u0636\u0627\u0641\u0629 \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644 \u062c\u062f\u064a\u062f\u0629\u060c \u0648\u062a\u062e\u0637\u0649 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629","import_upload_behaviour_help":"\u0645\u0644\u0627\u062d\u0638\u0629: \u0627\u0644\u0625\u0633\u062a\u0628\u062f\u0627\u0644 \u0633\u064a\u0633\u062a\u0628\u062f\u0644 \u0643\u0644 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0641\u064a vCard\u060c \u0644\u0643\u0646 \u0633\u064a\u0628\u0642\u064a \u062d\u0642\u0648\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629.","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":"\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u062f\u0642\u064a\u0642\u0629 \u0642\u0628\u0644 \u062a\u062d\u0645\u064a\u0644\u0647\u0627\u060c \u0644\u0623\u0646\u0647 \u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u062a\u0631\u0627\u062c\u0639 \u0639\u0646 \u0627\u0644\u062a\u062d\u0645\u064a\u0644.","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":"\u062a\u0635\u062f\u064a\u0631 \u062a\u0639\u0644\u064a\u0645\u0627\u062a Contacts.app (macOS)<\/a> \u0648 Google Contacts<\/a>.","import_upload_rule_limit":"\u062a\u0642\u062a\u0635\u0631 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0625\u0644\u0649 10 \u0645\u064a\u063a\u0627 \u0628\u0627\u064a\u062a.","import_upload_rule_multiple":"\u062d\u0627\u0644\u064a\u0627\u064b\u060c \u0625\u0630\u0627 \u0643\u0627\u0646 \u0644\u062f\u0649 \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644\u0643 \u0639\u062f\u0629 \u0639\u0646\u0627\u0648\u064a\u0646 \u0628\u0631\u064a\u062f \u0648 \u0623\u0631\u0642\u0627\u0645 \u0647\u0648\u0627\u062a\u0641\u060c \u0641\u0642\u0637 \u0627\u0644\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0623\u0648\u0644 \u0633\u064a\u0624\u062e\u0630 \u0641\u064a \u0639\u064a\u0646 \u0627\u0644\u0625\u0639\u062a\u0628\u0627\u0631.","import_upload_rule_time":"\u0642\u062f \u064a\u0633\u062a\u063a\u0631\u0642 \u0627\u0644\u0623\u0645\u0631 \u0625\u0644\u0649 1 \u062f\u0642\u064a\u0642\u0629 \u0644\u062a\u062d\u0645\u064a\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0648 \u0645\u0639\u0627\u0644\u062c\u062a\u0647\u0627. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u062d\u0644\u064a \u0628\u0627\u0644\u0635\u0628\u0631.","import_upload_rule_vcard":"\u0646\u062d\u0646 \u0646\u062f\u0639\u0645 \u0635\u064a\u063a\u0629 vCard 3.0\u060c \u0648\u0647\u064a \u0627\u0644\u0635\u064a\u063a\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0644\u0640Contacts.app (\u0645\u0627\u0643) \u0648 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":"\u0644\u0627 \u0627\u0633\u0645 \u0623\u0648\u0644 (\u0645\u0637\u0644\u0648\u0628)","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_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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":" - \u0641\u0644\u0627\u0646 \u0627\u0644\u0641\u0644\u0627\u0646\u064a","name_order_firstname_lastname_nickname":" () - \u0641\u0644\u0627\u0646 \u0627\u0644\u0641\u0644\u0627\u0646\u064a (\u0641\u0644\u0627\u0646)","name_order_firstname_nickname_lastname":" () - \u0641\u0644\u0627\u0646 (\u0641\u0644\u0627\u0646) \u0627\u0644\u0641\u0644\u0627\u0646\u064a","name_order_lastname_firstname":" \u0641\u0644\u0627\u0646\u064a \u0641\u0644\u0627\u0646","name_order_lastname_firstname_nickname":" () - \u0641\u0644\u0627\u0646\u064a \u0641\u0644\u0627\u0646 (\u0641\u0644\u0627\u0646)","name_order_lastname_nickname_firstname":" () \u0641\u0644\u0627\u0646\u064a (\u0641\u0644\u0627\u0646) \u0641\u0644\u0627\u0646","name_order_nickname":" - \u0641\u0644\u0627\u0646","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u062a\u063a\u064a\u064a\u0631 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_change":"\u062a\u063a\u064a\u064a\u0631 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","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":"\u0623\u062f\u062e\u0644 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631 \u062c\u062f\u064a\u062f\u0629","password_new2":"\u062a\u0623\u0643\u064a\u062f","password_new2_placeholder":"\u0623\u0639\u062f \u0643\u062a\u0627\u0628\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629","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":"\u0623\u064a \u0646\u0634\u0627\u0637 \u062a\u0645 \u0645\u0639 \u0623\u064a \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0644\u0643\u060c \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0644\u0647\u0627 \u0646\u0648\u0639 \u0648 \u0641\u0626\u0629. \u062d\u0633\u0627\u0628\u0643 \u064a\u0623\u062a\u064a \u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0627\u064b \u0645\u0639 \u0639\u062f\u0629 \u0623\u0646\u0648\u0627\u0639 \u0644\u0644\u0641\u0626\u0627\u062a\u060c \u0644\u0643\u0646\u0643 \u062a\u0633\u062a\u0637\u064a\u0639 \u062a\u062e\u0635\u064a\u0635 \u0643\u0644 \u0634\u064a\u0621 \u0647\u0646\u0627.","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":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0641\u0626\u0629\u061f \u062d\u0630\u0641\u0647\u0627 \u0633\u064a\u0632\u064a\u0644 \u0643\u0644 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0627\u0644\u0645\u0631\u062a\u0628\u0637\u0629 \u0628\u0647\u0627. \u0644\u0643\u0646\u060c \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_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":"\u0643\u064a\u0641 \u064a\u0646\u0628\u063a\u064a \u0644\u0646\u0627 \u062a\u0633\u0645\u064a\u0629 \u0647\u0630\u0647 \u0627\u0644\u0641\u0626\u0629 \u0627\u0644\u062c\u062f\u064a\u062f\u0629\u061f","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":"\u0643\u064a\u0641 \u064a\u0646\u0628\u063a\u064a \u0644\u0646\u0627 \u062a\u0633\u0645\u064a\u0629 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u062c\u062f\u064a\u062f \u0645\u0646 \u0627\u0644\u0646\u0634\u0627\u0637\u061f","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 deleted with success.","personalization_contact_field_type_description":"\u0647\u0646\u0627 \u064a\u0645\u0643\u0646\u0643 \u062a\u0647\u064a\u0626\u0629 \u062c\u0645\u064a\u0639 \u0627\u0644\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u062e\u062a\u0644\u0641\u0629 \u0645\u0646 \u062d\u0642\u0648\u0644 \u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u062a\u064a \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0625\u0642\u062a\u0631\u0627\u0646 \u0628\u0647\u0627. \u0641\u064a \u0627\u0644\u0645\u0633\u062a\u0642\u0628\u0644\u060c \u0625\u0630\u0627 \u0638\u0647\u0631\u062a \u0634\u0628\u0643\u0629 \u0625\u062c\u062a\u0645\u0627\u0639\u064a\u0629 \u062c\u062f\u064a\u062f\u0629\u060c \u0633\u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0625\u0636\u0627\u0641\u0629 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u062c\u062f\u064a\u062f \u0645\u0646 \u0627\u0644\u0637\u0631\u0642 \u0644\u0644\u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u062c\u0647\u0627\u062a \u0625\u062a\u0635\u0627\u0644\u0643.","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 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":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 {name}\u061f","personalization_genders_modal_delete_question":"\u062d\u0627\u0644\u064a\u0627 \u0644\u062f\u064a\u0643 {count} \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0644\u062f\u064a\u0647\u0627 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0645\u0646 \u0627\u0644\u062c\u0646\u0633. \u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062c\u0646\u0633\u060c \u0641\u0623\u064a \u0646\u0648\u0639 \u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0647\u0630\u0647\u061f| \u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627 {count} \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644 \u0644\u062f\u064a\u0647\u0627 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0645\u0646 \u0627\u0644\u062c\u0646\u0633. \u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062c\u0646\u0633\u060c \u0645\u0627 \u0628\u064a\u0646 \u0641\u0623\u064a \u0646\u0648\u0639 \u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0647\u0624\u0644\u0627\u0621\u061f","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the next default?","personalization_genders_modal_edit":"\u062a\u062d\u062f\u064a\u062b \u0646\u0648\u0639 \u0627\u0644\u062c\u0646\u0633","personalization_genders_modal_error":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0646\u0648\u0639 \u062c\u0646\u0633 \u0635\u0627\u0644\u062d \u0645\u0646 \u0627\u0644\u0642\u0627\u0626\u0645\u0629.","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_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_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_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":"\u0639\u0638\u0645 \u0645\u0643\u0633\u0648\u0631","personalization_life_event_type_changed_beliefs":"\u062a\u063a\u064a\u0631 \u0627\u0644\u0645\u0639\u062a\u0642\u062f\u0627\u062a","personalization_life_event_type_dentist":"\u0637\u0628\u064a\u0628 \u0627\u0644\u0623\u0633\u0646\u0627\u0646","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_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":"\u0647\u0648\u0627\u064a\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_instrument":"\u0622\u0644\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_job":"\u0639\u0645\u0644 \u062c\u062f\u064a\u062f","personalization_life_event_type_new_language":"\u0644\u063a\u0629 \u062c\u062f\u064a\u062f\u0629","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":"\u0631\u064a\u0627\u0636\u0629 \u062c\u062f\u064a\u062f\u0629","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":"\u0625\u0632\u0627\u0644\u0629 \u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0623\u0633\u0646\u0627\u0646","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":"\u062c\u0631\u0627\u062d\u0629","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":"\u0625\u0631\u062a\u062f\u0627\u0621 \u0646\u0638\u0627\u0631\u0629 \u0623\u0648 \u0639\u062f\u0633\u0629","personalization_life_event_type_weight_loss":"\u0641\u0642\u062f\u0627\u0646 \u0627\u0644\u0648\u0632\u0646","personalization_module_desc":"\u0628\u0639\u0636 \u0627\u0644\u0623\u0634\u062e\u0627\u0635 \u0644\u0627 \u064a\u062d\u062a\u0627\u062c\u0648\u0646 \u0643\u0644 \u0627\u0644\u0645\u064a\u0632\u0627\u062a. \u064a\u0645\u0643\u0646\u0643 \u0623\u062f\u0646\u0627\u0647 \u062a\u0628\u062f\u064a\u0644 \u0645\u064a\u0632\u0627\u062a \u0645\u0639\u064a\u0646\u0629 \u0648 \u0627\u0644\u062a\u064a \u062a\u064f\u0633\u062a\u062e\u062f\u0645 \u0639\u0644\u0649 \u0635\u0641\u062d\u0629 \u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644. \u0647\u0630\u0627 \u0627\u0644\u062a\u063a\u064a\u064a\u0631 \u0633\u064a\u0624\u062b\u0631 \u0639\u0644\u0649 \u062c\u0645\u064a\u0639 \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644\u0643. \u0639\u0644\u0645\u0627\u064b \u0628\u0623\u0646\u0643 \u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u062a\u0639\u0637\u064a\u0644 \u0625\u062d\u062f\u0649 \u0627\u0644\u0645\u064a\u0632\u0627\u062a\u060c \u0641\u0644\u0646 \u062a\u064f\u062d\u0630\u0641 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a - \u0633\u0646\u0642\u0648\u0645 \u0628\u0628\u0633\u0627\u0637\u0629 \u0628\u0625\u062e\u0641\u0627\u0621 \u0647\u0630\u0647 \u0627\u0644\u0645\u064a\u0632\u0629.","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":"\u0644\u0643\u0644 \u062a\u0630\u0643\u064a\u0631 \u062a\u0642\u0648\u0645 \u0628\u062a\u0639\u064a\u064a\u0646\u0647\u060c \u0646\u0633\u062a\u0637\u064a\u0639 \u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f \u0642\u0628\u0644 \u062d\u0635\u0648\u0644 \u0627\u0644\u062d\u062f\u062b \u0628\u0639\u062f\u0629 \u0623\u064a\u0627\u0645. \u062a\u0633\u062a\u0637\u064a\u0639 \u062a\u0628\u062f\u064a\u0644 \u0647\u0630\u0647 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a \u0647\u0646\u0627. \u0639\u0644\u0645\u0627\u064b \u0628\u0623\u0646 \u0647\u0630\u0647 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a \u062a\u0646\u0637\u0628\u0642 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0627\u0644\u062a\u0630\u0643\u064a\u0631\u0627\u062a \u0627\u0644\u0634\u0647\u0631\u064a\u0629 \u0648\u0627\u0644\u0633\u0646\u0648\u064a\u0629.","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":"\u0647\u0646\u0627 \u064a\u0645\u0643\u0646\u0643 \u0625\u064a\u062c\u0627\u062f \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u062e\u062a\u0644\u0641\u0629 \u0644\u062a\u0647\u064a\u0626\u0629 \u062d\u0633\u0627\u0628\u0643. \u0647\u0630\u0647 \u0627\u0644\u0645\u064a\u0632\u0627\u062a \u062a\u0641\u064a\u062f \"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0627\u0644\u0645\u0645\u064a\u0632\u064a\u0646\" \u0623\u0643\u062b\u0631\u060c \u0627\u0644\u0630\u064a\u0646 \u064a\u0631\u064a\u062f\u0648\u0646 \u0633\u064a\u0637\u0631\u0629 \u0642\u0635\u0648\u0649 \u0639\u0644\u0649 Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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":"\u0648\u0642\u062a \u062a\u0630\u0643\u064a\u0631\u0627\u062a \u0627\u0644\u064a\u0648\u0645 \u064a\u062c\u0628 \u0623\u0646 \u0642\u062f \u062a\u0645 \u0625\u0631\u0633\u0627\u0644\u0647\u0627","reminder_time_to_send_help":"\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a\u0643\u060c \u062a\u0630\u0643\u064a\u0631\u0643 \u0627\u0644\u0642\u0627\u062f\u0645 \u0633\u064a\u0631\u0633\u0644 \u0641\u064a {dateTime}<\/span>.","reset_cta":"\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u062d\u0633\u0627\u0628","reset_desc":"\u0647\u0644 \u062a\u0631\u063a\u0628 \u0641\u064a \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u062d\u0633\u0627\u0628\u0643\u061f \u0647\u0630\u0627 \u0633\u064a\u0624\u062f\u064a \u0625\u0644\u0649 \u0625\u0632\u0627\u0644\u0629 \u062c\u0647\u0627\u062a \u0625\u062a\u0635\u0627\u0644\u0643\u060c \u0648 \u062c\u0645\u064a\u0639 \u0628\u064a\u0627\u0646\u062a\u0647\u0645. \u062d\u0633\u0627\u0628\u0643 \u0644\u0646 \u064a\u062a\u0645 \u062d\u0630\u0641\u0647.","reset_notice":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u062d\u0633\u0627\u0628\u0643\u061f \u0644\u064a\u0633 \u0647\u0646\u0627\u0644\u0643 \u0639\u0648\u062f\u0629.","reset_success":"\u0644\u0642\u062f \u062a\u0645 \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u062d\u0633\u0627\u0628\u0643 \u0628\u0646\u062c\u0627\u062d","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":"\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062a","sidebar_settings_users":"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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":"\u0642\u0645 \u0628\u062f\u0639\u0645 \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u060c \u0644\u0643\u064a \u0646\u0633\u062a\u0637\u064a\u0639 \u062a\u0639\u0631\u064a\u0641 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u064a\u0632\u0627\u062a \u0627\u0644\u0631\u0627\u0626\u0639\u0629.","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":"\u064a\u062c\u0628 \u0623\u0644\u0627 \u064a\u0643\u0648\u0646 \u0644\u062f\u064a\u0643 \u062f\u0639\u0648\u0627\u062a \u0645\u0639\u0644\u0642\u0629","subscriptions_downgrade_rule_invitations_constraint":"\u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627\u064b \u062f\u0639\u0648\u0629 1 \u0645\u0639\u0644\u0642\u0629<\/a> \u0642\u062f \u0623\u064f\u0631\u0633\u0644\u062a.| \u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627\u064b :count \u062f\u0639\u0648\u0627\u062a \u0645\u0639\u0644\u0642\u0629<\/a> \u0642\u062f \u0623\u064f\u0631\u0633\u0644\u062a.","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":"\u0634\u0643\u0631\u0627\u064b \u062c\u0632\u064a\u0644\u0627\u064b \u0644\u0643 \u0644\u062a\u062c\u0631\u0628\u0629 \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062f\u0641\u0648\u0639\u0629. \u0646\u062d\u0646 \u0646\u0648\u0627\u0635\u0644 \u0627\u0644\u0625\u0633\u062a\u0645\u0631\u0627\u0631 \u0628\u0625\u0636\u0627\u0641\u0629 \u0645\u064a\u0632\u0627\u062a \u062c\u062f\u064a\u062f\u0629 \u0641\u064a Monica - \u0644\u0630\u0627 \u0642\u062f \u062a\u0631\u064a\u062f \u0627\u0644\u0639\u0648\u062f\u0629 \u0641\u064a \u0627\u0644\u0645\u0633\u062a\u0642\u0628\u0644 \u0644\u062a\u0631\u0649 \u0625\u0630\u0627 \u0643\u0646\u062a\u064e \u0645\u0647\u062a\u0645\u0627\u064b \u0628\u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643 \u0645\u062c\u062f\u062f\u0627\u064b.","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":"\u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0625\u0644\u063a\u0627\u0621 \u0641\u064a \u0623\u064a \u0648\u0642\u062a\u060c \u0628\u062f\u0648\u0646 \u0623\u064a \u0623\u0633\u0626\u0644\u0629\u060c \u0648 \u0643\u0644\u0647 \u0628\u0646\u0641\u0633\u0643 - \u0644\u0627 \u062d\u0627\u062c\u0629 \u0644\u0644\u0625\u062a\u0635\u0627\u0644 \u0628\u0627\u0644\u062f\u0639\u0645\u060c \u0623\u0648 \u0623\u064a\u0627 \u0643\u0627\u0646. \u0648\u0645\u0639 \u0630\u0644\u0643\u060c \u0644\u0646 \u064a\u0639\u0627\u062f \u0644\u0643 \u0623\u064a \u0645\u0627\u0644 \u0644\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u062d\u0627\u0644\u064a\u0629.","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":"\u0647\u0644 \u0647\u0646\u0627\u0643 \u062d\u062f \u0644\u0639\u062f\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0643\u0646\u0646\u0627 \u0625\u0636\u0627\u0641\u062a\u0647\u0645 \u0641\u064a \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629\u061f","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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":"\u0623\u0624\u0643\u062f \u0628\u0623\u0646\u064a \u0623\u0631\u064a\u062f \u062f\u0639\u0648\u0629 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0644\u062d\u0633\u0627\u0628\u064a. \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0633\u064a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u0648\u0635\u0648\u0644 \u0644\u0643\u0644 \u0628\u064a\u0627\u0646\u0627\u062a\u064a \u0648 \u0631\u0624\u064a\u0629 \u0645\u0627 \u0623\u0631\u0627\u0647 \u0628\u0627\u0644\u0636\u0628\u0637.","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":"\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0633\u064a\u0643\u0648\u0646 \u0644\u0647 \u0646\u0641\u0633 \u0627\u0644\u062d\u0642\u0648\u0642 \u0627\u0644\u062a\u064a \u0644\u062f\u064a\u0643\u060c \u0628\u0645\u0627 \u0641\u064a \u0630\u0644\u0643 \u062f\u0639\u0648\u0629 \u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0622\u062e\u0631\u064a\u0646 \u0648\u062d\u0630\u0641\u0647\u0645 (\u0628\u0645\u0627 \u0641\u064a\u0647\u0645 \u0623\u0646\u062a). \u0648 \u0644\u0630\u0644\u0643\u060c \u062a\u0623\u0643\u062f \u0628\u0623\u0646\u0643 \u062a\u062b\u0642 \u0628\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635.","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":"\u062f\u0639\u0648\u0629 \u0645\u0633\u062a\u062e\u062f\u0645 \u062c\u062f\u064a\u062f \u0639\u0646 \u0637\u0631\u064a\u0642 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u062d\u0633\u0627\u0628\u0643","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."}} +{"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":"\u0627\u0645\u062a\u0644\u0643 \u0639\u0644\u0627\u0642\u0627\u062a \u0623\u0641\u0636\u0644 \u0645\u0639 \u0623\u062d\u0628\u0627\u0626\u0643. \u0645\u062f\u064a\u0631 \u0639\u0644\u0627\u0642\u0627\u062a \u0645\u062c\u0627\u0646\u064a \u0639\u0644\u0649 \u0627\u0644\u0648\u064a\u0628 \u0644\u0644\u0639\u0627\u0626\u0644\u0629 \u0648 \u0627\u0644\u0623\u0635\u062f\u0642\u0627\u0621.","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","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":"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":"\u062a\u062a\u0645 \u0627\u0644\u0635\u064a\u0627\u0646\u0629. \u0633\u0646\u0639\u0648\u062f \u062d\u0627\u0644\u0627\u064b.","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":"1 file selected...|{count} files selected...","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":"\u064a\u062a\u0648\u0641\u0631 \u0625\u0635\u062f\u0627\u0631 \u062c\u062f\u064a\u062f","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":"\u0623\u064a \u0645\u0644\u0627\u062d\u0638\u0627\u062a\u061f","footer_send_email":"\u0623\u0631\u0633\u0644 \u0644\u064a \u0631\u0633\u0627\u0644\u0629","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":"\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u0645\u064a\u0644...","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":"\u0644\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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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","photo_previous":"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":"\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0639\u0645\u0644 \u0628\u0646\u062c\u0627\u062d","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":"\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0644\u062d\u0633\u0627\u0628\u0643. \u0643\u0646 \u062d\u0630\u0631\u0627\u064b\u060c \u0644\u0646 \u064a\u0643\u0648\u0646 \u062d\u0633\u0627\u0628\u0643 \u0622\u0645\u0646\u0627\u064b \u0628\u0639\u062f \u0627\u0644\u0622\u0646!","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":"\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0644\u0632\u064a\u0627\u062f\u0629 \u0623\u0645\u0646 \u062d\u0633\u0627\u0628\u0643.","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":"\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 \u0627\u0644\u062a\u0627\u0644\u064a:","2fa_enable_otp_help":"\u0625\u0630\u0627 \u0643\u0627\u0646 \u062a\u0637\u0628\u064a\u0642\u0643 \u0644\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0627\u0644\u062b\u0646\u0627\u0626\u064a\u0629 \u0644\u0627 \u064a\u062f\u0639\u0645 QR barcodes\u060c \u0641\u0623\u062f\u062e\u0644 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u062a\u0627\u0644\u064a:","2fa_enable_otp_validate":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0635\u062d\u0629 \u0627\u0644\u062c\u0647\u0627\u0632 \u0627\u0644\u062c\u062f\u064a\u062f \u0627\u0644\u0630\u064a \u0642\u0645\u062a \u0628\u062a\u0639\u064a\u064a\u0646\u0647 \u0644\u0644\u062a\u0648:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u062d\u0633\u0627\u0628\u0643\u061f \u0644\u064a\u0633 \u0647\u0646\u0627\u0644\u0643 \u0639\u0648\u062f\u0629.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","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":"\u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u0630\u064a \u064a\u062a\u0645 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647 \u0644\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644\u060c \u0648 \u062d\u064a\u062b \u0633\u0648\u0641 \u062a\u062a\u0644\u0642\u0649 \u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u062a\u0630\u0643\u064a\u0631 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643.","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":"\u0627\u0646\u0642\u0631 \u0641\u0648\u0642 \u0627\u0644\u0632\u0631 \u0644\u0628\u062f\u0621 \u0627\u0644\u062a\u0635\u062f\u064a\u0631. \u0642\u062f \u064a\u0633\u062a\u063a\u0631\u0642 \u0627\u0644\u0623\u0645\u0631 \u0639\u062f\u0629 \u062f\u0642\u0627\u0626\u0642 \u0644\u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u2013 \u064a\u0631\u062c\u0649 \u0627\u0644\u062a\u062d\u0644\u064a \u0628\u0627\u0644\u0635\u0628\u0631\u060c \u0648 \u0644\u0627 \u062a\u0636\u063a\u0637 \u0643\u062b\u064a\u0631\u0627\u064b \u0639\u0644\u0649 \u0627\u0644\u0632\u0631.","export_sql_cta":"\u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u0625\u0644\u0649 SQL","export_sql_explanation":"\u062a\u0635\u062f\u064a\u0631 \u0628\u064a\u0627\u0646\u0627\u062a\u0643 \u0641\u064a \u0635\u064a\u063a\u0629 SQL \u064a\u0633\u0645\u062d \u0644\u0643 \u0628\u0623\u062e\u0630 \u0628\u064a\u0627\u0646\u0627\u062a\u0643 \u0648 \u0625\u0633\u062a\u064a\u0631\u0627\u062f\u0647\u0627 \u0644\u0646\u0645\u0648\u0630\u062c Monica \u0627\u0644\u062e\u0627\u0635 \u0628\u0643. \u0647\u0630\u0627 \u0627\u0644\u0623\u0645\u0631 \u0642\u064a\u0645 \u0641\u0642\u0637 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0644\u062f\u064a\u0643 \u062e\u0627\u062f\u0645 \u062e\u0627\u0635 \u0628\u0643.","export_sql_link_instructions":"\u0645\u0644\u0627\u062d\u0638\u0629: \u0627\u0642\u0631\u0623 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0627\u062a<\/a> \u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u0639\u0646 \u0625\u0633\u062a\u064a\u0631\u0627\u062f \u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u0644\u0646\u0645\u0648\u0630\u062c\u0643.","export_title":"\u0642\u0645 \u0628\u062a\u0635\u062f\u064a\u0631 \u0628\u064a\u0627\u0646\u0627\u062a \u062d\u0633\u0627\u0628\u0643","export_title_sql":"\u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u0625\u0644\u0649 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":"\u0625\u0636\u0627\u0641\u0629 \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644 \u062c\u062f\u064a\u062f\u0629\u060c \u0648\u062a\u062e\u0637\u0649 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629","import_upload_behaviour_help":"\u0645\u0644\u0627\u062d\u0638\u0629: \u0627\u0644\u0625\u0633\u062a\u0628\u062f\u0627\u0644 \u0633\u064a\u0633\u062a\u0628\u062f\u0644 \u0643\u0644 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0641\u064a vCard\u060c \u0644\u0643\u0646 \u0633\u064a\u0628\u0642\u064a \u062d\u0642\u0648\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629.","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":"\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u062f\u0642\u064a\u0642\u0629 \u0642\u0628\u0644 \u062a\u062d\u0645\u064a\u0644\u0647\u0627\u060c \u0644\u0623\u0646\u0647 \u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u062a\u0631\u0627\u062c\u0639 \u0639\u0646 \u0627\u0644\u062a\u062d\u0645\u064a\u0644.","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":"\u062a\u0635\u062f\u064a\u0631 \u062a\u0639\u0644\u064a\u0645\u0627\u062a Contacts.app (macOS)<\/a> \u0648 Google Contacts<\/a>.","import_upload_rule_limit":"\u062a\u0642\u062a\u0635\u0631 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0625\u0644\u0649 10 \u0645\u064a\u063a\u0627 \u0628\u0627\u064a\u062a.","import_upload_rule_multiple":"\u062d\u0627\u0644\u064a\u0627\u064b\u060c \u0625\u0630\u0627 \u0643\u0627\u0646 \u0644\u062f\u0649 \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644\u0643 \u0639\u062f\u0629 \u0639\u0646\u0627\u0648\u064a\u0646 \u0628\u0631\u064a\u062f \u0648 \u0623\u0631\u0642\u0627\u0645 \u0647\u0648\u0627\u062a\u0641\u060c \u0641\u0642\u0637 \u0627\u0644\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0623\u0648\u0644 \u0633\u064a\u0624\u062e\u0630 \u0641\u064a \u0639\u064a\u0646 \u0627\u0644\u0625\u0639\u062a\u0628\u0627\u0631.","import_upload_rule_time":"\u0642\u062f \u064a\u0633\u062a\u063a\u0631\u0642 \u0627\u0644\u0623\u0645\u0631 \u0625\u0644\u0649 1 \u062f\u0642\u064a\u0642\u0629 \u0644\u062a\u062d\u0645\u064a\u0644 \u062c\u0647\u0627\u062a \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0648 \u0645\u0639\u0627\u0644\u062c\u062a\u0647\u0627. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u062d\u0644\u064a \u0628\u0627\u0644\u0635\u0628\u0631.","import_upload_rule_vcard":"\u0646\u062d\u0646 \u0646\u062f\u0639\u0645 \u0635\u064a\u063a\u0629 vCard 3.0\u060c \u0648\u0647\u064a \u0627\u0644\u0635\u064a\u063a\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0644\u0640Contacts.app (\u0645\u0627\u0643) \u0648 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":"\u0644\u0627 \u0627\u0633\u0645 \u0623\u0648\u0644 (\u0645\u0637\u0644\u0648\u0628)","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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":" - \u0641\u0644\u0627\u0646 \u0627\u0644\u0641\u0644\u0627\u0646\u064a","name_order_firstname_lastname_nickname":" () - \u0641\u0644\u0627\u0646 \u0627\u0644\u0641\u0644\u0627\u0646\u064a (\u0641\u0644\u0627\u0646)","name_order_firstname_nickname_lastname":" () - \u0641\u0644\u0627\u0646 (\u0641\u0644\u0627\u0646) \u0627\u0644\u0641\u0644\u0627\u0646\u064a","name_order_lastname_firstname":" \u0641\u0644\u0627\u0646\u064a \u0641\u0644\u0627\u0646","name_order_lastname_firstname_nickname":" () - \u0641\u0644\u0627\u0646\u064a \u0641\u0644\u0627\u0646 (\u0641\u0644\u0627\u0646)","name_order_lastname_nickname_firstname":" () \u0641\u0644\u0627\u0646\u064a (\u0641\u0644\u0627\u0646) \u0641\u0644\u0627\u0646","name_order_nickname":" - \u0641\u0644\u0627\u0646","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u062a\u063a\u064a\u064a\u0631 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","password_change":"\u062a\u063a\u064a\u064a\u0631 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631","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":"\u0623\u062f\u062e\u0644 \u0643\u0644\u0645\u0629 \u0645\u0631\u0648\u0631 \u062c\u062f\u064a\u062f\u0629","password_new2":"\u062a\u0623\u0643\u064a\u062f","password_new2_placeholder":"\u0623\u0639\u062f \u0643\u062a\u0627\u0628\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629","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":"\u0623\u064a \u0646\u0634\u0627\u0637 \u062a\u0645 \u0645\u0639 \u0623\u064a \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0644\u0643\u060c \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0644\u0647\u0627 \u0646\u0648\u0639 \u0648 \u0641\u0626\u0629. \u062d\u0633\u0627\u0628\u0643 \u064a\u0623\u062a\u064a \u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0627\u064b \u0645\u0639 \u0639\u062f\u0629 \u0623\u0646\u0648\u0627\u0639 \u0644\u0644\u0641\u0626\u0627\u062a\u060c \u0644\u0643\u0646\u0643 \u062a\u0633\u062a\u0637\u064a\u0639 \u062a\u062e\u0635\u064a\u0635 \u0643\u0644 \u0634\u064a\u0621 \u0647\u0646\u0627.","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":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0641\u0626\u0629\u061f \u062d\u0630\u0641\u0647\u0627 \u0633\u064a\u0632\u064a\u0644 \u0643\u0644 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0627\u0644\u0645\u0631\u062a\u0628\u0637\u0629 \u0628\u0647\u0627. \u0644\u0643\u0646\u060c \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_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":"\u0643\u064a\u0641 \u064a\u0646\u0628\u063a\u064a \u0644\u0646\u0627 \u062a\u0633\u0645\u064a\u0629 \u0647\u0630\u0647 \u0627\u0644\u0641\u0626\u0629 \u0627\u0644\u062c\u062f\u064a\u062f\u0629\u061f","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":"\u0643\u064a\u0641 \u064a\u0646\u0628\u063a\u064a \u0644\u0646\u0627 \u062a\u0633\u0645\u064a\u0629 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u062c\u062f\u064a\u062f \u0645\u0646 \u0627\u0644\u0646\u0634\u0627\u0637\u061f","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 deleted with success.","personalization_contact_field_type_description":"\u0647\u0646\u0627 \u064a\u0645\u0643\u0646\u0643 \u062a\u0647\u064a\u0626\u0629 \u062c\u0645\u064a\u0639 \u0627\u0644\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u062e\u062a\u0644\u0641\u0629 \u0645\u0646 \u062d\u0642\u0648\u0644 \u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u062a\u064a \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0625\u0642\u062a\u0631\u0627\u0646 \u0628\u0647\u0627. \u0641\u064a \u0627\u0644\u0645\u0633\u062a\u0642\u0628\u0644\u060c \u0625\u0630\u0627 \u0638\u0647\u0631\u062a \u0634\u0628\u0643\u0629 \u0625\u062c\u062a\u0645\u0627\u0639\u064a\u0629 \u062c\u062f\u064a\u062f\u0629\u060c \u0633\u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0625\u0636\u0627\u0641\u0629 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u062c\u062f\u064a\u062f \u0645\u0646 \u0627\u0644\u0637\u0631\u0642 \u0644\u0644\u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u062c\u0647\u0627\u062a \u0625\u062a\u0635\u0627\u0644\u0643.","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 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":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 {name}\u061f","personalization_genders_modal_delete_question":"\u062d\u0627\u0644\u064a\u0627 \u0644\u062f\u064a\u0643 {count} \u062c\u0647\u0629 \u0627\u062a\u0635\u0627\u0644 \u0644\u062f\u064a\u0647\u0627 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0645\u0646 \u0627\u0644\u062c\u0646\u0633. \u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062c\u0646\u0633\u060c \u0641\u0623\u064a \u0646\u0648\u0639 \u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u062c\u0647\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0647\u0630\u0647\u061f| \u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627 {count} \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644 \u0644\u062f\u064a\u0647\u0627 \u0647\u0630\u0627 \u0627\u0644\u0646\u0648\u0639 \u0645\u0646 \u0627\u0644\u062c\u0646\u0633. \u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062c\u0646\u0633\u060c \u0645\u0627 \u0628\u064a\u0646 \u0641\u0623\u064a \u0646\u0648\u0639 \u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0647\u0624\u0644\u0627\u0621\u061f","personalization_genders_modal_delete_question_default":"This gender is the default one. If you delete this gender, which one will be the next default?","personalization_genders_modal_edit":"\u062a\u062d\u062f\u064a\u062b \u0646\u0648\u0639 \u0627\u0644\u062c\u0646\u0633","personalization_genders_modal_error":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0646\u0648\u0639 \u062c\u0646\u0633 \u0635\u0627\u0644\u062d \u0645\u0646 \u0627\u0644\u0642\u0627\u0626\u0645\u0629.","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 by default with a set of predefined categories and types, 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":"\u0639\u0638\u0645 \u0645\u0643\u0633\u0648\u0631","personalization_life_event_type_changed_beliefs":"\u062a\u063a\u064a\u0631 \u0627\u0644\u0645\u0639\u062a\u0642\u062f\u0627\u062a","personalization_life_event_type_dentist":"\u0637\u0628\u064a\u0628 \u0627\u0644\u0623\u0633\u0646\u0627\u0646","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":"How 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":"\u0647\u0648\u0627\u064a\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_instrument":"\u0622\u0644\u0629 \u062c\u062f\u064a\u062f\u0629","personalization_life_event_type_new_job":"\u0639\u0645\u0644 \u062c\u062f\u064a\u062f","personalization_life_event_type_new_language":"\u0644\u063a\u0629 \u062c\u062f\u064a\u062f\u0629","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":"\u0631\u064a\u0627\u0636\u0629 \u062c\u062f\u064a\u062f\u0629","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":"\u0625\u0632\u0627\u0644\u0629 \u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0623\u0633\u0646\u0627\u0646","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":"\u062c\u0631\u0627\u062d\u0629","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":"\u0625\u0631\u062a\u062f\u0627\u0621 \u0646\u0638\u0627\u0631\u0629 \u0623\u0648 \u0639\u062f\u0633\u0629","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":"\u0628\u0639\u0636 \u0627\u0644\u0623\u0634\u062e\u0627\u0635 \u0644\u0627 \u064a\u062d\u062a\u0627\u062c\u0648\u0646 \u0643\u0644 \u0627\u0644\u0645\u064a\u0632\u0627\u062a. \u064a\u0645\u0643\u0646\u0643 \u0623\u062f\u0646\u0627\u0647 \u062a\u0628\u062f\u064a\u0644 \u0645\u064a\u0632\u0627\u062a \u0645\u0639\u064a\u0646\u0629 \u0648 \u0627\u0644\u062a\u064a \u062a\u064f\u0633\u062a\u062e\u062f\u0645 \u0639\u0644\u0649 \u0635\u0641\u062d\u0629 \u062c\u0647\u0629 \u0627\u0644\u0625\u062a\u0635\u0627\u0644. \u0647\u0630\u0627 \u0627\u0644\u062a\u063a\u064a\u064a\u0631 \u0633\u064a\u0624\u062b\u0631 \u0639\u0644\u0649 \u062c\u0645\u064a\u0639 \u062c\u0647\u0627\u062a \u0627\u062a\u0635\u0627\u0644\u0643. \u0639\u0644\u0645\u0627\u064b \u0628\u0623\u0646\u0643 \u0625\u0630\u0627 \u0642\u0645\u062a \u0628\u062a\u0639\u0637\u064a\u0644 \u0625\u062d\u062f\u0649 \u0627\u0644\u0645\u064a\u0632\u0627\u062a\u060c \u0641\u0644\u0646 \u062a\u064f\u062d\u0630\u0641 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a - \u0633\u0646\u0642\u0648\u0645 \u0628\u0628\u0633\u0627\u0637\u0629 \u0628\u0625\u062e\u0641\u0627\u0621 \u0647\u0630\u0647 \u0627\u0644\u0645\u064a\u0632\u0629.","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":"\u0644\u0643\u0644 \u062a\u0630\u0643\u064a\u0631 \u062a\u0642\u0648\u0645 \u0628\u062a\u0639\u064a\u064a\u0646\u0647\u060c \u0646\u0633\u062a\u0637\u064a\u0639 \u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f \u0642\u0628\u0644 \u062d\u0635\u0648\u0644 \u0627\u0644\u062d\u062f\u062b \u0628\u0639\u062f\u0629 \u0623\u064a\u0627\u0645. \u062a\u0633\u062a\u0637\u064a\u0639 \u062a\u0628\u062f\u064a\u0644 \u0647\u0630\u0647 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a \u0647\u0646\u0627. \u0639\u0644\u0645\u0627\u064b \u0628\u0623\u0646 \u0647\u0630\u0647 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a \u062a\u0646\u0637\u0628\u0642 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0627\u0644\u062a\u0630\u0643\u064a\u0631\u0627\u062a \u0627\u0644\u0634\u0647\u0631\u064a\u0629 \u0648\u0627\u0644\u0633\u0646\u0648\u064a\u0629.","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":"\u0647\u0646\u0627 \u064a\u0645\u0643\u0646\u0643 \u0625\u064a\u062c\u0627\u062f \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u062e\u062a\u0644\u0641\u0629 \u0644\u062a\u0647\u064a\u0626\u0629 \u062d\u0633\u0627\u0628\u0643. \u0647\u0630\u0647 \u0627\u0644\u0645\u064a\u0632\u0627\u062a \u062a\u0641\u064a\u062f \"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0627\u0644\u0645\u0645\u064a\u0632\u064a\u0646\" \u0623\u0643\u062b\u0631\u060c \u0627\u0644\u0630\u064a\u0646 \u064a\u0631\u064a\u062f\u0648\u0646 \u0633\u064a\u0637\u0631\u0629 \u0642\u0635\u0648\u0649 \u0639\u0644\u0649 Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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":"\u0648\u0642\u062a \u062a\u0630\u0643\u064a\u0631\u0627\u062a \u0627\u0644\u064a\u0648\u0645 \u064a\u062c\u0628 \u0623\u0646 \u0642\u062f \u062a\u0645 \u0625\u0631\u0633\u0627\u0644\u0647\u0627","reminder_time_to_send_help":"\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a\u0643\u060c \u062a\u0630\u0643\u064a\u0631\u0643 \u0627\u0644\u0642\u0627\u062f\u0645 \u0633\u064a\u0631\u0633\u0644 \u0641\u064a {dateTime}<\/span>.","reset_cta":"\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0627\u0644\u062d\u0633\u0627\u0628","reset_desc":"\u0647\u0644 \u062a\u0631\u063a\u0628 \u0641\u064a \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u062d\u0633\u0627\u0628\u0643\u061f \u0647\u0630\u0627 \u0633\u064a\u0624\u062f\u064a \u0625\u0644\u0649 \u0625\u0632\u0627\u0644\u0629 \u062c\u0647\u0627\u062a \u0625\u062a\u0635\u0627\u0644\u0643\u060c \u0648 \u062c\u0645\u064a\u0639 \u0628\u064a\u0627\u0646\u062a\u0647\u0645. \u062d\u0633\u0627\u0628\u0643 \u0644\u0646 \u064a\u062a\u0645 \u062d\u0630\u0641\u0647.","reset_notice":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u062d\u0633\u0627\u0628\u0643\u061f \u0644\u064a\u0633 \u0647\u0646\u0627\u0644\u0643 \u0639\u0648\u062f\u0629.","reset_success":"\u0644\u0642\u062f \u062a\u0645 \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u062d\u0633\u0627\u0628\u0643 \u0628\u0646\u062c\u0627\u062d","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":"\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062a","sidebar_settings_users":"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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":"\u0642\u0645 \u0628\u062f\u0639\u0645 \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u060c \u0644\u0643\u064a \u0646\u0633\u062a\u0637\u064a\u0639 \u062a\u0639\u0631\u064a\u0641 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u064a\u0632\u0627\u062a \u0627\u0644\u0631\u0627\u0626\u0639\u0629.","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":"\u064a\u062c\u0628 \u0623\u0644\u0627 \u064a\u0643\u0648\u0646 \u0644\u062f\u064a\u0643 \u062f\u0639\u0648\u0627\u062a \u0645\u0639\u0644\u0642\u0629","subscriptions_downgrade_rule_invitations_constraint":"\u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627\u064b \u062f\u0639\u0648\u0629 1 \u0645\u0639\u0644\u0642\u0629<\/a> \u0642\u062f \u0623\u064f\u0631\u0633\u0644\u062a.| \u0644\u062f\u064a\u0643 \u062d\u0627\u0644\u064a\u0627\u064b :count \u062f\u0639\u0648\u0627\u062a \u0645\u0639\u0644\u0642\u0629<\/a> \u0642\u062f \u0623\u064f\u0631\u0633\u0644\u062a.","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":"\u0634\u0643\u0631\u0627\u064b \u062c\u0632\u064a\u0644\u0627\u064b \u0644\u0643 \u0644\u062a\u062c\u0631\u0628\u0629 \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062f\u0641\u0648\u0639\u0629. \u0646\u062d\u0646 \u0646\u0648\u0627\u0635\u0644 \u0627\u0644\u0625\u0633\u062a\u0645\u0631\u0627\u0631 \u0628\u0625\u0636\u0627\u0641\u0629 \u0645\u064a\u0632\u0627\u062a \u062c\u062f\u064a\u062f\u0629 \u0641\u064a Monica - \u0644\u0630\u0627 \u0642\u062f \u062a\u0631\u064a\u062f \u0627\u0644\u0639\u0648\u062f\u0629 \u0641\u064a \u0627\u0644\u0645\u0633\u062a\u0642\u0628\u0644 \u0644\u062a\u0631\u0649 \u0625\u0630\u0627 \u0643\u0646\u062a\u064e \u0645\u0647\u062a\u0645\u0627\u064b \u0628\u0627\u0644\u0625\u0634\u062a\u0631\u0627\u0643 \u0645\u062c\u062f\u062f\u0627\u064b.","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":"\u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0625\u0644\u063a\u0627\u0621 \u0641\u064a \u0623\u064a \u0648\u0642\u062a\u060c \u0628\u062f\u0648\u0646 \u0623\u064a \u0623\u0633\u0626\u0644\u0629\u060c \u0648 \u0643\u0644\u0647 \u0628\u0646\u0641\u0633\u0643 - \u0644\u0627 \u062d\u0627\u062c\u0629 \u0644\u0644\u0625\u062a\u0635\u0627\u0644 \u0628\u0627\u0644\u062f\u0639\u0645\u060c \u0623\u0648 \u0623\u064a\u0627 \u0643\u0627\u0646. \u0648\u0645\u0639 \u0630\u0644\u0643\u060c \u0644\u0646 \u064a\u0639\u0627\u062f \u0644\u0643 \u0623\u064a \u0645\u0627\u0644 \u0644\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u062d\u0627\u0644\u064a\u0629.","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":"\u0647\u0644 \u0647\u0646\u0627\u0643 \u062d\u062f \u0644\u0639\u062f\u062f \u062c\u0647\u0627\u062a \u0627\u0644\u0625\u062a\u0635\u0627\u0644 \u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0643\u0646\u0646\u0627 \u0625\u0636\u0627\u0641\u062a\u0647\u0645 \u0641\u064a \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629\u061f","subscriptions_help_opensource_desc":"Monica is an open source project. This means it is built by an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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":"\u0623\u0624\u0643\u062f \u0628\u0623\u0646\u064a \u0623\u0631\u064a\u062f \u062f\u0639\u0648\u0629 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0644\u062d\u0633\u0627\u0628\u064a. \u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0633\u064a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u0648\u0635\u0648\u0644 \u0644\u0643\u0644 \u0628\u064a\u0627\u0646\u0627\u062a\u064a \u0648 \u0631\u0624\u064a\u0629 \u0645\u0627 \u0623\u0631\u0627\u0647 \u0628\u0627\u0644\u0636\u0628\u0637.","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":"\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635 \u0633\u064a\u0643\u0648\u0646 \u0644\u0647 \u0646\u0641\u0633 \u0627\u0644\u062d\u0642\u0648\u0642 \u0627\u0644\u062a\u064a \u0644\u062f\u064a\u0643\u060c \u0628\u0645\u0627 \u0641\u064a \u0630\u0644\u0643 \u062f\u0639\u0648\u0629 \u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0622\u062e\u0631\u064a\u0646 \u0648\u062d\u0630\u0641\u0647\u0645 (\u0628\u0645\u0627 \u0641\u064a\u0647\u0645 \u0623\u0646\u062a). \u0648 \u0644\u0630\u0644\u0643\u060c \u062a\u0623\u0643\u062f \u0628\u0623\u0646\u0643 \u062a\u062b\u0642 \u0628\u0647\u0630\u0627 \u0627\u0644\u0634\u062e\u0635.","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":"\u062f\u0639\u0648\u0629 \u0645\u0633\u062a\u062e\u062f\u0645 \u062c\u062f\u064a\u062f \u0639\u0646 \u0637\u0631\u064a\u0642 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u062d\u0633\u0627\u0628\u0643","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."}} diff --git a/public/js/langs/cs.json b/public/js/langs/cs.json index 674efb2bb59..4fb46df241a 100644 --- a/public/js/langs/cs.json +++ b/public/js/langs/cs.json @@ -1 +1 @@ -{"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":"M\u011bjte lep\u0161\u00ed vztahy s va\u0161imi bl\u00edzk\u00fdmi. Online CRM zdarma pro p\u0159\u00e1tele a rodinu.","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","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":"Jste si jisti?","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":"Prob\u00edh\u00e1 \u00fadr\u017eba. Vra\u0165te se za chv\u00edli.","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":"1 vybran\u00fd soubor...|{count} vybran\u00fdch soubor\u016f...","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":"Je dostupn\u00e1 nov\u00e1 verze","footer_newsletter":"Odb\u011br novinek","footer_privacy":"Podm\u00ednky pou\u017e\u00edv\u00e1n\u00ed","footer_release":"Pozn\u00e1mky k vyd\u00e1n\u00ed","footer_remarks":"Dal\u0161\u00ed pozn\u00e1mky?","footer_send_email":"Poslat 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":"Na\u010d\u00edt\u00e1 se...","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 ones 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 reminder for this month","statistics_activities":"Aktivit","statistics_contacts":"Kontakt\u016f","statistics_gifts":"D\u00e1rk\u016f","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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 offered","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":"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":"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":"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":"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":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"\u0158adit podle jm\u00e9na A \u2192 Z","people_list_firstnameZA":"\u0158adit podle jm\u00e9na Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Naposledy konzultov\u00e1no:","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":"\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":"Show deceased people (:count)","people_list_sort":"\u0158azen\u00ed","people_list_stats":"1 kontakt|:count kontakt\u016f","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":"Prohledat kontakty...","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\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":"Informace o pr\u00e1ci \u00fasp\u011b\u0161n\u011b 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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Opravdu chcete smazat sv\u016fj \u00fa\u010det? Pot\u00e9 nebude cesty zp\u011bt.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Smazat \u00fa\u010det","email":"Emailov\u00e1 adresa","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Vlo\u017eit email","export_be_patient":"Kliknout na tla\u010d\u00edtko pro spu\u0161t\u011bn\u00ed exportu. Zpracov\u00e1n\u00ed exportu m\u016f\u017ee zabrat a\u017e n\u011bkolik minut \u2013 bu\u010fte pros\u00edm trp\u011bliv\u00ed a neklikejte v\u00edcekr\u00e1t.","export_sql_cta":"Exportovat jako SQL","export_sql_explanation":"Export dat v SQL form\u00e1tu je umo\u017e\u0148uje p\u0159ev\u00e9st a importovat do vlastn\u00ed instance Monica. Toto se hod\u00ed hlavn\u011b pokud provozujete vlastn\u00ed server.","export_sql_link_instructions":"Pozn\u00e1mka: p\u0159e\u010dt\u011bte si instrukce<\/a> abyste se dozv\u011bd\u011bli v\u00edce o importu tohoto souboru do vlastn\u00ed instance.","export_title":"Exportovat data \u00fa\u010dtu","export_title_sql":"Exportovat jako 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, skip existing","import_upload_behaviour_help":"Note: 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":"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":"Instrukce pro export z Contacts.app (macOS)<\/a> a Google Contacts<\/a>.","import_upload_rule_limit":"Velikost soubor\u016f je limitov\u00e1na na 10MB.","import_upload_rule_multiple":"Pokud maj\u00ed va\u0161e kontakty v\u00edcero email\u016f nebo telefonn\u00edch \u010d\u00edsel, bude importov\u00e1n pouze prvn\u00ed z t\u011bchto z\u00e1znam\u016f.","import_upload_rule_time":"Nahr\u00e1n\u00ed a zpracov\u00e1n\u00ed kontakt\u016f m\u016f\u017ee zabrat a\u017e 1 minutu. Bu\u010fte trp\u011bliv\u00ed.","import_upload_rule_vcard":"Podporujeme form\u00e1t vCard 3.0, kter\u00fd je v\u00fdchoz\u00edm form\u00e1tem aplikac\u00ed Contacts.app (macOS) a 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":"Chyb\u00ed jm\u00e9no (vy\u017eadov\u00e1no)","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_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Vlastn\u00ed jm\u00e9no: :name","name_order":"\u0158azen\u00ed jmen","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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","reset_cta":"Resetovat \u00fa\u010det","reset_desc":"Opravdu chcete resetovat sv\u016fj \u00fa\u010det? Toto odstran\u00ed v\u0161echny kontakty a jejich souvisej\u00edc\u00ed data. \u00da\u010det nebude smaz\u00e1n.","reset_notice":"Opravdu chcete resetovat sv\u016fj \u00fa\u010det? Pot\u00e9 nebude cesty zp\u011bt.","reset_success":"\u00da\u010det byl \u00fasp\u011b\u0161n\u011b zresetov\u00e1n","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":"Spr\u00e1va tag\u016f","sidebar_settings_users":"U\u017eivatel\u00e9","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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":"Dlouhodob\u00e1 podpora projektu, kter\u00e1 umo\u017en\u00ed zaveden\u00ed dal\u0161\u00edch skv\u011bl\u00fdch funkc\u00ed.","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":"Nesm\u00edte m\u00edt \u010dekaj\u00edc\u00ed pozv\u00e1nky","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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":"Tagy funguj\u00ed jako adres\u00e1\u0159e, kontakt\u016fm m\u016f\u017eete ale p\u0159idat v\u00edcero tag\u016f. P\u0159ejd\u011bte na kontakt a otagujte p\u0159\u00edtele hned pod jeho jm\u00e9nem. Jakmile je kontakt otagov\u00e1n, vra\u0165te se zp\u011bt pro spr\u00e1vu v\u0161ech tag\u016f v tomto \u00fa\u010dtu.","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":"Potvrzuji, \u017ee chci pozvat tohoto u\u017eivatele do sv\u00e9ho \u00fa\u010dtu. Tato osoba bude moci p\u0159istupovat ke V\u0160EM m\u00fdm dat\u016fm a uvid\u00ed p\u0159esn\u011b to co j\u00e1.","users_add_cta":"Pozvat u\u017eivatele emailem","users_add_description":"Tato osoba bude m\u00edt stejn\u00e1 opr\u00e1vn\u011bn\u00ed v\u010detn\u011b mo\u017enosti zv\u00e1t a mazat dal\u0161\u00ed u\u017eivatele (v\u010detn\u011b v\u00e1s). Proto si rad\u011bji bu\u010fte jisti, \u017ee j\u00ed m\u016f\u017eete v\u011b\u0159it.","users_add_email_field":"Zadejte email osoby, kterou chcete pozvat","users_add_title":"Pozvat emailem nov\u00e9ho u\u017eivatele k tomuto \u00fa\u010dtu","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."}} +{"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":"M\u011bjte lep\u0161\u00ed vztahy s va\u0161imi bl\u00edzk\u00fdmi. Online CRM zdarma pro p\u0159\u00e1tele a rodinu.","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","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":"Jste si jisti?","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":"Prob\u00edh\u00e1 \u00fadr\u017eba. Vra\u0165te se za chv\u00edli.","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":"1 vybran\u00fd soubor...|{count} vybran\u00fdch soubor\u016f...","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":"Je dostupn\u00e1 nov\u00e1 verze","footer_newsletter":"Odb\u011br novinek","footer_privacy":"Podm\u00ednky pou\u017e\u00edv\u00e1n\u00ed","footer_release":"Pozn\u00e1mky k vyd\u00e1n\u00ed","footer_remarks":"Dal\u0161\u00ed pozn\u00e1mky?","footer_send_email":"Poslat 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":"Na\u010d\u00edt\u00e1 se...","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 ones 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 reminder for this month","statistics_activities":"Aktivit","statistics_contacts":"Kontakt\u016f","statistics_gifts":"D\u00e1rk\u016f","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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 offered","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":"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":"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":"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":"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":"Showing all the contacts tagged with","people_list_filter_untag":"Showing all untagged contacts","people_list_firstnameAZ":"\u0158adit podle jm\u00e9na A \u2192 Z","people_list_firstnameZA":"\u0158adit podle jm\u00e9na Z \u2192 A","people_list_hide_dead":"Hide deceased people (:count)","people_list_last_updated":"Naposledy konzultov\u00e1no:","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":"\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":"Show deceased people (:count)","people_list_sort":"\u0158azen\u00ed","people_list_stats":"1 kontakt|:count kontakt\u016f","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":"Prohledat kontakty...","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\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":"Informace o pr\u00e1ci \u00fasp\u011b\u0161n\u011b 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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Opravdu chcete smazat sv\u016fj \u00fa\u010det? Pot\u00e9 nebude cesty zp\u011bt.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Smazat \u00fa\u010det","email":"Emailov\u00e1 adresa","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Vlo\u017eit email","export_be_patient":"Kliknout na tla\u010d\u00edtko pro spu\u0161t\u011bn\u00ed exportu. Zpracov\u00e1n\u00ed exportu m\u016f\u017ee zabrat a\u017e n\u011bkolik minut \u2013 bu\u010fte pros\u00edm trp\u011bliv\u00ed a neklikejte v\u00edcekr\u00e1t.","export_sql_cta":"Exportovat jako SQL","export_sql_explanation":"Export dat v SQL form\u00e1tu je umo\u017e\u0148uje p\u0159ev\u00e9st a importovat do vlastn\u00ed instance Monica. Toto se hod\u00ed hlavn\u011b pokud provozujete vlastn\u00ed server.","export_sql_link_instructions":"Pozn\u00e1mka: p\u0159e\u010dt\u011bte si instrukce<\/a> abyste se dozv\u011bd\u011bli v\u00edce o importu tohoto souboru do vlastn\u00ed instance.","export_title":"Exportovat data \u00fa\u010dtu","export_title_sql":"Exportovat jako 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, skip existing","import_upload_behaviour_help":"Note: 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":"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":"Instrukce pro export z Contacts.app (macOS)<\/a> a Google Contacts<\/a>.","import_upload_rule_limit":"Velikost soubor\u016f je limitov\u00e1na na 10MB.","import_upload_rule_multiple":"Pokud maj\u00ed va\u0161e kontakty v\u00edcero email\u016f nebo telefonn\u00edch \u010d\u00edsel, bude importov\u00e1n pouze prvn\u00ed z t\u011bchto z\u00e1znam\u016f.","import_upload_rule_time":"Nahr\u00e1n\u00ed a zpracov\u00e1n\u00ed kontakt\u016f m\u016f\u017ee zabrat a\u017e 1 minutu. Bu\u010fte trp\u011bliv\u00ed.","import_upload_rule_vcard":"Podporujeme form\u00e1t vCard 3.0, kter\u00fd je v\u00fdchoz\u00edm form\u00e1tem aplikac\u00ed Contacts.app (macOS) a 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":"Chyb\u00ed jm\u00e9no (vy\u017eadov\u00e1no)","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_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Vlastn\u00ed jm\u00e9no: :name","name_order":"\u0158azen\u00ed jmen","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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","reset_cta":"Resetovat \u00fa\u010det","reset_desc":"Opravdu chcete resetovat sv\u016fj \u00fa\u010det? Toto odstran\u00ed v\u0161echny kontakty a jejich souvisej\u00edc\u00ed data. \u00da\u010det nebude smaz\u00e1n.","reset_notice":"Opravdu chcete resetovat sv\u016fj \u00fa\u010det? Pot\u00e9 nebude cesty zp\u011bt.","reset_success":"\u00da\u010det byl \u00fasp\u011b\u0161n\u011b zresetov\u00e1n","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":"Spr\u00e1va tag\u016f","sidebar_settings_users":"U\u017eivatel\u00e9","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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":"Dlouhodob\u00e1 podpora projektu, kter\u00e1 umo\u017en\u00ed zaveden\u00ed dal\u0161\u00edch skv\u011bl\u00fdch funkc\u00ed.","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":"Nesm\u00edte m\u00edt \u010dekaj\u00edc\u00ed pozv\u00e1nky","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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":"Tagy funguj\u00ed jako adres\u00e1\u0159e, kontakt\u016fm m\u016f\u017eete ale p\u0159idat v\u00edcero tag\u016f. P\u0159ejd\u011bte na kontakt a otagujte p\u0159\u00edtele hned pod jeho jm\u00e9nem. Jakmile je kontakt otagov\u00e1n, vra\u0165te se zp\u011bt pro spr\u00e1vu v\u0161ech tag\u016f v tomto \u00fa\u010dtu.","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":"Potvrzuji, \u017ee chci pozvat tohoto u\u017eivatele do sv\u00e9ho \u00fa\u010dtu. Tato osoba bude moci p\u0159istupovat ke V\u0160EM m\u00fdm dat\u016fm a uvid\u00ed p\u0159esn\u011b to co j\u00e1.","users_add_cta":"Pozvat u\u017eivatele emailem","users_add_description":"Tato osoba bude m\u00edt stejn\u00e1 opr\u00e1vn\u011bn\u00ed v\u010detn\u011b mo\u017enosti zv\u00e1t a mazat dal\u0161\u00ed u\u017eivatele (v\u010detn\u011b v\u00e1s). Proto si rad\u011bji bu\u010fte jisti, \u017ee j\u00ed m\u016f\u017eete v\u011b\u0159it.","users_add_email_field":"Zadejte email osoby, kterou chcete pozvat","users_add_title":"Pozvat emailem nov\u00e9ho u\u017eivatele k tomuto \u00fa\u010dtu","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."}} diff --git a/public/js/langs/da.json b/public/js/langs/da.json index 5276372fabd..eb93afc14a6 100644 --- a/public/js/langs/da.json +++ b/public/js/langs/da.json @@ -1 +1 @@ -{"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","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":"Sikker?","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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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":"Indl\u00e6ser...","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 ones 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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 aktiviteter med :name i alt og :activities_last_twelve_months i de sidste 12 m\u00e5neder indtil nu.|Du har logget :total_activities med :name i alt og :activities_last_tolv_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 :fornavn eller nogen i :familys 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_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":"Mark\u00e9r 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":"R\u00e6kker per side:","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":"N\u00e6ste billede","photo_previous":"Forrige billede","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":"Arbejdsinformationen er blevet opdateret med succes","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"E-mail adresse","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Indtast e-mail","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL 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 rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} +{"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","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":"Sikker?","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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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":"Indl\u00e6ser...","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 ones 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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 aktiviteter med :name i alt og :activities_last_twelve_months i de sidste 12 m\u00e5neder indtil nu.|Du har logget :total_activities med :name i alt og :activities_last_tolv_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 :fornavn eller nogen i :familys 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_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":"Mark\u00e9r 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":"R\u00e6kker per side:","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":"N\u00e6ste billede","photo_previous":"Forrige billede","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":"Arbejdsinformationen er blevet opdateret med succes","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"E-mail adresse","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Indtast e-mail","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL 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 rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/de.json b/public/js/langs/de.json index df681891af0..12f952a1c2f 100644 --- a/public/js/langs/de.json +++ b/public/js/langs/de.json @@ -1 +1 @@ -{"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":"Haben Sie bessere Beziehungen zu Ihren Lieben. 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":"Confirm","copy":"kopieren","create":"Erstellen","date":"Datum","dav_birthdays":"Geburtstage","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","dav_contacts":"Kontakte","dav_contacts_description":":name\u2019s contacts","dav_tasks":"Aufgaben","dav_tasks_description":":names Aufgaben","default_save_success":"Die Daten wurden gespeichert.","delete":"L\u00f6schen","delete_confirm":"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":"Bliss","emotion_caring":"F\u00fcrsorglich","emotion_cheerfulness":"Cheerfulness","emotion_compassion":"Mitgef\u00fchl","emotion_contempt":"Verachtung","emotion_contentment":"Contentment","emotion_defeat":"Versagen","emotion_dejection":"Niedergeschlagenheit","emotion_delight":"Delight","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":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Peinlichkeit","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Enthusiasm","emotion_envy":"Neid","emotion_euphoria":"Euphoria","emotion_exasperation":"Verzweiflung","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Angst","emotion_ferocity":"Ferocity","emotion_fondness":"Fondness","emotion_fright":"Furcht","emotion_frustration":"Frustration","emotion_fury":"Rage","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","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":"Hope","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":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Freude","emotion_jubilation":"Jubilation","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":"Pleasure","emotion_pride":"Pride","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":"Rapture","emotion_regret":"Bedauern","emotion_rejection":"Zur\u00fcckweisung","emotion_relief":"Relief","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":"Enthrallment","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":"Zest","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":"Thrill","emotion_uneasiness":"Unbehagen","emotion_unhappiness":"Ungl\u00fccklichkeit","emotion_vengefulness":"Rachsucht","emotion_woe":"Kummer","emotion_worry":"Besorgnis","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"Wir sind gleich wieder da.","error_id":"Fehler Nr: :id","error_maintenance":"Wartungsarbeiten im Gange. Bin gleich zur\u00fcck.","error_no_term":"There is no policy for this instance yet.","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":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"1 file selected...|{count} files selected...","filter":"Filter the list","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":"Es ist eine neue Version verf\u00fcgbar","footer_newsletter":"Newsletter","footer_privacy":"Datenschutzrichtlinie","footer_release":"Versionshinweise","footer_remarks":"Eine Anmerkung?","footer_send_email":"Schick' mir 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":"Lade mehr...","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":"Clear day","weather_clear-night":"Clear night","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":"If you did not receive the email click here to request another<\/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":"An error occured trying to register the user","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_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 wurde erstellt.","contact_log_contact_description_cleared":"Cleared the description.","contact_log_contact_description_updated":"Beschreibung wurde aktualisiert.","contact_log_contact_work_updated":"Updated work information.","settings_log_company_created":"Created a company called :name.","settings_log_contact_created_with_name":":name als Kontakt hinzugef\u00fcgt.","settings_log_contact_created_with_name_with_link":":name<\/a> als Kontakt hinzugef\u00fcgt.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"mail":{"comment":"Kommentar: :comment","confirmation_email_bottom":"If you did not create an account, no further action is required.","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":"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 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":"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":"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":"played a sport together","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":"By :name on :date","auditlogs_breadcrumb":"History","auditlogs_link":"History","auditlogs_title":"Everything that happened to :name","avatar_adorable_avatar":"Den niedlichen Avatar","avatar_change_title":"Avatar \u00e4ndern","avatar_crop_new_avatar_photo":"Crop new avatar photo","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":"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":"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":"Deceased date","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_gift":"Geschenk hinzuf\u00fcgen","gifts_add_gift_already_offered":"Bereits verschenkt","gifts_add_gift_idea":"Geschenkidee","gifts_add_gift_name":"Gift name","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":"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":"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":"Delete a gift","gifts_for":"For: {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":"Birthdate","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":"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":"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":"Had surgery","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":"On this date, :name, would have celebrated his birthday","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":"Next photo","photo_previous":"Previous photo","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 wurden erfolgreich 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 vor unberechtigten Zugriffen!","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 vor unberechtigtem Zugriff auf dein Konto 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 lese den folgenden QR-Code ein:","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 \u00fcberpr\u00fcfe das neue 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":"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 is no authorized client yet.","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":"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":"Kundennummer","api_oauth_clients":"Your OAuth clients","api_oauth_clients_desc":"Hier kannst du deine eigenen OAuth Clients registrieren.","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":"Client erstellen","api_oauth_create_new":"Neuen Client erstellen","api_oauth_edit":"Edit Client","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":"Expires at {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":"Token name","api_token_not_created":"Du hast keine pers\u00f6nlichen Zugangs-Token erstellt.","api_token_scopes":"Geltungsbereiche","api_token_title":"Personal Access Tokens","archive_cta":"Archive all your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your contacts in your account","currency":"W\u00e4hrung","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":"Wert in die Zwischenablage kopiert","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":"In die Zwischenablage kopieren","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":"Konto l\u00f6schen","delete_desc":"Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Willst du dein Konto wirklich L\u00f6schen? Letzte Warnung.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Konto l\u00f6schen","email":"E-Mail-Adresse","email_help":"Mit dieser Adresse kannst du dich einloggen und dorthin werden auch Erinnerungen verschickt.","email_placeholder":"E-Mail eingeben","export_be_patient":"Button klicken um den Export zu starten. Dies kann mehrere Minuten dauern \u2013 sei bitte geduldig und klicke nicht mehrfach auf den Button.","export_sql_cta":"SQL exportieren","export_sql_explanation":"Der SQL-Export erm\u00f6glicht es dir deine Daten in einer eigenen monica-Installation zu importieren. Dies ist nur sinnvoll, wenn du einen eigenen Server besitzt.","export_sql_link_instructions":"Hinweis: lies die Anleitung<\/a> um mehr \u00fcber das Importieren in die eigene Installation zu erfahren.","export_title":"Exportiere die Daten deines Kontos","export_title_sql":"Nach SQL 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, bestehende \u00fcberspringen","import_upload_behaviour_help":"Hinweis: Ersetzen bedeutet, dass alle Daten 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 Contacts.app (macOS)<\/a> und Google Contacts<\/a>.","import_upload_rule_limit":"Dateien d\u00fcrfen nicht gr\u00f6\u00dfer als 10MB sein.","import_upload_rule_multiple":"Momentan werden bei mehreren E-Mail-Adressen und Telefonnummer 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, was der Standard f\u00fcr Contacts.app (macOS) und Google Contacts 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":"Error when parsing the vCard entry","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":"English (United Kingdom)","locale_es":"Spanisch","locale_fr":"Franz\u00f6sisch","locale_he":"Hebr\u00e4isch","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Kroatisch","locale_it":"Italienisch","locale_ja":"Japanese","locale_nl":"Niederl\u00e4ndisch","locale_pt":"Portugiesisch","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russisch","locale_tr":"T\u00fcrkisch","locale_zh":"Vereinfachtes Chinesisch","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Dein Name: :name","name_order":"Namensortierrichtung","name_order_firstname_lastname":" - Maximilian Mustermann","name_order_firstname_lastname_nickname":" () - Maximilian Mustermann (Max)","name_order_firstname_nickname_lastname":" () - Maximilian (Max) Mustermann","name_order_lastname_firstname":" - Mustermann Maximilian","name_order_lastname_firstname_nickname":" () - Mustermann Maximilian (Max)","name_order_lastname_nickname_firstname":" () - Mustermann (Max) Maximilian","name_order_nickname":" - Max","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Passwort \u00e4ndern","password_change":"Passwort \u00e4ndern","password_current":"Aktuelles Passwort","password_current_placeholder":"Aktuelles Passwort","password_new1":"Neues Passwort","password_new1_placeholder":"Neues Passwort","password_new2":"Neues Passwort best\u00e4tigen","password_new2_placeholder":"Neues Passwort","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"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":"Edit an activity type","personalization_activity_type_modal_question":"How should we name this new activity type?","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":"Hier kannst du Kontaktfelder verwalten, um z.b. verschiedene Soziale Netzwerke hinzuzuf\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\u00f6scht, wird es auch bei allen 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":"Default gender","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} contact|{count} contacts","personalization_genders_m":"M\u00e4nnlich","personalization_genders_make_default":"Change default gender","personalization_genders_modal_add":"Neue Geschlechtsidentit\u00e4t hinzuf\u00fcgen","personalization_genders_modal_default":"Select the default gender for a new contact","personalization_genders_modal_delete":"Geschlechtsidentit\u00e4t l\u00f6schen","personalization_genders_modal_delete_desc":"M\u00f6chten Sie {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":"This gender is the default one. If you delete this gender, which one will be the next default?","personalization_genders_modal_edit":"Geschlechtsidentit\u00e4t bearbeiten","personalization_genders_modal_error":"Bitte w\u00e4hle ein g\u00fcltiges Geschlecht aus der Liste.","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":"Geschlecht","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":"Standard","personalization_genders_table_name":"Name","personalization_genders_table_sex":"Geschlecht","personalization_genders_title":"Geschlechter Typen","personalization_genders_u":"Unbekannt","personalization_life_event_category_family_relationships":"Familie & Beziehungen","personalization_life_event_category_health_wellness":"Gesundheit & Fitness","personalization_life_event_category_home_living":"Home & living","personalization_life_event_category_travel_experiences":"Reisen & Erfahrungen","personalization_life_event_category_work_education":"Arbeit & Bildung","personalization_life_event_type_achievement_or_award":"Achievement or award","personalization_life_event_type_anniversary":"Jahrestag","personalization_life_event_type_bought_a_home":"Ein Haus gekauft","personalization_life_event_type_broken_bone":"Knochen gebrochen","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Zahnarzt","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":"First met","personalization_life_event_type_first_word":"Erstes Wort","personalization_life_event_type_holidays":"Holidays","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_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":"New family member","personalization_life_event_type_new_hobby":"Neues Hobby","personalization_life_event_type_new_instrument":"Neues Instrument","personalization_life_event_type_new_job":"Neuer Job","personalization_life_event_type_new_language":"Neue Sprache","personalization_life_event_type_new_license":"Neue Lizenz","personalization_life_event_type_new_pet":"New pet","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":"Neuer Sport","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":"Removed braces","personalization_life_event_type_retirement":"Pensionierung","personalization_life_event_type_study_abroad":"Studium im Ausland","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Gewichts-Verlust","personalization_module_desc":"Manche Menschen brauchen nicht alle Funktionen. Unten kannst du die Felder ausw\u00e4hlen, die auf einer Kontaktseite angezeigt werden. Die \u00c4nderungen werden f\u00fcr ALLE Kontakte \u00fcbernommen. Wenn du eine Funktion ausschaltest, so gehen die Daten darin nicht verloren, wir verbergen sie nur.","personalization_module_save":"Die \u00c4nderung wurde gespeichert","personalization_module_title":"Funktionen","personalization_reminder_rule_desc":"F\u00fcr jede Erinnerung die du setzt, k\u00f6nnen wir dir ein paar Tage befor das Ereignis stattfindet eine Email senden. Du kannst diese Benachrichtigungen hier umschaten. Bedenke dass diese Benachrichtigungen nur monatliche und j\u00e4hrliche Erinnerungen betreffen.","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 deine 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 copied in the clipboard","recovery_copy_help":"Codes in die Zwischenablage kopieren","recovery_generate":"Neue Codes generieren...","recovery_generate_help":"Beachten Sie, dass die Generierung neuer Codes zuvor generierte Codes ung\u00fcltig macht","recovery_help_information":"You can use each recovery code once.","recovery_help_intro":"These are your recovery codes:","recovery_show":"Wiederherstellungscodes generieren","recovery_title":"Wiederherstellungsschl\u00fcssel","reminder_time_to_send":"Zeitpunkt f\u00fcr den Versand von Erinnerungen","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","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":"Willst du dein Konto wirklich zur\u00fccksetzen? Letzte Warnung.","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":"Audit logs","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":"Tags bearbeiten","sidebar_settings_users":"Benutzer","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (:percentUsage%)","storage_description":"Here you can see all the documents and photos uploaded about your contacts.","storage_title":"Speicher","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":"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":"Du unterst\u00fctzt 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":"Subscription from :startDate to :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":"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":"Du darfst keine ausstehenden Einladungen haben","subscriptions_downgrade_rule_invitations_constraint":"Du hast aktuell eine ausstehende Einladung<\/a> verschickt.|Du hast aktuell :count ausstehende Einladungen<\/a> verschickt.","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 auch nicht den Support oder sonst wen kontaktieren. Laufende Abos werden jedoch nicht zur\u00fcck erstattet.","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":"Yes. Free plans let you manage :number contacts.","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 is an open source project. This means it is built by an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","subscriptions_help_opensource_title":"Was ist ein Open-Source-Projekt?","subscriptions_help_title":"Weitere Details, die dich interessieren k\u00f6nnten","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":"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":"We\u2019ll charge your card :price now. The next charge will be on :date. If you ever change your mind, you can cancel anytime, no questions asked.","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":"Pay {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. So bald dein 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":"General Information","title_i18n":"International settings","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. Diese Person hat Zugriff auf all meine Daten und sieht, was ich sehe.","users_add_cta":"Benutzer per E-Mail einladen","users_add_description":"Diese Person wird die selben Rechte haben wir du wodurch dieser andere Benutzer einladen und l\u00f6schen kann (inklusive dir). Du solltest dieser Person daher trauen k\u00f6nnen.","users_add_email_field":"Gib die E-Mail-Adresse der Person an, die du einladen m\u00f6chtest","users_add_title":"Jemand 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":"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":"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 only supports secure connections. Please load this page with https scheme.","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."}} +{"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":"Haben Sie bessere Beziehungen zu Ihren Lieben. 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","copy":"kopieren","create":"Erstellen","date":"Datum","dav_birthdays":"Geburtstage","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","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":"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":"Contentment","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":"Eagerness","emotion_ecstasy":"Ecstasy","emotion_elation":"Elation","emotion_embarrassment":"Peinlichkeit","emotion_enjoyment":"Enjoyment","emotion_enthrallment":"Enthrallment","emotion_enthusiasm":"Begeisterung","emotion_envy":"Neid","emotion_euphoria":"Euphoria","emotion_exasperation":"Verzweiflung","emotion_excitement":"Excitement","emotion_exhilaration":"Exhilaration","emotion_fear":"Angst","emotion_ferocity":"Ferocity","emotion_fondness":"Zuneigung","emotion_fright":"Furcht","emotion_frustration":"Frustration","emotion_fury":"Rage","emotion_gaiety":"Gaiety","emotion_gladness":"Gladness","emotion_glee":"Glee","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":"Jolliness","emotion_joviality":"Joviality","emotion_joy":"Freude","emotion_jubilation":"Jubilation","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":"Rapture","emotion_regret":"Bedauern","emotion_rejection":"Zur\u00fcckweisung","emotion_relief":"Relief","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":"Enthrallment","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":"Zest","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":"Thrill","emotion_uneasiness":"Unbehagen","emotion_unhappiness":"Ungl\u00fccklichkeit","emotion_vengefulness":"Rachsucht","emotion_woe":"Kummer","emotion_worry":"Besorgnis","emotion_wrath":"Wrath","emotion_zeal":"Zeal","emotion_zest":"Zest","error_help":"Wir sind gleich wieder da.","error_id":"Fehler Nr: :id","error_maintenance":"Wartungsarbeiten im Gange. Bin gleich zur\u00fcck.","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":"1 Datei ausgew\u00e4hlt...|{count} Dateien ausgew\u00e4hlt...","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":"Es ist eine neue Version verf\u00fcgbar","footer_newsletter":"Newsletter","footer_privacy":"Datenschutzrichtlinie","footer_release":"Versionshinweise","footer_remarks":"Eine Anmerkung?","footer_send_email":"Schick' mir 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":"Lade mehr...","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_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_created_with_name_with_link":":name<\/a> als Kontakt hinzugef\u00fcgt.","settings_log_contact_description_cleared_with_name":"Beschreibung von :name gel\u00f6scht.","settings_log_contact_description_cleared_with_name_with_link":"Beschreibung von :name<\/a> gel\u00f6scht.","settings_log_contact_description_updated_with_name":":name wurde aktualisiert.","settings_log_contact_description_updated_with_name_with_link":"Beschreibung von :name<\/a> aktualisiert.","settings_log_contact_work_updated_with_name":"Arbeitsinformationen von :name aktualisiert.","settings_log_contact_work_updated_with_name_with_link":"Arbeitsinformationen von :name<\/a> 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":"Home","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_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":"Home & living","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 Foto","photo_previous":"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 wurden erfolgreich 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 vor unberechtigten Zugriffen!","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 vor unberechtigtem Zugriff auf dein Konto 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 lese den folgenden QR-Code ein:","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 \u00fcberpr\u00fcfe das neue 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 gibt noch keinen autorisierten Client.","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 Ihre Kontakte archivieren","archive_desc":"Dies wird alle Kontakte in Ihrem Konto archivieren.","archive_title":"Alle Ihre Kontakte in Ihrem 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\u00f6chten Sie Ihr Konto l\u00f6schen? Warnung: Das L\u00f6schen ist dauerhaft und alle Ihre Daten werden dauerhaft gel\u00f6scht. Ihr Abonnement (falls vorhanden) wird ebenfalls sofort gek\u00fcndigt.","delete_notice":"Willst du dein Konto wirklich L\u00f6schen? Letzte Warnung.","delete_other_desc":"Um es deutlich zu machen: Deine Daten in der Hauptdatenbank werden sofort gel\u00f6scht. Allerdings, wie in unserer Datenschutzrichtlinie beschrieben, machen wir t\u00e4gliche Sicherungen der Datenbank, falls mal ein Fehler auftreten sollte. Diese Sicherung wird 30 Tage lang aufbewahrt und dann vollst\u00e4ndig gel\u00f6scht. Es ist unrealistisch, sich vorzustellen, dass wir alle Sicherungen durchgehen k\u00f6nnen, um deine spezifischen Daten zu l\u00f6schen. \u00dcbrigens: Diese Daten sind verschl\u00fcsselt auf sehr sicheren Amazon-Servern und niemand au\u00dfer uns hat den Entschl\u00fcsselungscode. Daher verschwinden deine Daten in 30 Tagen vollst\u00e4ndig aus allen Sicherungen, und niemand wird wissen, dass diese Daten \u00fcberhaupt jemals vorhanden waren.","delete_title":"Konto l\u00f6schen","email":"E-Mail-Adresse","email_help":"Mit dieser Adresse kannst du dich einloggen und dorthin werden auch Erinnerungen verschickt.","email_placeholder":"E-Mail eingeben","export_be_patient":"Button klicken um den Export zu starten. Dies kann mehrere Minuten dauern \u2013 sei bitte geduldig und klicke nicht mehrfach auf den Button.","export_sql_cta":"SQL exportieren","export_sql_explanation":"Der SQL-Export erm\u00f6glicht es dir deine Daten in einer eigenen monica-Installation zu importieren. Dies ist nur sinnvoll, wenn du einen eigenen Server besitzt.","export_sql_link_instructions":"Hinweis: lies die Anleitung<\/a> um mehr \u00fcber das Importieren in die eigene Installation zu erfahren.","export_title":"Exportiere die Daten deines Kontos","export_title_sql":"Nach SQL 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, bestehende \u00fcberspringen","import_upload_behaviour_help":"Hinweis: Ersetzen bedeutet, dass alle Daten 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 Contacts.app (macOS)<\/a> und Google Contacts<\/a>.","import_upload_rule_limit":"Dateien d\u00fcrfen nicht gr\u00f6\u00dfer als 10MB sein.","import_upload_rule_multiple":"Momentan werden bei mehreren E-Mail-Adressen und Telefonnummer 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, was der Standard f\u00fcr Contacts.app (macOS) und Google Contacts 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":"English (United Kingdom)","locale_es":"Spanisch","locale_fr":"Franz\u00f6sisch","locale_he":"Hebr\u00e4isch","locale_help":"Do you want to help translating Monica or add a new language? Please follow this link for more information<\/a>.","locale_hr":"Kroatisch","locale_it":"Italienisch","locale_ja":"Japanese","locale_nl":"Niederl\u00e4ndisch","locale_pt":"Portugiesisch","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Russisch","locale_sv":"Swedish","locale_tr":"T\u00fcrkisch","locale_zh":"Vereinfachtes Chinesisch","locale_zh-TW":"Chinese Traditional","logs_author":"Mit :name am :Datum","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":"Mein Kontakt","name":"Dein Name: :name","name_order":"Namensortierrichtung","name_order_firstname_lastname":" - Maximilian Mustermann","name_order_firstname_lastname_nickname":" () - Maximilian Mustermann (Max)","name_order_firstname_nickname_lastname":" () - Maximilian (Max) Mustermann","name_order_lastname_firstname":" - Mustermann Maximilian","name_order_lastname_firstname_nickname":" () - Mustermann Maximilian (Max)","name_order_lastname_nickname_firstname":" () - Mustermann (Max) Maximilian","name_order_nickname":" - Max","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Passwort \u00e4ndern","password_change":"Passwort \u00e4ndern","password_current":"Aktuelles Passwort","password_current_placeholder":"Aktuelles Passwort","password_new1":"Neues Passwort","password_new1_placeholder":"Neues Passwort","password_new2":"Neues Passwort best\u00e4tigen","password_new2_placeholder":"Neues Passwort","personalisation_paid_upgrade":"Dies ist eine Premium-Funktion, die nur im kostenpflichtigen Abo aktiv ist. Upgrade deinen Account unter Einstellungen > Abonnement.","personalisation_paid_upgrade_vue":"Dies ist eine Premium-Funktion, die nur im kostenpflichtigen Abo aktiv ist. Upgrade deinen Account unter Einstellungen > Abonnement.","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 Ihrer Kontakte kann einen Typ und einen Kategorietyp haben. Ihr Konto kommt standardm\u00e4\u00dfig mit einer Reihe vordefinierter Kategorietypen, aber Sie k\u00f6nnen hier alles 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":"Sind Sie sicher, dass Sie diese Kategorie l\u00f6schen m\u00f6chten? Es wird alle zugeh\u00f6rigen Aktivit\u00e4tstypen l\u00f6schen. T\u00e4tigkeiten, die zu dieser Kategorie geh\u00f6ren, werden jedoch von der L\u00f6schung nicht beeintr\u00e4chtigt.","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":"Hier kannst du Kontaktfelder verwalten, um z.b. verschiedene Soziale Netzwerke hinzuzuf\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\u00f6scht, wird es auch bei allen 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\u00f6chten Sie {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 das Standardwert. Wenn Sie dieses Geschlecht l\u00f6schen, welches wird der n\u00e4chste Standardwert sein?","personalization_genders_modal_edit":"Geschlechtsidentit\u00e4t bearbeiten","personalization_genders_modal_error":"Bitte w\u00e4hle ein g\u00fcltiges 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. Ihr Konto kommt standardm\u00e4\u00dfig mit einer Reihe vordefinierter Kategorien und Typen, aber hier k\u00f6nnen Sie Lebensereignisse anpassen.","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":"Knochen gebrochen","personalization_life_event_type_changed_beliefs":"\u00dcberzeugung ge\u00e4ndert","personalization_life_event_type_dentist":"Zahnarzt","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 benennen?","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":"Neues Hobby","personalization_life_event_type_new_instrument":"Neues Instrument","personalization_life_event_type_new_job":"Neuer Job","personalization_life_event_type_new_language":"Neue Sprache","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":"Neuer Sport","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":"Zahnspange entfernt","personalization_life_event_type_retirement":"Pensionierung","personalization_life_event_type_study_abroad":"Studium im Ausland","personalization_life_event_type_surgery":"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":"Brille oder Kontaktlinsen tragen","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":"Manche Menschen brauchen nicht alle Funktionen. Unten kannst du die Felder ausw\u00e4hlen, die auf einer Kontaktseite angezeigt werden. Die \u00c4nderungen werden f\u00fcr ALLE Kontakte \u00fcbernommen. Wenn du eine Funktion ausschaltest, so gehen die Daten darin nicht verloren, wir verbergen sie nur.","personalization_module_save":"Die \u00c4nderung wurde gespeichert","personalization_module_title":"Funktionen","personalization_reminder_rule_desc":"F\u00fcr jede Erinnerung die du setzt, k\u00f6nnen wir dir ein paar Tage befor das Ereignis stattfindet eine Email senden. Du kannst diese Benachrichtigungen hier umschaten. Bedenke dass diese Benachrichtigungen nur monatliche und j\u00e4hrliche Erinnerungen betreffen.","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 deine 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...","recovery_generate_help":"Beachten Sie, dass 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":"Zeitpunkt f\u00fcr den Versand von Erinnerungen","reminder_time_to_send_help":"Zur Information: Ihre n\u00e4chste Erinnerung am {dateTime}<\/span> gesendet.","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":"Willst du dein Konto wirklich zur\u00fccksetzen? Letzte Warnung.","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":"Tags bearbeiten","sidebar_settings_users":"Benutzer","storage_account_info":"Ihr Kontolimit: :accounLimit Mb \/ Ihre aktuelle Nutzung: :currentAccountSize Mb (: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":"Du unterst\u00fctzt 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> verschickt.|Du hast aktuell :count ausstehende Einladungen<\/a> verschickt.","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 auch nicht den Support oder sonst wen kontaktieren. Laufende Abos werden jedoch nicht zur\u00fcck erstattet.","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 wohlwollenden 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. All Einnahmen werden genutzt um das Programm zu verbessern, bessere Server zu betreiben und die Rechnungen zu bezahlen. Vielen Dank f\u00fcr deine Hilfe. Wir k\u00f6nnten das Ganze ohne dich nicht machen - wirklich.","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 Ihre Kredit-Karte: Der Preis ist aktuell. Die n\u00e4chste Geb\u00fchr wird am :date f\u00e4llig sein. Wenn Sie es sich jemals anders \u00fcberlegen, k\u00f6nnen Sie jederzeit ohne weitere Fragen 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. So bald dein 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. Diese Person hat Zugriff auf all meine Daten und sieht, was ich sehe.","users_add_cta":"Benutzer per E-Mail einladen","users_add_description":"Diese Person wird die selben Rechte haben wir du wodurch dieser andere Benutzer einladen und l\u00f6schen kann (inklusive dir). Du solltest dieser Person daher trauen k\u00f6nnen.","users_add_email_field":"Gib die E-Mail-Adresse der Person an, die du einladen m\u00f6chtest","users_add_title":"Jemand 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."}} diff --git a/public/js/langs/el.json b/public/js/langs/el.json new file mode 100644 index 00000000000..11e0a6b179a --- /dev/null +++ b/public/js/langs/el.json @@ -0,0 +1 @@ +{"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":"\u0392\u03b5\u03bb\u03c4\u03b9\u03ce\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c7\u03ad\u03c3\u03b5\u03b9\u03c2 \u03bc\u03b5 \u03c4\u03bf\u03c5 \u03b1\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2 \u03c3\u03b1\u03c2. \u0394\u03c9\u03c1\u03b5\u03ac\u03bd Online CRM \u03b3\u03b9\u03b1 \u03c6\u03af\u03bb\u03bf\u03c5\u03c2 \u03ba\u03b1\u03b9 \u03bf\u03b9\u03ba\u03bf\u03b3\u03ad\u03bd\u03b5\u03b9\u03b1.","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","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":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9;","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":"\u03a3\u03c5\u03bd\u03c4\u03ae\u03c1\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03b5\u03be\u03ad\u03bb\u03b9\u03be\u03b7. \u0398\u03b1 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03bf\u03c5\u03bc\u03b5 \u03c3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b1.","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":"1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b5\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5...|{count} \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd...","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":"\u039c\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7","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":"\u0388\u03c7\u03b5\u03c4\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1;","footer_send_email":"\u03a3\u03c4\u03b5\u03af\u03bb\u03c4\u03b5 \u03bc\u03bf\u03c5 \u03ad\u03bd\u03b1 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":"\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7...","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":"Your email address has been changed. Check your mailbox to validate it.","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":"Add your first contact","dashboard_blank_description":"Monica is the place to organize all the interactions you have with the ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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":"\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_created_with_name_with_link":"\u03a0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 :name<\/a> \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_cleared_with_name_with_link":"\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5 \u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 :name<\/a>.","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_description_updated_with_name_with_link":"\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<\/a>.","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.","settings_log_contact_work_updated_with_name_with_link":"\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<\/a>."},"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":"Hi :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":"Reminder for :contact","want_reminded_of":"You wanted to be reminded of :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":"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":"\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":"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":"\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":"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":"\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":"Log conversation","conversation_list_table_content":"Partial content (last message)","conversation_list_table_messages":"Messages","conversation_list_title":"Conversations","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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"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":"\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":"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":"\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":"You are viewing archived contacts. See the list of active contacts<\/a> instead.","list_link_to_archived_contacts":"List of archived contacts","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":"Create an annual reminder for the birthday","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":"There is already a contact in your account with this email address. Please choose another one.","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":"\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03b1\u03bd\u03ac \u03c3\u03b5\u03bb\u03af\u03b4\u03b1:","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","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":"\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":"Update work information","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":"Job title (optional)","work_edit_success":"Work information have been updated with success","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/en-GB.json b/public/js/langs/en-GB.json index 24184cfdf38..6005015418f 100644 --- a/public/js/langs/en-GB.json +++ b/public/js/langs/en-GB.json @@ -1 +1 @@ -{"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","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":"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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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 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 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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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","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\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 have been updated with success","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} +{"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","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":"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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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 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 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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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","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\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 have been updated with success","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/es.json b/public/js/langs/es.json index dd03842a1de..17c3869a356 100644 --- a/public/js/langs/es.json +++ b/public/js/langs/es.json @@ -1 +1 @@ -{"app":{"add":"A\u00f1adir","another_day":"otro d\u00eda","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 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":"Importar reporte","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":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Aceptar nuevos t\u00e9rminos y pol\u00edtica de privacidad","compliance_title":"Lamentamos la interrupci\u00f3n.","confirm":"Confirm","copy":"Copiar","create":"Crear","date":"Fecha","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":"Los datos han sido guardados.","delete":"Eliminar","delete_confirm":"Sure?","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":"Insecurity","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":"Love","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":"Remorse","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":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envidia","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","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":"Surprise","emotion_secondary_sympathy":"Simpat\u00eda","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","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 file selected...|{count} files selected...","filter":"Filter the list","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 esta disponible","footer_newsletter":"Bolet\u00edn","footer_privacy":"Pol\u00edticas de privacidad","footer_release":"Notas de la versi\u00f3n","footer_remarks":"Alguna sugerencia?","footer_send_email":"Enviarme un email","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":"Logout","header_settings_link":"Configuraci\u00f3n","load_more":"Cargar m\u00e1s","loading":"Cargando...","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":"Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.","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":":name\u2019s boss","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 fecha de :name","relationship_type_date_with_name":"la fecha 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-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-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":"Other kind of relationships","relationship_type_group_work":"Relaciones laborales","relationship_type_inlovewith":"enamorado de","relationship_type_inlovewith_female":"enamorado 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":"la 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":"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":"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":"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":"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":"Remover","retry":"Reintentar","revoke":"Revocar","save":"Guardar","save_close":"Guardar y cerrar","today":"hoy","type":"Tipo","unknown":"I don\u2019t know","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":"If you want to change your email address you can click here<\/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":"If you did not receive the email click here to request another<\/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":"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":"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":"Authenticate with a security key (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":"An error occured trying to register the user","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":"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":"\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_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":"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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"mail":{"comment":"Comment: :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 verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"Ver :name's profile: :url","for":"Para: :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":"\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":"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":"Siguiente \u276f","previous":"\u276e Anterior"},"passwords":{"changed":"Password changed successfully.","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":"Please wait before retrying.","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":"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":"Ocurri\u00f3 un error al a\u00f1adir la actividad","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":"(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":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","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":"played a sport together","activity_type_just_hung_out":"solo pasamos el rato","activity_type_picnicked":"picnicked","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":"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":"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":"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":"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":"You must add at least one message.","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":"Deceased date","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_gift":"A\u00f1adir un regalo","gifts_add_gift_already_offered":"Regalo ofrecido","gifts_add_gift_idea":"Idea de regalo","gifts_add_gift_name":"Gift name","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":"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":"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":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Idea de regalo","gifts_link":"Enlace","gifts_mark_offered":"Marca como ofrecido","gifts_offered":"Regalos ofrecidos","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":"Birthdate","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":"Max {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":"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":"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":"Got a roommate","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":"Overcame an illness","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":"Had surgery","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":"This is you","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":"On this date, :name, would have celebrated his birthday","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":"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":"Ave","pets_cat":"Gato","pets_create_success":"The pet has been successfully added","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":"Make profile picture","photo_next":"Next photo","photo_previous":"Previous photo","photo_title":"Photos","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 is...","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":"Optional comment","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":"Send me an email every... {count} day|Send me an email every... {count} days","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":"Tasks","work_add_cta":"Actualizar la informaci\u00f3n de trabajo","work_edit_company":"Empresa (opcional)","work_edit_job":"T\u00edtulo (opcional)","work_edit_success":"La informaci\u00f3n de trabajo ha sido actualizada con \u00e9xito","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":"Disable Two Factor Authentication for your account. Be careful, your account will not be secured anymore !","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":"Abre tu aplicaci\u00f3n m\u00f3vil de autenticaci\u00f3n en dos pasos y escanea el siguente c\u00f3digo QR:","2fa_enable_otp_help":"Si tu aplicaci\u00f3n m\u00f3vil no soporta c\u00f3digos QR, introduce el siguiente c\u00f3digo:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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":"Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"\u00bfEst\u00e1 seguro que desea eliminar su cuenta? No se puede deshacer.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Eliminar tu cuenta","email":"Correo electr\u00f3nico","email_help":"Este es el email usado para identificarte, y es d\u00f3nde recibiras tus recordatorios.","email_placeholder":"Ingrese un email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Exportar a SQL","export_sql_explanation":"Exportar tus datos en formato SQL te permite tomar tu propia informaci\u00f3n he importarla en tu propia instancia de Monica. Esto es valioso solo si t\u00fa tienes tu propio servidor.","export_sql_link_instructions":"Nota: lee las instrucciones<\/a> para aprender m\u00e1s sobre como importar este archivo en tu propia instancia.","export_title":"Exportar los datos de tu cuenta","export_title_sql":"Exportar a 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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":"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":"Alem\u00e1n","locale_pt":"Portugues","locale_pt-BR":"Portuguese (Brazil)","locale_ru":"Ruso","locale_tr":"Turco","locale_zh":"Chino simplificado","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Tu nombre: :name","name_order":"Orden de los nombres","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":"Cambiar Contrase\u00f1a","password_change":"Cambiar contrase\u00f1a","password_current":"Contrase\u00f1a actual","password_current_placeholder":"Introduce tu contrase\u00f1a actual","password_new1":"Nueva contrase\u00f1a","password_new1_placeholder":"Introduce una nueva contrase\u00f1a","password_new2":"Confirmaci\u00f3n","password_new2_placeholder":"Vuelve a escribir tu nueva contrase\u00f1a","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","reset_cta":"Resetear tu cuenta","reset_desc":"\u00bfDeseas resetear tu cuenta? Esto borrar\u00e1 todos tus contactos, y todos los datos asociados a ellos. Tu cuenta no ser\u00e1 borrada.","reset_notice":"\u00bfEst\u00e1s seguro que desea resetear tu cuenta? No se puede deshacer.","reset_success":"Tu cuenta ha sido reseteada satisfactoriamente","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":"Administrar tags","sidebar_settings_users":"Usuarios","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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":"Support the project on 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":"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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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":"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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invitar usuario por email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invitar un nuevo usuario por email a tu cuenta","users_blank_add_title":"Would you like to invite someone else?","users_blank_cta":"Invitar a alguien","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":"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."}} +{"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":"Have better relations with your loved ones. Free Online CRM for friends and family.","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":"Importar reporte","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":"We don\u2019t do anything nasty with your data or your account and we never will.","compliance_terms":"Aceptar nuevos t\u00e9rminos y pol\u00edtica de privacidad","compliance_title":"Lamentamos la interrupci\u00f3n.","confirm":"Confirm","copy":"Copiar","create":"Crear","date":"Fecha","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":"Los datos han sido guardados.","delete":"Eliminar","delete_confirm":"Sure?","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":"Insecurity","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":"Love","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":"Remorse","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":"Disappointment","emotion_secondary_disgust":"Disgust","emotion_secondary_enthrallment":"Enthrallment","emotion_secondary_envy":"Envidia","emotion_secondary_exasperation":"Exasperation","emotion_secondary_horror":"Horror","emotion_secondary_irritation":"Irritation","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":"Surprise","emotion_secondary_sympathy":"Simpat\u00eda","emotion_secondary_zest":"Zest","emotion_sentimentality":"Sentimentality","emotion_shame":"Shame","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 file selected...|{count} files selected...","filter":"Filter the list","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 esta disponible","footer_newsletter":"Bolet\u00edn","footer_privacy":"Pol\u00edticas de privacidad","footer_release":"Notas de la versi\u00f3n","footer_remarks":"Alguna sugerencia?","footer_send_email":"Enviarme un email","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...","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":":name\u2019s boss","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 fecha de :name","relationship_type_date_with_name":"la fecha 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-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-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":"enamorado 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":"la 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":"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":"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":"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":"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":"Remover","retry":"Reintentar","revoke":"Revocar","save":"Guardar","save_close":"Guardar y cerrar","today":"hoy","type":"Tipo","unknown":"I don\u2019t know","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":"If you want to change your email address you can click here<\/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":"If you did not receive the email click here to request another<\/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":"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":"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":"Authenticate with a security key (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":"An error occured trying to register the user","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":"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":"\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_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":"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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"mail":{"comment":"Comment: :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 verification","footer_contact_info":"Add, view, complete, and change information about this contact:","footer_contact_info2":"See :name\u2019s profile","footer_contact_info2_link":"Ver :name's profile: :url","for":"Para: :name","greetings":"Hola, :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":"\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":"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":"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":"Do you want to log how you felt during this activity? (optional)","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":"Category:","activities_list_date":"Happened on","activities_list_emotions":"Emotions felt:","activities_list_participants":"Participants:","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":"played a sport together","activity_type_just_hung_out":"solo pasamos el rato","activity_type_picnicked":"picnicked","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":"By :name on :date","auditlogs_breadcrumb":"Historial","auditlogs_link":"Historial","auditlogs_title":"Todo lo que le pas\u00f3 a :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":"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":"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":"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":"You must add at least one message.","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":"Deceased date","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_gift":"A\u00f1adir un regalo","gifts_add_gift_already_offered":"Regalo ofrecido","gifts_add_gift_idea":"Idea de regalo","gifts_add_gift_name":"Gift name","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":"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":"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":"Delete a gift","gifts_for":"For: {name}","gifts_ideas":"Idea de regalo","gifts_link":"Enlace","gifts_mark_offered":"Marca como ofrecido","gifts_offered":"Regalos ofrecidos","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":"Birthdate","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":"Max {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":"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":"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":"Got a roommate","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":"Overcame an illness","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":"Had surgery","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":"This is you","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":"On this date, :name, would have celebrated his birthday","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":"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":"Ave","pets_cat":"Gato","pets_create_success":"The pet has been successfully added","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":"Make profile picture","photo_next":"Next photo","photo_previous":"Previous photo","photo_title":"Photos","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 is...","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":"Optional comment","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":"Send me an email every... {count} day|Send me an email every... {count} days","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":"Tasks","work_add_cta":"Actualizar la informaci\u00f3n de trabajo","work_edit_company":"Empresa (opcional)","work_edit_job":"T\u00edtulo (opcional)","work_edit_success":"La informaci\u00f3n de trabajo ha sido actualizada con \u00e9xito","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":"Disable Two Factor Authentication for your account. Be careful, your account will not be secured anymore !","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":"Abre tu aplicaci\u00f3n m\u00f3vil de autenticaci\u00f3n en dos pasos y escanea el siguente c\u00f3digo QR:","2fa_enable_otp_help":"Si tu aplicaci\u00f3n m\u00f3vil no soporta c\u00f3digos QR, introduce el siguiente c\u00f3digo:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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":"Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"\u00bfEst\u00e1 seguro que desea eliminar su cuenta? No se puede deshacer.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Eliminar tu cuenta","email":"Correo electr\u00f3nico","email_help":"Este es el email usado para identificarte, y es d\u00f3nde recibiras tus recordatorios.","email_placeholder":"Ingrese un email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Exportar a SQL","export_sql_explanation":"Exportar tus datos en formato SQL te permite tomar tu propia informaci\u00f3n he importarla en tu propia instancia de Monica. Esto es valioso solo si t\u00fa tienes tu propio servidor.","export_sql_link_instructions":"Nota: lee las instrucciones<\/a> para aprender m\u00e1s sobre como importar este archivo en tu propia instancia.","export_title":"Exportar los datos de tu cuenta","export_title_sql":"Exportar a 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"Soportamos el formato vCard 3.0, que es el formato predeterminado para Contacts.app (macOS) y 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"Mi contacto","name":"Tu nombre: :name","name_order":"Orden de los nombres","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":"Cambiar Contrase\u00f1a","password_change":"Cambiar contrase\u00f1a","password_current":"Contrase\u00f1a actual","password_current_placeholder":"Introduce tu contrase\u00f1a actual","password_new1":"Nueva contrase\u00f1a","password_new1_placeholder":"Introduce una nueva contrase\u00f1a","password_new2":"Confirmaci\u00f3n","password_new2_placeholder":"Vuelve a escribir tu nueva contrase\u00f1a","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"Para tu informaci\u00f3n, tu siguiente recordatorio se enviar\u00e1 el {dateTime}<\/span>.","reset_cta":"Resetear tu cuenta","reset_desc":"\u00bfDeseas resetear tu cuenta? Esto borrar\u00e1 todos tus contactos, y todos los datos asociados a ellos. Tu cuenta no ser\u00e1 borrada.","reset_notice":"\u00bfEst\u00e1s seguro que desea resetear tu cuenta? No se puede deshacer.","reset_success":"Tu cuenta ha sido reseteada satisfactoriamente","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":"Administrar tags","sidebar_settings_users":"Usuarios","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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":"Support the project on 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":"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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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":"I confirm that I want to invite this user to my account. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invitar usuario por email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invitar un nuevo usuario por email a tu cuenta","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."}} diff --git a/public/js/langs/fr.json b/public/js/langs/fr.json index f787860265e..ca6c5f6ad86 100644 --- a/public/js/langs/fr.json +++ b/public/js/langs/fr.json @@ -1 +1 @@ -{"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","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 ?","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...|{count} fichiers s\u00e9lectionn\u00e9s...","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 est disponible","footer_newsletter":"Infolettre","footer_privacy":"Politique de confidentialit\u00e9","footer_release":"Notes de version","footer_remarks":"Une remarque ?","footer_send_email":"Envoyez moi 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...","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_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_created_with_name_with_link":"Ajout de :name<\/a> en tant que contact.","settings_log_contact_description_cleared_with_name":"Suppression de la description de :name.","settings_log_contact_description_cleared_with_name_with_link":"Suppression de la description de :name<\/a>.","settings_log_contact_description_updated_with_name":"Modification de la description de :name.","settings_log_contact_description_updated_with_name_with_link":"Modification de la description de :name<\/a>.","settings_log_contact_work_updated_with_name":"Modification des informations professionnelles de :name.","settings_log_contact_work_updated_with_name_with_link":"Modification des informations professionnelles de :name<\/a>."},"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_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","photo_previous":"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":"Les informations professionnelles ont \u00e9t\u00e9 mises \u00e0 jour avec succ\u00e8s","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 securis\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":"Veuillez 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 vos 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 ? Attention : la suppression est permanente et toutes vos donn\u00e9es seront d\u00e9finitivement supprim\u00e9es. Votre abonnement (le cas \u00e9ch\u00e9ant) sera \u00e9galement imm\u00e9diatement annul\u00e9.","delete_notice":"\u00cates-vous s\u00fbr de vouloir supprimer votre compte ? Ceci ne peut pas \u00eatre annul\u00e9.","delete_other_desc":"Pour \u00eatre clair : vos donn\u00e9es dans la base de donn\u00e9es principale seront supprim\u00e9es imm\u00e9diatement. Cependant, comme d\u00e9crit dans notre politique de confidentialit\u00e9, nous faisons des sauvegardes quotidiennes de la base de donn\u00e9es en cas de panne et cette sauvegarde est conserv\u00e9e pendant 30 jours, puis elle est compl\u00e8tement supprim\u00e9e. Il n\u2019est pas r\u00e9aliste d\u2019imaginer que nous puissions aller dans toutes les sauvegardes pour supprimer vos donn\u00e9es sp\u00e9cifiques. Soit dit en passant, ces donn\u00e9es sont chiffr\u00e9es sur des serveurs Amazon tr\u00e8s s\u00e9curis\u00e9s et personne n\u2019a la cl\u00e9 de chiffrement, sauf nous. Par cons\u00e9quent, vos donn\u00e9es dispara\u00eetront compl\u00e8tement dans 30 jours de toutes les sauvegardes, et personne ne saura que ces donn\u00e9es ont jamais exist\u00e9 en premier lieu.","delete_title":"Supprimer votre compte","email":"Adresse courriel","email_help":"Cette adresse courriel est utilis\u00e9e pour vous connecter \u00e0 votre compte, et c\u2019est aussi l\u2019adresse que nous utiliserons pour vous envoyer les rappels par courriel.","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 spammer le bouton.","export_sql_cta":"Exporter 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":"Note : lisez les instructions<\/a> afin d\u2019apprendre comment importer ce fichier dans votre instance.","export_title":"Exporter les donn\u00e9es de votre compte","export_title_sql":"Exporter 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, passer les contacts existants","import_upload_behaviour_help":"Remarque\u00a0: 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 Contacts.app (macOS)<\/a> et Google Contacts<\/a>.","import_upload_rule_limit":"Les fichiers sont limit\u00e9s \u00e0 10MB.","import_upload_rule_multiple":"Pour le moment, si vos contacts ont plusieurs adresses courriels ou num\u00e9ros de t\u00e9l\u00e9phone, seule la premi\u00e8re entr\u00e9e sera choisie.","import_upload_rule_time":"Cela peut prendre 1 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 Contacts.app (macOS) 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_tr":"Turc","locale_zh":"Chinois Simplifi\u00e9","locale_zh-TW":"Chinois Traditionnel","logs_author":"Par :name le :date","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":"Mon 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":"Modification du 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":"Entrer un nouveau mot de passe","password_new2":"Confirmation","password_new2_placeholder":"Confirmez le 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 effectu\u00e9e 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 tout 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. Toutefois, 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":"Ici vous pouvez configurer les diff\u00e9rents type de champs de contact que vous pouvez associer \u00e0 tous vos contacts. Si \u00e0 l\u2019avenir un nouveau r\u00e9seau social appara\u00eet, vous pourrez ajouter un nouveau type de moyen de contact 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":"Etes-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":"\u00cates-vous s\u00fbr de vouloir supprimer {name} ?","personalization_genders_modal_delete_question":"Vous avez actuellement {count} contact qui a ce genre. Si vous supprimez ce genre, quel genre ce contact aurait ?|Vous avez actuellement {count} contacts qui ont 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 valide 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_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_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_anniversary":"Anniversaire","personalization_life_event_type_bought_a_home":"Nouvelle maison","personalization_life_event_type_broken_bone":"Os cass\u00e9","personalization_life_event_type_changed_beliefs":"Changement de croyances","personalization_life_event_type_dentist":"Dentiste","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_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":"Nouveau passe-temps","personalization_life_event_type_new_instrument":"Nouvel instrument","personalization_life_event_type_new_job":"Nouveau travail","personalization_life_event_type_new_language":"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":"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":"Retrait de l\u2019appareil 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":"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":"Nouvelles lunettes ou lentilles de contact","personalization_life_event_type_weight_loss":"Perte de poids","personalization_module_desc":"Certaines personnes n\u2019ont 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. Notez que si vous d\u00e9sactivez une de ces fonctionnalit\u00e9s les donn\u00e9es ne seront pas perdues, la fonctionnalit\u00e9 sera simplement masqu\u00e9e.","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, nous pouvons envoyer un courriel plusieurs jours avant que l\u2019\u00e9v\u00e8nement ne se passe. Vous pouvez d\u00e9sactiver ces notifications ici. Notez que 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 ...","recovery_generate_help":"Sachez que la g\u00e9n\u00e9ration 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":"Pour votre information, 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 r\u00e9initialiser votre compte\u00a0? Ceci 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":"Limite de votre compte\u00a0:\u00a0:accountLimit Mo \/ Votre utilisation actuelle\u00a0:\u00a0:currentAccountSize Mo (: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\u2019invitations en attente","subscriptions_downgrade_rule_invitations_constraint":"Vous avez actuellement :count invitation en attente<\/a> envoy\u00e9e \u00e0 des personnes.|Vous avez actuellement :count invitations en attente<\/a> envoy\u00e9es \u00e0 des personnes.","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 fournir 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, avoir plus de serveurs puissants, aider \u00e0 payer les factures. Merci pour votre aide. Nous ne pourrions rien faire sans vous \u2013 litt\u00e9ralement.","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 \u00e9tiquettes sont comme des dossiers, mais vous pouvez avoir autant d\u2019\u00e9tiquette que vous le souhaitez par contact.","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. Cette personne aura toutes mes donn\u00e9es d\u2019acc\u00e8s et verra exactement ce que je vois.","users_add_cta":"Inviter l\u2019utilisateur par courriel","users_add_description":"Cette personne aura les m\u00eames droits que vous, y compris inviter d\u2019autres utilisateurs et les supprimer (y compris vous). Par cons\u00e9quent, assurez-vous que vous faites confiance \u00e0 cette personne.","users_add_email_field":"Entrez le courriel de la personne que vous souhaitez inviter","users_add_title":"Inviter un nouvel utilisateur par courriel \u00e0 votre compte","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"}} +{"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","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 ?","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...|{count} fichiers s\u00e9lectionn\u00e9s...","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 est disponible","footer_newsletter":"Infolettre","footer_privacy":"Politique de confidentialit\u00e9","footer_release":"Notes de version","footer_remarks":"Une remarque ?","footer_send_email":"Envoyez moi 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...","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_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_created_with_name_with_link":"Ajout de :name<\/a> en tant que contact.","settings_log_contact_description_cleared_with_name":"Suppression de la description de :name.","settings_log_contact_description_cleared_with_name_with_link":"Suppression de la description de :name<\/a>.","settings_log_contact_description_updated_with_name":"Modification de la description de :name.","settings_log_contact_description_updated_with_name_with_link":"Modification de la description de :name<\/a>.","settings_log_contact_work_updated_with_name":"Modification des informations professionnelles de :name.","settings_log_contact_work_updated_with_name_with_link":"Modification des informations professionnelles de :name<\/a>."},"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_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","photo_previous":"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":"Les informations professionnelles ont \u00e9t\u00e9 mises \u00e0 jour avec succ\u00e8s","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 securis\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":"Veuillez 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 vos 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 ? Attention : la suppression est permanente et toutes vos donn\u00e9es seront d\u00e9finitivement supprim\u00e9es. Votre abonnement (le cas \u00e9ch\u00e9ant) sera \u00e9galement imm\u00e9diatement annul\u00e9.","delete_notice":"\u00cates-vous s\u00fbr de vouloir supprimer votre compte ? Ceci ne peut pas \u00eatre annul\u00e9.","delete_other_desc":"Pour \u00eatre clair : vos donn\u00e9es dans la base de donn\u00e9es principale seront supprim\u00e9es imm\u00e9diatement. Cependant, comme d\u00e9crit dans notre politique de confidentialit\u00e9, nous faisons des sauvegardes quotidiennes de la base de donn\u00e9es en cas de panne et cette sauvegarde est conserv\u00e9e pendant 30 jours, puis elle est compl\u00e8tement supprim\u00e9e. Il n\u2019est pas r\u00e9aliste d\u2019imaginer que nous puissions aller dans toutes les sauvegardes pour supprimer vos donn\u00e9es sp\u00e9cifiques. Soit dit en passant, ces donn\u00e9es sont chiffr\u00e9es sur des serveurs Amazon tr\u00e8s s\u00e9curis\u00e9s et personne n\u2019a la cl\u00e9 de chiffrement, sauf nous. Par cons\u00e9quent, vos donn\u00e9es dispara\u00eetront compl\u00e8tement dans 30 jours de toutes les sauvegardes, et personne ne saura que ces donn\u00e9es ont jamais exist\u00e9 en premier lieu.","delete_title":"Supprimer votre compte","email":"Adresse courriel","email_help":"Cette adresse courriel est utilis\u00e9e pour vous connecter \u00e0 votre compte, et c\u2019est aussi l\u2019adresse que nous utiliserons pour vous envoyer les rappels par courriel.","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 spammer le bouton.","export_sql_cta":"Exporter 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":"Note : lisez les instructions<\/a> afin d\u2019apprendre comment importer ce fichier dans votre instance.","export_title":"Exporter les donn\u00e9es de votre compte","export_title_sql":"Exporter 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, passer les contacts existants","import_upload_behaviour_help":"Remarque\u00a0: 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 Contacts.app (macOS)<\/a> et Google Contacts<\/a>.","import_upload_rule_limit":"Les fichiers sont limit\u00e9s \u00e0 10MB.","import_upload_rule_multiple":"Pour le moment, si vos contacts ont plusieurs adresses courriels ou num\u00e9ros de t\u00e9l\u00e9phone, seule la premi\u00e8re entr\u00e9e sera choisie.","import_upload_rule_time":"Cela peut prendre 1 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 Contacts.app (macOS) 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_author":"Par :name le :date","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":"Mon 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":"Modification du 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":"Entrer un nouveau mot de passe","password_new2":"Confirmation","password_new2_placeholder":"Confirmez le 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 effectu\u00e9e 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 tout 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. Toutefois, 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":"Ici vous pouvez configurer les diff\u00e9rents type de champs de contact que vous pouvez associer \u00e0 tous vos contacts. Si \u00e0 l\u2019avenir un nouveau r\u00e9seau social appara\u00eet, vous pourrez ajouter un nouveau type de moyen de contact 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":"Etes-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":"\u00cates-vous s\u00fbr de vouloir supprimer {name} ?","personalization_genders_modal_delete_question":"Vous avez actuellement {count} contact qui a ce genre. Si vous supprimez ce genre, quel genre ce contact aurait ?|Vous avez actuellement {count} contacts qui ont 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 valide 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":"Os cass\u00e9","personalization_life_event_type_changed_beliefs":"Changement de croyances","personalization_life_event_type_dentist":"Dentiste","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":"Nouveau passe-temps","personalization_life_event_type_new_instrument":"Nouvel instrument","personalization_life_event_type_new_job":"Nouveau travail","personalization_life_event_type_new_language":"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":"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":"Retrait de l\u2019appareil 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":"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":"Nouvelles lunettes ou 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":"Certaines personnes n\u2019ont 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. Notez que si vous d\u00e9sactivez une de ces fonctionnalit\u00e9s les donn\u00e9es ne seront pas perdues, la fonctionnalit\u00e9 sera simplement masqu\u00e9e.","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, nous pouvons envoyer un courriel plusieurs jours avant que l\u2019\u00e9v\u00e8nement ne se passe. Vous pouvez d\u00e9sactiver ces notifications ici. Notez que 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 ...","recovery_generate_help":"Sachez que la g\u00e9n\u00e9ration 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":"Pour votre information, 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 r\u00e9initialiser votre compte\u00a0? Ceci 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":"Limite de votre compte\u00a0:\u00a0:accountLimit Mo \/ Votre utilisation actuelle\u00a0:\u00a0:currentAccountSize Mo (: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\u2019invitations en attente","subscriptions_downgrade_rule_invitations_constraint":"Vous avez actuellement :count invitation en attente<\/a> envoy\u00e9e \u00e0 des personnes.|Vous avez actuellement :count invitations en attente<\/a> envoy\u00e9es \u00e0 des personnes.","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 fournir 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, avoir plus de serveurs puissants, aider \u00e0 payer les factures. Merci pour votre aide. Nous ne pourrions rien faire sans vous \u2013 litt\u00e9ralement.","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 \u00e9tiquettes sont comme des dossiers, mais vous pouvez avoir autant d\u2019\u00e9tiquette que vous le souhaitez par contact.","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. Cette personne aura toutes mes donn\u00e9es d\u2019acc\u00e8s et verra exactement ce que je vois.","users_add_cta":"Inviter l\u2019utilisateur par courriel","users_add_description":"Cette personne aura les m\u00eames droits que vous, y compris inviter d\u2019autres utilisateurs et les supprimer (y compris vous). Par cons\u00e9quent, assurez-vous que vous faites confiance \u00e0 cette personne.","users_add_email_field":"Entrez le courriel de la personne que vous souhaitez inviter","users_add_title":"Inviter un nouvel utilisateur par courriel \u00e0 votre compte","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"}} diff --git a/public/js/langs/he.json b/public/js/langs/he.json index 9d53b458932..e97cea299ba 100644 --- a/public/js/langs/he.json +++ b/public/js/langs/he.json @@ -1 +1 @@ -{"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 \u05de\u05e7\u05d5\u05d5\u05e0\u05ea \u05d1\u05d7\u05d9\u05e0\u05dd \u05dc\u05e7\u05e9\u05e8\u05d9\u05dd \u05e2\u05dd \u05d7\u05d1\u05e8\u05d9\u05dd \u05d5\u05de\u05e9\u05e4\u05d7\u05d4.","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","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":"\u05e7\u05d5\u05d1\u05e5 \u05d0\u05d7\u05d3 \u05e0\u05d1\u05d7\u05e8\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 \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":"\u05d9\u05e9 \u05d4\u05e2\u05e8\u05d5\u05ea?","footer_send_email":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d9 \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_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_created_with_name_with_link":"\u05d4\u05d5\u05e1\u05e4\u05d4 \u05e9\u05dc :name<\/a> \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_cleared_with_name_with_link":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e9\u05dc :name<\/a> \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_description_updated_with_name_with_link":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e9\u05dc :name<\/a> \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.","settings_log_contact_work_updated_with_name_with_link":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc :name<\/a> \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_gift":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05ea\u05e0\u05d4","gifts_add_gift_already_offered":"\u05de\u05ea\u05e0\u05d4 \u05e9\u05d4\u05d5\u05e6\u05e2\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 \u05db\u05d4\u05d5\u05e6\u05e2\u05d4","gifts_offered":"\u05de\u05ea\u05e0\u05d5\u05ea \u05e9\u05d4\u05d5\u05e6\u05e2\u05d5","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","photo_previous":"\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 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","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\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05d4\u05d5\u05e9\u05d1\u05ea \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da. \u05db\u05d3\u05d0\u05d9 \u05dc\u05e0\u05e7\u05d5\u05d8 \u05d1\u05de\u05e9\u05e0\u05d4 \u05d6\u05d4\u05d9\u05e8\u05d5\u05ea \u05de\u05e2\u05ea\u05d4 \u05db\u05d9\u05d5\u05d5\u05df \u05e9\u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \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 \u05d1\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":"\u05d4\u05d0\u05dd \u05e8\u05e6\u05d5\u05e0\u05da \u05d4\u05d5\u05d0 \u05dc\u05e1\u05d2\u05d5\u05e8 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df? \u05d0\u05d6\u05d4\u05e8\u05d4: \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. \u05d4\u05de\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05e9\u05dc\u05da (\u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05db\u05d0\u05dc\u05d4) \u05d9\u05d1\u05d5\u05d8\u05dc\u05d5 \u05d1\u05d0\u05d5\u05e4\u05df \u05de\u05d9\u05d9\u05d3\u05d9 \u05d2\u05dd \u05db\u05df.","delete_notice":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da? \u05d0\u05d9\u05df \u05d3\u05e8\u05da \u05d7\u05d6\u05e8\u05d4.","delete_other_desc":"\u05dc\u05e6\u05d5\u05e8\u05da \u05d4\u05d1\u05d4\u05e8\u05d4: \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d1\u05de\u05e1\u05d3 \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d4\u05e8\u05d0\u05e9\u05d9 \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05de\u05d9\u05d3. \u05e2\u05dd \u05d6\u05d0\u05ea, \u05db\u05e4\u05d9 \u05e9\u05e6\u05d5\u05d9\u05df \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 \u05e9\u05dc \u05de\u05e1\u05d3 \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05dc\u05de\u05e7\u05e8\u05d4 \u05e9\u05dc \u05ea\u05e7\u05dc\u05d4 \u05d5\u05de\u05e1\u05d3 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d6\u05d4 \u05e0\u05e9\u05de\u05e8 \u05dc\u05de\u05e9\u05da 30 \u05d9\u05d5\u05dd - \u05dc\u05d0\u05d7\u05e8 \u05de\u05db\u05df \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05dc\u05d2\u05de\u05e8\u05d9. \u05de\u05d7\u05d9\u05e7\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d1\u05d0\u05d5\u05e4\u05df \u05e0\u05e7\u05d5\u05d3\u05ea\u05d9 \u05de\u05db\u05dc \u05d0\u05d7\u05d3 \u05d5\u05d0\u05d7\u05d3 \u05de\u05d4\u05d2\u05d9\u05d1\u05d5\u05d9\u05d9\u05dd \u05d4\u05d9\u05d0 \u05d1\u05d2\u05d3\u05e8 \u05d4\u05d6\u05d9\u05d4. \u05d3\u05e8\u05da \u05d0\u05d2\u05d1, \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d0\u05dc\u05d5 \u05de\u05d5\u05e6\u05e4\u05e0\u05d9\u05dd \u05d1\u05e9\u05e8\u05ea \u05de\u05d0\u05d5\u05d1\u05d8\u05d7 \u05de\u05d0\u05d5\u05d3 \u05e9\u05de\u05ea\u05d0\u05d7\u05e1\u05df \u05d1\u05e9\u05e8\u05ea\u05d9\u05dd \u05e9\u05dc Amazon \u05d5\u05dc\u05d0\u05e3 \u05d0\u05d7\u05d3 \u05d0\u05d9\u05df \u05d0\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05d4\u05e4\u05e6\u05e0\u05d4 \u05d7\u05d5\u05e5 \u05de\u05d0\u05ea\u05e0\u05d5. \u05dc\u05db\u05df, \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05dc\u05d2\u05de\u05e8\u05d9 \u05ea\u05d5\u05da 30 \u05d9\u05d5\u05dd \u05de\u05db\u05dc \u05d4\u05d2\u05d9\u05d1\u05d5\u05d9\u05d9\u05dd \u05d5\u05d0\u05e3 \u05d0\u05d7\u05d3 \u05dc\u05d0 \u05d9\u05d5\u05db\u05dc \u05dc\u05d3\u05e2\u05ea \u05e9\u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d4\u05d0\u05dc\u05d5 \u05d0\u05d9 \u05e4\u05e2\u05dd \u05d4\u05d9\u05d5 \u05e7\u05d9\u05d9\u05de\u05d9\u05dd \u05de\u05dc\u05db\u05ea\u05d7\u05d9\u05dc\u05d4.","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\u05d9\u05e9\u05dc\u05d7\u05e0\u05d4 \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\u05e6\u05d5\u05d0 \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. \u05dc\u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05d9\u05e9 \u05e2\u05e8\u05da \u05e8\u05e7 \u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05e9\u05e8\u05ea \u05de\u05e9\u05dc\u05da.","export_sql_link_instructions":"\u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1\u05da: \u05e0\u05d9\u05ea\u05df \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d0\u05ea \u05d4\u05d4\u05e0\u05d7\u05d9\u05d5\u05ea<\/a> \u05db\u05d3\u05d9 \u05dc\u05dc\u05de\u05d5\u05d3 \u05d9\u05d5\u05ea\u05e8 \u05e2\u05dc \u05d9\u05d1\u05d5\u05d0 \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d4\u05d6\u05d4 \u05dc\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\u05e6\u05d5\u05d0 \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":"\u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1\u05da: \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 (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":"\u05dc\u05e2\u05ea \u05e2\u05ea\u05d4, \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\u05e7\u05dc\u05d8.","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 (macOS) \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_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_author":"\u05de\u05d0\u05ea :name \u05d1\u05be:date","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":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05d9","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> - \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>) - \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> - \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> - \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 \u05d9\u05e9\u05e8\u05d0\u05dc","name_order_lastname_firstname_nickname":"<\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> <\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> (<\u05db\u05d9\u05e0\u05d5\u05d9>) - \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 \u05d9\u05e9\u05e8\u05d0\u05dc (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7)","name_order_lastname_nickname_firstname":"<\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> (<\u05db\u05d9\u05e0\u05d5\u05d9>) <\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> - \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7) \u05d9\u05e9\u05e8\u05d0\u05dc","name_order_nickname":"<\u05db\u05d9\u05e0\u05d5\u05d9> - \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>) - \u05e1\u05d7\u05d1\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":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05e1\u05e1\u05de\u05d4","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":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05e1\u05e1\u05de\u05d4 \u05d7\u05d3\u05e9\u05d4","password_new2":"\u05d0\u05d9\u05de\u05d5\u05ea","password_new2_placeholder":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4 \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 \u05e9\u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \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, \u05d0\u05da \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05ea\u05d0\u05d9\u05dd \u05d0\u05d5\u05ea\u05df \u05d1\u05db\u05dc \u05e2\u05ea \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. \u05e2\u05dd \u05d6\u05d0\u05ea, \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":"\u05dc\u05d4\u05dc\u05df \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. \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 \u05d4\u05e1\u05d5\u05d2 \u05d4\u05d7\u05d3\u05e9 \u05d4\u05d6\u05d4 \u05db\u05d0\u05d7\u05ea \u05de\u05d3\u05e8\u05db\u05d9 \u05d4\u05ea\u05e7\u05e9\u05d5\u05e8\u05ea \u05dc\u05d9\u05e6\u05d9\u05e8\u05ea \u05e7\u05e9\u05e8 \u05e2\u05dd \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d3\u05e8\u05da \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 {name}?","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?","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 \u05ea\u05e7\u05e0\u05d9 \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_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_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_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":"\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_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":"\u05ea\u05d7\u05d1\u05d9\u05d1 \u05d7\u05d3\u05e9","personalization_life_event_type_new_instrument":"\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":"\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":"\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","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":"\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\u05e8\u05db\u05d1\u05ea \u05de\u05e9\u05e7\u05e4\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e2\u05d3\u05e9\u05d5\u05ea","personalization_life_event_type_weight_loss":"\u05d9\u05e8\u05d9\u05d3\u05d4 \u05d1\u05de\u05e9\u05e7\u05dc","personalization_module_desc":"\u05d7\u05dc\u05e7 \u05de\u05d4\u05d0\u05e0\u05e9\u05d9\u05dd \u05dc\u05d0 \u05d6\u05e7\u05d5\u05e7\u05d9\u05dd \u05dc\u05db\u05dc \u05d4\u05ea\u05db\u05d5\u05e0\u05d5\u05ea. \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 \u05d1\u05d4\u05df \u05e0\u05e2\u05e9\u05d4 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d2\u05d9\u05dc\u05d9\u05d5\u05df \u05d0\u05e0\u05e9\u05d9 \u05d4\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. \u05e0\u05d0 \u05dc\u05e9\u05d9\u05dd \u05dc\u05d1 \u05e9\u05db\u05d9\u05d1\u05d5\u05d9 \u05e9\u05dc \u05ea\u05db\u05d5\u05e0\u05d4 \u05d0\u05d7\u05ea \u05d0\u05d5 \u05d9\u05d5\u05ea\u05e8 \u05dc\u05d0 \u05d9\u05d2\u05e8\u05d5\u05dd \u05dc\u05d0\u05d1\u05d3\u05df \u05de\u05d9\u05d3\u05e2, \u05d4\u05ea\u05db\u05d5\u05e0\u05d4 \u05e4\u05e9\u05d5\u05d8 \u05ea\u05d5\u05e1\u05ea\u05e8.","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 \u05de\u05d5\u05d2\u05d3\u05e8\u05ea, \u05e0\u05d5\u05db\u05dc \u05dc\u05e9\u05dc\u05d5\u05d7 \u05d0\u05dc\u05d9\u05da \u05d4\u05d5\u05d3\u05e2\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \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\u05d7\u05dc\u05d9\u05e3 \u05d0\u05ea \u05de\u05e6\u05d1 \u05d4\u05d4\u05d5\u05d3\u05e2\u05d5\u05ea \u05d4\u05d0\u05dc\u05d4 \u05db\u05d0\u05df. \u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05da: \u05d4\u05d4\u05ea\u05e8\u05e2\u05d5\u05ea \u05d4\u05d0\u05dc\u05d5 \u05d7\u05dc\u05d5\u05ea \u05e8\u05e7 \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 \u05d9\u05d5\u05ea\u05e8 \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 \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":"\u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1\u05da: \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 \u05d0\u05de\u05d5\u05e8\u05d5\u05ea \u05dc\u05d4\u05d9\u05e9\u05dc\u05d7 \u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea","reminder_time_to_send_help":"\u05dc\u05d9\u05d3\u05d9\u05e2\u05ea\u05da, \u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05d4\u05d1\u05d0\u05d4 \u05e9\u05dc\u05da \u05ea\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? \u05d0\u05d9\u05df \u05d3\u05e8\u05da \u05d7\u05d6\u05e8\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: :accountLimit \u05de\u05f4\u05d1 \/ \u05d4\u05e0\u05d9\u05e6\u05d5\u05dc\u05ea \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea \u05e9\u05dc\u05da: :currentAccountSize \u05de\u05f4\u05d1 (: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","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> \u05e9\u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05de\u05d9\u05e9\u05d4\u05d5.|\u05d9\u05e9 \u05dc\u05da \u05db\u05e8\u05d2\u05e2 :count \u05d4\u05d6\u05de\u05e0\u05d5\u05ea \u05d1\u05d4\u05de\u05ea\u05e0\u05d4<\/a> \u05e9\u05e0\u05e9\u05dc\u05d7\u05d5 \u05dc\u05d0\u05e0\u05e9\u05d9\u05dd.","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 \u05d0\u05d5 \u05de\u05e9\u05d4\u05d5 \u05d1\u05e1\u05d2\u05e0\u05d5\u05df. \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 \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 \u05dc\u05d7\u05dc\u05d5\u05d8\u05d9\u05df \u05d1\u05de\u05e2\u05d5\u05e8\u05d1\u05d5\u05ea \u05d4\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 \u05d1\u05e0\u05d9\u05d9\u05ea \u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05d8\u05d5\u05d1\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8, \u05e9\u05e8\u05ea\u05d9\u05dd \u05d7\u05d6\u05e7\u05d9\u05dd \u05d9\u05d5\u05ea\u05e8, \u05ea\u05e9\u05dc\u05d5\u05dd \u05d7\u05e9\u05d1\u05d5\u05e0\u05d5\u05ea \u05e9\u05d5\u05e0\u05d9\u05dd. \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 - \u05d1\u05de\u05dc\u05d5\u05d0 \u05de\u05d5\u05d1\u05df \u05d4\u05de\u05d9\u05dc\u05d4.","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. \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 \u05d4\u05d6\u05d4 \u05ea\u05d4\u05d9\u05d9\u05e0\u05d4 \u05d0\u05ea \u05d0\u05d5\u05ea\u05d4 \u05e8\u05de\u05ea \u05d4\u05d4\u05e8\u05e9\u05d0\u05d5\u05ea \u05db\u05de\u05d5\u05da \u05d5\u05ea\u05d4\u05d9\u05d4 \u05dc\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d4\u05d6\u05de\u05d9\u05df \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05d5\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05d5\u05ea\u05dd (\u05db\u05d5\u05dc\u05dc \u05d0\u05d5\u05ea\u05da), \u05dc\u05db\u05df, \u05db\u05d3\u05d0\u05d9 \u05dc\u05d5\u05d5\u05d3\u05d0 \u05e9\u05d9\u05e9 \u05dc\u05da \u05d0\u05de\u05d5\u05df \u05d1\u05d0\u05d3\u05dd \u05d6\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 \u05d3\u05e8\u05da \u05d3\u05d5\u05d0\u05f4\u05dc \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","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\u05ea\u05e7\u05d1\u05dc.","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":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d8\u05df \u05d9\u05d5\u05ea\u05e8 \u05de- :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."}} +{"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 \u05de\u05e7\u05d5\u05d5\u05e0\u05ea \u05d1\u05d7\u05d9\u05e0\u05dd \u05dc\u05e7\u05e9\u05e8\u05d9\u05dd \u05e2\u05dd \u05d7\u05d1\u05e8\u05d9\u05dd \u05d5\u05de\u05e9\u05e4\u05d7\u05d4.","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","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":"\u05e7\u05d5\u05d1\u05e5 \u05d0\u05d7\u05d3 \u05e0\u05d1\u05d7\u05e8\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 \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":"\u05d9\u05e9 \u05d4\u05e2\u05e8\u05d5\u05ea?","footer_send_email":"\u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d9 \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_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_created_with_name_with_link":"\u05d4\u05d5\u05e1\u05e4\u05d4 \u05e9\u05dc :name<\/a> \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_cleared_with_name_with_link":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e9\u05dc :name<\/a> \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_description_updated_with_name_with_link":"\u05d4\u05ea\u05d9\u05d0\u05d5\u05e8 \u05e9\u05dc :name<\/a> \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.","settings_log_contact_work_updated_with_name_with_link":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e2\u05d1\u05d5\u05d3\u05d4 \u05e9\u05dc :name<\/a> \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_gift":"\u05d4\u05d5\u05e1\u05e4\u05ea \u05de\u05ea\u05e0\u05d4","gifts_add_gift_already_offered":"\u05de\u05ea\u05e0\u05d4 \u05e9\u05d4\u05d5\u05e6\u05e2\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 \u05db\u05d4\u05d5\u05e6\u05e2\u05d4","gifts_offered":"\u05de\u05ea\u05e0\u05d5\u05ea \u05e9\u05d4\u05d5\u05e6\u05e2\u05d5","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","photo_previous":"\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 \u05d1\u05d4\u05e6\u05dc\u05d7\u05d4","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\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05d3\u05d5\u05be\u05e9\u05dc\u05d1\u05d9 \u05d4\u05d5\u05e9\u05d1\u05ea \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da. \u05db\u05d3\u05d0\u05d9 \u05dc\u05e0\u05e7\u05d5\u05d8 \u05d1\u05de\u05e9\u05e0\u05d4 \u05d6\u05d4\u05d9\u05e8\u05d5\u05ea \u05de\u05e2\u05ea\u05d4 \u05db\u05d9\u05d5\u05d5\u05df \u05e9\u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \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 \u05d1\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":"\u05d4\u05d0\u05dd \u05e8\u05e6\u05d5\u05e0\u05da \u05d4\u05d5\u05d0 \u05dc\u05e1\u05d2\u05d5\u05e8 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df? \u05d0\u05d6\u05d4\u05e8\u05d4: \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. \u05d4\u05de\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05e9\u05dc\u05da (\u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05db\u05d0\u05dc\u05d4) \u05d9\u05d1\u05d5\u05d8\u05dc\u05d5 \u05d1\u05d0\u05d5\u05e4\u05df \u05de\u05d9\u05d9\u05d3\u05d9 \u05d2\u05dd \u05db\u05df.","delete_notice":"\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da? \u05d0\u05d9\u05df \u05d3\u05e8\u05da \u05d7\u05d6\u05e8\u05d4.","delete_other_desc":"\u05dc\u05e6\u05d5\u05e8\u05da \u05d4\u05d1\u05d4\u05e8\u05d4: \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d1\u05de\u05e1\u05d3 \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d4\u05e8\u05d0\u05e9\u05d9 \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05de\u05d9\u05d3. \u05e2\u05dd \u05d6\u05d0\u05ea, \u05db\u05e4\u05d9 \u05e9\u05e6\u05d5\u05d9\u05df \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 \u05e9\u05dc \u05de\u05e1\u05d3 \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05dc\u05de\u05e7\u05e8\u05d4 \u05e9\u05dc \u05ea\u05e7\u05dc\u05d4 \u05d5\u05de\u05e1\u05d3 \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d6\u05d4 \u05e0\u05e9\u05de\u05e8 \u05dc\u05de\u05e9\u05da 30 \u05d9\u05d5\u05dd - \u05dc\u05d0\u05d7\u05e8 \u05de\u05db\u05df \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05dc\u05d2\u05de\u05e8\u05d9. \u05de\u05d7\u05d9\u05e7\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d1\u05d0\u05d5\u05e4\u05df \u05e0\u05e7\u05d5\u05d3\u05ea\u05d9 \u05de\u05db\u05dc \u05d0\u05d7\u05d3 \u05d5\u05d0\u05d7\u05d3 \u05de\u05d4\u05d2\u05d9\u05d1\u05d5\u05d9\u05d9\u05dd \u05d4\u05d9\u05d0 \u05d1\u05d2\u05d3\u05e8 \u05d4\u05d6\u05d9\u05d4. \u05d3\u05e8\u05da \u05d0\u05d2\u05d1, \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d0\u05dc\u05d5 \u05de\u05d5\u05e6\u05e4\u05e0\u05d9\u05dd \u05d1\u05e9\u05e8\u05ea \u05de\u05d0\u05d5\u05d1\u05d8\u05d7 \u05de\u05d0\u05d5\u05d3 \u05e9\u05de\u05ea\u05d0\u05d7\u05e1\u05df \u05d1\u05e9\u05e8\u05ea\u05d9\u05dd \u05e9\u05dc Amazon \u05d5\u05dc\u05d0\u05e3 \u05d0\u05d7\u05d3 \u05d0\u05d9\u05df \u05d0\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05d4\u05e4\u05e6\u05e0\u05d4 \u05d7\u05d5\u05e5 \u05de\u05d0\u05ea\u05e0\u05d5. \u05dc\u05db\u05df, \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc\u05da \u05d9\u05d9\u05de\u05d7\u05e7\u05d5 \u05dc\u05d2\u05de\u05e8\u05d9 \u05ea\u05d5\u05da 30 \u05d9\u05d5\u05dd \u05de\u05db\u05dc \u05d4\u05d2\u05d9\u05d1\u05d5\u05d9\u05d9\u05dd \u05d5\u05d0\u05e3 \u05d0\u05d7\u05d3 \u05dc\u05d0 \u05d9\u05d5\u05db\u05dc \u05dc\u05d3\u05e2\u05ea \u05e9\u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d4\u05d0\u05dc\u05d5 \u05d0\u05d9 \u05e4\u05e2\u05dd \u05d4\u05d9\u05d5 \u05e7\u05d9\u05d9\u05de\u05d9\u05dd \u05de\u05dc\u05db\u05ea\u05d7\u05d9\u05dc\u05d4.","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\u05d9\u05e9\u05dc\u05d7\u05e0\u05d4 \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\u05e6\u05d5\u05d0 \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. \u05dc\u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05d9\u05e9 \u05e2\u05e8\u05da \u05e8\u05e7 \u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05e9\u05e8\u05ea \u05de\u05e9\u05dc\u05da.","export_sql_link_instructions":"\u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1\u05da: \u05e0\u05d9\u05ea\u05df \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d0\u05ea \u05d4\u05d4\u05e0\u05d7\u05d9\u05d5\u05ea<\/a> \u05db\u05d3\u05d9 \u05dc\u05dc\u05de\u05d5\u05d3 \u05d9\u05d5\u05ea\u05e8 \u05e2\u05dc \u05d9\u05d1\u05d5\u05d0 \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d4\u05d6\u05d4 \u05dc\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\u05e6\u05d5\u05d0 \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":"\u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1\u05da: \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 (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":"\u05dc\u05e2\u05ea \u05e2\u05ea\u05d4, \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\u05e7\u05dc\u05d8.","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 (macOS) \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_author":"\u05de\u05d0\u05ea :name \u05d1\u05be:date","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":"\u05e4\u05e8\u05d8\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05d9","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> - \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>) - \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> - \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> - \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 \u05d9\u05e9\u05e8\u05d0\u05dc","name_order_lastname_firstname_nickname":"<\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> <\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> (<\u05db\u05d9\u05e0\u05d5\u05d9>) - \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 \u05d9\u05e9\u05e8\u05d0\u05dc (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7)","name_order_lastname_nickname_firstname":"<\u05e9\u05dd \u05de\u05e9\u05e4\u05d7\u05d4> (<\u05db\u05d9\u05e0\u05d5\u05d9>) <\u05e9\u05dd \u05e4\u05e8\u05d8\u05d9> - \u05d9\u05e9\u05e8\u05d0\u05dc\u05d9 (\u05e9\u05e8\u05d5\u05dc\u05d9\u05e7) \u05d9\u05e9\u05e8\u05d0\u05dc","name_order_nickname":"<\u05db\u05d9\u05e0\u05d5\u05d9> - \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>) - \u05e1\u05d7\u05d1\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":"\u05d4\u05d7\u05dc\u05e4\u05ea \u05e1\u05e1\u05de\u05d4","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":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05e1\u05e1\u05de\u05d4 \u05d7\u05d3\u05e9\u05d4","password_new2":"\u05d0\u05d9\u05de\u05d5\u05ea","password_new2_placeholder":"\u05e0\u05d0 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d3 \u05d0\u05ea \u05d4\u05e1\u05e1\u05de\u05d4 \u05d4\u05d7\u05d3\u05e9\u05d4 \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 \u05e9\u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \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, \u05d0\u05da \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05ea\u05d0\u05d9\u05dd \u05d0\u05d5\u05ea\u05df \u05d1\u05db\u05dc \u05e2\u05ea \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. \u05e2\u05dd \u05d6\u05d0\u05ea, \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":"\u05dc\u05d4\u05dc\u05df \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. \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 \u05d4\u05e1\u05d5\u05d2 \u05d4\u05d7\u05d3\u05e9 \u05d4\u05d6\u05d4 \u05db\u05d0\u05d7\u05ea \u05de\u05d3\u05e8\u05db\u05d9 \u05d4\u05ea\u05e7\u05e9\u05d5\u05e8\u05ea \u05dc\u05d9\u05e6\u05d9\u05e8\u05ea \u05e7\u05e9\u05e8 \u05e2\u05dd \u05d0\u05e0\u05e9\u05d9 \u05d4\u05e7\u05e9\u05e8 \u05e9\u05dc\u05da \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d3\u05e8\u05da \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 {name}?","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?","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 \u05ea\u05e7\u05e0\u05d9 \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\u05d4 \u05d1\u05e8\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05e9\u05dc \u05e7\u05d8\u05d2\u05d5\u05e8\u05d9\u05d5\u05ea \u05d5\u05e1\u05d5\u05d2\u05d9\u05dd \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":"\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":"\u05ea\u05d7\u05d1\u05d9\u05d1 \u05d7\u05d3\u05e9","personalization_life_event_type_new_instrument":"\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":"\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":"\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","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":"\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\u05e8\u05db\u05d1\u05ea \u05de\u05e9\u05e7\u05e4\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e2\u05d3\u05e9\u05d5\u05ea","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":"\u05d7\u05dc\u05e7 \u05de\u05d4\u05d0\u05e0\u05e9\u05d9\u05dd \u05dc\u05d0 \u05d6\u05e7\u05d5\u05e7\u05d9\u05dd \u05dc\u05db\u05dc \u05d4\u05ea\u05db\u05d5\u05e0\u05d5\u05ea. \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 \u05d1\u05d4\u05df \u05e0\u05e2\u05e9\u05d4 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d2\u05d9\u05dc\u05d9\u05d5\u05df \u05d0\u05e0\u05e9\u05d9 \u05d4\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. \u05e0\u05d0 \u05dc\u05e9\u05d9\u05dd \u05dc\u05d1 \u05e9\u05db\u05d9\u05d1\u05d5\u05d9 \u05e9\u05dc \u05ea\u05db\u05d5\u05e0\u05d4 \u05d0\u05d7\u05ea \u05d0\u05d5 \u05d9\u05d5\u05ea\u05e8 \u05dc\u05d0 \u05d9\u05d2\u05e8\u05d5\u05dd \u05dc\u05d0\u05d1\u05d3\u05df \u05de\u05d9\u05d3\u05e2, \u05d4\u05ea\u05db\u05d5\u05e0\u05d4 \u05e4\u05e9\u05d5\u05d8 \u05ea\u05d5\u05e1\u05ea\u05e8.","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 \u05de\u05d5\u05d2\u05d3\u05e8\u05ea, \u05e0\u05d5\u05db\u05dc \u05dc\u05e9\u05dc\u05d5\u05d7 \u05d0\u05dc\u05d9\u05da \u05d4\u05d5\u05d3\u05e2\u05ea \u05d3\u05d5\u05d0\u05f4\u05dc \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\u05d7\u05dc\u05d9\u05e3 \u05d0\u05ea \u05de\u05e6\u05d1 \u05d4\u05d4\u05d5\u05d3\u05e2\u05d5\u05ea \u05d4\u05d0\u05dc\u05d4 \u05db\u05d0\u05df. \u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05da: \u05d4\u05d4\u05ea\u05e8\u05e2\u05d5\u05ea \u05d4\u05d0\u05dc\u05d5 \u05d7\u05dc\u05d5\u05ea \u05e8\u05e7 \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 \u05d9\u05d5\u05ea\u05e8 \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 \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":"\u05dc\u05ea\u05e9\u05d5\u05de\u05ea \u05dc\u05d1\u05da: \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 \u05d0\u05de\u05d5\u05e8\u05d5\u05ea \u05dc\u05d4\u05d9\u05e9\u05dc\u05d7 \u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05d5\u05ea","reminder_time_to_send_help":"\u05dc\u05d9\u05d3\u05d9\u05e2\u05ea\u05da, \u05d4\u05ea\u05d6\u05db\u05d5\u05e8\u05ea \u05d4\u05d1\u05d0\u05d4 \u05e9\u05dc\u05da \u05ea\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? \u05d0\u05d9\u05df \u05d3\u05e8\u05da \u05d7\u05d6\u05e8\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: :accountLimit \u05de\u05f4\u05d1 \/ \u05d4\u05e0\u05d9\u05e6\u05d5\u05dc\u05ea \u05d4\u05e0\u05d5\u05db\u05d7\u05d9\u05ea \u05e9\u05dc\u05da: :currentAccountSize \u05de\u05f4\u05d1 (: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","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> \u05e9\u05e0\u05e9\u05dc\u05d7\u05d4 \u05dc\u05de\u05d9\u05e9\u05d4\u05d5.|\u05d9\u05e9 \u05dc\u05da \u05db\u05e8\u05d2\u05e2 :count \u05d4\u05d6\u05de\u05e0\u05d5\u05ea \u05d1\u05d4\u05de\u05ea\u05e0\u05d4<\/a> \u05e9\u05e0\u05e9\u05dc\u05d7\u05d5 \u05dc\u05d0\u05e0\u05e9\u05d9\u05dd.","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 \u05d0\u05d5 \u05de\u05e9\u05d4\u05d5 \u05d1\u05e1\u05d2\u05e0\u05d5\u05df. \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 \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 \u05dc\u05d7\u05dc\u05d5\u05d8\u05d9\u05df \u05d1\u05de\u05e2\u05d5\u05e8\u05d1\u05d5\u05ea \u05d4\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 \u05d1\u05e0\u05d9\u05d9\u05ea \u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05d8\u05d5\u05d1\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8, \u05e9\u05e8\u05ea\u05d9\u05dd \u05d7\u05d6\u05e7\u05d9\u05dd \u05d9\u05d5\u05ea\u05e8, \u05ea\u05e9\u05dc\u05d5\u05dd \u05d7\u05e9\u05d1\u05d5\u05e0\u05d5\u05ea \u05e9\u05d5\u05e0\u05d9\u05dd. \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 - \u05d1\u05de\u05dc\u05d5\u05d0 \u05de\u05d5\u05d1\u05df \u05d4\u05de\u05d9\u05dc\u05d4.","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. \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 \u05d4\u05d6\u05d4 \u05ea\u05d4\u05d9\u05d9\u05e0\u05d4 \u05d0\u05ea \u05d0\u05d5\u05ea\u05d4 \u05e8\u05de\u05ea \u05d4\u05d4\u05e8\u05e9\u05d0\u05d5\u05ea \u05db\u05de\u05d5\u05da \u05d5\u05ea\u05d4\u05d9\u05d4 \u05dc\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d4\u05d6\u05de\u05d9\u05df \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05d5\u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05d5\u05ea\u05dd (\u05db\u05d5\u05dc\u05dc \u05d0\u05d5\u05ea\u05da), \u05dc\u05db\u05df, \u05db\u05d3\u05d0\u05d9 \u05dc\u05d5\u05d5\u05d3\u05d0 \u05e9\u05d9\u05e9 \u05dc\u05da \u05d0\u05de\u05d5\u05df \u05d1\u05d0\u05d3\u05dd \u05d6\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 \u05d3\u05e8\u05da \u05d3\u05d5\u05d0\u05f4\u05dc \u05dc\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05da","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\u05ea\u05e7\u05d1\u05dc.","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":"\u05e2\u05dc \u05d4 :attribute \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05d8\u05df \u05d9\u05d5\u05ea\u05e8 \u05de- :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."}} diff --git a/public/js/langs/hr.json b/public/js/langs/hr.json index 1802d834084..0880cce3c34 100644 --- a/public/js/langs/hr.json +++ b/public/js/langs/hr.json @@ -1 +1 @@ -{"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","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":"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. 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":"1 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":"\u0160to je novo","footer_new_version":"Nova verzija je dostupna","footer_newsletter":"Newsletter","footer_privacy":"Pravila privatnosti","footer_release":"Release notes","footer_remarks":"Primjedbe?","footer_send_email":"Po\u0161aljite mi e-mail","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":"U\u010ditavanje...","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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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","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":"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 have been updated with success","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} +{"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","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":"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. 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":"1 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":"\u0160to je novo","footer_new_version":"Nova verzija je dostupna","footer_newsletter":"Newsletter","footer_privacy":"Pravila privatnosti","footer_release":"Release notes","footer_remarks":"Primjedbe?","footer_send_email":"Po\u0161aljite mi e-mail","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":"U\u010ditavanje...","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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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","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":"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 have been updated with success","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/it.json b/public/js/langs/it.json index c5818b47ce5..f9b9887555f 100644 --- a/public/js/langs/it.json +++ b/public/js/langs/it.json @@ -1 +1 @@ -{"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":"Avere migliori relazioni con i vostri cari. CRM Online gratuito per gli amici e la 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","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":"1 file selezionato...|{count} files selezionati...","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","footer_newsletter":"Newsletter","footer_privacy":"Privacy","footer_release":"Note di rilascio","footer_remarks":"Commenti?","footer_send_email":"Inviami una 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 in corso...","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":"An error occured trying to register the user","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":"Con Monica puoi organizzare tutte le interazioni 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 aggiunto nessuna etichetta.","tab_debts":"Debiti","tab_debts_blank":"Non hai inserito ancora nessun debito.","tab_favorite_notes":"Note preferite","tab_recent_calls":"Chiamate recenti","tab_tasks":"Promemoria","tab_tasks_blank":"Non hai registrato ancora nessuna 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_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_created_with_name_with_link":"Aggiunto :name<\/a> come contatto.","settings_log_contact_description_cleared_with_name":"Rimosso la descrizione di :name.","settings_log_contact_description_cleared_with_name_with_link":"Rimosso la descrizione di :name<\/a>.","settings_log_contact_description_updated_with_name":"Aggiornata la descrizione di :name.","settings_log_contact_description_updated_with_name_with_link":"Aggiornata la descrizione di :name<\/a>.","settings_log_contact_work_updated_with_name":"Aggiornato informazioni di lavoro di :name.","settings_log_contact_work_updated_with_name_with_link":"Aggiornato informazioni di lavoro di :name<\/a>."},"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":"giocato uno sport insieme","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":"Storico","auditlogs_link":"Storico","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":"Crop new avatar photo","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_gift":"Aggiungi regalo","gifts_add_gift_already_offered":"Regalo gi\u00e0 consegnato","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 offerto","gifts_offered":"Regali offerti","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":"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":"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":":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":"Next photo","photo_previous":"Previous photo","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":"Le informazioni professionali sono state aggiornate.","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. Il tuo account non sar\u00e0 pi\u00f9 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":"Abilitare l'autenticazione a due fattori incrementa la sicurezza del tuo account.","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 di autenticazione a due fattori e leggi il seguente codice QR:","2fa_enable_otp_help":"Se la tua app non supporta i codici QR, inserisci il seguente codice:","2fa_enable_otp_validate":"Per favore, verifica il dispositivo che hai impostato:","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":"Non c'\u00e8 ancora nessun 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 del tuo account.","archive_title":"Archivia tutti i tuoi contatti nel tuo account","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":"Use your login (email) and create an API token as the password to authenticate.","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":"Vuoi eliminare il tuo account? Attenzione: la cancellazione \u00e8 permanente e tutti i dati verranno cancellati definitivamente. La tua iscrizione (se ne hai una) sar\u00e0 inoltre immediatamente annullata.","delete_notice":"Sei sicuro\/a di voler rimuovere il tuo account? Non si torna indietro!","delete_other_desc":"Solo per essere chiaro: i tuoi dati nel database principale saranno cancellati immediatamente. Tuttavia, come descritto nella nostro privacy policy, noi facciamo un backup giornaliero del database in caso di guasto e questo backup viene conservato per 30 giorni - dopodich\u00e9' verr\u00e0 completamente eliminato. Non \u00e8 realistico immaginare di dover andare int tutti i backup per cancellare i tuoi dati in modo specifico. A proposito, questi dati sono criptati su server Amazon molto sicuri e nessuno ha la chiave di crittografia tranne noi. Pertanto, i tuoi dati scompariranno completamente tra 30 giorni da tutti i backup, e nessuno sapr\u00e0 che questi dati esistevano in primo luogo.","delete_title":"Rimuovi il tuo account","email":"Email","email_help":"Questa \u00e8 l'email che userai per accedere, e dove verranno inviati i promemoria.","email_placeholder":"Insersci un'email","export_be_patient":"Clicca il pulsante per iniziare l'esportazione. Potrebbe volerci qualche minuto \u2013 ti chiediamo di portare pazienza e non premere il pulsante a ripetizione.","export_sql_cta":"Esporta a SQL","export_sql_explanation":"Esportare i dati in formato SQL ti permette di importarli nella tua istanza di Monica. Ci\u00f2 ha senso solo se hai un tuo proprio server.","export_sql_link_instructions":"Nota: leggi le istruzioni<\/a> per capire come importare questo file nella tua istanza di Monica.","export_title":"Esporta i dati del tuo account","export_title_sql":"Esporta a 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 i nuovi contatti, salta gli esistenti","import_upload_behaviour_help":"Nota: Vengono sovrascritti solo i dati presenti nella vCard, tutti gli altri vengono mantenuti.","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":"Assicurati di caricare dati corretti, non si pu\u00f2 tornare indietro.","import_upload_rule_format":"Supportiamo file .vcard<\/code> e .vcf<\/code>.","import_upload_rule_instructions":"Istruzioni per esportare da Contacts.app (macOS)<\/a> e Google Contacts<\/a>.","import_upload_rule_limit":"I file hanno un limite di 10MB.","import_upload_rule_multiple":"Per il momento, se i tuoi contatti hanno pi\u00f9 di un numero di telefono o pi\u00f9 di una email, solo il primo di ogni tipo verr\u00e0 importato.","import_upload_rule_time":"Potrebbe volerci fino a un minuto per caricare i contatti e processarli. Porta pazienza.","import_upload_rule_vcard":"Supportiamo il formato vCard 3.0, che \u00e8 il formato predefinito per Contacts.app (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_tr":"Turco","locale_zh":"Cinese semplificato","locale_zh-TW":"Chinese Traditional","logs_author":"Da :name il :date","logs_title":"Tutto ci\u00f2 che \u00e8 successo a questo account","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":"Mio contatto","name":"Il tuo nome: :name","name_order":"Ordine del nome","name_order_firstname_lastname":" - Giovanni Bianchi","name_order_firstname_lastname_nickname":" () - Giovanni Bianchi (Rambo)","name_order_firstname_nickname_lastname":" () - Giovanni (Rambo) Bianchi","name_order_lastname_firstname":" - Bianchi Giovanni","name_order_lastname_firstname_nickname":" () - Bianchi Giovanni (Rambo)","name_order_lastname_nickname_firstname":" () - Bianchi (Rambo) Giovanni","name_order_nickname":" - Rambo","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Modifica password","password_change":"Modifica password","password_current":"Password attuale","password_current_placeholder":"Inserisci la tua password corrente","password_new1":"Nuova password","password_new1_placeholder":"Inserisci la nuova password","password_new2":"Conferma","password_new2_placeholder":"Reinserisci la 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":"Ogni attivit\u00e0 fatta con i tuoi contatti ha un tipo e una categoria. Il tuo account viene fornito di un insieme predefinito di categorie, ma puoi personalizzarlo 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? Cancellandola, elimini tutti i tipi di attivit\u00e0 associati. Tuttavia, le attivit\u00e0 che appartengono a questa categoria non saranno eliminate.","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 vuoi chiamare questa 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 vuoi chiamare questa categoria?","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":"Forma di contatto rimossa.","personalization_contact_field_type_description":"Qui puoi configurare tutte le varie forme di contatto che puoi associare ai tuoi contatti. Se in futuro apparir\u00e1 un nouvo social network, potrai agigungere direttamente qui questa nuova forma di contatto.","personalization_contact_field_type_edit_success":"Forma di contatto aggiornata.","personalization_contact_field_type_modal_delete_description":"Rimuovere forma di contatto? Questa azione rimuover\u00e1 la forma di contatto da TUTTE le persone nel tuo account di Monica.","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 {name}?","personalization_genders_modal_delete_question":"Attualmente hai {count} contatto con questo sesso. Se lo elimini, quale sesso vuoi impostargli?|Attualmente hai {count} contatti con questo sesso. Se lo elimini, quale sesso vuoi impostare per loro?","personalization_genders_modal_delete_question_default":"Questo \u00e8 il genere predefinito. Se elimini questo genere, quale sar\u00e0 il prossimo default?","personalization_genders_modal_edit":"Aggiorna sesso","personalization_genders_modal_error":"Seleziona il sesso dalla lista.","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_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_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_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":"Dentista","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_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":"Nuovo hobby","personalization_life_event_type_new_instrument":"Nuovo strumento musicale","personalization_life_event_type_new_job":"Nuovo lavoro","personalization_life_event_type_new_language":"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":"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":"Levato l'apparecchio","personalization_life_event_type_retirement":"Pensionamento","personalization_life_event_type_study_abroad":"Studio all'estero","personalization_life_event_type_surgery":"Intervento chirurgico","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":"Occhiali o lenti a contatti","personalization_life_event_type_weight_loss":"Perdita di peso","personalization_module_desc":"Alcune persone non hanno bisogno di tutte le funzioni. Qui sotto puoi decidere quali funzioni attivare per le pagine dei contatti. Questi cambiamenti riguardano TUTTI i contatti. Nota: se disattivi una funzione non elimineremo nessun dato - verranno semplicemente nascosti.","personalization_module_save":"Cambiamenti salvati","personalization_module_title":"Funzionalit\u00e0","personalization_reminder_rule_desc":"Per ogni promemoria impostato, possiamo mandarti una mail qualche giorno prima dell'evento. Puoi attivare queste notifiche qui. Nota: queste notifiche valgono solo per i promemoria mensili o 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 personalizzare il tuo account. Queste funzionalit\u00e0 sono pensate per utenti esperti che vogliono massimizzare il loro controllo su Monica.","recovery_already_used_help":"Questo codice \u00e8 gi\u00e0 stato utilizzato","recovery_clipboard":"Codici copiati nella clipboard","recovery_copy_help":"Copia i codici nella clipboard","recovery_generate":"Genera nuovi codici...","recovery_generate_help":"Attenzione: generando nuovi codici vengono invalidati quelli generati precedentemente","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":"Ora del giorno in cui inviare i promemoria","reminder_time_to_send_help":"Per informazione, il tuo prossimo promemoria verr\u00e0 inviato il {dateTime}<\/span>.","reset_cta":"Reimposta il tuo account","reset_desc":"Sei sicuro\/a di voler reimpostare il tuo account? Verranno rimossi tutti i tuoi contatti, e i dati associati. Il tuo account non verr\u00e0 rimosso.","reset_notice":"Sei sicuro\/a di voler reimpostare il tuo account? Non si torna indietro!","reset_success":"Account reimpostato","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 etichette","sidebar_settings_users":"Utenti","storage_account_info":"Limite del tuo account: :accountLimit Mb \/ Utilizzo corrente: :currentAccountSize Mb (: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":"Sosterrai il progetto nel lungo termine, permettendoci di introdurre 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 puoi avere inviti in attesa","subscriptions_downgrade_rule_invitations_constraint":"Al momento hai 1 invito<\/a> in attesa di risposta.|Al momento hai :count inviti<\/a> in attesa di risposta.","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 infinite per aver provato il piano a pagamento. Continuiamo ad aggiungere nuove funzionalit\u00e0 a Monica \u2013 quindi torna a trovarci in futuro per vedere se pu\u00f2 interessarti tornare al piano a pagamento.","subscriptions_downgrade_title":"Retrocedi il tuo piano a quello gratuito","subscriptions_help_change_desc":"Puoi cancellarti in qualsiasi momento, non ti chiediamo niente, e puoi farlo autonomamente \u2013 senza bisogno di contattare il supporto. Tuttavia, non verrai rimborsato per quanto gi\u00e0 pagato.","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 di contatti che si possono avere nel piano gratuito?","subscriptions_help_opensource_desc":"Monica \u00e8 un progetto open source. Questo significa che \u00e8 costruito da una comunit\u00e0 completamente benevola che vuole solo fornire un grande strumento per il bene maggiore. Essere open source significa che il codice \u00e8 disponibile pubblicamente su GitHub, e tutti possono ispezionarlo, modificarlo o migliorarlo. Tutti i soldi che raccogliamo sono dedicati per costruire funzioni migliori, avere server pi\u00f9 potenti, aiutare a pagare le bollette. Grazie per il tuo aiuto. Non possiamo farlo senza di te \u2013 letteralmente.","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":"Ora addebiteremo :price sulla tua carta. Il prossimo addebito sar\u00e0 il :date. Se cambi idea, puoi annullare in qualsiasi momento, senza dare 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":"Le etichette funzionano come delle cartelle, ma puoi aggiungere pi\u00f9 di un'etichetta a ogni contatto. Entra nella pagina di un contatto ed etichettalo come amico, giusto sotto al nome. Quando un contatto \u00e8 stato etichettato, puoi tornare qui per gestire tutte le tue etichette.","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 questo utente nel mio account. Sono consapevole che questa persona avr\u00e0 accesso a TUTTI i miei dati e vedr\u00e0 tutto quello che io posso vedere.","users_add_cta":"Invita utente tramite email","users_add_description":"Questa persona avr\u00e0 i tuoi stessi permessi, inclusa la capacit\u00e0 di invitare altri utenti e rimuoverli (te incluso\/a). \u00c8 importante che ti fidi di questa persona.","users_add_email_field":"Inserisci l'email della persona che vuoi invitare","users_add_title":"Invita qualcuno nel tuo account tramite 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."}} +{"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":"Avere migliori relazioni con i vostri cari. CRM Online gratuito per gli amici e la 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","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":"1 file selezionato...|{count} files selezionati...","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","footer_newsletter":"Newsletter","footer_privacy":"Privacy","footer_release":"Note di rilascio","footer_remarks":"Commenti?","footer_send_email":"Inviami una 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 in corso...","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":"Con Monica puoi organizzare tutte le interazioni 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 aggiunto nessuna etichetta.","tab_debts":"Debiti","tab_debts_blank":"Non hai inserito ancora nessun debito.","tab_favorite_notes":"Note preferite","tab_recent_calls":"Chiamate recenti","tab_tasks":"Promemoria","tab_tasks_blank":"Non hai registrato ancora nessuna 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_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_created_with_name_with_link":"Aggiunto :name<\/a> come contatto.","settings_log_contact_description_cleared_with_name":"Rimosso la descrizione di :name.","settings_log_contact_description_cleared_with_name_with_link":"Rimosso la descrizione di :name<\/a>.","settings_log_contact_description_updated_with_name":"Aggiornata la descrizione di :name.","settings_log_contact_description_updated_with_name_with_link":"Aggiornata la descrizione di :name<\/a>.","settings_log_contact_work_updated_with_name":"Aggiornato informazioni di lavoro di :name.","settings_log_contact_work_updated_with_name_with_link":"Aggiornato informazioni di lavoro di :name<\/a>."},"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":"giocavano insieme ad 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_gift":"Aggiungi regalo","gifts_add_gift_already_offered":"Regalo gi\u00e0 consegnato","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 offerto","gifts_offered":"Regali offerti","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":"Foto successiva","photo_previous":"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":"Le informazioni professionali sono state aggiornate.","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. Il tuo account non sar\u00e0 pi\u00f9 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":"Abilitare l'autenticazione a due fattori incrementa la sicurezza del tuo account.","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 di autenticazione a due fattori e leggi il seguente codice QR:","2fa_enable_otp_help":"Se la tua app non supporta i codici QR, inserisci il seguente codice:","2fa_enable_otp_validate":"Per favore, verifica il dispositivo che hai impostato:","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":"Non c'\u00e8 ancora nessun 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 del tuo account.","archive_title":"Archivia tutti i tuoi contatti nel tuo account","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":"Vuoi eliminare il tuo account? Attenzione: la cancellazione \u00e8 permanente e tutti i dati verranno cancellati definitivamente. La tua iscrizione (se ne hai una) sar\u00e0 inoltre immediatamente annullata.","delete_notice":"Sei sicuro\/a di voler rimuovere il tuo account? Non si torna indietro!","delete_other_desc":"Solo per essere chiaro: i tuoi dati nel database principale saranno cancellati immediatamente. Tuttavia, come descritto nella nostro privacy policy, noi facciamo un backup giornaliero del database in caso di guasto e questo backup viene conservato per 30 giorni - dopodich\u00e9' verr\u00e0 completamente eliminato. Non \u00e8 realistico immaginare di dover andare int tutti i backup per cancellare i tuoi dati in modo specifico. A proposito, questi dati sono criptati su server Amazon molto sicuri e nessuno ha la chiave di crittografia tranne noi. Pertanto, i tuoi dati scompariranno completamente tra 30 giorni da tutti i backup, e nessuno sapr\u00e0 che questi dati esistevano in primo luogo.","delete_title":"Rimuovi il tuo account","email":"Email","email_help":"Questa \u00e8 l'email che userai per accedere, e dove verranno inviati i promemoria.","email_placeholder":"Insersci un'email","export_be_patient":"Clicca il pulsante per iniziare l'esportazione. Potrebbe volerci qualche minuto \u2013 ti chiediamo di portare pazienza e non premere il pulsante a ripetizione.","export_sql_cta":"Esporta a SQL","export_sql_explanation":"Esportare i dati in formato SQL ti permette di importarli nella tua istanza di Monica. Ci\u00f2 ha senso solo se hai un tuo proprio server.","export_sql_link_instructions":"Nota: leggi le istruzioni<\/a> per capire come importare questo file nella tua istanza di Monica.","export_title":"Esporta i dati del tuo account","export_title_sql":"Esporta a 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 i nuovi contatti, salta gli esistenti","import_upload_behaviour_help":"Nota: Vengono sovrascritti solo i dati presenti nella vCard, tutti gli altri vengono mantenuti.","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":"Assicurati di caricare dati corretti, non si pu\u00f2 tornare indietro.","import_upload_rule_format":"Supportiamo file .vcard<\/code> e .vcf<\/code>.","import_upload_rule_instructions":"Istruzioni per esportare da Contacts.app (macOS)<\/a> e Google Contacts<\/a>.","import_upload_rule_limit":"I file hanno un limite di 10MB.","import_upload_rule_multiple":"Per il momento, se i tuoi contatti hanno pi\u00f9 di un numero di telefono o pi\u00f9 di una email, solo il primo di ogni tipo verr\u00e0 importato.","import_upload_rule_time":"Potrebbe volerci fino a un minuto per caricare i contatti e processarli. Porta pazienza.","import_upload_rule_vcard":"Supportiamo il formato vCard 3.0, che \u00e8 il formato predefinito per Contacts.app (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_author":"Da :name il :date","logs_title":"Tutto ci\u00f2 che \u00e8 successo a questo account","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":"Mio contatto","name":"Il tuo nome: :name","name_order":"Ordine del nome","name_order_firstname_lastname":" - Giovanni Bianchi","name_order_firstname_lastname_nickname":" () - Giovanni Bianchi (Rambo)","name_order_firstname_nickname_lastname":" () - Giovanni (Rambo) Bianchi","name_order_lastname_firstname":" - Bianchi Giovanni","name_order_lastname_firstname_nickname":" () - Bianchi Giovanni (Rambo)","name_order_lastname_nickname_firstname":" () - Bianchi (Rambo) Giovanni","name_order_nickname":" - Rambo","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Modifica password","password_change":"Modifica password","password_current":"Password attuale","password_current_placeholder":"Inserisci la tua password corrente","password_new1":"Nuova password","password_new1_placeholder":"Inserisci la nuova password","password_new2":"Conferma","password_new2_placeholder":"Reinserisci la 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":"Ogni attivit\u00e0 fatta con i tuoi contatti ha un tipo e una categoria. Il tuo account viene fornito di un insieme predefinito di categorie, ma puoi personalizzarlo 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? Cancellandola, elimini tutti i tipi di attivit\u00e0 associati. Tuttavia, le attivit\u00e0 che appartengono a questa categoria non saranno eliminate.","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 vuoi chiamare questa 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 vuoi chiamare questa categoria?","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":"Forma di contatto rimossa.","personalization_contact_field_type_description":"Qui puoi configurare tutte le varie forme di contatto che puoi associare ai tuoi contatti. Se in futuro apparir\u00e1 un nouvo social network, potrai agigungere direttamente qui questa nuova forma di contatto.","personalization_contact_field_type_edit_success":"Forma di contatto aggiornata.","personalization_contact_field_type_modal_delete_description":"Rimuovere forma di contatto? Questa azione rimuover\u00e1 la forma di contatto da TUTTE le persone nel tuo account di Monica.","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 {name}?","personalization_genders_modal_delete_question":"Attualmente hai {count} contatto con questo sesso. Se lo elimini, quale sesso vuoi impostargli?|Attualmente hai {count} contatti con questo sesso. Se lo elimini, quale sesso vuoi impostare per loro?","personalization_genders_modal_delete_question_default":"Questo \u00e8 il genere predefinito. Se elimini questo genere, quale sar\u00e0 il prossimo default?","personalization_genders_modal_edit":"Aggiorna sesso","personalization_genders_modal_error":"Seleziona il sesso dalla lista.","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 della vita pu\u00f2 avere un tipo ed una categoria. Il tuo profilo \u00e8 fornito di default di una serie di categorie e tipi predefiniti, ma puoi personalizzare qui i tuoi tipi di eventi della vita.","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":"Dentista","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 chiamare questo nuovo tipo di evento della vita?","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":"Nuovo hobby","personalization_life_event_type_new_instrument":"Nuovo strumento musicale","personalization_life_event_type_new_job":"Nuovo lavoro","personalization_life_event_type_new_language":"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":"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":"Levato l'apparecchio","personalization_life_event_type_retirement":"Pensionamento","personalization_life_event_type_study_abroad":"Studio all'estero","personalization_life_event_type_surgery":"Intervento chirurgico","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":"Occhiali o lenti a contatti","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":"Alcune persone non hanno bisogno di tutte le funzioni. Qui sotto puoi decidere quali funzioni attivare per le pagine dei contatti. Questi cambiamenti riguardano TUTTI i contatti. Nota: se disattivi una funzione non elimineremo nessun dato - verranno semplicemente nascosti.","personalization_module_save":"Cambiamenti salvati","personalization_module_title":"Funzionalit\u00e0","personalization_reminder_rule_desc":"Per ogni promemoria impostato, possiamo mandarti una mail qualche giorno prima dell'evento. Puoi attivare queste notifiche qui. Nota: queste notifiche valgono solo per i promemoria mensili o 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 personalizzare il tuo account. Queste funzionalit\u00e0 sono pensate per utenti esperti che vogliono massimizzare il loro controllo su Monica.","recovery_already_used_help":"Questo codice \u00e8 gi\u00e0 stato utilizzato","recovery_clipboard":"Codici copiati nella clipboard","recovery_copy_help":"Copia i codici nella clipboard","recovery_generate":"Genera nuovi codici...","recovery_generate_help":"Attenzione: generando nuovi codici vengono invalidati quelli generati precedentemente","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":"Ora del giorno in cui inviare i promemoria","reminder_time_to_send_help":"Per informazione, il tuo prossimo promemoria verr\u00e0 inviato il {dateTime}<\/span>.","reset_cta":"Reimposta il tuo account","reset_desc":"Sei sicuro\/a di voler reimpostare il tuo account? Verranno rimossi tutti i tuoi contatti, e i dati associati. Il tuo account non verr\u00e0 rimosso.","reset_notice":"Sei sicuro\/a di voler reimpostare il tuo account? Non si torna indietro!","reset_success":"Account reimpostato","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 etichette","sidebar_settings_users":"Utenti","storage_account_info":"Limite del tuo account: :accountLimit Mb \/ Utilizzo corrente: :currentAccountSize Mb (: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":"Sosterrai il progetto nel lungo termine, permettendoci di introdurre 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 puoi avere inviti in attesa","subscriptions_downgrade_rule_invitations_constraint":"Al momento hai 1 invito<\/a> in attesa di risposta.|Al momento hai :count inviti<\/a> in attesa di risposta.","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 infinite per aver provato il piano a pagamento. Continuiamo ad aggiungere nuove funzionalit\u00e0 a Monica \u2013 quindi torna a trovarci in futuro per vedere se pu\u00f2 interessarti tornare al piano a pagamento.","subscriptions_downgrade_title":"Retrocedi il tuo piano a quello gratuito","subscriptions_help_change_desc":"Puoi cancellarti in qualsiasi momento, non ti chiediamo niente, e puoi farlo autonomamente \u2013 senza bisogno di contattare il supporto. Tuttavia, non verrai rimborsato per quanto gi\u00e0 pagato.","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 di contatti che si possono avere nel piano gratuito?","subscriptions_help_opensource_desc":"Monica \u00e8 un progetto open source. Questo significa che \u00e8 costruito da una comunit\u00e0 completamente benevola che vuole solo fornire un grande strumento per il bene maggiore. Essere open source significa che il codice \u00e8 disponibile pubblicamente su GitHub, e tutti possono ispezionarlo, modificarlo o migliorarlo. Tutti i soldi che raccogliamo sono dedicati per costruire funzioni migliori, avere server pi\u00f9 potenti, aiutare a pagare le bollette. Grazie per il tuo aiuto. Non possiamo farlo senza di te \u2013 letteralmente.","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":"Ora addebiteremo :price sulla tua carta. Il prossimo addebito sar\u00e0 il :date. Se cambi idea, puoi annullare in qualsiasi momento, senza dare 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":"Le etichette funzionano come delle cartelle, ma puoi aggiungere pi\u00f9 di un'etichetta a ogni contatto. Entra nella pagina di un contatto ed etichettalo come amico, giusto sotto al nome. Quando un contatto \u00e8 stato etichettato, puoi tornare qui per gestire tutte le tue etichette.","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 questo utente nel mio account. Sono consapevole che questa persona avr\u00e0 accesso a TUTTI i miei dati e vedr\u00e0 tutto quello che io posso vedere.","users_add_cta":"Invita utente tramite email","users_add_description":"Questa persona avr\u00e0 i tuoi stessi permessi, inclusa la capacit\u00e0 di invitare altri utenti e rimuoverli (te incluso\/a). \u00c8 importante che ti fidi di questa persona.","users_add_email_field":"Inserisci l'email della persona che vuoi invitare","users_add_title":"Invita qualcuno nel tuo account tramite 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."}} diff --git a/public/js/langs/ja.json b/public/js/langs/ja.json index a3503fd9b8f..c752f9e4960 100644 --- a/public/js/langs/ja.json +++ b/public/js/langs/ja.json @@ -1 +1 @@ -{"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","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":"\u306f\u3044","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":"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u4e2d\u3067\u3059\u3002\u304a\u623b\u308a\u304f\u3060\u3055\u3044\u3002","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":"1 file selected...|{count} files selected...","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":"\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059","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":"Any remarks?","footer_send_email":"\u958b\u767a\u8005\u306b\u30e1\u30fc\u30eb\u3092\u9001\u4fe1","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":"\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059.","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 ones 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 a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt 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 task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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 »","previous":"« \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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"1\u30da\u30fc\u30b8\u3042\u305f\u308a\u306e\u884c\u6570","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","photo_previous":"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":"\u8077\u696d\u306e\u66f4\u65b0\u304c\u6210\u529f\u3057\u307e\u3057\u305f\u3002","work_edit_title":"\u66f4\u65b0\u3059\u308b :name\u2019s \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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","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 you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Your name: :name","name_order":"\u59d3\u3068\u540d\u306e\u4e26\u3073","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":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4","password_change":"\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u5909\u66f4","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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|{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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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"}} +{"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","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":"\u306f\u3044","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":"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u4e2d\u3067\u3059\u3002\u304a\u623b\u308a\u304f\u3060\u3055\u3044\u3002","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":"1 file selected...|{count} files selected...","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":"\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059","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":"Any remarks?","footer_send_email":"\u958b\u767a\u8005\u306b\u30e1\u30fc\u30eb\u3092\u9001\u4fe1","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":"\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059.","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 ones 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 a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt 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 task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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 »","previous":"« \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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"1\u30da\u30fc\u30b8\u3042\u305f\u308a\u306e\u884c\u6570","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","photo_previous":"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":"\u8077\u696d\u306e\u66f4\u65b0\u304c\u6210\u529f\u3057\u307e\u3057\u305f\u3002","work_edit_title":"\u66f4\u65b0\u3059\u308b :name\u2019s \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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","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 you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Your name: :name","name_order":"\u59d3\u3068\u540d\u306e\u4e26\u3073","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":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4","password_change":"\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u5909\u66f4","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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|{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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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"}} diff --git a/public/js/langs/nl.json b/public/js/langs/nl.json index 2ab2d1fcd2a..4100b037cdc 100644 --- a/public/js/langs/nl.json +++ b/public/js/langs/nl.json @@ -1 +1 @@ -{"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":"Bouw betere relaties met uw dierbaren. Gratis Online CRM voor vrienden en familie.","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","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":"Weet je het zeker?","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":"Onderhoud in uitvoering. Zo terug.","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 unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"1 bestand geselecteerd...|{count} bestanden geselecteerd...","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 beschikbaar","footer_newsletter":"Nieuwsbrief","footer_privacy":"Privacybeleid","footer_release":"Releaseopmerkingen","footer_remarks":"Eventuele opmerkingen?","footer_send_email":"Stuur me 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...","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\u2019s protege","relationship_type_protege_with_name":":name\u2019s 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":"An error occured trying to register the user","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_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":"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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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":"Change your avatar","avatar_crop_new_avatar_photo":"Crop new avatar photo","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":"Main","contact_field_label_other":"Other","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_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":"Cadeaus 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":"On this date, :name, would have celebrated his birthday","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","photo_previous":"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 :naam","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":"Werkgegevens zijn met succes bijgewerkt","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":"Tweestapsverificatie uitschakelen voor je account. Wees voorzichtig, je account zal minder beveiligd zijn!","2fa_disable_error":"Foutmelding tijdens het uitschakelen van tweestapsverificatie","2fa_disable_success":"Tweestapsverificatie uitgeschakeld","2fa_disable_title":"Tweestapsverificatie uitschakelen","2fa_enable_description":"Schakel tweestapsverificatie in om de beveiliging van je account te verbeteren.","2fa_enable_error":"Foutmelding tijdens het activeren van tweestapsverificatie","2fa_enable_error_already_set":"Tweestapsverificatie is al geactiveerd","2fa_enable_otp":"Open je tweestapsverificatie app en scan de volgende QR code:","2fa_enable_otp_help":"Als je tweestapsverificatie app geen QR codes ondersteund, voer dan de volgende code in:","2fa_enable_otp_validate":"Controleer of je app goed is ingesteld:","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":"Er is nog geen geautoriseerde client.","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":"Archiveer al je contacten","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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":"Wilt u uw account verwijderen? Waarschuwing: verwijdering is permanent en al uw gegevens zullen permanent worden verwijderd. Je abonnement (als je een abonnement hebt) zal ook onmiddellijk worden geannuleerd.","delete_notice":"Weet je zeker dat je jouw account wil verwijderen? Laatste waarschuwing.","delete_other_desc":"Voor alle duidelijkheid: je gegevens in de hoofddatabase worden onmiddellijk verwijderd. Echter, zoals beschreven in ons privacybeleid, maken we dagelijks back-ups van de database voor het geval storingen zich voordoen. Deze back-ups worden dertig dagen bewaard \u2013 daarna zijn je gegevens volledig verwijderd. Het is helaas niet haalbaar om alle back-ups te bewerken om jouw specifieke gegevens te verwijderen. Deze gegevens worden overigens versleuteld op zeer veilige servers van Amazon en niemand heeft de encryptiesleutel behalve wij. Daarom zullen je gegevens over 30 dagen volledig uit alle back-ups verdwijnen, en niemand zal weten dat deze gegevens \u00fcberhaupt hebben bestaan.","delete_title":"Verwijder je account","email":"E-mailadres","email_help":"Dit is het e-mailadres dat je gebruikt om in te loggen. Hier worden ook je herinneringen naar verstuurd.","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":"Opmerking: lees de instructies<\/a> om meer te weten te komen over het importeren van dit bestand in je eigen installatie.","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":"Nieuwe contacten toevoegen, bestaande overslaan","import_upload_behaviour_help":"Opmerking: met overschrijven worden alle gegevens die worden gevonden in de vCard overschreven, bestaande velden blijven behouden.","import_upload_behaviour_replace":"Overschrijf bestaande contacten","import_upload_form_file":"Jouw .vcf<\/code> of .vCard<\/code> bestand:","import_upload_rule_cant_revert":"Zorg ervoor dat voordat je de upload start de gegevens die je wil importeren correct zijn. De upload kan niet ongedaan gemaakt worden.","import_upload_rule_format":"Wij ondersteunen .vcard<\/code> en .vcf<\/code> bestanden.","import_upload_rule_instructions":"Instructies voor het exporteren naar Contacts.app (macOS)<\/a> en Google Contacts<\/a>.","import_upload_rule_limit":"Bestanden mogen niet groter dan 10MB zijn.","import_upload_rule_multiple":"Momenteel worden bij meerdere e-mailadressen of telefoonnummers telkens alleen de eerste vermelding ge\u00efmporteerd.","import_upload_rule_time":"Het kan een minuut duren om de contacten te uploaden en te verwerken. Heb alsjeblieft even geduld.","import_upload_rule_vcard":"Wij ondersteunen het vCard 3.0 formaat, dat is het standaardformaat voor Contacts.app(macOS) en Google Contacten.","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":"Geen voornaam (verplicht)","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":"Japanese","locale_nl":"Nederlands","locale_pt":"Portugees","locale_pt-BR":"Portugees (Brazili\u00eb)","locale_ru":"Russisch","locale_tr":"Turks","locale_zh":"Chinees (vereenvoudigd)","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"Mijn contact","name":"Jouw naam: :name","name_order":"Naamvolgorde","name_order_firstname_lastname":" - Klaas Bakker","name_order_firstname_lastname_nickname":" () - Klaas Bakker (Broodje)","name_order_firstname_nickname_lastname":" () - Klaas (Broodje) Bakker","name_order_lastname_firstname":" - Bakker Klaas","name_order_lastname_firstname_nickname":" () - Bakker Klaas (Broodje)","name_order_lastname_nickname_firstname":" () - Bakker (Broodje) Klaas","name_order_nickname":" - Broodje","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Wachtwoord wijzigen","password_change":"Wachtwoord wijzigen","password_current":"Huidige wachtwoord","password_current_placeholder":"Voer je huidige wachtwoord in","password_new1":"Nieuw wachtwoord","password_new1_placeholder":"Voer een nieuw wachtwoord in","password_new2":"Nieuw wachtwoord bevestigen","password_new2_placeholder":"Herhaal je nieuwe wachtwoord","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":"Een activiteit die je doet met een van je contacten heeft een type en een categorie. Jouw account komt standaard met een reeks vooraf gedefinieerde categorie\u00ebn, maar je kan hier alles aanpassen.","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":"Weet je zeker dat je deze categorie wil verwijderen? Het verwijderen van deze categorie zal alle gerelateerde activiteitentypes verwijderen. Activiteiten die behoren tot deze categorie worden niet be\u00efnvloed door deze verwijdering.","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":"Hoe moeten we deze nieuwe categorie noemen?","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":"Hoe moeten we deze nieuwe type activiteit noemen?","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":"Het type contactveld is met succes verwijderd.","personalization_contact_field_type_description":"Hier kun je alle verschillende soorten contactvelden configureren. Als er bijvoorbeeld in de toekomst een nieuw sociaal netwerk ontstaat kun je dat hier toevoegen.","personalization_contact_field_type_edit_success":"Het type contactveld is met succes bijgewerkt.","personalization_contact_field_type_modal_delete_description":"Weet je zeker dat je dit type contactveld wil verwijderen? Wanneer je dit type veld verwijderd gaan ALLE gegevens bij alle contactpersonen van dit type contactveld verloren.","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":"Weet je zeker dat je {name} wil verwijderen?","personalization_genders_modal_delete_question":"Op dit moment heeft {count} contact deze genderidentiteit. Als je deze verwijderd, welke genderidentiteit moet dit contact krijgen?|Op dit moment hebben {count} contacten deze genderidentiteit. Als je deze verwijderd, welke genderidentiteit moeten deze contacten krijgen?","personalization_genders_modal_delete_question_default":"Dit geslacht is de standaard. Als je dit geslacht verwijdert, welke wordt dan de nieuwe standaard?","personalization_genders_modal_edit":"Genderidentiteit bewerken","personalization_genders_modal_error":"Kies een geldige genderidentiteit uit de lijst.","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_family_relationships":"Familie & relaties","personalization_life_event_category_health_wellness":"Gezondheid & welzijn","personalization_life_event_category_home_living":"Huis & leven","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_anniversary":"Jubileum","personalization_life_event_type_bought_a_home":"Huis gekocht","personalization_life_event_type_broken_bone":"Bot gebroken","personalization_life_event_type_changed_beliefs":"Van overtuiging veranderd","personalization_life_event_type_dentist":"Tandarts","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_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":"Nieuwe hobby","personalization_life_event_type_new_instrument":"Nieuw instrument","personalization_life_event_type_new_job":"Nieuwe baan","personalization_life_event_type_new_language":"Nieuwe taal","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":"Nieuwe 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":"Beugel verwijderd","personalization_life_event_type_retirement":"Pensioen","personalization_life_event_type_study_abroad":"Studie in het buitenland","personalization_life_event_type_surgery":"Chirurgie","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":"Bril of contactlenzen","personalization_life_event_type_weight_loss":"Gewichtsverlies","personalization_module_desc":"Sommige mensen hebben niet alle functies nodig. Hieronder kunt u specifieke functies inschakelen die gebruikt worden op het contactoverzicht. Deze verandering zal ALLE contacten be\u00efnvloeden. Let op dat als u een van deze functies uitschakelt, de gegevens niet verloren zullen gaan - we zullen de functie simpelweg verbergen.","personalization_module_save":"De wijziging is opgeslagen","personalization_module_title":"Functionaliteiten","personalization_reminder_rule_desc":"Voor elke herinnering die je hebt ingesteld, kunnen we je een paar dagen van te voren een e-mail sturen. Je kunt deze meldingen hier aan of uit zetten. Let op dat deze meldingen alleen van toepassing zijn op maandelijkse en jaarlijkse herinneringen.","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":"Hier vind je verschillende instellingen voor je account. Deze functies zijn gericht op ervaren gebruikers die maximale controle over Monica willen hebben.","recovery_already_used_help":"Deze code is reeds gebruikt","recovery_clipboard":"Herstelcodes gekopieerd naar het klembord","recovery_copy_help":"Codes naar klembord kopi\u00ebren","recovery_generate":"Genereer nieuwe codes...","recovery_generate_help":"Let op: met het genereren van nieuwe codes vervallen de bestaande 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":"De tijd dat herinneringen verstuurd moeten worden","reminder_time_to_send_help":"Ter informatie, de volgende herinnering wordt verzonden op {dateTime}<\/span>.","reset_cta":"Account resetten","reset_desc":"Wil je jouw account resetten? Hiermee verwijder je alle contactpersonen en de gegevens die hieraan zijn gekoppeld. Je account zal niet worden verwijderd.","reset_notice":"Weet je zeker dat je jouw account wil resetten? Laatste waarschuwing.","reset_success":"Je account is met succes gereset","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":"Label-beheer","sidebar_settings_users":"Gebruikers","storage_account_info":"Opslaglimiet van jouw account: :accountLimit Mb \/ Je huidige gebruik: :currentAccountSize Mb (: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":"Je ondersteunt het project op de lange termijn, zodat we meer fantastische functionaliteiten toe kunnen voegen.","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":"Je mag geen openstaande uitnodigingen hebben","subscriptions_downgrade_rule_invitations_constraint":"Op dit moment heb je 1 openstaande uitnodiging<\/a>. Op dit moment heb je :count openstaande uitnodigingen<\/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":"Bedankt dat je het betaalde abonnement geprobeerd hebt. We zijn voortdurend bezig om nieuwe functionaliteiten toe voegen. Misschien wil je dit in de gaten houden en wie weet heb je in de toekomst weer interesse in een betaald abonnement.","subscriptions_downgrade_title":"Account naar de gratis variant downgraden","subscriptions_help_change_desc":"Je kan op elk moment volledig zelfstandig opzeggen, zonder verdere voorwaarden. Er is geen noodzaak om contact te zoeken met support. Je lopende abonnementsperiode kan echter niet terugbetaald worden.","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 er bij het gratis abonnement een beperking op het aantal contacten dat je kan hebben?","subscriptions_help_opensource_desc":"Monica is een open source project. Dat betekend dat het volledig wordt gebouwd door een welwillende groep mensen die slechts een geweldige applicatie willen maken voor het algemeen belang. Open source betekend dat de code vrij beschikbaar is op Github, iederheen het kan inspecteren, het kan aanpassen of het kan verbeteren. Al het geld dat wij binnenkrijgen is bedoeld om betere functionaliteiten te ontwikkelen, krachtigere servers in te kunnen zetten en het helpt om de rekeningen te betalen. Bedankt voor je hulp. We zouden het letterlijk niet zonder jou kunnen doen.","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 schrijven nu :price af. De volgende boeking zal zijn op :date. Mocht je ooit van gedachte veranderen, kun je op elk moment annuleren - zonder gemor.","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":"Labels werken als mappen maar je kan meer dan \u00e9\u00e9n label aan een contact toevoegen. Open een contact en label een vriend direct onder de naam. Zodra een contact is gelabeld kun je hier al jouw labels beheren.","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":"International settings","title_layout":"Lay-out","users_accept_title":"Uitnodiging accepteren en nieuw account aanmaken","users_add_confirmation":"Ik bevestig dat ik deze gebruiker wil uitnodigen voor mijn account. Deze gebruiker heeft toegang tot AL mijn gegevens en kan precies zien wat ik ook zie.","users_add_cta":"Uitnodigen via e-mail","users_add_description":"Deze gebruiker zal dezelfde rechten hebben als jij, inclusief het uitnodigen van andere gebruikers en verwijderen van hen (waaronder jijzelf). Weet daarom zeker dat je deze gebruiker vertrouwt.","users_add_email_field":"Voer het e-mailadres in van de persoon die je wil uitnodigen","users_add_title":"Nieuwe gebruiker uitnodigen via e-mail","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 moet een datum gelijk aan :date zijn.","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."}} +{"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":"Bouw betere relaties met uw dierbaren. Gratis Online CRM voor vrienden en familie.","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","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":"Weet je het zeker?","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":"Onderhoud in uitvoering. Zo terug.","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":"1 bestand geselecteerd...|{count} bestanden geselecteerd...","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 beschikbaar","footer_newsletter":"Nieuwsbrief","footer_privacy":"Privacybeleid","footer_release":"Releaseopmerkingen","footer_remarks":"Eventuele opmerkingen?","footer_send_email":"Stuur me 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...","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_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":"Updated the description.","contact_log_contact_work_updated":"Werkinformatie bijgewerkt.","settings_log_company_created":"Bedrijf genaamd :name aangemaakt.","settings_log_contact_created_with_name":"Added :name as a contact.","settings_log_contact_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"De beschrijving van :name is gewist.","settings_log_contact_description_cleared_with_name_with_link":"Beschrijving van :name<\/a> is gewist.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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":"Main","contact_field_label_other":"Other","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_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":"Cadeaus 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","photo_previous":"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":"Werkgegevens zijn met succes bijgewerkt","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":"Tweestapsverificatie uitschakelen voor je account. Wees voorzichtig, je account zal minder beveiligd zijn!","2fa_disable_error":"Foutmelding tijdens het uitschakelen van tweestapsverificatie","2fa_disable_success":"Tweestapsverificatie uitgeschakeld","2fa_disable_title":"Tweestapsverificatie uitschakelen","2fa_enable_description":"Schakel tweestapsverificatie in om de beveiliging van je account te verbeteren.","2fa_enable_error":"Foutmelding tijdens het activeren van tweestapsverificatie","2fa_enable_error_already_set":"Tweestapsverificatie is al geactiveerd","2fa_enable_otp":"Open je tweestapsverificatie app en scan de volgende QR code:","2fa_enable_otp_help":"Als je tweestapsverificatie app geen QR codes ondersteund, voer dan de volgende code in:","2fa_enable_otp_validate":"Controleer of je app goed is ingesteld:","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":"Er is nog geen geautoriseerde client.","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":"Archiveer al je contacten","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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":"Wilt u uw account verwijderen? Waarschuwing: verwijdering is permanent en al uw gegevens zullen permanent worden verwijderd. Je abonnement (als je een abonnement hebt) zal ook onmiddellijk worden geannuleerd.","delete_notice":"Weet je zeker dat je jouw account wil verwijderen? Laatste waarschuwing.","delete_other_desc":"Voor alle duidelijkheid: je gegevens in de hoofddatabase worden onmiddellijk verwijderd. Echter, zoals beschreven in ons privacybeleid, maken we dagelijks back-ups van de database voor het geval storingen zich voordoen. Deze back-ups worden dertig dagen bewaard \u2013 daarna zijn je gegevens volledig verwijderd. Het is helaas niet haalbaar om alle back-ups te bewerken om jouw specifieke gegevens te verwijderen. Deze gegevens worden overigens versleuteld op zeer veilige servers van Amazon en niemand heeft de encryptiesleutel behalve wij. Daarom zullen je gegevens over 30 dagen volledig uit alle back-ups verdwijnen, en niemand zal weten dat deze gegevens \u00fcberhaupt hebben bestaan.","delete_title":"Verwijder je account","email":"E-mailadres","email_help":"Dit is het e-mailadres dat je gebruikt om in te loggen. Hier worden ook je herinneringen naar verstuurd.","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":"Opmerking: lees de instructies<\/a> om meer te weten te komen over het importeren van dit bestand in je eigen installatie.","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":"Nieuwe contacten toevoegen, bestaande overslaan","import_upload_behaviour_help":"Opmerking: met overschrijven worden alle gegevens die worden gevonden in de vCard overschreven, bestaande velden blijven behouden.","import_upload_behaviour_replace":"Overschrijf bestaande contacten","import_upload_form_file":"Jouw .vcf<\/code> of .vCard<\/code> bestand:","import_upload_rule_cant_revert":"Zorg ervoor dat voordat je de upload start de gegevens die je wil importeren correct zijn. De upload kan niet ongedaan gemaakt worden.","import_upload_rule_format":"Wij ondersteunen .vcard<\/code> en .vcf<\/code> bestanden.","import_upload_rule_instructions":"Instructies voor het exporteren naar Contacts.app (macOS)<\/a> en Google Contacts<\/a>.","import_upload_rule_limit":"Bestanden mogen niet groter dan 10MB zijn.","import_upload_rule_multiple":"Momenteel worden bij meerdere e-mailadressen of telefoonnummers telkens alleen de eerste vermelding ge\u00efmporteerd.","import_upload_rule_time":"Het kan een minuut duren om de contacten te uploaden en te verwerken. Heb alsjeblieft even geduld.","import_upload_rule_vcard":"Wij ondersteunen het vCard 3.0 formaat, dat is het standaardformaat voor Contacts.app(macOS) en Google Contacten.","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":"Geen voornaam (verplicht)","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_author":"Door :name op :date","logs_title":"Alles wat met dit account is gebeurd","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":"Mijn contact","name":"Jouw naam: :name","name_order":"Naamvolgorde","name_order_firstname_lastname":" - Klaas Bakker","name_order_firstname_lastname_nickname":" () - Klaas Bakker (Broodje)","name_order_firstname_nickname_lastname":" () - Klaas (Broodje) Bakker","name_order_lastname_firstname":" - Bakker Klaas","name_order_lastname_firstname_nickname":" () - Bakker Klaas (Broodje)","name_order_lastname_nickname_firstname":" () - Bakker (Broodje) Klaas","name_order_nickname":" - Broodje","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Wachtwoord wijzigen","password_change":"Wachtwoord wijzigen","password_current":"Huidige wachtwoord","password_current_placeholder":"Voer je huidige wachtwoord in","password_new1":"Nieuw wachtwoord","password_new1_placeholder":"Voer een nieuw wachtwoord in","password_new2":"Nieuw wachtwoord bevestigen","password_new2_placeholder":"Herhaal je nieuwe wachtwoord","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":"Een activiteit die je doet met een van je contacten heeft een type en een categorie. Jouw account komt standaard met een reeks vooraf gedefinieerde categorie\u00ebn, maar je kan hier alles aanpassen.","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":"Weet je zeker dat je deze categorie wil verwijderen? Het verwijderen van deze categorie zal alle gerelateerde activiteitentypes verwijderen. Activiteiten die behoren tot deze categorie worden niet be\u00efnvloed door deze verwijdering.","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":"Hoe moeten we deze nieuwe categorie noemen?","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":"Hoe moeten we deze nieuwe type activiteit noemen?","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":"Het type contactveld is met succes verwijderd.","personalization_contact_field_type_description":"Hier kun je alle verschillende soorten contactvelden configureren. Als er bijvoorbeeld in de toekomst een nieuw sociaal netwerk ontstaat kun je dat hier toevoegen.","personalization_contact_field_type_edit_success":"Het type contactveld is met succes bijgewerkt.","personalization_contact_field_type_modal_delete_description":"Weet je zeker dat je dit type contactveld wil verwijderen? Wanneer je dit type veld verwijderd gaan ALLE gegevens bij alle contactpersonen van dit type contactveld verloren.","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":"Weet je zeker dat je {name} wil verwijderen?","personalization_genders_modal_delete_question":"Op dit moment heeft {count} contact deze genderidentiteit. Als je deze verwijderd, welke genderidentiteit moet dit contact krijgen?|Op dit moment hebben {count} contacten deze genderidentiteit. Als je deze verwijderd, welke genderidentiteit moeten deze contacten krijgen?","personalization_genders_modal_delete_question_default":"Dit geslacht is de standaard. Als je dit geslacht verwijdert, welke wordt dan de nieuwe standaard?","personalization_genders_modal_edit":"Genderidentiteit bewerken","personalization_genders_modal_error":"Kies een geldige genderidentiteit uit de lijst.","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 by default with a set of predefined categories and types, 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":"Bot gebroken","personalization_life_event_type_changed_beliefs":"Van overtuiging veranderd","personalization_life_event_type_dentist":"Tandarts","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":"How 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":"Nieuwe hobby","personalization_life_event_type_new_instrument":"Nieuw instrument","personalization_life_event_type_new_job":"Nieuwe baan","personalization_life_event_type_new_language":"Nieuwe taal","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":"Nieuwe 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":"Beugel verwijderd","personalization_life_event_type_retirement":"Pensioen","personalization_life_event_type_study_abroad":"Studie in het buitenland","personalization_life_event_type_surgery":"Chirurgie","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":"Bril of contactlenzen","personalization_life_event_type_weight_loss":"Gewichtsverlies","personalization_live_event_category_table_actions":"Actions","personalization_live_event_category_table_name":"Name","personalization_module_desc":"Sommige mensen hebben niet alle functies nodig. Hieronder kunt u specifieke functies inschakelen die gebruikt worden op het contactoverzicht. Deze verandering zal ALLE contacten be\u00efnvloeden. Let op dat als u een van deze functies uitschakelt, de gegevens niet verloren zullen gaan - we zullen de functie simpelweg verbergen.","personalization_module_save":"De wijziging is opgeslagen","personalization_module_title":"Functionaliteiten","personalization_reminder_rule_desc":"Voor elke herinnering die je hebt ingesteld, kunnen we je een paar dagen van te voren een e-mail sturen. Je kunt deze meldingen hier aan of uit zetten. Let op dat deze meldingen alleen van toepassing zijn op maandelijkse en jaarlijkse herinneringen.","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":"Hier vind je verschillende instellingen voor je account. Deze functies zijn gericht op ervaren gebruikers die maximale controle over Monica willen hebben.","recovery_already_used_help":"Deze code is reeds gebruikt","recovery_clipboard":"Herstelcodes gekopieerd naar het klembord","recovery_copy_help":"Codes naar klembord kopi\u00ebren","recovery_generate":"Genereer nieuwe codes...","recovery_generate_help":"Let op: met het genereren van nieuwe codes vervallen de bestaande 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":"De tijd dat herinneringen verstuurd moeten worden","reminder_time_to_send_help":"Ter informatie, de volgende herinnering wordt verzonden op {dateTime}<\/span>.","reset_cta":"Account resetten","reset_desc":"Wil je jouw account resetten? Hiermee verwijder je alle contactpersonen en de gegevens die hieraan zijn gekoppeld. Je account zal niet worden verwijderd.","reset_notice":"Weet je zeker dat je jouw account wil resetten? Laatste waarschuwing.","reset_success":"Je account is met succes gereset","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":"Label-beheer","sidebar_settings_users":"Gebruikers","storage_account_info":"Opslaglimiet van jouw account: :accountLimit Mb \/ Je huidige gebruik: :currentAccountSize Mb (: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":"Je ondersteunt het project op de lange termijn, zodat we meer fantastische functionaliteiten toe kunnen voegen.","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":"Je mag geen openstaande uitnodigingen hebben","subscriptions_downgrade_rule_invitations_constraint":"Op dit moment heb je 1 openstaande uitnodiging<\/a>. Op dit moment heb je :count openstaande uitnodigingen<\/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":"Bedankt dat je het betaalde abonnement geprobeerd hebt. We zijn voortdurend bezig om nieuwe functionaliteiten toe voegen. Misschien wil je dit in de gaten houden en wie weet heb je in de toekomst weer interesse in een betaald abonnement.","subscriptions_downgrade_title":"Account naar de gratis variant downgraden","subscriptions_help_change_desc":"Je kan op elk moment volledig zelfstandig opzeggen, zonder verdere voorwaarden. Er is geen noodzaak om contact te zoeken met support. Je lopende abonnementsperiode kan echter niet terugbetaald worden.","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 er bij het gratis abonnement een beperking op het aantal contacten dat je kan hebben?","subscriptions_help_opensource_desc":"Monica is een open source project. Dat betekend dat het volledig wordt gebouwd door een welwillende groep mensen die slechts een geweldige applicatie willen maken voor het algemeen belang. Open source betekend dat de code vrij beschikbaar is op Github, iederheen het kan inspecteren, het kan aanpassen of het kan verbeteren. Al het geld dat wij binnenkrijgen is bedoeld om betere functionaliteiten te ontwikkelen, krachtigere servers in te kunnen zetten en het helpt om de rekeningen te betalen. Bedankt voor je hulp. We zouden het letterlijk niet zonder jou kunnen doen.","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 schrijven nu :price af. De volgende boeking zal zijn op :date. Mocht je ooit van gedachte veranderen, kun je op elk moment annuleren - zonder gemor.","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":"Labels werken als mappen maar je kan meer dan \u00e9\u00e9n label aan een contact toevoegen. Open een contact en label een vriend direct onder de naam. Zodra een contact is gelabeld kun je hier al jouw labels beheren.","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":"International settings","title_layout":"Lay-out","users_accept_title":"Uitnodiging accepteren en nieuw account aanmaken","users_add_confirmation":"Ik bevestig dat ik deze gebruiker wil uitnodigen voor mijn account. Deze gebruiker heeft toegang tot AL mijn gegevens en kan precies zien wat ik ook zie.","users_add_cta":"Uitnodigen via e-mail","users_add_description":"Deze gebruiker zal dezelfde rechten hebben als jij, inclusief het uitnodigen van andere gebruikers en verwijderen van hen (waaronder jijzelf). Weet daarom zeker dat je deze gebruiker vertrouwt.","users_add_email_field":"Voer het e-mailadres in van de persoon die je wil uitnodigen","users_add_title":"Nieuwe gebruiker uitnodigen via e-mail","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 moet een datum gelijk aan :date zijn.","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."}} diff --git a/public/js/langs/no.json b/public/js/langs/no.json index b6c352dc755..b48673758a5 100644 --- a/public/js/langs/no.json +++ b/public/js/langs/no.json @@ -1 +1 @@ -{"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","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":"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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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\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":"Ja","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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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","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\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 have been updated with success","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} +{"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","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":"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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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\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":"Ja","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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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","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\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 have been updated with success","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/pt-BR.json b/public/js/langs/pt-BR.json index fdc3aadcc7a..73e3b5941a6 100644 --- a/public/js/langs/pt-BR.json +++ b/public/js/langs/pt-BR.json @@ -1 +1 @@ -{"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":"Have better relations with your loved ones. Free Online CRM for friends and family.","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":"Confirm","copy":"Copiar","create":"Criar","date":"Data","dav_birthdays":"Anivers\u00e1rios","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","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":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Divers\u00e3o","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Agita\u00e7\u00e3o","emotion_astonishment":"Astonishment","emotion_attraction":"Atra\u00e7\u00e3o","emotion_bitterness":"Bitterness","emotion_bliss":"Euforia","emotion_caring":"Cuidado","emotion_cheerfulness":"Felicidade","emotion_compassion":"Compaix\u00e3o","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desejo","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":"Apre\u00e7o","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Alegria","emotion_gladness":"Gladness","emotion_glee":"Alegria","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":"Fasc\u00ednio","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":"Carinho","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Desejo","emotion_love":"Amor","emotion_lust":"Cobi\u00e7a","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":"Paix\u00e3o","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","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":"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":"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":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Ternura","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":"Voltaremos em breve.","error_id":"Error ID: :id","error_maintenance":"Manuten\u00e7\u00e3o em andamento. Voltaremos em breve.","error_no_term":"There is no policy for this instance yet.","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":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"1 file selected...|{count} files selected...","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 est\u00e1 dispon\u00edvel","footer_newsletter":"Newsletter","footer_privacy":"Pol\u00edtica de Privacidade","footer_release":"Notas da vers\u00e3o","footer_remarks":"Alguma sugest\u00e3o?","footer_send_email":"Me envie um e-mail","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...","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\u2019s boss","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":"Other kind of relationships","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":"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":"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":"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":"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":"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":"Tempo atual","weather_fog":"Fog","weather_partly-cloudy-day":"Parcialmente nublado (Dia)","weather_partly-cloudy-night":"Parcialmente nublado (Noite)","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":"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":"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":"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":"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":"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":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/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":"An error occured trying to register the user","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":"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":"Obrigado. Volte amanh\u00e3 para avaliar o seu dia novamente.","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":"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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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":"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":"Atividades","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":"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":"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":"cerca de :age anos","age_exact_birthdate":"nasceu em :date","age_exact_in_years":":age anos","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":"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":"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":"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":"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":"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":"Comment (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"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":"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":"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":"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":"Deseje feliz anivers\u00e1rio para :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","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":"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":"Quer mesmo excluir este relacionamento? Voc\u00ea n\u00e3o pode voltar atr\u00e1s.","relationship_form_add":"Adicionar novo relacionamento","relationship_form_add_choice":"Who is the relationship with?","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":"Informa\u00e7\u00e3o profissional atualizado com sucesso","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 not be secured anymore !","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":"Ative a autentica\u00e7\u00e3o de dois fatores para proteger sua conta.","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":"Abra o seu aplicativo de autentica\u00e7\u00e3o de dois fatores e aponte o celular para essa tela para capturar o c\u00f3digo QR.","2fa_enable_otp_help":"Caso o seu aplicativo n\u00e3o realize a leitura de c\u00f3digos QR, por favor insira este c\u00f3digo:","2fa_enable_otp_validate":"Por favor, confirme o novo dispositivo que acaba de configurar:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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":"Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Quer mesmo excluir sua conta? Voc\u00ea n\u00e3o poder\u00e1 voltar atr\u00e1s.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Excluir sua conta","email":"Endere\u00e7o de e-mail","email_help":"Este \u00e9 o e-mail usado para logar, e \u00e9 aqui que voc\u00ea receber\u00e1 os 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 a exporta\u00e7\u00e3o \u2013 por favor, seja paciente e n\u00e3o pressione o bot\u00e3o v\u00e1rias vezes.","export_sql_cta":"Exportar 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 pretenda instalar Monica em um servidor privado.","export_sql_link_instructions":"Observa\u00e7\u00e3o: leia as instru\u00e7\u00f5es<\/a> para saber mais sobre como importar o arquivo gerado para sua inst\u00e2ncia.","export_title":"Exporte os dados da sua conta","export_title_sql":"Exportar 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turco","locale_zh":"Chin\u00eas (Simplificado)","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Seu nome: :name","name_order":"Ordem de nome","name_order_firstname_lastname":" - Jo\u00e3o Silva","name_order_firstname_lastname_nickname":" () - Jo\u00e3o Silva (J\u00e3o)","name_order_firstname_nickname_lastname":" () - Jo\u00e3o (J\u00e3o) Silva","name_order_lastname_firstname":" - Silva Jo\u00e3o","name_order_lastname_firstname_nickname":" () - Silva Jo\u00e3o (J\u00e3o)","name_order_lastname_nickname_firstname":" () - Silva (J\u00e3o) Jo\u00e3o","name_order_nickname":" - J\u00e3o","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Alterar senha","password_change":"Alterar senha","password_current":"Senha atual","password_current_placeholder":"Digite a sua senha atual","password_new1":"Nova senha","password_new1_placeholder":"Digite a nova senha","password_new2":"Confirma\u00e7\u00e3o","password_new2_placeholder":"Repita a nova senha","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","reset_cta":"Redefinir conta","reset_desc":"Gostaria de redefinir sua conta? Todos os seus contatos e dados ser\u00e3o removidos permanentemente, mas sua conta n\u00e3o ser\u00e1 exclu\u00edda.","reset_notice":"Quer mesmo redefinir sua conta? Voc\u00ea n\u00e3o poder\u00e1 voltar atr\u00e1s.","reset_success":"Sua conta foi redefinida com sucesso","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":"Audit logs","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":"Gerenciamento de etiquetas","sidebar_settings_users":"Usu\u00e1rios","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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":"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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} +{"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":"Have better relations with your loved ones. Free Online CRM for friends and family.","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":"Confirm","copy":"Copiar","create":"Criar","date":"Data","dav_birthdays":"Anivers\u00e1rios","dav_birthdays_description":":name\u2019s contact\u2019s birthdays","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":"Agitation","emotion_agony":"Agony","emotion_alarm":"Alarm","emotion_alienation":"Alienation","emotion_amazement":"Amazement","emotion_amusement":"Divers\u00e3o","emotion_anger":"Anger","emotion_anguish":"Anguish","emotion_annoyance":"Annoyance","emotion_anxiety":"Anxiety","emotion_apprehension":"Apprehension","emotion_arousal":"Agita\u00e7\u00e3o","emotion_astonishment":"Astonishment","emotion_attraction":"Atra\u00e7\u00e3o","emotion_bitterness":"Bitterness","emotion_bliss":"Euforia","emotion_caring":"Cuidado","emotion_cheerfulness":"Felicidade","emotion_compassion":"Compaix\u00e3o","emotion_contempt":"Contempt","emotion_contentment":"Contentment","emotion_defeat":"Defeat","emotion_dejection":"Dejection","emotion_delight":"Delight","emotion_depression":"Depression","emotion_desire":"Desejo","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":"Apre\u00e7o","emotion_fright":"Fright","emotion_frustration":"Frustration","emotion_fury":"Fury","emotion_gaiety":"Alegria","emotion_gladness":"Gladness","emotion_glee":"Alegria","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":"Fasc\u00ednio","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":"Carinho","emotion_loathing":"Loathing","emotion_loneliness":"Loneliness","emotion_longing":"Desejo","emotion_love":"Amor","emotion_lust":"Cobi\u00e7a","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":"Paix\u00e3o","emotion_pity":"Pity","emotion_pleasure":"Pleasure","emotion_pride":"Pride","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":"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":"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":"Shock","emotion_sorrow":"Sorrow","emotion_spite":"Spite","emotion_suffering":"Suffering","emotion_surprise":"Surprise","emotion_sympathy":"Sympathy","emotion_tenderness":"Ternura","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":"Voltaremos em breve.","error_id":"Error ID: :id","error_maintenance":"Manuten\u00e7\u00e3o em andamento. Voltaremos em breve.","error_no_term":"There is no policy for this instance yet.","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":"Service unavailable","error_user_account":"This user does not belong to the given account.","file_selected":"1 file selected...|{count} files selected...","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 est\u00e1 dispon\u00edvel","footer_newsletter":"Newsletter","footer_privacy":"Pol\u00edtica de Privacidade","footer_release":"Notas da vers\u00e3o","footer_remarks":"Alguma sugest\u00e3o?","footer_send_email":"Me envie um e-mail","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...","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\u2019s boss","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":"Other kind of relationships","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":"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":"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":"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":"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":"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":"Tempo atual","weather_fog":"Fog","weather_partly-cloudy-day":"Parcialmente nublado (Dia)","weather_partly-cloudy-night":"Parcialmente nublado (Noite)","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":"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":"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":"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":"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":"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":"Signing up signifies you\u2019ve read and agree to our Privacy Policy<\/a> and Terms of use<\/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":"An error occured trying to register the user","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":"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":"Obrigado. Volte amanh\u00e3 para avaliar o seu dia novamente.","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":"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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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":"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":"Atividades","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":"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":"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":"cerca de :age anos","age_exact_birthdate":"nasceu em :date","age_exact_in_years":":age anos","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":"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":"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":"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":"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":"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":"Comment (optional)","gifts_add_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"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":"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":"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":"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":"Deseje feliz anivers\u00e1rio para :name","people_add_birthday_reminder_deceased":"On this date, :name, would have celebrated his birthday","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":"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":"Quer mesmo excluir este relacionamento? Voc\u00ea n\u00e3o pode voltar atr\u00e1s.","relationship_form_add":"Adicionar novo relacionamento","relationship_form_add_choice":"Who is the relationship with?","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":"Informa\u00e7\u00e3o profissional atualizado com sucesso","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 not be secured anymore !","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":"Ative a autentica\u00e7\u00e3o de dois fatores para proteger sua conta.","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":"Abra o seu aplicativo de autentica\u00e7\u00e3o de dois fatores e aponte o celular para essa tela para capturar o c\u00f3digo QR.","2fa_enable_otp_help":"Caso o seu aplicativo n\u00e3o realize a leitura de c\u00f3digos QR, por favor insira este c\u00f3digo:","2fa_enable_otp_validate":"Por favor, confirme o novo dispositivo que acaba de configurar:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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":"Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Quer mesmo excluir sua conta? Voc\u00ea n\u00e3o poder\u00e1 voltar atr\u00e1s.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Excluir sua conta","email":"Endere\u00e7o de e-mail","email_help":"Este \u00e9 o e-mail usado para logar, e \u00e9 aqui que voc\u00ea receber\u00e1 os 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 a exporta\u00e7\u00e3o \u2013 por favor, seja paciente e n\u00e3o pressione o bot\u00e3o v\u00e1rias vezes.","export_sql_cta":"Exportar 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 pretenda instalar Monica em um servidor privado.","export_sql_link_instructions":"Observa\u00e7\u00e3o: leia as instru\u00e7\u00f5es<\/a> para saber mais sobre como importar o arquivo gerado para sua inst\u00e2ncia.","export_title":"Exporte os dados da sua conta","export_title_sql":"Exportar 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Seu nome: :name","name_order":"Ordem de nome","name_order_firstname_lastname":" - Jo\u00e3o Silva","name_order_firstname_lastname_nickname":" () - Jo\u00e3o Silva (J\u00e3o)","name_order_firstname_nickname_lastname":" () - Jo\u00e3o (J\u00e3o) Silva","name_order_lastname_firstname":" - Silva Jo\u00e3o","name_order_lastname_firstname_nickname":" () - Silva Jo\u00e3o (J\u00e3o)","name_order_lastname_nickname_firstname":" () - Silva (J\u00e3o) Jo\u00e3o","name_order_nickname":" - J\u00e3o","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"Alterar senha","password_change":"Alterar senha","password_current":"Senha atual","password_current_placeholder":"Digite a sua senha atual","password_new1":"Nova senha","password_new1_placeholder":"Digite a nova senha","password_new2":"Confirma\u00e7\u00e3o","password_new2_placeholder":"Repita a nova senha","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will be sent on {dateTime}<\/span>.","reset_cta":"Redefinir conta","reset_desc":"Gostaria de redefinir sua conta? Todos os seus contatos e dados ser\u00e3o removidos permanentemente, mas sua conta n\u00e3o ser\u00e1 exclu\u00edda.","reset_notice":"Quer mesmo redefinir sua conta? Voc\u00ea n\u00e3o poder\u00e1 voltar atr\u00e1s.","reset_success":"Sua conta foi redefinida com sucesso","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":"Audit logs","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":"Gerenciamento de etiquetas","sidebar_settings_users":"Usu\u00e1rios","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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":"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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/pt.json b/public/js/langs/pt.json index fc6dd708deb..a0c80d4b9d5 100644 --- a/public/js/langs/pt.json +++ b/public/js/langs/pt.json @@ -1 +1 @@ -{"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","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":"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. 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":"1 file selected...|{count} files selected...","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":"Est\u00e1 dispon\u00edvel uma nova vers\u00e3o","footer_newsletter":"Boletim informativo","footer_privacy":"Pol\u00edtica de Privacidade","footer_release":"Notas de vers\u00e3o","footer_remarks":"Alguma observa\u00e7\u00e3o?","footer_send_email":"Mande-me um 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":"A carregar...","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 reminder 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 debt yet.","tab_favorite_notes":"Notas favoritas","tab_recent_calls":"Chamadas recentes","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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 offered","gifts_offered":"Gifts offered","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","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\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":"Informa\u00e7\u00f5es profissionais foram atualizadas com sucesso","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Tem certeza que deseja excluir sua conta? N\u00e3o h\u00e1 como voltar atr\u00e1s.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Endere\u00e7o de email","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Digite o email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Exportar os seus dados","export_title_sql":"Exportar para 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turco","locale_zh":"Chin\u00eas (Simplificado)","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Seu nome: :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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Gest\u00e3o de etiquetas","sidebar_settings_users":"Utilizadores","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} +{"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","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":"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. 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":"1 file selected...|{count} files selected...","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":"Est\u00e1 dispon\u00edvel uma nova vers\u00e3o","footer_newsletter":"Boletim informativo","footer_privacy":"Pol\u00edtica de Privacidade","footer_release":"Notas de vers\u00e3o","footer_remarks":"Alguma observa\u00e7\u00e3o?","footer_send_email":"Mande-me um 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":"A carregar...","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 reminder 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 debt yet.","tab_favorite_notes":"Notas favoritas","tab_recent_calls":"Chamadas recentes","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_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 offered","gifts_offered":"Gifts offered","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","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\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":"Informa\u00e7\u00f5es profissionais foram atualizadas com sucesso","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Tem certeza que deseja excluir sua conta? N\u00e3o h\u00e1 como voltar atr\u00e1s.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Endere\u00e7o de email","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Digite o email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Exportar os seus dados","export_title_sql":"Exportar para 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My contact","name":"Seu nome: :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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Gest\u00e3o de etiquetas","sidebar_settings_users":"Utilizadores","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/ru.json b/public/js/langs/ru.json index dde5afa1ca2..6ef3cad5faf 100644 --- a/public/js/langs/ru.json +++ b/public/js/langs/ru.json @@ -1 +1 @@ -{"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","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":"\u0423\u0432\u0435\u0440\u0435\u043d\u044b?","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. 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":"1 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":"\u0427\u0442\u043e \u043d\u043e\u0432\u043e\u0433\u043e","footer_new_version":"\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f","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":"\u0415\u0441\u0442\u044c \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f?","footer_send_email":"\u041e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043c\u043d\u0435 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...","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 ones 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 a call yet.","tab_debts":"\u0414\u043e\u043b\u0433\u0438","tab_debts_blank":"You haven\u2019t logged any debt 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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":"Cultural activities","activity_type_category_food":"\u0415\u0434\u0430","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"\u0421\u043f\u043e\u0440\u0442","activity_type_did_sport_activities_together":"played a sport together","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_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\u0435:","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","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\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":"Title","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":"\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0440\u0430\u0431\u043e\u0442\u0435 \u0431\u044b\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430","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 not be secured anymore !","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":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \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, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0432\u044b\u0441\u0438\u0442\u044c \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c \u0432\u0430\u0448\u0435\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430.","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":"\u0415\u0441\u043b\u0438 \u0432\u0430\u0448\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \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 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 QR-\u043a\u043e\u0434\u044b, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043a\u043e\u0434:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"\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 \u0441\u0432\u043e\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442? \u041f\u0443\u0442\u0438 \u043d\u0430\u0437\u0430\u0434 \u043d\u0435\u0442.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email","email_help":"\u042d\u0442\u043e\u0442 email \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0432\u0445\u043e\u0434\u0430, \u0438 \u043d\u0430 \u043d\u0435\u0433\u043e \u0432\u044b \u0431\u0443\u0434\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f.","email_placeholder":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 email","export_be_patient":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u043a\u043d\u043e\u043f\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u044d\u043a\u0441\u043f\u043e\u0440\u0442. \u041e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0438\u043d\u0443\u0442 \u2013 \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0431\u0443\u0434\u044c\u0442\u0435 \u0442\u0435\u0440\u043f\u0435\u043b\u0438\u0432\u044b \u0438 \u043d\u0435 \u043d\u0430\u0436\u0438\u043c\u0430\u0439\u0442\u0435 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e.","export_sql_cta":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \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 \u0446\u0435\u043d\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":"\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435: \u043f\u0440\u043e\u0447\u0442\u0438\u0442\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438<\/a>, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0435 \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430 \u0432 \u0432\u0430\u0448 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440.","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\u0438\u0440\u043e\u0432\u0430\u0442\u044c \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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_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_author":"By :name on :date","logs_title":"Everything that 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":"\u041c\u043e\u0439 \u043a\u043e\u043d\u0442\u0430\u043a\u0442","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":"<\u0418\u043c\u044f> <\u0424\u0430\u043c\u0438\u043b\u0438\u044f> - \u0418\u0432\u0430\u043d \u0418\u0432\u0430\u043d\u043e\u0432","name_order_firstname_lastname_nickname":"<\u0418\u043c\u044f> <\u0424\u0430\u043c\u0438\u043b\u0438\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) - \u0418\u0432\u0430\u043d \u0418\u0432\u0430\u043d\u043e\u0432 (\u0420\u044d\u043c\u0431\u043e)","name_order_firstname_nickname_lastname":"<\u0418\u043c\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) <\u0424\u0430\u043c\u0438\u043b\u0438\u044f> - \u0418\u0432\u0430\u043d (\u0420\u044d\u043c\u0431\u043e) \u0418\u0432\u0430\u043d\u043e\u0432","name_order_lastname_firstname":"<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> <\u0418\u043c\u044f> - \u0418\u0432\u0430\u043d\u043e\u0432 \u0418\u0432\u0430\u043d","name_order_lastname_firstname_nickname":"<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> <\u0418\u043c\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) - \u0418\u0432\u0430\u043d\u043e\u0432 \u0418\u0432\u0430\u043d (\u0420\u044d\u043c\u0431\u043e)","name_order_lastname_nickname_firstname":"<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) <\u0418\u043c\u044f> - \u0418\u0432\u0430\u043d\u043e\u0432 (\u0420\u044d\u043c\u0431\u043e) \u0418\u0432\u0430\u043d","name_order_nickname":"<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c> - \u0420\u044d\u043c\u0431\u043e","name_order_nickname_firstname_lastname":"<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c> (<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> <\u0418\u043c\u044f>) - \u0420\u044d\u043c\u0431\u043e (\u0418\u0432\u0430\u043d\u043e\u0432 \u0418\u0432\u0430\u043d)","password_btn":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","password_change":"\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f","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":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","password_new2":"\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435","password_new2_placeholder":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c \u0435\u0449\u0451 \u0440\u0430\u0437","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"\u042d\u0442\u043e\u0442 \u043a\u043e\u0442 \u0443\u0436\u0435 \u0431\u044b\u043b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d","recovery_clipboard":"\u041a\u043e\u0434\u044b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0432 \u0431\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0435\u043d\u0430","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":"\u0421\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u043a\u043e\u0434\u044b...","recovery_generate_help":"\u0418\u043c\u0435\u0439\u0442\u0435 \u0432 \u0432\u0438\u0434\u0443, \u0447\u0442\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0430\u043d\u043d\u0443\u043b\u0438\u0440\u0443\u0435\u0442 \u0440\u0430\u043d\u0435\u0435 \u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043a\u043e\u0434\u044b","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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","subscriptions_help_opensource_title":"What is an open source project?","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":"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 anytime, 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, go 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":"\u042f \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0430\u044e, \u0447\u0442\u043e \u0445\u043e\u0447\u0443 \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430. \u041e\u043d \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043c\u043e\u0438\u043c \u0434\u0430\u043d\u043d\u044b\u043c \u0438 \u0431\u0443\u0434\u0435\u0442 \u0432\u0438\u0434\u0435\u0442\u044c \u0442\u043e \u0436\u0435, \u0447\u0442\u043e \u0438 \u0432\u044b.","users_add_cta":"Invite user by email","users_add_description":"\u042d\u0442\u043e\u0442 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u0431\u0443\u0434\u0435\u0442 \u0438\u043c\u0435\u0442\u044c \u0442\u0435 \u0436\u0435 \u043f\u0440\u0430\u0432\u0430, \u0447\u0442\u043e \u0438 \u0432\u044b, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0434\u0440\u0443\u0433\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0438\u0445 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 (\u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0432\u0430\u0441). \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u044b \u0434\u043e\u0432\u0435\u0440\u044f\u0435\u0442\u0435 \u044d\u0442\u043e\u043c\u0443 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0443.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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":"Invite a new user","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":"Pending invitations","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."}} +{"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","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":"\u0423\u0432\u0435\u0440\u0435\u043d\u044b?","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. 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":"1 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":"\u0427\u0442\u043e \u043d\u043e\u0432\u043e\u0433\u043e","footer_new_version":"\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f","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":"\u0415\u0441\u0442\u044c \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f?","footer_send_email":"\u041e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043c\u043d\u0435 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...","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 ones 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 a call yet.","tab_debts":"\u0414\u043e\u043b\u0433\u0438","tab_debts_blank":"You haven\u2019t logged any debt 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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":"Cultural activities","activity_type_category_food":"\u0415\u0434\u0430","activity_type_category_simple_activities":"Simple activities","activity_type_category_sport":"\u0421\u043f\u043e\u0440\u0442","activity_type_did_sport_activities_together":"played a sport together","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_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\u0435:","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","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\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":"Title","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":"\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0440\u0430\u0431\u043e\u0442\u0435 \u0431\u044b\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430","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 not be secured anymore !","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":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \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, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0432\u044b\u0441\u0438\u0442\u044c \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c \u0432\u0430\u0448\u0435\u0433\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430.","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":"\u0415\u0441\u043b\u0438 \u0432\u0430\u0448\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \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 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 QR-\u043a\u043e\u0434\u044b, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043a\u043e\u0434:","2fa_enable_otp_validate":"Please validate the new device you\u2019ve just set:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"\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 \u0441\u0432\u043e\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442? \u041f\u0443\u0442\u0438 \u043d\u0430\u0437\u0430\u0434 \u043d\u0435\u0442.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email","email_help":"\u042d\u0442\u043e\u0442 email \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0432\u0445\u043e\u0434\u0430, \u0438 \u043d\u0430 \u043d\u0435\u0433\u043e \u0432\u044b \u0431\u0443\u0434\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f.","email_placeholder":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 email","export_be_patient":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u043a\u043d\u043e\u043f\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u044d\u043a\u0441\u043f\u043e\u0440\u0442. \u041e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0438\u043d\u0443\u0442 \u2013 \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0431\u0443\u0434\u044c\u0442\u0435 \u0442\u0435\u0440\u043f\u0435\u043b\u0438\u0432\u044b \u0438 \u043d\u0435 \u043d\u0430\u0436\u0438\u043c\u0430\u0439\u0442\u0435 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e.","export_sql_cta":"\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \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 \u0446\u0435\u043d\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":"\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435: \u043f\u0440\u043e\u0447\u0442\u0438\u0442\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438<\/a>, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0435 \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430 \u0432 \u0432\u0430\u0448 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440.","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\u0438\u0440\u043e\u0432\u0430\u0442\u044c \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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"\u041c\u043e\u0439 \u043a\u043e\u043d\u0442\u0430\u043a\u0442","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":"<\u0418\u043c\u044f> <\u0424\u0430\u043c\u0438\u043b\u0438\u044f> - \u0418\u0432\u0430\u043d \u0418\u0432\u0430\u043d\u043e\u0432","name_order_firstname_lastname_nickname":"<\u0418\u043c\u044f> <\u0424\u0430\u043c\u0438\u043b\u0438\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) - \u0418\u0432\u0430\u043d \u0418\u0432\u0430\u043d\u043e\u0432 (\u0420\u044d\u043c\u0431\u043e)","name_order_firstname_nickname_lastname":"<\u0418\u043c\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) <\u0424\u0430\u043c\u0438\u043b\u0438\u044f> - \u0418\u0432\u0430\u043d (\u0420\u044d\u043c\u0431\u043e) \u0418\u0432\u0430\u043d\u043e\u0432","name_order_lastname_firstname":"<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> <\u0418\u043c\u044f> - \u0418\u0432\u0430\u043d\u043e\u0432 \u0418\u0432\u0430\u043d","name_order_lastname_firstname_nickname":"<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> <\u0418\u043c\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) - \u0418\u0432\u0430\u043d\u043e\u0432 \u0418\u0432\u0430\u043d (\u0420\u044d\u043c\u0431\u043e)","name_order_lastname_nickname_firstname":"<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> (<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c>) <\u0418\u043c\u044f> - \u0418\u0432\u0430\u043d\u043e\u0432 (\u0420\u044d\u043c\u0431\u043e) \u0418\u0432\u0430\u043d","name_order_nickname":"<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c> - \u0420\u044d\u043c\u0431\u043e","name_order_nickname_firstname_lastname":"<\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c> (<\u0424\u0430\u043c\u0438\u043b\u0438\u044f> <\u0418\u043c\u044f>) - \u0420\u044d\u043c\u0431\u043e (\u0418\u0432\u0430\u043d\u043e\u0432 \u0418\u0432\u0430\u043d)","password_btn":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","password_change":"\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f","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":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","password_new2":"\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435","password_new2_placeholder":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c \u0435\u0449\u0451 \u0440\u0430\u0437","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"\u042d\u0442\u043e\u0442 \u043a\u043e\u0442 \u0443\u0436\u0435 \u0431\u044b\u043b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d","recovery_clipboard":"\u041a\u043e\u0434\u044b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0432 \u0431\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0435\u043d\u0430","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":"\u0421\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u043a\u043e\u0434\u044b...","recovery_generate_help":"\u0418\u043c\u0435\u0439\u0442\u0435 \u0432 \u0432\u0438\u0434\u0443, \u0447\u0442\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u043a\u043e\u0434\u043e\u0432 \u0430\u043d\u043d\u0443\u043b\u0438\u0440\u0443\u0435\u0442 \u0440\u0430\u043d\u0435\u0435 \u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043a\u043e\u0434\u044b","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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","subscriptions_help_opensource_title":"What is an open source project?","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":"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 anytime, 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, go 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":"\u042f \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0430\u044e, \u0447\u0442\u043e \u0445\u043e\u0447\u0443 \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430. \u041e\u043d \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043c\u043e\u0438\u043c \u0434\u0430\u043d\u043d\u044b\u043c \u0438 \u0431\u0443\u0434\u0435\u0442 \u0432\u0438\u0434\u0435\u0442\u044c \u0442\u043e \u0436\u0435, \u0447\u0442\u043e \u0438 \u0432\u044b.","users_add_cta":"Invite user by email","users_add_description":"\u042d\u0442\u043e\u0442 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u0431\u0443\u0434\u0435\u0442 \u0438\u043c\u0435\u0442\u044c \u0442\u0435 \u0436\u0435 \u043f\u0440\u0430\u0432\u0430, \u0447\u0442\u043e \u0438 \u0432\u044b, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0434\u0440\u0443\u0433\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0438\u0445 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 (\u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0432\u0430\u0441). \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u044b \u0434\u043e\u0432\u0435\u0440\u044f\u0435\u0442\u0435 \u044d\u0442\u043e\u043c\u0443 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0443.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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":"Invite a new user","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":"Pending invitations","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."}} diff --git a/public/js/langs/sv.json b/public/js/langs/sv.json new file mode 100644 index 00000000000..597469a4641 --- /dev/null +++ b/public/js/langs/sv.json @@ -0,0 +1 @@ +{"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":"Ha b\u00e4ttre relationer med dina n\u00e4ra och k\u00e4ra. Free Online CRM f\u00f6r v\u00e4nner och familj.","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","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":"S\u00e4ker?","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":"Underh\u00e5ll p\u00e5g\u00e5r. Vi \u00e4r snart tillbaka.","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":"1 fil vald...|{count} valda filer...","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":"En ny version finns tillg\u00e4nglig","footer_newsletter":"Nyhetsbrev","footer_privacy":"Integritetspolicy","footer_release":"Information om utgivningen","footer_remarks":"N\u00e5gra anm\u00e4rkningar?","footer_send_email":"Skicka ett e-postmeddelande till mig","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":"Laddar...","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_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_created_with_name_with_link":"Lade till :name<\/a> som en kontakt.","settings_log_contact_description_cleared_with_name":"Rensade beskrivningen av :name.","settings_log_contact_description_cleared_with_name_with_link":"Rensade beskrivningen av :name<\/a>.","settings_log_contact_description_updated_with_name":"Uppdaterade beskrivningen av :name.","settings_log_contact_description_updated_with_name_with_link":"Uppdaterad beskrivning av :name<\/a>.","settings_log_contact_work_updated_with_name":"Uppdaterade jobb information f\u00f6r :name.","settings_log_contact_work_updated_with_name_with_link":"Uppdaterade jobb information f\u00f6r :name<\/a>."},"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_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":"Rader per sida:","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":"N\u00e4sta foto","photo_previous":"F\u00f6reg\u00e5ende foto","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":"Arbetsinformationen har uppdaterats med framg\u00e5ng","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":"Inaktivera tv\u00e5faktorsautentisering f\u00f6r ditt konto. Var f\u00f6rsiktig, ditt konto kommer inte att s\u00e4kras l\u00e4ngre!","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":"Aktivera tv\u00e5faktorsautentisering f\u00f6r att \u00f6ka s\u00e4kerheten med ditt konto.","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":"\u00d6ppna din tv\u00e5faktorsautentisering mobilapp och skanna f\u00f6ljande QR-streckkod:","2fa_enable_otp_help":"Om din tv\u00e5faktorsautentisering inte st\u00f6der QR-streckkoder, ange f\u00f6ljande kod:","2fa_enable_otp_validate":"V\u00e4nligen validera den nya enheten du just angett:","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":"Det finns ingen auktoriserad klient \u00e4nnu.","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":"Arkivera alla dina kontakter","archive_desc":"Detta arkiverar alla kontakter p\u00e5 ditt konto.","archive_title":"Arkivera alla dina kontakter p\u00e5 ditt konto","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":"Vill du ta bort ditt konto? Varning: radering \u00e4r permanent och alla dina uppgifter kommer att raderas permanent. Din prenumeration (om du har n\u00e5gra) kommer ocks\u00e5 omedelbart att annulleras.","delete_notice":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort ditt konto? Det finns ingen \u00e5terv\u00e4ndo.","delete_other_desc":"Bara f\u00f6r att vara tydlig: dina uppgifter i huvuddatabasen kommer att raderas omedelbart. Men som beskrivs i v\u00e5r integritetspolicy, vi g\u00f6r dagliga s\u00e4kerhetskopior av databasen i h\u00e4ndelse av fel och denna backup h\u00e5lls i 30 dagar \u2013 d\u00e5 det \u00e4r helt borttaget. Det \u00e4r orealistiskt att f\u00f6rest\u00e4lla sig att vi kan g\u00e5 in alla s\u00e4kerhetskopior f\u00f6r att ta bort dina specifika data. F\u00f6rresten, denna data \u00e4r krypterad p\u00e5 mycket s\u00e4kra Amazon servrar och ingen har krypteringsnyckeln utom oss. D\u00e4rf\u00f6r kommer dina data att f\u00f6rsvinna helt inom 30 dagar fr\u00e5n alla s\u00e4kerhetskopior, och ingen kommer att veta dessa uppgifter n\u00e5gonsin existerat i f\u00f6rsta hand.","delete_title":"Radera ditt konto","email":"E-postadress","email_help":"Detta \u00e4r det e-postmeddelande som anv\u00e4nds f\u00f6r att logga in, och det \u00e4r d\u00e4r du f\u00e5r dina p\u00e5minnelser.","email_placeholder":"Ange e-postadress","export_be_patient":"Klicka p\u00e5 knappen f\u00f6r att starta exporten. Det kan ta flera minuter att bearbeta exporten \u2013 var t\u00e5lmodig och spamma inte knappen.","export_sql_cta":"Exportera till SQL","export_sql_explanation":"Exportera dina data i SQL-format kan du ta dina data och importera den till din egen Monica instans. Detta \u00e4r bara v\u00e4rdefullt om du har din egen server.","export_sql_link_instructions":"Obs: l\u00e4s instruktionerna<\/a> f\u00f6r att l\u00e4sa mer om hur du importerar denna fil till din instans.","export_title":"Exportera dina kontouppgifter","export_title_sql":"Exportera till 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":"L\u00e4gg till nya kontakter, hoppa \u00f6ver befintliga","import_upload_behaviour_help":"Obs: Byte kommer att ers\u00e4tta all data som finns i vCard, men kommer att beh\u00e5lla befintliga kontaktf\u00e4lt.","import_upload_behaviour_replace":"Ers\u00e4tt befintliga kontakter","import_upload_form_file":"Din .vcf<\/code> eller .vCard<\/code> -fil:","import_upload_rule_cant_revert":"Se till att data \u00e4r korrekt innan uppladdning, eftersom du inte kan \u00e5ngra uppladdningen.","import_upload_rule_format":"Vi st\u00f6djer .vcard<\/code> och .vcf<\/code> -filer.","import_upload_rule_instructions":"Exportera instruktioner f\u00f6r Kontakts.app (macOS)<\/a> och Google Kontakter<\/a>.","import_upload_rule_limit":"Filerna \u00e4r begr\u00e4nsade till 10MB.","import_upload_rule_multiple":"F\u00f6r nu, om dina kontakter har flera e-postadresser eller telefonnummer, kommer endast den f\u00f6rsta posten att plockas.","import_upload_rule_time":"Det kan ta upp till 1 minut att ladda upp kontakter och bearbeta dem. Ha t\u00e5lamod.","import_upload_rule_vcard":"Vi st\u00f6der formatet vCard 3.0, som \u00e4r standardformatet f\u00f6r Contacts.app (macOS) och Google Kontakter.","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":"Inget f\u00f6rnamn (obligatoriskt)","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_author":"Efter :name den :date","logs_title":"Allt som h\u00e4nde med detta konto","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":"Min kontakt","name":"Ditt namn: :name","name_order":"Namn order","name_order_firstname_lastname":" - John Svensson","name_order_firstname_lastname_nickname":" () - John Doe (Rambo)","name_order_firstname_nickname_lastname":" () - John (Rambo) Doe","name_order_lastname_firstname":" - Svensson John","name_order_lastname_firstname_nickname":" () - John Doe (Rambo)","name_order_lastname_nickname_firstname":" () - John (Rambo) Doe","name_order_nickname":" - Rambo","name_order_nickname_firstname_lastname":" ( ) - Rambo (John Doe)","password_btn":"\u00c4ndra l\u00f6senord","password_change":"Byt l\u00f6senord","password_current":"Nuvarande l\u00f6senord","password_current_placeholder":"Ange ditt nuvarande l\u00f6senord","password_new1":"Nytt l\u00f6senord","password_new1_placeholder":"Ange ett nytt l\u00f6senord","password_new2":"Bekr\u00e4ftelse","password_new2_placeholder":"Upprepa nytt l\u00f6senord","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":"En aktivitet som g\u00f6rs med en av dina kontakter kan ha en typ och en kategorityp. Ditt konto kommer som standard med en upps\u00e4ttning f\u00f6rdefinierade kategorityper, men du kan anpassa allt h\u00e4r.","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":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna kategori? Ta bort den kommer att ta bort alla associerade aktivitetstyper. \u00c5tg\u00e4rder som h\u00f6r till denna kategori kommer dock inte att p\u00e5verkas av denna borttagning.","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":"Hur ska vi namnge denna nya kategori?","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":"Hur ska vi namnge den nya aktivitetstypen?","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":"Kontakttypen har tagits bort med framg\u00e5ng.","personalization_contact_field_type_description":"H\u00e4r kan du konfigurera alla olika typer av kontaktf\u00e4lt som du kan associera till alla dina kontakter. Om det i framtiden uppst\u00e5r ett nytt socialt n\u00e4tverk, du kommer att kunna l\u00e4gga till denna nya typ av s\u00e4tt att kontakta dina kontakter h\u00e4r.","personalization_contact_field_type_edit_success":"Kontakttypen har uppdaterats.","personalization_contact_field_type_modal_delete_description":"\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r kontaktf\u00e4ltstypen? Borttagning av denna typ av kontaktf\u00e4lt kommer att ta bort all data med den h\u00e4r typen f\u00f6r alla dina kontakter.","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":"\u00c4r du s\u00e4ker p\u00e5 att du vill radera {name}?","personalization_genders_modal_delete_question":"Du har f\u00f6r n\u00e4rvarande {count} kontakt som har detta k\u00f6n. Om du tar bort detta k\u00f6n, vilket k\u00f6n ska denna kontakt ha?|Du har f\u00f6r n\u00e4rvarande {count} kontakter som har detta k\u00f6n. Om du tar bort detta k\u00f6n, vilket k\u00f6n ska dessa kontakter ha?","personalization_genders_modal_delete_question_default":"Detta k\u00f6n \u00e4r standard ett. Om du tar bort detta k\u00f6n, vilket blir n\u00e4sta standard?","personalization_genders_modal_edit":"Uppdatera k\u00f6nstyp","personalization_genders_modal_error":"V\u00e4lj ett giltigt k\u00f6n fr\u00e5n listan.","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":"En livsh\u00e4ndelse kan ha en typ och en kategori. Ditt konto kommer som standard med en upps\u00e4ttning f\u00f6rdefinierade kategorier och typer, men du kan anpassa livsh\u00e4ndelstyper h\u00e4r.","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":"Brutet ben","personalization_life_event_type_changed_beliefs":"\u00c4ndrad trosuppfattning","personalization_life_event_type_dentist":"Tandl\u00e4kare","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":"Hur ska vi namnge denna nya livsh\u00e4ndelstyp?","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":"Ny hobby","personalization_life_event_type_new_instrument":"Nytt instrument","personalization_life_event_type_new_job":"Nytt jobb","personalization_life_event_type_new_language":"Nytt spr\u00e5k","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":"Ny 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":"Tagit bort tandst\u00e4llning","personalization_life_event_type_retirement":"Pensionering","personalization_life_event_type_study_abroad":"Studera utomlands","personalization_life_event_type_surgery":"Kirurgi","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":"Anv\u00e4nder glas\u00f6gon eller kontaktlinser","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":"Vissa m\u00e4nniskor beh\u00f6ver inte alla funktioner. Nedan kan du v\u00e4xla specifika funktioner som anv\u00e4nds p\u00e5 ett kontaktblad. Denna \u00e4ndring kommer att p\u00e5verka ALLA dina kontakter. Observera att om du st\u00e4nger av en av dessa funktioner kommer data inte att f\u00f6rloras - vi kommer helt enkelt att d\u00f6lja funktionen.","personalization_module_save":"\u00c4ndringen har sparats","personalization_module_title":"Funktioner","personalization_reminder_rule_desc":"F\u00f6r varje p\u00e5minnelse om att du har angett kan vi skicka ett mail till dig n\u00e5gra dagar innan h\u00e4ndelsen intr\u00e4ffar. Du kan v\u00e4xla mellan dessa aviseringar h\u00e4r. Observera att dessa aviseringar endast g\u00e4ller m\u00e5natliga och \u00e5rliga p\u00e5minnelser.","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":"H\u00e4r kan du hitta olika inst\u00e4llningar f\u00f6r att konfigurera ditt konto. Dessa funktioner \u00e4r mer f\u00f6r \u201dpower users\u201d som vill ha maximal kontroll \u00f6ver Monica.","recovery_already_used_help":"Denna kod har redan anv\u00e4nts","recovery_clipboard":"Kopierat till urklipp","recovery_copy_help":"Kopiera till Urklipp","recovery_generate":"Generera nya koder...","recovery_generate_help":"Var medveten om att generering av nya koder kommer att ogiltigf\u00f6rklara tidigare genererade koder","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":"Tid p\u00e5 dagen p\u00e5minnelser b\u00f6r skickas","reminder_time_to_send_help":"F\u00f6r din information kommer din n\u00e4sta p\u00e5minnelse att skickas till {dateTime}<\/span>.","reset_cta":"\u00c5terst\u00e4ll konto","reset_desc":"Vill du \u00e5terst\u00e4lla ditt konto? Detta kommer att ta bort alla dina kontakter och data som \u00e4r kopplade till dem. Ditt konto kommer inte att raderas.","reset_notice":"\u00c4r du s\u00e4ker p\u00e5 att du vill \u00e5terst\u00e4lla ditt konto? Det finns ingen \u00e5terv\u00e4ndo.","reset_success":"Ditt konto har \u00e5terst\u00e4llts","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":"Hantering av taggar","sidebar_settings_users":"Anv\u00e4ndare","storage_account_info":"Ditt konto gr\u00e4ns: :accountLimit Mb \/ Din nuvarande anv\u00e4ndning: :currentAccountSize Mb (: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":"St\u00f6d projektet p\u00e5 l\u00e5ng sikt, s\u00e5 att vi kan inf\u00f6ra fler bra funktioner.","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":"Du f\u00e5r inte ha v\u00e4ntande inbjudningar","subscriptions_downgrade_rule_invitations_constraint":"Du har f\u00f6r n\u00e4rvarande 1 v\u00e4ntande inbjudan<\/a> skickad till people.|Du har :count v\u00e4ntande inbjudningar<\/a> skickad till folk.","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":"Tack s\u00e5 mycket f\u00f6r att ha provat den betalda planen. Vi forts\u00e4tter att l\u00e4gga till nya funktioner p\u00e5 Monica hela tiden \u2013 s\u00e5 du kanske vill komma tillbaka i framtiden f\u00f6r att se om du \u00e4r intresserad av att ta ett abonnemang igen.","subscriptions_downgrade_title":"Nedgradera ditt konto till den kostnadsfria planen","subscriptions_help_change_desc":"Du kan avbryta n\u00e4r som helst, inga fr\u00e5gor st\u00e4lls och helt sj\u00e4lv \u2013 du beh\u00f6ver inte kontakta support eller vad som helst. Ni kommer dock inte att \u00e5terbetalas f\u00f6r den aktuella perioden.","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":"Finns det n\u00e5gon gr\u00e4ns f\u00f6r hur m\u00e5nga kontakter vi kan ha p\u00e5 den fria planen?","subscriptions_help_opensource_desc":"Monica \u00e4r ett projekt med \u00f6ppen k\u00e4llkod. Detta inneb\u00e4r att den \u00e4r byggd av en helt v\u00e4lvillig gemenskap som bara vill ge ett bra verktyg f\u00f6r det st\u00f6rre b\u00e4sta. Att vara \u00f6ppen k\u00e4llkod inneb\u00e4r att koden \u00e4r allm\u00e4nt tillg\u00e4nglig p\u00e5 GitHub, och alla kan inspektera den, \u00e4ndra den eller f\u00f6rb\u00e4ttra den. Alla pengar vi samlar in \u00e4r dedikerade till att bygga b\u00e4ttre funktioner, har mer kraftfulla servrar, hj\u00e4lpa till att betala r\u00e4kningarna. Tack f\u00f6r din hj\u00e4lp. Vi kunde inte g\u00f6ra det utan dig \u2013 bokstavligen.","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":"Vi debiterar ditt kort :price nu. N\u00e4sta avgift kommer att vara den :date. Om du n\u00e5gonsin \u00e4ndrar dig kan du avbryta n\u00e4r som helst, inga fr\u00e5gor.","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":"Taggar fungerar som mappar, men du kan l\u00e4gga till fler \u00e4n en tagg till en kontakt. G\u00e5 till en kontakt och tagga en v\u00e4n, precis under namnet. N\u00e4r en kontakt \u00e4r taggad, g\u00e5 tillbaka hit f\u00f6r att hantera alla taggar p\u00e5 ditt konto.","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":"Jag bekr\u00e4ftar att jag vill bjuda in den h\u00e4r anv\u00e4ndaren till mitt konto. Personen kommer \u00e5t ALLA mina uppgifter och ser exakt vad jag ser.","users_add_cta":"Bjud in anv\u00e4ndare via e-post","users_add_description":"Denna person kommer att ha samma r\u00e4ttigheter som du, inklusive att bjuda in andra anv\u00e4ndare och ta bort dem (inklusive du). Se d\u00e4rf\u00f6r till att du litar p\u00e5 den h\u00e4r personen.","users_add_email_field":"Ange e-post f\u00f6r den person du vill bjuda in","users_add_title":"Bjud in en ny anv\u00e4ndare via e-post till ditt konto","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."}} diff --git a/public/js/langs/tr.json b/public/js/langs/tr.json index 2c16bca3643..89c658712fe 100644 --- a/public/js/langs/tr.json +++ b/public/js/langs/tr.json @@ -1 +1 @@ -{"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\u015fkilere sahip olun. 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","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":"{count} dosya se\u00e7ildi...","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":"Yeni s\u00fcr\u00fcm mevcut","footer_newsletter":"Haber B\u00fclteni","footer_privacy":"Gizlilik politikas\u0131","footer_release":"S\u00fcr\u00fcm notlar\u0131","footer_remarks":"Herhangi bir notunuz var m\u0131?","footer_send_email":"Bana bir e-posta g\u00f6nder","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...","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":"An error occured trying to register the user","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_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_created_with_name_with_link":":name<\/a> ba\u011flant\u0131 olarak eklendi.","settings_log_contact_description_cleared_with_name":":name a\u00e7\u0131klamas\u0131 temizlendi.","settings_log_contact_description_cleared_with_name_with_link":":name<\/a> a\u00e7\u0131klamas\u0131 temizlendi.","settings_log_contact_description_updated_with_name":":name a\u00e7\u0131klamas\u0131 g\u00fcncellendi.","settings_log_contact_description_updated_with_name_with_link":":name<\/a> a\u00e7\u0131klamas\u0131 g\u00fcncellendi.","settings_log_contact_work_updated_with_name":":name i\u015f bilgileri g\u00fcncellendi.","settings_log_contact_work_updated_with_name_with_link":":name<\/a> 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":"Crop new avatar photo","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_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":"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":"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":"Sayfa ba\u015f\u0131na sat\u0131r:","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","photo_previous":"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":"\u0130\u015f bilgileri ba\u015far\u0131l\u0131 bir \u015fekilde g\u00fcncellendi","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":"Hesab\u0131n\u0131z i\u00e7in \u0130ki Ad\u0131ml\u0131 Kimlik Do\u011frulamas\u0131n\u0131 devre d\u0131\u015f\u0131 b\u0131rak\u0131n. Dikkatli olun, hesab\u0131n\u0131z art\u0131k g\u00fcvende olmayacak!","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":"Hesap g\u00fcvenli\u011finizi art\u0131rmak i\u00e7in iki a\u015famal\u0131 kimlik do\u011frulamas\u0131n\u0131 etkinle\u015ftirin.","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":"\u0130ki a\u015famal\u0131 kimlik do\u011frulama mobil uygulaman\u0131z\u0131 a\u00e7\u0131n ve a\u015fa\u011f\u0131daki QR barkodunu taray\u0131n:","2fa_enable_otp_help":"\u0130ki ad\u0131ml\u0131 kimlik do\u011frulama mobil uygulaman\u0131z QR barkodlar\u0131n\u0131 desteklemiyorsa, a\u015fa\u011f\u0131daki kodu girin:","2fa_enable_otp_validate":"L\u00fctfen az \u00f6nce ayarlad\u0131\u011f\u0131n\u0131z yeni cihaz\u0131 do\u011frulay\u0131n:","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":"T\u00fcm ki\u015filerinizi ar\u015fivleyin","archive_desc":"Bu, hesab\u0131n\u0131zdaki t\u00fcm ki\u015fileri ar\u015fivleyecektir.","archive_title":"Hesab\u0131n\u0131zdaki t\u00fcm ki\u015filerinizi ar\u015fivleyin","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":"Hesab\u0131n\u0131z\u0131 silmek istiyor musunuz? Uyar\u0131: silme kal\u0131c\u0131d\u0131r ve t\u00fcm verileriniz kal\u0131c\u0131 olarak silinecektir. (Varsa) aboneli\u011finiz de hemen iptal edilecektir.","delete_notice":"Hesab\u0131n\u0131z\u0131 silmek istedi\u011finizden emin misiniz? Geri d\u00f6n\u00fc\u015f yok.","delete_other_desc":"A\u00e7\u0131k olmak gerekirse: ana veri taban\u0131ndaki verileriniz hemen silinecektir. Ancak, gizlilik politikam\u0131zda a\u00e7\u0131kland\u0131\u011f\u0131 gibi, hata durumlar\u0131na kar\u015f\u0131 veri taban\u0131n\u0131n g\u00fcnl\u00fck yedeklemesini yapar\u0131z ve bu yedekleme 30 g\u00fcn boyunca saklan\u0131r \u2013 daha sonra tamamen silinir. Belirli verilerinizi silmek i\u00e7in t\u00fcm yedeklemeleri kontrol edece\u011fimizi hayal etmek ger\u00e7ek\u00e7i de\u011fildir. Bu arada, bu veriler \u00e7ok g\u00fcvenli Amazon sunucular\u0131nda \u015fifrelenmi\u015ftir ve bizim d\u0131\u015f\u0131m\u0131zda hi\u00e7 kimse \u015fifreleme anahtar\u0131na sahip de\u011fildir. Bu nedenle, verileriniz 30 g\u00fcn i\u00e7inde t\u00fcm yedeklemelerden tamamen kaybolacak ve hi\u00e7 kimse bu verilerin var oldu\u011funu dahi bilemeyecektir.","delete_title":"Hesab\u0131n\u0131z\u0131 silin","email":"E-posta adresi","email_help":"Bu giri\u015f yapmak i\u00e7in kullanaca\u011f\u0131n ve hat\u0131rlat\u0131c\u0131lar\u0131n\u0131n g\u00f6nderilece\u011fi e-posta adresidir.","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 s\u00fcrekli basmay\u0131n.","export_sql_cta":"SQL Olarak Aktar","export_sql_explanation":"Verilerinizi SQL format\u0131nda d\u0131\u015fa aktarmak, verilerinizi al\u0131p kendi Monica \u00f6rne\u011finizde i\u00e7e aktarman\u0131za olanak tan\u0131r. Bu, yaln\u0131zca kendi sunucunuz varsa de\u011ferlidir.","export_sql_link_instructions":"Not: bu dosyay\u0131 kendi \u00f6rne\u011finizde i\u00e7e aktarmak hakk\u0131nda daha fazla bilgi sahibi olmak i\u00e7in talimatlar\u0131 okuyun<\/a>.","export_title":"Hesap bilgilerini d\u0131\u015far\u0131 aktar","export_title_sql":"SQL Olarak 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":"Yeni ki\u015fileri ekle, mevcutlar\u0131 atla","import_upload_behaviour_help":"Not: De\u011fi\u015ftirme, vCard'da bulunan t\u00fcm verileri de\u011fi\u015ftirecek, ancak mevcut ki\u015fi alanlar\u0131n\u0131 koruyacakt\u0131r.","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":"Kar\u015f\u0131ya y\u00fcklemeyi geri alamayaca\u011f\u0131n\u0131z i\u00e7in, y\u00fcklemeden \u00f6nce verilerin do\u011frulu\u011fundan emin olun.","import_upload_rule_format":".vcard<\/code> ve .vcf<\/code> dosyalar\u0131n\u0131 destekliyoruz.","import_upload_rule_instructions":"Contacts.app (macOS)<\/a> ve Google Ki\u015filer<\/a> i\u00e7in d\u0131\u015fa aktarma talimatlar\u0131.","import_upload_rule_limit":"Dosyalar 10MB ile s\u0131n\u0131rl\u0131d\u0131r.","import_upload_rule_multiple":"\u015eimdilik, ki\u015filerinizin birden fazla e-posta adresi veya telefon numaras\u0131 varsa, yaln\u0131zca birincisi al\u0131nacakt\u0131r.","import_upload_rule_time":"Ki\u015fileri kar\u015f\u0131ya y\u00fcklemek ve i\u015flemek 1 dakika kadar s\u00fcrebilir. Sab\u0131rl\u0131 olun.","import_upload_rule_vcard":"Contacts.app (macOS) ve Google Ki\u015filer i\u00e7in varsay\u0131lan format olan vCard 3.0 format\u0131n\u0131 destekliyoruz.","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_tr":"T\u00fcrk\u00e7e","locale_zh":"\u00c7ince (Basitle\u015ftirilmi\u015f)","locale_zh-TW":"Chinese Traditional","logs_author":":date tarihinde :name ad\u0131na g\u00f6re","logs_title":"Bu hesaba ait t\u00fcm kay\u0131tlar","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":"Ki\u015filerim","name":"Ad\u0131n\u0131z: :name","name_order":"\u0130sim g\u00f6sterimi","name_order_firstname_lastname":" - Mehmet A\u011fa","name_order_firstname_lastname_nickname":" () - Mehmet A\u011fa (Sar\u0131 \u00c7izmeli)","name_order_firstname_nickname_lastname":" () - Mehmet (Sar\u0131 \u00c7izmeli) A\u011fa","name_order_lastname_firstname":" - A\u011fa Mehmet","name_order_lastname_firstname_nickname":" () - A\u011fa Mehmet (Sar\u0131 \u00c7izmeli)","name_order_lastname_nickname_firstname":" () - A\u011fa (Sar\u0131 \u00c7izmeli) Mehmet","name_order_nickname":" - Ahmet","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u015eifreyi De\u011fi\u015ftir","password_change":"\u015eifre de\u011fi\u015fikli\u011fi","password_current":"Ge\u00e7erli \u015fifre","password_current_placeholder":"Ge\u00e7erli \u015fifrenizi giriniz","password_new1":"Yeni \u015fifre","password_new1_placeholder":"Yeni \u015fifrenizi girin","password_new2":"Do\u011frulama","password_new2_placeholder":"Yeni \u015fifrenizi tekrar girin","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":"Ki\u015filerinizden biriyle yap\u0131lan bir aktivitenin bir t\u00fcr\u00fc ve bir kategori t\u00fcr\u00fc olabilir. Hesab\u0131n\u0131z varsay\u0131lan olarak, \u00f6nceden tan\u0131mlanm\u0131\u015f bir dizi kategori t\u00fcr\u00fcyle gelmektedir, ancak burada her \u015feyi \u00f6zelle\u015ftirebilirsiniz.","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":"Bu kategoriyi silmek istedi\u011finize emin misiniz? Silme i\u015flemi, ili\u015fkili t\u00fcm aktivite t\u00fcrlerini silecektir. Ancak, bu kategoriye ait aktiviteler bu silme i\u015fleminden etkilenmeyecektir.","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":"Bu yeni kategoriyi nas\u0131l adland\u0131rmal\u0131y\u0131z?","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":"Bu yeni aktivite t\u00fcr\u00fcn\u00fc nas\u0131l adland\u0131rmal\u0131y\u0131z?","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":"Ki\u015fi alan\u0131 t\u00fcr\u00fc ba\u015far\u0131yla silindi.","personalization_contact_field_type_description":"Burada, t\u00fcm ki\u015filerinizle ili\u015fkilendirebilece\u011finiz farkl\u0131 tipteki ki\u015fi alanlar\u0131n\u0131 yap\u0131land\u0131rabilirsiniz. Gelecekte yeni bir sosyal a\u011f ortaya \u00e7\u0131karsa, ki\u015filerinizle ileti\u015fim kurman\u0131n bu yeni yollar\u0131n\u0131 buradan ekleyebileceksiniz.","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":"Bu ki\u015fi alan\u0131 t\u00fcr\u00fcn\u00fc silmek istedi\u011finize emin misiniz? Bu t\u00fcr bir ki\u015fi alan\u0131n\u0131 silmek, t\u00fcm ki\u015fileriniz i\u00e7in bu t\u00fcrdeki T\u00dcM verileri silecektir.","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":"{name} silmek istedi\u011finizden emin misiniz?","personalization_genders_modal_delete_question":"\u015eu anda bu cinsiyete sahip {count} ki\u015finiz bulunmaktad\u0131r. Bu cinsiyeti silerseniz, bu ki\u015fi(ler) hangi cinsiyete sahip olmal\u0131d\u0131r?","personalization_genders_modal_delete_question_default":"Bu cinsiyet varsay\u0131lan oland\u0131r. Bu cinsiyeti silerseniz, sonraki varsay\u0131lan hangisi olacakt\u0131r?","personalization_genders_modal_edit":"Cinsiyet t\u00fcr\u00fcn\u00fc d\u00fczenle","personalization_genders_modal_error":"L\u00fctfen listeden ge\u00e7erli bir cinsiyet se\u00e7in.","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_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_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_anniversary":"Y\u0131ld\u00f6n\u00fcm\u00fc","personalization_life_event_type_bought_a_home":"Ev alma","personalization_life_event_type_broken_bone":"K\u0131r\u0131k kemik","personalization_life_event_type_changed_beliefs":"De\u011fi\u015fen inan\u00e7lar","personalization_life_event_type_dentist":"Di\u015f Hekimi","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_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":"Yeni hobi","personalization_life_event_type_new_instrument":"Yeni enstr\u00fcman","personalization_life_event_type_new_job":"Yeni i\u015f","personalization_life_event_type_new_language":"Yeni dil","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":"Yeni spor","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":"Kald\u0131r\u0131lan di\u015f telleri","personalization_life_event_type_retirement":"Emeklilik","personalization_life_event_type_study_abroad":"Yurtd\u0131\u015f\u0131nda E\u011fitim","personalization_life_event_type_surgery":"Ameliyat","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":"G\u00f6zl\u00fck ya da lens kullan\u0131m\u0131","personalization_life_event_type_weight_loss":"Kilo verme","personalization_module_desc":"Baz\u0131 insanlar\u0131n t\u00fcm \u00f6zelliklere ihtiyac\u0131 yoktur. A\u015fa\u011f\u0131da, bir ki\u015fi sayfas\u0131nda kullan\u0131lan belirli \u00f6zellikleri de\u011fi\u015ftirebilirsiniz. Bu de\u011fi\u015fiklik T\u00dcM ki\u015filerinizi etkileyecektir. Bu \u00f6zelliklerden birini kapat\u0131rsan\u0131z, verilerin kaybolmayaca\u011f\u0131n\u0131 - sadece \u00f6zelli\u011fi gizleyece\u011fimizi unutmay\u0131n.","personalization_module_save":"De\u011fi\u015fiklik kaydedildi","personalization_module_title":"\u00d6zellikler","personalization_reminder_rule_desc":"Ayarlad\u0131\u011f\u0131n\u0131z her hat\u0131rlatma i\u00e7in, olay ger\u00e7ekle\u015fmeden birka\u00e7 g\u00fcn \u00f6nce size bir e-posta g\u00f6nderebiliriz. Bu bildirimleri buradan de\u011fi\u015ftirebilirsiniz. Bu bildirimlerin sadece ayl\u0131k ve y\u0131ll\u0131k hat\u0131rlatmalar i\u00e7in ge\u00e7erli oldu\u011funu unutmay\u0131n.","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":"Burada, hesab\u0131n\u0131z\u0131 yap\u0131land\u0131rmak i\u00e7in farkl\u0131 ayarlar bulabilirsiniz. Bu \u00f6zellikler Monica \u00fczerinde maksimum kontrol sahibi olmak isteyen \u201cuzman kullan\u0131c\u0131lar\u201d i\u00e7indir.","recovery_already_used_help":"Bu kod zaten kullan\u0131lm\u0131\u015f","recovery_clipboard":"Kodlar panoya kopyaland\u0131","recovery_copy_help":"Kodlar\u0131 panonuza kopyalay\u0131n","recovery_generate":"Yeni kodlar olu\u015ftur...","recovery_generate_help":"Yeni kod olu\u015fturman\u0131n daha \u00f6nce olu\u015fturulan kodlar\u0131 ge\u00e7ersiz k\u0131laca\u011f\u0131n\u0131 unutmay\u0131n","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":"G\u00fcn i\u00e7inde hat\u0131rlatmalar\u0131n g\u00f6nderilmesi gereken saat","reminder_time_to_send_help":"Bilginize, bir sonraki hat\u0131rlat\u0131c\u0131n\u0131z {dateTime}<\/span> tarihinde g\u00f6nderilecek.","reset_cta":"Hesab\u0131 s\u0131f\u0131rla","reset_desc":"Hesab\u0131n\u0131z\u0131 s\u0131f\u0131rlamak ister misiniz? Bu, t\u00fcm ki\u015filerinizi ve onlarla ili\u015fkili verileri kald\u0131racakt\u0131r. Hesab\u0131n\u0131z silinmeyecektir.","reset_notice":"Hesab\u0131n\u0131z\u0131 s\u0131f\u0131rlamak istedi\u011finizden emin misiniz? Geri d\u00f6n\u00fc\u015f yok.","reset_success":"Hesab\u0131n\u0131z ba\u015far\u0131yla s\u0131f\u0131rland\u0131","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":"Hesap limitiniz: :accountLimit Mb \/ Mevcut kullan\u0131m\u0131n\u0131z: :currentAccountSize Mb (: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":"Projeye uzun vadede destek olun, b\u00f6ylece daha fazla harika \u00f6zellikler sunabiliriz.","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":"Bekleyen davetiniz olmamal\u0131d\u0131r","subscriptions_downgrade_rule_invitations_constraint":"\u0130nsanlara g\u00f6nderdi\u011finiz :count adet bekleyen davetiniz<\/a> bulunmaktad\u0131r.","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":"\u00dccretli plan\u0131 denedi\u011fin i\u00e7in \u00e7ok te\u015fekk\u00fcr ederiz. Monica'ya s\u00fcrekli yeni \u00f6zellikler eklemeye devam ediyoruz \u2013 bu y\u00fczden tekrar abonelik almakla ilgilenip ilgilenmeyece\u011fini g\u00f6rmek i\u00e7in gelecekte tekrar gelmek isteyebilirsin.","subscriptions_downgrade_title":"Hesab\u0131n\u0131z\u0131 \u00fccretsiz plana d\u00fc\u015f\u00fcr\u00fcn","subscriptions_help_change_desc":"Herhangi bir an iptal edebilirsin, sorgu sualsiz, kendi ba\u015f\u0131na \u2013 destek ile ileti\u015fime ge\u00e7men falan gerekmez. Ama yine de, \u015fu anki abonelik periyodunun iadesini alamazs\u0131n.","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":"\u00dccretsiz planda sahip olabilece\u011fimiz ki\u015fi say\u0131s\u0131nda bir s\u0131n\u0131r var m\u0131d\u0131r?","subscriptions_help_opensource_desc":"Monica a\u00e7\u0131k kaynakl\u0131 bir projedir. Bu, sadece iyi ama\u00e7lar i\u00e7in harika bir ara\u00e7 sa\u011flamak isteyen tamamen yard\u0131msever bir topluluk taraf\u0131ndan in\u015fa edildi\u011fi anlam\u0131na gelmektedir. A\u00e7\u0131k kaynak olmas\u0131, kodlar\u0131n GitHub'da herkese a\u00e7\u0131k olarak mevcut oldu\u011fu anlam\u0131na gelmektedir ve herkes onu inceleyebilir, de\u011fi\u015ftirebilir veya geli\u015ftirebilir. Toplad\u0131\u011f\u0131m\u0131z t\u00fcm para, daha iyi \u00f6zellikler geli\u015ftirmek, daha g\u00fc\u00e7l\u00fc sunuculara sahip olmak, faturalar\u0131 \u00f6demek i\u00e7in yard\u0131m etmeye adanm\u0131\u015ft\u0131r. Yard\u0131m\u0131n\u0131z i\u00e7in te\u015fekk\u00fcrler. Kelimenin tam anlam\u0131yla, siz olmadan yapamazd\u0131k.","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":"Kart\u0131n\u0131zdan \u015fimdi :price \u00e7ekim yapaca\u011f\u0131z. Bir sonraki \u00e7ekim :date tarihinde olacak. E\u011fer fikrinizi de\u011fi\u015ftirirseniz, istedi\u011finiz zaman iptal edebilirsiniz, hi\u00e7bir soru sorulmaz.","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":"Etiketler klas\u00f6rler gibi \u00e7al\u0131\u015f\u0131r, ancak bir ki\u015fiye birden fazla etiket ekleyebilirsiniz. Bir ki\u015fiye gidin ve ad\u0131n\u0131n hemen alt\u0131nda bir arkada\u015f\u0131 etiketleyin. Bir ki\u015fi etiketlendikten sonra, hesab\u0131n\u0131zdaki t\u00fcm etiketleri y\u00f6netmek i\u00e7in buraya geri gelin.","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":"Bu kullan\u0131c\u0131y\u0131 kendi hesab\u0131ma davet etmek istedi\u011fimi onayl\u0131yorum. Bu ki\u015fi benim B\u00dcT\u00dcN verilerime eri\u015febilecek ve g\u00f6rd\u00fc\u011f\u00fcm her \u015feyi g\u00f6rebilecek.","users_add_cta":"E-postayla kullan\u0131c\u0131 davet et","users_add_description":"Bu kullan\u0131c\u0131, di\u011fer kullan\u0131c\u0131lar\u0131 davet etmek ve onlar\u0131 silmek (siz dahil) de dahil olmak \u00fczere, sizinle ayn\u0131 haklara sahip olacakt\u0131r. Bu nedenle, bu ki\u015fiye g\u00fcvendi\u011finizden emin olun.","users_add_email_field":"Davet etmek istedi\u011finiz ki\u015finin e-posta adresini girin","users_add_title":"E-posta ile hesab\u0131n\u0131za yeni bir kullan\u0131c\u0131 davet edin","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."}} +{"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\u015fkilere sahip olun. 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","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":"{count} dosya se\u00e7ildi...","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":"Yeni s\u00fcr\u00fcm mevcut","footer_newsletter":"Haber B\u00fclteni","footer_privacy":"Gizlilik politikas\u0131","footer_release":"S\u00fcr\u00fcm notlar\u0131","footer_remarks":"Herhangi bir notunuz var m\u0131?","footer_send_email":"Bana bir e-posta g\u00f6nder","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...","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_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_created_with_name_with_link":":name<\/a> ba\u011flant\u0131 olarak eklendi.","settings_log_contact_description_cleared_with_name":":name a\u00e7\u0131klamas\u0131 temizlendi.","settings_log_contact_description_cleared_with_name_with_link":":name<\/a> a\u00e7\u0131klamas\u0131 temizlendi.","settings_log_contact_description_updated_with_name":":name a\u00e7\u0131klamas\u0131 g\u00fcncellendi.","settings_log_contact_description_updated_with_name_with_link":":name<\/a> a\u00e7\u0131klamas\u0131 g\u00fcncellendi.","settings_log_contact_work_updated_with_name":":name i\u015f bilgileri g\u00fcncellendi.","settings_log_contact_work_updated_with_name_with_link":":name<\/a> 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_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":"Sayfa ba\u015f\u0131na sat\u0131r:","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":"Sonraki foto\u011fraf","photo_previous":"\u00d6nceki foto\u011fraf","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":"\u0130\u015f bilgileri ba\u015far\u0131l\u0131 bir \u015fekilde g\u00fcncellendi","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":"Hesab\u0131n\u0131z i\u00e7in \u0130ki Ad\u0131ml\u0131 Kimlik Do\u011frulamas\u0131n\u0131 devre d\u0131\u015f\u0131 b\u0131rak\u0131n. Dikkatli olun, hesab\u0131n\u0131z art\u0131k g\u00fcvende olmayacak!","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":"Hesap g\u00fcvenli\u011finizi art\u0131rmak i\u00e7in iki a\u015famal\u0131 kimlik do\u011frulamas\u0131n\u0131 etkinle\u015ftirin.","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":"\u0130ki a\u015famal\u0131 kimlik do\u011frulama mobil uygulaman\u0131z\u0131 a\u00e7\u0131n ve a\u015fa\u011f\u0131daki QR barkodunu taray\u0131n:","2fa_enable_otp_help":"\u0130ki ad\u0131ml\u0131 kimlik do\u011frulama mobil uygulaman\u0131z QR barkodlar\u0131n\u0131 desteklemiyorsa, a\u015fa\u011f\u0131daki kodu girin:","2fa_enable_otp_validate":"L\u00fctfen az \u00f6nce ayarlad\u0131\u011f\u0131n\u0131z yeni cihaz\u0131 do\u011frulay\u0131n:","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":"T\u00fcm ki\u015filerinizi ar\u015fivleyin","archive_desc":"Bu, hesab\u0131n\u0131zdaki t\u00fcm ki\u015fileri ar\u015fivleyecektir.","archive_title":"Hesab\u0131n\u0131zdaki t\u00fcm ki\u015filerinizi ar\u015fivleyin","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":"Hesab\u0131n\u0131z\u0131 silmek istiyor musunuz? Uyar\u0131: silme kal\u0131c\u0131d\u0131r ve t\u00fcm verileriniz kal\u0131c\u0131 olarak silinecektir. (Varsa) aboneli\u011finiz de hemen iptal edilecektir.","delete_notice":"Hesab\u0131n\u0131z\u0131 silmek istedi\u011finizden emin misiniz? Geri d\u00f6n\u00fc\u015f yok.","delete_other_desc":"A\u00e7\u0131k olmak gerekirse: ana veri taban\u0131ndaki verileriniz hemen silinecektir. Ancak, gizlilik politikam\u0131zda a\u00e7\u0131kland\u0131\u011f\u0131 gibi, hata durumlar\u0131na kar\u015f\u0131 veri taban\u0131n\u0131n g\u00fcnl\u00fck yedeklemesini yapar\u0131z ve bu yedekleme 30 g\u00fcn boyunca saklan\u0131r \u2013 daha sonra tamamen silinir. Belirli verilerinizi silmek i\u00e7in t\u00fcm yedeklemeleri kontrol edece\u011fimizi hayal etmek ger\u00e7ek\u00e7i de\u011fildir. Bu arada, bu veriler \u00e7ok g\u00fcvenli Amazon sunucular\u0131nda \u015fifrelenmi\u015ftir ve bizim d\u0131\u015f\u0131m\u0131zda hi\u00e7 kimse \u015fifreleme anahtar\u0131na sahip de\u011fildir. Bu nedenle, verileriniz 30 g\u00fcn i\u00e7inde t\u00fcm yedeklemelerden tamamen kaybolacak ve hi\u00e7 kimse bu verilerin var oldu\u011funu dahi bilemeyecektir.","delete_title":"Hesab\u0131n\u0131z\u0131 silin","email":"E-posta adresi","email_help":"Bu giri\u015f yapmak i\u00e7in kullanaca\u011f\u0131n ve hat\u0131rlat\u0131c\u0131lar\u0131n\u0131n g\u00f6nderilece\u011fi e-posta adresidir.","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 s\u00fcrekli basmay\u0131n.","export_sql_cta":"SQL Olarak Aktar","export_sql_explanation":"Verilerinizi SQL format\u0131nda d\u0131\u015fa aktarmak, verilerinizi al\u0131p kendi Monica \u00f6rne\u011finizde i\u00e7e aktarman\u0131za olanak tan\u0131r. Bu, yaln\u0131zca kendi sunucunuz varsa de\u011ferlidir.","export_sql_link_instructions":"Not: bu dosyay\u0131 kendi \u00f6rne\u011finizde i\u00e7e aktarmak hakk\u0131nda daha fazla bilgi sahibi olmak i\u00e7in talimatlar\u0131 okuyun<\/a>.","export_title":"Hesap bilgilerini d\u0131\u015far\u0131 aktar","export_title_sql":"SQL Olarak 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":"Yeni ki\u015fileri ekle, mevcutlar\u0131 atla","import_upload_behaviour_help":"Not: De\u011fi\u015ftirme, vCard'da bulunan t\u00fcm verileri de\u011fi\u015ftirecek, ancak mevcut ki\u015fi alanlar\u0131n\u0131 koruyacakt\u0131r.","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":"Kar\u015f\u0131ya y\u00fcklemeyi geri alamayaca\u011f\u0131n\u0131z i\u00e7in, y\u00fcklemeden \u00f6nce verilerin do\u011frulu\u011fundan emin olun.","import_upload_rule_format":".vcard<\/code> ve .vcf<\/code> dosyalar\u0131n\u0131 destekliyoruz.","import_upload_rule_instructions":"Contacts.app (macOS)<\/a> ve Google Ki\u015filer<\/a> i\u00e7in d\u0131\u015fa aktarma talimatlar\u0131.","import_upload_rule_limit":"Dosyalar 10MB ile s\u0131n\u0131rl\u0131d\u0131r.","import_upload_rule_multiple":"\u015eimdilik, ki\u015filerinizin birden fazla e-posta adresi veya telefon numaras\u0131 varsa, yaln\u0131zca birincisi al\u0131nacakt\u0131r.","import_upload_rule_time":"Ki\u015fileri kar\u015f\u0131ya y\u00fcklemek ve i\u015flemek 1 dakika kadar s\u00fcrebilir. Sab\u0131rl\u0131 olun.","import_upload_rule_vcard":"Contacts.app (macOS) ve Google Ki\u015filer i\u00e7in varsay\u0131lan format olan vCard 3.0 format\u0131n\u0131 destekliyoruz.","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_author":":date tarihinde :name ad\u0131na g\u00f6re","logs_title":"Bu hesaba ait t\u00fcm kay\u0131tlar","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":"Ki\u015filerim","name":"Ad\u0131n\u0131z: :name","name_order":"\u0130sim g\u00f6sterimi","name_order_firstname_lastname":" - Mehmet A\u011fa","name_order_firstname_lastname_nickname":" () - Mehmet A\u011fa (Sar\u0131 \u00c7izmeli)","name_order_firstname_nickname_lastname":" () - Mehmet (Sar\u0131 \u00c7izmeli) A\u011fa","name_order_lastname_firstname":" - A\u011fa Mehmet","name_order_lastname_firstname_nickname":" () - A\u011fa Mehmet (Sar\u0131 \u00c7izmeli)","name_order_lastname_nickname_firstname":" () - A\u011fa (Sar\u0131 \u00c7izmeli) Mehmet","name_order_nickname":" - Ahmet","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u015eifreyi De\u011fi\u015ftir","password_change":"\u015eifre de\u011fi\u015fikli\u011fi","password_current":"Ge\u00e7erli \u015fifre","password_current_placeholder":"Ge\u00e7erli \u015fifrenizi giriniz","password_new1":"Yeni \u015fifre","password_new1_placeholder":"Yeni \u015fifrenizi girin","password_new2":"Do\u011frulama","password_new2_placeholder":"Yeni \u015fifrenizi tekrar girin","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":"Ki\u015filerinizden biriyle yap\u0131lan bir aktivitenin bir t\u00fcr\u00fc ve bir kategori t\u00fcr\u00fc olabilir. Hesab\u0131n\u0131z varsay\u0131lan olarak, \u00f6nceden tan\u0131mlanm\u0131\u015f bir dizi kategori t\u00fcr\u00fcyle gelmektedir, ancak burada her \u015feyi \u00f6zelle\u015ftirebilirsiniz.","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":"Bu kategoriyi silmek istedi\u011finize emin misiniz? Silme i\u015flemi, ili\u015fkili t\u00fcm aktivite t\u00fcrlerini silecektir. Ancak, bu kategoriye ait aktiviteler bu silme i\u015fleminden etkilenmeyecektir.","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":"Bu yeni kategoriyi nas\u0131l adland\u0131rmal\u0131y\u0131z?","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":"Bu yeni aktivite t\u00fcr\u00fcn\u00fc nas\u0131l adland\u0131rmal\u0131y\u0131z?","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":"Ki\u015fi alan\u0131 t\u00fcr\u00fc ba\u015far\u0131yla silindi.","personalization_contact_field_type_description":"Burada, t\u00fcm ki\u015filerinizle ili\u015fkilendirebilece\u011finiz farkl\u0131 tipteki ki\u015fi alanlar\u0131n\u0131 yap\u0131land\u0131rabilirsiniz. Gelecekte yeni bir sosyal a\u011f ortaya \u00e7\u0131karsa, ki\u015filerinizle ileti\u015fim kurman\u0131n bu yeni yollar\u0131n\u0131 buradan ekleyebileceksiniz.","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":"Bu ki\u015fi alan\u0131 t\u00fcr\u00fcn\u00fc silmek istedi\u011finize emin misiniz? Bu t\u00fcr bir ki\u015fi alan\u0131n\u0131 silmek, t\u00fcm ki\u015fileriniz i\u00e7in bu t\u00fcrdeki T\u00dcM verileri silecektir.","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":"{name} silmek istedi\u011finizden emin misiniz?","personalization_genders_modal_delete_question":"\u015eu anda bu cinsiyete sahip {count} ki\u015finiz bulunmaktad\u0131r. Bu cinsiyeti silerseniz, bu ki\u015fi(ler) hangi cinsiyete sahip olmal\u0131d\u0131r?","personalization_genders_modal_delete_question_default":"Bu cinsiyet varsay\u0131lan oland\u0131r. Bu cinsiyeti silerseniz, sonraki varsay\u0131lan hangisi olacakt\u0131r?","personalization_genders_modal_edit":"Cinsiyet t\u00fcr\u00fcn\u00fc d\u00fczenle","personalization_genders_modal_error":"L\u00fctfen listeden ge\u00e7erli bir cinsiyet se\u00e7in.","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 by default with a set of predefined categories and types, 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":"K\u0131r\u0131k kemik","personalization_life_event_type_changed_beliefs":"De\u011fi\u015fen inan\u00e7lar","personalization_life_event_type_dentist":"Di\u015f Hekimi","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":"How 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":"Yeni hobi","personalization_life_event_type_new_instrument":"Yeni enstr\u00fcman","personalization_life_event_type_new_job":"Yeni i\u015f","personalization_life_event_type_new_language":"Yeni dil","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":"Yeni spor","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":"Kald\u0131r\u0131lan di\u015f telleri","personalization_life_event_type_retirement":"Emeklilik","personalization_life_event_type_study_abroad":"Yurtd\u0131\u015f\u0131nda E\u011fitim","personalization_life_event_type_surgery":"Ameliyat","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":"G\u00f6zl\u00fck ya da lens kullan\u0131m\u0131","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":"Baz\u0131 insanlar\u0131n t\u00fcm \u00f6zelliklere ihtiyac\u0131 yoktur. A\u015fa\u011f\u0131da, bir ki\u015fi sayfas\u0131nda kullan\u0131lan belirli \u00f6zellikleri de\u011fi\u015ftirebilirsiniz. Bu de\u011fi\u015fiklik T\u00dcM ki\u015filerinizi etkileyecektir. Bu \u00f6zelliklerden birini kapat\u0131rsan\u0131z, verilerin kaybolmayaca\u011f\u0131n\u0131 - sadece \u00f6zelli\u011fi gizleyece\u011fimizi unutmay\u0131n.","personalization_module_save":"De\u011fi\u015fiklik kaydedildi","personalization_module_title":"\u00d6zellikler","personalization_reminder_rule_desc":"Ayarlad\u0131\u011f\u0131n\u0131z her hat\u0131rlatma i\u00e7in, olay ger\u00e7ekle\u015fmeden birka\u00e7 g\u00fcn \u00f6nce size bir e-posta g\u00f6nderebiliriz. Bu bildirimleri buradan de\u011fi\u015ftirebilirsiniz. Bu bildirimlerin sadece ayl\u0131k ve y\u0131ll\u0131k hat\u0131rlatmalar i\u00e7in ge\u00e7erli oldu\u011funu unutmay\u0131n.","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":"Burada, hesab\u0131n\u0131z\u0131 yap\u0131land\u0131rmak i\u00e7in farkl\u0131 ayarlar bulabilirsiniz. Bu \u00f6zellikler Monica \u00fczerinde maksimum kontrol sahibi olmak isteyen \u201cuzman kullan\u0131c\u0131lar\u201d i\u00e7indir.","recovery_already_used_help":"Bu kod zaten kullan\u0131lm\u0131\u015f","recovery_clipboard":"Kodlar panoya kopyaland\u0131","recovery_copy_help":"Kodlar\u0131 panonuza kopyalay\u0131n","recovery_generate":"Yeni kodlar olu\u015ftur...","recovery_generate_help":"Yeni kod olu\u015fturman\u0131n daha \u00f6nce olu\u015fturulan kodlar\u0131 ge\u00e7ersiz k\u0131laca\u011f\u0131n\u0131 unutmay\u0131n","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":"G\u00fcn i\u00e7inde hat\u0131rlatmalar\u0131n g\u00f6nderilmesi gereken saat","reminder_time_to_send_help":"Bilginize, bir sonraki hat\u0131rlat\u0131c\u0131n\u0131z {dateTime}<\/span> tarihinde g\u00f6nderilecek.","reset_cta":"Hesab\u0131 s\u0131f\u0131rla","reset_desc":"Hesab\u0131n\u0131z\u0131 s\u0131f\u0131rlamak ister misiniz? Bu, t\u00fcm ki\u015filerinizi ve onlarla ili\u015fkili verileri kald\u0131racakt\u0131r. Hesab\u0131n\u0131z silinmeyecektir.","reset_notice":"Hesab\u0131n\u0131z\u0131 s\u0131f\u0131rlamak istedi\u011finizden emin misiniz? Geri d\u00f6n\u00fc\u015f yok.","reset_success":"Hesab\u0131n\u0131z ba\u015far\u0131yla s\u0131f\u0131rland\u0131","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":"Hesap limitiniz: :accountLimit Mb \/ Mevcut kullan\u0131m\u0131n\u0131z: :currentAccountSize Mb (: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":"Projeye uzun vadede destek olun, b\u00f6ylece daha fazla harika \u00f6zellikler sunabiliriz.","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":"Bekleyen davetiniz olmamal\u0131d\u0131r","subscriptions_downgrade_rule_invitations_constraint":"\u0130nsanlara g\u00f6nderdi\u011finiz :count adet bekleyen davetiniz<\/a> bulunmaktad\u0131r.","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":"\u00dccretli plan\u0131 denedi\u011fin i\u00e7in \u00e7ok te\u015fekk\u00fcr ederiz. Monica'ya s\u00fcrekli yeni \u00f6zellikler eklemeye devam ediyoruz \u2013 bu y\u00fczden tekrar abonelik almakla ilgilenip ilgilenmeyece\u011fini g\u00f6rmek i\u00e7in gelecekte tekrar gelmek isteyebilirsin.","subscriptions_downgrade_title":"Hesab\u0131n\u0131z\u0131 \u00fccretsiz plana d\u00fc\u015f\u00fcr\u00fcn","subscriptions_help_change_desc":"Herhangi bir an iptal edebilirsin, sorgu sualsiz, kendi ba\u015f\u0131na \u2013 destek ile ileti\u015fime ge\u00e7men falan gerekmez. Ama yine de, \u015fu anki abonelik periyodunun iadesini alamazs\u0131n.","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":"\u00dccretsiz planda sahip olabilece\u011fimiz ki\u015fi say\u0131s\u0131nda bir s\u0131n\u0131r var m\u0131d\u0131r?","subscriptions_help_opensource_desc":"Monica a\u00e7\u0131k kaynakl\u0131 bir projedir. Bu, sadece iyi ama\u00e7lar i\u00e7in harika bir ara\u00e7 sa\u011flamak isteyen tamamen yard\u0131msever bir topluluk taraf\u0131ndan in\u015fa edildi\u011fi anlam\u0131na gelmektedir. A\u00e7\u0131k kaynak olmas\u0131, kodlar\u0131n GitHub'da herkese a\u00e7\u0131k olarak mevcut oldu\u011fu anlam\u0131na gelmektedir ve herkes onu inceleyebilir, de\u011fi\u015ftirebilir veya geli\u015ftirebilir. Toplad\u0131\u011f\u0131m\u0131z t\u00fcm para, daha iyi \u00f6zellikler geli\u015ftirmek, daha g\u00fc\u00e7l\u00fc sunuculara sahip olmak, faturalar\u0131 \u00f6demek i\u00e7in yard\u0131m etmeye adanm\u0131\u015ft\u0131r. Yard\u0131m\u0131n\u0131z i\u00e7in te\u015fekk\u00fcrler. Kelimenin tam anlam\u0131yla, siz olmadan yapamazd\u0131k.","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":"Kart\u0131n\u0131zdan \u015fimdi :price \u00e7ekim yapaca\u011f\u0131z. Bir sonraki \u00e7ekim :date tarihinde olacak. E\u011fer fikrinizi de\u011fi\u015ftirirseniz, istedi\u011finiz zaman iptal edebilirsiniz, hi\u00e7bir soru sorulmaz.","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":"Etiketler klas\u00f6rler gibi \u00e7al\u0131\u015f\u0131r, ancak bir ki\u015fiye birden fazla etiket ekleyebilirsiniz. Bir ki\u015fiye gidin ve ad\u0131n\u0131n hemen alt\u0131nda bir arkada\u015f\u0131 etiketleyin. Bir ki\u015fi etiketlendikten sonra, hesab\u0131n\u0131zdaki t\u00fcm etiketleri y\u00f6netmek i\u00e7in buraya geri gelin.","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":"Bu kullan\u0131c\u0131y\u0131 kendi hesab\u0131ma davet etmek istedi\u011fimi onayl\u0131yorum. Bu ki\u015fi benim B\u00dcT\u00dcN verilerime eri\u015febilecek ve g\u00f6rd\u00fc\u011f\u00fcm her \u015feyi g\u00f6rebilecek.","users_add_cta":"E-postayla kullan\u0131c\u0131 davet et","users_add_description":"Bu kullan\u0131c\u0131, di\u011fer kullan\u0131c\u0131lar\u0131 davet etmek ve onlar\u0131 silmek (siz dahil) de dahil olmak \u00fczere, sizinle ayn\u0131 haklara sahip olacakt\u0131r. Bu nedenle, bu ki\u015fiye g\u00fcvendi\u011finizden emin olun.","users_add_email_field":"Davet etmek istedi\u011finiz ki\u015finin e-posta adresini girin","users_add_title":"E-posta ile hesab\u0131n\u0131za yeni bir kullan\u0131c\u0131 davet edin","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."}} diff --git a/public/js/langs/uk.json b/public/js/langs/uk.json index b56a7f4a4f7..255c244c73e 100644 --- a/public/js/langs/uk.json +++ b/public/js/langs/uk.json @@ -1 +1 @@ -{"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","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":"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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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\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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"\u0420\u044f\u0434\u043a\u0456\u0432 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443:","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\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":"\u0420\u043e\u0431\u043e\u0447\u0430 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0443\u0441\u043f\u0456\u0448\u043d\u043e","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_tr":"Turkish","locale_zh":"Chinese Simplified","locale_zh-TW":"Chinese Traditional","logs_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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_family_relationships":"Family & relationships","personalization_life_event_category_health_wellness":"Health & wellness","personalization_life_event_category_home_living":"Home & living","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_anniversary":"Anniversary","personalization_life_event_type_bought_a_home":"Bought a home","personalization_life_event_type_broken_bone":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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_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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","personalization_life_event_type_weight_loss":"Weight loss","personalization_module_desc":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} +{"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","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":"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. 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":"1 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\u2019s new","footer_new_version":"A new version is available","footer_newsletter":"Newsletter","footer_privacy":"Privacy policy","footer_release":"Release notes","footer_remarks":"Any remarks?","footer_send_email":"Send me 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\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 ones 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 reminder for this month","statistics_activities":"Activities","statistics_contacts":"Contacts","statistics_gifts":"Gifts","tab_calls_blank":"You haven\u2019t logged a call yet.","tab_debts":"Debts","tab_debts_blank":"You haven\u2019t logged any debt yet.","tab_favorite_notes":"Favorite notes","tab_recent_calls":"Recent calls","tab_tasks":"Tasks","tab_tasks_blank":"You haven\u2019t any task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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_gift":"Add a gift","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"\u0420\u044f\u0434\u043a\u0456\u0432 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443:","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\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":"\u0420\u043e\u0431\u043e\u0447\u0430 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044f \u0431\u0443\u043b\u0430 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0443\u0441\u043f\u0456\u0448\u043d\u043e","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 not be secured anymore !","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 security with 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:","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 is no authorized client 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 your contacts","archive_desc":"This will archive all the contacts in your account.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"Delete your account","email":"Email address","email_help":"This is the email used to login, and this is where you\u2019ll receive your reminders.","email_placeholder":"Enter email","export_be_patient":"Click the button to start the export. It might take several minutes to process the export \u2013 please be patient and do not spam the button.","export_sql_cta":"Export 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Export your account data","export_title_sql":"Export 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"Everything that 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":"My 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":"Password change","password_current":"Current password","password_current_placeholder":"Enter your current password","password_new1":"New password","password_new1_placeholder":"Enter a new password","password_new2":"Confirmation","password_new2_placeholder":"Retype the 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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"Broken bone","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Tags management","sidebar_settings_users":"Users","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL my data and see exactly what I see.","users_add_cta":"Invite user by email","users_add_description":"This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/vendor.json b/public/js/langs/vendor.json index d3f895bd3d8..309413f5a82 100644 --- a/public/js/langs/vendor.json +++ b/public/js/langs/vendor.json @@ -1 +1 @@ -{"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.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.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.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":"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.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.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.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":"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-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":"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.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":"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-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":"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.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.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"}} +{"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.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.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":"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.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.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.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":"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-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":"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.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 new file mode 100644 index 00000000000..fe59812e0eb --- /dev/null +++ b/public/js/langs/vi.json @@ -0,0 +1 @@ +{"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":"C\u00f3 m\u1ed9t m\u1ed1i quan h\u1ec7 t\u1ed1t h\u01a1n v\u1edbi ng\u01b0\u1eddi b\u1ea1n y\u00eau th\u01b0\u01a1ng. CRM mi\u1ec5n ph\u00ed cho b\u1ea1n v\u00e0 gia \u0111\u00ecnh.","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","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":"Xa\u0301c nh\u00e2\u0323n?","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":"\u0110ang b\u1ea3o tr\u00ec. Ch\u00fang t\u00f4i s\u1ebd tr\u1edf l\u1ea1i ngay.","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":"1 t\u1ec7p \u0111\u01b0\u1ee3c ch\u1ecdn...|{count} t\u1ec7p \u0111\u01b0\u1ee3c ch\u1ecdn...","filter":"L\u1ecdc danh s\u00e1ch","footer_modal_version_release_away":"B\u1ea1n c\u00f3 1 b\u1ea3n c\u1eadp nh\u1eadt. B\u1ea1n n\u00ean c\u1eadp nh\u1eadt h\u1ec7 th\u1ed1ng.|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":"\u0110\u00e3 c\u00f3 phi\u00ean b\u1ea3n m\u1edbi","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":"Any remarks?","footer_send_email":"G\u1eedi email cho ch\u00fang t\u00f4i","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":"\u0110ang t\u1ea3i...","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 task 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_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_created_with_name_with_link":"Added :name<\/a> as a contact.","settings_log_contact_description_cleared_with_name":"Cleared the description of :name.","settings_log_contact_description_cleared_with_name_with_link":"Cleared the description of :name<\/a>.","settings_log_contact_description_updated_with_name":"Updated the description of :name.","settings_log_contact_description_updated_with_name_with_link":"Updated the description of :name<\/a>.","settings_log_contact_work_updated_with_name":"Updated work information of :name.","settings_log_contact_work_updated_with_name_with_link":"Updated work information of :name<\/a>."},"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|: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.|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 :firtname 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 :firtname 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_gift":"Th\u00eam qu\u00e0","gifts_add_gift_already_offered":"Gift offered","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 offered","gifts_offered":"Gifts offered","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":"1 li\u00ean h\u1ec7|: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":"1 con|:count con","people_list_number_reminders":"1 l\u1eddi nh\u1eafc|: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":"1 li\u00ean h\u1ec7|: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":"S\u1ed1 d\u00f2ng tr\u00ean m\u1ed7i trang:","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","photo_previous":"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|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":"C\u1eadp nh\u1eadt th\u00f4ng tin c\u00f4ng vi\u1ec7c th\u00e0nh c\u00f4ng","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 not be secured anymore !","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":"B\u1eadt x\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1 \u0111\u1ec3 n\u00e2ng cao b\u1ea3o m\u1eadt cho t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n.","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":"M\u1edf \u1ee9ng d\u1ee5ng mobile x\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1 v\u00e0 qu\u00e9t m\u00e3 QR d\u01b0\u1edbi \u0111\u00e2y:","2fa_enable_otp_help":"N\u1ebfu \u1ee9ng d\u1ee5ng x\u00e1c th\u1ef1c 2 y\u1ebfu t\u1ed1 c\u1ee7a b\u1ea1n kh\u00f4ng h\u1ed7 tr\u1ee3 QR code, nh\u1eadp m\u00e3 d\u01b0\u1edbi \u0111\u00e2y:","2fa_enable_otp_validate":"H\u00e3y x\u00e1c nh\u1eadn thi\u1ebft b\u1ecb m\u1edbi b\u1ea1n v\u1eeba thi\u1ebft l\u1eadp:","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 is no authorized client 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":"L\u01b0u tr\u1eef t\u1ea5t c\u1ea3 li\u00ean h\u1ec7","archive_desc":"H\u00e0nh \u0111\u1ed9ng n\u00e0y s\u1ebd l\u01b0u tr\u1eef t\u1ea5t c\u1ea3 li\u00ean h\u1ec7 trong t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n.","archive_title":"Archive all your 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? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.","delete_notice":"Are you sure to delete your account? There is no turning back.","delete_other_desc":"Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days \u2013 then it\u2019s completely deleted. It\u2019s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.","delete_title":"X\u00f3a t\u00e0i kho\u1ea3n","email":"\u0110\u1ecba ch\u1ec9 email","email_help":"\u0110\u00e2y l\u00e0 email d\u00f9ng \u0111\u1ec3 \u0111\u0103ng nh\u1eadp, v\u00e0 l\u00e0 n\u01a1i b\u1ea1n s\u1ebd nh\u1eadn c\u00e1c th\u00f4ng b\u00e1o nh\u1eafc nh\u1edf.","email_placeholder":"Nh\u1eadp email","export_be_patient":"B\u1ea5m v\u00e0o n\u00fat \u0111\u1ec3 b\u1eaft \u0111\u1ea7u xu\u1ea5t. \u0110i\u1ec1u n\u00e0y s\u1ebd t\u1ed1n m\u1ed9t v\u00e0i ph\u00fat \u0111\u1ec3 th\u1ef1c hi\u1ec7n - h\u00e3y ki\u00ean nh\u1eabn v\u00e0 kh\u00f4ng spam n\u00fat b\u1ea5m.","export_sql_cta":"Xu\u1ea5t d\u1ea1ng 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 valuable if you do have your own server.","export_sql_link_instructions":"Note: read the instructions<\/a> to learn more about importing this file to your instance.","export_title":"Xu\u1ea5t d\u1eef li\u1ec7u t\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n","export_title_sql":"Xu\u1ea5t d\u1ea1ng 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, skip existing","import_upload_behaviour_help":"Note: 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":"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 Contacts.app (macOS)<\/a> and Google Contacts<\/a>.","import_upload_rule_limit":"Files are limited to 10MB.","import_upload_rule_multiple":"For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.","import_upload_rule_time":"It might take up to 1 minute to upload the contacts and process them. Be patient.","import_upload_rule_vcard":"We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) 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 firstname (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_author":"By :name on :date","logs_title":"M\u1ecdi th\u1ee9 \u0111\u00e3 x\u1ea3y ra v\u1edbi t\u00e0i kho\u1ea3n n\u00e0y","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":"Danh b\u1ea1 c\u1ee7a t\u00f4i","name":"T\u00ean b\u1ea1n: :name","name_order":"Name order","name_order_firstname_lastname":" - D\u0169ng Nguy\u1ec5n","name_order_firstname_lastname_nickname":" () - D\u0169ng Nguy\u1ec5n (nhymxu)","name_order_firstname_nickname_lastname":" () - D\u0169ng (nhymxu) Nguy\u1ec5n","name_order_lastname_firstname":" - Nguy\u1ec5n D\u0169ng","name_order_lastname_firstname_nickname":" () - Nguy\u1ec5n D\u0169ng (nhymxu)","name_order_lastname_nickname_firstname":" () - Nguy\u1ec5n (nhymxu) D\u0169ng","name_order_nickname":" - nhymxu","name_order_nickname_firstname_lastname":" ( ) - nhymxu (Nguy\u1ec5n D\u0169ng)","password_btn":"\u0110\u1ed5i m\u1eadt kh\u1ea9u","password_change":"Thay \u0111\u1ed5i m\u1eadt kh\u1ea9u","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":"Nh\u1eadp m\u1eadt kh\u1ea9u m\u1edbi","password_new2":"X\u00e1c nh\u1eadn","password_new2_placeholder":"Nh\u1eadp l\u1ea1i m\u1eadt kh\u1ea9u m\u1edbi","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 done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything 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. However, 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":"How 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":"How 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 deleted with success.","personalization_contact_field_type_description":"Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting 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 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 {name}?","personalization_genders_modal_delete_question":"You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?","personalization_genders_modal_edit":"Update gender type","personalization_genders_modal_error":"Please choose a valid 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 by default with a set of predefined categories and types, 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":"G\u00e3y x\u01b0\u01a1ng","personalization_life_event_type_changed_beliefs":"Changed beliefs","personalization_life_event_type_dentist":"Dentist","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":"How 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":"New hobby","personalization_life_event_type_new_instrument":"New instrument","personalization_life_event_type_new_job":"New job","personalization_life_event_type_new_language":"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":"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":"Removed braces","personalization_life_event_type_retirement":"Retirement","personalization_life_event_type_study_abroad":"Study abroad","personalization_life_event_type_surgery":"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":"Wear glass or contact","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":"Some people don\u2019t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.","personalization_module_save":"The change has been saved","personalization_module_title":"Features","personalization_reminder_rule_desc":"For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those 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 can find different settings to configure your account. These features are more for \u201cpower users\u201d who want maximum control over Monica.","recovery_already_used_help":"This code has already been used","recovery_clipboard":"Codes copied in the clipboard","recovery_copy_help":"Copy codes in your clipboard","recovery_generate":"Generate new codes...","recovery_generate_help":"Be aware that 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 should be sent","reminder_time_to_send_help":"For your information, your next reminder will 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 the data associated with them. Your account will not be deleted.","reset_notice":"Are you sure to reset your account? There is no turning back.","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":"Qu\u1ea3n l\u00fd th\u1ebb","sidebar_settings_users":"Ng\u01b0\u1eddi d\u00f9ng","storage_account_info":"Your account limit: :accountLimit Mb \/ Your current usage: :currentAccountSize Mb (: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 on 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 pending invitations","subscriptions_downgrade_rule_invitations_constraint":"You currently have 1 pending invitation<\/a> sent to people.|You currently have :count pending invitations<\/a> sent to people.","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 having tried 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 or whatever. 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 any 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 an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn\u2019t do it without you \u2013 literally.","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 anytime, 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, go 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. This person will access ALL 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 rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.","users_add_email_field":"Enter the email of the person you want to invite","users_add_title":"Invite a new user by email to your account","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."}} diff --git a/public/js/langs/zh-TW.json b/public/js/langs/zh-TW.json index 24fd8509213..9aabb480165 100644 --- a/public/js/langs/zh-TW.json +++ b/public/js/langs/zh-TW.json @@ -1 +1 @@ -{"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":"\u4fc3\u9032\u4f60\u5011\u4e4b\u9593\u7684\u611f\u60c5\u3002\u4e00\u500b\u514d\u8cbb\u4e14\u958b\u6e90\u7684\u9762\u5411\u89aa\u670b\u597d\u53cb\u7684CRM\u5de5\u5177","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","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":"\u78ba\u5b9a\uff1f","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":"\u7db2\u7ad9\u7dad\u8b77\u4e2d\uff0c\u5f85\u6703\u898b\uff01","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":"\u9078\u64c7\u4e86 {count} \u500b\u6a94\u6848...","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":"\u6709\u65b0\u7248\u672c\u53ef\u7528\uff01","footer_newsletter":"\u65b0\u805e\u7c21\u5831","footer_privacy":"\u96b1\u79c1\u689d\u6b3e","footer_release":"\u7248\u672c\u8aaa\u660e","footer_remarks":"\u6709\u4ec0\u9ebc\u610f\u898b\u55ce\uff1f","footer_send_email":"\u7d66\u6211\u767c\u96fb\u5b50\u90f5\u4ef6","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":"\u6b63\u5728\u8f09\u5165...","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_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_created_with_name_with_link":"\u65b0\u589e :name<\/a> \u4f5c\u70ba\u806f\u7d61\u4eba","settings_log_contact_description_cleared_with_name":"\u5df2\u6e05\u9664 :name \u7684\u63cf\u8ff0","settings_log_contact_description_cleared_with_name_with_link":"\u5df2\u6e05\u9664 :name<\/a> \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \u7684\u63cf\u8ff0\u3002","settings_log_contact_work_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u5de5\u4f5c\u8cc7\u8a0a","settings_log_contact_work_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \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_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":"\u6bcf\u9801\u884c\u6578:","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":"\u4e0b\u4e00\u5f35\u7167\u7247","photo_previous":"\u4e0a\u4e00\u5f35\u7167\u7247","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":"\u5de5\u4f5c\u8cc7\u8a0a\u5df2\u6210\u529f\u66f4\u65b0","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":"\u70ba\u60a8\u7684\u5e33\u6236\u7981\u7528\u96d9\u91cd\u7d20\u8eab\u4efd\u9a57\u8b49\u3002\u5c0f\u5fc3, \u4f60\u7684\u5e33\u6236\u5c07\u4e0d\u518d\u5b89\u5168!","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":"\u555f\u7528\u96d9\u91cd\u8eab\u4efd\u9a57\u8b49\u4ee5\u63d0\u9ad8\u5e33\u6236\u7684\u5b89\u5168\u6027\u3002","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":"\u958b\u555f\u60a8\u7684\u96d9\u91cd\u8a8d\u8b49\u79fb\u52d5\u61c9\u7528\u7a0b\u5f0f, \u4e26\u6383\u63cf\u4ee5\u4e0b QR \u689d\u78bc:","2fa_enable_otp_help":"\u5982\u679c\u60a8\u7684\u96d9\u91cd\u8a8d\u8b49\u79fb\u52d5\u61c9\u7528\u7a0b\u5f0f\u4e0d\u652f\u63f4 QR \u689d\u78bc, \u8acb\u5728\u4e0b\u9762\u7684\u7a0b\u5f0f\u78bc\u4e2d\u8f38\u5165:","2fa_enable_otp_validate":"\u8acb\u9a57\u8b49\u60a8\u525b\u8a2d\u5b9a\u7684\u65b0\u88dd\u7f6e:","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":"\u5c1a\u7121\u6388\u6b0a\u5ba2\u6236\u7aef","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":"\u5132\u5b58\u6240\u6709\u806f\u7d61\u4eba","archive_desc":"\u9019\u5c07\u5b58\u6a94\u60a8\u5e33\u6236\u4e2d\u7684\u6240\u6709\u806f\u7d61\u4eba","archive_title":"\u5132\u5b58\u60a8\u5e33\u6236\u4e2d\u7684\u6240\u6709\u806f\u7d61\u4eba","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":"\u60a8\u60f3\u8981\u522a\u9664\u60a8\u7684\u5e33\u6236\u55ce\uff1f\u8b66\u544a\uff1a\u522a\u9664\u662f\u6c38\u4e45\u6027\u7684\uff0c\u60a8\u7684\u6240\u6709\u8cc7\u6599\u5c07\u88ab\u6c38\u4e45\u522a\u9664\uff0c\u5982\u679c\u60a8\u6709\u8a02\u95b1\u7684\u8a71\u4e5f\u5c07\u7acb\u5373\u53d6\u6d88","delete_notice":"\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u8a2d\u5b9a\u5e33\u6236\u55ce\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","delete_other_desc":"\u5ba3\u544a\uff1a\u60a8\u5728\u4e3b\u8cc7\u6599\u5eab\u4e2d\u7684\u8cc7\u6599\u5c07\u7acb\u5373\u522a\u9664\u3002 \u7136\u800c\uff0c\u6b63\u5982\u6211\u5011\u7684\u96b1\u79c1\u653f\u7b56\u6240\u63cf\u8ff0\u7684\u90a3\u6a23\u3002 \u5982\u679c\u51fa\u73fe\u6545\u969c\uff0c\u6211\u5011\u6703\u505a\u8cc7\u6599\u5eab\u7684\u6bcf\u65e5\u5099\u4efd\u3002\u5099\u4efd\u5c07\u5132\u5b5830\u5929\u2014\u2014\u7136\u5f8c\u5b83\u5c07\u88ab\u5b8c\u5168\u522a\u9664\u3002 \u60f3\u8c61\u6211\u5011\u53ef\u4ee5\u5728\u6240\u6709\u5099\u4efd\u4e2d\u522a\u9664\u60a8\u7684\u7279\u5b9a\u8cc7\u6599\u662f\u4e0d\u73fe\u5be6\u7684\u3002 \u9806\u4fbf\u63d0\u4e00\u4e0b\uff0c\u9019\u7a2e\u8cc7\u6599\u662f\u5728\u975e\u5e38\u5b89\u5168\u7684\u4e9e\u99ac\u905c\u4f3a\u670d\u5668\u4e0a\u52a0\u5bc6\u7684\uff0c\u9664\u4e86\u6211\u5011\u4ee5\u5916\uff0c\u6c92\u6709\u4eba\u64c1\u6709\u52a0\u5bc6\u91d1\u9470\u3002 \u56e0\u6b64\uff0c\u60a8\u7684\u8cc7\u6599\u5c07\u5728 30 \u5929\u540e\u5f9e\u6240\u6709\u5099\u4efd\u4e2d\u5b8c\u5168\u6d88\u5931\u3002","delete_title":"\u522a\u9664\u60a8\u7684\u5e33\u6236","email":"\u96fb\u5b50\u90f5\u4ef6\u5730\u5740","email_help":"\u9019\u662f\u7528\u65bc\u767b\u5165\u7684\u96fb\u5b50\u90f5\u4ef6, \u540c\u6642\u4e5f\u7528\u4f86\u63a5\u6536\u60a8\u7684\u63d0\u9192\u3002","email_placeholder":"\u8f38\u5165\u96fb\u5b50\u90f5\u7bb1","export_be_patient":"\u55ae\u64ca\u6309\u9215\u958b\u59cb\u532f\u51fa\u3002\u8655\u7406\u532f\u51fa\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\uff0c\u8acb\u8010\u5fc3\u7b49\u5f85, \u4e0d\u8981\u53d6\u6d88\u6309\u9215\u3002","export_sql_cta":"\u532f\u51fa\u5230 SQL","export_sql_explanation":"\u4ee5 SQL \u683c\u5f0f\u532f\u51fa\u8cc7\u6599\u4f7f\u60a8\u53ef\u4ee5\u5c07\u8cc7\u6599\u532f\u5165\u5230\u81ea\u5df1\u7684 Monica \u4f8b\u9805\u4e2d\u3002\u9019\u96bb\u5728\u4f60\u6709\u81ea\u5df1\u7684\u4f3a\u670d\u5668\u6642\u6709\u6548\u3002","export_sql_link_instructions":"\u6ce8\u610f: \u95b1\u8b80\u8aaa\u660e<\/a>, \u77ad\u89e3\u6709\u95dc\u5c07\u6b64\u6a94\u6848\u532f\u5165\u5230\u60a8\u7684\u4f8b\u9805\u7684\u8a73\u7d30\u8cc7\u8a0a\u3002","export_title":"\u532f\u51fa\u5e33\u6236\u8cc7\u6599","export_title_sql":"\u532f\u51fa\u5230 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":"\u65b0\u589e\u65b0\u689d\u76ee, \u8df3\u904e\u5df2\u6709\u689d\u76ee","import_upload_behaviour_help":"\u63d0\u793a: \u66ff\u63db\u6703\u66ff\u63db\u6240\u6709\u5728 vCard \u6a94\u6848\u4e2d\u7372\u53d6\u7684\u8cc7\u6599, \u4f46\u662f\u6703\u4fdd\u7559\u672a\u88ab\u66ff\u63db\u7684\u8cc7\u8a0a\u5340\u57df\u3002","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":"\u8acb\u78ba\u8a8d\u60a8\u4e0a\u50b3\u7684\u8cc7\u6599\u662f\u6b63\u78ba\u7684\uff0c\u4e00\u65e6\u4e0a\u50b3\u5c31\u7121\u6cd5\u64a4\u92b7\u3002","import_upload_rule_format":"\u6211\u5011\u652f\u63f4 vcard<\/code> \u548c vcf<\/code> \u6a94\u6848\u3002","import_upload_rule_instructions":"\u532f\u51fa Contacts.app (macOS)<\/a> \u548c Google Contacts<\/a>\u7684\u8aaa\u660e\u3002","import_upload_rule_limit":"\u6a94\u6848\u9650\u5236\u70ba10MB\u3002","import_upload_rule_multiple":"\u73fe\u5728, \u5982\u679c\u60a8\u7684\u806f\u7d61\u4eba\u6709\u591a\u500b\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u6216\u96fb\u8a71\u865f\u78bc, \u5247\u53ea\u6703\u7372\u53d6\u7b2c\u4e00\u500b\u689d\u76ee\u3002","import_upload_rule_time":"\u4e0a\u50b3\u806f\u7d61\u4eba\u548c\u8655\u7406\u5b83\u5011\u53ef\u80fd\u9700\u89811\u5206\u9418\u7684\u6642\u9593\u3002\u8acb\u8010\u5fc3\u7b49\u5f85\u3002","import_upload_rule_vcard":"\u6211\u5011\u652f\u63f4 vCard 3.0 \u683c\u5f0f, \u9019\u662fContacts.app (macOS) \u548c Google Contacts\u7684\u9810\u8a2d\u683c\u5f0f. \u3002","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":"\u7121\u540d\u5b57 (\u5fc5\u586b)","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_tr":"\u571f\u8033\u5176\u6587","locale_zh":"\u7c21\u9ad4\u4e2d\u6587","locale_zh-TW":"\u7e41\u9ad4\u4e2d\u6587\uff08\u53f0\u7063\uff09","logs_author":":name \u65bc :date ","logs_title":"\u6b64\u8cec\u6236\u767c\u751f\u7684\u6240\u6709\u60c5\u6cc1","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":"\u901a\u8a0a\u9304","name":"\u60a8\u7684\u59d3\u540d: :name","name_order":"\u540d\u7a31\u9806\u5e8f","name_order_firstname_lastname":"<\u540d> <\u59d3> - \u5c0f\u660e \u738b","name_order_firstname_lastname_nickname":"<\u540d> <\u59d3> (<\u66b1\u7a31>) - \u5c0f\u660e \u738b (\u72d7\u86cb)","name_order_firstname_nickname_lastname":"<\u540d> (<\u66b1\u7a31>) <\u59d3> - \u5c0f\u660e (\u72d7\u86cb) \u738b","name_order_lastname_firstname":"<\u59d3> <\u540d> - \u738b \u5c0f\u660e","name_order_lastname_firstname_nickname":"<\u59d3> <\u540d> (<\u66b1\u7a31>) - \u738b \u5c0f\u660e (\u72d7\u86cb)","name_order_lastname_nickname_firstname":"<\u59d3> (<\u66b1\u7a31>) <\u540d> - \u738b (\u72d7\u86cb) \u5c0f\u660e","name_order_nickname":"<\u66b1\u7a31> - \u72d7\u86cb","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u66f4\u6539\u5bc6\u78bc","password_change":"\u66f4\u6539\u5bc6\u78bc","password_current":"\u7576\u524d\u5bc6\u78bc","password_current_placeholder":"\u8f38\u5165\u7576\u524d\u5bc6\u78bc","password_new1":"\u65b0\u5bc6\u78bc","password_new1_placeholder":"\u8f38\u5165\u4e00\u500b\u65b0\u5bc6\u78bc","password_new2":"\u78ba\u8a8d","password_new2_placeholder":"\u91cd\u65b0\u8f38\u5165\u65b0\u5bc6\u78bc","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":"\u6211\u5011\u70ba\u60a8\u6dfb\u52a0\u4e86\u4e00\u4e9b\u9810\u8a2d\u6d3b\u52d5\u53ca\u5206\u985e\uff0c\u60a8\u53ef\u4ee5\u5728\u6b64\u8655\u4fee\u6539\u5b83\u5011\u3002","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":"\u60a8\u771f\u7684\u8981\u522a\u9664\u9019\u500b\u6d3b\u52d5\u5206\u985e\u55ce\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u9019\u500b\u65b0\u7684\u5206\u985e\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u9019\u500b\u65b0\u7684\u6d3b\u52d5\uff1f","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":"\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u5df2\u6210\u529f\u522a\u9664\u3002","personalization_contact_field_type_description":"\u5728\u9019\u88e1\u60a8\u53ef\u4ee5\u914d\u7f6e\u6240\u6709\u4e0d\u540c\u578b\u5225\u7684\u806f\u7d61\u4eba\u6b04\u4f4d, \u60a8\u53ef\u4ee5\u95dc\u806f\u5230\u6240\u6709\u806f\u7d61\u4eba\u3002\u5982\u679c\u5c07\u4f86\u51fa\u73fe\u65b0\u7684\u793e\u4ea4\u7db2\u8def, \u60a8\u5c07\u80fd\u5920\u5728\u9019\u88e1\u65b0\u589e\u9019\u7a2e\u65b0\u7684\u806f\u7d61\u65b9\u5f0f\u3002","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":"\u78ba\u5be6\u8981\u522a\u9664\u6b64\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u55ce\uff1f\u522a\u9664\u6b64\u578b\u5225\u7684\u806f\u7d61\u4eba\u6b04\u4f4d\u5c07\u522a\u9664\u6240\u6709\u806f\u7d61\u4eba\u7684\u6b64\u578b\u5225\u7684\u6240\u6709\u8cc7\u6599\u3002","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":"\u662f\u5426\u78ba\u5be6\u8981\u522a\u9664{name}\uff1f","personalization_genders_modal_delete_question":"\u9019\u500b\u6027\u5225\u4e0b\u6709{count} \u500b\u806f\u7d61\u4eba\uff0c\u8acb\u60a8\u70ba\u9019\u500b\u806f\u7d61\u4eba\u5206\u914d\u65b0\u7684\u6027\u5225\uff1a|\u9019\u500b\u6027\u5225\u4e0b\u6709{count} \u500b\u806f\u7d61\u4eba\uff0c\u8acb\u60a8\u70ba\u9019\u4e9b\u806f\u7d61\u4eba\u5206\u914d\u65b0\u7684\u6027\u5225","personalization_genders_modal_delete_question_default":"\u6b64\u6027\u5225\u70ba\u9810\u8a2d\u6027\u5225\uff0c\u5982\u679c\u60a8\u522a\u9664\u6b64\u6027\u5225\uff0c\u60a8\u9700\u8981\u6307\u5b9a\u4e00\u500b\u65b0\u7684\u9810\u8a2d\u6027\u5225","personalization_genders_modal_edit":"\u66f4\u65b0\u6027\u5225\u578b\u5225","personalization_genders_modal_error":"\u8acb\u5f9e\u5217\u8868\u4e2d\u9078\u64c7\u4e00\u500b\u6709\u6548\u7684\u6027\u5225\u3002","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_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_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_anniversary":"\u9031\u5e74\u7d00\u5ff5\u65e5","personalization_life_event_type_bought_a_home":"\u8cb7\u4e86\u65b0\u623f\u5b50","personalization_life_event_type_broken_bone":"\u9aa8\u6298","personalization_life_event_type_changed_beliefs":"\u6539\u8b8a\u4fe1\u4ef0","personalization_life_event_type_dentist":"\u7259\u91ab","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_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":"\u65b0\u7684\u611b\u597d","personalization_life_event_type_new_instrument":"\u65b0\u6a02\u5668","personalization_life_event_type_new_job":"\u65b0\u5de5\u4f5c","personalization_life_event_type_new_language":"\u65b0\u8a9e\u8a00","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":"\u65b0\u7684\u904b\u52d5","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":"\u79fb\u9664\u4e86\u7259\u9f52\u77ef\u6b63\u5668","personalization_life_event_type_retirement":"\u9000\u4f11","personalization_life_event_type_study_abroad":"\u7559\u5b78","personalization_life_event_type_surgery":"\u624b\u8853","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":"\u6234\u773c\u93e1","personalization_life_event_type_weight_loss":"\u6e1b\u80a5","personalization_module_desc":"\u6709\u4e9b\u4eba\u4e26\u4e0d\u9700\u8981\u555f\u7528\u6240\u6709\u529f\u80fd\u3002\u56e0\u6b64\u60a8\u53ef\u4ee5\u5728\u6b64\u8655\u96b1\u85cf\u4e0d\u9700\u8981\u7684\u529f\u80fd\uff0c\u8a72\u6539\u52d5\u5c0d\u6240\u6709\u806f\u7d61\u4eba\u751f\u6548\u3002","personalization_module_save":"\u66f4\u6539\u5df2\u88ab\u5132\u5b58","personalization_module_title":"\u529f\u80fd","personalization_reminder_rule_desc":"\u5c0d\u65bc\u60a8\u8a2d\u5b9a\u7684\u6bcf\u500b\u63d0\u9192, \u6211\u5011\u53ef\u4ee5\u5728\u4e8b\u4ef6\u767c\u751f\u524d\u5e7e\u5929\u5411\u60a8\u50b3\u9001\u96fb\u5b50\u90f5\u4ef6\u3002\u60a8\u53ef\u4ee5\u5728\u6b64\u8655\u5207\u63db\u9019\u4e9b\u901a\u77e5\u3002\u8acb\u6ce8\u610f, \u9019\u4e9b\u901a\u77e5\u53ea\u9069\u7528\u65bc\u6bcf\u6708\u548c\u6bcf\u5e74\u7684\u63d0\u9192\u3002","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":"\u5728\u9019\u88e1\u60a8\u53ef\u4ee5\u627e\u5230\u4e0d\u540c\u7684\u8a2d\u5b9a\u4f86\u914d\u7f6e\u60a8\u7684\u5e33\u6236\u3002\u9019\u4e9b\u529f\u80fd\u66f4\u591a\u7684\u662f\u91dd\u5c0d\u60f3\u6700\u5927\u5316\u63a7\u5236Monica \"\u9ad8\u968e\u4f7f\u7528\u8005\"\u6240\u8a2d\u5b9a\u3002","recovery_already_used_help":"\u6b64\u7a0b\u5f0f\u78bc\u5df2\u88ab\u4f7f\u7528\u3002","recovery_clipboard":"\u5df2\u8907\u88fd\u5230\u526a\u8cbc\u7c3f","recovery_copy_help":"\u8907\u88fd\u5230\u60a8\u7684\u526a\u8cbc\u7c3f","recovery_generate":"\u6b63\u5728\u751f\u6210\u7a0b\u5f0f\u78bc...","recovery_generate_help":"\u8acb\u6ce8\u610f, \u751f\u6210\u65b0\u7a0b\u5f0f\u78bc\u5c07\u4f7f\u4ee5\u524d\u751f\u6210\u7684\u7a0b\u5f0f\u78bc\u5931\u6548","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":"\u61c9\u50b3\u9001\u6bcf\u65e5\u63d0\u9192\u7684\u6642\u9593","reminder_time_to_send_help":"\u57fa\u65bc\u60a8\u63d0\u4f9b\u7684\u8cc7\u8a0a, \u60a8\u7684\u4e0b\u4e00\u6b21\u63d0\u9192\u5c07\u5728 {dateTime}<\/span>\u50b3\u9001.","reset_cta":"\u91cd\u7f6e\u5e33\u6236","reset_desc":"\u60a8\u60f3\u91cd\u7f6e\u60a8\u7684\u5e33\u6236\u55ce\uff1f\u9019\u5c07\u522a\u9664\u6240\u6709\u806f\u7d61\u4eba\u4ee5\u53ca\u8207\u4e4b\u95dc\u806f\u7684\u8cc7\u6599\u3002\u60a8\u7684\u5e33\u6236\u5c07\u4e0d\u6703\u88ab\u522a\u9664\u3002","reset_notice":"\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u8a2d\u5b9a\u5e33\u6236\u55ce\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","reset_success":"\u60a8\u7684\u5e33\u6236\u5df2\u6210\u529f\u91cd\u7f6e","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":"\u6a19\u7c64\u7ba1\u7406","sidebar_settings_users":"\u4f7f\u7528\u8005","storage_account_info":"\u60a8\u7684\u8cec\u6236\u5bb9\u91cf: :accountLimit Mb \/ \u60a8\u76ee\u524d\u5df2\u4f7f\u7528: :currentAccountSize Mb (: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":"\u652f\u63f4\u5c08\u6848\u7684\u9577\u4e45\u57f7\u884c, \u4f7f\u6211\u5011\u53ef\u4ee5\u5f15\u5165\u66f4\u591a\u7684\u529f\u80fd\u3002","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":"\u60a8\u4e0d\u80fd\u6709\u672a\u63a5\u53d7\u7684\u9080\u8acb","subscriptions_downgrade_rule_invitations_constraint":"\u60a8\u7684\u5e33\u6236\u4e2d\u7576\u524d\u6709 :count \u500b\u672a\u78ba\u8a8d\u9080\u8acb<\/a>\u3002","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":"\u975e\u5e38\u611f\u8b1d\u60a8\u5617\u8a66\u904e\u9ad8\u968e\u7248\u8a02\u95b1\u3002\u6211\u5011\u4e00\u76f4\u70baMonica\u4e0d\u65b7\u5730\u589e\u52a0\u65b0\u7684\u529f\u80fd-, \u671f\u5f85\u60a8\u7684\u518d\u6b21\u8a02\u95b1\u3002","subscriptions_downgrade_title":"\u5c07\u60a8\u7684\u5e33\u6236\u964d\u7d1a\u70ba\u514d\u8cbb\u7248","subscriptions_help_change_desc":"\u60a8\u53ef\u4ee5\u96a8\u6642\u53d6\u6d88\u60a8\u7684\u8a02\u95b1\u3002\u4f46\u662f\uff0c\u76ee\u524d\u70ba\u6b62\u6211\u5011\u7121\u6cd5\u63d0\u4f9b\u9000\u6b3e\u670d\u52d9\u3002","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":"\u4f60\u5011\u5c0d\u514d\u8cbb\u7248\u7684\u806f\u7d61\u4eba\u6709\u9650\u5236\u55ce\uff1f","subscriptions_help_opensource_desc":"Monica\u662f\u4e00\u500b\u958b\u6e90\u5c08\u6848\uff0c\u9019\u610f\u5473\u8457\u5b83\u662f\u7531\u793e\u7fa4\u5efa\u9020\u7684\u5c08\u6848\u3002\u958b\u6e90\u610f\u5473\u8457\u7a0b\u5f0f\u78bc\u5728 GitHub \u4e0a\u516c\u958b\u63d0\u4f9b, \u6bcf\u500b\u4eba\u90fd\u53ef\u4ee5\u6aa2\u67e5\u4e26\u4fee\u6539\u5b83\u3002\u6211\u5011\u7c4c\u96c6\u7684\u6240\u6709\u8cc7\u91d1\u90fd\u81f4\u529b\u65bc\u5efa\u7acb\u66f4\u597d\u7684\u529f\u80fd, \u64c1\u6709\u66f4\u5f37\u5927\u7684\u4f3a\u670d\u5668, \u5e6b\u52a9\u652f\u4ed8\u8cec\u55ae\u3002\u6c92\u6709\u60a8\u7684\u652f\u63f4\uff0c\u6211\u5011\u5c07\u7121\u6cd5\u5b8c\u6210\u9019\u4e00\u5207\u3002","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":"\u60a8\u5c07\u652f\u4ed8 :price \uff0c\u4e0b\u6b21\u6263\u8cbb\u65e5\u671f\uff1a:date\u3002\u5982\u679c\u60a8\u6539\u8b8a\u4e3b\u610f\u4e86\uff0c\u60a8\u53ef\u4ee5\u96a8\u6642\u53d6\u6d88\u8a02\u95b1\u3002","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":"\u6a19\u7c64\u7684\u5de5\u4f5c\u65b9\u5f0f\u985e\u4f3c\u65bc\u8cc7\u6599\u593e, \u4f46\u53ef\u4ee5\u5411\u806f\u7d61\u4eba\u65b0\u589e\u591a\u500b\u6a19\u7c64\u3002\u8f49\u5230\u806f\u7d61\u4eba\u4e26\u5728\u540d\u5b57\u7684\u4e0b\u9762\u6a19\u8a18\u4e00\u500b\u670b\u53cb,\u3002\u4e00\u65e6\u806f\u7d61\u4eba\u88ab\u6a19\u8a18, \u8acb\u8fd4\u56de\u6b64\u8655\u7ba1\u7406\u5e33\u6236\u4e2d\u7684\u6240\u6709\u6a19\u7c64\u3002","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":"\u6211\u78ba\u8a8d\u6211\u60f3\u9080\u8acb\u9019\u500b\u4f7f\u7528\u8005\u5230\u6211\u7684\u5e33\u6236\u3002\u6b64\u4eba\u5c07\u8a2a\u554f\u6211\u7684\u6240\u6709\u8cc7\u6599, \u4e26\u8207\u6211\u6240\u770b\u5230\u7684\u4e00\u81f4\u3002","users_add_cta":"\u901a\u904e\u96fb\u5b50\u90f5\u4ef6\u9080\u8acb\u4f7f\u7528\u8005","users_add_description":"\u6b64\u4eba\u5c07\u64c1\u6709\u8207\u60a8\u76f8\u540c\u7684\u6b0a\u5229, \u5305\u62ec\u9080\u8acb\u5176\u4ed6\u4f7f\u7528\u8005\u4e26\u522a\u9664\u5b83\u5011 (\u5305\u62ec\u60a8)\u3002\u56e0\u6b64, \u8acb\u78ba\u4fdd\u60a8\u4fe1\u4efb\u6b64\u4eba\u3002","users_add_email_field":"\u8f38\u5165\u60a8\u8981\u9080\u8acb\u7684\u4eba\u7684\u96fb\u5b50\u90f5\u4ef6","users_add_title":"\u901a\u904e\u96fb\u5b50\u90f5\u4ef6\u9080\u8acb\u65b0\u4f7f\u7528\u8005\u5230\u60a8\u7684\u5e33\u6236","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"}} +{"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":"\u4fc3\u9032\u4f60\u5011\u4e4b\u9593\u7684\u611f\u60c5\u3002\u4e00\u500b\u514d\u8cbb\u4e14\u958b\u6e90\u7684\u9762\u5411\u89aa\u670b\u597d\u53cb\u7684CRM\u5de5\u5177","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","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":"\u78ba\u5b9a\uff1f","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":"\u7db2\u7ad9\u7dad\u8b77\u4e2d\uff0c\u5f85\u6703\u898b\uff01","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":"\u9078\u64c7\u4e86 {count} \u500b\u6a94\u6848...","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":"\u6709\u65b0\u7248\u672c\u53ef\u7528\uff01","footer_newsletter":"\u65b0\u805e\u7c21\u5831","footer_privacy":"\u96b1\u79c1\u689d\u6b3e","footer_release":"\u7248\u672c\u8aaa\u660e","footer_remarks":"\u6709\u4ec0\u9ebc\u610f\u898b\u55ce\uff1f","footer_send_email":"\u7d66\u6211\u767c\u96fb\u5b50\u90f5\u4ef6","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":"\u6b63\u5728\u8f09\u5165...","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_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_created_with_name_with_link":"\u65b0\u589e :name<\/a> \u4f5c\u70ba\u806f\u7d61\u4eba","settings_log_contact_description_cleared_with_name":"\u5df2\u6e05\u9664 :name \u7684\u63cf\u8ff0","settings_log_contact_description_cleared_with_name_with_link":"\u5df2\u6e05\u9664 :name<\/a> \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \u7684\u63cf\u8ff0\u3002","settings_log_contact_work_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u5de5\u4f5c\u8cc7\u8a0a","settings_log_contact_work_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \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_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":"\u6bcf\u9801\u884c\u6578:","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":"\u4e0b\u4e00\u5f35\u7167\u7247","photo_previous":"\u4e0a\u4e00\u5f35\u7167\u7247","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":"\u5de5\u4f5c\u8cc7\u8a0a\u5df2\u6210\u529f\u66f4\u65b0","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":"\u70ba\u60a8\u7684\u5e33\u6236\u7981\u7528\u96d9\u91cd\u7d20\u8eab\u4efd\u9a57\u8b49\u3002\u5c0f\u5fc3, \u4f60\u7684\u5e33\u6236\u5c07\u4e0d\u518d\u5b89\u5168!","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":"\u555f\u7528\u96d9\u91cd\u8eab\u4efd\u9a57\u8b49\u4ee5\u63d0\u9ad8\u5e33\u6236\u7684\u5b89\u5168\u6027\u3002","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":"\u958b\u555f\u60a8\u7684\u96d9\u91cd\u8a8d\u8b49\u79fb\u52d5\u61c9\u7528\u7a0b\u5f0f, \u4e26\u6383\u63cf\u4ee5\u4e0b QR \u689d\u78bc:","2fa_enable_otp_help":"\u5982\u679c\u60a8\u7684\u96d9\u91cd\u8a8d\u8b49\u79fb\u52d5\u61c9\u7528\u7a0b\u5f0f\u4e0d\u652f\u63f4 QR \u689d\u78bc, \u8acb\u5728\u4e0b\u9762\u7684\u7a0b\u5f0f\u78bc\u4e2d\u8f38\u5165:","2fa_enable_otp_validate":"\u8acb\u9a57\u8b49\u60a8\u525b\u8a2d\u5b9a\u7684\u65b0\u88dd\u7f6e:","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":"\u5c1a\u7121\u6388\u6b0a\u5ba2\u6236\u7aef","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":"\u5132\u5b58\u6240\u6709\u806f\u7d61\u4eba","archive_desc":"\u9019\u5c07\u5b58\u6a94\u60a8\u5e33\u6236\u4e2d\u7684\u6240\u6709\u806f\u7d61\u4eba","archive_title":"\u5132\u5b58\u60a8\u5e33\u6236\u4e2d\u7684\u6240\u6709\u806f\u7d61\u4eba","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":"\u60a8\u60f3\u8981\u522a\u9664\u60a8\u7684\u5e33\u6236\u55ce\uff1f\u8b66\u544a\uff1a\u522a\u9664\u662f\u6c38\u4e45\u6027\u7684\uff0c\u60a8\u7684\u6240\u6709\u8cc7\u6599\u5c07\u88ab\u6c38\u4e45\u522a\u9664\uff0c\u5982\u679c\u60a8\u6709\u8a02\u95b1\u7684\u8a71\u4e5f\u5c07\u7acb\u5373\u53d6\u6d88","delete_notice":"\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u8a2d\u5b9a\u5e33\u6236\u55ce\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","delete_other_desc":"\u5ba3\u544a\uff1a\u60a8\u5728\u4e3b\u8cc7\u6599\u5eab\u4e2d\u7684\u8cc7\u6599\u5c07\u7acb\u5373\u522a\u9664\u3002 \u7136\u800c\uff0c\u6b63\u5982\u6211\u5011\u7684\u96b1\u79c1\u653f\u7b56\u6240\u63cf\u8ff0\u7684\u90a3\u6a23\u3002 \u5982\u679c\u51fa\u73fe\u6545\u969c\uff0c\u6211\u5011\u6703\u505a\u8cc7\u6599\u5eab\u7684\u6bcf\u65e5\u5099\u4efd\u3002\u5099\u4efd\u5c07\u5132\u5b5830\u5929\u2014\u2014\u7136\u5f8c\u5b83\u5c07\u88ab\u5b8c\u5168\u522a\u9664\u3002 \u60f3\u8c61\u6211\u5011\u53ef\u4ee5\u5728\u6240\u6709\u5099\u4efd\u4e2d\u522a\u9664\u60a8\u7684\u7279\u5b9a\u8cc7\u6599\u662f\u4e0d\u73fe\u5be6\u7684\u3002 \u9806\u4fbf\u63d0\u4e00\u4e0b\uff0c\u9019\u7a2e\u8cc7\u6599\u662f\u5728\u975e\u5e38\u5b89\u5168\u7684\u4e9e\u99ac\u905c\u4f3a\u670d\u5668\u4e0a\u52a0\u5bc6\u7684\uff0c\u9664\u4e86\u6211\u5011\u4ee5\u5916\uff0c\u6c92\u6709\u4eba\u64c1\u6709\u52a0\u5bc6\u91d1\u9470\u3002 \u56e0\u6b64\uff0c\u60a8\u7684\u8cc7\u6599\u5c07\u5728 30 \u5929\u540e\u5f9e\u6240\u6709\u5099\u4efd\u4e2d\u5b8c\u5168\u6d88\u5931\u3002","delete_title":"\u522a\u9664\u60a8\u7684\u5e33\u6236","email":"\u96fb\u5b50\u90f5\u4ef6\u5730\u5740","email_help":"\u9019\u662f\u7528\u65bc\u767b\u5165\u7684\u96fb\u5b50\u90f5\u4ef6, \u540c\u6642\u4e5f\u7528\u4f86\u63a5\u6536\u60a8\u7684\u63d0\u9192\u3002","email_placeholder":"\u8f38\u5165\u96fb\u5b50\u90f5\u7bb1","export_be_patient":"\u55ae\u64ca\u6309\u9215\u958b\u59cb\u532f\u51fa\u3002\u8655\u7406\u532f\u51fa\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\u6642\u9593\uff0c\u8acb\u8010\u5fc3\u7b49\u5f85, \u4e0d\u8981\u53d6\u6d88\u6309\u9215\u3002","export_sql_cta":"\u532f\u51fa\u5230 SQL","export_sql_explanation":"\u4ee5 SQL \u683c\u5f0f\u532f\u51fa\u8cc7\u6599\u4f7f\u60a8\u53ef\u4ee5\u5c07\u8cc7\u6599\u532f\u5165\u5230\u81ea\u5df1\u7684 Monica \u4f8b\u9805\u4e2d\u3002\u9019\u96bb\u5728\u4f60\u6709\u81ea\u5df1\u7684\u4f3a\u670d\u5668\u6642\u6709\u6548\u3002","export_sql_link_instructions":"\u6ce8\u610f: \u95b1\u8b80\u8aaa\u660e<\/a>, \u77ad\u89e3\u6709\u95dc\u5c07\u6b64\u6a94\u6848\u532f\u5165\u5230\u60a8\u7684\u4f8b\u9805\u7684\u8a73\u7d30\u8cc7\u8a0a\u3002","export_title":"\u532f\u51fa\u5e33\u6236\u8cc7\u6599","export_title_sql":"\u532f\u51fa\u5230 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":"\u65b0\u589e\u65b0\u689d\u76ee, \u8df3\u904e\u5df2\u6709\u689d\u76ee","import_upload_behaviour_help":"\u63d0\u793a: \u66ff\u63db\u6703\u66ff\u63db\u6240\u6709\u5728 vCard \u6a94\u6848\u4e2d\u7372\u53d6\u7684\u8cc7\u6599, \u4f46\u662f\u6703\u4fdd\u7559\u672a\u88ab\u66ff\u63db\u7684\u8cc7\u8a0a\u5340\u57df\u3002","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":"\u8acb\u78ba\u8a8d\u60a8\u4e0a\u50b3\u7684\u8cc7\u6599\u662f\u6b63\u78ba\u7684\uff0c\u4e00\u65e6\u4e0a\u50b3\u5c31\u7121\u6cd5\u64a4\u92b7\u3002","import_upload_rule_format":"\u6211\u5011\u652f\u63f4 vcard<\/code> \u548c vcf<\/code> \u6a94\u6848\u3002","import_upload_rule_instructions":"\u532f\u51fa Contacts.app (macOS)<\/a> \u548c Google Contacts<\/a>\u7684\u8aaa\u660e\u3002","import_upload_rule_limit":"\u6a94\u6848\u9650\u5236\u70ba10MB\u3002","import_upload_rule_multiple":"\u73fe\u5728, \u5982\u679c\u60a8\u7684\u806f\u7d61\u4eba\u6709\u591a\u500b\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u6216\u96fb\u8a71\u865f\u78bc, \u5247\u53ea\u6703\u7372\u53d6\u7b2c\u4e00\u500b\u689d\u76ee\u3002","import_upload_rule_time":"\u4e0a\u50b3\u806f\u7d61\u4eba\u548c\u8655\u7406\u5b83\u5011\u53ef\u80fd\u9700\u89811\u5206\u9418\u7684\u6642\u9593\u3002\u8acb\u8010\u5fc3\u7b49\u5f85\u3002","import_upload_rule_vcard":"\u6211\u5011\u652f\u63f4 vCard 3.0 \u683c\u5f0f, \u9019\u662fContacts.app (macOS) \u548c Google Contacts\u7684\u9810\u8a2d\u683c\u5f0f. \u3002","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":"\u7121\u540d\u5b57 (\u5fc5\u586b)","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_author":":name \u65bc :date ","logs_title":"\u6b64\u8cec\u6236\u767c\u751f\u7684\u6240\u6709\u60c5\u6cc1","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":"\u901a\u8a0a\u9304","name":"\u60a8\u7684\u59d3\u540d: :name","name_order":"\u540d\u7a31\u9806\u5e8f","name_order_firstname_lastname":"<\u540d> <\u59d3> - \u5c0f\u660e \u738b","name_order_firstname_lastname_nickname":"<\u540d> <\u59d3> (<\u66b1\u7a31>) - \u5c0f\u660e \u738b (\u72d7\u86cb)","name_order_firstname_nickname_lastname":"<\u540d> (<\u66b1\u7a31>) <\u59d3> - \u5c0f\u660e (\u72d7\u86cb) \u738b","name_order_lastname_firstname":"<\u59d3> <\u540d> - \u738b \u5c0f\u660e","name_order_lastname_firstname_nickname":"<\u59d3> <\u540d> (<\u66b1\u7a31>) - \u738b \u5c0f\u660e (\u72d7\u86cb)","name_order_lastname_nickname_firstname":"<\u59d3> (<\u66b1\u7a31>) <\u540d> - \u738b (\u72d7\u86cb) \u5c0f\u660e","name_order_nickname":"<\u66b1\u7a31> - \u72d7\u86cb","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u66f4\u6539\u5bc6\u78bc","password_change":"\u66f4\u6539\u5bc6\u78bc","password_current":"\u7576\u524d\u5bc6\u78bc","password_current_placeholder":"\u8f38\u5165\u7576\u524d\u5bc6\u78bc","password_new1":"\u65b0\u5bc6\u78bc","password_new1_placeholder":"\u8f38\u5165\u4e00\u500b\u65b0\u5bc6\u78bc","password_new2":"\u78ba\u8a8d","password_new2_placeholder":"\u91cd\u65b0\u8f38\u5165\u65b0\u5bc6\u78bc","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":"\u6211\u5011\u70ba\u60a8\u6dfb\u52a0\u4e86\u4e00\u4e9b\u9810\u8a2d\u6d3b\u52d5\u53ca\u5206\u985e\uff0c\u60a8\u53ef\u4ee5\u5728\u6b64\u8655\u4fee\u6539\u5b83\u5011\u3002","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":"\u60a8\u771f\u7684\u8981\u522a\u9664\u9019\u500b\u6d3b\u52d5\u5206\u985e\u55ce\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u9019\u500b\u65b0\u7684\u5206\u985e\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u9019\u500b\u65b0\u7684\u6d3b\u52d5\uff1f","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":"\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u5df2\u6210\u529f\u522a\u9664\u3002","personalization_contact_field_type_description":"\u5728\u9019\u88e1\u60a8\u53ef\u4ee5\u914d\u7f6e\u6240\u6709\u4e0d\u540c\u578b\u5225\u7684\u806f\u7d61\u4eba\u6b04\u4f4d, \u60a8\u53ef\u4ee5\u95dc\u806f\u5230\u6240\u6709\u806f\u7d61\u4eba\u3002\u5982\u679c\u5c07\u4f86\u51fa\u73fe\u65b0\u7684\u793e\u4ea4\u7db2\u8def, \u60a8\u5c07\u80fd\u5920\u5728\u9019\u88e1\u65b0\u589e\u9019\u7a2e\u65b0\u7684\u806f\u7d61\u65b9\u5f0f\u3002","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":"\u78ba\u5be6\u8981\u522a\u9664\u6b64\u806f\u7d61\u4eba\u6b04\u4f4d\u578b\u5225\u55ce\uff1f\u522a\u9664\u6b64\u578b\u5225\u7684\u806f\u7d61\u4eba\u6b04\u4f4d\u5c07\u522a\u9664\u6240\u6709\u806f\u7d61\u4eba\u7684\u6b64\u578b\u5225\u7684\u6240\u6709\u8cc7\u6599\u3002","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":"\u662f\u5426\u78ba\u5be6\u8981\u522a\u9664{name}\uff1f","personalization_genders_modal_delete_question":"\u9019\u500b\u6027\u5225\u4e0b\u6709{count} \u500b\u806f\u7d61\u4eba\uff0c\u8acb\u60a8\u70ba\u9019\u500b\u806f\u7d61\u4eba\u5206\u914d\u65b0\u7684\u6027\u5225\uff1a|\u9019\u500b\u6027\u5225\u4e0b\u6709{count} \u500b\u806f\u7d61\u4eba\uff0c\u8acb\u60a8\u70ba\u9019\u4e9b\u806f\u7d61\u4eba\u5206\u914d\u65b0\u7684\u6027\u5225","personalization_genders_modal_delete_question_default":"\u6b64\u6027\u5225\u70ba\u9810\u8a2d\u6027\u5225\uff0c\u5982\u679c\u60a8\u522a\u9664\u6b64\u6027\u5225\uff0c\u60a8\u9700\u8981\u6307\u5b9a\u4e00\u500b\u65b0\u7684\u9810\u8a2d\u6027\u5225","personalization_genders_modal_edit":"\u66f4\u65b0\u6027\u5225\u578b\u5225","personalization_genders_modal_error":"\u8acb\u5f9e\u5217\u8868\u4e2d\u9078\u64c7\u4e00\u500b\u6709\u6548\u7684\u6027\u5225\u3002","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 by default with a set of predefined categories and types, 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":"\u9aa8\u6298","personalization_life_event_type_changed_beliefs":"\u6539\u8b8a\u4fe1\u4ef0","personalization_life_event_type_dentist":"\u7259\u91ab","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":"How 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":"\u65b0\u7684\u611b\u597d","personalization_life_event_type_new_instrument":"\u65b0\u6a02\u5668","personalization_life_event_type_new_job":"\u65b0\u5de5\u4f5c","personalization_life_event_type_new_language":"\u65b0\u8a9e\u8a00","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":"\u65b0\u7684\u904b\u52d5","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":"\u79fb\u9664\u4e86\u7259\u9f52\u77ef\u6b63\u5668","personalization_life_event_type_retirement":"\u9000\u4f11","personalization_life_event_type_study_abroad":"\u7559\u5b78","personalization_life_event_type_surgery":"\u624b\u8853","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":"\u6234\u773c\u93e1","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":"\u6709\u4e9b\u4eba\u4e26\u4e0d\u9700\u8981\u555f\u7528\u6240\u6709\u529f\u80fd\u3002\u56e0\u6b64\u60a8\u53ef\u4ee5\u5728\u6b64\u8655\u96b1\u85cf\u4e0d\u9700\u8981\u7684\u529f\u80fd\uff0c\u8a72\u6539\u52d5\u5c0d\u6240\u6709\u806f\u7d61\u4eba\u751f\u6548\u3002","personalization_module_save":"\u66f4\u6539\u5df2\u88ab\u5132\u5b58","personalization_module_title":"\u529f\u80fd","personalization_reminder_rule_desc":"\u5c0d\u65bc\u60a8\u8a2d\u5b9a\u7684\u6bcf\u500b\u63d0\u9192, \u6211\u5011\u53ef\u4ee5\u5728\u4e8b\u4ef6\u767c\u751f\u524d\u5e7e\u5929\u5411\u60a8\u50b3\u9001\u96fb\u5b50\u90f5\u4ef6\u3002\u60a8\u53ef\u4ee5\u5728\u6b64\u8655\u5207\u63db\u9019\u4e9b\u901a\u77e5\u3002\u8acb\u6ce8\u610f, \u9019\u4e9b\u901a\u77e5\u53ea\u9069\u7528\u65bc\u6bcf\u6708\u548c\u6bcf\u5e74\u7684\u63d0\u9192\u3002","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":"\u5728\u9019\u88e1\u60a8\u53ef\u4ee5\u627e\u5230\u4e0d\u540c\u7684\u8a2d\u5b9a\u4f86\u914d\u7f6e\u60a8\u7684\u5e33\u6236\u3002\u9019\u4e9b\u529f\u80fd\u66f4\u591a\u7684\u662f\u91dd\u5c0d\u60f3\u6700\u5927\u5316\u63a7\u5236Monica \"\u9ad8\u968e\u4f7f\u7528\u8005\"\u6240\u8a2d\u5b9a\u3002","recovery_already_used_help":"\u6b64\u7a0b\u5f0f\u78bc\u5df2\u88ab\u4f7f\u7528\u3002","recovery_clipboard":"\u5df2\u8907\u88fd\u5230\u526a\u8cbc\u7c3f","recovery_copy_help":"\u8907\u88fd\u5230\u60a8\u7684\u526a\u8cbc\u7c3f","recovery_generate":"\u6b63\u5728\u751f\u6210\u7a0b\u5f0f\u78bc...","recovery_generate_help":"\u8acb\u6ce8\u610f, \u751f\u6210\u65b0\u7a0b\u5f0f\u78bc\u5c07\u4f7f\u4ee5\u524d\u751f\u6210\u7684\u7a0b\u5f0f\u78bc\u5931\u6548","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":"\u61c9\u50b3\u9001\u6bcf\u65e5\u63d0\u9192\u7684\u6642\u9593","reminder_time_to_send_help":"\u57fa\u65bc\u60a8\u63d0\u4f9b\u7684\u8cc7\u8a0a, \u60a8\u7684\u4e0b\u4e00\u6b21\u63d0\u9192\u5c07\u5728 {dateTime}<\/span>\u50b3\u9001.","reset_cta":"\u91cd\u7f6e\u5e33\u6236","reset_desc":"\u60a8\u60f3\u91cd\u7f6e\u60a8\u7684\u5e33\u6236\u55ce\uff1f\u9019\u5c07\u522a\u9664\u6240\u6709\u806f\u7d61\u4eba\u4ee5\u53ca\u8207\u4e4b\u95dc\u806f\u7684\u8cc7\u6599\u3002\u60a8\u7684\u5e33\u6236\u5c07\u4e0d\u6703\u88ab\u522a\u9664\u3002","reset_notice":"\u60a8\u78ba\u5b9a\u8981\u91cd\u65b0\u8a2d\u5b9a\u5e33\u6236\u55ce\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","reset_success":"\u60a8\u7684\u5e33\u6236\u5df2\u6210\u529f\u91cd\u7f6e","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":"\u6a19\u7c64\u7ba1\u7406","sidebar_settings_users":"\u4f7f\u7528\u8005","storage_account_info":"\u60a8\u7684\u8cec\u6236\u5bb9\u91cf: :accountLimit Mb \/ \u60a8\u76ee\u524d\u5df2\u4f7f\u7528: :currentAccountSize Mb (: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":"\u652f\u63f4\u5c08\u6848\u7684\u9577\u4e45\u57f7\u884c, \u4f7f\u6211\u5011\u53ef\u4ee5\u5f15\u5165\u66f4\u591a\u7684\u529f\u80fd\u3002","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":"\u60a8\u4e0d\u80fd\u6709\u672a\u63a5\u53d7\u7684\u9080\u8acb","subscriptions_downgrade_rule_invitations_constraint":"\u60a8\u7684\u5e33\u6236\u4e2d\u7576\u524d\u6709 :count \u500b\u672a\u78ba\u8a8d\u9080\u8acb<\/a>\u3002","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":"\u975e\u5e38\u611f\u8b1d\u60a8\u5617\u8a66\u904e\u9ad8\u968e\u7248\u8a02\u95b1\u3002\u6211\u5011\u4e00\u76f4\u70baMonica\u4e0d\u65b7\u5730\u589e\u52a0\u65b0\u7684\u529f\u80fd-, \u671f\u5f85\u60a8\u7684\u518d\u6b21\u8a02\u95b1\u3002","subscriptions_downgrade_title":"\u5c07\u60a8\u7684\u5e33\u6236\u964d\u7d1a\u70ba\u514d\u8cbb\u7248","subscriptions_help_change_desc":"\u60a8\u53ef\u4ee5\u96a8\u6642\u53d6\u6d88\u60a8\u7684\u8a02\u95b1\u3002\u4f46\u662f\uff0c\u76ee\u524d\u70ba\u6b62\u6211\u5011\u7121\u6cd5\u63d0\u4f9b\u9000\u6b3e\u670d\u52d9\u3002","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":"\u4f60\u5011\u5c0d\u514d\u8cbb\u7248\u7684\u806f\u7d61\u4eba\u6709\u9650\u5236\u55ce\uff1f","subscriptions_help_opensource_desc":"Monica\u662f\u4e00\u500b\u958b\u6e90\u5c08\u6848\uff0c\u9019\u610f\u5473\u8457\u5b83\u662f\u7531\u793e\u7fa4\u5efa\u9020\u7684\u5c08\u6848\u3002\u958b\u6e90\u610f\u5473\u8457\u7a0b\u5f0f\u78bc\u5728 GitHub \u4e0a\u516c\u958b\u63d0\u4f9b, \u6bcf\u500b\u4eba\u90fd\u53ef\u4ee5\u6aa2\u67e5\u4e26\u4fee\u6539\u5b83\u3002\u6211\u5011\u7c4c\u96c6\u7684\u6240\u6709\u8cc7\u91d1\u90fd\u81f4\u529b\u65bc\u5efa\u7acb\u66f4\u597d\u7684\u529f\u80fd, \u64c1\u6709\u66f4\u5f37\u5927\u7684\u4f3a\u670d\u5668, \u5e6b\u52a9\u652f\u4ed8\u8cec\u55ae\u3002\u6c92\u6709\u60a8\u7684\u652f\u63f4\uff0c\u6211\u5011\u5c07\u7121\u6cd5\u5b8c\u6210\u9019\u4e00\u5207\u3002","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":"\u60a8\u5c07\u652f\u4ed8 :price \uff0c\u4e0b\u6b21\u6263\u8cbb\u65e5\u671f\uff1a:date\u3002\u5982\u679c\u60a8\u6539\u8b8a\u4e3b\u610f\u4e86\uff0c\u60a8\u53ef\u4ee5\u96a8\u6642\u53d6\u6d88\u8a02\u95b1\u3002","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":"\u6a19\u7c64\u7684\u5de5\u4f5c\u65b9\u5f0f\u985e\u4f3c\u65bc\u8cc7\u6599\u593e, \u4f46\u53ef\u4ee5\u5411\u806f\u7d61\u4eba\u65b0\u589e\u591a\u500b\u6a19\u7c64\u3002\u8f49\u5230\u806f\u7d61\u4eba\u4e26\u5728\u540d\u5b57\u7684\u4e0b\u9762\u6a19\u8a18\u4e00\u500b\u670b\u53cb,\u3002\u4e00\u65e6\u806f\u7d61\u4eba\u88ab\u6a19\u8a18, \u8acb\u8fd4\u56de\u6b64\u8655\u7ba1\u7406\u5e33\u6236\u4e2d\u7684\u6240\u6709\u6a19\u7c64\u3002","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":"\u6211\u78ba\u8a8d\u6211\u60f3\u9080\u8acb\u9019\u500b\u4f7f\u7528\u8005\u5230\u6211\u7684\u5e33\u6236\u3002\u6b64\u4eba\u5c07\u8a2a\u554f\u6211\u7684\u6240\u6709\u8cc7\u6599, \u4e26\u8207\u6211\u6240\u770b\u5230\u7684\u4e00\u81f4\u3002","users_add_cta":"\u901a\u904e\u96fb\u5b50\u90f5\u4ef6\u9080\u8acb\u4f7f\u7528\u8005","users_add_description":"\u6b64\u4eba\u5c07\u64c1\u6709\u8207\u60a8\u76f8\u540c\u7684\u6b0a\u5229, \u5305\u62ec\u9080\u8acb\u5176\u4ed6\u4f7f\u7528\u8005\u4e26\u522a\u9664\u5b83\u5011 (\u5305\u62ec\u60a8)\u3002\u56e0\u6b64, \u8acb\u78ba\u4fdd\u60a8\u4fe1\u4efb\u6b64\u4eba\u3002","users_add_email_field":"\u8f38\u5165\u60a8\u8981\u9080\u8acb\u7684\u4eba\u7684\u96fb\u5b50\u90f5\u4ef6","users_add_title":"\u901a\u904e\u96fb\u5b50\u90f5\u4ef6\u9080\u8acb\u65b0\u4f7f\u7528\u8005\u5230\u60a8\u7684\u5e33\u6236","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"}} diff --git a/public/js/langs/zh.json b/public/js/langs/zh.json index 823f5b79f1f..b0fcd842cca 100644 --- a/public/js/langs/zh.json +++ b/public/js/langs/zh.json @@ -1 +1 @@ -{"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":"\u4fc3\u8fdb\u4f60\u4eec\u4e4b\u95f4\u7684\u611f\u60c5\u3002\u4e00\u4e2a\u514d\u8d39\u4e14\u5f00\u6e90\u7684\u9762\u5411\u4eb2\u670b\u597d\u53cb\u7684CRM\u5de5\u5177","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","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":"\u786e\u5b9a\uff1f","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":"\u7f51\u7ad9\u7ef4\u62a4\u4e2d\uff0c\u5f85\u4f1a\u89c1\uff01","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":"\u9009\u62e9\u4e86 1 \u4e2a\u6587\u4ef6...| \u9009\u62e9\u4e86 {count} \u4e2a\u6587\u4ef6...","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":"\u6709\u65b0\u7248\u672c\u53ef\u7528\uff01","footer_newsletter":"\u65b0\u95fb\u7b80\u62a5","footer_privacy":"\u9690\u79c1\u6761\u6b3e","footer_release":"\u7248\u672c\u8bf4\u660e","footer_remarks":"\u6709\u4ec0\u4e48\u610f\u89c1\u5417\uff1f","footer_send_email":"\u7ed9\u6211\u53d1\u7535\u5b50\u90ae\u4ef6","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":"\u6b63\u5728\u52a0\u8f7d...","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_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_created_with_name_with_link":"\u6dfb\u52a0 :name<\/a> \u4f5c\u4e3a\u8054\u7cfb\u4eba","settings_log_contact_description_cleared_with_name":"\u5df2\u6e05\u9664 :name \u7684\u63cf\u8ff0","settings_log_contact_description_cleared_with_name_with_link":"\u5df2\u6e05\u9664 :name<\/a> \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \u7684\u63cf\u8ff0\u3002","settings_log_contact_work_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u5de5\u4f5c\u4fe1\u606f","settings_log_contact_work_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \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_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":"\u6bcf\u9875\u884c\u6570:","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","photo_previous":"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":"\u5de5\u4f5c\u4fe1\u606f\u5df2\u6210\u529f\u66f4\u65b0","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":"\u4e3a\u60a8\u7684\u5e10\u6237\u7981\u7528\u53cc\u91cd\u7d20\u8eab\u4efd\u9a8c\u8bc1\u3002\u5c0f\u5fc3, \u4f60\u7684\u5e10\u6237\u5c06\u4e0d\u518d\u5b89\u5168!","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":"\u542f\u7528\u53cc\u91cd\u8eab\u4efd\u9a8c\u8bc1\u4ee5\u63d0\u9ad8\u5e10\u6237\u7684\u5b89\u5168\u6027\u3002","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":"\u6253\u5f00\u60a8\u7684\u53cc\u91cd\u8ba4\u8bc1\u79fb\u52a8\u5e94\u7528\u7a0b\u5e8f, \u5e76\u626b\u63cf\u4ee5\u4e0b QR \u6761\u7801:","2fa_enable_otp_help":"\u5982\u679c\u60a8\u7684\u53cc\u91cd\u8ba4\u8bc1\u79fb\u52a8\u5e94\u7528\u7a0b\u5e8f\u4e0d\u652f\u6301 QR \u6761\u7801, \u8bf7\u5728\u4e0b\u9762\u7684\u4ee3\u7801\u4e2d\u8f93\u5165:","2fa_enable_otp_validate":"\u8bf7\u9a8c\u8bc1\u60a8\u521a\u8bbe\u7f6e\u7684\u65b0\u8bbe\u5907:","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":"\u5c1a\u65e0\u6388\u6743\u5ba2\u6237\u7aef","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":"\u5b58\u6863\u6240\u6709\u8054\u7cfb\u4eba","archive_desc":"\u8fd9\u5c06\u5b58\u6863\u60a8\u5e10\u6237\u4e2d\u7684\u6240\u6709\u8054\u7cfb\u4eba","archive_title":"\u5b58\u6863\u60a8\u5e10\u6237\u4e2d\u7684\u6240\u6709\u8054\u7cfb\u4eba","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":"\u60a8\u60f3\u8981\u5220\u9664\u60a8\u7684\u5e10\u6237\u5417\uff1f\u8b66\u544a\uff1a\u5220\u9664\u662f\u6c38\u4e45\u6027\u7684\uff0c\u60a8\u7684\u6240\u6709\u6570\u636e\u5c06\u88ab\u6c38\u4e45\u5220\u9664\uff0c\u5982\u679c\u60a8\u6709\u8ba2\u9605\u7684\u8bdd\u4e5f\u5c06\u7acb\u5373\u53d6\u6d88","delete_notice":"\u60a8\u786e\u5b9a\u8981\u91cd\u65b0\u8bbe\u7f6e\u5e10\u6237\u5417\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","delete_other_desc":"\u58f0\u660e\uff1a\u60a8\u5728\u4e3b\u6570\u636e\u5e93\u4e2d\u7684\u6570\u636e\u5c06\u7acb\u5373\u5220\u9664\u3002 \u7136\u800c\uff0c\u6b63\u5982\u6211\u4eec\u7684\u9690\u79c1\u653f\u7b56\u6240\u63cf\u8ff0\u7684\u90a3\u6837\u3002 \u5982\u679c\u51fa\u73b0\u6545\u969c\uff0c\u6211\u4eec\u4f1a\u505a\u6570\u636e\u5e93\u7684\u6bcf\u65e5\u5907\u4efd\u3002\u5907\u4efd\u5c06\u4fdd\u5b5830\u5929\u2014\u2014\u7136\u540e\u5b83\u5c06\u88ab\u5b8c\u5168\u5220\u9664\u3002 \u60f3\u8c61\u6211\u4eec\u53ef\u4ee5\u5728\u6240\u6709\u5907\u4efd\u4e2d\u5220\u9664\u60a8\u7684\u7279\u5b9a\u6570\u636e\u662f\u4e0d\u73b0\u5b9e\u7684\u3002 \u987a\u4fbf\u63d0\u4e00\u4e0b\uff0c\u8fd9\u79cd\u6570\u636e\u662f\u5728\u975e\u5e38\u5b89\u5168\u7684\u4e9a\u9a6c\u900a\u670d\u52a1\u5668\u4e0a\u52a0\u5bc6\u7684\uff0c\u9664\u4e86\u6211\u4eec\u4ee5\u5916\uff0c\u6ca1\u6709\u4eba\u62e5\u6709\u52a0\u5bc6\u5bc6\u94a5\u3002 \u56e0\u6b64\uff0c\u60a8\u7684\u6570\u636e\u5c06\u5728 30 \u5929\u540e\u4ece\u6240\u6709\u5907\u4efd\u4e2d\u5b8c\u5168\u6d88\u5931\u3002","delete_title":"\u5220\u9664\u60a8\u7684\u5e10\u6237","email":"\u7535\u5b50\u90ae\u4ef6\u5730\u5740","email_help":"\u8fd9\u662f\u7528\u4e8e\u767b\u5f55\u7684\u7535\u5b50\u90ae\u4ef6, \u540c\u65f6\u4e5f\u7528\u6765\u63a5\u6536\u60a8\u7684\u63d0\u9192\u3002","email_placeholder":"\u8f93\u5165\u7535\u5b50\u90ae\u7bb1","export_be_patient":"\u5355\u51fb\u6309\u94ae\u5f00\u59cb\u5bfc\u51fa\u3002\u5904\u7406\u5bfc\u51fa\u53ef\u80fd\u9700\u8981\u51e0\u5206\u949f\u65f6\u95f4\uff0c\u8bf7\u8010\u5fc3\u7b49\u5f85, \u4e0d\u8981\u53d6\u6d88\u6309\u94ae\u3002","export_sql_cta":"\u5bfc\u51fa\u5230 SQL","export_sql_explanation":"\u4ee5 SQL \u683c\u5f0f\u5bfc\u51fa\u6570\u636e\u4f7f\u60a8\u53ef\u4ee5\u5c06\u6570\u636e\u5bfc\u5165\u5230\u81ea\u5df1\u7684Monica\u5b9e\u4f8b\u4e2d\u3002\u8fd9\u53ea\u5728\u4f60\u6709\u81ea\u5df1\u7684\u670d\u52a1\u5668\u65f6\u6709\u6548\u3002","export_sql_link_instructions":"\u6ce8\u610f: \u9605\u8bfb\u8bf4\u660e<\/a>, \u4e86\u89e3\u6709\u5173\u5c06\u6b64\u6587\u4ef6\u5bfc\u5165\u5230\u60a8\u7684\u5b9e\u4f8b\u7684\u8be6\u7ec6\u4fe1\u606f\u3002","export_title":"\u5bfc\u51fa\u5e10\u6237\u6570\u636e","export_title_sql":"\u5bfc\u51fa\u5230 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":"\u6dfb\u52a0\u65b0\u6761\u76ee, \u8df3\u8fc7\u5df2\u6709\u6761\u76ee","import_upload_behaviour_help":"\u63d0\u793a: \u66ff\u6362\u4f1a\u66ff\u6362\u6240\u6709\u5728 vCard \u6587\u4ef6\u4e2d\u83b7\u53d6\u7684\u6570\u636e, \u4f46\u662f\u4f1a\u4fdd\u7559\u672a\u88ab\u66ff\u6362\u7684\u4fe1\u606f\u533a\u57df\u3002","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":"\u8bf7\u786e\u8ba4\u60a8\u4e0a\u4f20\u7684\u6570\u636e\u662f\u6b63\u786e\u7684\uff0c\u4e00\u65e6\u4e0a\u4f20\u5c31\u65e0\u6cd5\u64a4\u9500\u3002","import_upload_rule_format":"\u6211\u4eec\u652f\u6301 vcard<\/code> \u548c vcf<\/code> \u6587\u4ef6\u3002","import_upload_rule_instructions":"\u5bfc\u51fa Contacts.app (macOS)<\/a> \u548c Google Contacts<\/a>\u7684\u8bf4\u660e\u3002","import_upload_rule_limit":"\u6587\u4ef6\u9650\u5236\u4e3a10MB\u3002","import_upload_rule_multiple":"\u73b0\u5728, \u5982\u679c\u60a8\u7684\u8054\u7cfb\u4eba\u6709\u591a\u4e2a\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u6216\u7535\u8bdd\u53f7\u7801, \u5219\u53ea\u4f1a\u83b7\u53d6\u7b2c\u4e00\u4e2a\u6761\u76ee\u3002","import_upload_rule_time":"\u4e0a\u4f20\u8054\u7cfb\u4eba\u548c\u5904\u7406\u5b83\u4eec\u53ef\u80fd\u9700\u89811\u5206\u949f\u7684\u65f6\u95f4\u3002\u8bf7\u8010\u5fc3\u7b49\u5f85\u3002","import_upload_rule_vcard":"\u6211\u4eec\u652f\u6301 vCard 3.0 \u683c\u5f0f, \u8fd9\u662fContacts.app (macOS) \u548c Google Contacts\u7684\u9ed8\u8ba4\u683c\u5f0f. \u3002","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":"\u65e0\u540d\u5b57 (\u5fc5\u586b)","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_tr":"\u571f\u8033\u5176\u6587","locale_zh":"\u7b80\u4f53\u4e2d\u6587","locale_zh-TW":"Chinese Traditional","logs_author":":name \u4e8e :date ","logs_title":"\u6b64\u8d26\u6237\u53d1\u751f\u7684\u6240\u6709\u60c5\u51b5","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":"\u901a\u8baf\u5f55","name":"\u60a8\u7684\u59d3\u540d: :name","name_order":"\u540d\u79f0\u987a\u5e8f","name_order_firstname_lastname":"<\u540d> <\u59d3> - \u5c0f\u660e \u738b","name_order_firstname_lastname_nickname":"<\u540d> <\u59d3> (<\u6635\u79f0>) - \u5c0f\u660e \u738b (\u72d7\u86cb)","name_order_firstname_nickname_lastname":"<\u540d> (<\u6635\u79f0>) <\u59d3> - \u5c0f\u660e (\u72d7\u86cb) \u738b","name_order_lastname_firstname":"<\u59d3> <\u540d> - \u738b \u5c0f\u660e","name_order_lastname_firstname_nickname":"<\u59d3> <\u540d> (<\u6635\u79f0>) - \u738b \u5c0f\u660e (\u72d7\u86cb)","name_order_lastname_nickname_firstname":"<\u59d3> (<\u6635\u79f0>) <\u540d> - \u738b (\u72d7\u86cb) \u5c0f\u660e","name_order_nickname":"<\u6635\u79f0> - \u72d7\u86cb","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u66f4\u6539\u5bc6\u7801","password_change":"\u66f4\u6539\u5bc6\u7801","password_current":"\u5f53\u524d\u5bc6\u7801","password_current_placeholder":"\u8f93\u5165\u5f53\u524d\u5bc6\u7801","password_new1":"\u65b0\u5bc6\u7801","password_new1_placeholder":"\u8f93\u5165\u4e00\u4e2a\u65b0\u5bc6\u7801","password_new2":"\u786e\u8ba4","password_new2_placeholder":"\u91cd\u65b0\u8f93\u5165\u65b0\u5bc6\u7801","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":"\u6211\u4eec\u4e3a\u60a8\u6dfb\u52a0\u4e86\u4e00\u4e9b\u9ed8\u8ba4\u6d3b\u52a8\u53ca\u5206\u7c7b\uff0c\u60a8\u53ef\u4ee5\u5728\u6b64\u5904\u4fee\u6539\u5b83\u4eec\u3002","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":"\u60a8\u771f\u7684\u8981\u5220\u9664\u8fd9\u4e2a\u6d3b\u52a8\u5206\u7c7b\u5417\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u8fd9\u4e2a\u65b0\u7684\u5206\u7c7b\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u8fd9\u4e2a\u65b0\u7684\u6d3b\u52a8\uff1f","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":"\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u5df2\u6210\u529f\u5220\u9664\u3002","personalization_contact_field_type_description":"\u5728\u8fd9\u91cc\u60a8\u53ef\u4ee5\u914d\u7f6e\u6240\u6709\u4e0d\u540c\u7c7b\u578b\u7684\u8054\u7cfb\u4eba\u5b57\u6bb5, \u60a8\u53ef\u4ee5\u5173\u8054\u5230\u6240\u6709\u8054\u7cfb\u4eba\u3002\u5982\u679c\u5c06\u6765\u51fa\u73b0\u65b0\u7684\u793e\u4ea4\u7f51\u7edc, \u60a8\u5c06\u80fd\u591f\u5728\u8fd9\u91cc\u6dfb\u52a0\u8fd9\u79cd\u65b0\u7684\u8054\u7cfb\u65b9\u5f0f\u3002","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":"\u786e\u5b9e\u8981\u5220\u9664\u6b64\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u5417\uff1f\u5220\u9664\u6b64\u7c7b\u578b\u7684\u8054\u7cfb\u4eba\u5b57\u6bb5\u5c06\u5220\u9664\u6240\u6709\u8054\u7cfb\u4eba\u7684\u6b64\u7c7b\u578b\u7684\u6240\u6709\u6570\u636e\u3002","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":"\u662f\u5426\u786e\u5b9e\u8981\u5220\u9664{name}\uff1f","personalization_genders_modal_delete_question":"\u8fd9\u4e2a\u6027\u522b\u4e0b\u6709{count} \u4e2a\u8054\u7cfb\u4eba\uff0c\u8bf7\u60a8\u4e3a\u8fd9\u4e2a\u8054\u7cfb\u4eba\u5206\u914d\u65b0\u7684\u6027\u522b\uff1a|\u8fd9\u4e2a\u6027\u522b\u4e0b\u6709{count} \u4e2a\u8054\u7cfb\u4eba\uff0c\u8bf7\u60a8\u4e3a\u8fd9\u4e9b\u8054\u7cfb\u4eba\u5206\u914d\u65b0\u7684\u6027\u522b","personalization_genders_modal_delete_question_default":"\u6b64\u6027\u522b\u4e3a\u9ed8\u8ba4\u6027\u522b\uff0c\u5982\u679c\u60a8\u5220\u9664\u6b64\u6027\u522b\uff0c\u60a8\u9700\u8981\u6307\u5b9a\u4e00\u4e2a\u65b0\u7684\u9ed8\u8ba4\u6027\u522b","personalization_genders_modal_edit":"\u66f4\u65b0\u6027\u522b\u7c7b\u578b","personalization_genders_modal_error":"\u8bf7\u4ece\u5217\u8868\u4e2d\u9009\u62e9\u4e00\u4e2a\u6709\u6548\u7684\u6027\u522b\u3002","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_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_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_anniversary":"\u5468\u5e74\u7eaa\u5ff5\u65e5","personalization_life_event_type_bought_a_home":"\u4e70\u4e86\u65b0\u623f\u5b50","personalization_life_event_type_broken_bone":"\u9aa8\u6298","personalization_life_event_type_changed_beliefs":"\u6539\u53d8\u4fe1\u4ef0","personalization_life_event_type_dentist":"\u7259\u533b","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_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":"\u65b0\u7684\u7231\u597d","personalization_life_event_type_new_instrument":"\u65b0\u4e50\u5668","personalization_life_event_type_new_job":"\u65b0\u5de5\u4f5c","personalization_life_event_type_new_language":"\u65b0\u8bed\u8a00","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":"\u65b0\u7684\u8fd0\u52a8","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":"\u53bb\u6389\u4e86\u7259\u9f7f\u77eb\u6b63\u5668","personalization_life_event_type_retirement":"\u9000\u4f11","personalization_life_event_type_study_abroad":"\u7559\u5b66","personalization_life_event_type_surgery":"\u624b\u672f","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":"\u6234\u773c\u955c","personalization_life_event_type_weight_loss":"\u51cf\u80a5","personalization_module_desc":"\u6709\u4e9b\u4eba\u5e76\u4e0d\u9700\u8981\u542f\u7528\u6240\u6709\u529f\u80fd\u3002\u56e0\u6b64\u60a8\u53ef\u4ee5\u5728\u6b64\u5904\u9690\u85cf\u4e0d\u9700\u8981\u7684\u529f\u80fd\uff0c\u8be5\u6539\u52a8\u5bf9\u6240\u6709\u8054\u7cfb\u4eba\u751f\u6548\u3002","personalization_module_save":"\u66f4\u6539\u5df2\u88ab\u4fdd\u5b58","personalization_module_title":"\u529f\u80fd","personalization_reminder_rule_desc":"\u5bf9\u4e8e\u60a8\u8bbe\u7f6e\u7684\u6bcf\u4e2a\u63d0\u9192, \u6211\u4eec\u53ef\u4ee5\u5728\u4e8b\u4ef6\u53d1\u751f\u524d\u51e0\u5929\u5411\u60a8\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u3002\u60a8\u53ef\u4ee5\u5728\u6b64\u5904\u5207\u6362\u8fd9\u4e9b\u901a\u77e5\u3002\u8bf7\u6ce8\u610f, \u8fd9\u4e9b\u901a\u77e5\u53ea\u9002\u7528\u4e8e\u6bcf\u6708\u548c\u6bcf\u5e74\u7684\u63d0\u9192\u3002","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":"\u5728\u8fd9\u91cc\u60a8\u53ef\u4ee5\u627e\u5230\u4e0d\u540c\u7684\u8bbe\u7f6e\u6765\u914d\u7f6e\u60a8\u7684\u5e10\u6237\u3002\u8fd9\u4e9b\u529f\u80fd\u66f4\u591a\u7684\u662f\u9488\u5bf9\u60f3\u6700\u5927\u5316\u63a7\u5236Monica \"\u9ad8\u7ea7\u7528\u6237\"\u6240\u8bbe\u7f6e\u3002","recovery_already_used_help":"\u6b64\u4ee3\u7801\u5df2\u88ab\u4f7f\u7528\u3002","recovery_clipboard":"\u5df2\u590d\u5236\u5230\u526a\u8d34\u677f","recovery_copy_help":"\u590d\u5236\u5230\u60a8\u7684\u526a\u8d34\u677f","recovery_generate":"\u6b63\u5728\u751f\u6210\u4ee3\u7801...","recovery_generate_help":"\u8bf7\u6ce8\u610f, \u751f\u6210\u65b0\u4ee3\u7801\u5c06\u4f7f\u4ee5\u524d\u751f\u6210\u7684\u4ee3\u7801\u5931\u6548","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":"\u5e94\u53d1\u9001\u6bcf\u65e5\u63d0\u9192\u7684\u65f6\u95f4","reminder_time_to_send_help":"\u57fa\u4e8e\u60a8\u63d0\u4f9b\u7684\u4fe1\u606f, \u60a8\u7684\u4e0b\u4e00\u6b21\u63d0\u9192\u5c06\u5728 {dateTime}<\/span>\u53d1\u9001.","reset_cta":"\u91cd\u7f6e\u5e10\u6237","reset_desc":"\u60a8\u60f3\u91cd\u7f6e\u60a8\u7684\u5e10\u6237\u5417\uff1f\u8fd9\u5c06\u5220\u9664\u6240\u6709\u8054\u7cfb\u4eba\u4ee5\u53ca\u4e0e\u4e4b\u5173\u8054\u7684\u6570\u636e\u3002\u60a8\u7684\u5e10\u6237\u5c06\u4e0d\u4f1a\u88ab\u5220\u9664\u3002","reset_notice":"\u60a8\u786e\u5b9a\u8981\u91cd\u65b0\u8bbe\u7f6e\u5e10\u6237\u5417\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","reset_success":"\u60a8\u7684\u5e10\u6237\u5df2\u6210\u529f\u91cd\u7f6e","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":"\u6807\u7b7e\u7ba1\u7406","sidebar_settings_users":"\u7528\u6237","storage_account_info":"\u60a8\u7684\u8d26\u6237\u5bb9\u91cf: :accountLimit Mb \/ \u60a8\u76ee\u524d\u5df2\u4f7f\u7528: :currentAccountSize Mb (: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":"\u652f\u6301\u9879\u76ee\u7684\u957f\u4e45\u8fd0\u884c, \u4f7f\u6211\u4eec\u53ef\u4ee5\u5f15\u5165\u66f4\u591a\u7684\u529f\u80fd\u3002","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":"\u60a8\u4e0d\u80fd\u6709\u672a\u63a5\u53d7\u7684\u9080\u8bf7","subscriptions_downgrade_rule_invitations_constraint":"\u60a8\u7684\u5e10\u6237\u4e2d\u5f53\u524d\u6709 :count \u4e2a\u672a\u786e\u8ba4\u9080\u8bf7<\/a>\u3002","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":"\u975e\u5e38\u611f\u8c22\u60a8\u5c1d\u8bd5\u8fc7\u9ad8\u7ea7\u7248\u8ba2\u9605\u3002\u6211\u4eec\u4e00\u76f4\u4e3aMonica\u4e0d\u65ad\u5730\u589e\u52a0\u65b0\u7684\u529f\u80fd-, \u671f\u5f85\u60a8\u7684\u518d\u6b21\u8ba2\u9605\u3002","subscriptions_downgrade_title":"\u5c06\u60a8\u7684\u5e10\u6237\u964d\u7ea7\u4e3a\u514d\u8d39\u7248","subscriptions_help_change_desc":"\u60a8\u53ef\u4ee5\u968f\u65f6\u53d6\u6d88\u60a8\u7684\u8ba2\u9605\u3002\u4f46\u662f\uff0c\u76ee\u524d\u4e3a\u6b62\u6211\u4eec\u65e0\u6cd5\u63d0\u4f9b\u9000\u6b3e\u670d\u52a1\u3002","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":"\u4f60\u4eec\u5bf9\u514d\u8d39\u7248\u7684\u8054\u7cfb\u4eba\u6709\u9650\u5236\u5417\uff1f","subscriptions_help_opensource_desc":"Monica\u662f\u4e00\u4e2a\u5f00\u6e90\u9879\u76ee\uff0c\u8fd9\u610f\u5473\u7740\u5b83\u662f\u7531\u793e\u533a\u5efa\u9020\u7684\u9879\u76ee\u3002\u5f00\u6e90\u610f\u5473\u7740\u4ee3\u7801\u5728 GitHub \u4e0a\u516c\u5f00\u63d0\u4f9b, \u6bcf\u4e2a\u4eba\u90fd\u53ef\u4ee5\u68c0\u67e5\u5e76\u4fee\u6539\u5b83\u3002\u6211\u4eec\u7b79\u96c6\u7684\u6240\u6709\u8d44\u91d1\u90fd\u81f4\u529b\u4e8e\u5efa\u7acb\u66f4\u597d\u7684\u529f\u80fd, \u62e5\u6709\u66f4\u5f3a\u5927\u7684\u670d\u52a1\u5668, \u5e2e\u52a9\u652f\u4ed8\u8d26\u5355\u3002\u6ca1\u6709\u60a8\u7684\u652f\u6301\uff0c\u6211\u4eec\u5c06\u65e0\u6cd5\u5b8c\u6210\u8fd9\u4e00\u5207\u3002","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":"\u60a8\u5c06\u652f\u4ed8 :price \uff0c\u4e0b\u6b21\u6263\u8d39\u65e5\u671f\uff1a:date\u3002\u5982\u679c\u60a8\u6539\u53d8\u4e3b\u610f\u4e86\uff0c\u60a8\u53ef\u4ee5\u968f\u65f6\u53d6\u6d88\u8ba2\u9605\u3002","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":"\u6807\u7b7e\u7684\u5de5\u4f5c\u65b9\u5f0f\u7c7b\u4f3c\u4e8e\u6587\u4ef6\u5939, \u4f46\u53ef\u4ee5\u5411\u8054\u7cfb\u4eba\u6dfb\u52a0\u591a\u4e2a\u6807\u7b7e\u3002\u8f6c\u5230\u8054\u7cfb\u4eba\u5e76\u5728\u540d\u5b57\u7684\u4e0b\u9762\u6807\u8bb0\u4e00\u4e2a\u670b\u53cb,\u3002\u4e00\u65e6\u8054\u7cfb\u4eba\u88ab\u6807\u8bb0, \u8bf7\u8fd4\u56de\u6b64\u5904\u7ba1\u7406\u5e10\u6237\u4e2d\u7684\u6240\u6709\u6807\u7b7e\u3002","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":"\u6211\u786e\u8ba4\u6211\u60f3\u9080\u8bf7\u8fd9\u4e2a\u7528\u6237\u5230\u6211\u7684\u5e10\u6237\u3002\u6b64\u4eba\u5c06\u8bbf\u95ee\u6211\u7684\u6240\u6709\u6570\u636e, \u5e76\u4e0e\u6211\u6240\u770b\u5230\u7684\u4e00\u81f4\u3002","users_add_cta":"\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u9080\u8bf7\u7528\u6237","users_add_description":"\u6b64\u4eba\u5c06\u62e5\u6709\u4e0e\u60a8\u76f8\u540c\u7684\u6743\u5229, \u5305\u62ec\u9080\u8bf7\u5176\u4ed6\u7528\u6237\u5e76\u5220\u9664\u5b83\u4eec (\u5305\u62ec\u60a8)\u3002\u56e0\u6b64, \u8bf7\u786e\u4fdd\u60a8\u4fe1\u4efb\u6b64\u4eba\u3002","users_add_email_field":"\u8f93\u5165\u60a8\u8981\u9080\u8bf7\u7684\u4eba\u7684\u7535\u5b50\u90ae\u4ef6","users_add_title":"\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u9080\u8bf7\u65b0\u7528\u6237\u5230\u60a8\u7684\u5e10\u6237","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"}} +{"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":"\u4fc3\u8fdb\u4f60\u4eec\u4e4b\u95f4\u7684\u611f\u60c5\u3002\u4e00\u4e2a\u514d\u8d39\u4e14\u5f00\u6e90\u7684\u9762\u5411\u4eb2\u670b\u597d\u53cb\u7684CRM\u5de5\u5177","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","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":"\u786e\u5b9a\uff1f","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":"\u7f51\u7ad9\u7ef4\u62a4\u4e2d\uff0c\u5f85\u4f1a\u89c1\uff01","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":"\u9009\u62e9\u4e86 1 \u4e2a\u6587\u4ef6...| \u9009\u62e9\u4e86 {count} \u4e2a\u6587\u4ef6...","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":"\u6709\u65b0\u7248\u672c\u53ef\u7528\uff01","footer_newsletter":"\u65b0\u95fb\u7b80\u62a5","footer_privacy":"\u9690\u79c1\u6761\u6b3e","footer_release":"\u7248\u672c\u8bf4\u660e","footer_remarks":"\u6709\u4ec0\u4e48\u610f\u89c1\u5417\uff1f","footer_send_email":"\u7ed9\u6211\u53d1\u7535\u5b50\u90ae\u4ef6","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":"\u6b63\u5728\u52a0\u8f7d...","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_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_created_with_name_with_link":"\u6dfb\u52a0 :name<\/a> \u4f5c\u4e3a\u8054\u7cfb\u4eba","settings_log_contact_description_cleared_with_name":"\u5df2\u6e05\u9664 :name \u7684\u63cf\u8ff0","settings_log_contact_description_cleared_with_name_with_link":"\u5df2\u6e05\u9664 :name<\/a> \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u63cf\u8ff0","settings_log_contact_description_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \u7684\u63cf\u8ff0\u3002","settings_log_contact_work_updated_with_name":"\u66f4\u65b0\u4e86 :name \u7684\u5de5\u4f5c\u4fe1\u606f","settings_log_contact_work_updated_with_name_with_link":"\u66f4\u65b0\u4e86 :name<\/a> \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_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":"\u6bcf\u9875\u884c\u6570:","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","photo_previous":"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":"\u5de5\u4f5c\u4fe1\u606f\u5df2\u6210\u529f\u66f4\u65b0","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":"\u4e3a\u60a8\u7684\u5e10\u6237\u7981\u7528\u53cc\u91cd\u7d20\u8eab\u4efd\u9a8c\u8bc1\u3002\u5c0f\u5fc3, \u4f60\u7684\u5e10\u6237\u5c06\u4e0d\u518d\u5b89\u5168!","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":"\u542f\u7528\u53cc\u91cd\u8eab\u4efd\u9a8c\u8bc1\u4ee5\u63d0\u9ad8\u5e10\u6237\u7684\u5b89\u5168\u6027\u3002","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":"\u6253\u5f00\u60a8\u7684\u53cc\u91cd\u8ba4\u8bc1\u79fb\u52a8\u5e94\u7528\u7a0b\u5e8f, \u5e76\u626b\u63cf\u4ee5\u4e0b QR \u6761\u7801:","2fa_enable_otp_help":"\u5982\u679c\u60a8\u7684\u53cc\u91cd\u8ba4\u8bc1\u79fb\u52a8\u5e94\u7528\u7a0b\u5e8f\u4e0d\u652f\u6301 QR \u6761\u7801, \u8bf7\u5728\u4e0b\u9762\u7684\u4ee3\u7801\u4e2d\u8f93\u5165:","2fa_enable_otp_validate":"\u8bf7\u9a8c\u8bc1\u60a8\u521a\u8bbe\u7f6e\u7684\u65b0\u8bbe\u5907:","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":"\u5c1a\u65e0\u6388\u6743\u5ba2\u6237\u7aef","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":"\u5b58\u6863\u6240\u6709\u8054\u7cfb\u4eba","archive_desc":"\u8fd9\u5c06\u5b58\u6863\u60a8\u5e10\u6237\u4e2d\u7684\u6240\u6709\u8054\u7cfb\u4eba","archive_title":"\u5b58\u6863\u60a8\u5e10\u6237\u4e2d\u7684\u6240\u6709\u8054\u7cfb\u4eba","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":"\u60a8\u60f3\u8981\u5220\u9664\u60a8\u7684\u5e10\u6237\u5417\uff1f\u8b66\u544a\uff1a\u5220\u9664\u662f\u6c38\u4e45\u6027\u7684\uff0c\u60a8\u7684\u6240\u6709\u6570\u636e\u5c06\u88ab\u6c38\u4e45\u5220\u9664\uff0c\u5982\u679c\u60a8\u6709\u8ba2\u9605\u7684\u8bdd\u4e5f\u5c06\u7acb\u5373\u53d6\u6d88","delete_notice":"\u60a8\u786e\u5b9a\u8981\u91cd\u65b0\u8bbe\u7f6e\u5e10\u6237\u5417\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","delete_other_desc":"\u58f0\u660e\uff1a\u60a8\u5728\u4e3b\u6570\u636e\u5e93\u4e2d\u7684\u6570\u636e\u5c06\u7acb\u5373\u5220\u9664\u3002 \u7136\u800c\uff0c\u6b63\u5982\u6211\u4eec\u7684\u9690\u79c1\u653f\u7b56\u6240\u63cf\u8ff0\u7684\u90a3\u6837\u3002 \u5982\u679c\u51fa\u73b0\u6545\u969c\uff0c\u6211\u4eec\u4f1a\u505a\u6570\u636e\u5e93\u7684\u6bcf\u65e5\u5907\u4efd\u3002\u5907\u4efd\u5c06\u4fdd\u5b5830\u5929\u2014\u2014\u7136\u540e\u5b83\u5c06\u88ab\u5b8c\u5168\u5220\u9664\u3002 \u60f3\u8c61\u6211\u4eec\u53ef\u4ee5\u5728\u6240\u6709\u5907\u4efd\u4e2d\u5220\u9664\u60a8\u7684\u7279\u5b9a\u6570\u636e\u662f\u4e0d\u73b0\u5b9e\u7684\u3002 \u987a\u4fbf\u63d0\u4e00\u4e0b\uff0c\u8fd9\u79cd\u6570\u636e\u662f\u5728\u975e\u5e38\u5b89\u5168\u7684\u4e9a\u9a6c\u900a\u670d\u52a1\u5668\u4e0a\u52a0\u5bc6\u7684\uff0c\u9664\u4e86\u6211\u4eec\u4ee5\u5916\uff0c\u6ca1\u6709\u4eba\u62e5\u6709\u52a0\u5bc6\u5bc6\u94a5\u3002 \u56e0\u6b64\uff0c\u60a8\u7684\u6570\u636e\u5c06\u5728 30 \u5929\u540e\u4ece\u6240\u6709\u5907\u4efd\u4e2d\u5b8c\u5168\u6d88\u5931\u3002","delete_title":"\u5220\u9664\u60a8\u7684\u5e10\u6237","email":"\u7535\u5b50\u90ae\u4ef6\u5730\u5740","email_help":"\u8fd9\u662f\u7528\u4e8e\u767b\u5f55\u7684\u7535\u5b50\u90ae\u4ef6, \u540c\u65f6\u4e5f\u7528\u6765\u63a5\u6536\u60a8\u7684\u63d0\u9192\u3002","email_placeholder":"\u8f93\u5165\u7535\u5b50\u90ae\u7bb1","export_be_patient":"\u5355\u51fb\u6309\u94ae\u5f00\u59cb\u5bfc\u51fa\u3002\u5904\u7406\u5bfc\u51fa\u53ef\u80fd\u9700\u8981\u51e0\u5206\u949f\u65f6\u95f4\uff0c\u8bf7\u8010\u5fc3\u7b49\u5f85, \u4e0d\u8981\u53d6\u6d88\u6309\u94ae\u3002","export_sql_cta":"\u5bfc\u51fa\u5230 SQL","export_sql_explanation":"\u4ee5 SQL \u683c\u5f0f\u5bfc\u51fa\u6570\u636e\u4f7f\u60a8\u53ef\u4ee5\u5c06\u6570\u636e\u5bfc\u5165\u5230\u81ea\u5df1\u7684Monica\u5b9e\u4f8b\u4e2d\u3002\u8fd9\u53ea\u5728\u4f60\u6709\u81ea\u5df1\u7684\u670d\u52a1\u5668\u65f6\u6709\u6548\u3002","export_sql_link_instructions":"\u6ce8\u610f: \u9605\u8bfb\u8bf4\u660e<\/a>, \u4e86\u89e3\u6709\u5173\u5c06\u6b64\u6587\u4ef6\u5bfc\u5165\u5230\u60a8\u7684\u5b9e\u4f8b\u7684\u8be6\u7ec6\u4fe1\u606f\u3002","export_title":"\u5bfc\u51fa\u5e10\u6237\u6570\u636e","export_title_sql":"\u5bfc\u51fa\u5230 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":"\u6dfb\u52a0\u65b0\u6761\u76ee, \u8df3\u8fc7\u5df2\u6709\u6761\u76ee","import_upload_behaviour_help":"\u63d0\u793a: \u66ff\u6362\u4f1a\u66ff\u6362\u6240\u6709\u5728 vCard \u6587\u4ef6\u4e2d\u83b7\u53d6\u7684\u6570\u636e, \u4f46\u662f\u4f1a\u4fdd\u7559\u672a\u88ab\u66ff\u6362\u7684\u4fe1\u606f\u533a\u57df\u3002","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":"\u8bf7\u786e\u8ba4\u60a8\u4e0a\u4f20\u7684\u6570\u636e\u662f\u6b63\u786e\u7684\uff0c\u4e00\u65e6\u4e0a\u4f20\u5c31\u65e0\u6cd5\u64a4\u9500\u3002","import_upload_rule_format":"\u6211\u4eec\u652f\u6301 vcard<\/code> \u548c vcf<\/code> \u6587\u4ef6\u3002","import_upload_rule_instructions":"\u5bfc\u51fa Contacts.app (macOS)<\/a> \u548c Google Contacts<\/a>\u7684\u8bf4\u660e\u3002","import_upload_rule_limit":"\u6587\u4ef6\u9650\u5236\u4e3a10MB\u3002","import_upload_rule_multiple":"\u73b0\u5728, \u5982\u679c\u60a8\u7684\u8054\u7cfb\u4eba\u6709\u591a\u4e2a\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u6216\u7535\u8bdd\u53f7\u7801, \u5219\u53ea\u4f1a\u83b7\u53d6\u7b2c\u4e00\u4e2a\u6761\u76ee\u3002","import_upload_rule_time":"\u4e0a\u4f20\u8054\u7cfb\u4eba\u548c\u5904\u7406\u5b83\u4eec\u53ef\u80fd\u9700\u89811\u5206\u949f\u7684\u65f6\u95f4\u3002\u8bf7\u8010\u5fc3\u7b49\u5f85\u3002","import_upload_rule_vcard":"\u6211\u4eec\u652f\u6301 vCard 3.0 \u683c\u5f0f, \u8fd9\u662fContacts.app (macOS) \u548c Google Contacts\u7684\u9ed8\u8ba4\u683c\u5f0f. \u3002","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":"\u65e0\u540d\u5b57 (\u5fc5\u586b)","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_author":":name \u4e8e :date ","logs_title":"\u6b64\u8d26\u6237\u53d1\u751f\u7684\u6240\u6709\u60c5\u51b5","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":"\u901a\u8baf\u5f55","name":"\u60a8\u7684\u59d3\u540d: :name","name_order":"\u540d\u79f0\u987a\u5e8f","name_order_firstname_lastname":"<\u540d> <\u59d3> - \u5c0f\u660e \u738b","name_order_firstname_lastname_nickname":"<\u540d> <\u59d3> (<\u6635\u79f0>) - \u5c0f\u660e \u738b (\u72d7\u86cb)","name_order_firstname_nickname_lastname":"<\u540d> (<\u6635\u79f0>) <\u59d3> - \u5c0f\u660e (\u72d7\u86cb) \u738b","name_order_lastname_firstname":"<\u59d3> <\u540d> - \u738b \u5c0f\u660e","name_order_lastname_firstname_nickname":"<\u59d3> <\u540d> (<\u6635\u79f0>) - \u738b \u5c0f\u660e (\u72d7\u86cb)","name_order_lastname_nickname_firstname":"<\u59d3> (<\u6635\u79f0>) <\u540d> - \u738b (\u72d7\u86cb) \u5c0f\u660e","name_order_nickname":"<\u6635\u79f0> - \u72d7\u86cb","name_order_nickname_firstname_lastname":" ( ) - Rambo (Doe John)","password_btn":"\u66f4\u6539\u5bc6\u7801","password_change":"\u66f4\u6539\u5bc6\u7801","password_current":"\u5f53\u524d\u5bc6\u7801","password_current_placeholder":"\u8f93\u5165\u5f53\u524d\u5bc6\u7801","password_new1":"\u65b0\u5bc6\u7801","password_new1_placeholder":"\u8f93\u5165\u4e00\u4e2a\u65b0\u5bc6\u7801","password_new2":"\u786e\u8ba4","password_new2_placeholder":"\u91cd\u65b0\u8f93\u5165\u65b0\u5bc6\u7801","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":"\u6211\u4eec\u4e3a\u60a8\u6dfb\u52a0\u4e86\u4e00\u4e9b\u9ed8\u8ba4\u6d3b\u52a8\u53ca\u5206\u7c7b\uff0c\u60a8\u53ef\u4ee5\u5728\u6b64\u5904\u4fee\u6539\u5b83\u4eec\u3002","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":"\u60a8\u771f\u7684\u8981\u5220\u9664\u8fd9\u4e2a\u6d3b\u52a8\u5206\u7c7b\u5417\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u8fd9\u4e2a\u65b0\u7684\u5206\u7c7b\uff1f","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":"\u60a8\u60f3\u5982\u4f55\u547d\u540d\u8fd9\u4e2a\u65b0\u7684\u6d3b\u52a8\uff1f","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":"\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u5df2\u6210\u529f\u5220\u9664\u3002","personalization_contact_field_type_description":"\u5728\u8fd9\u91cc\u60a8\u53ef\u4ee5\u914d\u7f6e\u6240\u6709\u4e0d\u540c\u7c7b\u578b\u7684\u8054\u7cfb\u4eba\u5b57\u6bb5, \u60a8\u53ef\u4ee5\u5173\u8054\u5230\u6240\u6709\u8054\u7cfb\u4eba\u3002\u5982\u679c\u5c06\u6765\u51fa\u73b0\u65b0\u7684\u793e\u4ea4\u7f51\u7edc, \u60a8\u5c06\u80fd\u591f\u5728\u8fd9\u91cc\u6dfb\u52a0\u8fd9\u79cd\u65b0\u7684\u8054\u7cfb\u65b9\u5f0f\u3002","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":"\u786e\u5b9e\u8981\u5220\u9664\u6b64\u8054\u7cfb\u4eba\u5b57\u6bb5\u7c7b\u578b\u5417\uff1f\u5220\u9664\u6b64\u7c7b\u578b\u7684\u8054\u7cfb\u4eba\u5b57\u6bb5\u5c06\u5220\u9664\u6240\u6709\u8054\u7cfb\u4eba\u7684\u6b64\u7c7b\u578b\u7684\u6240\u6709\u6570\u636e\u3002","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":"\u662f\u5426\u786e\u5b9e\u8981\u5220\u9664{name}\uff1f","personalization_genders_modal_delete_question":"\u8fd9\u4e2a\u6027\u522b\u4e0b\u6709{count} \u4e2a\u8054\u7cfb\u4eba\uff0c\u8bf7\u60a8\u4e3a\u8fd9\u4e2a\u8054\u7cfb\u4eba\u5206\u914d\u65b0\u7684\u6027\u522b\uff1a|\u8fd9\u4e2a\u6027\u522b\u4e0b\u6709{count} \u4e2a\u8054\u7cfb\u4eba\uff0c\u8bf7\u60a8\u4e3a\u8fd9\u4e9b\u8054\u7cfb\u4eba\u5206\u914d\u65b0\u7684\u6027\u522b","personalization_genders_modal_delete_question_default":"\u6b64\u6027\u522b\u4e3a\u9ed8\u8ba4\u6027\u522b\uff0c\u5982\u679c\u60a8\u5220\u9664\u6b64\u6027\u522b\uff0c\u60a8\u9700\u8981\u6307\u5b9a\u4e00\u4e2a\u65b0\u7684\u9ed8\u8ba4\u6027\u522b","personalization_genders_modal_edit":"\u66f4\u65b0\u6027\u522b\u7c7b\u578b","personalization_genders_modal_error":"\u8bf7\u4ece\u5217\u8868\u4e2d\u9009\u62e9\u4e00\u4e2a\u6709\u6548\u7684\u6027\u522b\u3002","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 by default with a set of predefined categories and types, 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":"\u9aa8\u6298","personalization_life_event_type_changed_beliefs":"\u6539\u53d8\u4fe1\u4ef0","personalization_life_event_type_dentist":"\u7259\u533b","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":"How 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":"\u65b0\u7684\u7231\u597d","personalization_life_event_type_new_instrument":"\u65b0\u4e50\u5668","personalization_life_event_type_new_job":"\u65b0\u5de5\u4f5c","personalization_life_event_type_new_language":"\u65b0\u8bed\u8a00","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":"\u65b0\u7684\u8fd0\u52a8","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":"\u53bb\u6389\u4e86\u7259\u9f7f\u77eb\u6b63\u5668","personalization_life_event_type_retirement":"\u9000\u4f11","personalization_life_event_type_study_abroad":"\u7559\u5b66","personalization_life_event_type_surgery":"\u624b\u672f","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":"\u6234\u773c\u955c","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":"\u6709\u4e9b\u4eba\u5e76\u4e0d\u9700\u8981\u542f\u7528\u6240\u6709\u529f\u80fd\u3002\u56e0\u6b64\u60a8\u53ef\u4ee5\u5728\u6b64\u5904\u9690\u85cf\u4e0d\u9700\u8981\u7684\u529f\u80fd\uff0c\u8be5\u6539\u52a8\u5bf9\u6240\u6709\u8054\u7cfb\u4eba\u751f\u6548\u3002","personalization_module_save":"\u66f4\u6539\u5df2\u88ab\u4fdd\u5b58","personalization_module_title":"\u529f\u80fd","personalization_reminder_rule_desc":"\u5bf9\u4e8e\u60a8\u8bbe\u7f6e\u7684\u6bcf\u4e2a\u63d0\u9192, \u6211\u4eec\u53ef\u4ee5\u5728\u4e8b\u4ef6\u53d1\u751f\u524d\u51e0\u5929\u5411\u60a8\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u3002\u60a8\u53ef\u4ee5\u5728\u6b64\u5904\u5207\u6362\u8fd9\u4e9b\u901a\u77e5\u3002\u8bf7\u6ce8\u610f, \u8fd9\u4e9b\u901a\u77e5\u53ea\u9002\u7528\u4e8e\u6bcf\u6708\u548c\u6bcf\u5e74\u7684\u63d0\u9192\u3002","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":"\u5728\u8fd9\u91cc\u60a8\u53ef\u4ee5\u627e\u5230\u4e0d\u540c\u7684\u8bbe\u7f6e\u6765\u914d\u7f6e\u60a8\u7684\u5e10\u6237\u3002\u8fd9\u4e9b\u529f\u80fd\u66f4\u591a\u7684\u662f\u9488\u5bf9\u60f3\u6700\u5927\u5316\u63a7\u5236Monica \"\u9ad8\u7ea7\u7528\u6237\"\u6240\u8bbe\u7f6e\u3002","recovery_already_used_help":"\u6b64\u4ee3\u7801\u5df2\u88ab\u4f7f\u7528\u3002","recovery_clipboard":"\u5df2\u590d\u5236\u5230\u526a\u8d34\u677f","recovery_copy_help":"\u590d\u5236\u5230\u60a8\u7684\u526a\u8d34\u677f","recovery_generate":"\u6b63\u5728\u751f\u6210\u4ee3\u7801...","recovery_generate_help":"\u8bf7\u6ce8\u610f, \u751f\u6210\u65b0\u4ee3\u7801\u5c06\u4f7f\u4ee5\u524d\u751f\u6210\u7684\u4ee3\u7801\u5931\u6548","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":"\u5e94\u53d1\u9001\u6bcf\u65e5\u63d0\u9192\u7684\u65f6\u95f4","reminder_time_to_send_help":"\u57fa\u4e8e\u60a8\u63d0\u4f9b\u7684\u4fe1\u606f, \u60a8\u7684\u4e0b\u4e00\u6b21\u63d0\u9192\u5c06\u5728 {dateTime}<\/span>\u53d1\u9001.","reset_cta":"\u91cd\u7f6e\u5e10\u6237","reset_desc":"\u60a8\u60f3\u91cd\u7f6e\u60a8\u7684\u5e10\u6237\u5417\uff1f\u8fd9\u5c06\u5220\u9664\u6240\u6709\u8054\u7cfb\u4eba\u4ee5\u53ca\u4e0e\u4e4b\u5173\u8054\u7684\u6570\u636e\u3002\u60a8\u7684\u5e10\u6237\u5c06\u4e0d\u4f1a\u88ab\u5220\u9664\u3002","reset_notice":"\u60a8\u786e\u5b9a\u8981\u91cd\u65b0\u8bbe\u7f6e\u5e10\u6237\u5417\uff1f\u6b64\u64cd\u4f5c\u4e0d\u80fd\u56de\u9000\u3002","reset_success":"\u60a8\u7684\u5e10\u6237\u5df2\u6210\u529f\u91cd\u7f6e","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":"\u6807\u7b7e\u7ba1\u7406","sidebar_settings_users":"\u7528\u6237","storage_account_info":"\u60a8\u7684\u8d26\u6237\u5bb9\u91cf: :accountLimit Mb \/ \u60a8\u76ee\u524d\u5df2\u4f7f\u7528: :currentAccountSize Mb (: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":"\u652f\u6301\u9879\u76ee\u7684\u957f\u4e45\u8fd0\u884c, \u4f7f\u6211\u4eec\u53ef\u4ee5\u5f15\u5165\u66f4\u591a\u7684\u529f\u80fd\u3002","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":"\u60a8\u4e0d\u80fd\u6709\u672a\u63a5\u53d7\u7684\u9080\u8bf7","subscriptions_downgrade_rule_invitations_constraint":"\u60a8\u7684\u5e10\u6237\u4e2d\u5f53\u524d\u6709 :count \u4e2a\u672a\u786e\u8ba4\u9080\u8bf7<\/a>\u3002","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":"\u975e\u5e38\u611f\u8c22\u60a8\u5c1d\u8bd5\u8fc7\u9ad8\u7ea7\u7248\u8ba2\u9605\u3002\u6211\u4eec\u4e00\u76f4\u4e3aMonica\u4e0d\u65ad\u5730\u589e\u52a0\u65b0\u7684\u529f\u80fd-, \u671f\u5f85\u60a8\u7684\u518d\u6b21\u8ba2\u9605\u3002","subscriptions_downgrade_title":"\u5c06\u60a8\u7684\u5e10\u6237\u964d\u7ea7\u4e3a\u514d\u8d39\u7248","subscriptions_help_change_desc":"\u60a8\u53ef\u4ee5\u968f\u65f6\u53d6\u6d88\u60a8\u7684\u8ba2\u9605\u3002\u4f46\u662f\uff0c\u76ee\u524d\u4e3a\u6b62\u6211\u4eec\u65e0\u6cd5\u63d0\u4f9b\u9000\u6b3e\u670d\u52a1\u3002","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":"\u4f60\u4eec\u5bf9\u514d\u8d39\u7248\u7684\u8054\u7cfb\u4eba\u6709\u9650\u5236\u5417\uff1f","subscriptions_help_opensource_desc":"Monica\u662f\u4e00\u4e2a\u5f00\u6e90\u9879\u76ee\uff0c\u8fd9\u610f\u5473\u7740\u5b83\u662f\u7531\u793e\u533a\u5efa\u9020\u7684\u9879\u76ee\u3002\u5f00\u6e90\u610f\u5473\u7740\u4ee3\u7801\u5728 GitHub \u4e0a\u516c\u5f00\u63d0\u4f9b, \u6bcf\u4e2a\u4eba\u90fd\u53ef\u4ee5\u68c0\u67e5\u5e76\u4fee\u6539\u5b83\u3002\u6211\u4eec\u7b79\u96c6\u7684\u6240\u6709\u8d44\u91d1\u90fd\u81f4\u529b\u4e8e\u5efa\u7acb\u66f4\u597d\u7684\u529f\u80fd, \u62e5\u6709\u66f4\u5f3a\u5927\u7684\u670d\u52a1\u5668, \u5e2e\u52a9\u652f\u4ed8\u8d26\u5355\u3002\u6ca1\u6709\u60a8\u7684\u652f\u6301\uff0c\u6211\u4eec\u5c06\u65e0\u6cd5\u5b8c\u6210\u8fd9\u4e00\u5207\u3002","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":"\u60a8\u5c06\u652f\u4ed8 :price \uff0c\u4e0b\u6b21\u6263\u8d39\u65e5\u671f\uff1a:date\u3002\u5982\u679c\u60a8\u6539\u53d8\u4e3b\u610f\u4e86\uff0c\u60a8\u53ef\u4ee5\u968f\u65f6\u53d6\u6d88\u8ba2\u9605\u3002","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":"\u6807\u7b7e\u7684\u5de5\u4f5c\u65b9\u5f0f\u7c7b\u4f3c\u4e8e\u6587\u4ef6\u5939, \u4f46\u53ef\u4ee5\u5411\u8054\u7cfb\u4eba\u6dfb\u52a0\u591a\u4e2a\u6807\u7b7e\u3002\u8f6c\u5230\u8054\u7cfb\u4eba\u5e76\u5728\u540d\u5b57\u7684\u4e0b\u9762\u6807\u8bb0\u4e00\u4e2a\u670b\u53cb,\u3002\u4e00\u65e6\u8054\u7cfb\u4eba\u88ab\u6807\u8bb0, \u8bf7\u8fd4\u56de\u6b64\u5904\u7ba1\u7406\u5e10\u6237\u4e2d\u7684\u6240\u6709\u6807\u7b7e\u3002","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":"\u6211\u786e\u8ba4\u6211\u60f3\u9080\u8bf7\u8fd9\u4e2a\u7528\u6237\u5230\u6211\u7684\u5e10\u6237\u3002\u6b64\u4eba\u5c06\u8bbf\u95ee\u6211\u7684\u6240\u6709\u6570\u636e, \u5e76\u4e0e\u6211\u6240\u770b\u5230\u7684\u4e00\u81f4\u3002","users_add_cta":"\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u9080\u8bf7\u7528\u6237","users_add_description":"\u6b64\u4eba\u5c06\u62e5\u6709\u4e0e\u60a8\u76f8\u540c\u7684\u6743\u5229, \u5305\u62ec\u9080\u8bf7\u5176\u4ed6\u7528\u6237\u5e76\u5220\u9664\u5b83\u4eec (\u5305\u62ec\u60a8)\u3002\u56e0\u6b64, \u8bf7\u786e\u4fdd\u60a8\u4fe1\u4efb\u6b64\u4eba\u3002","users_add_email_field":"\u8f93\u5165\u60a8\u8981\u9080\u8bf7\u7684\u4eba\u7684\u7535\u5b50\u90ae\u4ef6","users_add_title":"\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u9080\u8bf7\u65b0\u7528\u6237\u5230\u60a8\u7684\u5e10\u6237","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"}} diff --git a/public/mix-manifest.json b/public/mix-manifest.json index ca5393f6ad6..5fe0a00024a 100644 --- a/public/mix-manifest.json +++ b/public/mix-manifest.json @@ -2,8 +2,8 @@ "/js/manifest.js": "/js/manifest.js?id=7db827d654313dce4250", "/js/vendor.js": "/js/vendor.js?id=97d06b404edf4b6073de", "/js/app.js": "/js/app.js?id=eaa287c0e6c4e2864f61", - "/css/app-ltr.css": "/css/app-ltr.css?id=94a406592b3c938b6c66", - "/css/app-rtl.css": "/css/app-rtl.css?id=b9e7e1b64d79c5a5842a", + "/css/app-ltr.css": "/css/app-ltr.css?id=2b577e6d6903f823cc6c", + "/css/app-rtl.css": "/css/app-rtl.css?id=a6414e43c80b63fd0a22", "/css/stripe.css": "/css/stripe.css?id=746c8aaac01c56d3cee1", "/js/stripe.js": "/js/stripe.js?id=31bf2d83f6ef3685ff0b" } diff --git a/resources/lang/ar/settings.php b/resources/lang/ar/settings.php index f7468ede3f5..7e7d361c886 100644 --- a/resources/lang/ar/settings.php +++ b/resources/lang/ar/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'البرتغالية', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'الروسية', + 'locale_sv' => 'Swedish', 'locale_zh' => 'الصينية المبسطة', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'التركية', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'لا نستطيع إيجاد نوع هذا النشاط.', 'personalization_activity_type_category_modal_delete_error' => 'لا نستطيع إيجاد تصنيف هذا النوع من الأنشطة.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'العمل و التعليم', 'personalization_life_event_category_family_relationships' => 'العائلة و العلاقات', 'personalization_life_event_category_home_living' => 'المنزل و العيش', diff --git a/resources/lang/cs/settings.php b/resources/lang/cs/settings.php index 22742118906..94acf686f03 100644 --- a/resources/lang/cs/settings.php +++ b/resources/lang/cs/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portuguese', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Ruština', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinese Simplified', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turkish', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/da/settings.php b/resources/lang/da/settings.php index 2cdb68ed412..66527a2e0e9 100644 --- a/resources/lang/da/settings.php +++ b/resources/lang/da/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portuguese', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russian', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinese Simplified', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turkish', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/de/app.php b/resources/lang/de/app.php index dee911e078e..17f036ce7f9 100644 --- a/resources/lang/de/app.php +++ b/resources/lang/de/app.php @@ -13,7 +13,7 @@ 'save' => 'Speichern', 'add' => 'Hinzufügen', 'cancel' => 'Abbrechen', - 'confirm' => 'Confirm', + 'confirm' => 'Bestätigen', 'delete_confirm' => 'Sicher?', 'delete' => 'Löschen', 'edit' => 'Bearbeiten', @@ -42,9 +42,9 @@ 'upgrade' => 'Zum Freischalten aktualisieren', 'percent_uploaded' => '{percent}% hochgeladen', 'retry' => 'Wiederholen', - 'filter' => 'Filter the list', + 'filter' => 'Liste filtern', 'go_back' => 'Zurück', - 'file_selected' => '1 file selected...|{count} files selected...', + 'file_selected' => '1 Datei ausgewählt...|{count} Dateien ausgewählt...', 'application_title' => 'Monica – persönlicher Beziehungsmanager', 'application_description' => 'Monica ist ein Werkzeug, um Ihre Interaktionen mit Ihren Lieben, Freunden und Familie zu verwalten.', @@ -108,15 +108,15 @@ 'error_title' => 'Whoops! Da lief etwas falsch.', 'error_unauthorized' => 'Du darfst das leider nicht, da du nicht angemeldet bist.', - 'error_user_account' => 'This user does not belong to the given account.', + 'error_user_account' => 'Dieser Benutzer gehört nicht zum angegebenen Konto.', 'error_save' => 'Beim Versuch die Daten zu speichern ist ein Fehler aufgetreten.', 'error_try_again' => 'Etwas ist schiefgegangen. Bitte versuche es noch mal.', 'error_id' => 'Fehler Nr: :id', - 'error_unavailable' => 'Service unavailable', + 'error_unavailable' => 'Dienst nicht verfügbar', 'error_maintenance' => 'Wartungsarbeiten im Gange. Bin gleich zurück.', 'error_help' => 'Wir sind gleich wieder da.', 'error_twitter' => 'Folgen Sie uns auf Twitter um informiert zu werden, wenn es weitergeht.', - 'error_no_term' => 'There is no policy for this instance yet.', + 'error_no_term' => 'Für diese Instanz gibt es noch keine Richtlinie.', 'default_save_success' => 'Die Daten wurden gespeichert.', @@ -309,7 +309,7 @@ 'emotion_adoration' => 'Verehrung', 'emotion_affection' => 'Zuneigung', 'emotion_love' => 'Liebe', - 'emotion_fondness' => 'Fondness', + 'emotion_fondness' => 'Zuneigung', 'emotion_liking' => 'Gefallen', 'emotion_attraction' => 'Anziehung', 'emotion_caring' => 'Fürsorglich', @@ -323,14 +323,14 @@ 'emotion_infatuation' => 'Betörung', 'emotion_longing' => 'Sehnsucht', 'emotion_amusement' => 'Vergnügen', - 'emotion_bliss' => 'Bliss', - 'emotion_cheerfulness' => 'Cheerfulness', + 'emotion_bliss' => 'Glück', + 'emotion_cheerfulness' => 'Fröhlichkeit', 'emotion_gaiety' => 'Gaiety', 'emotion_glee' => 'Glee', 'emotion_jolliness' => 'Jolliness', 'emotion_joviality' => 'Joviality', 'emotion_joy' => 'Freude', - 'emotion_delight' => 'Delight', + 'emotion_delight' => 'Freude', 'emotion_enjoyment' => 'Enjoyment', 'emotion_gladness' => 'Gladness', 'emotion_happiness' => 'Glück', @@ -339,17 +339,17 @@ 'emotion_satisfaction' => 'Zufriedenheit', 'emotion_ecstasy' => 'Ecstasy', 'emotion_euphoria' => 'Euphoria', - 'emotion_enthusiasm' => 'Enthusiasm', + 'emotion_enthusiasm' => 'Begeisterung', 'emotion_zeal' => 'Zeal', 'emotion_zest' => 'Zest', 'emotion_excitement' => 'Excitement', 'emotion_thrill' => 'Thrill', 'emotion_exhilaration' => 'Exhilaration', 'emotion_contentment' => 'Contentment', - 'emotion_pleasure' => 'Pleasure', - 'emotion_pride' => 'Pride', + 'emotion_pleasure' => 'Vergnügen', + 'emotion_pride' => 'Stolz', 'emotion_eagerness' => 'Eagerness', - 'emotion_hope' => 'Hope', + 'emotion_hope' => 'Hoffnung', 'emotion_optimism' => 'Optimismus', 'emotion_enthrallment' => 'Enthrallment', 'emotion_rapture' => 'Rapture', @@ -441,8 +441,8 @@ 'emotion_dread' => 'Grauen', // weather - 'weather_clear-day' => 'Clear day', - 'weather_clear-night' => 'Clear night', + 'weather_clear-day' => 'Klarer Tag', + 'weather_clear-night' => 'Klare Nacht', 'weather_rain' => 'Regen', 'weather_snow' => 'Schnee', 'weather_sleet' => 'Schneeregen', @@ -457,7 +457,7 @@ // dav 'dav_contacts' => 'Kontakte', - 'dav_contacts_description' => ':name’s contacts', + 'dav_contacts_description' => 'Kontakte von :name', 'dav_birthdays' => 'Geburtstage', 'dav_birthdays_description' => ':name’s contact’s birthdays', 'dav_tasks' => 'Aufgaben', diff --git a/resources/lang/de/auth.php b/resources/lang/de/auth.php index 46abb4eea5d..07322ff1be5 100644 --- a/resources/lang/de/auth.php +++ b/resources/lang/de/auth.php @@ -23,7 +23,7 @@ 'throttle' => 'Zu viele Anmeldeversuche. Bitte in :seconds Sekunden erneut versuchen.', 'not_authorized' => 'Du hast keine Berechtigung diese Aktion auszuführen', 'signup_disabled' => 'Neue Registrierungen sind zur Zeit nicht möglich', - 'signup_error' => 'An error occured trying to register the user', + 'signup_error' => 'Es ist ein Fehler bei der Registrierung des Benutzers aufgetreten', 'back_homepage' => 'Zurück zur Seite', 'mfa_auth_otp' => 'Authentifizieren Sie sich mit Ihrem Zwei-Faktor-Gerät', 'mfa_auth_webauthn' => 'Authentifizieren mit einem Sicherheitsschlüssel (WebAuthn)', @@ -78,7 +78,7 @@ 'confirmation_title' => 'E-Mail-Adresse bestätigen', 'confirmation_fresh' => 'Ein Bestätigungslink wurde an Ihre E-Mail-Adresse geschickt.', 'confirmation_check' => 'Bevor sie weitermachen, überprüfen sie bitte ihre E-mails nach einem Bestätigungslink.', - 'confirmation_request_another' => 'If you did not receive the email click here to request another.', + 'confirmation_request_another' => 'Falls Sie keine E-Mail erhalten haben, klicken Sie hier um eine neue E-Mail zu erhalten.', 'confirmation_again' => 'Wenn Sie Ihre E-Mail-Adresse ändern möchten, klicken Sie bitte hier.', 'email_change_current_email' => 'Aktuelle E-Mail-Adresse:', diff --git a/resources/lang/de/logs.php b/resources/lang/de/logs.php index 791018dd6c4..837f42dfb28 100644 --- a/resources/lang/de/logs.php +++ b/resources/lang/de/logs.php @@ -9,25 +9,25 @@ return [ // contact creation - 'contact_log_contact_created' => 'Kontakt wurde erstellt.', + 'contact_log_contact_created' => 'Kontakt erstellt.', 'settings_log_contact_created_with_name' => ':name als Kontakt hinzugefügt.', 'settings_log_contact_created_with_name_with_link' => ':name als Kontakt hinzugefügt.', // contat description update - 'contact_log_contact_description_updated' => 'Beschreibung wurde aktualisiert.', - 'settings_log_contact_description_updated_with_name' => 'Updated the description of :name.', - 'settings_log_contact_description_updated_with_name_with_link' => 'Updated the description of :name.', + 'contact_log_contact_description_updated' => 'Beschreibung aktualisiert.', + 'settings_log_contact_description_updated_with_name' => ':name wurde aktualisiert.', + 'settings_log_contact_description_updated_with_name_with_link' => 'Beschreibung von :name aktualisiert.', // contact description clear - 'contact_log_contact_description_cleared' => 'Cleared the description.', - 'settings_log_contact_description_cleared_with_name' => 'Cleared the description of :name.', - 'settings_log_contact_description_cleared_with_name_with_link' => 'Cleared the description of :name.', + 'contact_log_contact_description_cleared' => 'Beschreibung gelöscht.', + 'settings_log_contact_description_cleared_with_name' => 'Beschreibung von :name gelöscht.', + 'settings_log_contact_description_cleared_with_name_with_link' => 'Beschreibung von :name gelöscht.', // contact work information update - 'contact_log_contact_work_updated' => 'Updated work information.', - 'settings_log_contact_work_updated_with_name' => 'Updated work information of :name.', - 'settings_log_contact_work_updated_with_name_with_link' => 'Updated work information of :name.', + 'contact_log_contact_work_updated' => 'Arbeitsinformationen aktualisiert.', + 'settings_log_contact_work_updated_with_name' => 'Arbeitsinformationen von :name aktualisiert.', + 'settings_log_contact_work_updated_with_name_with_link' => 'Arbeitsinformationen von :name aktualisiert.', // company created - 'settings_log_company_created' => 'Created a company called :name.', + 'settings_log_company_created' => 'Firma :name erstellt.', ]; diff --git a/resources/lang/de/mail.php b/resources/lang/de/mail.php index 3e549c9812d..7ed5b7f4e53 100644 --- a/resources/lang/de/mail.php +++ b/resources/lang/de/mail.php @@ -33,17 +33,17 @@ 'confirmation_email_title' => 'Monica – E-Mail-Verifikation', 'confirmation_email_intro'=> 'Um Ihre E-Mail-Adresse zu validieren, klicken Sie bitte auf den untenstehenden Button', 'confirmation_email_button' => 'E-Mail-Adresse bestätigen', - 'confirmation_email_bottom' => 'If you did not create an account, no further action is required.', - - 'password_reset_title' => 'Monica – Reset Password Notification', - 'password_reset_intro' => 'You are receiving this email because we received a password reset request for your account.', - 'password_reset_button' => 'Reset Password', - 'password_reset_expiration' => 'This password reset link will expire in :count minutes.', - 'password_reset_bottom' => 'If you did not request a password reset, no further action is required.', - - 'invitation_title' => 'Monica – You are invited by :name', - '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_button' => 'Accept invitation', - 'invitation_expiration' => 'This link will expire in :count days.', + 'confirmation_email_bottom' => 'Wenn Sie kein Konto erstellt haben, ist keine weitere Aktion erforderlich.', + + 'password_reset_title' => 'Monica – Passwort-Benachrichtigung zurücksetzen', + 'password_reset_intro' => 'Sie erhalten diese E-Mail, weil wir eine Anfrage zum Zurücksetzen des Passworts für Ihr Konto erhalten haben.', + 'password_reset_button' => 'Passwort zurücksetzen', + 'password_reset_expiration' => 'Dieser Link zum Zurücksetzen des Passworts läuft in :count Minuten ab.', + 'password_reset_bottom' => 'Wenn Sie keine Passwortzurücksetzung angefordert haben, ist keine weitere Aktion erforderlich.', + + 'invitation_title' => 'Monica – Du wurdest von :name eingeladen', + '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_button' => 'Einladung annehmen', + 'invitation_expiration' => 'Dieser Link läuft in :count Tagen ab.', ]; diff --git a/resources/lang/de/people.php b/resources/lang/de/people.php index 581c37841f5..59b5bcc6502 100644 --- a/resources/lang/de/people.php +++ b/resources/lang/de/people.php @@ -58,7 +58,7 @@ 'people_delete_message' => 'Kontakt löschen', 'people_delete_confirmation' => 'Möchtest du den Kontakt wirklich löschen? Es gibt kein Zurück.', 'people_add_birthday_reminder' => 'Gratuliere :name zum Geburtstag', - 'people_add_birthday_reminder_deceased' => 'On this date, :name, would have celebrated his birthday', + 'people_add_birthday_reminder_deceased' => 'Heute hätte, :name, seinen Geburtstag gefeiert', 'people_add_import' => 'Möchtest du Kontakte importieren?', 'people_edit_email_error' => 'Es gibt bereits ein Kontakt in deinem Konto mit dieser e-Mail-Adresse. Bitte wähle eine anderen.', 'people_export' => 'Als vCard exportieren', @@ -158,7 +158,7 @@ 'information_edit_probably' => 'Diese Person ist wahrscheinlich', 'information_edit_not_year' => 'Ich weiß den Tag und Monat des Geburtsdatums dieser Person, aber nicht das Jahr…', 'information_edit_exact' => 'Ich kenne den Geburtstag der Person...', - 'information_edit_birthdate_label' => 'Birthdate', + 'information_edit_birthdate_label' => 'Geburtstag', 'information_no_work_defined' => 'keine Arbeitsplatz-Informationen angegeben', 'information_work_at' => 'bei :company', 'work_add_cta' => 'Ändere Arbeitsplatz-Informationen', @@ -247,7 +247,7 @@ 'activity_type_just_hung_out' => 'einfach zusammen Zeit verbracht', 'activity_type_watched_movie_at_home' => 'zu Hause einen Film gesehen', 'activity_type_talked_at_home' => 'zu Hause geredet', - 'activity_type_did_sport_activities_together' => 'played a sport together', + 'activity_type_did_sport_activities_together' => 'haben zusammen Sport gemacht', 'activity_type_ate_at_his_place' => 'bei Ihnen gegessen', 'activity_type_went_bar' => 'in eine Bar gegangen', 'activity_type_ate_at_home' => 'zu Hause gegessen', @@ -304,23 +304,23 @@ 'gifts_delete_confirmation' => 'Möchtest du das Geschenk wirklich löschen?', 'gifts_add_gift' => 'Geschenk hinzufügen', 'gifts_link' => 'Link', - 'gifts_for' => 'For: {name}', + 'gifts_for' => 'Für: {name}', 'gifts_delete_cta' => 'Löschen', 'gifts_add_title' => 'Geschenkverwaltung für :name', 'gifts_add_gift_idea' => 'Geschenkidee', 'gifts_add_gift_already_offered' => 'Bereits verschenkt', 'gifts_add_gift_received' => 'Geschenk erhalten', 'gifts_add_gift_title' => 'Was ist es für ein Geschenk?', - 'gifts_add_gift_name' => 'Gift name', + 'gifts_add_gift_name' => 'Geschenkname', 'gifts_add_link' => 'Link zur Website (optional)', 'gifts_add_value' => 'Wert (optional)', 'gifts_add_comment' => 'Kommentar (optional)', - 'gifts_add_recipient' => 'Recipient (optional)', - 'gifts_add_recipient_field' => 'Recipient', - 'gifts_add_photo' => 'Photo (optional)', - 'gifts_add_photo_title' => 'Add a photo for this gift', - 'gifts_add_someone' => 'This gift is for someone in {name}’s family in particular', - 'gifts_delete_title' => 'Delete a gift', + 'gifts_add_recipient' => 'Empfänger (optional)', + 'gifts_add_recipient_field' => 'Empfänger', + 'gifts_add_photo' => 'Foto (optional)', + 'gifts_add_photo_title' => 'Foto für dieses Geschenk hinzufügen', + 'gifts_add_someone' => 'Dieses Geschenk ist insbesondere für jemanden in {name}\'s Familie', + 'gifts_delete_title' => 'Ein Geschenk löschen', 'gifts_ideas' => 'Geschenkideen', 'gifts_offered' => 'Verschenkte Geschenke', 'gifts_offered_as_an_idea' => 'Als Idee markieren', @@ -375,7 +375,7 @@ 'deceased_know_date' => 'Ich weiß das Datum an dem diese Person verstarb', 'deceased_add_reminder' => 'Erstelle eine Erinnerung für den Todestag', 'deceased_label' => 'Verstorben', - 'deceased_date_label' => 'Deceased date', + 'deceased_date_label' => 'Todestag', 'deceased_label_with_date' => 'Verstorben am :date', 'deceased_age' => 'Todesalter', @@ -434,11 +434,11 @@ 'life_event_delete_description' => 'Möchten Sie das Lebensereignis löschen? Dies kann nicht rückgängig gemacht werden.', 'life_event_delete_success' => 'Das Ereignis wurde gelöscht', 'life_event_date_it_happened' => 'Tag an dem es passierte', - 'life_event_category_work_education' => 'Work & education', - 'life_event_category_family_relationships' => 'Family & relationships', + 'life_event_category_work_education' => 'Arbeit & Ausbildung', + 'life_event_category_family_relationships' => 'Familie & Beziehungen', 'life_event_category_home_living' => 'Home & living', - 'life_event_category_health_wellness' => 'Health & wellness', - 'life_event_category_travel_experiences' => 'Travel & experiences', + 'life_event_category_health_wellness' => 'Gesundheit & Wellness', + 'life_event_category_travel_experiences' => 'Reisen & Erfahrungen', 'life_event_sentence_new_job' => 'Neuen Arbeitsplatz angetreten', 'life_event_sentence_retirement' => 'Im Ruhestand', 'life_event_sentence_new_school' => 'Schulbeginn', @@ -469,7 +469,7 @@ 'life_event_sentence_wear_glass_or_contact' => 'Hat angefangen, eine Brille oder Kontaktlinsen zu tragen', 'life_event_sentence_broken_bone' => 'Knochen gebrochen', 'life_event_sentence_removed_braces' => 'Zahnspange entfernt', - 'life_event_sentence_surgery' => 'Had surgery', + 'life_event_sentence_surgery' => 'Hatte eine Operation', 'life_event_sentence_dentist' => 'Ging zum Zahnarzt', 'life_event_sentence_new_sport' => 'Hat eine Sportart begonnen', 'life_event_sentence_new_hobby' => 'Ein Hobby begonnen', @@ -500,8 +500,8 @@ 'photo_current_profile_pic' => 'Aktuelles Profilbild', 'photo_make_profile_pic' => 'Zu Profilbild machen', 'photo_delete' => 'Bild löschen', - 'photo_next' => 'Next photo', - 'photo_previous' => 'Previous photo', + 'photo_next' => 'Nächstes Foto', + 'photo_previous' => 'Vorheriges Bild', // Avatars 'avatar_change_title' => 'Avatar ändern', @@ -511,24 +511,24 @@ 'avatar_gravatar' => 'Den Gravatar, welcher der E-Mail-Adresse dieser Person zugeordnet ist. Gravatar ist ein globales System, mit dem Benutzer E-Mail-Adressen mit Fotos verknüpfen können.', 'avatar_current' => 'Aktuellen Avatar beibehalten', 'avatar_photo' => 'Ein Foto hochladen', - 'avatar_crop_new_avatar_photo' => 'Crop new avatar photo', + 'avatar_crop_new_avatar_photo' => 'Neuen Avatar zuschneiden', // emotions 'emotion_this_made_me_feel' => 'Dadurch fühlen sie sich…', // logs - 'auditlogs_link' => 'History', - 'auditlogs_title' => 'Everything that happened to :name', - 'auditlogs_breadcrumb' => 'History', - 'auditlogs_author' => 'By :name on :date', + 'auditlogs_link' => 'Verlauf', + 'auditlogs_title' => 'Alles, was :name passiert ist', + 'auditlogs_breadcrumb' => 'Verlauf', + 'auditlogs_author' => 'Nach :name am :date', // contact field label 'contact_field_label_home' => 'Home', - 'contact_field_label_work' => 'Work', - 'contact_field_label_cell' => 'Mobile', + 'contact_field_label_work' => 'Arbeit', + 'contact_field_label_cell' => 'Mobil', 'contact_field_label_fax' => 'Fax', 'contact_field_label_pager' => 'Pager', - 'contact_field_label_main' => 'Main', - 'contact_field_label_other' => 'Other', - 'contact_field_label_personal' => 'Personal', + 'contact_field_label_main' => 'Hauptinformationen', + 'contact_field_label_other' => 'Sonstiges', + 'contact_field_label_personal' => 'Persönlich', ]; diff --git a/resources/lang/de/settings.php b/resources/lang/de/settings.php index 25d4c67ec6c..4eff55bea39 100644 --- a/resources/lang/de/settings.php +++ b/resources/lang/de/settings.php @@ -18,20 +18,20 @@ 'sidebar_settings_api' => 'Schnittstelle (API)', 'sidebar_settings_dav' => 'DAV-Ressourcen', 'sidebar_settings_security' => 'Sicherheit', - 'sidebar_settings_auditlogs' => 'Audit logs', + 'sidebar_settings_auditlogs' => 'Prüfprotokolle', - 'title_general' => 'General Information', - 'title_i18n' => 'International settings', + 'title_general' => 'Allgemeine Information', + 'title_i18n' => 'Internationale Einstellungen', 'title_layout' => 'Layout', - 'me_title' => 'My contact', - 'me_help' => 'This is the contact that represents you in Monica', - 'me_select' => 'Select a contact', - 'me_no_contact' => 'No contact selected yet.', - 'me_select_click' => 'Click here to select a contact.', - 'me_remove_contact' => 'Remove the association', - 'me_choose' => 'Choose yourself', - 'me_choose_placeholder' => 'Choose yourself', + 'me_title' => 'Mein Kontakt', + 'me_help' => 'Dies ist der Kontakt, der Sie in Monica vertritt', + 'me_select' => 'Wählen Sie einen Kontakt aus', + 'me_no_contact' => 'Es wurde kein Kontakt ausgewählt.', + 'me_select_click' => 'Klicken Sie hier, um einen Kontakt auszuwählen.', + 'me_remove_contact' => 'Entfernen Sie die Zuordnung', + 'me_choose' => 'Wähle dich selbst', + 'me_choose_placeholder' => 'Wähle dich selbst', 'export_title' => 'Exportiere die Daten deines Kontos', 'export_be_patient' => 'Button klicken um den Export zu starten. Dies kann mehrere Minuten dauern – sei bitte geduldig und klicke nicht mehrfach auf den Button.', @@ -66,8 +66,8 @@ 'layout_big' => 'Gesamte Breite des Browsers', 'save' => 'Einstellungen speichern', 'delete_title' => 'Konto löschen', - 'delete_desc' => 'Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.', - 'delete_other_desc' => 'Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days – then it’s completely deleted. It’s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.', + 'delete_desc' => 'Möchten Sie Ihr Konto löschen? Warnung: Das Löschen ist dauerhaft und alle Ihre Daten werden dauerhaft gelöscht. Ihr Abonnement (falls vorhanden) wird ebenfalls sofort gekündigt.', + 'delete_other_desc' => 'Um es deutlich zu machen: Deine Daten in der Hauptdatenbank werden sofort gelöscht. Allerdings, wie in unserer Datenschutzrichtlinie beschrieben, machen wir tägliche Sicherungen der Datenbank, falls mal ein Fehler auftreten sollte. Diese Sicherung wird 30 Tage lang aufbewahrt und dann vollständig gelöscht. Es ist unrealistisch, sich vorzustellen, dass wir alle Sicherungen durchgehen können, um deine spezifischen Daten zu löschen. Übrigens: Diese Daten sind verschlüsselt auf sehr sicheren Amazon-Servern und niemand außer uns hat den Entschlüsselungscode. Daher verschwinden deine Daten in 30 Tagen vollständig aus allen Sicherungen, und niemand wird wissen, dass diese Daten überhaupt jemals vorhanden waren.', 'reset_desc' => 'Möchtest du dein Konto zurücksetzen? Dies entfernt alle deine Kontakte und die zugehörigen Daten. Dein Konto bleibt erhalten.', 'reset_title' => 'Konto zurücksetzen', 'reset_cta' => 'Konto zurücksetzen', @@ -92,6 +92,7 @@ 'locale_pt' => 'Portugiesisch', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russisch', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Vereinfachtes Chinesisch', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Türkisch', @@ -134,16 +135,16 @@ 'webauthn_buttonAdvise' => 'Sofern Ihr Sicherheitsschlüssel einen Knopf hat, drücken Sie ihn.', 'webauthn_noButtonAdvise' => 'Wenn nicht, entfernen Sie ihn und fügen Sie ihn erneut ein.', 'webauthn_not_supported' => 'Ihr Browser unterstützt derzeit nicht WebAuthn.', - 'webauthn_not_secured' => 'WebAuthn only supports secure connections. Please load this page with https scheme.', - '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_not_secured' => 'WebAuthn unterstützt nur sichere Verbindungen. Bitte laden Sie diese Seite mit https Schema.', + 'webauthn_error_already_used' => 'Dieser Schlüssel ist bereits registriert. Es ist nicht erforderlich, ihn erneut zu registrieren.', + 'webauthn_error_not_allowed' => 'Die Operation ist entweder abgelaufen oder nicht zulässig.', 'recovery_title' => 'Wiederherstellungsschlüssel', 'recovery_show' => 'Wiederherstellungscodes generieren', 'recovery_copy_help' => 'Codes in die Zwischenablage kopieren', - 'recovery_help_intro' => 'These are your recovery codes:', - 'recovery_help_information' => 'You can use each recovery code once.', - 'recovery_clipboard' => 'Codes copied in the clipboard', + 'recovery_help_intro' => 'Dies sind Ihre Wiederherstellungscodes:', + 'recovery_help_information' => 'Sie können jeden Wiederherstellungscode nur einmal verwenden.', + 'recovery_clipboard' => 'Codes wurden in die Zwischenablage kopiert', 'recovery_generate' => 'Neue Codes generieren...', 'recovery_generate_help' => 'Beachten Sie, dass die Generierung neuer Codes zuvor generierte Codes ungültig macht', 'recovery_already_used_help' => 'Dieser Code wurde bereits verwendet', @@ -189,7 +190,7 @@ 'subscriptions_account_upgrade_choice' => 'Wähle eines der Abos und schließe dich :customers Personen an, die bereits die Premium-Version von Monica nutzen.', 'subscriptions_account_invoices' => 'Rechnungen', 'subscriptions_account_invoices_download' => 'Herunterladen', - 'subscriptions_account_invoices_subscription' => 'Subscription from :startDate to :endDate', + 'subscriptions_account_invoices_subscription' => 'Abonnement von :startDate bis :endDate', 'subscriptions_account_payment' => 'Wie möchtest du bezahlen?', 'subscriptions_account_confirm_payment' => 'Ihre Zahlung ist derzeit unvollständig, bitte bestätigen Sie die Zahlung.', 'subscriptions_downgrade_title' => 'Konto auf kostenlose Variante downgraden', @@ -198,8 +199,8 @@ 'subscriptions_downgrade_rule_users_constraint' => 'Du hast derzeit 1 Benutzer in deinem Konto. | Du hast derzeit :count Benutzer in deinem Konto.', 'subscriptions_downgrade_rule_invitations' => 'Du darfst keine ausstehenden Einladungen haben', 'subscriptions_downgrade_rule_invitations_constraint' => 'Du hast aktuell eine ausstehende Einladung verschickt.|Du hast aktuell :count ausstehende Einladungen verschickt.', - '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_contacts' => 'Sie dürfen nicht mehr als :number aktive Kontakte haben', + 'subscriptions_downgrade_rule_contacts_constraint' => 'Sie haben derzeit 1 Kontakt .|Sie haben derzeit :count contacts.', 'subscriptions_downgrade_cta' => 'Zurückstufen', 'subscriptions_downgrade_success' => 'Du hast das kostenlose Abonnement!', 'subscriptions_downgrade_thanks' => 'Vielen Dank, dass du das kostenpflichtige Abo ausprobiert hast. Wir fügen kontinuierlich weitere Funktionen hinzu. Vielleicht hast du in Zukunft ja wieder Interesse daran ein Abo abzuschließen.', @@ -210,19 +211,19 @@ 'subscriptions_upgrade_name' => 'Name auf der Karte', 'subscriptions_upgrade_zip' => 'Postleitzahl / ZIP-Code', 'subscriptions_upgrade_credit' => 'Kreditkarte', - 'subscriptions_upgrade_submit' => 'Pay {amount}', - '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 anytime, no questions asked.', + 'subscriptions_upgrade_submit' => 'Zahlen {amount}', + 'subscriptions_upgrade_charge' => 'Wir belasten Ihre Kredit-Karte: Der Preis ist aktuell. Die nächste Gebühr wird am :date fällig sein. Wenn Sie es sich jemals anders überlegen, können Sie jederzeit ohne weitere Fragen kündigen.', 'subscriptions_upgrade_charge_handled' => 'Die Zahlung erfolgt über Stripe. Keine Kreditkarteninformationen gelangen auf unsere Server.', '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_payment_confirm_title' => 'Confirm your :amount payment', - '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_succeeded_title' => 'Payment Successful', - 'subscriptions_payment_succeeded' => 'This payment was already successfully confirmed.', - 'subscriptions_payment_cancelled_title' => 'Payment Cancelled', - 'subscriptions_payment_cancelled' => 'This payment was cancelled.', - 'subscriptions_payment_error_name' => 'Please provide your name.', + 'subscriptions_payment_confirm_title' => 'Zahlung bestätigen', + 'subscriptions_payment_confirm_information' => 'Zur Bearbeitung Ihrer Zahlung ist eine zusätzliche Bestätigung erforderlich. Bitte bestätigen Sie Ihre Zahlung, indem Sie Ihre Zahlungsinformationen unten ausfüllen.', + 'subscriptions_payment_succeeded_title' => 'Zahlung erfolgreich', + 'subscriptions_payment_succeeded' => 'Diese Zahlung wurde bereits erfolgreich bestätigt.', + 'subscriptions_payment_cancelled_title' => 'Zahlung storniert', + 'subscriptions_payment_cancelled' => 'Der Bezahlvorgang wurde abgebrochen.', + 'subscriptions_payment_error_name' => 'Bitte geben Sie Ihren Namen ein.', 'subscriptions_payment_success' => 'Zahlung wurde erfolgreich ausgeführt.', 'subscriptions_pdf_title' => 'Dein :name monatliches Abonnement', @@ -239,19 +240,19 @@ 'subscriptions_plan_include3' => '100% der Einnahmen fließen in die Entwicklung dieses großartigen Open-Source-Projektes.', 'subscriptions_help_title' => 'Weitere Details, die dich interessieren könnten', 'subscriptions_help_opensource_title' => 'Was ist ein Open-Source-Projekt?', - 'subscriptions_help_opensource_desc' => 'Monica is an open source project. This means it is built by an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn’t do it without you – literally.', + 'subscriptions_help_opensource_desc' => 'Monica ist ein Open-Source-Projekt. Das bedeutet, es wird von einer wohlwollenden Community erstellt, die einfach ein tolles Programm der Allgemeinheit zur Verfügung stellen will. Open-Source bedeutet, dass der Quellcode auf GitHub öffentlich zugänglich ist und von jedermann eingesehen, verändert oder erweitert werden kann. All Einnahmen werden genutzt um das Programm zu verbessern, bessere Server zu betreiben und die Rechnungen zu bezahlen. Vielen Dank für deine Hilfe. Wir könnten das Ganze ohne dich nicht machen - wirklich.', 'subscriptions_help_limits_title' => 'Gibt es im kostenlosen Abo eine Begrenzung bei der Anzahl an Kontakten, die man haben kann?', - 'subscriptions_help_limits_plan' => 'Yes. Free plans let you manage :number contacts.', + 'subscriptions_help_limits_plan' => 'Ja. Kostenlose Pläne ermöglichen es Ihnen, :number Kontakte zu verwalten.', 'subscriptions_help_discounts_title' => 'Gibt es Ermäßigungen für gemeinnützige Organisationen und Bildungseinrichtungen?', 'subscriptions_help_discounts_desc' => 'Ja! Monica ist kostenlos für Schüler, Studenten und gemeinnützige Organisationen. Kontaktiere einfach den Support mit einem entsprechenden Nachweis und wir werden den speziellen Status auf deinen Account anwenden.', 'subscriptions_help_change_title' => 'Was passiert, wenn ich meine Meinung ändere?', 'subscriptions_help_change_desc' => 'Du kannst jederzeit ohne weiteres selber kündigen, du musst dazu auch nicht den Support oder sonst wen kontaktieren. Laufende Abos werden jedoch nicht zurück erstattet.', - 'stripe_error_card' => 'Your card was declined. Decline message is: :message', - 'stripe_error_api_connection' => 'Network communication with Stripe failed. Try again later.', - 'stripe_error_rate_limit' => 'Too many requests with Stripe right now. Try again later.', - 'stripe_error_invalid_request' => 'Invalid parameters. Try again later.', - 'stripe_error_authentication' => 'Wrong authentication with Stripe', + 'stripe_error_card' => 'Ihre Karte wurde abgelehnt. Grund: :message', + 'stripe_error_api_connection' => 'Netzwerkkommunikation mit Stripe fehlgeschlagen. Versuchen Sie es später erneut.', + 'stripe_error_rate_limit' => 'Zu viele Anfragen mit Stripe. Versuchen Sie es später erneut.', + 'stripe_error_invalid_request' => 'Ungültige Parameter. Versuchen Sie es später erneut.', + 'stripe_error_authentication' => 'Falsche Authentifizierung mit Stripe', 'import_title' => 'Importiere Kontakte in dein Konto', 'import_cta' => 'Kontakte hochladen', @@ -281,7 +282,7 @@ 'import_report_number_contacts_skipped' => 'Anzahl der übersprungenden Kontakte', 'import_report_status_imported' => 'Importiert', 'import_report_status_skipped' => 'Übersprungen', - 'import_vcard_parse_error' => 'Error when parsing the vCard entry', + 'import_vcard_parse_error' => 'Fehler beim Parsen des vCard-Eintrags', 'import_vcard_contact_exist' => 'Kontakt existiert bereits', 'import_vcard_contact_no_firstname' => 'Kein Vorname (Pflicht)', 'import_vcard_file_not_found' => 'Datei nicht gefunden', @@ -303,27 +304,27 @@ 'api_title' => 'API Zugriff', 'api_description' => 'Über die API ist es möglich, Monica über eine externe Applikation zu nutzen, wie z.B. eine App auf deinem Handy.', - '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_endpoint' => 'The API endpoint for this Monica instance is:', + 'api_help' => 'Um die API zu verwenden, ist ein Token obligatorisch. Sie können entweder ein persönliches Zugangs-Token (Bearer authentication) erstellen oder einen OAuth-Client autorisieren, es für Sie zu erstellen. Siehe API-Dokumentation.', + 'api_endpoint' => 'Der API-Endpunkt für diese Monica-Instanz ist:', 'api_personal_access_tokens' => 'Persönliche Zugangscodes', '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_token_title' => 'Personal Access Tokens', + 'api_token_title' => 'Persönliche Zugangs-Tokens', 'api_token_create_new' => 'Neues Token erstellen', 'api_token_not_created' => 'Du hast keine persönlichen Zugangs-Token erstellt.', - 'api_token_name' => 'Token name', - 'api_token_expire' => 'Expires at {date}', + 'api_token_name' => 'Tokenname', + 'api_token_expire' => 'Läuft ab am {date}', 'api_token_delete' => 'Löschen', 'api_token_create' => 'Token erstellen', 'api_token_scopes' => 'Geltungsbereiche', 'api_token_help' => 'Hier ist dein neuer persönlicher 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_oauth_clients' => 'Your OAuth clients', + 'api_oauth_clients' => 'Deine Oauth Clients', 'api_oauth_clients_desc' => 'Hier kannst du deine eigenen OAuth Clients registrieren.', - '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_title' => 'OAuth Clients', + 'api_oauth_clients_desc2' => 'Benutzen Sie diese Client-Id, um ein neues Token anzufordern und um Berechtigungscodes für den Zugriff auf Token zu konvertieren. Siehe Laravel Passport-Dokumentation für weitere Informationen.', + 'api_oauth_title' => 'OAuth-Clients', 'api_oauth_create_new' => 'Neuen Client erstellen', - 'api_oauth_edit' => 'Edit Client', + 'api_oauth_edit' => 'Client bearbeiten', 'api_oauth_not_created' => 'Du hast noch keine OAuth-Clients erstellt.', 'api_oauth_clientid' => 'Kundennummer', 'api_oauth_name' => 'Name', @@ -334,9 +335,9 @@ 'api_oauth_redirecturl_help' => 'Die Authorisierungs-Callback-URL deiner Anwendung.', 'api_authorized_clients' => 'Liste der authorisierten 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_desc' => 'Diese Liste zeigt dir alle Clients, denen du Zugriff auf deine Anwendung gewährt hast. Du kannst die Authorisierungen jederzeit widerrufen.', 'api_authorized_clients_title' => 'Zugelassene Anwendungen', - 'api_authorized_clients_none' => 'There is no authorized client yet.', + 'api_authorized_clients_none' => 'Es gibt noch keinen autorisierten Client.', 'api_authorized_clients_name' => 'Name', 'api_authorized_clients_scopes' => 'Geltungsbereiche', @@ -368,27 +369,27 @@ 'personalization_genders_modal_add' => 'Neue Geschlechtsidentität hinzufügen', 'personalization_genders_modal_edit' => 'Geschlechtsidentität bearbeiten', 'personalization_genders_modal_name' => 'Name', - 'personalization_genders_modal_name_help' => 'The name used to display the gender on a contact page.', + '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' => 'Used to define the relationships, and during the VCard import/export process.', - 'personalization_genders_modal_default' => 'Select the default gender for a new contact', + 'personalization_genders_modal_sex_help' => 'Wird verwendet, um die Beziehungen zu definieren, und während des VCard Import/Export Prozesses.', + 'personalization_genders_modal_default' => 'Ist dies das standartmäßige Geschlecht für einen neuen Kontakt', 'personalization_genders_modal_delete' => 'Geschlechtsidentität löschen', 'personalization_genders_modal_delete_desc' => 'Möchten Sie {name} wirklich löschen?', 'personalization_genders_modal_delete_question' => 'Du hast aktuell {count} Kontakt mit diesem Geschlecht. Wenn du dieses Geschlecht löschst, welches Geschlecht soll der Kontakt dann haben?|Du hast aktuell {count} Kontakte mit diesem Geschlecht. Wenn du dieses Geschlecht löschst, welches Geschlecht sollen die Kontakte dann haben?', - 'personalization_genders_modal_delete_question_default' => 'This gender is the default one. If you delete this gender, which one will be the next default?', + 'personalization_genders_modal_delete_question_default' => 'Dieses Geschlecht ist das Standardwert. Wenn Sie dieses Geschlecht löschen, welches wird der nächste Standardwert sein?', 'personalization_genders_modal_error' => 'Bitte wähle ein gültiges Geschlecht aus der Liste.', - 'personalization_genders_list_contact_number' => '{count} contact|{count} contacts', + 'personalization_genders_list_contact_number' => '{count} Kontakt|{count} Kontakte|', 'personalization_genders_table_name' => 'Name', 'personalization_genders_table_sex' => 'Geschlecht', 'personalization_genders_table_default' => 'Standard', - 'personalization_genders_default' => 'Default gender', - 'personalization_genders_make_default' => 'Change default gender', - 'personalization_genders_select_default' => 'Select default gender', + 'personalization_genders_default' => 'Standard Geschlecht', + 'personalization_genders_make_default' => 'Ändern Sie das Standardgeschlecht', + 'personalization_genders_select_default' => 'Wählen Sie das Standardgeschlecht', 'personalization_genders_m' => 'Männlich', 'personalization_genders_f' => 'Weiblich', - 'personalization_genders_o' => 'Other', + 'personalization_genders_o' => 'Andere', 'personalization_genders_u' => 'Unbekannt', - 'personalization_genders_n' => 'None or not applicable', + 'personalization_genders_n' => 'Keine oder nicht zutreffend', 'personalization_reminder_rule_save' => 'Die Änderung wurde gespeichert', 'personalization_reminder_rule_title' => 'Erinnerungen', @@ -399,34 +400,46 @@ 'personalization_module_title' => 'Funktionen', 'personalization_module_desc' => 'Manche Menschen brauchen nicht alle Funktionen. Unten kannst du die Felder auswählen, die auf einer Kontaktseite angezeigt werden. Die Änderungen werden für ALLE Kontakte übernommen. Wenn du eine Funktion ausschaltest, so gehen die Daten darin nicht verloren, wir verbergen sie nur.', - '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.', + 'personalisation_paid_upgrade' => 'Dies ist eine Premium-Funktion, die nur im kostenpflichtigen Abo aktiv ist. Upgrade deinen Account unter Einstellungen > Abonnement.', + 'personalisation_paid_upgrade_vue' => 'Dies ist eine Premium-Funktion, die nur im kostenpflichtigen Abo aktiv ist. Upgrade deinen Account unter Einstellungen > Abonnement.', 'reminder_time_to_send' => 'Zeitpunkt für den Versand von Erinnerungen', - 'reminder_time_to_send_help' => 'For your information, your next reminder will be sent on {dateTime}.', + 'reminder_time_to_send_help' => 'Zur Information: Ihre nächste Erinnerung am {dateTime} gesendet.', - 'personalization_activity_type_category_title' => 'Activity type categories', - 'personalization_activity_type_category_add' => 'Add a new activity type category', + 'personalization_activity_type_category_title' => 'Aktivitätstyp Kategorien', + 'personalization_activity_type_category_add' => 'Neue Aktivitätstyp Kategorie hinzufügen', 'personalization_activity_type_category_table_name' => 'Name', - 'personalization_activity_type_category_description' => 'An activity done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything here.', - 'personalization_activity_type_category_table_actions' => 'Actions', - 'personalization_activity_type_category_modal_add' => 'Add a new activity type category', - 'personalization_activity_type_category_modal_edit' => 'Edit an activity type category', - 'personalization_activity_type_category_modal_question' => 'How should we name this new category?', - 'personalization_activity_type_add_button' => 'Add a new activity type', - 'personalization_activity_type_modal_add' => 'Add a new activity type', - 'personalization_activity_type_modal_question' => 'How should we name this new activity type?', - 'personalization_activity_type_modal_edit' => 'Edit an activity type', - '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. However, activities that belong to this category will not be affected by this deletion.', - 'personalization_activity_type_modal_delete' => 'Delete an activity type', + 'personalization_activity_type_category_description' => 'Eine Aktivität mit einem Ihrer Kontakte kann einen Typ und einen Kategorietyp haben. Ihr Konto kommt standardmäßig mit einer Reihe vordefinierter Kategorietypen, aber Sie können hier alles anpassen.', + 'personalization_activity_type_category_table_actions' => 'Aktionen', + 'personalization_activity_type_category_modal_add' => 'Neue Aktivitätstyp Kategorie hinzufügen', + 'personalization_activity_type_category_modal_edit' => 'Aktivitätstyps Kategorie bearbeiten', + 'personalization_activity_type_category_modal_question' => 'Wie sollen wir die neue Kategorie nennen?', + 'personalization_activity_type_add_button' => 'Neuen Aktivitätstyp hinzufügen', + 'personalization_activity_type_modal_add' => 'Neuen Aktivitätstyp hinzufügen', + 'personalization_activity_type_modal_question' => 'Wie sollen wir den neuen Aktivitätstyp nennen?', + 'personalization_activity_type_modal_edit' => 'Aktivitätstyp bearbeiten', + 'personalization_activity_type_category_modal_delete' => 'Eine Aktivitätstyp Kategorie löschen', + 'personalization_activity_type_category_modal_delete_desc' => 'Sind Sie sicher, dass Sie diese Kategorie löschen möchten? Es wird alle zugehörigen Aktivitätstypen löschen. Tätigkeiten, die zu dieser Kategorie gehören, werden jedoch von der Löschung nicht beeinträchtigt.', + 'personalization_activity_type_modal_delete' => 'Aktivitätstyp löschen', 'personalization_activity_type_modal_delete_desc' => 'Sind Sie sicher, dass Sie diesen Aktivitätstyp löschen möchten? Aktivitäten, die dieser Kategorie angehören, werden von dieser Löschung nicht betroffen sein.', 'personalization_activity_type_modal_delete_error' => 'Wir können diesen Aktivitätstyp nicht finden.', - 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_activity_type_category_modal_delete_error' => 'Wir können diese Aktivitätstyp Kategorie nicht finden.', + + 'personalization_life_event_category_title' => 'Lebensereigniskategorien', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'Eine Lebensereignis kann einen Typ und eine Kategorie haben. Ihr Konto kommt standardmäßig mit einer Reihe vordefinierter Kategorien und Typen, aber hier können Sie Lebensereignisse anpassen.', + 'personalization_live_event_category_table_actions' => 'Aktionen', + 'personalization_life_event_type_add_button' => 'Neuen Lebensereignis-Typ hinzufügen', + 'personalization_life_event_type_modal_add' => 'Neuen Lebensereignis-Typ hinzufügen', + 'personalization_life_event_type_modal_question' => 'Wie sollen wir den neuen Lebensereignistyp benennen?', + 'personalization_life_event_type_modal_edit' => 'Lebensereignis-Typ bearbeiten', + 'personalization_life_event_type_modal_delete' => 'Lebensereignis-Typ löschen', + 'personalization_life_event_type_modal_delete_desc' => 'Bist du sicher, dass du diesen Lebensereignis-Typ löschen möchtest? Lebensereignisse, die zu diesem Typ gehören, werden durch diese Aktion gelöscht.', + 'personalization_life_event_type_modal_delete_error' => 'Wir können diesen Lebensereignis-Typ nicht finden.', 'personalization_life_event_category_work_education' => 'Arbeit & Bildung', 'personalization_life_event_category_family_relationships' => 'Familie & Beziehungen', - 'personalization_life_event_category_home_living' => 'Home & living', + 'personalization_life_event_category_home_living' => 'Zuhause & Leben', 'personalization_life_event_category_travel_experiences' => 'Reisen & Erfahrungen', 'personalization_life_event_category_health_wellness' => 'Gesundheit & Fitness', @@ -437,30 +450,30 @@ 'personalization_life_event_type_volunteer_work' => 'Ehrenamtliche Arbeit', 'personalization_life_event_type_published_book_or_paper' => 'Buch oder Bericht veröffentlicht', 'personalization_life_event_type_military_service' => 'Militärdienst', - 'personalization_life_event_type_first_met' => 'First met', + 'personalization_life_event_type_first_met' => 'Erste Begegnung', 'personalization_life_event_type_new_relationship' => 'Neue Beziehung', 'personalization_life_event_type_engagement' => 'Engagement', 'personalization_life_event_type_marriage' => 'Heirat', 'personalization_life_event_type_anniversary' => 'Jahrestag', 'personalization_life_event_type_expecting_a_baby' => 'Erwartet ein Baby', 'personalization_life_event_type_new_child' => 'Neues Kind', - 'personalization_life_event_type_new_family_member' => 'New family member', - 'personalization_life_event_type_new_pet' => 'New pet', + 'personalization_life_event_type_new_family_member' => 'Neues Familienmitglied', + 'personalization_life_event_type_new_pet' => 'Neues Haustier', 'personalization_life_event_type_end_of_relationship' => 'Ende einer Beziehung', 'personalization_life_event_type_loss_of_a_loved_one' => 'Einen geliebten Menschen verloren', 'personalization_life_event_type_moved' => 'Umgezogen', 'personalization_life_event_type_bought_a_home' => 'Ein Haus gekauft', 'personalization_life_event_type_home_improvement' => 'Immobilien-Renovierung', - 'personalization_life_event_type_holidays' => 'Holidays', + 'personalization_life_event_type_holidays' => 'Feiertage', 'personalization_life_event_type_new_vehicle' => 'Neues Fahrzeug', 'personalization_life_event_type_new_roommate' => 'Neuer Mitbewohner', 'personalization_life_event_type_overcame_an_illness' => 'Krankheit überwunden', 'personalization_life_event_type_quit_a_habit' => 'Gewohnheit beendet', 'personalization_life_event_type_new_eating_habits' => 'Neue Essgewohnheiten', 'personalization_life_event_type_weight_loss' => 'Gewichts-Verlust', - 'personalization_life_event_type_wear_glass_or_contact' => 'Wear glass or contact', + 'personalization_life_event_type_wear_glass_or_contact' => 'Brille oder Kontaktlinsen tragen', 'personalization_life_event_type_broken_bone' => 'Knochen gebrochen', - 'personalization_life_event_type_removed_braces' => 'Removed braces', + 'personalization_life_event_type_removed_braces' => 'Zahnspange entfernt', 'personalization_life_event_type_surgery' => 'Operation', 'personalization_life_event_type_dentist' => 'Zahnarzt', 'personalization_life_event_type_new_sport' => 'Neuer Sport', @@ -470,36 +483,36 @@ 'personalization_life_event_type_tattoo_or_piercing' => 'Tattoo oder Piercing', 'personalization_life_event_type_new_license' => 'Neue Lizenz', 'personalization_life_event_type_travel' => 'Reise', - 'personalization_life_event_type_achievement_or_award' => 'Achievement or award', - 'personalization_life_event_type_changed_beliefs' => 'Changed beliefs', + 'personalization_life_event_type_achievement_or_award' => 'Errungenschaft oder Auszeichnung', + 'personalization_life_event_type_changed_beliefs' => 'Überzeugung geändert', 'personalization_life_event_type_first_word' => 'Erstes Wort', 'personalization_life_event_type_first_kiss' => 'Erster Kuss', 'storage_title' => 'Speicher', - 'storage_account_info' => 'Your account limit: :accountLimit Mb / Your current usage: :currentAccountSize Mb (:percentUsage%)', - 'storage_upgrade_notice' => 'Upgrade your account to be able to upload documents and photos.', - 'storage_description' => 'Here you can see all the documents and photos uploaded about your contacts.', + 'storage_account_info' => 'Ihr Kontolimit: :accounLimit Mb / Ihre aktuelle Nutzung: :currentAccountSize Mb (:percentUsage%)', + 'storage_upgrade_notice' => 'Upgraden Sie Ihr Konto, um Dokumente und Fotos hochladen zu können.', + 'storage_description' => 'Hier sehen Sie alle Dokumente und Fotos, die Sie über Ihre Kontakte hochgeladen haben.', 'dav_title' => 'WebDAV', - 'dav_description' => 'Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.', + 'dav_description' => 'Hier finden Sie alle Einstellungen für den Einsatz von WebDAV Ressourcen für CardDAV und CalDAV Export.', 'dav_copy_help' => 'In die Zwischenablage kopieren', 'dav_clipboard_copied' => 'Wert in die Zwischenablage kopiert', - 'dav_url_base' => 'Base url for all CardDAV and CalDAV resources:', - '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_url_carddav' => 'CardDAV url for Contacts resource:', - 'dav_url_caldav_birthdays' => 'CalDAV url for Birthdays resources:', - 'dav_url_caldav_tasks' => 'CalDAV url for Tasks resources:', + 'dav_url_base' => 'Basis-Url für alle CardDAV- und CalDAV-Ressourcen:', + 'dav_connect_help' => 'Sie können 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_url_carddav' => 'CardDAV-Url für Kontaktressourcen:', + 'dav_url_caldav_birthdays' => 'CalDAV Url für Geburtstage Ressourcen:', + 'dav_url_caldav_tasks' => 'CalDAV-Url für Aufgabenressourcen:', 'dav_title_carddav' => 'CardDAV', 'dav_title_caldav' => 'CalDAV', - 'dav_carddav_export' => 'Export all contacts in one file', - 'dav_caldav_birthdays_export' => 'Export all birthdays in one file', - 'dav_caldav_tasks_export' => 'Export all tasks in one file', + 'dav_carddav_export' => 'Alle Kontakte in einer Datei exportieren', + 'dav_caldav_birthdays_export' => 'Alle Geburtstage in einer Datei exportieren', + 'dav_caldav_tasks_export' => 'Alle Aufgaben in einer Datei exportieren', - 'archive_title' => 'Archive all your contacts in your account', - 'archive_desc' => 'This will archive all the contacts in your account.', - 'archive_cta' => 'Archive all your contacts', + 'archive_title' => 'Alle Ihre Kontakte in Ihrem Konto archivieren', + 'archive_desc' => 'Dies wird alle Kontakte in Ihrem Konto archivieren.', + 'archive_cta' => 'Alle Ihre Kontakte archivieren', - 'logs_title' => 'Everything that happened to this account', - 'logs_author' => 'By :name on :date', + 'logs_title' => 'Alles, was mit diesem Konto passiert ist', + 'logs_author' => 'Mit :name am :Datum', ]; diff --git a/resources/lang/el/app.php b/resources/lang/el/app.php new file mode 100644 index 00000000000..279467dd4f9 --- /dev/null +++ b/resources/lang/el/app.php @@ -0,0 +1,465 @@ + 'Ναι', + 'no' => 'Όχι', + 'update' => 'Ενημέρωση', + 'save' => 'Αποθήκευση', + 'add' => 'Προσθήκη', + 'cancel' => 'Ακύρωση', + 'confirm' => 'Επιβεβαίωση', + 'delete_confirm' => 'Είστε σίγουροι;', + 'delete' => 'Διαγραφή', + 'edit' => 'Επεξεργασία', + 'upload' => 'Μεταφόρτωση', + 'download' => 'Λήψη', + 'save_close' => 'Αποθήκευση και κλείσιμο', + 'close' => 'Κλείσιμο', + 'copy' => 'Αντιγραφή', + 'create' => 'Δημιουργία', + 'remove' => 'Κατάργηση', + 'revoke' => 'Ανάκληση', + 'done' => 'Ολοκληρώθηκε', + 'back' => 'Πίσω', + 'verify' => 'Επαλήθευση', + 'new' => 'νέο', + 'unknown' => 'Δεν γνωρίζω', + 'load_more' => 'Εμφάνιση περισσότερων', + 'loading' => 'Φόρτωση...', + 'with' => 'με', + 'today' => 'σήμερα', + 'yesterday' => 'χθες', + 'another_day' => 'άλλη μέρα', + 'date' => 'Ημερομηνία', + 'type' => 'Τύπος', + 'zoom' => 'Μεγέθυνση', + 'upgrade' => 'Αναβαθμίστε για να ξεκλειδώσετε', + 'percent_uploaded' => '{percent}% έχει μεταφορτωθεί', + 'retry' => 'Ξαναδοκιμάστε', + 'filter' => 'Φιλτράρισμα λίστας', + 'go_back' => 'Επιστροφή', + 'file_selected' => '1 αρχείο επιλέχθηκε...|{count} αρχεία επιλέχθηκαν...', + + 'application_title' => 'Monica – διαχειριστής προσωπικών σχέσεων', + 'application_description' => 'Το Monica είναι ένα εργαλείο που διαχειρίζεται τις επαφές σας με τους αγαπημένους σας, τους φίλους και την οικογένεια.', + 'application_og_title' => 'Βελτιώστε τις σχέσεις με του αγαπημένους σας. Δωρεάν Online CRM για φίλους και οικογένεια.', + + 'markdown_description' => 'Θέλετε να μορφοποιήσετε το κείμενο σας όμορφα; Υποστηρίζουμε Markdown για να προσθέσετε εντονη, πλάγια γραφή, λίστες και περισσότερα.', + 'markdown_link' => 'Διαβάστε την τεκμηρίωση', + + 'header_settings_link' => 'Ρυθμίσεις', + 'header_logout_link' => 'Αποσύνδεση', + 'header_changelog_link' => 'Αλλαγές προϊόντος', + + 'main_nav_cta' => 'Προσθήκη ατόμων', + 'main_nav_dashboard' => 'Επισκόπηση', + 'main_nav_family' => 'Επαφές', + 'main_nav_journal' => 'Προσωπικό Ημερολόγιο', + 'main_nav_activities' => 'Δραστηριότητες', + 'main_nav_tasks' => 'Εργασίες', + + 'footer_remarks' => 'Έχετε κάποια σχόλια;', + 'footer_send_email' => 'Στείλτε μου ένα email', + 'footer_privacy' => 'Πολιτική απορρήτου', + 'footer_release' => 'Σημειώσεις έκδοσης', + 'footer_newsletter' => 'Newsletter', + 'footer_source_code' => 'Συμβάλλετε', + 'footer_version' => 'Έκδοση :version', + 'footer_new_version' => 'Μια νέα έκδοση είναι διαθέσιμη', + + 'footer_modal_version_whats_new' => 'Τι νέο υπάρχει;', + 'footer_modal_version_release_away' => 'Είστε 1 έκδοση πίσω από την τελευταία διαθέσιμη έκδοση. Θα πρέπει να αναβαθμίσετε την εγκατάσταση σας.|Είστε :number εκδόσεις πίσω από την τελευταία διαθέσιμη έκδοση. Θα πρέπει να αναβαθμίσετε την εγκατάσταση σας.', + + 'breadcrumb_dashboard' => 'Επισκόπηση', + 'breadcrumb_list_contacts' => 'Λίστα επαφών', + 'breadcrumb_archived_contacts' => 'Αρχειοθετημένες επαφές', + 'breadcrumb_journal' => 'Προσωπικό Ημερολόγιο', + 'breadcrumb_settings' => 'Ρυθμίσεις', + 'breadcrumb_settings_export' => 'Εξαγωγή', + 'breadcrumb_settings_users' => 'Χρήστες', + 'breadcrumb_settings_users_add' => 'Προσθήκη χρήστη', + 'breadcrumb_settings_subscriptions' => 'Συνδρομή', + 'breadcrumb_settings_import' => 'Εισαγωγή', + 'breadcrumb_settings_import_report' => 'Αναφορά εισαγωγής', + 'breadcrumb_settings_import_upload' => 'Μεταφόρτωση', + 'breadcrumb_settings_tags' => 'Ετικέτες', + 'breadcrumb_add_significant_other' => 'Προσθήκη συντρόφου', + 'breadcrumb_edit_significant_other' => 'Επεξεργασία συντρόφου', + 'breadcrumb_add_note' => 'Προσθήκη σημείωσης', + 'breadcrumb_edit_note' => 'Επεξεργασία σημείωσης', + 'breadcrumb_api' => 'API', + 'breadcrumb_dav' => 'Πόροι DAV', + 'breadcrumb_edit_introductions' => 'Πώς γνωριστήκατε;', + 'breadcrumb_settings_personalization' => 'Εξατομίκευση', + 'breadcrumb_settings_security' => 'Ασφάλεια', + 'breadcrumb_settings_security_2fa' => 'Έλεγχος Ταυτότητας Δυο Παραγόντων', + 'breadcrumb_profile' => 'Προφίλ του :name', + + 'gender_male' => 'Άντρας', + 'gender_female' => 'Γυναίκα', + 'gender_none' => 'Χωρίς δήλωση', + 'gender_no_gender' => 'Χωρίς φύλο', + + 'error_title' => 'Ωχ... κάτι πήγε στραβά.', + 'error_unauthorized' => 'Δεν έχετε δικαίωμα να επεξεργαστείτε αυτή τη σελίδα.', + 'error_user_account' => 'Αυτός ο χρήστης δεν ανήκει στο λογαριασμό που δόθηκε.', + 'error_save' => 'Υπήρξε σφάλμα κατά την αποθήκευση των δεδομένων.', + 'error_try_again' => 'Κάτι πήγε στραβά. Παρακαλώ προσπαθήστε ξανά.', + 'error_id' => 'ID Σφάλματος: :id', + 'error_unavailable' => 'Η υπηρεσία δεν είναι διαθέσιμη', + 'error_maintenance' => 'Συντήρηση σε εξέλιξη. Θα επιστρέψουμε σύντομα.', + 'error_help' => 'Θα επιστρέψουμε σύντομα.', + 'error_twitter' => 'Ακολουθήστε το λογαριασμό μας στο Twitter για να ενημερωθείτε όταν επανέλθουμε.', + 'error_no_term' => 'Δεν υπάρχει πολιτική για αυτή την εγκατάσταση ακόμη.', + + 'default_save_success' => 'Τα δεδομένα αποθηκεύτηκαν.', + + 'compliance_title' => 'Με συγχωρείτε για την διακοπή.', + 'compliance_desc' => 'Έχουμε αλλάξει τους Όρους Χρήσης και την Πολιτική Απορρήτου. Σύμφωνα με το νόμο πρέπει να σας ζητήσουμε να ελέγξετε και να αποδεχτείτε για να συνεχίσετε να χρησιμοποιείτε τον λογαριασμό σας.', + 'compliance_desc_end' => 'Δεν κάνουμε τίποτα κακό με τα δεδομένα σας ή το λογαριασμό σας και δεν θα κάνουμε ποτέ.', + 'compliance_terms' => 'Αποδεχτείτε τους νέους όρους και πολιτική απορρήτου', + + // Relationship types + // Yes, each relationship type has 8 strings associated with it. + // This is because we need to indicate the name of the relationship type, + // and also the name of the opposite side of this relationship (father/son), + // and then, the feminine version of the string. Finally, in some sentences + // in the UI, we need to include the name of the person we add the relationship + // to. + 'relationship_type_group_love' => 'Ερωτικές σχέσεις', + 'relationship_type_group_family' => 'Οικογενειακές σχέσεις', + 'relationship_type_group_friend' => 'Φιλικές σχέσεις', + 'relationship_type_group_work' => 'Εργασιακές σχέσεις', + 'relationship_type_group_other' => 'Σχέσεις άλλων τύπων', + + 'relationship_type_partner' => 'σύντροφος', + 'relationship_type_partner_female' => 'σύντροφος', + 'relationship_type_partner_with_name' => 'σύντροφος :name', + 'relationship_type_partner_female_with_name' => 'σύντροφος :name', + + 'relationship_type_spouse' => 'σύζυγος', + 'relationship_type_spouse_female' => 'σύζυγος', + 'relationship_type_spouse_with_name' => 'σύζυγος :name', + 'relationship_type_spouse_female_with_name' => 'σύζυγος :name', + + 'relationship_type_date' => 'ημερομηνία', + 'relationship_type_date_female' => 'ημερομηνία', + 'relationship_type_date_with_name' => 'ημερομηνία :name', + 'relationship_type_date_female_with_name' => 'ημερομηνία :name', + + 'relationship_type_lover' => 'εραστής', + 'relationship_type_lover_female' => 'εραστής', + 'relationship_type_lover_with_name' => 'εραστής :name', + 'relationship_type_lover_female_with_name' => 'εραστής :name', + + 'relationship_type_inlovewith' => 'ερωτευμένος με', + 'relationship_type_inlovewith_female' => 'ερωτευμένος με', + 'relationship_type_inlovewith_with_name' => 'κάποιος με τον οποίο ο :name είναι ερωτευμένος', + 'relationship_type_inlovewith_female_with_name' => 'κάποιος με τον οποίο ο :name είναι ερωτευμένος', + + 'relationship_type_lovedby' => 'αγαπημένος του', + 'relationship_type_lovedby_female' => 'αγαπημένος του', + 'relationship_type_lovedby_with_name' => 'κρυφός εραστής :name', + 'relationship_type_lovedby_female_with_name' => 'κρυφός εραστής της :name', + + 'relationship_type_ex' => 'πρώην φίλος', + 'relationship_type_ex_female' => 'πρώην φίλη', + 'relationship_type_ex_with_name' => 'πρώην φίλος της :name', + 'relationship_type_ex_female_with_name' => 'πρώην φίλη :name', + + 'relationship_type_parent' => 'πατέρας', + 'relationship_type_parent_female' => 'μητέρα', + 'relationship_type_parent_with_name' => 'πατέρας :name', + 'relationship_type_parent_female_with_name' => 'μητέρα :name', + + 'relationship_type_child' => 'γιός', + 'relationship_type_child_female' => 'κόρη', + 'relationship_type_child_with_name' => 'γιός :name', + 'relationship_type_child_female_with_name' => 'κόρη :name', + + 'relationship_type_stepparent' => 'πατριός', + 'relationship_type_stepparent_female' => 'μητριά', + 'relationship_type_stepparent_with_name' => 'πατρίος :name', + 'relationship_type_stepparent_female_with_name' => 'πατριός :name', + + 'relationship_type_stepchild' => 'γιός εξ\' αγχιστείας', + 'relationship_type_stepchild_female' => 'κόρη εξ\' αγχιστείας', + 'relationship_type_stepchild_with_name' => 'γιος εξ\' αγχιστείας του :name', + 'relationship_type_stepchild_female_with_name' => 'κόρη εξ\' αγχιστείας του :name', + + 'relationship_type_sibling' => 'αδερφός', + 'relationship_type_sibling_female' => 'αδερφή', + 'relationship_type_sibling_with_name' => 'αδερφός του :name', + 'relationship_type_sibling_female_with_name' => 'αδερφή του :name', + + 'relationship_type_grandparent' => 'παππούς', + 'relationship_type_grandparent_female' => 'γιαγιά', + 'relationship_type_grandparent_with_name' => 'παππούς του :name', + 'relationship_type_grandparent_female_with_name' => 'γιαγιά του :name', + + 'relationship_type_grandchild' => 'εγγόνι', + 'relationship_type_grandchild_female' => 'εγγόνι', + 'relationship_type_grandchild_with_name' => 'εγγονός του :name', + 'relationship_type_grandchild_female_with_name' => 'εγγονή του :name', + + 'relationship_type_uncle' => 'θείος', + 'relationship_type_uncle_female' => 'θεία', + 'relationship_type_uncle_with_name' => 'θείος του :name', + 'relationship_type_uncle_female_with_name' => 'θεία του :name', + + 'relationship_type_nephew' => 'ανιψιός', + 'relationship_type_nephew_female' => 'ανιψιά', + 'relationship_type_nephew_with_name' => 'ανιψιός του :name', + 'relationship_type_nephew_female_with_name' => 'ανιψιά του :name', + + 'relationship_type_cousin' => 'ξάδερφος', + 'relationship_type_cousin_female' => 'ξαδέρφη', + 'relationship_type_cousin_with_name' => 'ξάδερφος του :name', + 'relationship_type_cousin_female_with_name' => 'ξαδέρφη του :name', + + 'relationship_type_godfather' => 'νονός', + 'relationship_type_godfather_female' => 'νονά', + 'relationship_type_godfather_with_name' => 'νονός του :name', + 'relationship_type_godfather_female_with_name' => 'νονά του :name', + + 'relationship_type_godson' => 'βαφτισιμιός', + 'relationship_type_godson_female' => 'βαφτισιμιά', + 'relationship_type_godson_with_name' => 'βαφτισιμιός του :name', + 'relationship_type_godson_female_with_name' => 'βαφτισιμιά του :name', + + 'relationship_type_friend' => 'φίλος', + 'relationship_type_friend_female' => 'φίλη', + 'relationship_type_friend_with_name' => 'φίλος του :name', + 'relationship_type_friend_female_with_name' => 'φίλη του :name', + + 'relationship_type_bestfriend' => 'καλύτερος φίλος', + 'relationship_type_bestfriend_female' => 'καλύτερη φίλη', + 'relationship_type_bestfriend_with_name' => 'καλύτερος φίλος του :name', + 'relationship_type_bestfriend_female_with_name' => 'καλύτερη φίλη του :name', + + 'relationship_type_colleague' => 'συνάδελφος', + 'relationship_type_colleague_female' => 'συνάδελφος', + 'relationship_type_colleague_with_name' => 'συνάδελφος του :name', + 'relationship_type_colleague_female_with_name' => 'συνάδελφος του :name', + + 'relationship_type_boss' => 'αφεντικό', + 'relationship_type_boss_female' => 'αφεντικό', + 'relationship_type_boss_with_name' => 'αφεντικό του :name', + 'relationship_type_boss_female_with_name' => 'αφεντικό του :name', + + 'relationship_type_subordinate' => 'υφιστάμενος', + 'relationship_type_subordinate_female' => 'υφιστάμενη', + 'relationship_type_subordinate_with_name' => 'υφιστάμενος του :name', + 'relationship_type_subordinate_female_with_name' => 'υφιστάμενη του :name', + + 'relationship_type_mentor' => 'σύμβουλος', + 'relationship_type_mentor_female' => 'μέντορας', + 'relationship_type_mentor_with_name' => 'σύμβουλος του :name', + 'relationship_type_mentor_female_with_name' => 'σύμβουλος της :name', + + 'relationship_type_protege' => 'προστατευόμενος', + 'relationship_type_protege_female' => 'προστατευόμενη', + 'relationship_type_protege_with_name' => 'προστατευόμενος του :name', + 'relationship_type_protege_female_with_name' => 'προστατευόμενη του :name', + + 'relationship_type_ex_husband' => 'πρώην σύζυγος', + 'relationship_type_ex_husband_female' => 'πρώην σύζυγος', + 'relationship_type_ex_husband_with_name' => 'πρώην σύζυγος του :name', + 'relationship_type_ex_husband_female_with_name' => 'πρώην σύζυγος της :name', + + // emotions + 'emotion_primary_love' => 'Αγάπη', + 'emotion_primary_joy' => 'Χαρά', + 'emotion_primary_surprise' => 'Έκπληξη', + 'emotion_primary_anger' => 'Θυμός', + 'emotion_primary_sadness' => 'Θλίψη', + 'emotion_primary_fear' => 'Φόβος', + + 'emotion_secondary_affection' => 'Στοργή', + 'emotion_secondary_lust' => 'Πόθος', + 'emotion_secondary_longing' => 'Λαχτάρα', + 'emotion_secondary_cheerfulness' => 'Χαρά', + 'emotion_secondary_zest' => 'Ζέση', + 'emotion_secondary_contentment' => 'Ικανοποίηση', + 'emotion_secondary_pride' => 'Περηφάνια', + 'emotion_secondary_optimism' => 'Αισιοδοξία', + 'emotion_secondary_enthrallment' => 'Ενθάρρυνση', + 'emotion_secondary_relief' => 'Ανακούφιση', + 'emotion_secondary_surprise' => 'Έκπληξη', + 'emotion_secondary_irritation' => 'Ενόχληση', + 'emotion_secondary_exasperation' => 'Εξόργιση', + 'emotion_secondary_rage' => 'Θυμός', + 'emotion_secondary_disgust' => 'Αηδία', + 'emotion_secondary_envy' => 'Ζήλια', + 'emotion_secondary_suffering' => 'Ταλαιπωρία', + 'emotion_secondary_sadness' => 'Θλίψη', + 'emotion_secondary_disappointment' => 'Απογοήτευση', + 'emotion_secondary_shame' => 'Ντροπή', + 'emotion_secondary_neglect' => 'Παραμέληση', + 'emotion_secondary_sympathy' => 'Συμπάθεια', + 'emotion_secondary_horror' => 'Τρόμος', + 'emotion_secondary_nervousness' => 'Νευρικότητα', + + 'emotion_adoration' => 'Λατρεία', + 'emotion_affection' => 'Στοργή', + 'emotion_love' => 'Αγάπη', + 'emotion_fondness' => 'Συμπάθεια', + 'emotion_liking' => 'Αρέσκεια', + 'emotion_attraction' => 'Έλξη', + 'emotion_caring' => 'Νοιάζομαι', + 'emotion_tenderness' => 'Τρυφερότητα', + 'emotion_compassion' => 'Συμπόνια', + 'emotion_sentimentality' => 'Συναισθηματικότητα', + 'emotion_arousal' => 'Διέγερση', + 'emotion_desire' => 'Επιθυμία', + 'emotion_lust' => 'Πόθος', + 'emotion_passion' => 'Πάθος', + 'emotion_infatuation' => 'Ξελόγιασμα', + 'emotion_longing' => 'Λαχτάρα', + 'emotion_amusement' => 'Ψυχαγωγία', + 'emotion_bliss' => 'Ευδαιμονία', + 'emotion_cheerfulness' => 'Χαρά', + 'emotion_gaiety' => 'Ευθυμία', + 'emotion_glee' => 'Χαρά', + 'emotion_jolliness' => 'Ευχαρίστηση', + 'emotion_joviality' => 'Κέφι', + 'emotion_joy' => 'Χαρά', + 'emotion_delight' => 'Απόλαυση', + 'emotion_enjoyment' => 'Απόλαυση', + 'emotion_gladness' => 'Χαρά', + 'emotion_happiness' => 'Ευτυχία', + 'emotion_jubilation' => 'Αγαλλίαση', + 'emotion_elation' => 'Έξαρση', + 'emotion_satisfaction' => 'Ικανοποίηση', + 'emotion_ecstasy' => 'Έκσταση', + 'emotion_euphoria' => 'Εφορία', + 'emotion_enthusiasm' => 'Ενθουσιασμός', + 'emotion_zeal' => 'Ζήλος', + 'emotion_zest' => 'Ζέση', + 'emotion_excitement' => 'Ενθουσιασμός', + 'emotion_thrill' => 'Συγκίνηση', + 'emotion_exhilaration' => 'Χαρά', + 'emotion_contentment' => 'Ικανοποίηση', + 'emotion_pleasure' => 'Απόλαυση', + 'emotion_pride' => 'Περηφάνια', + 'emotion_eagerness' => 'Προθυμία', + 'emotion_hope' => 'Ελπίδα', + 'emotion_optimism' => 'Αισιοδοξία', + 'emotion_enthrallment' => 'Ενθάρρυνση', + 'emotion_rapture' => 'Αγαλλίαση', + 'emotion_relief' => 'Ανακούφιση', + 'emotion_amazement' => 'Κατάπληξη', + 'emotion_surprise' => 'Έκπληξη', + 'emotion_astonishment' => 'Έκπληκτος', + 'emotion_aggravation' => 'Επιδείνωση', + 'emotion_irritation' => 'Ερεθισμός', + 'emotion_agitation' => 'Ταραχή', + 'emotion_annoyance' => 'Ενόχληση', + 'emotion_grouchiness' => 'Δυστροπία', + 'emotion_grumpiness' => 'Γκρίνια', + 'emotion_exasperation' => 'Εξόργιση', + 'emotion_frustration' => 'Εκνευρισμός', + 'emotion_anger' => 'Θυμός', + 'emotion_rage' => 'Οργή', + 'emotion_outrage' => 'Προσβολή', + 'emotion_fury' => 'Θυμός', + 'emotion_wrath' => 'Οργή', + 'emotion_hostility' => 'Εχθρότητα', + 'emotion_ferocity' => 'Αγριότητα', + 'emotion_bitterness' => 'Πικρία', + 'emotion_hate' => 'Μίσος', + 'emotion_loathing' => 'Σιχαμάρα', + 'emotion_scorn' => 'Περιφρόνηση', + 'emotion_spite' => 'Πείσμα', + 'emotion_vengefulness' => 'Εκδικητικότητα', + 'emotion_dislike' => 'Αντιπάθεια', + 'emotion_resentment' => 'Μνησικακία', + 'emotion_disgust' => 'Αηδία', + 'emotion_revulsion' => 'Μεταστροφή', + 'emotion_contempt' => 'Περιφρόνηση', + 'emotion_envy' => 'Φθόνος', + 'emotion_jealousy' => 'Ζήλια', + 'emotion_agony' => 'Αγωνία', + 'emotion_suffering' => 'Ταλαιπωρία', + 'emotion_hurt' => 'Πόνος', + 'emotion_anguish' => 'Οδύνη', + 'emotion_depression' => 'Κατάθλιψη', + 'emotion_despair' => 'Απόγνωση', + 'emotion_hopelessness' => 'Απελπισία', + 'emotion_gloom' => 'Κατηφής', + 'emotion_glumness' => 'Κατήφεια', + 'emotion_sadness' => 'Θλίψη', + 'emotion_unhappiness' => 'Δυστυχία', + 'emotion_grief' => 'Πένθος', + 'emotion_sorrow' => 'Πόνος', + 'emotion_woe' => 'Συμφορά', + 'emotion_misery' => 'Μιζέρια', + 'emotion_melancholy' => 'Μελαγχολία', + 'emotion_dismay' => 'Φόβος', + 'emotion_disappointment' => 'Απογοήτευση', + 'emotion_displeasure' => 'Δυσαρέσκεια', + 'emotion_guilt' => 'Ενοχή', + 'emotion_shame' => 'Ντροπή', + 'emotion_regret' => 'Μετάνοια', + 'emotion_remorse' => 'Τύψεις', + 'emotion_alienation' => 'Αποξένωση', + 'emotion_isolation' => 'Απομόνωση', + 'emotion_neglect' => 'Παραμέληση', + 'emotion_loneliness' => 'Μοναξιά', + 'emotion_rejection' => 'Απόρριψη', + 'emotion_homesickness' => 'Νοσταλγία', + 'emotion_defeat' => 'Ήττα', + 'emotion_dejection' => 'Κατήφεια', + 'emotion_insecurity' => 'Ανασφάλεια', + 'emotion_embarrassment' => 'Ντροπή', + 'emotion_humiliation' => 'Ταπείνωση', + 'emotion_insult' => 'Προσβολή', + 'emotion_pity' => 'Οίκτος', + 'emotion_sympathy' => 'Συμπάθεια', + 'emotion_alarm' => 'Ανήσυχος', + 'emotion_shock' => 'Έκπληξη', + 'emotion_fear' => 'Φόβος', + 'emotion_fright' => 'Τρομάρα', + 'emotion_horror' => 'Τρόμος', + 'emotion_terror' => 'Τρόμος', + 'emotion_panic' => 'Πανικός', + 'emotion_hysteria' => 'Υστερία', + 'emotion_mortification' => 'Ταπείνωση', + 'emotion_anxiety' => 'Ανησυχία', + 'emotion_nervousness' => 'Νευρικότητα', + 'emotion_tenseness' => 'Υπερένταση', + 'emotion_uneasiness' => 'Ανησυχία', + 'emotion_apprehension' => 'Σύλληψη', + 'emotion_worry' => 'Ανησυχία', + 'emotion_distress' => 'Δυσφορία', + 'emotion_dread' => 'Τρόμος', + + // weather + 'weather_clear-day' => 'Καθαρή μέρα', + 'weather_clear-night' => 'Καθαρή νύχτα', + 'weather_rain' => 'Βροχή', + 'weather_snow' => 'Χιόνι', + 'weather_sleet' => 'Χιονόνερο', + 'weather_wind' => 'Άνεμος', + 'weather_fog' => 'Ομίχλη', + 'weather_cloudy' => 'Συννεφιά', + 'weather_partly-cloudy-day' => 'Αραιή συννεφιά', + 'weather_partly-cloudy-night' => 'Αραιή συννεφιά', + 'weather_current_temperature_celsius' => ':temperature °C', + 'weather_current_temperature_fahrenheit' => ':temperature °F', + 'weather_current_title' => 'Τρέχων καιρός', + + // dav + 'dav_contacts' => 'Επαφές', + 'dav_contacts_description' => 'Επαφές του :name', + 'dav_birthdays' => 'Γενέθλια', + 'dav_birthdays_description' => 'Γενέθλια επαφών του :name', + 'dav_tasks' => 'Εργασίες', + 'dav_tasks_description' => 'εργασίες του :name', +]; diff --git a/resources/lang/el/auth.php b/resources/lang/el/auth.php new file mode 100644 index 00000000000..1d2ed619a17 --- /dev/null +++ b/resources/lang/el/auth.php @@ -0,0 +1,88 @@ + 'Τα διαπιστευτήρια δεν ταιριάζουν με τα αρχεία μας.', + 'throttle' => 'Παρα πολλές προσπάθειες σύνδεσης. Παρακαλώ δοκιμάστε ξανά σε :seconds δευτερόλεπτα.', + 'not_authorized' => 'Δεν είστε εξουσιοδοτημένοι να εκτελέσετε αυτήν την ενέργεια', + 'signup_disabled' => 'Η εγγραφές είναι απενεργοποιημένες αυτήν τη στιγμή', + 'signup_error' => 'Παρουσιάστηκε σφάλμα κατά την εγγραφή του χρήστη', + 'back_homepage' => 'Επιστροφή στην αρχική σελίδα', + 'mfa_auth_otp' => 'Πραγματοποιήστε έλεγχο ταυτότητας με τη συσκευή δύο παραγόντων', + 'mfa_auth_webauthn' => 'Έλεγχος ταυτότητας με κλειδί ασφαλείας (WebAuthn)', + '2fa_title' => 'Έλεγχος Ταυτότητας Δυο Παραγόντων', + '2fa_wrong_validation' => 'Ο έλεγχος ταυτότητας δύο παραγόντων απέτυχε.', + '2fa_one_time_password' => 'Κωδικός ελέγχου ταυτότητας δύο παραγόντων', + '2fa_recuperation_code' => 'Πληκτρολογήστε έναν κωδικό ελέγχου ταυτότητας δύο παραγόντων', + '2fa_otp_help' => 'Ανοίξτε την εφαρμογή ελέγχου ταυτότητας δύο παραγόντων στο κινητό σας και αντιγράψτε τον κωδικό', + + 'login_to_account' => 'Συνδεθείτε στο λογαριασμό σας', + 'login_with_recovery' => 'Συνδεθείτε με έναν κωδικό ανάκτησης', + 'login_again' => 'Παρακαλούμε συνδεθείτε στο λογαριασμό σας ξανά', + 'email' => 'Email', + 'password' => 'Κωδικός', + 'recovery' => 'Κωδικός ανάκτησης', + 'login' => 'Σύνδεση', + 'button_remember' => 'Να με θυμάσαι', + 'password_forget' => 'Ξεχάσατε τον κωδικό πρόσβασης;', + 'password_reset' => 'Επαναφορά κωδικού πρόσβασης', + 'use_recovery' => 'Ή μπορείτε να χρησιμοποιήσετε έναν κωδικό επαναφοράς', + 'signup_no_account' => 'Δεν έχετε λογαριασμό;', + 'signup' => 'Εγγραφή', + 'create_account' => 'Δημιουργήστε τον πρώτο λογαριασμό με εγγραφή', + 'change_language_title' => 'Αλλαγή γλώσσας:', + 'change_language' => 'Αλλαγή γλώσσας σε :lang', + + 'password_reset_title' => 'Επαναφορά κωδικού πρόσβασης', + 'password_reset_email' => 'Διεύθυνση E-mail', + 'password_reset_send_link' => 'Αποστολή συνδέσμου επαναφοράς κωδικού πρόσβασης', + 'password_reset_password' => 'Κωδικός πρόσβασης', + 'password_reset_password_confirm' => 'Επιβεβαίωση Κωδικού πρόσβασης', + 'password_reset_action' => 'Επαναφορά Κωδικού πρόσβασης', + 'password_reset_email_content' => 'Κάντε κλικ εδώ για να επαναφέρετε τον κωδικό πρόσβασής σας:', + + 'register_title_welcome' => 'Καλώς ήλθατε στην νέα εγκατάσταση του Monica', + 'register_create_account' => 'Πρέπει να δημιουργήσετε έναν λογαριασμό για να χρησιμοποιήσετε το Monica', + 'register_title_create' => 'Δημιουργήστε το λογαριασμό Monica', + 'register_login' => 'Συνδεθείτε αν έχετε ήδη λογαριασμό.', + 'register_email' => 'Εισάγετε μια έγκυρη διεύθυνση email', + 'register_email_example' => 'εσείς@σπίτι', + 'register_firstname' => 'Όνομα', + 'register_firstname_example' => 'π.χ. Κώστας', + 'register_lastname' => 'Επώνυμο', + 'register_lastname_example' => 'π.χ. Παπαδόπουλος', + 'register_password' => 'Κωδικός πρόσβασης', + 'register_password_example' => 'Εισάγετε έναν ασφαλή κωδικό', + 'register_password_confirmation' => 'Επιβεβαίωση Κωδικού πρόσβασης', + 'register_action' => 'Εγγραφή', + 'register_policy' => 'Η εγγραφή σας σημαίνει ότι διαβάσατε και συμφωνείτε με την Πολιτική απορρήτου και τους Όρους χρήσης.', + 'register_invitation_email' => 'Για λόγους ασφαλείας, αναφέρετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου του ατόμου που σας προσκάλεσε να εγγραφείτε σε αυτόν τον λογαριασμό. Αυτές οι πληροφορίες παρέχονται στο email πρόσκλησης.', + + 'confirmation_title' => 'Επιβεβαίωση διεύθυνσης email', + 'confirmation_fresh' => 'Ένα επιβεβαιωτικό email στάλθηκε στην διεύθυνση ηλεκτρονικού ταχυδρομείου σας.', + 'confirmation_check' => 'Πριν προχωρήσετε, παρακαλώ ελέγξτε το email σας για τον σύνδεσμο επαλήθευσης.', + 'confirmation_request_another' => 'Αν δεν έχετε παραλάβει το email πατήστε εδώ για να αποστείλουμε νέο.', + + 'confirmation_again' => 'Αν θέλετε να αλλάξετε την διεύθυνση email σας πατήστε εδώ.', + 'email_change_current_email' => 'Διεύθυνση email αυτή τη στιγμή:', + 'email_change_title' => 'Αλλάξτε την διεύθυνση email σας', + 'email_change_new' => 'Νέα διεύθυνση email', + 'email_changed' => 'Your email address has been changed. Check your mailbox to validate it.', +]; diff --git a/resources/lang/el/changelog.php b/resources/lang/el/changelog.php new file mode 100644 index 00000000000..0fc4a5d6467 --- /dev/null +++ b/resources/lang/el/changelog.php @@ -0,0 +1,12 @@ + 'Αλλαγές προϊόντος', + 'note' => 'Σημείωση: Δυστυχώς αυτή η σελίδα είναι διαθέσιμη μόνο στα Αγγλικά.', +]; diff --git a/resources/lang/el/dashboard.php b/resources/lang/el/dashboard.php new file mode 100644 index 00000000000..e52acd38b40 --- /dev/null +++ b/resources/lang/el/dashboard.php @@ -0,0 +1,42 @@ + 'Welcome to your account!', + 'dashboard_blank_description' => 'Monica is the place to organize all the interactions you have with the ones you care about.', + 'dashboard_blank_cta' => 'Add your first contact', + 'dashboard_blank_illustration' => 'Illustration by Freepik', + + 'notes_title' => 'You don’t have any starred notes yet.', + + 'tab_recent_calls' => 'Recent calls', + 'tab_favorite_notes' => 'Favorite notes', + 'tab_calls_blank' => 'You haven’t logged a call yet.', + 'tab_debts' => 'Debts', + 'tab_debts_blank' => 'You haven’t logged any debt yet.', + 'tab_tasks' => 'Tasks', + 'tab_tasks_blank' => 'You haven’t any task yet.', + + 'tasks_add_task_placeholder' => 'What is this task about?', + 'tasks_tab_your_contacts' => 'Tasks related to your contacts', + 'tasks_tab_your_tasks' => 'Your tasks', + 'tasks_add_note' => 'Press Enter to add the task.', + 'task_add_cta' => 'Add a task', + + 'debts_you_owe' => 'You owe', + + 'statistics_contacts' => 'Contacts', + 'statistics_activities' => 'Activities', + 'statistics_gifts' => 'Gifts', + + 'reminders_next_months' => 'Events in the next 3 months', + 'reminders_none' => 'No reminder for this month', + + 'product_changes' => 'Product changes', + 'product_view_details' => 'View details', +]; diff --git a/resources/lang/el/format.php b/resources/lang/el/format.php new file mode 100644 index 00000000000..a58bd78de9d --- /dev/null +++ b/resources/lang/el/format.php @@ -0,0 +1,36 @@ + 'M d, Y H:i', + 'short_date_year' => 'M d, Y', + 'short_date' => 'M d', + 'short_month' => 'M', + 'short_month_year' => 'M Y', + 'short_day' => 'D', + 'full_date_year' => 'F d, Y', + 'full_month' => 'F', + 'full_month_year' => 'F Y', + 'full_hour' => 'h.i A', + + 'short_text' => '{text}…', +]; diff --git a/resources/lang/el/journal.php b/resources/lang/el/journal.php new file mode 100644 index 00000000000..396522beb04 --- /dev/null +++ b/resources/lang/el/journal.php @@ -0,0 +1,30 @@ + 'How was your day? You can rate it once a day.', + 'journal_come_back' => 'Thanks. Come back tomorrow to rate your day again.', + '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_add' => 'Add a journal entry', + 'journal_edit' => 'Edit a journal entry', + 'journal_empty' => 'Empty journal', + 'journal_created_automatically' => 'Created automatically', + 'journal_entry_type_journal' => 'Journal entry', + 'journal_entry_type_activity' => 'Activity', + 'journal_entry_rate' => 'You rated your day.', + 'journal_add_comment' => 'Care to add a comment (optional)?', + 'journal_show_comment' => 'Show comment', + 'entry_delete_success' => 'The journal entry has been successfully deleted.', + 'journal_add_title' => 'Title (optional)', + 'journal_add_date' => 'Date', + 'journal_add_post' => 'Entry', + 'journal_add_cta' => 'Save', + 'journal_blank_cta' => 'Add your first journal entry', + 'journal_blank_description' => 'The journal lets you write events that happened to you, and remember them.', + 'delete_confirmation' => 'Are you sure you want to delete this journal entry?', +]; diff --git a/resources/lang/el/logs.php b/resources/lang/el/logs.php new file mode 100644 index 00000000000..8980a02346e --- /dev/null +++ b/resources/lang/el/logs.php @@ -0,0 +1,33 @@ + 'Δημιουργήθηκε νέα επαφή.', + 'settings_log_contact_created_with_name' => 'Προστέθηκε :name ως επαφή.', + 'settings_log_contact_created_with_name_with_link' => 'Προστέθηκε :name ως επαφή.', + + // contat description update + 'contact_log_contact_description_updated' => 'Ενημερώθηκε η περιγραφή.', + 'settings_log_contact_description_updated_with_name' => 'Ενημερώθηκε η περιγραφή του :name.', + 'settings_log_contact_description_updated_with_name_with_link' => 'Ενημερώθηκε η περιγραφή του :name.', + + // contact description clear + 'contact_log_contact_description_cleared' => 'Διαγράφηκε η περιγραφή.', + 'settings_log_contact_description_cleared_with_name' => 'Διαγράφηκε η περιγραφή του :name.', + 'settings_log_contact_description_cleared_with_name_with_link' => 'Διαγράφηκε η περιγραφή του :name.', + + // contact work information update + 'contact_log_contact_work_updated' => 'Ενημέρωση πληροφοριών εργασίας.', + 'settings_log_contact_work_updated_with_name' => 'Ενημέρωση πληροφοριών εργασίας του :name.', + 'settings_log_contact_work_updated_with_name_with_link' => 'Ενημέρωση πληροφοριών εργασίας του :name.', + + // company created + 'settings_log_company_created' => 'Δημιουργήθηκε εταιρεία με όνομα :name.', +]; diff --git a/resources/lang/el/mail.php b/resources/lang/el/mail.php new file mode 100644 index 00000000000..b459fa1e57b --- /dev/null +++ b/resources/lang/el/mail.php @@ -0,0 +1,48 @@ + 'Reminder for :contact', + 'greetings' => 'Hi :username', + 'want_reminded_of' => 'You wanted to be reminded of :reason', + 'for' => 'Προς: :name', + 'comment' => 'Σχόλιο: :comment', + 'footer_contact_info' => 'Προσθέστε, δείτε, ολοκληρώστε και επεξεργαστείτε τις πληροφορίες για αυτή την επαφή:', + 'footer_contact_info2' => 'Δείτε το προφίλ του :name', + 'footer_contact_info2_link' => 'Δείτε τη διεύθυνση του προφίλ του :name', + + 'notification_subject_line' => 'Έχετε μια επερχόμενη εκδήλωση', + 'notification_description' => 'Σε :count ημέρες (:date) έχετε την επόμενη εκδήλωση:', + + 'stay_in_touch_subject_line' => 'Μείνετε σε επαφή με :name', + 'stay_in_touch_subject_description' => 'Ζητήσατε να σας υπενθυμίζουμε να μένετε σε επαφή με τον :name κάθε :frequency μέρα.|Ζητήσατε να σας υπενθυμίζουμε να μένετε σε επαφή με τον :name κάθε :frequency μέρες.', + + 'notifications_whoops' => 'Ουπς!', + 'notifications_hello' => 'Γειά!', + 'notifications_regards' => 'Με εκτίμηση,', + 'notifications_footer' => 'Εάν αντιμετωπίζετε προβλήματα κάνοντας κλικ στο κουμπί ":actionText", αντιγράψτε και επικολλήστε την παρακάτω διεύθυνση URL στο πρόγραμμα περιήγησης: [:actionURL] (:actionURL)', + 'notifications_rights' => 'Με επιφύλαξη παντός δικαιώματος', + + 'confirmation_email_title' => 'Monica – Email επιβεβαίωσης', + 'confirmation_email_intro'=> 'Για να επιβεβαιώσετε το email σας, πατήστε στο παρακάτω κουμπί', + 'confirmation_email_button' => 'Επιβεβαίωση διεύθυνσης email', + 'confirmation_email_bottom' => 'Αν δεν δημιουργήστε έναν λογαριασμό, δεν χρειάζεται κάποια περαιτέρω ενέργεια.', + + 'password_reset_title' => 'Monica – Ειδοποίηση Επαναφοράς Κωδικού Πρόσβασης', + 'password_reset_intro' => 'Λαμβάνετε αυτό το email γιατί λάβαμε μία αίτηση για επαναφορά κωδικού πρόσβασης για αυτό το λογαριασμό.', + 'password_reset_button' => 'Επαναφορά κωδικού πρόσβασης', + 'password_reset_expiration' => 'Αυτός ο σύνδεσμος επαναφοράς κωδικού πρόσβασης θα λήξει σε :count λεπτά.', + 'password_reset_bottom' => 'Αν δεν ζητήσατε επαναφορά κωδικού πρόσβασης, δεν χρειάζεται κάποια περαιτέρω ενέργεια.', + + 'invitation_title' => 'Monica – Η επαφή :name σας έχει προσκαλέσει', + 'invitation_intro' => 'Η επαφή :name (:email) σας προσκάλεσε να χρησιμοποιήσετε το Monica, ένα ωραίο εργαλείο Διαχείρισης Προσωπικών Σχέσεων.', + 'invitation_link' => 'Για να αποδεχτείτε την πρόσκληση, πατήστε στον σύνδεσμο παρακάτω:', + 'invitation_button' => 'Αποδοχή πρόσκλησης', + 'invitation_expiration' => 'Ο σύνδεσμος θα λήξει σε :count μέρες.', +]; diff --git a/resources/lang/el/pagination.php b/resources/lang/el/pagination.php new file mode 100644 index 00000000000..36cdeb86a07 --- /dev/null +++ b/resources/lang/el/pagination.php @@ -0,0 +1,25 @@ + '❮ Προηγούμενη', + 'next' => 'Επόμενη ❯', + +]; diff --git a/resources/lang/el/passwords.php b/resources/lang/el/passwords.php new file mode 100644 index 00000000000..a3fbcdf790c --- /dev/null +++ b/resources/lang/el/passwords.php @@ -0,0 +1,30 @@ + 'Έχει γίνει επαναφορά του κωδικού πρόσβασης σας!', + 'sent' => 'Αν το email που πληκτρολογήσατε υπάρχει στις εγγραφές μας, θα σας έχουμε στείλει έναν σύνδεσμο για επαναφορά κωδικού πρόσβασης.', + 'token' => 'Αυτό το διακριτικό επαναφοράς κωδικού πρόσβασης δεν είναι έγκυρο.', + 'user' => 'Αν το email που πληκτρολογήσατε υπάρχει στις εγγραφές μας, θα σας έχουμε στείλει έναν σύνδεσμο για επαναφορά κωδικού πρόσβασης.', + 'changed' => 'Ο κωδικός πρόσβασης άλλαξε επιτυχώς.', + 'invalid' => 'Ο τρέχων κωδικός πρόσβασης που εισάγατε δεν είναι σωστός.', + 'throttled' => 'Παρακαλώ περιμένετε πριν ξαναπροσπαθήσετε.', + +]; diff --git a/resources/lang/el/people.php b/resources/lang/el/people.php new file mode 100644 index 00000000000..b74bcfb9b0f --- /dev/null +++ b/resources/lang/el/people.php @@ -0,0 +1,534 @@ + 'Δεν βρέθηκε η επαφή', + 'people_list_number_kids' => '1 παιδί|:count παιδιά', + 'people_list_last_updated' => 'Συμβουλευτήκατε τελευταία:', + 'people_list_number_reminders' => '1 υπενθύμιση|:count υπενθυμίσεις', + 'people_list_blank_title' => 'Δεν υπάρχει κάποια επαφή στον λογαριασμό σας ακόμη', + 'people_list_blank_cta' => 'Προσθέστε κάποιον', + 'people_list_sort' => 'Ταξινόμηση', + 'people_list_stats' => '1 επαφή|:count επαφές', + 'people_list_firstnameAZ' => 'Ταξινόμηση με Όνομα Α → Ω', + 'people_list_firstnameZA' => 'Ταξινόμηση με Όνομα Ω → Α', + 'people_list_lastnameAZ' => 'Ταξινόμηση με Επώνυμο Α → Ω', + 'people_list_lastnameZA' => 'Ταξινόμηση με Επώνυμο Ω → Α', + 'people_list_lastactivitydateNewtoOld' => 'Ταξινόμηση με ημερομηνία δραστηριότητας νεότερο έως παλαιότερο', + 'people_list_lastactivitydateOldtoNew' => 'Ταξινόμηση με ημερομηνία δραστηριότητας παλαιότερο προς νεότερο', + 'people_list_filter_tag' => 'Εμφάνιση όλων των επαφών με ετικέτα', + 'people_list_clear_filter' => 'Κατάργηση φίλτρου', + 'people_list_contacts_per_tags' => '1 επαφή|:count επαφές', + 'people_list_show_dead' => 'Εμφάνιση θανόντων (:count)', + 'people_list_hide_dead' => 'Απόκρυψη θανόντων (:count)', + 'people_search' => 'Αναζήτηση σε επαφές...', + 'people_search_no_results' => 'Δε βρέθηκαν αποτελέσματα', + 'people_search_next' => 'Επόμενο', + 'people_search_prev' => 'Προηγούμενο', + 'people_search_rows_per_page' => 'Εγγραφές ανά σελίδα:', + 'people_search_of' => 'από', + 'people_search_page' => 'Σελίδα', + 'people_search_all' => 'Όλα', + 'people_add_new' => 'Προσθήκη νέου ατόμου', + 'people_list_account_usage' => 'Χρήση του λογαριασμού σας: :current/:limit επαφές', + 'people_list_account_upgrade_title' => 'Αναβαθμίστε τον λογαριασμό σας για να ξεκλειδώσετε όλες τις δυνατότητες του.', + 'people_list_account_upgrade_cta' => 'Αναβάθμιση τώρα', + 'people_list_untagged' => 'Εμφάνιση επαφών χωρίς ετικέτα', + 'people_list_filter_untag' => 'Εμφάνιση όλων των επαφών χωρίς ετικέτες', + + // people add + 'people_add_title' => 'Προσθήκη νέου ατόμου', + 'people_add_missing' => 'Δεν Βρέθηκαν Άτομα Προσθέστε Ένα Τώρα', + 'people_add_firstname' => 'Όνομα', + 'people_add_middlename' => 'Μεσαίο όνομα (Προαιρετικό)', + 'people_add_lastname' => 'Επώνυμο (Προαιρετικό)', + 'people_add_nickname' => 'Ψευδώνυμο (Προαιρετικό)', + 'people_add_cta' => 'Προσθήκη', + 'people_save_and_add_another_cta' => 'Αποθήκευση και προσθήκη νέου', + 'people_add_success' => 'Η επαφή :name δημιουργήθηκε με επιτυχία', + 'people_add_gender' => 'Φύλο', + 'people_delete_success' => 'Η επαφή έχει διαγραφεί', + 'people_delete_message' => 'Διαγραφή επαφής', + 'people_delete_confirmation' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την επαφή; Η διαγραφή είναι μόνιμη.', + 'people_add_birthday_reminder' => 'Ευχηθείτε χρόνια πολλά στον :name', + 'people_add_birthday_reminder_deceased' => 'On this date, :name, would have celebrated his birthday', + 'people_add_import' => 'Do you want to import your contacts?', + 'people_edit_email_error' => 'There is already a contact in your account with this email address. Please choose another one.', + 'people_export' => 'Εξαγωγή ως vCard', + 'people_add_reminder_for_birthday' => 'Create an annual reminder for the birthday', + + // show + 'section_contact_information' => 'Πληροφορίες επικοινωνίας', + 'section_personal_activities' => 'Δραστηριότητες', + 'section_personal_reminders' => 'Υπενθυμίσεις', + 'section_personal_tasks' => 'Εργασίες', + 'section_personal_gifts' => 'Δώρα', + 'section_personal_notes' => 'Σημειώσεις', + + // archived contacts + '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', + + // Header + 'me' => 'Αυτός είσαι εσύ', + 'edit_contact_information' => 'Επεξεργασία πληροφοριών επικοινωνίας', + 'contact_archive' => 'Αρχειοθέτηση επαφής', + 'contact_unarchive' => 'Ανάκληση αρχειοθέτησης επαφής', + 'contact_archive_help' => 'Οι αρχειοθετημένες επαφές δεν εμφανίζονται στη λίστα επαφών, αλλά εμφανίζονται στα αποτελέσματα αναζήτησης.', + 'call_button' => 'Καταχώρηση κλήσης', + 'set_favorite' => 'Οι αγαπημένες επαφές εμφανίζονται στο πάνω μέρος της λίστας επαφών', + + // Stay in touch + 'stay_in_touch' => 'Μείνετε σε επαφή', + 'stay_in_touch_frequency' => 'Μείνετε σε επαφή κάθε μέρα|Μείνετε σε επαφή κάθε {count} μέρες', + 'stay_in_touch_invalid' => 'Η συχνότητα πρέπει να είναι ένας αριθμός μεγαλύτερος του 0.', + 'stay_in_touch_premium' => 'Πρέπει να κάνετε αναβάθμιση του λογαριασμού για να χρησιμοποιήσετε αυτή τη δυνατότητα', + 'stay_in_touch_modal_title' => 'Μείνετε σε επαφή', + 'stay_in_touch_modal_desc' => 'Μπορούμε να σας υπενθυμίζουμε με email να μείνετε σε επαφή με την επαφή {firstname} σε σταθερό ρυθμό.', + 'stay_in_touch_modal_label' => 'Στείλε μου email κάθε... {count} μέρα|Στείλε μου email κάθε... {count} μέρες', + + // Calls + 'modal_call_title' => 'Καταχώρηση κλήσης', + 'modal_call_comment' => 'What did you talk about? (optional)', + 'modal_call_exact_date' => 'Το τηλεφώνημα έγινε στις', + 'modal_call_who_called' => 'Ποιός πήρε τηλέφωνο;', + 'modal_call_emotion' => 'Θέλετε να καταχωρήσετε το πως νιώσατε κατά τη διάρκεια του τηλεφωνήματος; (προαιρετικό)', + 'calls_add_success' => 'Η εγγραφή αποθηκεύτηκε.', + 'call_delete_confirmation' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε την εγγραφή;', + 'call_delete_success' => 'Η εγγραφή έχει διαγραφεί με επιτυχία', + 'call_title' => 'Τηλεφωνικές κλήσεις', + 'call_empty_comment' => 'Δεν υπάρχουν λεπτομέρειες', + 'call_blank_title' => 'Παρακολουθήστε τις τηλεφωνικές κλήσεις που έχετε πραγματοποιήσει με την επαφή {name}', + 'call_blank_desc' => 'Κλήση σε {name}', + 'call_you_called' => 'Καλέσατε εσείς', + 'call_he_called' => 'κάλεσε η επαφή {name}', + 'call_emotions' => 'Συναισθήματα:', + + // Conversation + 'conversation_blank' => 'Καταγράψτε τις συνομιλίες σας με :name στα μέσα κοινωνικής δικτύωσης, SMS, ...', + 'conversation_delete_link' => 'Διαγραφή της συνομιλίας', + 'conversation_edit_title' => 'Επεξεργασία της συνομιλίας', + 'conversation_edit_delete' => 'Are you sure you want to delete this conversation? Deletion is permanent.', + 'conversation_add_success' => 'The conversation has been successfully added.', + 'conversation_edit_success' => 'The conversation has been successfully updated.', + 'conversation_delete_success' => 'The conversation has been successfully deleted.', + 'conversation_add_title' => 'Record a new conversation', + 'conversation_add_when' => 'When did you have this conversation?', + 'conversation_add_who_wrote' => 'Who said this message?', + 'conversation_add_how' => 'How did you communicate?', + 'conversation_add_you' => 'You', + 'conversation_add_content' => 'Write down what was said', + 'conversation_add_what_was_said' => 'What did you say?', + 'conversation_add_another' => 'Add another message', + 'conversation_add_error' => 'You must add at least one message.', + 'conversation_list_table_messages' => 'Messages', + 'conversation_list_table_content' => 'Partial content (last message)', + 'conversation_list_title' => 'Conversations', + 'conversation_list_cta' => 'Log conversation', + + // age - birthday + 'birthdate_not_set' => 'Birthdate is not set', + 'age_approximate_in_years' => 'around :age years old', + 'age_exact_in_years' => ':age years old', + 'age_exact_birthdate' => 'born :date', + + // Last called + 'last_called' => 'Last called: :date', + 'last_called_empty' => 'Last called: unknown', + 'last_activity_date' => 'Last activity together: :date', + 'last_activity_date_empty' => 'Last activity together: unknown', + + // additional information + 'information_edit_success' => 'The profile has been updated successfully', + 'information_edit_title' => 'Edit :name’s personal information', + 'information_edit_max_size' => 'Max :size Kb.', + 'information_edit_max_size2' => 'Max {size} Kb.', + 'information_edit_firstname' => 'First name', + 'information_edit_lastname' => 'Last name (Optional)', + 'information_edit_description' => 'Description (Optional)', + 'information_edit_description_help' => 'Used on the contact list to add some context, if necessary.', + 'information_edit_unknown' => 'I do not know this person’s age', + 'information_edit_probably' => 'This person is probably...', + 'information_edit_not_year' => 'I know the day and month of the birthdate of this person, but not the year…', + 'information_edit_exact' => 'I know the exact birthdate of this person...', + 'information_edit_birthdate_label' => 'Birthdate', + 'information_no_work_defined' => 'No work information defined', + 'information_work_at' => 'at :company', + 'work_add_cta' => 'Update work information', + 'work_edit_success' => 'Work information have been updated with success', + 'work_edit_title' => 'Update :name’s job information', + 'work_edit_job' => 'Job title (optional)', + 'work_edit_company' => 'Εταιρεία (προαιρετικό)', + 'work_information' => 'Work information', + + // food preferences + 'food_preferences_add_success' => 'Food preferences have been saved', + '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_edit_cta' => 'Save food preferences', + 'food_preferences_title' => 'Food preferences', + 'food_preferences_cta' => 'Add food preferences', + + // reminders + 'reminders_blank_title' => 'Is there something you want to be reminded of about :name?', + 'reminders_blank_add_activity' => 'Προσθήκη υπενθύμισης', + 'reminders_add_title' => 'What would you like to be reminded of about :name?', + 'reminders_add_description' => 'Please remind me to...', + '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_recurrent' => 'Remind me about this every', + 'reminders_add_starting_from' => 'starting from the date specified above', + 'reminders_add_cta' => 'Προσθήκη υπενθύμισης', + 'reminders_edit_update_cta' => 'Ενημερώση υπενθύμισης', + 'reminders_add_error_custom_text' => 'You need to indicate a text for this reminder', + 'reminders_create_success' => 'The reminder has been added successfully', + 'reminders_delete_success' => 'The reminder has been deleted successfully', + 'reminders_update_success' => 'The reminder has been updated successfully', + 'reminders_add_optional_comment' => 'Προαιρετικό σχόλιο', + + 'reminder_frequency_day' => 'every day|every :number days', + 'reminder_frequency_week' => 'every week|every :number weeks', + 'reminder_frequency_month' => 'every month|every :number months', + 'reminder_frequency_year' => 'every year|every :number year', + 'reminder_frequency_one_time' => 'on :date', + 'reminders_delete_confirmation' => 'Are you sure you want to delete this reminder?', + 'reminders_delete_cta' => 'Διαγραφή', + 'reminders_next_expected_date' => 'on', + 'reminders_cta' => 'Προσθήκη υπενθύμισης', + '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_one_time' => 'Μία φορά', + 'reminders_type_week' => 'εβδομάδα', + 'reminders_type_month' => 'μήνας', + 'reminders_type_year' => 'έτος', + 'reminders_birthday' => 'Birthday of :name', + '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.', + + // relationships + 'relationship_form_add' => 'Προσθήκη σχέσης', + 'relationship_form_edit' => 'Επεξεργασία υπάρχουσας σχέσης', + 'relationship_form_is_with' => 'Αυτή η επαφή είναι...', + 'relationship_form_is_with_name' => 'Η επαφή :name είναι...', + 'relationship_form_add_choice' => 'Who is the relationship with?', + 'relationship_form_create_contact' => 'Προσθήκη νέου ατόμου', + 'relationship_form_associate_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_also_create_contact' => 'Create a Contact entry for this person.', + '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_delete_confirmation' => 'Are you sure you want to delete this relationship? Deletion is permanent.', + 'relationship_unlink_confirmation' => 'Are you sure you want to delete this relationship? This person will not be deleted – only the relationship between the two.', + 'relationship_form_add_success' => 'The relationship has been successfully set.', + 'relationship_form_deletion_success' => 'The relationship has been deleted.', + + // tasks + 'tasks_title' => 'Tasks', + 'tasks_blank_title' => 'You don’t have any tasks yet.', + 'tasks_form_title' => 'Title', + 'tasks_form_description' => 'Description (optional)', + 'tasks_add_task' => 'Add a task', + 'tasks_delete_success' => 'The task has been deleted successfully', + 'tasks_complete_success' => 'The task has changed status successfully', + + // activities + 'activity_title' => 'Activities', + 'activity_type_category_simple_activities' => 'Simple activities', + 'activity_type_category_sport' => 'Sport', + 'activity_type_category_food' => 'Φαγητό', + 'activity_type_category_cultural_activities' => 'Cultural activities', + 'activity_type_just_hung_out' => 'just hung out', + 'activity_type_watched_movie_at_home' => 'watched a movie at home', + 'activity_type_talked_at_home' => 'just talked at home', + 'activity_type_did_sport_activities_together' => 'played a sport together', + 'activity_type_ate_at_his_place' => 'ate at their place', + 'activity_type_went_bar' => 'went to a bar', + 'activity_type_ate_at_home' => 'ate at home', + 'activity_type_picnicked' => 'picnicked', + 'activity_type_ate_restaurant' => 'ate at a restaurant', + 'activity_type_went_theater' => 'went to the theater', + 'activity_type_went_concert' => 'went to a concert', + 'activity_type_went_play' => 'went to a play', + 'activity_type_went_museum' => 'went to the museum', + 'activities_add_activity' => 'Προσθήκη δραστηριότητας', + 'activities_add_more_details' => 'Add more details', + 'activities_add_emotions' => 'Add emotions', + 'activities_add_category' => 'Indicate a category', + 'activities_add_participants_cta' => 'Προσθήκη συμμετεχόντων', + 'activities_item_information' => ':Activity. Happened on :date', + 'activities_add_title' => 'What did you do with {name}?', + 'activities_summary' => 'Describe what you did', + '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_date_occured' => 'The activity happened on...', + 'activities_add_participants' => 'Who, apart from {name}, participated in this activity? (optional)', + 'activities_add_emotions_title' => 'Do you want to log how you felt during this activity? (optional)', + 'activities_blank_title' => 'Keep track of what you’ve done with {name} in the past, and what you’ve talked about', + 'activities_blank_add_activity' => 'Προσθήκη δραστηριότητας', + 'activities_add_success' => 'Η δραστηριότητα προστέθηκε με επιτυχία', + 'activities_add_error' => 'Σφάλμα κατά την προσθήκη δραστηριότητας', + 'activities_update_success' => 'Η δραστηριότητα ενημερώθηκε με επιτυχία', + 'activities_delete_success' => 'Η δραστηριότητα διαγράφηκε με επιτυχία', + 'activities_who_was_involved' => 'Ποιός συμμετείχε;', + 'activities_activity' => 'Activity Category', + 'activities_view_activities_report' => 'View activities report', + 'activities_profile_title' => 'Activities report between :name and you', + '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_year_summary_activity_types' => 'Here is a breakdown of the type of activities you’ve done together in :year', + 'activities_profile_year_summary' => 'Here is what you two have done in :year', + 'activities_profile_number_occurences' => ':value activity|:value activities', + 'activities_list_participants' => 'Participants:', + 'activities_list_emotions' => 'Emotions felt:', + 'activities_list_date' => 'Συνέβη στις', + 'activities_list_category' => 'Κατηγορία:', + + // notes + 'notes_create_success' => 'Η σημείωση έχει δημιουργηθεί με επιτυχία', + 'notes_update_success' => 'Η σημείωση αποθηκεύτηκε με επιτυχία', + 'notes_delete_success' => 'Η σημείωση διαγράφηκε με επιτυχία', + 'notes_add_cta' => 'Προσθήκη σημείωσης', + 'notes_favorite' => 'Προσθήκη/διαγραφή από τα αγαπημένα', + 'notes_delete_title' => 'Delete a note', + 'notes_delete_confirmation' => 'Are you sure you want to delete this note? Deletion is permanent', + + // gifts + 'gifts_title' => 'Gifts', + 'gifts_add_success' => 'The gift has been added successfully', + 'gifts_delete_success' => 'The gift has been deleted successfully', + 'gifts_delete_confirmation' => 'Are you sure you want to delete this gift?', + 'gifts_add_gift' => 'Add a gift', + 'gifts_link' => 'Link', + 'gifts_for' => 'For: {name}', + 'gifts_delete_cta' => 'Delete', + 'gifts_add_title' => 'Gift management for :name', + 'gifts_add_gift_idea' => 'Gift idea', + 'gifts_add_gift_already_offered' => 'Gift offered', + 'gifts_add_gift_received' => 'Gift received', + 'gifts_add_gift_title' => 'What is this gift?', + 'gifts_add_gift_name' => 'Gift name', + 'gifts_add_link' => 'Link to the web page (optional)', + 'gifts_add_value' => 'Value (optional)', + 'gifts_add_comment' => 'Σχόλιο (προαιρετικό)', + 'gifts_add_recipient' => 'Παραλήπτης (προαιρετικό)', + 'gifts_add_recipient_field' => 'Παραλήπτης', + 'gifts_add_photo' => 'Photo (optional)', + 'gifts_add_photo_title' => 'Add a photo for this gift', + 'gifts_add_someone' => 'This gift is for someone in {name}’s family in particular', + 'gifts_delete_title' => 'Delete a gift', + 'gifts_ideas' => 'Gift ideas', + 'gifts_offered' => 'Gifts offered', + 'gifts_offered_as_an_idea' => 'Σήμανση ως μία ιδέα', + 'gifts_received' => 'Gifts received', + 'gifts_view_comment' => 'Προβολή σχολίου', + 'gifts_mark_offered' => 'Mark as offered', + 'gifts_update_success' => 'The gift has been updated successfully', + + // debts + 'debt_delete_confirmation' => 'Are you sure you want to delete this debt?', + 'debt_delete_success' => 'The debt has been deleted successfully', + 'debt_add_success' => 'The debt has been added successfully', + 'debt_title' => 'Χρέη', + 'debt_add_cta' => 'Προσθέστε χρέος', + 'debt_you_owe' => 'Χρωστάτε :amount', + 'debt_they_owe' => 'Ε επαφή :name σας χρωστάει :amount', + 'debt_add_title' => 'Διαχείριση χρέους', + 'debt_add_you_owe' => 'Χρωστάς στην επαφή :name', + 'debt_add_they_owe' => 'Η επαφή :name σου χρωστάει', + 'debt_add_amount' => 'το σύνολο του', + 'debt_add_reason' => 'για τον παρακάτω λόγο (προαιρετικό)', + 'debt_add_add_cta' => 'Προσθέστε χρέος', + 'debt_edit_update_cta' => 'Ενημέρωση χρέους', + 'debt_edit_success' => 'Το χρέος ενημερώθηκε με επιτυχία', + 'debts_blank_title' => 'Διαχείριση χρέους που χρωστάτε ή σας χρωστάει η επαφή :name', + + // tags + 'tag_edit' => 'Επεξεργασία ετικέτας', + 'tag_add' => 'Προσθήκη ετικέτας', + 'tag_add_search' => 'Προσθήκη ή αναζήτηση ετικετών', + 'tag_no_tags' => 'Δεν υπάρχουν ετικέτες ακόμη', + + // Introductions + 'introductions_sidebar_title' => 'Πώς γνωριστήκατε;', + 'introductions_blank_cta' => 'Indicate how you met :name', + 'introductions_title_edit' => 'How did you meet :name?', + 'introductions_additional_info' => 'Explain how and where you met', + 'introductions_edit_met_through' => 'Has someone introduced you to this person?', + 'introductions_no_met_through' => 'Κανένας', + 'introductions_first_met_date' => 'Date you met', + 'introductions_no_first_met_date' => 'I don’t know the date we met', + 'introductions_first_met_date_known' => 'This is the date we met', + 'introductions_add_reminder' => 'Add a reminder to celebrate this encounter on the anniversary this event happened', + 'introductions_update_success' => 'You’ve successfully updated the information about how you met this person', + 'introductions_met_through' => 'Met through :name', + 'introductions_met_date' => 'Met on :date', + 'introductions_reminder_title' => 'Anniversary of the day you first met', + + // Deceased + 'deceased_reminder_title' => 'Anniversary of the death of :name', + 'deceased_mark_person_deceased' => 'Mark this person as deceased', + 'deceased_know_date' => 'I know the date this person died', + 'deceased_add_reminder' => 'Add a reminder for this date', + 'deceased_label' => 'Deceased', + 'deceased_date_label' => 'Deceased date', + 'deceased_label_with_date' => 'Deceased on :date', + 'deceased_age' => 'Age at death', + + // Contact information + 'contact_info_title' => 'Contact information', + 'contact_info_form_content' => 'Content', + 'contact_info_form_contact_type' => 'Contact type', + 'contact_info_form_personalize' => 'Personalize', + 'contact_info_address' => 'Lives in', + + // Addresses + 'contact_address_title' => 'Addresses', + 'contact_address_form_name' => 'Label (optional)', + 'contact_address_form_street' => 'Street (optional)', + 'contact_address_form_city' => 'City (optional)', + 'contact_address_form_province' => 'Province (optional)', + 'contact_address_form_postal_code' => 'Postal code (optional)', + 'contact_address_form_country' => 'Country (optional)', + 'contact_address_form_latitude' => 'Latitude (numbers only) (optional)', + 'contact_address_form_longitude' => 'Longitude (numbers only) (optional)', + + // Pets + 'pets_kind' => 'Kind of pet', + 'pets_name' => 'Name (optional)', + 'pets_create_success' => 'The pet has been successfully added', + 'pets_update_success' => 'The pet has been updated', + 'pets_delete_success' => 'The pet has been deleted', + 'pets_title' => 'Κατοικίδια', + 'pets_reptile' => 'Ερπετό', + 'pets_bird' => 'Πτηνό', + 'pets_cat' => 'Γάτα', + 'pets_dog' => 'Σκύλος', + 'pets_fish' => 'Ψάρι', + 'pets_hamster' => 'Χάμστερ', + 'pets_horse' => 'Άλογο', + 'pets_rabbit' => 'Κουνέλι', + 'pets_rat' => 'Αρουραίος', + 'pets_small_animal' => 'Μικρό ζώο', + 'pets_other' => 'Άλλο', + + // life events + 'life_event_list_tab_life_events' => 'Εκδηλώσεις ζωής', + 'life_event_list_tab_other' => 'Notes, reminders, ...', + 'life_event_list_title' => 'Εκδηλώσεις ζωής', + 'life_event_blank' => 'Log what happens to the life of {name} for your future reference.', + 'life_event_list_cta' => 'Add life event', + 'life_event_create_category' => 'Όλες οι κατηγορίες', + 'life_event_create_life_event' => 'Add life event', + 'life_event_create_default_title' => 'Title (optional)', + 'life_event_create_default_story' => 'Story (optional)', + '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_add_yearly_reminder' => 'Add a yearly reminder for this event', + 'life_event_create_success' => 'The life event has been added', + 'life_event_delete_title' => 'Delete a life event', + '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_date_it_happened' => 'Date it happened', + 'life_event_category_work_education' => 'Work & education', + 'life_event_category_family_relationships' => 'Family & relationships', + 'life_event_category_home_living' => 'Home & living', + 'life_event_category_health_wellness' => 'Health & wellness', + 'life_event_category_travel_experiences' => 'Travel & experiences', + 'life_event_sentence_new_job' => 'Started a new job', + 'life_event_sentence_retirement' => 'Συνταξιούχος', + 'life_event_sentence_new_school' => 'Started school', + 'life_event_sentence_study_abroad' => 'Studied abroad', + 'life_event_sentence_volunteer_work' => 'Started volunteering', + 'life_event_sentence_published_book_or_paper' => 'Published a paper', + 'life_event_sentence_military_service' => 'Started military service', + 'life_event_sentence_new_relationship' => 'Started a relationship', + 'life_event_sentence_engagement' => 'Got engaged', + 'life_event_sentence_marriage' => 'Got married', + 'life_event_sentence_anniversary' => 'Anniversary', + 'life_event_sentence_expecting_a_baby' => 'Expects a baby', + 'life_event_sentence_new_child' => 'Had a child', + 'life_event_sentence_new_family_member' => 'Added a family member', + 'life_event_sentence_new_pet' => 'Got a pet', + 'life_event_sentence_end_of_relationship' => 'Ended a relationship', + 'life_event_sentence_loss_of_a_loved_one' => 'Lost a loved one', + 'life_event_sentence_moved' => 'Moved', + 'life_event_sentence_bought_a_home' => 'Bought a home', + 'life_event_sentence_home_improvement' => 'Made a home improvement', + 'life_event_sentence_holidays' => 'Went on holidays', + 'life_event_sentence_new_vehicle' => 'Got a new vehicle', + 'life_event_sentence_new_roommate' => 'Got a roommate', + 'life_event_sentence_overcame_an_illness' => 'Overcame an illness', + 'life_event_sentence_quit_a_habit' => 'Quit a habit', + 'life_event_sentence_new_eating_habits' => 'Started new eating habits', + 'life_event_sentence_weight_loss' => 'Lost weight', + 'life_event_sentence_wear_glass_or_contact' => 'Started to wear glass or contact lenses', + 'life_event_sentence_broken_bone' => 'Broke a bone', + 'life_event_sentence_removed_braces' => 'Removed braces', + 'life_event_sentence_surgery' => 'Had surgery', + 'life_event_sentence_dentist' => 'Went to the dentist', + 'life_event_sentence_new_sport' => 'Started a sport', + 'life_event_sentence_new_hobby' => 'Started a hobby', + 'life_event_sentence_new_instrument' => 'Learned a new instrument', + 'life_event_sentence_new_language' => 'Learned a new language', + 'life_event_sentence_tattoo_or_piercing' => 'Got a tattoo or piercing', + 'life_event_sentence_new_license' => 'Got a license', + 'life_event_sentence_travel' => 'Traveled', + 'life_event_sentence_achievement_or_award' => 'Got an achievement or award', + 'life_event_sentence_changed_beliefs' => 'Changed beliefs', + 'life_event_sentence_first_word' => 'Spoke for the first time', + 'life_event_sentence_first_kiss' => 'Kissed for the first time', + + // documents + 'document_list_title' => 'Documents', + 'document_list_cta' => 'Upload document', + 'document_list_blank_desc' => 'Here you can store documents related to this person.', + 'document_upload_zone_cta' => 'Upload a file', + 'document_upload_zone_progress' => 'Uploading the document...', + 'document_upload_zone_error' => 'There was an error uploading the document. Please try again below.', + + // Photos + 'photo_title' => 'Photos', + 'photo_list_title' => 'Related photos', + 'photo_list_cta' => 'Upload photo', + 'photo_list_blank_desc' => 'You can store images about this contact. Upload one now!', + 'photo_upload_zone_cta' => 'Upload a photo', + 'photo_current_profile_pic' => 'Current profile picture', + 'photo_make_profile_pic' => 'Make profile picture', + 'photo_delete' => 'Delete photo', + 'photo_next' => 'Next photo', + 'photo_previous' => 'Previous photo', + + // Avatars + 'avatar_change_title' => 'Change your avatar', + 'avatar_question' => 'Which avatar would you like to use?', + 'avatar_default_avatar' => 'The default avatar', + 'avatar_adorable_avatar' => 'The Adorable 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_current' => 'Keep the current avatar', + 'avatar_photo' => 'From a photo that you upload', + 'avatar_crop_new_avatar_photo' => 'Crop new avatar photo', + + // emotions + 'emotion_this_made_me_feel' => 'This made you feel…', + + // logs + 'auditlogs_link' => 'History', + 'auditlogs_title' => 'Everything that happened to :name', + 'auditlogs_breadcrumb' => 'History', + 'auditlogs_author' => 'By :name on :date', + + // contact field label + 'contact_field_label_home' => 'Home', + 'contact_field_label_work' => 'Work', + 'contact_field_label_cell' => 'Mobile', + 'contact_field_label_fax' => 'Fax', + 'contact_field_label_pager' => 'Pager', + 'contact_field_label_main' => 'Main', + 'contact_field_label_other' => 'Other', + 'contact_field_label_personal' => 'Personal', +]; diff --git a/resources/lang/el/reminder.php b/resources/lang/el/reminder.php new file mode 100644 index 00000000000..a4eaa6e72a4 --- /dev/null +++ b/resources/lang/el/reminder.php @@ -0,0 +1,17 @@ + 'Wish happy birthday to', + 'type_phone_call' => 'Call', + 'type_lunch' => 'Lunch with', + 'type_hangout' => 'Hangout with', + 'type_email' => 'Email', + 'type_birthday_kid' => 'Wish happy birthday to the kid of', + +]; diff --git a/resources/lang/el/settings.php b/resources/lang/el/settings.php new file mode 100644 index 00000000000..f6a8cd3b695 --- /dev/null +++ b/resources/lang/el/settings.php @@ -0,0 +1,518 @@ + 'Account settings', + 'sidebar_personalization' => 'Personalization', + 'sidebar_settings_storage' => 'Storage', + 'sidebar_settings_export' => 'Export data', + 'sidebar_settings_users' => 'Users', + 'sidebar_settings_subscriptions' => 'Subscription', + 'sidebar_settings_import' => 'Import data', + 'sidebar_settings_tags' => 'Tags management', + 'sidebar_settings_api' => 'API', + 'sidebar_settings_dav' => 'DAV Resources', + 'sidebar_settings_security' => 'Security', + 'sidebar_settings_auditlogs' => 'Audit logs', + + 'title_general' => 'General Information', + 'title_i18n' => 'International settings', + 'title_layout' => 'Layout', + + 'me_title' => 'My contact', + 'me_help' => 'This is the contact that represents you in Monica', + 'me_select' => 'Select a contact', + 'me_no_contact' => 'No contact selected yet.', + 'me_select_click' => 'Click here to select a contact.', + 'me_remove_contact' => 'Remove the association', + 'me_choose' => 'Choose yourself', + 'me_choose_placeholder' => 'Choose yourself', + + 'export_title' => 'Export your account data', + 'export_be_patient' => 'Click the button to start the export. It might take several minutes to process the export – please be patient and do not spam the button.', + 'export_title_sql' => 'Export 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 valuable if you do have your own server.', + 'export_sql_cta' => 'Export to SQL', + 'export_sql_link_instructions' => 'Note: read the instructions to learn more about importing this file to your instance.', + + 'firstname' => 'First name', + 'lastname' => 'Last name', + 'name_order' => 'Name order', + 'name_order_firstname_lastname' => ' - John Doe', + 'name_order_lastname_firstname' => ' - Doe John', + 'name_order_firstname_lastname_nickname' => ' () - John Doe (Rambo)', + 'name_order_firstname_nickname_lastname' => ' () - John (Rambo) Doe', + 'name_order_lastname_firstname_nickname' => ' () - Doe John (Rambo)', + 'name_order_lastname_nickname_firstname' => ' () - Doe (Rambo) John', + 'name_order_nickname_firstname_lastname' => ' ( ) - Rambo (John Doe)', + 'name_order_nickname_firstname_lastname' => ' ( ) - Rambo (Doe John)', + 'name_order_nickname' => ' - Rambo', + 'currency' => 'Currency', + 'name' => 'Your name: :name', + 'email' => 'Email address', + 'email_placeholder' => 'Enter email', + 'email_help' => 'This is the email used to login, and this is where you’ll receive your reminders.', + 'timezone' => 'Timezone', + 'temperature_scale' => 'Temperature scale', + 'temperature_scale_fahrenheit' => 'Fahrenheit', + 'temperature_scale_celsius' => 'Celsius', + 'layout' => 'Layout', + 'layout_small' => 'Maximum 1200 pixels wide', + 'layout_big' => 'Full width of the browser', + 'save' => 'Update preferences', + 'delete_title' => 'Delete your account', + 'delete_desc' => 'Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.', + 'delete_other_desc' => 'Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days – then it’s completely deleted. It’s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.', + 'reset_desc' => 'Do you wish to reset your account? This will remove all your contacts, and the data associated with them. Your account will not be deleted.', + 'reset_title' => 'Reset your account', + 'reset_cta' => 'Reset account', + 'reset_notice' => 'Are you sure to reset your account? There is no turning back.', + 'reset_success' => 'Your account has been reset successfully', + 'delete_notice' => 'Are you sure to delete your account? There is no turning back.', + 'delete_cta' => 'Delete account', + 'settings_success' => 'Preferences updated!', + 'locale' => 'Language used in the app', + 'locale_help' => 'Do you want to help translating Monica or add a new language? Please follow this link for more information.', + 'locale_ar' => 'Arabic', + 'locale_cs' => 'Czech', + 'locale_de' => 'German', + 'locale_en' => 'English', + 'locale_es' => 'Spanish', + 'locale_fr' => 'French', + 'locale_he' => 'Hebrew', + '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_zh' => 'Chinese Simplified', + 'locale_zh-TW' => 'Chinese Traditional', + 'locale_tr' => 'Turkish', + 'locale_en-GB' => 'English (United Kingdom)', + + 'security_title' => 'Security', + 'security_help' => 'Change security matters for your account.', + 'password_change' => 'Password change', + 'password_current' => 'Current password', + 'password_current_placeholder' => 'Enter your current password', + 'password_new1' => 'New password', + 'password_new1_placeholder' => 'Enter a new password', + 'password_new2' => 'Confirmation', + 'password_new2_placeholder' => 'Retype the new password', + 'password_btn' => 'Change password', + '2fa_title' => 'Two Factor Authentication', + '2fa_otp_title' => 'Two Factor Authentication mobile application', + '2fa_enable_title' => 'Enable Two Factor Authentication', + '2fa_enable_description' => 'Enable Two Factor Authentication to increase security with your account.', + '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:', + '2fa_enable_success' => 'Two Factor Authentication activated', + '2fa_enable_error' => 'Error when trying to activate Two Factor Authentication', + '2fa_enable_error_already_set' => 'Two Factor Authentication is already activated', + '2fa_disable_title' => 'Disable Two Factor Authentication', + '2fa_disable_description' => 'Disable Two Factor Authentication for your account. Be careful, your account will not be secured anymore !', + '2fa_disable_success' => 'Two Factor Authentication disabled', + '2fa_disable_error' => 'Error when trying to disable Two Factor Authentication', + + 'webauthn_title' => 'Security key — WebAuthn protocol', + 'webauthn_enable_description' => 'Add a new security key', + 'webauthn_key_name_help' => 'Give your key a name.', + 'webauthn_key_name' => 'Key name:', + 'webauthn_success' => 'Your key is detected and validated.', + 'webauthn_last_use' => 'Last use: {timestamp}', + 'webauthn_delete_confirmation' => 'Are you sure you want to delete this key?', + 'webauthn_delete_success' => 'Key deleted', + 'webauthn_insertKey' => 'Insert your security key.', + 'webauthn_buttonAdvise' => 'If your security key has a button, press it.', + 'webauthn_noButtonAdvise' => 'If it does not, remove it and insert it again.', + 'webauthn_not_supported' => 'Your browser doesn’t currently support WebAuthn.', + 'webauthn_not_secured' => 'WebAuthn only supports secure connections. Please load this page with https scheme.', + '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.', + + 'recovery_title' => 'Recovery codes', + 'recovery_show' => 'Get recovery codes', + 'recovery_copy_help' => 'Copy codes in your clipboard', + 'recovery_help_intro' => 'These are your recovery codes:', + 'recovery_help_information' => 'You can use each recovery code once.', + 'recovery_clipboard' => 'Codes copied in the clipboard', + 'recovery_generate' => 'Generate new codes...', + 'recovery_generate_help' => 'Be aware that generating new codes will invalidate previously generated codes', + 'recovery_already_used_help' => 'This code has already been used', + + 'users_list_title' => 'Users with access to your account', + 'users_list_add_user' => 'Invite a new user', + 'users_list_you' => 'That’s you', + 'users_list_invitations_title' => 'Pending invitations', + '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_blank_title' => 'You are the only one who has access to this account.', + 'users_blank_add_title' => 'Would you like to invite someone else?', + '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_cta' => 'Invite someone', + 'users_add_title' => 'Invite a new user by email to your account', + 'users_add_description' => 'This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.', + 'users_add_email_field' => 'Enter the email of the person you want to invite', + 'users_add_confirmation' => 'I confirm that I want to invite this user to my account. This person will access ALL my data and see exactly what I see.', + 'users_add_cta' => 'Invite user by email', + 'users_accept_title' => 'Accept invitation and create a new account', + 'users_error_please_confirm' => 'Please confirm that you want to invite this user before proceeding with the invitation', + 'users_error_email_already_taken' => 'This email is already taken. Please choose another one', + 'users_error_already_invited' => 'You already have invited this user. Please choose another email address.', + 'users_error_email_not_similar' => 'This is not the email of the person who’ve invited you.', + 'users_invitation_deleted_confirmation_message' => 'The invitation has been successfully deleted', + 'users_invitations_delete_confirmation' => 'Are you sure you want to delete this invitation?', + 'users_list_delete_confirmation' => 'Are you sure to delete this user from your account?', + 'users_invitation_need_subscription' => 'Adding more users requires a subscription.', + + 'subscriptions_account_current_plan' => 'Your current plan', + 'subscriptions_account_current_paid_plan' => 'You are on the :name plan. Thanks so much for being a subscriber.', + 'subscriptions_account_next_billing' => 'Your subscription will auto-renew on :date.', + 'subscriptions_account_cancel' => 'You can cancel subscription anytime.', + 'subscriptions_account_free_plan' => 'You are on the free plan.', + '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_free_plan_benefits_users' => 'Unlimited number of users', + 'subscriptions_account_free_plan_benefits_reminders' => 'Reminders by email', + 'subscriptions_account_free_plan_benefits_import_data_vcard' => 'Import your contacts with vCard', + 'subscriptions_account_free_plan_benefits_support' => 'Support the project on the long run, so we can introduce more great features.', + 'subscriptions_account_upgrade' => 'Upgrade your account', + 'subscriptions_account_upgrade_title' => 'Upgrade Monica today and have more meaningful relationships.', + 'subscriptions_account_upgrade_choice' => 'Pick a plan below and join over :customers persons who upgraded their Monica.', + 'subscriptions_account_invoices' => 'Invoices', + 'subscriptions_account_invoices_download' => 'Download', + 'subscriptions_account_invoices_subscription' => 'Subscription from :startDate to :endDate', + 'subscriptions_account_payment' => 'Which payment option fits you best?', + 'subscriptions_account_confirm_payment' => 'Your payment is currently incomplete, please confirm your payment.', + 'subscriptions_downgrade_title' => 'Downgrade your account to the free plan', + '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_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_rule_invitations' => 'You must not have pending invitations', + 'subscriptions_downgrade_rule_invitations_constraint' => 'You currently have 1 pending invitation sent to people.|You currently have :count pending invitations sent to people.', + '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_cta' => 'Downgrade', + 'subscriptions_downgrade_success' => 'You are back to the Free plan!', + 'subscriptions_downgrade_thanks' => 'Thanks so much for having tried 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_back' => 'Back to settings', + 'subscriptions_upgrade_title' => 'Upgrade your account', + 'subscriptions_upgrade_choose' => 'You picked the :plan plan.', + 'subscriptions_upgrade_infos' => 'We couldn’t be happier. Enter your payment info below.', + 'subscriptions_upgrade_name' => 'Name on card', + 'subscriptions_upgrade_zip' => 'ZIP or postal code', + 'subscriptions_upgrade_credit' => 'Credit or debit card', + 'subscriptions_upgrade_submit' => 'Pay {amount}', + '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 anytime, no questions asked.', + 'subscriptions_upgrade_charge_handled' => 'The payment is handled by Stripe. No card information touches our server.', + '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_payment_confirm_title' => 'Confirm your :amount payment', + '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_succeeded_title' => 'Payment Successful', + 'subscriptions_payment_succeeded' => 'This payment was already successfully confirmed.', + 'subscriptions_payment_cancelled_title' => 'Payment Cancelled', + 'subscriptions_payment_cancelled' => 'This payment was cancelled.', + 'subscriptions_payment_error_name' => 'Please provide your name.', + 'subscriptions_payment_success' => 'The payment was successful.', + + 'subscriptions_pdf_title' => 'Your :name monthly subscription', + 'subscriptions_plan_choose' => 'Choose this plan', + 'subscriptions_plan_year_title' => 'Pay annually', + 'subscriptions_plan_year_cost' => '$45/year', + 'subscriptions_plan_year_cost_save' => 'you’ll save 25%', + 'subscriptions_plan_year_bonus' => 'Peace of mind for a whole year', + 'subscriptions_plan_month_title' => 'Pay monthly', + 'subscriptions_plan_month_cost' => '$5/month', + 'subscriptions_plan_month_bonus' => 'Cancel any time', + '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_help_title' => 'Additional details you may be curious about', + 'subscriptions_help_opensource_title' => 'What is an open source project?', + 'subscriptions_help_opensource_desc' => 'Monica is an open source project. This means it is built by an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn’t do it without you – literally.', + 'subscriptions_help_limits_title' => 'Is there any limit to the number of contacts we can have on the free plan?', + 'subscriptions_help_limits_plan' => 'Yes. Free plans let you manage :number contacts.', + 'subscriptions_help_discounts_title' => 'Do you have discounts for non-profits and education?', + '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_change_title' => 'What if I change my mind?', + 'subscriptions_help_change_desc' => 'You can cancel anytime, no questions asked, and all by yourself – no need to contact support or whatever. However, you will not be refunded for the current period.', + + 'stripe_error_card' => 'Your card was declined. Decline message is: :message', + 'stripe_error_api_connection' => 'Network communication with Stripe failed. Try again later.', + 'stripe_error_rate_limit' => 'Too many requests with Stripe right now. Try again later.', + 'stripe_error_invalid_request' => 'Invalid parameters. Try again later.', + 'stripe_error_authentication' => 'Wrong authentication with Stripe', + + 'import_title' => 'Import contacts in your account', + 'import_cta' => 'Upload contacts', + 'import_stat' => 'You’ve imported :number files so far.', + '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_view_report' => 'View report', + 'import_in_progress' => 'The import is in progress. Reload the page in one minute.', + 'import_upload_title' => 'Import your contacts from a vCard file', + 'import_upload_rules_desc' => 'We do however have some rules:', + 'import_upload_rule_format' => 'We support .vcard and .vcf files.', + 'import_upload_rule_vcard' => 'We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) and Google Contacts.', + 'import_upload_rule_instructions' => 'Export instructions for Contacts.app (macOS) and Google Contacts.', + 'import_upload_rule_multiple' => 'For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.', + 'import_upload_rule_limit' => 'Files are limited to 10MB.', + 'import_upload_rule_time' => 'It might take up to 1 minute to upload the contacts and process them. Be patient.', + 'import_upload_rule_cant_revert' => 'Make sure data is accurate before uploading, as you can’t undo the upload.', + 'import_upload_form_file' => 'Your .vcf or .vCard file:', + 'import_upload_behaviour' => 'Import behaviour:', + 'import_upload_behaviour_add' => 'Add new contacts, skip existing', + 'import_upload_behaviour_replace' => 'Replace existing contacts', + 'import_upload_behaviour_help' => 'Note: Replacing will replace all data found in the vCard, but will keep existing contact fields.', + 'import_report_title' => 'Importing report', + 'import_report_date' => 'Date of the import', + 'import_report_type' => 'Type of 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_vcard_parse_error' => 'Error when parsing the vCard entry', + 'import_vcard_contact_exist' => 'Contact already exists', + 'import_vcard_contact_no_firstname' => 'No firstname (mandatory)', + 'import_vcard_file_not_found' => 'File not found', + 'import_vcard_unknown_entry' => 'Unknown contact name', + 'import_vcard_file_no_entries' => 'File contains no entries', + 'import_blank_title' => 'You haven’t imported any contacts yet.', + 'import_blank_question' => 'Would you like to import contacts now?', + 'import_blank_description' => 'We can import vCard files that you can get from Google Contacts or your Contact manager.', + 'import_blank_cta' => 'Import vCard', + 'import_need_subscription' => 'Importing data requires a subscription.', + + 'tags_list_title' => 'Tags', + '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_contact_number' => '1 contact|:count contacts', + 'tags_list_delete_success' => 'The tag has been successfully deleted', + 'tags_list_delete_confirmation' => 'Are you sure you want to delete the tag? No contacts will be deleted, only the tag.', + 'tags_blank_title' => 'Tags are a great way of categorizing your contacts.', + '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, go back here to manage all the tags in your account.', + + 'api_title' => 'API access', + 'api_description' => 'The API can be used to manipulate Monica’s data from an external application, like a mobile application for instance.', + '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_endpoint' => 'The API endpoint for this Monica instance is:', + + 'api_personal_access_tokens' => 'Personal access tokens', + 'api_pao_description' => 'Make sure you give this token to a source you trust – as they allow you to access all your data.', + 'api_token_title' => 'Personal Access Tokens', + 'api_token_create_new' => 'Create New Token', + 'api_token_not_created' => 'You have not created any personal access tokens.', + 'api_token_name' => 'Token name', + 'api_token_expire' => 'Expires at {date}', + 'api_token_delete' => 'Delete', + 'api_token_create' => 'Create Token', + 'api_token_scopes' => 'Scopes', + '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_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_title' => 'OAuth Clients', + 'api_oauth_create_new' => 'Create New Client', + 'api_oauth_edit' => 'Edit Client', + 'api_oauth_not_created' => 'You have not created any OAuth clients.', + 'api_oauth_clientid' => 'Client ID', + 'api_oauth_name' => 'Name', + 'api_oauth_name_help' => 'Something your users will recognize and trust.', + 'api_oauth_secret' => 'Secret', + 'api_oauth_create' => 'Create Client', + 'api_oauth_redirecturl' => 'Redirect URL', + 'api_oauth_redirecturl_help' => 'Your application’s authorization callback URL.', + + '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_title' => 'Authorized Applications', + 'api_authorized_clients_none' => 'There is no authorized client yet.', + 'api_authorized_clients_name' => 'Name', + 'api_authorized_clients_scopes' => 'Scopes', + + 'personalization_tab_title' => 'Personalize your account', + + 'personalization_title' => 'Here you can find different settings to configure your account. These features are more for “power users” who want maximum control over Monica.', + 'personalization_contact_field_type_title' => 'Contact field types', + 'personalization_contact_field_type_add' => 'Add new field type', + 'personalization_contact_field_type_description' => 'Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting your contacts right here.', + 'personalization_contact_field_type_table_name' => 'Name', + 'personalization_contact_field_type_table_protocol' => 'Protocol', + 'personalization_contact_field_type_table_actions' => 'Actions', + 'personalization_contact_field_type_modal_title' => 'Add a new contact field type', + 'personalization_contact_field_type_modal_edit_title' => 'Edit an existing contact field type', + 'personalization_contact_field_type_modal_delete_title' => 'Delete an existing contact field type', + '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 your contacts.', + '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_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_delete_success' => 'The contact field type has been deleted with success.', + 'personalization_contact_field_type_add_success' => 'The contact field type has been successfully added.', + 'personalization_contact_field_type_edit_success' => 'The contact field type has been successfully updated.', + + 'personalization_genders_title' => 'Gender types', + 'personalization_genders_add' => 'Add new gender type', + '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_modal_add' => 'Add gender type', + 'personalization_genders_modal_edit' => 'Update gender type', + '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_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 {name}?', + 'personalization_genders_modal_delete_question' => 'You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?', + 'personalization_genders_modal_error' => 'Please choose a valid gender from the list.', + 'personalization_genders_list_contact_number' => '{count} contact|{count} contacts', + 'personalization_genders_table_name' => 'Name', + 'personalization_genders_table_sex' => 'Sex', + 'personalization_genders_table_default' => 'Default', + 'personalization_genders_default' => 'Default gender', + 'personalization_genders_make_default' => 'Change default gender', + 'personalization_genders_select_default' => 'Select default gender', + 'personalization_genders_m' => 'Male', + 'personalization_genders_f' => 'Female', + 'personalization_genders_o' => 'Other', + 'personalization_genders_u' => 'Unknown', + 'personalization_genders_n' => 'None or not applicable', + + 'personalization_reminder_rule_save' => 'The change has been saved', + 'personalization_reminder_rule_title' => 'Reminder rules', + 'personalization_reminder_rule_line' => '{count} day before|{count} days before', + 'personalization_reminder_rule_desc' => 'For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those notifications only apply to monthly and yearly reminders.', + + 'personalization_module_save' => 'The change has been saved', + 'personalization_module_title' => 'Features', + 'personalization_module_desc' => 'Some people don’t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.', + + '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.', + + 'reminder_time_to_send' => 'Time of the day reminders should be sent', + 'reminder_time_to_send_help' => 'For your information, your next reminder will be sent on {dateTime}.', + + 'personalization_activity_type_category_title' => 'Activity type categories', + 'personalization_activity_type_category_add' => 'Add a new activity type category', + 'personalization_activity_type_category_table_name' => 'Name', + 'personalization_activity_type_category_description' => 'An activity done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything here.', + 'personalization_activity_type_category_table_actions' => 'Actions', + 'personalization_activity_type_category_modal_add' => 'Add a new activity type category', + 'personalization_activity_type_category_modal_edit' => 'Edit an activity type category', + 'personalization_activity_type_category_modal_question' => 'How should we name this new category?', + 'personalization_activity_type_add_button' => 'Add a new activity type', + 'personalization_activity_type_modal_add' => 'Add a new activity type', + 'personalization_activity_type_modal_question' => 'How should we name this new activity type?', + 'personalization_activity_type_modal_edit' => 'Edit an activity type', + '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. However, activities that belong to this category will not be affected by this deletion.', + '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_category_modal_delete_error' => 'We can’t find this activity type category.', + + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', + 'personalization_life_event_category_family_relationships' => 'Family & relationships', + 'personalization_life_event_category_home_living' => 'Home & living', + 'personalization_life_event_category_travel_experiences' => 'Travel & experiences', + 'personalization_life_event_category_health_wellness' => 'Health & wellness', + + 'personalization_life_event_type_new_job' => 'New job', + 'personalization_life_event_type_retirement' => 'Retirement', + 'personalization_life_event_type_new_school' => 'New school', + 'personalization_life_event_type_study_abroad' => 'Study abroad', + 'personalization_life_event_type_volunteer_work' => 'Volunteer work', + 'personalization_life_event_type_published_book_or_paper' => 'Published a book or paper', + 'personalization_life_event_type_military_service' => 'Military service', + 'personalization_life_event_type_first_met' => 'First met', + 'personalization_life_event_type_new_relationship' => 'New relationship', + 'personalization_life_event_type_engagement' => 'Engagement', + 'personalization_life_event_type_marriage' => 'Marriage', + 'personalization_life_event_type_anniversary' => 'Anniversary', + 'personalization_life_event_type_expecting_a_baby' => 'Expecting a baby', + 'personalization_life_event_type_new_child' => 'New child', + 'personalization_life_event_type_new_family_member' => 'New family member', + 'personalization_life_event_type_new_pet' => 'New pet', + 'personalization_life_event_type_end_of_relationship' => 'End of relationship', + 'personalization_life_event_type_loss_of_a_loved_one' => 'Loss of a loved one', + 'personalization_life_event_type_moved' => 'Moved', + 'personalization_life_event_type_bought_a_home' => 'Bought a home', + 'personalization_life_event_type_home_improvement' => 'Home improvement', + 'personalization_life_event_type_holidays' => 'Holidays', + 'personalization_life_event_type_new_vehicle' => 'New vehicle', + 'personalization_life_event_type_new_roommate' => 'New roommate', + 'personalization_life_event_type_overcame_an_illness' => 'Overcame an illness', + 'personalization_life_event_type_quit_a_habit' => 'Quit a habit', + 'personalization_life_event_type_new_eating_habits' => 'New eating habits', + 'personalization_life_event_type_weight_loss' => 'Weight loss', + 'personalization_life_event_type_wear_glass_or_contact' => 'Wear glass or contact', + 'personalization_life_event_type_broken_bone' => 'Broken bone', + 'personalization_life_event_type_removed_braces' => 'Removed braces', + 'personalization_life_event_type_surgery' => 'Surgery', + 'personalization_life_event_type_dentist' => 'Dentist', + 'personalization_life_event_type_new_sport' => 'New sport', + 'personalization_life_event_type_new_hobby' => 'New hobby', + 'personalization_life_event_type_new_instrument' => 'New instrument', + 'personalization_life_event_type_new_language' => 'New language', + 'personalization_life_event_type_tattoo_or_piercing' => 'Tattoo or piercing', + 'personalization_life_event_type_new_license' => 'New license', + 'personalization_life_event_type_travel' => 'Travel', + 'personalization_life_event_type_achievement_or_award' => 'Achievement or award', + 'personalization_life_event_type_changed_beliefs' => 'Changed beliefs', + 'personalization_life_event_type_first_word' => 'First word', + 'personalization_life_event_type_first_kiss' => 'First kiss', + + 'storage_title' => 'Storage', + 'storage_account_info' => 'Your account limit: :accountLimit Mb / Your current usage: :currentAccountSize Mb (:percentUsage%)', + 'storage_upgrade_notice' => 'Upgrade your account to be able to upload documents and photos.', + 'storage_description' => 'Here you can see all the documents and photos uploaded about your contacts.', + + 'dav_title' => 'WebDAV', + 'dav_description' => 'Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.', + 'dav_copy_help' => 'Copy into your clipboard', + 'dav_clipboard_copied' => 'Value copied into your clipboard', + 'dav_url_base' => 'Base url for all CardDAV and CalDAV resources:', + '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_url_carddav' => 'CardDAV url for Contacts resource:', + 'dav_url_caldav_birthdays' => 'CalDAV url for Birthdays resources:', + 'dav_url_caldav_tasks' => 'CalDAV url for Tasks resources:', + 'dav_title_carddav' => 'CardDAV', + 'dav_title_caldav' => 'CalDAV', + 'dav_carddav_export' => 'Export all contacts in one file', + 'dav_caldav_birthdays_export' => 'Export all birthdays in one file', + 'dav_caldav_tasks_export' => 'Export all tasks in one file', + + 'archive_title' => 'Archive all your contacts in your account', + 'archive_desc' => 'This will archive all the contacts in your account.', + 'archive_cta' => 'Archive all your contacts', + + 'logs_title' => 'Everything that happened to this account', + 'logs_author' => 'By :name on :date', +]; diff --git a/resources/lang/el/validation.php b/resources/lang/el/validation.php new file mode 100644 index 00000000000..94ee9fa82ce --- /dev/null +++ b/resources/lang/el/validation.php @@ -0,0 +1,157 @@ + '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.', + 'before' => 'The :attribute must be a date before :date.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'between' => [ + 'numeric' => 'The :attribute must be between :min and :max.', + 'file' => 'The :attribute must be between :min and :max kilobytes.', + 'string' => 'The :attribute must be between :min and :max characters.', + 'array' => 'The :attribute must have between :min and :max items.', + ], + 'boolean' => 'The :attribute field must be true or false.', + 'confirmed' => 'The :attribute confirmation does not match.', + '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' => 'Το :attribute πρέπει να τελειώνει με μια απο τις ακόλουθες τιμές: :values.', + 'exists' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.', + 'file' => 'Tο :attribute πρέπει να είναι αρχείο.', + 'filled' => 'To πεδίο :attribute πρέπει να έχει τιμή.', + 'gt' => [ + 'numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο από :value.', + 'file' => 'To :attribute πρέπει να είναι μεγαλύτερο από :value kilobytes.', + 'string' => 'Tο :attribute πρέπει να έχει περισσότερους από :value χαρακτήρες.', + 'array' => 'Το :attribute πρέπει να περιέχει περισσότερα από :value αντικείμενα.', + ], + 'gte' => [ + 'numeric' => 'Το :attribute πρέπει να είναι μεγαλύτερο ή ίσο από :value.', + 'file' => 'Το :attribute πρέπει να είναι μεγαλύτερο ή ίσο με :value kilobytes.', + 'string' => 'To :attribute πρέπει να είναι μεγαλύτερο ή ίσο από :value χαρακτήρες.', + 'array' => 'Το :attribute πρέπει να έχει :value αντικείμενα ή παραπάνω.', + ], + 'image' => 'Tο :attribute πρέπει να είναι εικόνα.', + 'in' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.', + 'in_array' => 'Το πεδίο :attribute δεν υπάρχει σε :other.', + 'integer' => 'To :attribute πρέπει να είναι ακέραιος αριθμός.', + 'ip' => 'Το :attribute πρέπει να είναι έγκυρη διεύθυνση IP.', + 'ipv4' => 'Το :attribute πρέπει να είναι μια έγκυρη διεύθυνση IPv4.', + 'ipv6' => 'Το :attribute πρέπει να είναι μια έγκυρη IPv6 διεύθυνση.', + 'json' => 'Το :attribute πρέπει να είναι μια έγκυρη συμβολοσειρά JSON.', + 'lt' => [ + 'numeric' => 'Το :attribute πρέπει να είναι μικρότερο του :value.', + 'file' => 'To :attribute πρέπει να είναι μικρότερο από :value kilobytes.', + 'string' => 'To :attribute πρέπει να είναι μικρότερο από :value kilobytes.', + 'array' => 'Tο :attribute πρέπει να έχει λιγότερα από :value αντικείμενα.', + ], + 'lte' => [ + 'numeric' => 'Το :attribute πρέπει να είναι μικρότερο ή ίσο του :value.', + 'file' => 'Το :attribute πρέπει να είναι μικρότερο ή ίσο του :value kilobytes.', + 'string' => 'Το :attribute πρέπει να είναι μικρότερο ή ίσο του :value kilobytes.', + 'array' => 'Tο :attribute δεν πρέπει να έχει περισσότερα από :value αντικείμενα.', + ], + 'max' => [ + 'numeric' => 'Tο :attribute δεν μπορεί να είναι μεγαλύτερο από :max.', + 'file' => 'To :attribute δεν μπορεί να είναι μεγαλύτερο από :max kilobytes.', + 'string' => 'Το :attribute δεν μπορεί να είναι μεγαλύτερο από :max χαρακτήρες.', + 'array' => 'Το :attribute δεν μπορεί να περιέχει περισσότερα από :max αντικείμενα.', + ], + 'mimes' => 'Το :attribute πρέπει να είναι ένα αρχείου τύπου: :values.', + 'mimetypes' => 'Το :attribute πρέπει να είναι ένα αρχείου τύπου: :values.', + 'min' => [ + 'numeric' => 'To :attribute πρέπει να είναι τουλάχιστον :min.', + 'file' => 'To :attribute πρέπει να είναι τουλάχιστον :min kilobytes.', + 'string' => 'Το :attribute πρέπει να είναι τουλάχιστον :min χαρακτήρες.', + 'array' => 'The :attribute must have at least :min items.', + ], + 'not_in' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.', + 'not_regex' => 'Η μορφή του :attribute δεν είναι έγκυρη.', + 'numeric' => 'To :attribute πρέπει να είναι αριθμός.', + 'password' => 'Ο κωδικός πρόσβασης είναι εσφαλμένος.', + 'present' => 'Tο πεδίο :attribute δεν πρέπει να παραλείπεται.', + 'regex' => 'Η μορφή του :attribute δεν είναι έγκυρη.', + 'required' => 'Το πεδίο :attribute είναι υποχρεωτικό.', + 'required_if' => 'Το πεδίο :attribute είναι απαραίτητο όταν η τιμή του :other είναι :value.', + 'required_unless' => 'Το πεδίο :attribute είναι απαραίτητο εκτός αν το :other περιέχεται στα :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' => 'Το πεδίο :attribute είναι υποχρεωτικό όταν κανένα από τα :values δεν εμφανίζονται.', + 'same' => 'Το :attribute και :other πρέπει να ταιριάζουν.', + 'size' => [ + 'numeric' => 'Το :attribute πρέπει να είναι :size.', + 'file' => 'Το :attribute πρέπει να είναι :size kilobytes.', + 'string' => 'Το :attribute πρέπει να είναι :size χαρακτήρες.', + 'array' => 'Το :attribute πρέπει να περιέχει :size αντικείμενα.', + ], + 'starts_with' => 'Το :attribute πρέπει να αρχίζει με μια από τις ακόλουθες τιμές: :values.', + 'string' => 'Το :attribute πρέπει να είναι κείμενο.', + 'timezone' => 'Το :attribute πρέπει να είναι μία έγκυρη ζώνη.', + 'unique' => 'Το :attribute δεν είναι διαθέσιμο.', + 'uploaded' => 'Το :attribute απέτυχε να μεταφορτωθεί.', + 'url' => 'Η μορφή του :attribute δεν είναι έγκυρη.', + 'uuid' => 'Tο :attribute πρέπει να είναι ένα έγκυρο UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + 'attributes' => [], + +]; diff --git a/resources/lang/en-GB/settings.php b/resources/lang/en-GB/settings.php index 93115f57eb3..f6a8cd3b695 100644 --- a/resources/lang/en-GB/settings.php +++ b/resources/lang/en-GB/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portuguese', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russian', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinese Simplified', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turkish', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/es/app.php b/resources/lang/es/app.php index 20508811844..ccfabc97058 100644 --- a/resources/lang/es/app.php +++ b/resources/lang/es/app.php @@ -47,14 +47,14 @@ 'file_selected' => '1 file selected...|{count} files selected...', 'application_title' => 'Monica – gestor de relaciones personales', - 'application_description' => 'Monica is a tool to manage your interactions with your loved ones, friends, and family.', + 'application_description' => 'Monica es una herramienta para gestionar tus interacciones con tus seres queridos, amigos y familiares.', 'application_og_title' => 'Have better relations with your loved ones. Free Online CRM for friends and family.', - 'markdown_description' => 'Want to format your text nicely? We support Markdown to add bold, italic, lists, and more.', + 'markdown_description' => '¿Quieres dar formato al texto de una manera agradable? Soportamos el uso de Markdown para añadir negrita, cursiva, listas y más.', 'markdown_link' => 'Leer documentación', 'header_settings_link' => 'Configuración', - 'header_logout_link' => 'Logout', + 'header_logout_link' => 'Salir', 'header_changelog_link' => 'Cambios del producto', 'main_nav_cta' => 'Añadir personas', @@ -136,7 +136,7 @@ 'relationship_type_group_family' => 'Relaciones familiares', 'relationship_type_group_friend' => 'Relaciones de amistad', 'relationship_type_group_work' => 'Relaciones laborales', - 'relationship_type_group_other' => 'Other kind of relationships', + 'relationship_type_group_other' => 'Otro tipo de relaciones', 'relationship_type_partner' => 'pareja', 'relationship_type_partner_female' => 'pareja', diff --git a/resources/lang/es/mail.php b/resources/lang/es/mail.php index c556565000a..7550a5ffe5b 100644 --- a/resources/lang/es/mail.php +++ b/resources/lang/es/mail.php @@ -8,8 +8,8 @@ return [ - 'subject_line' => 'Reminder for :contact', - 'greetings' => 'Hi :username', + 'subject_line' => 'Recordatorio para :contact', + 'greetings' => 'Hola, :username', 'want_reminded_of' => 'You wanted to be reminded of :reason', 'for' => 'Para: :name', 'comment' => 'Comment: :comment', diff --git a/resources/lang/es/passwords.php b/resources/lang/es/passwords.php index bf38241dfa4..b31e45bbf68 100644 --- a/resources/lang/es/passwords.php +++ b/resources/lang/es/passwords.php @@ -23,8 +23,8 @@ 'sent' => 'Si el correo eletrónico que ingresaste existe en nuestros registros te hemos enviado un correo para restablecer tu contraseña.', 'token' => 'Este token para reestablecer la contraseña no es válido.', 'user' => 'Si el correo eletrónico que ingresaste existe en nuestros registros te hemos enviado un correo para restablecer tu contraseña.', - 'changed' => 'Password changed successfully.', + 'changed' => 'Contraseña cambiada con éxito.', 'invalid' => 'La contraseña que ingresaste no es correcta.', - 'throttled' => 'Please wait before retrying.', + 'throttled' => 'Por favor, espera antes de intentarlo de nuevo.', ]; diff --git a/resources/lang/es/people.php b/resources/lang/es/people.php index 5f2d83379b9..157e182eefd 100644 --- a/resources/lang/es/people.php +++ b/resources/lang/es/people.php @@ -258,16 +258,16 @@ 'activity_type_went_play' => 'fuimos a jugar', 'activity_type_went_museum' => 'fuimos al museo', 'activities_add_activity' => 'Añadir actividad', - 'activities_add_more_details' => 'Add more details', - 'activities_add_emotions' => 'Add emotions', - 'activities_add_category' => 'Indicate a category', - 'activities_add_participants_cta' => 'Add participants', + 'activities_add_more_details' => 'Añadir más detalles', + 'activities_add_emotions' => 'Añadir emociones', + 'activities_add_category' => 'Indicar una categoría', + 'activities_add_participants_cta' => 'Añadir participantes', 'activities_item_information' => ':Activity. Sucedió el :date', 'activities_add_title' => '¿Qué hiciste con {name}?', 'activities_summary' => 'Describe lo que hiciste', 'activities_add_pick_activity' => '(Opcional) ¿Te gustaría categorizar esta actividad? No tienes que hacerlo, pero esto te dará estadísticas en el futuro', - 'activities_add_date_occured' => 'The activity happened on...', - 'activities_add_participants' => 'Who, apart from {name}, participated in this activity? (optional)', + 'activities_add_date_occured' => 'La actividad tuvo lugar el...', + 'activities_add_participants' => '¿Quién, aparte de {name}, participó en esta actividad? (opcional)', 'activities_add_emotions_title' => 'Do you want to log how you felt during this activity? (optional)', 'activities_blank_title' => 'Dale seguimiento a lo que has hecho con {name} en el pasado, y de que han hablado', 'activities_blank_add_activity' => 'Añadir una actividad', @@ -517,9 +517,9 @@ 'emotion_this_made_me_feel' => 'Esto te hizo sentir…', // logs - 'auditlogs_link' => 'History', - 'auditlogs_title' => 'Everything that happened to :name', - 'auditlogs_breadcrumb' => 'History', + 'auditlogs_link' => 'Historial', + 'auditlogs_title' => 'Todo lo que le pasó a :name', + 'auditlogs_breadcrumb' => 'Historial', 'auditlogs_author' => 'By :name on :date', // contact field label diff --git a/resources/lang/es/settings.php b/resources/lang/es/settings.php index d94942f787c..8e246fd848f 100644 --- a/resources/lang/es/settings.php +++ b/resources/lang/es/settings.php @@ -20,16 +20,16 @@ 'sidebar_settings_security' => 'Seguridad', 'sidebar_settings_auditlogs' => 'Audit logs', - 'title_general' => 'General Information', - 'title_i18n' => 'International settings', + 'title_general' => 'Información general', + 'title_i18n' => 'Configuración internacional', 'title_layout' => 'Layout', - 'me_title' => 'My contact', - 'me_help' => 'This is the contact that represents you in Monica', - 'me_select' => 'Select a contact', + 'me_title' => 'Mi contacto', + 'me_help' => 'Este es el contacto que te representa a ti en Monica', + 'me_select' => 'Selecciona un contacto', 'me_no_contact' => 'No contact selected yet.', - 'me_select_click' => 'Click here to select a contact.', - 'me_remove_contact' => 'Remove the association', + 'me_select_click' => 'Haz clic aquí para seleccionar un contacto.', + 'me_remove_contact' => 'Eliminar la asociación', 'me_choose' => 'Choose yourself', 'me_choose_placeholder' => 'Choose yourself', @@ -77,7 +77,7 @@ 'delete_cta' => 'Eliminar cuenta', 'settings_success' => 'Preferencias actualizadas!', 'locale' => 'Idiomas utilizados en la aplicación', - 'locale_help' => 'Do you want to help translating Monica or add a new language? Please follow this link for more information.', + 'locale_help' => '¿Quieres ayudar a traducir Monica o añadir un nuevo idioma? Sigue este enlace para más información.', 'locale_ar' => 'Árabe', 'locale_cs' => 'Checo', 'locale_de' => 'Alemán', @@ -92,6 +92,7 @@ 'locale_pt' => 'Portugues', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Ruso', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chino simplificado', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turco', @@ -142,7 +143,7 @@ 'recovery_show' => 'Get recovery codes', 'recovery_copy_help' => 'Copy codes in your clipboard', 'recovery_help_intro' => 'These are your recovery codes:', - 'recovery_help_information' => 'You can use each recovery code once.', + 'recovery_help_information' => 'Puedes usar cada código de recuperación una vez.', 'recovery_clipboard' => 'Codes copied in the clipboard', 'recovery_generate' => 'Generate new codes...', 'recovery_generate_help' => 'Be aware that generating new codes will invalidate previously generated codes', @@ -157,7 +158,7 @@ 'users_list_invitations_sent_date' => 'sent on :date', 'users_blank_title' => 'You are the only one who has access to this account.', 'users_blank_add_title' => 'Would you like to invite someone else?', - '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_description' => 'Esta persona tendrá el mismo acceso que tú y podrá añadir, editar o eliminar la información de contactos.', 'users_blank_cta' => 'Invitar a alguien', 'users_add_title' => 'Invitar un nuevo usuario por email a tu cuenta', 'users_add_description' => 'This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.', @@ -212,12 +213,12 @@ 'subscriptions_upgrade_credit' => 'Credit or debit card', 'subscriptions_upgrade_submit' => 'Pay {amount}', '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 anytime, no questions asked.', - 'subscriptions_upgrade_charge_handled' => 'The payment is handled by Stripe. No card information touches our server.', + 'subscriptions_upgrade_charge_handled' => 'El pago es gestionado por Stripe. Ninguna información de la tarjeta toca nuestro servidor.', '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_payment_confirm_title' => 'Confirm your :amount payment', - '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_information' => 'Se necesita confirmación adicional para procesar tu pago. Por favor, confirma tu pago completando los detalles de tu pago a continuación.', 'subscriptions_payment_succeeded_title' => 'Payment Successful', 'subscriptions_payment_succeeded' => 'This payment was already successfully confirmed.', 'subscriptions_payment_cancelled_title' => 'Payment Cancelled', @@ -261,8 +262,8 @@ 'import_in_progress' => 'The import is in progress. Reload the page in one minute.', 'import_upload_title' => 'Import your contacts from a vCard file', 'import_upload_rules_desc' => 'We do however have some rules:', - 'import_upload_rule_format' => 'We support .vcard and .vcf files.', - 'import_upload_rule_vcard' => 'We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) and Google Contacts.', + 'import_upload_rule_format' => 'Soportamos archivos .vcard y .vcf.', + 'import_upload_rule_vcard' => 'Soportamos el formato vCard 3.0, que es el formato predeterminado para Contacts.app (macOS) y Google Contacts.', 'import_upload_rule_instructions' => 'Export instructions for Contacts.app (macOS) and Google Contacts.', 'import_upload_rule_multiple' => 'For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.', 'import_upload_rule_limit' => 'Files are limited to 10MB.', @@ -320,7 +321,7 @@ '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_clients_desc2' => 'Usa este id de cliente para solicitar un nuevo token y convertir códigos de autorización para los tokens de acceso. Consulta la documentación de Laravel Passport para más información.', 'api_oauth_title' => 'OAuth Clients', 'api_oauth_create_new' => 'Create New Client', 'api_oauth_edit' => 'Edit Client', @@ -403,7 +404,7 @@ 'personalisation_paid_upgrade_vue' => 'This is a premium feature that requires a Paid subscription to be active. Upgrade your account by visiting Settings > Subscription.', 'reminder_time_to_send' => 'Time of the day reminders should be sent', - 'reminder_time_to_send_help' => 'For your information, your next reminder will be sent on {dateTime}.', + 'reminder_time_to_send_help' => 'Para tu información, tu siguiente recordatorio se enviará el {dateTime}.', 'personalization_activity_type_category_title' => 'Activity type categories', 'personalization_activity_type_category_add' => 'Add a new activity type category', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/fr/settings.php b/resources/lang/fr/settings.php index 9594193ec5a..2831e49ef13 100644 --- a/resources/lang/fr/settings.php +++ b/resources/lang/fr/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portugais', 'locale_pt-BR' => 'Portugais (Brésil)', 'locale_ru' => 'Russe', + 'locale_sv' => 'Suédois', 'locale_zh' => 'Chinois Simplifié', 'locale_zh-TW' => 'Chinois Traditionnel', 'locale_tr' => 'Turc', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'Impossible de trouver ce type d’activité.', 'personalization_activity_type_category_modal_delete_error' => 'Impossible de trouver cette catégorie de type d’activité.', + 'personalization_life_event_category_title' => 'Catégories d’évènements marquants', + 'personalization_live_event_category_table_name' => 'Nom', + 'personalization_life_event_category_description' => 'Un évènement marquant peut avoir un type et une catégorie. Votre compte est fourni par défaut avec un ensemble de catégories et types prédéfinis, mais vous pouvez personnaliser les types d’évènements marquants ici.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Ajouter un nouveau type d’évènement', + 'personalization_life_event_type_modal_add' => 'Ajouter un nouveau type d’évènement', + 'personalization_life_event_type_modal_question' => 'Comment nommer ce nouveau type d’évènement ?', + 'personalization_life_event_type_modal_edit' => 'Éditer un type d’évènement', + 'personalization_life_event_type_modal_delete' => 'Supprimer un type d’évènement', + 'personalization_life_event_type_modal_delete_desc' => 'Êtes-vous sûr de vouloir supprimer ce type d’événement ? Les évènements qui appartiennent à ce type seront supprimés en effectuant cette action.', + 'personalization_life_event_type_modal_delete_error' => 'Impossible de trouver ce type d’évènement.', + 'personalization_life_event_category_work_education' => 'Travail & formation', 'personalization_life_event_category_family_relationships' => 'Famille & relations', 'personalization_life_event_category_home_living' => 'Foyer & vie domestique', diff --git a/resources/lang/he/settings.php b/resources/lang/he/settings.php index 9f46bec4179..0cb4a2ea398 100644 --- a/resources/lang/he/settings.php +++ b/resources/lang/he/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'פורטוגלית', 'locale_pt-BR' => 'פורטוגלית ברזילאית', 'locale_ru' => 'רוסית', + 'locale_sv' => 'שוודית', 'locale_zh' => 'סינית מפושטת', 'locale_zh-TW' => 'סינית מסורתית', 'locale_tr' => 'טורקית', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'אין לנו אפשרות למצוא את סוג הפעילות.', 'personalization_activity_type_category_modal_delete_error' => 'אין לנו אפשרות למצוא את קטגוריית סוג הפעילות הזו.', + 'personalization_life_event_category_title' => 'קטגוריות אירועי חיים', + 'personalization_live_event_category_table_name' => 'שם', + 'personalization_life_event_category_description' => 'לאירוע חיים יכול להיות סוג וקטגוריה. בחשבון שלך כבר נוצרה בררת מחדל של קטגוריות וסוגים אך ניתן לערוך את סוגי אירועי החיים להלן.', + 'personalization_live_event_category_table_actions' => 'פעולות', + 'personalization_life_event_type_add_button' => 'הוספת סוג חדש של אירוע חיים', + 'personalization_life_event_type_modal_add' => 'הוספת סוג חדש של אירוע חיים', + 'personalization_life_event_type_modal_question' => 'איך יש לקרוא לסוג אירוע החיים החדש?', + 'personalization_life_event_type_modal_edit' => 'עריכת סוג אירוע חיים', + 'personalization_life_event_type_modal_delete' => 'מחיקת סוג אירוע חיים', + 'personalization_life_event_type_modal_delete_desc' => 'למחוק סוג אירוע חיים? אירועי חיים ששייכים לסוג הזה יימחקו עם ביצוע הפעולה.', + 'personalization_life_event_type_modal_delete_error' => 'לא הצלחנו למצוא את סוג אירוע חיים זה.', + 'personalization_life_event_category_work_education' => 'עבודה והשכלה', 'personalization_life_event_category_family_relationships' => 'משפחה ויחסים', 'personalization_life_event_category_home_living' => 'בית ומחייה', diff --git a/resources/lang/hr/settings.php b/resources/lang/hr/settings.php index 93115f57eb3..f6a8cd3b695 100644 --- a/resources/lang/hr/settings.php +++ b/resources/lang/hr/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portuguese', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russian', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinese Simplified', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turkish', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/it/auth.php b/resources/lang/it/auth.php index 3324dfff9f0..6a3b961f249 100644 --- a/resources/lang/it/auth.php +++ b/resources/lang/it/auth.php @@ -23,7 +23,7 @@ 'throttle' => 'Troppi tentativi di accesso. Ti preghiamo di ritentare in :seconds secondi.', 'not_authorized' => 'Non sei autorizzato a eseguire questa azione.', 'signup_disabled' => 'La registrazione è al momento disattivata', - 'signup_error' => 'An error occured trying to register the user', + 'signup_error' => 'Si è verificato un errore provando a registrare l\'utente', 'back_homepage' => 'Ritorna alla Home', 'mfa_auth_otp' => 'Autenticati con il tuo dispositivo secondo fattore', 'mfa_auth_webauthn' => 'Autenticazione con una chiave di sicurezza (WebAuthn)', diff --git a/resources/lang/it/people.php b/resources/lang/it/people.php index 0df5eac4b86..06c3c31f835 100644 --- a/resources/lang/it/people.php +++ b/resources/lang/it/people.php @@ -12,7 +12,7 @@ 'people_not_found' => 'Contatto non trovato', 'people_list_number_kids' => '1 bambino|:count bambini', 'people_list_last_updated' => 'Ultimo contatto:', - 'people_list_number_reminders' => ':count promemoria', + 'people_list_number_reminders' => '1 promemoria|:count promemoria', 'people_list_blank_title' => 'Non ci sono contatti nel tuo account', 'people_list_blank_cta' => 'Aggiungi qualcuno', 'people_list_sort' => 'Ordina', @@ -247,7 +247,7 @@ 'activity_type_just_hung_out' => 'siamo usciti', 'activity_type_watched_movie_at_home' => 'visto un film, a casa', 'activity_type_talked_at_home' => 'parlato, a casa', - 'activity_type_did_sport_activities_together' => 'giocato uno sport insieme', + 'activity_type_did_sport_activities_together' => 'giocavano insieme ad uno sport', 'activity_type_ate_at_his_place' => 'mangiato a casa sua/loro', 'activity_type_went_bar' => 'andati al bar', 'activity_type_ate_at_home' => 'mangiato a casa', @@ -434,11 +434,11 @@ 'life_event_delete_description' => 'Sei sicuro di eliminare questo evento? Non si può annullare.', 'life_event_delete_success' => 'Evento eliminato con successo', 'life_event_date_it_happened' => 'Data di avvenimento', - 'life_event_category_work_education' => 'Work & education', - 'life_event_category_family_relationships' => 'Family & relationships', - 'life_event_category_home_living' => 'Home & living', - 'life_event_category_health_wellness' => 'Health & wellness', - 'life_event_category_travel_experiences' => 'Travel & experiences', + 'life_event_category_work_education' => 'Lavoro e Istruzione', + 'life_event_category_family_relationships' => 'Famiglia e Relazioni', + 'life_event_category_home_living' => 'Casa e Vita', + 'life_event_category_health_wellness' => 'Salute e Benessere', + 'life_event_category_travel_experiences' => 'Viaggi ed Esperienze', 'life_event_sentence_new_job' => 'Inizio di un nuovo lavoro', 'life_event_sentence_retirement' => 'Pensionamento', 'life_event_sentence_new_school' => 'Inizio scuola', @@ -500,8 +500,8 @@ 'photo_current_profile_pic' => 'Attuale immagine del profilo', 'photo_make_profile_pic' => 'Rendi questa foto immagine del profilo', 'photo_delete' => 'Elimina foto', - 'photo_next' => 'Next photo', - 'photo_previous' => 'Previous photo', + 'photo_next' => 'Foto successiva', + 'photo_previous' => 'Foto precedente', // Avatars 'avatar_change_title' => 'Cambia il tuo avatar', @@ -511,15 +511,15 @@ 'avatar_gravatar' => 'Il Gravatar associato all\'indirizzo email di questa persona. Gravatar è un sistema globale che permette agli utenti di associare indirizzi email con foto.', 'avatar_current' => 'Mantieni l\'avatar attuale', 'avatar_photo' => 'Da una foto che carichi', - 'avatar_crop_new_avatar_photo' => 'Crop new avatar photo', + 'avatar_crop_new_avatar_photo' => 'Ritaglia nuova foto dell\'avatar', // emotions 'emotion_this_made_me_feel' => 'Questo mi ha fatto sentire…', // logs - 'auditlogs_link' => 'Storico', + 'auditlogs_link' => 'Cronologia', 'auditlogs_title' => 'Tutto ciò che è accaduto a :name', - 'auditlogs_breadcrumb' => 'Storico', + 'auditlogs_breadcrumb' => 'Cronologia', 'auditlogs_author' => 'Da :name il :date', // contact field label diff --git a/resources/lang/it/settings.php b/resources/lang/it/settings.php index f3dc539f9d4..bdd87b9c0b6 100644 --- a/resources/lang/it/settings.php +++ b/resources/lang/it/settings.php @@ -92,8 +92,9 @@ 'locale_pt' => 'Portoghese', 'locale_pt-BR' => 'Portoghese (Brasile)', 'locale_ru' => 'Russo', + 'locale_sv' => 'Svedese', 'locale_zh' => 'Cinese semplificato', - 'locale_zh-TW' => 'Chinese Traditional', + 'locale_zh-TW' => 'Cinese Tradizionale', 'locale_tr' => 'Turco', 'locale_en-GB' => 'Inglese (Regno Unito)', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'Impossibile trovare questo tipo.', 'personalization_activity_type_category_modal_delete_error' => 'Impossibile trovare questa categoria.', + 'personalization_life_event_category_title' => 'Categorie dell\'evento della vita', + 'personalization_live_event_category_table_name' => 'Nome', + 'personalization_life_event_category_description' => 'Un evento della vita può avere un tipo ed una categoria. Il tuo profilo è fornito di default di una serie di categorie e tipi predefiniti, ma puoi personalizzare qui i tuoi tipi di eventi della vita.', + 'personalization_live_event_category_table_actions' => 'Azioni', + 'personalization_life_event_type_add_button' => 'Aggiungi un nuovo tipo di evento della vita', + 'personalization_life_event_type_modal_add' => 'Aggiungi un nuovo tipo di evento della vita', + 'personalization_life_event_type_modal_question' => 'Come dovremmo chiamare questo nuovo tipo di evento della vita?', + 'personalization_life_event_type_modal_edit' => 'Modifica un 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_category_work_education' => 'Lavoro e educazione', 'personalization_life_event_category_family_relationships' => 'Famiglia e relazioni', 'personalization_life_event_category_home_living' => 'Casa e vita', @@ -486,7 +499,7 @@ 'dav_clipboard_copied' => 'Valore copiato negli appunti', 'dav_url_base' => 'Url di base per tutte le risorse CardDAV e CalDAV:', 'dav_connect_help' => 'Puoi collegare i tuoi contatti e/o calendari con questo url di base sul tuo telefono o computer.', - 'dav_connect_help2' => 'Use your login (email) and create an API token as the password to authenticate.', + 'dav_connect_help2' => 'Usa il tuo accesso (email) e crea un token API come password per autenticarsi.', 'dav_url_carddav' => 'Url CardDAV per la risorsa Contatti:', 'dav_url_caldav_birthdays' => 'Url CalDAV per le risorse di compleanni:', 'dav_url_caldav_tasks' => 'Url CalDAV per le risorse di task:', diff --git a/resources/lang/ja/settings.php b/resources/lang/ja/settings.php index 348c56b32f2..f923bf147ea 100644 --- a/resources/lang/ja/settings.php +++ b/resources/lang/ja/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portuguese', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russian', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinese Simplified', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turkish', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/nl/app.php b/resources/lang/nl/app.php index 5c6402ad79e..572893f014b 100644 --- a/resources/lang/nl/app.php +++ b/resources/lang/nl/app.php @@ -108,11 +108,11 @@ 'error_title' => 'Oeps! Er is iets misgegaan.', 'error_unauthorized' => 'Je hebt niet de rechten om dit onderdeel te bewerken.', - 'error_user_account' => 'This user does not belong to the given account.', + 'error_user_account' => 'Deze gebruiker behoort niet tot het opgegeven account.', 'error_save' => 'Er is een fout opgetreden bij het opslaan van de gegevens.', 'error_try_again' => 'Er ging iets mis. Probeer opnieuw.', 'error_id' => 'Fout-ID: :id', - 'error_unavailable' => 'Service unavailable', + 'error_unavailable' => 'Service niet beschikbaar', 'error_maintenance' => 'Onderhoud in uitvoering. Zo terug.', 'error_help' => 'We zijn zo terug.', 'error_twitter' => 'Volg ons op Twitter als je gewaarschuwd wilt worden als we terug zijn.', @@ -238,8 +238,8 @@ 'relationship_type_friend_with_name' => ':name’s vriend', 'relationship_type_friend_female_with_name' => ':name’s vriend', - 'relationship_type_bestfriend' => 'beste Vriend', - 'relationship_type_bestfriend_female' => 'beste Vriend', + 'relationship_type_bestfriend' => 'beste vriend', + 'relationship_type_bestfriend_female' => 'beste vriend', 'relationship_type_bestfriend_with_name' => ':name’s beste vriend', 'relationship_type_bestfriend_female_with_name' => ':name’s beste vriend', @@ -265,8 +265,8 @@ 'relationship_type_protege' => 'protege', 'relationship_type_protege_female' => 'protege', - 'relationship_type_protege_with_name' => ':name’s protege', - 'relationship_type_protege_female_with_name' => ':name’s protege', + 'relationship_type_protege_with_name' => ':name\'s protege', + 'relationship_type_protege_female_with_name' => ':name\'s protege', 'relationship_type_ex_husband' => 'ex-echtgenoot', 'relationship_type_ex_husband_female' => 'ex-vrouw', diff --git a/resources/lang/nl/auth.php b/resources/lang/nl/auth.php index 78ea663fb2b..7dead23d1f8 100644 --- a/resources/lang/nl/auth.php +++ b/resources/lang/nl/auth.php @@ -23,7 +23,7 @@ 'throttle' => 'Te veel inlogpogingen. Probeer opnieuw in :seconds seconden.', 'not_authorized' => 'Je bent niet gemachtigd om dit te doen', 'signup_disabled' => 'Registratie is momenteel uitgeschakeld', - 'signup_error' => 'An error occured trying to register the user', + 'signup_error' => 'Er is een fout opgetreden bij het registreren van de gebruiker', 'back_homepage' => 'Terug naar homepage', 'mfa_auth_otp' => 'Verifieer met je tweestapsverificatie apparaat', 'mfa_auth_webauthn' => 'Authenticeer met een beveiligingssleutel (WebAuthn)', diff --git a/resources/lang/nl/logs.php b/resources/lang/nl/logs.php index 74b4bed8d85..3983fdfadfd 100644 --- a/resources/lang/nl/logs.php +++ b/resources/lang/nl/logs.php @@ -9,7 +9,7 @@ return [ // contact creation - 'contact_log_contact_created' => 'Created the contact.', + 'contact_log_contact_created' => 'Contact is aangemaakt.', 'settings_log_contact_created_with_name' => 'Added :name as a contact.', 'settings_log_contact_created_with_name_with_link' => 'Added :name as a contact.', @@ -19,15 +19,15 @@ 'settings_log_contact_description_updated_with_name_with_link' => 'Updated the description of :name.', // contact description clear - 'contact_log_contact_description_cleared' => 'Cleared the description.', - 'settings_log_contact_description_cleared_with_name' => 'Cleared the description of :name.', - 'settings_log_contact_description_cleared_with_name_with_link' => 'Cleared the description of :name.', + 'contact_log_contact_description_cleared' => 'De beschrijving is gewist.', + 'settings_log_contact_description_cleared_with_name' => 'De beschrijving van :name is gewist.', + 'settings_log_contact_description_cleared_with_name_with_link' => 'Beschrijving van :name is gewist.', // contact work information update - 'contact_log_contact_work_updated' => 'Updated work information.', + 'contact_log_contact_work_updated' => 'Werkinformatie bijgewerkt.', 'settings_log_contact_work_updated_with_name' => 'Updated work information of :name.', 'settings_log_contact_work_updated_with_name_with_link' => 'Updated work information of :name.', // company created - 'settings_log_company_created' => 'Created a company called :name.', + 'settings_log_company_created' => 'Bedrijf genaamd :name aangemaakt.', ]; diff --git a/resources/lang/nl/people.php b/resources/lang/nl/people.php index 133c9e0ada1..69c59266fbe 100644 --- a/resources/lang/nl/people.php +++ b/resources/lang/nl/people.php @@ -58,7 +58,7 @@ 'people_delete_message' => 'Contact verwijderen', 'people_delete_confirmation' => 'Weet je zeker dat je dit contact wilt verwijderen? Dit is permanent.', 'people_add_birthday_reminder' => 'Feliciteer :name met zijn/haar verjaardag', - 'people_add_birthday_reminder_deceased' => 'On this date, :name, would have celebrated his birthday', + 'people_add_birthday_reminder_deceased' => 'Op deze datum zou :name zijn verjaardag hebben gevierd', 'people_add_import' => 'Wil je contacten importeren?', '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', @@ -208,7 +208,7 @@ 'reminders_type_week' => 'week', 'reminders_type_month' => 'maand', 'reminders_type_year' => 'jaar', - 'reminders_birthday' => 'Verjaardag van :naam', + 'reminders_birthday' => 'Verjaardag van :name', '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.', // relationships @@ -504,14 +504,14 @@ 'photo_previous' => 'Vorige foto', // Avatars - 'avatar_change_title' => 'Change your avatar', + 'avatar_change_title' => 'Wijzig je profielfoto', 'avatar_question' => 'Welke avatar wil je gebruiken?', 'avatar_default_avatar' => 'De standaard-avatar', 'avatar_adorable_avatar' => 'De Schattige avatar', 'avatar_gravatar' => 'The Gravatar dat geassocieerd is met dit contact. Gravatar is een wereldwijd systeem dat gebruikers hun emailadres laat associëren met hun foto\'s.', 'avatar_current' => 'Huidige avatar houden', 'avatar_photo' => 'Van een foto die je upload', - 'avatar_crop_new_avatar_photo' => 'Crop new avatar photo', + 'avatar_crop_new_avatar_photo' => 'Snij nieuwe avatar foto bij', // emotions 'emotion_this_made_me_feel' => 'Je voelde je…', diff --git a/resources/lang/nl/settings.php b/resources/lang/nl/settings.php index aa9f9374811..6b0427f55d0 100644 --- a/resources/lang/nl/settings.php +++ b/resources/lang/nl/settings.php @@ -87,13 +87,14 @@ 'locale_he' => 'Hebreeuws', 'locale_hr' => 'Kroatisch', 'locale_it' => 'Italiaans', - 'locale_ja' => 'Japanese', + 'locale_ja' => 'Japans', 'locale_nl' => 'Nederlands', 'locale_pt' => 'Portugees', 'locale_pt-BR' => 'Portugees (Brazilië)', 'locale_ru' => 'Russisch', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinees (vereenvoudigd)', - 'locale_zh-TW' => 'Chinese Traditional', + 'locale_zh-TW' => 'Traditioneel Chinees', 'locale_tr' => 'Turks', 'locale_en-GB' => 'Engels (Verenigd Koninkrijk)', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We kunnen dit type activiteit niet vinden.', 'personalization_activity_type_category_modal_delete_error' => 'We kunnen deze categorie niet vinden.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Werk & onderwijs', 'personalization_life_event_category_family_relationships' => 'Familie & relaties', 'personalization_life_event_category_home_living' => 'Huis & leven', @@ -500,6 +513,6 @@ 'archive_desc' => 'This will archive all the contacts in your account.', 'archive_cta' => 'Archiveer al je contacten', - 'logs_title' => 'Everything that happened to this account', - 'logs_author' => 'By :name on :date', + 'logs_title' => 'Alles wat met dit account is gebeurd', + 'logs_author' => 'Door :name op :date', ]; diff --git a/resources/lang/no/settings.php b/resources/lang/no/settings.php index 93115f57eb3..f6a8cd3b695 100644 --- a/resources/lang/no/settings.php +++ b/resources/lang/no/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portuguese', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russian', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinese Simplified', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turkish', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/pt-BR/settings.php b/resources/lang/pt-BR/settings.php index 89eb14c5ea0..2c84e57a756 100644 --- a/resources/lang/pt-BR/settings.php +++ b/resources/lang/pt-BR/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Português', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russo', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinês (Simplificado)', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turco', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/pt/settings.php b/resources/lang/pt/settings.php index 55f129a6d50..75a8072555d 100644 --- a/resources/lang/pt/settings.php +++ b/resources/lang/pt/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Português', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russo', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinês (Simplificado)', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turco', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/ru/settings.php b/resources/lang/ru/settings.php index 20e9bcb7dbc..81caa48aed6 100644 --- a/resources/lang/ru/settings.php +++ b/resources/lang/ru/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Португальский', 'locale_pt-BR' => 'Португальский (Бразилия)', 'locale_ru' => 'Русский', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Китайский упрощенный', 'locale_zh-TW' => 'Китайский традиционный', 'locale_tr' => 'Турецкий', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/sv/app.php b/resources/lang/sv/app.php new file mode 100644 index 00000000000..5b6dacc0510 --- /dev/null +++ b/resources/lang/sv/app.php @@ -0,0 +1,465 @@ + 'Ja', + 'no' => 'Nej', + 'update' => 'Uppdatera', + 'save' => 'Spara', + 'add' => 'Lägg till', + 'cancel' => 'Avbryt', + 'confirm' => 'Bekräfta', + 'delete_confirm' => 'Säker?', + 'delete' => 'Radera', + 'edit' => 'Redigera', + 'upload' => 'Ladda upp', + 'download' => 'Hämta', + 'save_close' => 'Spara och stäng', + 'close' => 'Stäng', + 'copy' => 'Kopiera', + 'create' => 'Skapa', + 'remove' => 'Radera', + 'revoke' => 'Återkalla', + 'done' => 'Klar', + 'back' => 'Tillbaka', + 'verify' => 'Verifiera', + 'new' => 'ny', + 'unknown' => 'Jag vet inte', + 'load_more' => 'Ladda mer', + 'loading' => 'Laddar...', + 'with' => 'med', + 'today' => 'idag', + 'yesterday' => 'igår', + 'another_day' => 'en annan dag', + 'date' => 'Datum', + 'type' => 'Typ', + 'zoom' => 'Zoom', + 'upgrade' => 'Uppgradera för att låsa upp', + 'percent_uploaded' => '{percent}% uppladdat', + 'retry' => 'Försök igen', + 'filter' => 'Filtrera listan', + 'go_back' => 'Gå tillbaka', + 'file_selected' => '1 fil vald...|{count} valda filer...', + + 'application_title' => 'Monica – Personlig Relationsansvarig', + 'application_description' => 'Monica är ett verktyg för att hantera dina interaktioner med dina nära och kära, vänner och familj.', + 'application_og_title' => 'Ha bättre relationer med dina nära och kära. Free Online CRM för vänner och familj.', + + 'markdown_description' => 'Vill du formatera din text fint? Vi stöder Markdown för att lägga till fetstil, kursiva, listor och mycket mer.', + 'markdown_link' => 'Läs dokumentation', + + 'header_settings_link' => 'Inställningar', + 'header_logout_link' => 'Logga ut', + 'header_changelog_link' => 'Produkt ändringar', + + 'main_nav_cta' => 'Lägg till personer', + 'main_nav_dashboard' => 'Instrumentpanel', + 'main_nav_family' => 'Kontakter', + 'main_nav_journal' => 'Dagbok', + 'main_nav_activities' => 'Aktiviteter', + 'main_nav_tasks' => 'Uppgifter', + + 'footer_remarks' => 'Några anmärkningar?', + 'footer_send_email' => 'Skicka ett e-postmeddelande till mig', + 'footer_privacy' => 'Integritetspolicy', + 'footer_release' => 'Information om utgivningen', + 'footer_newsletter' => 'Nyhetsbrev', + 'footer_source_code' => 'Bidra', + 'footer_version' => 'Version: :version', + 'footer_new_version' => 'En ny version finns tillgänglig', + + 'footer_modal_version_whats_new' => 'Vad är nytt', + 'footer_modal_version_release_away' => 'Du är 1 version bakom den senaste versionen. Du bör uppdatera din instans.|Du är :number releaser bakom den senaste versionen. Du bör uppdatera din instans.', + + 'breadcrumb_dashboard' => 'Instrumentpanel', + 'breadcrumb_list_contacts' => 'Lista över personer', + 'breadcrumb_archived_contacts' => 'Arkiverade kontakter', + 'breadcrumb_journal' => 'Dagbok', + 'breadcrumb_settings' => 'Inställningar', + 'breadcrumb_settings_export' => 'Exportera', + 'breadcrumb_settings_users' => 'Användare', + 'breadcrumb_settings_users_add' => 'Lägg till en användare', + 'breadcrumb_settings_subscriptions' => 'Prenumeration', + 'breadcrumb_settings_import' => 'Importera', + 'breadcrumb_settings_import_report' => 'Importera rapport', + 'breadcrumb_settings_import_upload' => 'Ladda upp', + 'breadcrumb_settings_tags' => 'Taggar', + 'breadcrumb_add_significant_other' => 'Lägg till partner/respektive', + 'breadcrumb_edit_significant_other' => 'Redigera partner/respektive', + 'breadcrumb_add_note' => 'Lägg till en anteckning', + 'breadcrumb_edit_note' => 'Redigera en anteckning', + 'breadcrumb_api' => 'API', + 'breadcrumb_dav' => 'DAV resurser', + 'breadcrumb_edit_introductions' => 'Hur träffades ni', + 'breadcrumb_settings_personalization' => 'Anpassa', + 'breadcrumb_settings_security' => 'Säkerhet', + 'breadcrumb_settings_security_2fa' => 'Tvåfaktorsautentisering', + 'breadcrumb_profile' => 'Profil för :name', + + 'gender_male' => 'Man', + 'gender_female' => 'Kvinna', + 'gender_none' => 'Vill inte säga', + 'gender_no_gender' => 'Inget kön', + + 'error_title' => 'Hoppsan! Något gick fel.', + 'error_unauthorized' => 'Du har inte rätt att redigera denna resurs.', + 'error_user_account' => 'Den här användaren tillhör inte det angivna kontot.', + 'error_save' => 'Ett fel uppstod när vi försökte spara data.', + 'error_try_again' => 'Något gick fel. Försök igen.', + 'error_id' => 'Fel ID: ID', + 'error_unavailable' => 'Tjänsten är inte tillgänglig', + 'error_maintenance' => 'Underhåll pågår. Vi är snart tillbaka.', + 'error_help' => 'Vi kommer snart tillbaka.', + 'error_twitter' => 'Följ vårt Twitter-konto för att bli uppdaterad när sidan är uppe igen.', + 'error_no_term' => 'Det finns ingen policy för denna instans ännu.', + + 'default_save_success' => 'Datan har sparats.', + + 'compliance_title' => 'Ledsen för avbrottet.', + 'compliance_desc' => 'Vi har ändrat våra användarvillkor och sekretesspolicy. Enligt lag måste vi be dig granska dem och acceptera dem så att du kan fortsätta använda ditt konto.', + 'compliance_desc_end' => 'Vi gör inget otäckt med dina uppgifter eller ditt konto och vi kommer aldrig att göra det.', + 'compliance_terms' => 'Acceptera nya villkor och sekretesspolicy', + + // Relationship types + // Yes, each relationship type has 8 strings associated with it. + // This is because we need to indicate the name of the relationship type, + // and also the name of the opposite side of this relationship (father/son), + // and then, the feminine version of the string. Finally, in some sentences + // in the UI, we need to include the name of the person we add the relationship + // to. + 'relationship_type_group_love' => 'Kärleksrelationer', + 'relationship_type_group_family' => 'Familjerelationer', + 'relationship_type_group_friend' => 'Vänrelationer', + 'relationship_type_group_work' => 'Arbetsrelationer', + 'relationship_type_group_other' => 'Annan typ av relationer', + + 'relationship_type_partner' => 'partner', + 'relationship_type_partner_female' => 'partner', + 'relationship_type_partner_with_name' => '.name\'s partner', + 'relationship_type_partner_female_with_name' => ':name\'s partner', + + 'relationship_type_spouse' => 'make', + 'relationship_type_spouse_female' => 'maka', + 'relationship_type_spouse_with_name' => ':name\'s make', + 'relationship_type_spouse_female_with_name' => ':name\'s maka', + + 'relationship_type_date' => 'dejt', + 'relationship_type_date_female' => 'dejt', + 'relationship_type_date_with_name' => ':name\'s dejt', + 'relationship_type_date_female_with_name' => ':name\'s dejt', + + 'relationship_type_lover' => 'älskare', + 'relationship_type_lover_female' => 'älskare', + 'relationship_type_lover_with_name' => ':name\'s älskare', + 'relationship_type_lover_female_with_name' => ':name\'s älskarinna', + + 'relationship_type_inlovewith' => 'kär i', + 'relationship_type_inlovewith_female' => 'kär i', + 'relationship_type_inlovewith_with_name' => 'någon :name är kär i', + 'relationship_type_inlovewith_female_with_name' => 'någon :name är kär i', + + 'relationship_type_lovedby' => 'älskad av', + 'relationship_type_lovedby_female' => 'älskad av', + 'relationship_type_lovedby_with_name' => ':name\'s hemliga älskare', + 'relationship_type_lovedby_female_with_name' => ':name\'s hemliga älskarinna', + + 'relationship_type_ex' => 'ex-pojkvän', + 'relationship_type_ex_female' => 'ex-flickvän', + 'relationship_type_ex_with_name' => ':name\'s ex-pojkvän', + 'relationship_type_ex_female_with_name' => ':name\'s ex-flickvän', + + 'relationship_type_parent' => 'far', + 'relationship_type_parent_female' => 'mor', + 'relationship_type_parent_with_name' => ':name\'s far', + 'relationship_type_parent_female_with_name' => ':name\'s mamma', + + 'relationship_type_child' => 'son', + 'relationship_type_child_female' => 'dotter', + 'relationship_type_child_with_name' => ':name\'s son', + 'relationship_type_child_female_with_name' => ':name\'s dotter', + + 'relationship_type_stepparent' => 'styvfar', + 'relationship_type_stepparent_female' => 'styvmor', + 'relationship_type_stepparent_with_name' => ':name\'s styvfar', + 'relationship_type_stepparent_female_with_name' => ':name\'s styvmor', + + 'relationship_type_stepchild' => 'styvson', + 'relationship_type_stepchild_female' => 'styvdotter', + 'relationship_type_stepchild_with_name' => ':name\'s styvson', + 'relationship_type_stepchild_female_with_name' => ':name\'s styvdotter', + + 'relationship_type_sibling' => 'bror', + 'relationship_type_sibling_female' => 'syster', + 'relationship_type_sibling_with_name' => ':name\'s bror', + 'relationship_type_sibling_female_with_name' => ':name\'s syster', + + 'relationship_type_grandparent' => 'farfar/Morfar', + 'relationship_type_grandparent_female' => 'farmor/Mormor', + 'relationship_type_grandparent_with_name' => ':name\'s Farfar/Morfar', + 'relationship_type_grandparent_female_with_name' => ':name\'s Farmor/Mormor', + + 'relationship_type_grandchild' => 'barnbarn', + 'relationship_type_grandchild_female' => 'barnbarn', + 'relationship_type_grandchild_with_name' => ':name\'s barnbarn', + 'relationship_type_grandchild_female_with_name' => ':name\'s barnbarn', + + 'relationship_type_uncle' => 'farbror', + 'relationship_type_uncle_female' => 'moster', + 'relationship_type_uncle_with_name' => ':name\'s farbror', + 'relationship_type_uncle_female_with_name' => ':name\'s moster', + + 'relationship_type_nephew' => 'brorson', + 'relationship_type_nephew_female' => 'systerdotter', + 'relationship_type_nephew_with_name' => ':name\'s brorson', + 'relationship_type_nephew_female_with_name' => ':name\'s systerdotter', + + 'relationship_type_cousin' => 'kusin', + 'relationship_type_cousin_female' => 'kusin', + 'relationship_type_cousin_with_name' => ':name\'s kusin', + 'relationship_type_cousin_female_with_name' => ':name\'s kusin', + + 'relationship_type_godfather' => 'gudfar', + 'relationship_type_godfather_female' => 'gudmor', + 'relationship_type_godfather_with_name' => ':name\'s gudfar', + 'relationship_type_godfather_female_with_name' => ':name\'s gudmamma', + + 'relationship_type_godson' => 'gudson', + 'relationship_type_godson_female' => 'guddotter', + 'relationship_type_godson_with_name' => ':name\'s gudson', + 'relationship_type_godson_female_with_name' => ':name\'s guddotter', + + 'relationship_type_friend' => 'vän', + 'relationship_type_friend_female' => 'vännina', + 'relationship_type_friend_with_name' => ':name\'s vännina', + 'relationship_type_friend_female_with_name' => ':name\'s vän', + + 'relationship_type_bestfriend' => 'bästa vän', + 'relationship_type_bestfriend_female' => 'bästa vän', + 'relationship_type_bestfriend_with_name' => ':name\'s bästa vän', + 'relationship_type_bestfriend_female_with_name' => ':name\'s bästa vän', + + 'relationship_type_colleague' => 'kollega', + 'relationship_type_colleague_female' => 'kollega', + 'relationship_type_colleague_with_name' => ':name\'s kollega', + 'relationship_type_colleague_female_with_name' => ':name\'s kollega', + + 'relationship_type_boss' => 'chef', + 'relationship_type_boss_female' => 'chef', + 'relationship_type_boss_with_name' => ':name\'s chef', + 'relationship_type_boss_female_with_name' => ':name\'s chef', + + 'relationship_type_subordinate' => 'underordnad', + 'relationship_type_subordinate_female' => 'underordnad', + 'relationship_type_subordinate_with_name' => ':name\'s underordnade', + 'relationship_type_subordinate_female_with_name' => ':name\'s underordnade', + + 'relationship_type_mentor' => 'mentor', + 'relationship_type_mentor_female' => 'mentor', + 'relationship_type_mentor_with_name' => ':name\'s mentor', + 'relationship_type_mentor_female_with_name' => ':name\'s mentor', + + 'relationship_type_protege' => 'skyddsling', + 'relationship_type_protege_female' => 'skyddsling', + 'relationship_type_protege_with_name' => ':name\'s skyddsling', + 'relationship_type_protege_female_with_name' => ':name\'s skyddsling', + + 'relationship_type_ex_husband' => 'ex-man', + 'relationship_type_ex_husband_female' => 'ex-fru', + 'relationship_type_ex_husband_with_name' => ':name\'s ex-man', + 'relationship_type_ex_husband_female_with_name' => ':name\'s ex-fru', + + // emotions + 'emotion_primary_love' => 'Kärlek', + 'emotion_primary_joy' => 'Glädje', + 'emotion_primary_surprise' => 'Överraskning', + 'emotion_primary_anger' => 'Ilska', + 'emotion_primary_sadness' => 'Sorg', + 'emotion_primary_fear' => 'Rädsla', + + 'emotion_secondary_affection' => 'Tillgivenhet', + 'emotion_secondary_lust' => 'Lust', + 'emotion_secondary_longing' => 'Längtar', + 'emotion_secondary_cheerfulness' => 'Glädjande', + 'emotion_secondary_zest' => 'Iver', + 'emotion_secondary_contentment' => 'Belåtenhet', + 'emotion_secondary_pride' => 'Stolthet', + 'emotion_secondary_optimism' => 'Optimism', + 'emotion_secondary_enthrallment' => 'Fängslande', + 'emotion_secondary_relief' => 'Lättnad', + 'emotion_secondary_surprise' => 'Förvånad', + 'emotion_secondary_irritation' => 'Irriterad', + 'emotion_secondary_exasperation' => 'Irritation', + 'emotion_secondary_rage' => 'Raseri', + 'emotion_secondary_disgust' => 'Äcklad', + 'emotion_secondary_envy' => 'Avundsjuk', + 'emotion_secondary_suffering' => 'Lidande', + 'emotion_secondary_sadness' => 'Sorgsenhet', + 'emotion_secondary_disappointment' => 'Besvikelse', + 'emotion_secondary_shame' => 'Skam', + 'emotion_secondary_neglect' => 'Försumma', + 'emotion_secondary_sympathy' => 'Sympati', + 'emotion_secondary_horror' => 'Skräck', + 'emotion_secondary_nervousness' => 'Nervositet', + + 'emotion_adoration' => 'Dyrkan', + 'emotion_affection' => 'Tillgivenhet', + 'emotion_love' => 'Kärlek', + 'emotion_fondness' => 'Förkärlek', + 'emotion_liking' => 'Gillar', + 'emotion_attraction' => 'Attraktiv', + 'emotion_caring' => 'Omtänksam', + 'emotion_tenderness' => 'Ömhet', + 'emotion_compassion' => 'Medlidande', + 'emotion_sentimentality' => 'Sentimentalitet', + 'emotion_arousal' => 'Upphetsning', + 'emotion_desire' => 'Åtrå', + 'emotion_lust' => 'Lust', + 'emotion_passion' => 'Passion', + 'emotion_infatuation' => 'Förblindelse', + 'emotion_longing' => 'Längtan', + 'emotion_amusement' => 'Nöjen', + 'emotion_bliss' => 'Överlyckling', + 'emotion_cheerfulness' => 'Glädjande', + 'emotion_gaiety' => 'Munterhet', + 'emotion_glee' => 'Munterhet', + 'emotion_jolliness' => 'Överlycklig', + 'emotion_joviality' => 'Gladlynt', + 'emotion_joy' => 'Glädje', + 'emotion_delight' => 'Fröjd', + 'emotion_enjoyment' => 'Njutning', + 'emotion_gladness' => 'Glad', + 'emotion_happiness' => 'Lycka', + 'emotion_jubilation' => 'Jubel', + 'emotion_elation' => 'Förtjusning', + 'emotion_satisfaction' => 'Tillfredsställelse', + 'emotion_ecstasy' => 'Extas', + 'emotion_euphoria' => 'Eufori', + 'emotion_enthusiasm' => 'Entusiastisk', + 'emotion_zeal' => 'Iver', + 'emotion_zest' => 'Iver', + 'emotion_excitement' => 'Upphetsning', + 'emotion_thrill' => 'Spänning', + 'emotion_exhilaration' => 'Upprymdhet', + 'emotion_contentment' => 'Belåtenhet', + 'emotion_pleasure' => 'Njutning', + 'emotion_pride' => 'Stolt', + 'emotion_eagerness' => 'Ivrighet', + 'emotion_hope' => 'Hopp', + 'emotion_optimism' => 'Optimism', + 'emotion_enthrallment' => 'Fängslande', + 'emotion_rapture' => 'Hänföra', + 'emotion_relief' => 'Lättnad', + 'emotion_amazement' => 'Häpnadsväckande', + 'emotion_surprise' => 'Överraskning', + 'emotion_astonishment' => 'Häpnad', + 'emotion_aggravation' => 'Försvårande', + 'emotion_irritation' => 'Irriterad', + 'emotion_agitation' => 'Agitation', + 'emotion_annoyance' => 'Irritation', + 'emotion_grouchiness' => 'Gnällig', + 'emotion_grumpiness' => 'Grinig', + 'emotion_exasperation' => 'Ursinne', + 'emotion_frustration' => 'Frustration', + 'emotion_anger' => 'Ilska', + 'emotion_rage' => 'Raseri', + 'emotion_outrage' => 'Skandalös', + 'emotion_fury' => 'Ursinne', + 'emotion_wrath' => 'Vrede', + 'emotion_hostility' => 'Fiendskap', + 'emotion_ferocity' => 'Blodtörstig', + 'emotion_bitterness' => 'Bitterhet', + 'emotion_hate' => 'Hat', + 'emotion_loathing' => 'Äcklad', + 'emotion_scorn' => 'Förakt', + 'emotion_spite' => 'Illvilja', + 'emotion_vengefulness' => 'Hämndlysten', + 'emotion_dislike' => 'Ogilla', + 'emotion_resentment' => 'Förbittring', + 'emotion_disgust' => 'Äcklad', + 'emotion_revulsion' => 'Bakslag', + 'emotion_contempt' => 'Förakt', + 'emotion_envy' => 'Avundsjuk', + 'emotion_jealousy' => 'Avundsjuka', + 'emotion_agony' => 'Ångest', + 'emotion_suffering' => 'Lidande', + 'emotion_hurt' => 'Sårad', + 'emotion_anguish' => 'Plåga', + 'emotion_depression' => 'Depression', + 'emotion_despair' => 'Förtvivla', + 'emotion_hopelessness' => 'Hopplöshet', + 'emotion_gloom' => 'Dyster', + 'emotion_glumness' => 'Dysterhet', + 'emotion_sadness' => 'Sorg', + 'emotion_unhappiness' => 'Olycka', + 'emotion_grief' => 'Sorg', + 'emotion_sorrow' => 'Sorg', + 'emotion_woe' => 'Olycka/Elände', + 'emotion_misery' => 'Elände', + 'emotion_melancholy' => 'Melankoli', + 'emotion_dismay' => 'Förfäran', + 'emotion_disappointment' => 'Besvikelse', + 'emotion_displeasure' => 'Missnöje', + 'emotion_guilt' => 'Skuld', + 'emotion_shame' => 'Skam', + 'emotion_regret' => 'Ånger', + 'emotion_remorse' => 'Ångersfull', + 'emotion_alienation' => 'Utanförskap', + 'emotion_isolation' => 'Isolering', + 'emotion_neglect' => 'Försumma', + 'emotion_loneliness' => 'Ensamhet', + 'emotion_rejection' => 'Avvisad', + 'emotion_homesickness' => 'Hemlängtan', + 'emotion_defeat' => 'Nederlag', + 'emotion_dejection' => 'Nedstämdhet', + 'emotion_insecurity' => 'Osäkerhet', + 'emotion_embarrassment' => 'Generad', + 'emotion_humiliation' => 'Förödmjukelse', + 'emotion_insult' => 'Förolämpning', + 'emotion_pity' => 'Medlidande', + 'emotion_sympathy' => 'Sympati', + 'emotion_alarm' => 'Alarm', + 'emotion_shock' => 'Chock', + 'emotion_fear' => 'Rädsla', + 'emotion_fright' => 'Skräck', + 'emotion_horror' => 'Skräck', + 'emotion_terror' => 'Terror', + 'emotion_panic' => 'Panik', + 'emotion_hysteria' => 'Hysteri', + 'emotion_mortification' => 'Förtret', + 'emotion_anxiety' => 'Ångest', + 'emotion_nervousness' => 'Nervositet', + 'emotion_tenseness' => 'Spänd', + 'emotion_uneasiness' => 'Obehaglighet', + 'emotion_apprehension' => 'Oro', + 'emotion_worry' => 'Oroande', + 'emotion_distress' => 'I nöd', + 'emotion_dread' => 'Fruktan', + + // weather + 'weather_clear-day' => 'Klart (dag)', + 'weather_clear-night' => 'Klart (natt)', + 'weather_rain' => 'Regn', + 'weather_snow' => 'Snö', + 'weather_sleet' => 'Nöje', + 'weather_wind' => 'Vind', + 'weather_fog' => 'Dimma', + 'weather_cloudy' => 'Molnigt', + 'weather_partly-cloudy-day' => 'Växlande molnighet (Dag)', + 'weather_partly-cloudy-night' => 'Växlande molnighet (Natt)', + 'weather_current_temperature_celsius' => ':temperatur °C', + 'weather_current_temperature_fahrenheit' => ':temperatur °F', + 'weather_current_title' => 'Aktuell väderikon', + + // dav + 'dav_contacts' => 'Kontakter', + 'dav_contacts_description' => ':name\'s kontakter', + 'dav_birthdays' => 'Födelsedagar', + 'dav_birthdays_description' => ':name\'s kontakter födelsedagar', + 'dav_tasks' => 'Uppgifter', + 'dav_tasks_description' => ':name\'s uppgifter', +]; diff --git a/resources/lang/sv/auth.php b/resources/lang/sv/auth.php new file mode 100644 index 00000000000..aa39d960d01 --- /dev/null +++ b/resources/lang/sv/auth.php @@ -0,0 +1,88 @@ + 'Uppgifterna stämmer inte överrens med våra register.', + 'throttle' => 'För många inloggningsförsök. Vänligen försök igen om :seconds sekunder.', + 'not_authorized' => 'Du har inte behörighet att utföra denna åtgärd', + 'signup_disabled' => 'Registreringen är för närvarande inaktiverad', + 'signup_error' => 'Ett fel inträffade vid försök att registrera användaren', + 'back_homepage' => 'Tillbaka till startsidan', + 'mfa_auth_otp' => 'Autentisera med din tvåfaktorsenhet', + 'mfa_auth_webauthn' => 'Autentisera med en säkerhetsnyckel (WebAuthn)', + '2fa_title' => 'Tvåfaktorsautentisering', + '2fa_wrong_validation' => 'Den tvåfaktorsautentiseringen har misslyckats.', + '2fa_one_time_password' => 'Tvåfaktorsautentiseringskod', + '2fa_recuperation_code' => 'Ange en tvåfaktorsåterställningskod', + '2fa_otp_help' => 'Öppna din tvåfaktorsautentisering mobilapp och kopiera koden', + + 'login_to_account' => 'Logga in på ditt konto', + 'login_with_recovery' => 'Logga in med en återställningskod', + 'login_again' => 'Logga in igen på ditt konto', + 'email' => 'E-post', + 'password' => 'Lösenord', + 'recovery' => 'Återställningskod', + 'login' => 'Logga in', + 'button_remember' => 'Kom ihåg mig', + 'password_forget' => 'Glömt Ditt lösenord?', + 'password_reset' => 'Återställ ditt lösenord', + 'use_recovery' => 'Eller så kan du använda en återställningskod', + 'signup_no_account' => 'Har du inget konto?', + 'signup' => 'Registrera dig', + 'create_account' => 'Skapa det första kontot genom att registrera dig', + 'change_language_title' => 'Växla språk:', + 'change_language' => 'Byt språk till', + + 'password_reset_title' => 'Återställ lösenord', + 'password_reset_email' => 'E-postadress', + 'password_reset_send_link' => 'Skicka lösenordsåterställningslänk', + 'password_reset_password' => 'Lösenord', + 'password_reset_password_confirm' => 'Bekräfta Lösenord', + 'password_reset_action' => 'Återställ lösenord', + 'password_reset_email_content' => 'Klicka här för att återställa ditt lösenord:', + + 'register_title_welcome' => 'Välkommen till din nyinstallerade Monica-instans', + 'register_create_account' => 'Du måste skapa ett konto för att använda Monica', + 'register_title_create' => 'Skapa ditt Monica-konto', + 'register_login' => 'Logga in om du redan har ett konto.', + 'register_email' => 'Ange en giltig e-postadress', + 'register_email_example' => 'du@hem', + 'register_firstname' => 'Förnamn', + 'register_firstname_example' => 'ex: John', + 'register_lastname' => 'Efternamn', + 'register_lastname_example' => 'ex. Svensson', + 'register_password' => 'Lösenord', + 'register_password_example' => 'Ange ett säkert lösenord', + 'register_password_confirmation' => 'Bekräftelse på lösenord', + 'register_action' => 'Registrera', + 'register_policy' => 'Att registrera dig innebär att du har läst och godkänner vår Integritetspolicy och Användarvillkor.', + 'register_invitation_email' => 'Av säkerhetsskäl ber vi dig att ange e-postmeddelandet för den person som har bjudit in dig till detta konto. Denna information finns i e-postmeddelandet med inbjudan.', + + 'confirmation_title' => 'Verifiera e-postadressen', + 'confirmation_fresh' => 'En ny verifieringslänk har skickats till din e-postadress.', + 'confirmation_check' => 'Innan du fortsätter, kontrollera din e-post efter en verifieringslänk.', + 'confirmation_request_another' => 'Om du inte fick e-postmeddelandet klicka här för att begära en annan.', + + 'confirmation_again' => 'Om du vill ändra din e-postadress kan du klicka här.', + 'email_change_current_email' => 'Nuvarande e-postadresser:', + 'email_change_title' => 'Ändra din e-postadress', + 'email_change_new' => 'Ny e-postadress', + 'email_changed' => 'Din e-postadress har ändrats. Kolla din brevlåda för att validera den.', +]; diff --git a/resources/lang/sv/changelog.php b/resources/lang/sv/changelog.php new file mode 100644 index 00000000000..18a1b0d8439 --- /dev/null +++ b/resources/lang/sv/changelog.php @@ -0,0 +1,12 @@ + 'Produkt ändringar', + 'note' => 'Obs: Tyvärr är denna sida endast på engelska.', +]; diff --git a/resources/lang/sv/dashboard.php b/resources/lang/sv/dashboard.php new file mode 100644 index 00000000000..79d1985c7b8 --- /dev/null +++ b/resources/lang/sv/dashboard.php @@ -0,0 +1,42 @@ + 'Välkommen till ditt konto!', + 'dashboard_blank_description' => 'Monica är platsen för att organisera alla de interaktioner du har med de du bryr dig om.', + 'dashboard_blank_cta' => 'Lägg till din första kontakt', + 'dashboard_blank_illustration' => 'Illustration av Freepik', + + 'notes_title' => 'Du har inga stjärnmärkta anteckningar ännu.', + + 'tab_recent_calls' => 'Senaste samtal', + 'tab_favorite_notes' => 'Favoritanteckningar', + 'tab_calls_blank' => 'Du har inte loggat ett samtal än.', + 'tab_debts' => 'Skulder', + 'tab_debts_blank' => 'Du har inte loggat någon skuld ännu.', + 'tab_tasks' => 'Uppgifter', + 'tab_tasks_blank' => 'Du har inte någon uppgift ännu.', + + 'tasks_add_task_placeholder' => 'Vad handlar denna uppgift om?', + 'tasks_tab_your_contacts' => 'Uppgifter relaterade till dina kontakter', + 'tasks_tab_your_tasks' => 'Dina uppgifter', + 'tasks_add_note' => 'Tryck på Enter för att lägga till uppgiften.', + 'task_add_cta' => 'Lägg till en uppgift', + + 'debts_you_owe' => 'Du är skyldig', + + 'statistics_contacts' => 'Kontakter', + 'statistics_activities' => 'Aktiviteter', + 'statistics_gifts' => 'Gåvor', + + 'reminders_next_months' => 'Händelser under de kommande 3 månaderna', + 'reminders_none' => 'Ingen påminnelse för denna månad', + + 'product_changes' => 'Produkt ändringar', + 'product_view_details' => 'Visa detaljer', +]; diff --git a/resources/lang/sv/format.php b/resources/lang/sv/format.php new file mode 100644 index 00000000000..3236a65e76b --- /dev/null +++ b/resources/lang/sv/format.php @@ -0,0 +1,36 @@ + 'd M, Y H:i', + 'short_date_year' => 'd M, Y', + 'short_date' => 'd M', + 'short_month' => 'M', + 'short_month_year' => 'M Y', + 'short_day' => 'D', + 'full_date_year' => 'F d, Y', + 'full_month' => 'F', + 'full_month_year' => 'F Y', + 'full_hour' => 'h.i A', + + 'short_text' => '{text}…', +]; diff --git a/resources/lang/sv/journal.php b/resources/lang/sv/journal.php new file mode 100644 index 00000000000..40690653eae --- /dev/null +++ b/resources/lang/sv/journal.php @@ -0,0 +1,30 @@ + 'Hur var din dag? Du kan betygsätta den en gång om dagen.', + 'journal_come_back' => 'Tack. Kom tillbaka imorgon för att betygsätta din dag igen.', + 'journal_description' => 'Obs: tidskriften listar både manuella journalposter och automatiska poster som Aktiviteter gjorda med dina kontakter. Medan du kan ta bort journalposter manuellt, måste du ta bort aktiviteten direkt på kontaktsidan.', + 'journal_add' => 'Lägg till en journalpost', + 'journal_edit' => 'Redigera en journalpost', + 'journal_empty' => 'Tom journal', + 'journal_created_automatically' => 'Skapad automatiskt', + 'journal_entry_type_journal' => 'Journalpost', + 'journal_entry_type_activity' => 'Aktivitet', + 'journal_entry_rate' => 'Du betygsatte din dag.', + 'journal_add_comment' => 'Vill du lägga till en kommentar (valfritt)?', + 'journal_show_comment' => 'Visa kommentar', + 'entry_delete_success' => 'Journalposten har tagits bort.', + 'journal_add_title' => 'Titel (valfritt)', + 'journal_add_date' => 'Datum', + 'journal_add_post' => 'Inlägg', + 'journal_add_cta' => 'Spara', + 'journal_blank_cta' => 'Lägg till din första journalpost', + 'journal_blank_description' => 'Tidskriften låter dig skriva händelser som hände dig, och kom ihåg dem.', + 'delete_confirmation' => 'Är du säker på att du vill ta bort denna journalpost?', +]; diff --git a/resources/lang/sv/logs.php b/resources/lang/sv/logs.php new file mode 100644 index 00000000000..aa24ef35713 --- /dev/null +++ b/resources/lang/sv/logs.php @@ -0,0 +1,33 @@ + 'Skapade kontakten.', + 'settings_log_contact_created_with_name' => 'Lade till :name som en kontakt.', + 'settings_log_contact_created_with_name_with_link' => 'Lade till :name som en kontakt.', + + // contat description update + 'contact_log_contact_description_updated' => 'Uppdaterade beskrivningen.', + 'settings_log_contact_description_updated_with_name' => 'Uppdaterade beskrivningen av :name.', + 'settings_log_contact_description_updated_with_name_with_link' => 'Uppdaterad beskrivning av :name.', + + // contact description clear + 'contact_log_contact_description_cleared' => 'Rensade beskrivningen.', + 'settings_log_contact_description_cleared_with_name' => 'Rensade beskrivningen av :name.', + 'settings_log_contact_description_cleared_with_name_with_link' => 'Rensade beskrivningen av :name.', + + // contact work information update + 'contact_log_contact_work_updated' => 'Uppdaterade jobb information.', + 'settings_log_contact_work_updated_with_name' => 'Uppdaterade jobb information för :name.', + 'settings_log_contact_work_updated_with_name_with_link' => 'Uppdaterade jobb information för :name.', + + // company created + 'settings_log_company_created' => 'Skapade ett företag som heter :name.', +]; diff --git a/resources/lang/sv/mail.php b/resources/lang/sv/mail.php new file mode 100644 index 00000000000..c6b4ad18de6 --- /dev/null +++ b/resources/lang/sv/mail.php @@ -0,0 +1,48 @@ + 'Påminnelse om :contact', + 'greetings' => 'Hej :username', + 'want_reminded_of' => 'Du ville bli påmind om :reason', + 'for' => 'För: :name', + 'comment' => 'Kommentar: :comment', + 'footer_contact_info' => 'Lägg till, visa, komplettera och ändra information om denna kontakt:', + 'footer_contact_info2' => 'Se :name\'s profil', + 'footer_contact_info2_link' => 'Se :name’s profil: :url', + + 'notification_subject_line' => 'Du har en kommande händelse', + 'notification_description' => 'Om :count dagar (på :date) kommer följande händelse att hända:', + + 'stay_in_touch_subject_line' => 'Håll kontakten med :name', + 'stay_in_touch_subject_description' => 'Du bad om att bli påmind om att hålla kontakten med :name varje :frequency dag. Du bad om att bli påmind om att hålla kontakten med :name varje :frequency dagar.', + + 'notifications_whoops' => 'Hoppsan!', + 'notifications_hello' => 'Hej!', + 'notifications_regards' => 'Hälsningar', + 'notifications_footer' => 'Om du har problem med att klicka på knappen ":actionText", kopiera och klistra in URL:en nedan i din webbläsare: [:actionURL](:actionURL)', + 'notifications_rights' => 'Alla rättigheter reserverade', + + 'confirmation_email_title' => 'Monica – e-postverifiering', + 'confirmation_email_intro'=> 'För att validera din e-post klicka på knappen nedan', + 'confirmation_email_button' => 'Verifiera e-postadress', + 'confirmation_email_bottom' => 'Om du inte har skapat ett konto krävs inga ytterligare åtgärder.', + + 'password_reset_title' => 'Monica – Återställ lösenordsmeddelanden', + 'password_reset_intro' => 'Du får detta e-postmeddelande eftersom vi fick en begäran om återställning av lösenord för ditt konto.', + 'password_reset_button' => 'Återställ lösenord', + 'password_reset_expiration' => 'Denna länk för återställning av lösenord kommer att löpa ut om :count minuter.', + 'password_reset_bottom' => 'Om du inte har begärt en återställning av lösenordet krävs ingen ytterligare åtgärd.', + + 'invitation_title' => 'Monica – Du är inbjuden till :name', + 'invitation_intro' => 'Du har blivit inbjuden av :name (:email) för att använda Monica, ett trevligt Personligt Relationship Management-verktyg.', + 'invitation_link' => 'För att acceptera inbjudan, klicka på länken nedan:', + 'invitation_button' => 'Acceptera inbjudan', + 'invitation_expiration' => 'Denna länk löper ut om :count dagar.', +]; diff --git a/resources/lang/sv/pagination.php b/resources/lang/sv/pagination.php new file mode 100644 index 00000000000..6cb33f2783d --- /dev/null +++ b/resources/lang/sv/pagination.php @@ -0,0 +1,25 @@ + '< Föregående', + 'next' => 'Nästa ❯', + +]; diff --git a/resources/lang/sv/passwords.php b/resources/lang/sv/passwords.php new file mode 100644 index 00000000000..c1cd6bb0bd4 --- /dev/null +++ b/resources/lang/sv/passwords.php @@ -0,0 +1,30 @@ + 'Ditt lösenord har återställts!', + 'sent' => 'Om e-postmeddelandet du angav finns i våra register, har du fått en länk för att återställa lösenordet.', + 'token' => 'Denna återställningstoken för lösenord är ogiltig.', + 'user' => 'Om e-postmeddelandet du angav finns i våra register, har du fått en länk för att återställa lösenordet.', + 'changed' => 'Lösenordet har ändrats.', + 'invalid' => 'Nuvarande lösenord du angav är inte korrekt.', + 'throttled' => 'Vänta innan du försöker igen.', + +]; diff --git a/resources/lang/sv/people.php b/resources/lang/sv/people.php new file mode 100644 index 00000000000..7595e3e0cb4 --- /dev/null +++ b/resources/lang/sv/people.php @@ -0,0 +1,534 @@ + 'Kontakt hittades ej', + 'people_list_number_kids' => '1 barn|:count barn', + 'people_list_last_updated' => 'Senast kontakt:', + 'people_list_number_reminders' => '1 påminnelse|:count påminnelser', + 'people_list_blank_title' => 'Du har ingen på ditt konto ännu', + 'people_list_blank_cta' => 'Lägg till en person', + 'people_list_sort' => 'Sortera', + 'people_list_stats' => '1 kontakt|:count kontakter', + 'people_list_firstnameAZ' => 'Sortera efter förnamn A → Ö', + 'people_list_firstnameZA' => 'Sortera efter förnamn Ö → A', + 'people_list_lastnameAZ' => 'Sortera efter efternamn A → Ö', + 'people_list_lastnameZA' => 'Sortera efter efternamn Ö → A', + 'people_list_lastactivitydateNewtoOld' => 'Sortera efter senaste aktivitetsdatum nyaste till äldsta', + 'people_list_lastactivitydateOldtoNew' => 'Sortera efter senaste aktivitetsdatum äldsta till nyaste', + 'people_list_filter_tag' => 'Visar alla kontakter taggade med', + 'people_list_clear_filter' => 'Töm filter', + 'people_list_contacts_per_tags' => '1 kontakt|:count kontakter', + 'people_list_show_dead' => 'Visa avlidna personer (:count)', + 'people_list_hide_dead' => 'Dölj avlidna personer (:count)', + 'people_search' => 'Sök efter kontakt...', + 'people_search_no_results' => 'Inga resultat hittades', + 'people_search_next' => 'Nästa', + 'people_search_prev' => 'Föregående', + 'people_search_rows_per_page' => 'Rader per sida:', + 'people_search_of' => 'av', + 'people_search_page' => 'Sida', + 'people_search_all' => 'Alla', + 'people_add_new' => 'Lägg till ny person', + 'people_list_account_usage' => 'Din kontoanvändning: :current/:limit kontakter', + 'people_list_account_upgrade_title' => 'Uppgradera ditt konto för att låsa upp det till dess fulla potential.', + 'people_list_account_upgrade_cta' => 'Uppgradera nu', + 'people_list_untagged' => 'Visa ej taggade kontakter', + 'people_list_filter_untag' => 'Visar alla omarkerade kontakter', + + // people add + 'people_add_title' => 'Lägg till en ny person', + 'people_add_missing' => 'Ingen person hittade Lägg till en ny nu', + 'people_add_firstname' => 'Förnamn', + 'people_add_middlename' => 'Mellannamn (valfritt)', + 'people_add_lastname' => 'Efternamn (valfritt)', + 'people_add_nickname' => 'Smeknamn (valfritt)', + 'people_add_cta' => 'Lägg till', + 'people_save_and_add_another_cta' => 'Skicka in och lägg till någon annan', + 'people_add_success' => ':name har skapats', + 'people_add_gender' => 'Kön', + 'people_delete_success' => 'Kontakten har tagits bort', + 'people_delete_message' => 'Ta bort kontakt', + 'people_delete_confirmation' => 'Är du säker på att du vill ta bort denna kontakt? Borttagning är permanent.', + 'people_add_birthday_reminder' => 'Önska födelsedag till :name', + 'people_add_birthday_reminder_deceased' => 'På detta datum, skulle :name, ha firat sin födelsedag', + 'people_add_import' => 'Vill du importera dina kontakter?', + 'people_edit_email_error' => 'Det finns redan en kontakt på ditt konto med denna e-postadress. Välj en annan.', + 'people_export' => 'Exportera som vCard', + 'people_add_reminder_for_birthday' => 'Skapa en årlig påminnelse för födelsedagen', + + // show + 'section_contact_information' => 'Kontaktuppgifter', + 'section_personal_activities' => 'Aktiviteter', + 'section_personal_reminders' => 'Påminnelser', + 'section_personal_tasks' => 'Uppgifter', + 'section_personal_gifts' => 'Gåvor', + 'section_personal_notes' => 'Anteckningar', + + // archived contacts + 'list_link_to_active_contacts' => 'Du visar arkiverade kontakter. Se listan över aktiva kontakter istället.', + 'list_link_to_archived_contacts' => 'Lista över arkiverade kontakter', + + // Header + 'me' => 'Detta är du', + 'edit_contact_information' => 'Redigera kontaktinformation', + 'contact_archive' => 'Arkivera kontakt', + 'contact_unarchive' => 'Avarkivera kontakt', + 'contact_archive_help' => 'Arkiverade kontakter visas inte på kontaktlistan, men visas fortfarande i sökresultaten.', + 'call_button' => 'Logga ett samtal', + 'set_favorite' => 'Favoritkontakter placeras högst upp i kontaktlistan', + + // Stay in touch + 'stay_in_touch' => 'Håll kontakten', + 'stay_in_touch_frequency' => 'Håll kontakten varje dag|Håll kontakten var {count} dag', + 'stay_in_touch_invalid' => 'Frekvensen måste vara större än 0.', + 'stay_in_touch_premium' => 'Du måste uppgradera ditt konto för att använda denna funktion', + 'stay_in_touch_modal_title' => 'Håll kontakten', + 'stay_in_touch_modal_desc' => 'Vi kan påminna dig via e-post om att hålla 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', + + // Calls + 'modal_call_title' => 'Registrera samtal', + 'modal_call_comment' => 'Vad pratade ni om? (valfritt)', + 'modal_call_exact_date' => 'Samtalet skedde den', + 'modal_call_who_called' => 'Vem ringde?', + 'modal_call_emotion' => 'Vill du logga hur du kände dig under detta samtal? (valfritt)', + 'calls_add_success' => 'Samtalet har sparats.', + 'call_delete_confirmation' => 'Är du säker på att du vill ta bort detta samtal?', + 'call_delete_success' => 'Samtalet har tagits bort', + 'call_title' => 'Telefonsamtal', + 'call_empty_comment' => 'Inga detaljer', + 'call_blank_title' => 'Håll koll på de telefonsamtal du gjort med {name}', + 'call_blank_desc' => 'Du ringde {name}', + 'call_you_called' => 'Du ringde', + 'call_he_called' => '{name} ringde', + 'call_emotions' => 'Känslor:', + + // Conversation + 'conversation_blank' => 'Spela in samtal du har med :name på sociala medier, SMS, ...', + 'conversation_delete_link' => 'Ta bort konversationen', + 'conversation_edit_title' => 'Redigera konversation', + 'conversation_edit_delete' => 'Är du säker på att du vill ta bort denna konversation? Borttagning är permanent.', + 'conversation_add_success' => 'Samtalet har lagts till.', + 'conversation_edit_success' => 'Samtalet har uppdaterats.', + 'conversation_delete_success' => 'Konversationen har tagits bort.', + 'conversation_add_title' => 'Spela in en ny konversation', + 'conversation_add_when' => 'När hade du den här konversationen?', + 'conversation_add_who_wrote' => 'Vem har sagt detta meddelande?', + 'conversation_add_how' => 'Hur kommunicerade du?', + 'conversation_add_you' => 'Du', + 'conversation_add_content' => 'Skriv ner vad som sades', + 'conversation_add_what_was_said' => 'Vad sade du?', + 'conversation_add_another' => 'Lägg till ett annat meddelande', + 'conversation_add_error' => 'Du måste lägga till minst ett meddelande.', + 'conversation_list_table_messages' => 'Meddelanden', + 'conversation_list_table_content' => 'Partiellt innehåll (senaste meddelande)', + 'conversation_list_title' => 'Konversationer', + 'conversation_list_cta' => 'Logga konversation', + + // age - birthday + 'birthdate_not_set' => 'Födelsedatum är inte inställt', + 'age_approximate_in_years' => 'runt :age år gammal', + 'age_exact_in_years' => ':age år gammal', + 'age_exact_birthdate' => 'född :date', + + // Last called + 'last_called' => 'Senast anropad: :date', + 'last_called_empty' => 'Senast anropad: okänd', + 'last_activity_date' => 'Senaste aktiviteten tillsammans: :date', + 'last_activity_date_empty' => 'Senaste aktiviteten tillsammans: okänd', + + // additional information + 'information_edit_success' => 'Profilen har uppdaterats', + 'information_edit_title' => 'Redigera :name\'s personliga information', + 'information_edit_max_size' => 'Max :size Kb.', + 'information_edit_max_size2' => 'Max {size} Kb.', + 'information_edit_firstname' => 'Förnamn', + 'information_edit_lastname' => 'Efternamn (valfritt)', + 'information_edit_description' => 'Beskrivning (valfritt)', + 'information_edit_description_help' => 'Används på kontaktlistan för att vid behov lägga till lite kontext.', + 'information_edit_unknown' => 'Jag känner inte till personens ålder', + 'information_edit_probably' => 'Denna person är förmodligen...', + 'information_edit_not_year' => 'Jag vet dag och månad av födelsedatum för denna person, men inte året…', + 'information_edit_exact' => 'Jag vet exakt födelsedatum för denna person...', + 'information_edit_birthdate_label' => 'Födelsedatum', + 'information_no_work_defined' => 'Ingen arbetsinformation angiven', + 'information_work_at' => 'vid :company', + 'work_add_cta' => 'Uppdatera arbetsinformation', + 'work_edit_success' => 'Arbetsinformationen har uppdaterats med framgång', + 'work_edit_title' => 'Uppdatera :name\'s jobbinformation', + 'work_edit_job' => 'Jobbtitel (valfritt)', + 'work_edit_company' => 'Företag (valfritt)', + 'work_information' => 'Information om arbete', + + // food preferences + 'food_preferences_add_success' => 'Matinställningar har sparats', + 'food_preferences_edit_description' => 'Kanske :förnamn eller någon i familjen :family har en allergi. Eller inte gillar en viss flaska vin. Ange dem här så att du kommer ihåg det nästa gång du bjuder in dem till middag', + 'food_preferences_edit_description_no_last_name' => 'Kanske : förnamn har en allergi, eller inte gillar en viss flaska vin. Ange dem här så att du kommer ihåg det nästa gång du bjuder in dem till middag', + 'food_preferences_edit_title' => 'Ange matpreferenser', + 'food_preferences_edit_cta' => 'Spara matpreferenser', + 'food_preferences_title' => 'Inställningar för mat', + 'food_preferences_cta' => 'Lägg till matpreferenser', + + // reminders + 'reminders_blank_title' => 'Finns det något du vill bli påmind om :name?', + 'reminders_blank_add_activity' => 'Lägg till en påminnelse', + 'reminders_add_title' => 'Vad skulle du vilja bli påmind om :name?', + 'reminders_add_description' => 'Var snäll och påminn mig om...', + 'reminders_add_next_time' => 'När är nästa gång du vill bli påmind om detta?', + 'reminders_add_once' => 'Påminn mig om detta bara en gång', + 'reminders_add_recurrent' => 'Påminn mig om detta varje', + 'reminders_add_starting_from' => 'från och med det datum som anges ovan', + 'reminders_add_cta' => 'Lägg till påminnelse', + 'reminders_edit_update_cta' => 'Uppdatera påminnelse', + 'reminders_add_error_custom_text' => 'Du måste ange en text för denna påminnelse', + 'reminders_create_success' => 'Påminnelsen har lagts till', + 'reminders_delete_success' => 'Påminnelsen har tagits bort', + 'reminders_update_success' => 'Påminnelsen har uppdaterats', + 'reminders_add_optional_comment' => 'Valfri kommentar', + + 'reminder_frequency_day' => 'varje dag|var :number dag', + 'reminder_frequency_week' => 'varje vecka|var :number vecka', + 'reminder_frequency_month' => 'varje månad|var :number månad', + 'reminder_frequency_year' => 'varje år|vart :number år', + 'reminder_frequency_one_time' => 'den :date', + 'reminders_delete_confirmation' => 'Är du säker på att du vill ta bort denna påminnelse?', + 'reminders_delete_cta' => 'Radera', + 'reminders_next_expected_date' => 'på', + 'reminders_cta' => 'Lägg till en påminnelse', + 'reminders_description' => 'Vi kommer att skicka ett mail för var och en av påminnelserna nedan. Påminnelser skickas varje morgon då händelser kommer att hända. Påminnelser som läggs till automatiskt för födelsedatum kan inte raderas. Om du vill ändra dessa datum, redigera födelsedatum för kontakterna.', + 'reminders_one_time' => 'En gång', + 'reminders_type_week' => 'vecka', + 'reminders_type_month' => 'månad', + 'reminders_type_year' => 'år', + 'reminders_birthday' => ':name\'s födelsedag', + 'reminders_free_plan_warning' => 'Du är på den fria planen. Inga e-postmeddelanden skickas på denna plan. För att få dina påminnelser via e-post, uppgradera ditt konto.', + + // relationships + 'relationship_form_add' => 'Lägg till ett nytt förhållande', + 'relationship_form_edit' => 'Redigera ett befintligt förhållande', + 'relationship_form_is_with' => 'Denna person är...', + 'relationship_form_is_with_name' => ':name är...', + 'relationship_form_add_choice' => 'Vem är relationen med?', + 'relationship_form_create_contact' => 'Lägg till en ny person', + 'relationship_form_associate_contact' => 'En befintlig kontakt', + 'relationship_form_associate_dropdown' => 'Sök och välj en befintlig kontakt i menyn nedan', + 'relationship_form_associate_dropdown_placeholder' => 'Sök och välj en befintlig kontakt', + 'relationship_form_also_create_contact' => 'Skapa en kontaktpost för denna person.', + 'relationship_form_add_description' => 'Detta kommer att låta 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_delete_confirmation' => 'Är du säker på att du vill ta bort detta förhållande? Borttagning är permanent.', + 'relationship_unlink_confirmation' => 'Är du säker på att du vill ta bort detta förhållande? Denna person kommer inte att tas bort – bara förhållandet mellan de två.', + 'relationship_form_add_success' => 'Relationen har fastställts framgångsrikt.', + 'relationship_form_deletion_success' => 'Relationen har tagits bort.', + + // tasks + 'tasks_title' => 'Uppgifter', + 'tasks_blank_title' => 'Du har inga uppgifter ännu.', + 'tasks_form_title' => 'Titel', + 'tasks_form_description' => 'Beskrivning (valfritt)', + 'tasks_add_task' => 'Lägg till en uppgift', + 'tasks_delete_success' => 'Uppgiften har tagits bort', + 'tasks_complete_success' => 'Uppgiften har ändrat status', + + // activities + 'activity_title' => 'Aktiviteter', + 'activity_type_category_simple_activities' => 'Enkla aktiviteter', + 'activity_type_category_sport' => 'Sport', + 'activity_type_category_food' => 'Mat', + 'activity_type_category_cultural_activities' => 'Kulturella aktiviteter', + 'activity_type_just_hung_out' => 'hängde precis ut', + 'activity_type_watched_movie_at_home' => 'såg en film hemma', + 'activity_type_talked_at_home' => 'precis pratat hemma', + 'activity_type_did_sport_activities_together' => 'spelade en sport tillsammans', + 'activity_type_ate_at_his_place' => 'åt hemma hos sig', + 'activity_type_went_bar' => 'gick till en bar', + 'activity_type_ate_at_home' => 'åt hemma', + 'activity_type_picnicked' => 'utflykt', + 'activity_type_ate_restaurant' => 'åt på en restaurang', + 'activity_type_went_theater' => 'gick till teatern', + 'activity_type_went_concert' => 'gick till en konsert', + 'activity_type_went_play' => 'gick till en pjäs', + 'activity_type_went_museum' => 'gick till museet', + 'activities_add_activity' => 'Lägg till aktivitet', + 'activities_add_more_details' => 'Lägg till fler detaljer', + 'activities_add_emotions' => 'Lägg till känslor', + 'activities_add_category' => 'Ange en kategori', + 'activities_add_participants_cta' => 'Lägg till deltagare', + 'activities_item_information' => ':Activity. Hänt :date', + 'activities_add_title' => 'Vad gjorde du med {name}?', + 'activities_summary' => 'Beskriv vad du gjorde', + 'activities_add_pick_activity' => '(Valfritt) Vill du kategorisera denna aktivitet? Du behöver inte, men det kommer att ge dig statistik senare', + 'activities_add_date_occured' => 'Aktiviteten skedde på...', + 'activities_add_participants' => 'Vem deltog förutom {name} i denna aktivitet? (valfritt)', + 'activities_add_emotions_title' => 'Vill du logga hur du kände dig under detta samtal? (valfritt)', + 'activities_blank_title' => 'Håll koll på vad du har gjort med {name} tidigare och vad du har pratat om', + 'activities_blank_add_activity' => 'Lägg till en aktivitet', + 'activities_add_success' => 'Aktiviteten har lagts till', + 'activities_add_error' => 'Fel när aktiviteten lades till', + 'activities_update_success' => 'Aktiviteten har uppdaterats', + 'activities_delete_success' => 'Aktiviteten har tagits bort', + 'activities_who_was_involved' => 'Vem var inblandad?', + 'activities_activity' => 'Aktivitetskategori', + 'activities_view_activities_report' => 'Visa aktivitetsrapport', + 'activities_profile_title' => 'Aktiviteter rapport mellan :name och dig', + 'activities_profile_subtitle' => 'Du har loggat :total_activities aktivitet med :name totalt och :aktiviteter_last_tolve_months under de senaste 12 månaderna hittills.|Du har loggat :total_activities aktiviteter med :name totalt och :aktiviteter_last_tolve_months under de senaste 12 månaderna hittills.', + 'activities_profile_year_summary_activity_types' => 'Här är en uppdelning av den typ av aktiviteter du har gjort tillsammans :year', + 'activities_profile_year_summary' => 'Här är vad ni två har gjort :year', + 'activities_profile_number_occurences' => ':value aktivitet|:value aktiviteter', + 'activities_list_participants' => 'Deltagare:', + 'activities_list_emotions' => 'Känslor jag kände:', + 'activities_list_date' => 'Hänt på', + 'activities_list_category' => 'Kategori:', + + // notes + 'notes_create_success' => 'Anteckningen har skapats', + 'notes_update_success' => 'Anteckningen har sparats', + 'notes_delete_success' => 'Anteckningen har tagits bort', + 'notes_add_cta' => 'Lägg till anteckning', + 'notes_favorite' => 'Lägg till/ta bort från favoriter', + 'notes_delete_title' => 'Ta bort en anteckning', + 'notes_delete_confirmation' => 'Är du säker på att du vill ta bort denna anteckning? Radering är permanent', + + // gifts + 'gifts_title' => 'Gåvor', + 'gifts_add_success' => 'Gåvan har lagts till', + 'gifts_delete_success' => 'Gåvan har tagits bort', + 'gifts_delete_confirmation' => 'Är du säker på att du vill ta bort denna gåva?', + 'gifts_add_gift' => 'Lägg till en gåva', + 'gifts_link' => 'Länk', + 'gifts_for' => 'För: {name}', + 'gifts_delete_cta' => 'Radera', + 'gifts_add_title' => 'Gåvohantering för :name', + 'gifts_add_gift_idea' => 'Gåva idé', + 'gifts_add_gift_already_offered' => 'Erbjuden gåvan', + 'gifts_add_gift_received' => 'Gåva mottagen', + 'gifts_add_gift_title' => 'Vad är denna gåva?', + 'gifts_add_gift_name' => 'Gåvans namn', + 'gifts_add_link' => 'Länk till webbsidan (valfritt)', + 'gifts_add_value' => 'Värde (valfritt)', + 'gifts_add_comment' => 'Kommentar (valfritt)', + 'gifts_add_recipient' => 'Mottagare (valfritt)', + 'gifts_add_recipient_field' => 'Mottagare', + 'gifts_add_photo' => 'Foto (valfritt)', + 'gifts_add_photo_title' => 'Lägg till ett foto för denna gåva', + 'gifts_add_someone' => 'Denna gåva är till för någon i {name} familj i synnerhet', + 'gifts_delete_title' => 'Ta bort en gåva', + 'gifts_ideas' => 'Gåva idéer', + 'gifts_offered' => 'Erbjudna gåvor', + 'gifts_offered_as_an_idea' => 'Markera som en idé', + 'gifts_received' => 'Gåvor mottagna', + 'gifts_view_comment' => 'Visa kommentar', + 'gifts_mark_offered' => 'Markera som erbjuden', + 'gifts_update_success' => 'Gåvan har uppdaterats', + + // debts + 'debt_delete_confirmation' => 'Är du säker på att du vill ta bort denna skuld?', + 'debt_delete_success' => 'Skulden har tagits bort', + 'debt_add_success' => 'Skulden har lagts till', + 'debt_title' => 'Skulder', + 'debt_add_cta' => 'Lägg till skuld', + 'debt_you_owe' => 'Du är skyldig :amount', + 'debt_they_owe' => ':name är skyldig dig :amount', + 'debt_add_title' => 'Skuldhantering', + 'debt_add_you_owe' => 'Du är skyldig :name', + 'debt_add_they_owe' => ':name är skyldig dig', + 'debt_add_amount' => 'summan av', + 'debt_add_reason' => 'av följande skäl (valfritt)', + 'debt_add_add_cta' => 'Lägg till skuld', + 'debt_edit_update_cta' => 'Uppdatera skuld', + 'debt_edit_success' => 'Skulden har uppdaterats', + 'debts_blank_title' => 'Hantera skulder du är skyldig :name eller :name är du skyldig', + + // tags + 'tag_edit' => 'Redigera tagg', + 'tag_add' => 'Lägg till taggar', + 'tag_add_search' => 'Lägg till eller sök taggar', + 'tag_no_tags' => 'Inga taggar ännu', + + // Introductions + 'introductions_sidebar_title' => 'Hur du träffades', + 'introductions_blank_cta' => 'Ange hur du träffade :name', + 'introductions_title_edit' => 'Hur träffade du :name?', + 'introductions_additional_info' => 'Förklara hur och var du träffades', + 'introductions_edit_met_through' => 'Har någon introducerat dig till den här personen?', + 'introductions_no_met_through' => 'Ingen', + 'introductions_first_met_date' => 'Datum som ni träffades', + 'introductions_no_first_met_date' => 'Jag vet inte vilket datum vi träffades', + 'introductions_first_met_date_known' => 'Detta är det datum vi möttes', + 'introductions_add_reminder' => 'Lägg till en påminnelse för att fira detta möte på årsdagen denna händelse hände', + 'introductions_update_success' => 'Du har uppdaterat informationen om hur du träffade den här personen', + 'introductions_met_through' => 'Möttes genom :name', + 'introductions_met_date' => 'Träffades den :date', + 'introductions_reminder_title' => 'Årsdagen av dagen du träffade första gången', + + // Deceased + 'deceased_reminder_title' => 'Årsdag av bortgång av :name', + 'deceased_mark_person_deceased' => 'Markera denna person som avliden', + 'deceased_know_date' => 'Jag vet vilket datum personen avled', + 'deceased_add_reminder' => 'Lägg till en påminnelse för detta datum', + 'deceased_label' => 'Avlidna', + 'deceased_date_label' => 'Datum av bortgång', + 'deceased_label_with_date' => 'Datum bortgång :date', + 'deceased_age' => 'Ålder vid avldining', + + // Contact information + 'contact_info_title' => 'Kontaktinformation', + 'contact_info_form_content' => 'Innehåll', + 'contact_info_form_contact_type' => 'Typ av kontakt', + 'contact_info_form_personalize' => 'Anpassa', + 'contact_info_address' => 'Bor i', + + // Addresses + 'contact_address_title' => 'Adresser', + 'contact_address_form_name' => 'Etikett (valfritt)', + 'contact_address_form_street' => 'Gatuadress (valfri)', + 'contact_address_form_city' => 'Stad (valfritt)', + 'contact_address_form_province' => 'Län (valfritt)', + 'contact_address_form_postal_code' => 'Postnummer (valfritt)', + 'contact_address_form_country' => 'Land (valfritt)', + 'contact_address_form_latitude' => 'Latitud (endast siffror) (valfritt)', + 'contact_address_form_longitude' => 'Longitud (endast nummer) (valfritt)', + + // Pets + 'pets_kind' => 'Typ av husdjur', + 'pets_name' => 'Namn (frivilligt)', + 'pets_create_success' => 'Husdjuret har lagts till', + 'pets_update_success' => 'Husdjuret har uppdaterats', + 'pets_delete_success' => 'Husdjuret har tagits bort', + 'pets_title' => 'Husdjur', + 'pets_reptile' => 'Reptil', + 'pets_bird' => 'Fågel', + 'pets_cat' => 'Katt', + 'pets_dog' => 'Hund', + 'pets_fish' => 'Fisk', + 'pets_hamster' => 'Hamster', + 'pets_horse' => 'Häst', + 'pets_rabbit' => 'Kanin', + 'pets_rat' => 'Råtta', + 'pets_small_animal' => 'Små djur', + 'pets_other' => 'Övriga', + + // life events + 'life_event_list_tab_life_events' => 'Livshändelser', + 'life_event_list_tab_other' => 'Anteckningar, påminnelser, ...', + 'life_event_list_title' => 'Livshändelser', + 'life_event_blank' => 'Logga vad som händer med livet för {name} för din framtida referens.', + 'life_event_list_cta' => 'Lägg till livshändelse', + 'life_event_create_category' => 'Alla kategorier', + 'life_event_create_life_event' => 'Lägg till livshändelse', + 'life_event_create_default_title' => 'Titel (valfritt)', + 'life_event_create_default_story' => 'Berättelse (valfritt)', + 'life_event_create_date' => 'Du behöver inte ange en månad eller en dag - bara året är obligatoriskt.', + 'life_event_create_default_description' => 'Lägg till information om vad du vet', + 'life_event_create_add_yearly_reminder' => 'Lägg till en årlig påminnelse för denna händelse', + 'life_event_create_success' => 'Livshändelsen har lagts till', + 'life_event_delete_title' => 'Ta bort en livshändelse', + 'life_event_delete_description' => 'Är du säker på att du vill ta bort denna livshändelse? Borttagning är permanent.', + 'life_event_delete_success' => 'Livshändelsen har tagits bort', + 'life_event_date_it_happened' => 'Datum det hände', + 'life_event_category_work_education' => 'Arbete & utbildning', + 'life_event_category_family_relationships' => 'Familj & relationer', + 'life_event_category_home_living' => 'Hem & Boende', + 'life_event_category_health_wellness' => 'Hälsa & välmående', + 'life_event_category_travel_experiences' => 'Resor & upplevelser', + 'life_event_sentence_new_job' => 'Började på ett nytt jobb', + 'life_event_sentence_retirement' => 'Pensionerad', + 'life_event_sentence_new_school' => 'Började på skola', + 'life_event_sentence_study_abroad' => 'Studerade utomlands', + 'life_event_sentence_volunteer_work' => 'Började volontärarbeta', + 'life_event_sentence_published_book_or_paper' => 'Publicerat ett papper', + 'life_event_sentence_military_service' => 'Värnplikt', + 'life_event_sentence_new_relationship' => 'Började ett förhållande', + 'life_event_sentence_engagement' => 'Förlovade mig', + 'life_event_sentence_marriage' => 'Gifte mig', + 'life_event_sentence_anniversary' => 'Årsdag', + 'life_event_sentence_expecting_a_baby' => 'Förväntar sig ett barn', + 'life_event_sentence_new_child' => 'Fick barn', + 'life_event_sentence_new_family_member' => 'Lade till en familjemedlem', + 'life_event_sentence_new_pet' => 'Fick ett husdjur', + 'life_event_sentence_end_of_relationship' => 'Avslutade ett förhållande', + 'life_event_sentence_loss_of_a_loved_one' => 'Bortgång av närstående', + 'life_event_sentence_moved' => 'Flyttade', + 'life_event_sentence_bought_a_home' => 'Köpte ett hem', + 'life_event_sentence_home_improvement' => 'Förbättrade och renoverade hemmet', + 'life_event_sentence_holidays' => 'Åkte på semester', + 'life_event_sentence_new_vehicle' => 'Fick ett nytt fordon', + 'life_event_sentence_new_roommate' => 'Fick en rumskompis', + 'life_event_sentence_overcame_an_illness' => 'Övervann en sjukdom', + 'life_event_sentence_quit_a_habit' => 'Avslutade en vana', + 'life_event_sentence_new_eating_habits' => 'Började nya matvanor', + 'life_event_sentence_weight_loss' => '"Gå ner i vikt"', + 'life_event_sentence_wear_glass_or_contact' => 'Började bära glasögon eller kontaktlinser', + 'life_event_sentence_broken_bone' => 'Bröt ett ben', + 'life_event_sentence_removed_braces' => 'Tog bort tandställning', + 'life_event_sentence_surgery' => 'Hade operation', + 'life_event_sentence_dentist' => 'Gick till tandläkaren', + 'life_event_sentence_new_sport' => 'Började med sport', + 'life_event_sentence_new_hobby' => 'Började med en hobby', + 'life_event_sentence_new_instrument' => 'Lärde mig ett nytt instrument', + 'life_event_sentence_new_language' => 'Lärde sig ett nytt språk', + 'life_event_sentence_tattoo_or_piercing' => 'Fick en tatuering eller piercing', + 'life_event_sentence_new_license' => 'Fick license', + 'life_event_sentence_travel' => 'Reste', + 'life_event_sentence_achievement_or_award' => 'Fick en prestation eller belöning', + 'life_event_sentence_changed_beliefs' => 'Ändrad trosuppfattning', + 'life_event_sentence_first_word' => 'Talade för första gången', + 'life_event_sentence_first_kiss' => 'Första kyss', + + // documents + 'document_list_title' => 'Dokument', + 'document_list_cta' => 'Ladda upp dokument', + 'document_list_blank_desc' => 'Här kan du lagra dokument relaterade till denna person.', + 'document_upload_zone_cta' => 'Ladda upp en fil', + 'document_upload_zone_progress' => 'Laddar upp dokumentet...', + 'document_upload_zone_error' => 'Det gick inte att ladda upp dokumentet. Försök igen nedan.', + + // Photos + 'photo_title' => 'Foton', + 'photo_list_title' => 'Relaterade foton', + 'photo_list_cta' => 'Ladda upp foto', + 'photo_list_blank_desc' => 'Du kan lagra bilder om denna kontakt. Ladda upp en nu!', + 'photo_upload_zone_cta' => 'Ladda upp ett foto', + 'photo_current_profile_pic' => 'Nuvarande profilbild', + 'photo_make_profile_pic' => 'Skapa profilbild', + 'photo_delete' => 'Ta bort foto', + 'photo_next' => 'Nästa foto', + 'photo_previous' => 'Föregående foto', + + // Avatars + 'avatar_change_title' => 'Ändra din avatar', + 'avatar_question' => 'Vilken avatar vill du använda?', + 'avatar_default_avatar' => 'Standardavatar', + 'avatar_adorable_avatar' => 'Den beundransvärda avatar', + 'avatar_gravatar' => 'Gravatar som associeras med den här personens e-postadress. Gravatar är ett globalt system som låter användare associera e-postadresser med foton.', + 'avatar_current' => 'Behåll nuvarande avatar', + 'avatar_photo' => 'Från ett foto som du laddar upp', + 'avatar_crop_new_avatar_photo' => 'Beskär ny avatar foto', + + // emotions + 'emotion_this_made_me_feel' => 'Detta fick dig att känna…', + + // logs + 'auditlogs_link' => 'Historik', + 'auditlogs_title' => 'Allt som hände :name', + 'auditlogs_breadcrumb' => 'Historik', + 'auditlogs_author' => 'Av :name den :date', + + // contact field label + 'contact_field_label_home' => 'Hem', + 'contact_field_label_work' => 'Arbete', + 'contact_field_label_cell' => 'Mobil', + 'contact_field_label_fax' => 'Fax', + 'contact_field_label_pager' => 'Personsökare', + 'contact_field_label_main' => 'Primär', + 'contact_field_label_other' => 'Övriga', + 'contact_field_label_personal' => 'Personligt', +]; diff --git a/resources/lang/sv/reminder.php b/resources/lang/sv/reminder.php new file mode 100644 index 00000000000..16a13263ae4 --- /dev/null +++ b/resources/lang/sv/reminder.php @@ -0,0 +1,17 @@ + 'Önskar gärna födelsedag till', + 'type_phone_call' => 'Ring', + 'type_lunch' => 'Lunch med', + 'type_hangout' => 'Umgås med', + 'type_email' => 'E-post', + 'type_birthday_kid' => 'Önska en glad födelsedag till barn av', + +]; diff --git a/resources/lang/sv/settings.php b/resources/lang/sv/settings.php new file mode 100644 index 00000000000..caad9679fc5 --- /dev/null +++ b/resources/lang/sv/settings.php @@ -0,0 +1,518 @@ + 'Kontoinställningar', + 'sidebar_personalization' => 'Personalisering', + 'sidebar_settings_storage' => 'Lagring', + 'sidebar_settings_export' => 'Exportera', + 'sidebar_settings_users' => 'Användare', + 'sidebar_settings_subscriptions' => 'Prenumeration', + 'sidebar_settings_import' => 'Importera data', + 'sidebar_settings_tags' => 'Hantering av taggar', + 'sidebar_settings_api' => 'API', + 'sidebar_settings_dav' => 'DAV resurser', + 'sidebar_settings_security' => 'Säkerhet', + 'sidebar_settings_auditlogs' => 'Granskningsloggar', + + 'title_general' => 'Allmän information', + 'title_i18n' => 'Internationella inställningar', + 'title_layout' => 'Layout', + + 'me_title' => 'Min kontakt', + 'me_help' => 'Detta är den kontakt som representerar du i Monica', + 'me_select' => 'Välj en kontakt', + 'me_no_contact' => 'Ingen kontakt vald ännu.', + 'me_select_click' => 'Klicka här för att välja en kontakt.', + 'me_remove_contact' => 'Ta bort associationen', + 'me_choose' => 'Välj själv', + 'me_choose_placeholder' => 'Välj själv', + + 'export_title' => 'Exportera dina kontouppgifter', + 'export_be_patient' => 'Klicka på knappen för att starta exporten. Det kan ta flera minuter att bearbeta exporten – var tålmodig och spamma inte knappen.', + 'export_title_sql' => 'Exportera till SQL', + 'export_sql_explanation' => 'Exportera dina data i SQL-format kan du ta dina data och importera den till din egen Monica instans. Detta är bara värdefullt om du har din egen server.', + 'export_sql_cta' => 'Exportera till SQL', + 'export_sql_link_instructions' => 'Obs: läs instruktionerna för att läsa mer om hur du importerar denna fil till din instans.', + + 'firstname' => 'Förnamn', + 'lastname' => 'Efternamn', + 'name_order' => 'Namn order', + 'name_order_firstname_lastname' => ' - John Svensson', + 'name_order_lastname_firstname' => ' - Svensson John', + 'name_order_firstname_lastname_nickname' => ' () - John Doe (Rambo)', + 'name_order_firstname_nickname_lastname' => ' () - John (Rambo) Doe', + 'name_order_lastname_firstname_nickname' => ' () - John Doe (Rambo)', + 'name_order_lastname_nickname_firstname' => ' () - John (Rambo) Doe', + 'name_order_nickname_firstname_lastname' => ' ( ) - Rambo (John Doe)', + 'name_order_nickname_firstname_lastname' => ' ( ) - Rambo (John Doe)', + 'name_order_nickname' => ' - Rambo', + 'currency' => 'Valuta', + 'name' => 'Ditt namn: :name', + 'email' => 'E-postadress', + 'email_placeholder' => 'Ange e-postadress', + 'email_help' => 'Detta är det e-postmeddelande som används för att logga in, och det är där du får dina påminnelser.', + 'timezone' => 'Tidszon', + 'temperature_scale' => 'Temperaturområde', + 'temperature_scale_fahrenheit' => 'Fahrenheit', + 'temperature_scale_celsius' => 'Celsius', + 'layout' => 'Design', + 'layout_small' => 'Max 1200 pixlar brett', + 'layout_big' => 'Full bredd på webbläsaren', + 'save' => 'Uppdatera preferenser', + 'delete_title' => 'Radera ditt konto', + 'delete_desc' => 'Vill du ta bort ditt konto? Varning: radering är permanent och alla dina uppgifter kommer att raderas permanent. Din prenumeration (om du har några) kommer också omedelbart att annulleras.', + 'delete_other_desc' => 'Bara för att vara tydlig: dina uppgifter i huvuddatabasen kommer att raderas omedelbart. Men som beskrivs i vår integritetspolicy, vi gör dagliga säkerhetskopior av databasen i händelse av fel och denna backup hålls i 30 dagar – då det är helt borttaget. Det är orealistiskt att föreställa sig att vi kan gå in alla säkerhetskopior för att ta bort dina specifika data. Förresten, denna data är krypterad på mycket säkra Amazon servrar och ingen har krypteringsnyckeln utom oss. Därför kommer dina data att försvinna helt inom 30 dagar från alla säkerhetskopior, och ingen kommer att veta dessa uppgifter någonsin existerat i första hand.', + 'reset_desc' => 'Vill du återställa ditt konto? Detta kommer att ta bort alla dina kontakter och data som är kopplade till dem. Ditt konto kommer inte att raderas.', + 'reset_title' => 'Återställ ditt konto', + 'reset_cta' => 'Återställ konto', + 'reset_notice' => 'Är du säker på att du vill återställa ditt konto? Det finns ingen återvändo.', + 'reset_success' => 'Ditt konto har återställts', + 'delete_notice' => 'Är du säker på att du vill ta bort ditt konto? Det finns ingen återvändo.', + 'delete_cta' => 'Ta bort konto', + 'settings_success' => 'Inställningar uppdaterades!', + 'locale' => 'Språk som används i appen', + 'locale_help' => 'Vill du hjälpa till att översätta Monica eller lägga till ett nytt språk? Följ denna länk för mer information.', + 'locale_ar' => 'Arabiska', + 'locale_cs' => 'Tjeckiska', + 'locale_de' => 'Tyska', + 'locale_en' => 'Engelska', + 'locale_es' => 'Spanska', + 'locale_fr' => 'Franska', + 'locale_he' => 'Hebreiska', + 'locale_hr' => 'Kroatiska', + 'locale_it' => 'Italienska', + 'locale_ja' => 'Japanska', + 'locale_nl' => 'Nederländska', + 'locale_pt' => 'Portugisiska', + 'locale_pt-BR' => 'Portugisiska (brasiliansk)', + 'locale_ru' => 'Ryska', + 'locale_sv' => 'Swedish', + 'locale_zh' => 'Kinesiska, förenklad', + 'locale_zh-TW' => 'Kinesiska Traditionell', + 'locale_tr' => 'Turkiska', + 'locale_en-GB' => 'Engelska (Storbritannien)', + + 'security_title' => 'Säkerhet', + 'security_help' => 'Ändra säkerhetsfrågor för ditt konto.', + 'password_change' => 'Byt lösenord', + 'password_current' => 'Nuvarande lösenord', + 'password_current_placeholder' => 'Ange ditt nuvarande lösenord', + 'password_new1' => 'Nytt lösenord', + 'password_new1_placeholder' => 'Ange ett nytt lösenord', + 'password_new2' => 'Bekräftelse', + 'password_new2_placeholder' => 'Upprepa nytt lösenord', + 'password_btn' => 'Ändra lösenord', + '2fa_title' => 'Tvåfaktorsautentisering', + '2fa_otp_title' => 'Mobilapplikation för tvåfaktorsautentisering', + '2fa_enable_title' => 'Aktivera tvåfaktorsautentisering', + '2fa_enable_description' => 'Aktivera tvåfaktorsautentisering för att öka säkerheten med ditt konto.', + '2fa_enable_otp' => 'Öppna din tvåfaktorsautentisering mobilapp och skanna följande QR-streckkod:', + '2fa_enable_otp_help' => 'Om din tvåfaktorsautentisering inte stöder QR-streckkoder, ange följande kod:', + '2fa_enable_otp_validate' => 'Vänligen validera den nya enheten du just angett:', + '2fa_enable_success' => 'Tvåfaktorsautentisering aktiverat', + '2fa_enable_error' => 'Fel vid försök att aktivera tvåfaktorsautentisering', + '2fa_enable_error_already_set' => 'Tvåfaktorsautentisering är redan aktiverat', + '2fa_disable_title' => 'Inaktivera tvåfaktorsautentisering', + '2fa_disable_description' => 'Inaktivera tvåfaktorsautentisering för ditt konto. Var försiktig, ditt konto kommer inte att säkras längre!', + '2fa_disable_success' => 'Tvåfaktorsautentisering inaktiverad', + '2fa_disable_error' => 'Fel vid försök att inaktivera tvåfaktorsautentisering', + + 'webauthn_title' => 'Säkerhetsnyckel — WebAuthn protokoll', + 'webauthn_enable_description' => 'Lägg till en ny säkerhetsnyckel', + 'webauthn_key_name_help' => 'Ge din nyckel ett namn.', + 'webauthn_key_name' => 'Nyckelnamn:', + 'webauthn_success' => 'Din nyckel är upptäckt och validerad.', + 'webauthn_last_use' => 'Senaste användning: {timestamp}', + 'webauthn_delete_confirmation' => 'Är du säker på att du vill ta bort denna nyckel?', + 'webauthn_delete_success' => 'Nyckel borttagen', + 'webauthn_insertKey' => 'Infoga din säkerhetsnyckel.', + 'webauthn_buttonAdvise' => 'Om din säkerhetsnyckel har en knapp trycker du på den.', + 'webauthn_noButtonAdvise' => 'Om det inte gör det, ta bort det och sätt in det igen.', + 'webauthn_not_supported' => 'Din webbläsare stöder för närvarande inte WebAuthn.', + 'webauthn_not_secured' => 'WebAuthn stöder endast säkra anslutningar. Ladda denna sida med https schema.', + 'webauthn_error_already_used' => 'Denna nyckel är redan registrerad. Det är inte nödvändigt att registrera den igen.', + 'webauthn_error_not_allowed' => 'Operationen misslyckad, antingen väntade du för länge eller så var det inte tillåtet.', + + 'recovery_title' => 'Återställningskoder', + 'recovery_show' => 'Hämta återställningskoder', + 'recovery_copy_help' => 'Kopiera till Urklipp', + 'recovery_help_intro' => 'Detta är dina återställningskoder:', + 'recovery_help_information' => 'Du kan använda varje återställningskod en gång.', + 'recovery_clipboard' => 'Kopierat till urklipp', + 'recovery_generate' => 'Generera nya koder...', + 'recovery_generate_help' => 'Var medveten om att generering av nya koder kommer att ogiltigförklara tidigare genererade koder', + 'recovery_already_used_help' => 'Denna kod har redan använts', + + 'users_list_title' => 'Användare med åtkomst till ditt konto', + 'users_list_add_user' => 'Bjud in en ny användare', + 'users_list_you' => 'Det är du', + 'users_list_invitations_title' => 'Väntande inbjudningar', + 'users_list_invitations_explanation' => 'Nedan är 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_blank_title' => 'Du är den enda som har tillgång till detta konto.', + 'users_blank_add_title' => 'Vill du bjuda in någon annan?', + 'users_blank_description' => 'Denna person kommer att ha samma åtkomst som du har, och kommer att kunna lägga till, redigera eller ta bort kontaktuppgifter.', + 'users_blank_cta' => 'Bjud in någon', + 'users_add_title' => 'Bjud in en ny användare via e-post till ditt konto', + 'users_add_description' => 'Denna person kommer att ha samma rättigheter som du, inklusive att bjuda in andra användare och ta bort dem (inklusive du). Se därför till att du litar på den här personen.', + 'users_add_email_field' => 'Ange e-post för den person du vill bjuda in', + 'users_add_confirmation' => 'Jag bekräftar att jag vill bjuda in den här användaren till mitt konto. Personen kommer åt ALLA mina uppgifter och ser exakt vad jag ser.', + 'users_add_cta' => 'Bjud in användare via e-post', + 'users_accept_title' => 'Acceptera inbjudan och skapa ett nytt konto', + 'users_error_please_confirm' => 'Bekräfta att du vill bjuda in denna användare innan du fortsätter med inbjudan', + 'users_error_email_already_taken' => 'Denna e-postadress är redan upptagen. Välj en annan', + 'users_error_already_invited' => 'Du har redan bjudit in den här användaren. Välj en annan e-postadress.', + 'users_error_email_not_similar' => 'Detta är inte e-postmeddelandet för den person som har bjudit in dig.', + 'users_invitation_deleted_confirmation_message' => 'Inbjudan har tagits bort', + 'users_invitations_delete_confirmation' => 'Är du säker du vill ta bort denna inbjudan?', + 'users_list_delete_confirmation' => 'Är du säker på att ta bort denna användare från ditt konto?', + 'users_invitation_need_subscription' => 'För att lägga till fler användare krävs en prenumeration.', + + 'subscriptions_account_current_plan' => 'Din nuvarande plan', + 'subscriptions_account_current_paid_plan' => 'Du är på :name plan. Tack så mycket för att vara en prenumerant.', + 'subscriptions_account_next_billing' => 'Din prenumeration förnyas automatiskt den :date.', + 'subscriptions_account_cancel' => 'Du kan avbryta prenumerationen när som helst.', + 'subscriptions_account_free_plan' => 'Du är på den fria planen.', + 'subscriptions_account_free_plan_upgrade' => 'Du kan uppgradera ditt konto till :name plan, vilket kostar $:price per månad. Här är fördelarna:', + 'subscriptions_account_free_plan_benefits_users' => 'Obegränsat antal användare', + 'subscriptions_account_free_plan_benefits_reminders' => 'Påminnelse via e-post', + 'subscriptions_account_free_plan_benefits_import_data_vcard' => 'Importera dina kontakter med vCard', + 'subscriptions_account_free_plan_benefits_support' => 'Stöd projektet på lång sikt, så att vi kan införa fler bra funktioner.', + 'subscriptions_account_upgrade' => 'Uppgradera ditt konto', + 'subscriptions_account_upgrade_title' => 'Uppgradera Monica idag och ha mer meningsfulla relationer.', + 'subscriptions_account_upgrade_choice' => 'Välj en plan nedan och gå över :customers personer som uppgraderat sin Monica.', + 'subscriptions_account_invoices' => 'Fakturor', + 'subscriptions_account_invoices_download' => 'Hämta', + 'subscriptions_account_invoices_subscription' => 'Prenumeration från :startDate till :endDate', + 'subscriptions_account_payment' => 'Vilket betalningsalternativ passar dig bäst?', + 'subscriptions_account_confirm_payment' => 'Din betalning är för närvarande ofullständig, vänligen bekräfta din betalning.', + 'subscriptions_downgrade_title' => 'Nedgradera ditt konto till den kostnadsfria planen', + 'subscriptions_downgrade_limitations' => 'Den fria planen har begränsningar. För att kunna nedgradera måste du klara checklistan nedan:', + 'subscriptions_downgrade_rule_users' => 'Du måste ha endast 1 användare på ditt konto', + 'subscriptions_downgrade_rule_users_constraint' => 'Du har för närvarande 1 användare på ditt konto.|Du har :count användare på ditt konto.', + 'subscriptions_downgrade_rule_invitations' => 'Du får inte ha väntande inbjudningar', + 'subscriptions_downgrade_rule_invitations_constraint' => 'Du har för närvarande 1 väntande inbjudan skickad till people.|Du har :count väntande inbjudningar skickad till folk.', + 'subscriptions_downgrade_rule_contacts' => 'Du får inte ha fler än :number aktiva kontakter', + 'subscriptions_downgrade_rule_contacts_constraint' => 'Du har för närvarande 1 kontakt.|Du har :count kontakter.', + 'subscriptions_downgrade_cta' => 'Nedgradera', + 'subscriptions_downgrade_success' => 'Du är tillbaka till den fria planen!', + 'subscriptions_downgrade_thanks' => 'Tack så mycket för att ha provat den betalda planen. Vi fortsätter att lägga till nya funktioner på Monica hela tiden – så du kanske vill komma tillbaka i framtiden för att se om du är intresserad av att ta ett abonnemang igen.', + 'subscriptions_back' => 'Tillbaka till inställningar', + 'subscriptions_upgrade_title' => 'Uppgradera ditt konto', + 'subscriptions_upgrade_choose' => 'Du valde :plan plan.', + 'subscriptions_upgrade_infos' => 'Vi kunde inte vara lyckligare. Ange din betalningsinformation nedan.', + 'subscriptions_upgrade_name' => 'Namn på kort', + 'subscriptions_upgrade_zip' => 'Postnummer', + 'subscriptions_upgrade_credit' => 'Kortuppgifter', + 'subscriptions_upgrade_submit' => 'Betala {amount}', + 'subscriptions_upgrade_charge' => 'Vi debiterar ditt kort :price nu. Nästa avgift kommer att vara den :date. Om du någonsin ändrar dig kan du avbryta när som helst, inga frågor.', + 'subscriptions_upgrade_charge_handled' => 'Betalningen hanteras av Stripe. Ingen kortinformation berör vår server.', + 'subscriptions_upgrade_success' => 'Tack! Du prenumererar nu.', + 'subscriptions_upgrade_thanks' => 'Välkommen till gemenskapen av människor som försöker göra världen till en bättre plats.', + + 'subscriptions_payment_confirm_title' => 'Bekräfta din betalning med :amount', + 'subscriptions_payment_confirm_information' => 'Extra bekräftelse krävs för att behandla din betalning. Vänligen bekräfta din betalning genom att fylla i dina betalningsuppgifter nedan.', + 'subscriptions_payment_succeeded_title' => 'Betalning lyckad', + 'subscriptions_payment_succeeded' => 'Denna betalning har redan bekräftats.', + 'subscriptions_payment_cancelled_title' => 'Betalning avbruten', + 'subscriptions_payment_cancelled' => 'Denna betalning avbröts.', + 'subscriptions_payment_error_name' => 'Ange ditt namn.', + 'subscriptions_payment_success' => 'Betalningen var framgångsrik.', + + 'subscriptions_pdf_title' => 'Ditt :name månatliga abonnemang', + 'subscriptions_plan_choose' => 'Välj denna plan', + 'subscriptions_plan_year_title' => 'Betala årligen', + 'subscriptions_plan_year_cost' => '45$/år', + 'subscriptions_plan_year_cost_save' => 'du sparar 25%', + 'subscriptions_plan_year_bonus' => 'Du behöver inte oroa dig i ett helt år', + 'subscriptions_plan_month_title' => 'Betala månadsvis', + 'subscriptions_plan_month_cost' => '5$/månad', + 'subscriptions_plan_month_bonus' => 'Ingen bindningstid', + 'subscriptions_plan_include1' => 'Inkluderat med din uppgradering:', + 'subscriptions_plan_include2' => 'Obegränsat antal kontakter • Obegränsat antal användare • Påminnelser via e-post • Importera med vCard • Anpassning av kontaktbladet', + 'subscriptions_plan_include3' => '100% av vinsten går utvecklingen av detta stora open source-projekt.', + 'subscriptions_help_title' => 'Ytterligare detaljer som du kan vara nyfiken på', + 'subscriptions_help_opensource_title' => 'Vad är ett projekt med öppen källkod?', + 'subscriptions_help_opensource_desc' => 'Monica är ett projekt med öppen källkod. Detta innebär att den är byggd av en helt välvillig gemenskap som bara vill ge ett bra verktyg för det större bästa. Att vara öppen källkod innebär att koden är allmänt tillgänglig på GitHub, och alla kan inspektera den, ändra den eller förbättra den. Alla pengar vi samlar in är dedikerade till att bygga bättre funktioner, har mer kraftfulla servrar, hjälpa till att betala räkningarna. Tack för din hjälp. Vi kunde inte göra det utan dig – bokstavligen.', + 'subscriptions_help_limits_title' => 'Finns det någon gräns för hur många kontakter vi kan ha på den fria planen?', + 'subscriptions_help_limits_plan' => 'Ja. Fria planer låter dig hantera :number kontakter.', + 'subscriptions_help_discounts_title' => 'Har du rabatter för ideella organisationer och utbildning?', + 'subscriptions_help_discounts_desc' => 'Vi gör! Monica är gratis för studenter, och gratis för ideella organisationer och välgörenhetsorganisationer. Kontakta bara supporten med ett bevis på din status så tillämpar vi denna speciella status på ditt konto.', + 'subscriptions_help_change_title' => 'Vad händer om jag ändrar mig?', + 'subscriptions_help_change_desc' => 'Du kan avbryta när som helst, inga frågor ställs och helt själv – du behöver inte kontakta support eller vad som helst. Ni kommer dock inte att återbetalas för den aktuella perioden.', + + 'stripe_error_card' => 'Ditt kort avvisades. Avvisa meddelande är: :message', + 'stripe_error_api_connection' => 'Nätverkskommunikation med Stripe misslyckades. Försök igen senare.', + 'stripe_error_rate_limit' => 'För många förfrågningar med Stripe just nu. Försök igen senare.', + 'stripe_error_invalid_request' => 'Ogiltiga parametrar. Försök igen senare.', + 'stripe_error_authentication' => 'Fel autentisering med Stripe', + + 'import_title' => 'Importera kontakter till ditt konto', + 'import_cta' => 'Ladda upp kontakter', + 'import_stat' => 'Du har importerat :number filer hittills.', + 'import_result_stat' => 'Uppladdad vCard med 1 kontakt (:total_import importerad, :total_skipped hoppas över)|Uppladdad vCard med :total_contacts kontakter (:total_imported importerad, :total_skipped hoppas över)', + 'import_view_report' => 'Visa rapport', + 'import_in_progress' => 'Importen pågår. Ladda om sidan om en minut.', + 'import_upload_title' => 'Importera dina kontakter från en vCard-fil', + 'import_upload_rules_desc' => 'Vi har dock vissa regler:', + 'import_upload_rule_format' => 'Vi stödjer .vcard och .vcf -filer.', + 'import_upload_rule_vcard' => 'Vi stöder formatet vCard 3.0, som är standardformatet för Contacts.app (macOS) och Google Kontakter.', + 'import_upload_rule_instructions' => 'Exportera instruktioner för Kontakts.app (macOS) och Google Kontakter.', + 'import_upload_rule_multiple' => 'För nu, om dina kontakter har flera e-postadresser eller telefonnummer, kommer endast den första posten att plockas.', + 'import_upload_rule_limit' => 'Filerna är begränsade till 10MB.', + 'import_upload_rule_time' => 'Det kan ta upp till 1 minut att ladda upp kontakter och bearbeta dem. Ha tålamod.', + 'import_upload_rule_cant_revert' => 'Se till att data är korrekt innan uppladdning, eftersom du inte kan ångra uppladdningen.', + 'import_upload_form_file' => 'Din .vcf eller .vCard -fil:', + 'import_upload_behaviour' => 'Import beteende:', + 'import_upload_behaviour_add' => 'Lägg till nya kontakter, hoppa över befintliga', + 'import_upload_behaviour_replace' => 'Ersätt befintliga kontakter', + 'import_upload_behaviour_help' => 'Obs: Byte kommer att ersätta all data som finns i vCard, men kommer att behålla befintliga kontaktfält.', + 'import_report_title' => 'Importerar rapport', + 'import_report_date' => 'Datum för importen', + 'import_report_type' => 'Typ av import', + 'import_report_number_contacts' => 'Antal kontakter i filen', + 'import_report_number_contacts_imported' => 'Antal importerade kontakter', + 'import_report_number_contacts_skipped' => 'Antal överhoppade kontakter', + 'import_report_status_imported' => 'Importerad', + 'import_report_status_skipped' => 'Hoppat över', + 'import_vcard_parse_error' => 'Fel vid tolkning av vCard-post', + 'import_vcard_contact_exist' => 'Kontakten existerar redan', + 'import_vcard_contact_no_firstname' => 'Inget förnamn (obligatoriskt)', + 'import_vcard_file_not_found' => 'Filen hittades inte', + 'import_vcard_unknown_entry' => 'Okänt kontaktnamn', + 'import_vcard_file_no_entries' => 'Filen innehåller inga poster', + 'import_blank_title' => 'Du har inte importerat några kontakter än.', + 'import_blank_question' => 'Vill du importera kontakter nu?', + 'import_blank_description' => 'Vi kan importera vCard-filer som du kan få från Google Kontakter eller din kontakthanterare.', + 'import_blank_cta' => 'Import vCard', + 'import_need_subscription' => 'För att importera data krävs ett abonnemang.', + + 'tags_list_title' => 'Taggar', + 'tags_list_description' => 'Du kan organisera dina kontakter genom att konfigurera taggar. Taggar fungerar som mappar, men du kan lägga till fler än en tagg till en kontakt. För att lägga till en ny tagg, lägg till den på själva kontakten.', + 'tags_list_contact_number' => '1 kontakt|:count kontakter', + 'tags_list_delete_success' => 'Taggen har tagits bort', + 'tags_list_delete_confirmation' => 'Är du säker på att du vill ta bort taggen? Inga kontakter kommer att tas bort, bara taggen.', + 'tags_blank_title' => 'Taggar är ett bra sätt att kategorisera dina kontakter.', + 'tags_blank_description' => 'Taggar fungerar som mappar, men du kan lägga till fler än en tagg till en kontakt. Gå till en kontakt och tagga en vän, precis under namnet. När en kontakt är taggad, gå tillbaka hit för att hantera alla taggar på ditt konto.', + + 'api_title' => 'API åtkomst', + 'api_description' => 'API: et kan användas för att manipulera Monicas data från en extern applikation, som till exempel en mobilapp.', + 'api_help' => 'Att använda API:et är obligatoriskt. Du kan antingen skapa en personlig åtkomst-token (Bearer-autentisering) eller auktorisera en OAuth klient att skapa den åt dig. Se API-dokumentation.', + 'api_endpoint' => 'API slutpunkt för denna Monica instans är:', + + 'api_personal_access_tokens' => 'Personliga åtkomsttokens', + 'api_pao_description' => 'Se till att du ger denna token till en källa du litar på – eftersom de ger dig tillgång till alla dina data.', + 'api_token_title' => 'Personliga åtkomst-Tokens', + 'api_token_create_new' => 'Skapa ny token', + 'api_token_not_created' => 'Du har inte skapat några personliga åtkomsttokens.', + 'api_token_name' => 'Token namn', + 'api_token_expire' => 'Förfaller vid {date}', + 'api_token_delete' => 'Radera', + 'api_token_create' => 'Skapa token', + 'api_token_scopes' => 'Omfattningar', + 'api_token_help' => 'Här är din nya personliga tillgång token. Detta är den enda gången det kommer att visas så förlora inte det! Du kan nu använda denna token för att göra API-förfrågningar.', + + 'api_oauth_clients' => 'Dina OAuth klienter', + 'api_oauth_clients_desc' => 'Det här avsnittet låter dig registrera dina egna OAuth klienter.', + 'api_oauth_clients_desc2' => 'Använd detta klient-id för att begära en ny token, och konvertera behörighetskoder till åtkomsttokens. Se Laravel Passport dokumentation för mer information.', + 'api_oauth_title' => 'OAuth klienter', + 'api_oauth_create_new' => 'Skapa ny klient', + 'api_oauth_edit' => 'Redigera klient', + 'api_oauth_not_created' => 'Du har inte skapat några OAuth klienter.', + 'api_oauth_clientid' => 'Klient ID', + 'api_oauth_name' => 'Namn', + 'api_oauth_name_help' => 'Något som dina användare kommer att känna igen och lita på.', + 'api_oauth_secret' => 'Hemlighet', + 'api_oauth_create' => 'Skapa klient', + 'api_oauth_redirecturl' => 'Omdirigera URL', + 'api_oauth_redirecturl_help' => 'Din applikations auktorisering callback URL.', + + 'api_authorized_clients' => 'Lista över auktoriserade kunder', + 'api_authorized_clients_desc' => 'I det här avsnittet listas alla klienter som du har behörighet att komma åt dina applikationsdata. Du kan när som helst återkalla denna behörighet.', + 'api_authorized_clients_title' => 'Auktoriserade program', + 'api_authorized_clients_none' => 'Det finns ingen auktoriserad klient ännu.', + 'api_authorized_clients_name' => 'Namn', + 'api_authorized_clients_scopes' => 'Omfattningar', + + 'personalization_tab_title' => 'Anpassa ditt konto', + + 'personalization_title' => 'Här kan du hitta olika inställningar för att konfigurera ditt konto. Dessa funktioner är mer för ”power users” som vill ha maximal kontroll över Monica.', + 'personalization_contact_field_type_title' => 'Typ av kontaktfält', + 'personalization_contact_field_type_add' => 'Lägg till ny fälttyp', + 'personalization_contact_field_type_description' => 'Här kan du konfigurera alla olika typer av kontaktfält som du kan associera till alla dina kontakter. Om det i framtiden uppstår ett nytt socialt nätverk, du kommer att kunna lägga till denna nya typ av sätt att kontakta dina kontakter här.', + 'personalization_contact_field_type_table_name' => 'Namn', + 'personalization_contact_field_type_table_protocol' => 'Protokoll', + 'personalization_contact_field_type_table_actions' => 'Åtgärder', + 'personalization_contact_field_type_modal_title' => 'Lägg till en ny typ av kontaktfält', + 'personalization_contact_field_type_modal_edit_title' => 'Redigera en befintlig typ av kontaktfält', + 'personalization_contact_field_type_modal_delete_title' => 'Ta bort en befintlig kontakttyp', + 'personalization_contact_field_type_modal_delete_description' => 'Är du säker på att du vill ta bort den här kontaktfältstypen? Borttagning av denna typ av kontaktfält kommer att ta bort all data med den här typen för alla dina kontakter.', + '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 är inställt, kommer vi att använda det för att utlösa åtgärden som är inställd.', + 'personalization_contact_field_type_modal_icon' => 'Ikon (valfritt)', + 'personalization_contact_field_type_modal_icon_help' => 'Du kan associera en ikon med den här kontaktfälttypen. Du måste lägga till en referens till en typsnitts-ikon.', + 'personalization_contact_field_type_delete_success' => 'Kontakttypen har tagits bort med framgång.', + 'personalization_contact_field_type_add_success' => 'Kontakttypen har lagts till.', + 'personalization_contact_field_type_edit_success' => 'Kontakttypen har uppdaterats.', + + 'personalization_genders_title' => 'Könsidentitet', + 'personalization_genders_add' => 'Lägg till ny könstyp', + 'personalization_genders_desc' => 'Du kan definiera så många kön som du behöver. Du behöver minst en könstyp på ditt konto.', + 'personalization_genders_modal_add' => 'Lägg till könstyp', + 'personalization_genders_modal_edit' => 'Uppdatera könstyp', + 'personalization_genders_modal_name' => 'Namn', + 'personalization_genders_modal_name_help' => 'Namnet som används för att visa kön på en kontaktsida.', + 'personalization_genders_modal_sex' => 'Kön', + 'personalization_genders_modal_sex_help' => 'Används för att definiera relationerna och under VCard-import/exportprocessen.', + 'personalization_genders_modal_default' => 'Välj standard kön för en ny kontakt', + 'personalization_genders_modal_delete' => 'Ta bort könstyp', + 'personalization_genders_modal_delete_desc' => 'Är du säker på att du vill radera {name}?', + 'personalization_genders_modal_delete_question' => 'Du har för närvarande {count} kontakt som har detta kön. Om du tar bort detta kön, vilket kön ska denna kontakt ha?|Du har för närvarande {count} kontakter som har detta kön. Om du tar bort detta kön, vilket kön ska dessa kontakter ha?', + 'personalization_genders_modal_delete_question_default' => 'Detta kön är standard ett. Om du tar bort detta kön, vilket blir nästa standard?', + 'personalization_genders_modal_error' => 'Välj ett giltigt kön från listan.', + 'personalization_genders_list_contact_number' => '{count} kontakt|{count} kontakter', + 'personalization_genders_table_name' => 'Namn', + 'personalization_genders_table_sex' => 'Kön', + 'personalization_genders_table_default' => 'Standard', + 'personalization_genders_default' => 'Förvalt kön', + 'personalization_genders_make_default' => 'Ändra standard kön', + 'personalization_genders_select_default' => 'Välj standard kön', + 'personalization_genders_m' => 'Man', + 'personalization_genders_f' => 'Kvinna', + 'personalization_genders_o' => 'Annat', + 'personalization_genders_u' => 'Okänd', + 'personalization_genders_n' => 'Inget eller ej tillämpligt', + + 'personalization_reminder_rule_save' => 'Ändringen har sparats', + 'personalization_reminder_rule_title' => 'Påminnelse regler', + 'personalization_reminder_rule_line' => '{count} dag före|{count} dagar före', + 'personalization_reminder_rule_desc' => 'För varje påminnelse om att du har angett kan vi skicka ett mail till dig några dagar innan händelsen inträffar. Du kan växla mellan dessa aviseringar här. Observera att dessa aviseringar endast gäller månatliga och årliga påminnelser.', + + 'personalization_module_save' => 'Ändringen har sparats', + 'personalization_module_title' => 'Funktioner', + 'personalization_module_desc' => 'Vissa människor behöver inte alla funktioner. Nedan kan du växla specifika funktioner som används på ett kontaktblad. Denna ändring kommer att påverka ALLA dina kontakter. Observera att om du stänger av en av dessa funktioner kommer data inte att förloras - vi kommer helt enkelt att dölja funktionen.', + + 'personalisation_paid_upgrade' => 'Detta är en premiumfunktion som kräver att en betald prenumeration är aktiv. Uppgradera ditt konto genom att besöka Inställningar > Prenumeration.', + 'personalisation_paid_upgrade_vue' => 'Detta är en premiumfunktion som kräver att en betald prenumeration är aktiv. Uppgradera ditt konto genom att besöka Inställningar > Prenumeration.', + + 'reminder_time_to_send' => 'Tid på dagen påminnelser bör skickas', + 'reminder_time_to_send_help' => 'För din information kommer din nästa påminnelse att skickas till {dateTime}.', + + 'personalization_activity_type_category_title' => 'Kategorier av aktivitetstyper', + 'personalization_activity_type_category_add' => 'Lägg till en ny kategori för aktivitetstyp', + 'personalization_activity_type_category_table_name' => 'Namn', + 'personalization_activity_type_category_description' => 'En aktivitet som görs med en av dina kontakter kan ha en typ och en kategorityp. Ditt konto kommer som standard med en uppsättning fördefinierade kategorityper, men du kan anpassa allt här.', + 'personalization_activity_type_category_table_actions' => 'Åtgärder', + 'personalization_activity_type_category_modal_add' => 'Lägg till en ny kategori för aktivitetstyp', + 'personalization_activity_type_category_modal_edit' => 'Redigera kategori för aktivitetstyp', + 'personalization_activity_type_category_modal_question' => 'Hur ska vi namnge denna nya kategori?', + 'personalization_activity_type_add_button' => 'Lägg till en ny aktivitetstyp', + 'personalization_activity_type_modal_add' => 'Lägg till en ny aktivitetstyp', + 'personalization_activity_type_modal_question' => 'Hur ska vi namnge den nya aktivitetstypen?', + 'personalization_activity_type_modal_edit' => 'Redigera en aktivitetstyp', + 'personalization_activity_type_category_modal_delete' => 'Ta bort en kategori av aktivitetstyper', + 'personalization_activity_type_category_modal_delete_desc' => 'Är du säker på att du vill ta bort denna kategori? Ta bort den kommer att ta bort alla associerade aktivitetstyper. Åtgärder som hör till denna kategori kommer dock inte att påverkas av denna borttagning.', + 'personalization_activity_type_modal_delete' => 'Ta bort en aktivitetstyp', + 'personalization_activity_type_modal_delete_desc' => 'Är du säker på att du vill ta bort denna aktivitetstyp? Aktiviteter som tillhör denna kategori kommer inte att påverkas av denna borttagning.', + 'personalization_activity_type_modal_delete_error' => 'Vi kan inte hitta denna typ av aktivitet.', + 'personalization_activity_type_category_modal_delete_error' => 'Vi kan inte hitta denna kategori av aktivitetstyper.', + + 'personalization_life_event_category_title' => 'Livshändelse kategorier', + 'personalization_live_event_category_table_name' => 'Namn', + 'personalization_life_event_category_description' => 'En livshändelse kan ha en typ och en kategori. Ditt konto kommer som standard med en uppsättning fördefinierade kategorier och typer, men du kan anpassa livshändelstyper här.', + 'personalization_live_event_category_table_actions' => 'Åtgärder', + 'personalization_life_event_type_add_button' => 'Lägg till en ny livshändelstyp', + 'personalization_life_event_type_modal_add' => 'Lägg till en ny livshändelstyp', + 'personalization_life_event_type_modal_question' => 'Hur ska vi namnge denna nya livshändelstyp?', + 'personalization_life_event_type_modal_edit' => 'Redigera en livshändelsetyp', + 'personalization_life_event_type_modal_delete' => 'Ta bort en livshändelstyp', + 'personalization_life_event_type_modal_delete_desc' => 'Är du säker på att du vill ta bort denna livshändelstyp? Livshändelser som tillhör denna typ kommer att raderas genom att utföra denna åtgärd.', + 'personalization_life_event_type_modal_delete_error' => 'Vi kan inte hitta denna typ av händelser i livet.', + + 'personalization_life_event_category_work_education' => 'Arbete & utbildning', + 'personalization_life_event_category_family_relationships' => 'Familj & relationer', + 'personalization_life_event_category_home_living' => 'Hem & Boende', + 'personalization_life_event_category_travel_experiences' => 'Resor & upplevelser', + 'personalization_life_event_category_health_wellness' => 'Hälsa och hälsa', + + 'personalization_life_event_type_new_job' => 'Nytt jobb', + 'personalization_life_event_type_retirement' => 'Pensionering', + 'personalization_life_event_type_new_school' => 'Ny skola', + 'personalization_life_event_type_study_abroad' => 'Studera utomlands', + 'personalization_life_event_type_volunteer_work' => 'Volontärarbete', + 'personalization_life_event_type_published_book_or_paper' => 'Publicerat en bok eller ett papper', + 'personalization_life_event_type_military_service' => 'Militär tjänst', + 'personalization_life_event_type_first_met' => 'Första möte', + 'personalization_life_event_type_new_relationship' => 'Ny relation', + 'personalization_life_event_type_engagement' => 'Förlovning', + 'personalization_life_event_type_marriage' => 'Äktenskap', + 'personalization_life_event_type_anniversary' => 'Årsdag', + 'personalization_life_event_type_expecting_a_baby' => 'Väntar barn', + 'personalization_life_event_type_new_child' => 'Nytt barn', + 'personalization_life_event_type_new_family_member' => 'Ny familjemedlem', + 'personalization_life_event_type_new_pet' => 'Nytt husdjur', + 'personalization_life_event_type_end_of_relationship' => 'Slut på relationen', + 'personalization_life_event_type_loss_of_a_loved_one' => 'Bortgång av närstående', + 'personalization_life_event_type_moved' => 'Flyttad', + 'personalization_life_event_type_bought_a_home' => 'Köpte hus', + 'personalization_life_event_type_home_improvement' => 'Förbättring av hemmet', + 'personalization_life_event_type_holidays' => 'Semester', + 'personalization_life_event_type_new_vehicle' => 'Nytt fordon', + 'personalization_life_event_type_new_roommate' => 'Ny rumskompis', + 'personalization_life_event_type_overcame_an_illness' => 'Övervann en sjukdom', + 'personalization_life_event_type_quit_a_habit' => 'Avsluta en vana', + 'personalization_life_event_type_new_eating_habits' => 'Nya matvanor', + 'personalization_life_event_type_weight_loss' => 'Viktminskning', + 'personalization_life_event_type_wear_glass_or_contact' => 'Använder glasögon eller kontaktlinser', + 'personalization_life_event_type_broken_bone' => 'Brutet ben', + 'personalization_life_event_type_removed_braces' => 'Tagit bort tandställning', + 'personalization_life_event_type_surgery' => 'Kirurgi', + 'personalization_life_event_type_dentist' => 'Tandläkare', + 'personalization_life_event_type_new_sport' => 'Ny sport', + 'personalization_life_event_type_new_hobby' => 'Ny hobby', + 'personalization_life_event_type_new_instrument' => 'Nytt instrument', + 'personalization_life_event_type_new_language' => 'Nytt språk', + 'personalization_life_event_type_tattoo_or_piercing' => 'Tatuering eller piercingar', + 'personalization_life_event_type_new_license' => 'Ny licens', + 'personalization_life_event_type_travel' => 'Resor', + 'personalization_life_event_type_achievement_or_award' => 'Prestation eller belöning', + 'personalization_life_event_type_changed_beliefs' => 'Ändrad trosuppfattning', + 'personalization_life_event_type_first_word' => 'Första ordet', + 'personalization_life_event_type_first_kiss' => 'Första kyssen', + + 'storage_title' => 'Lagringsutrymme', + 'storage_account_info' => 'Ditt konto gräns: :accountLimit Mb / Din nuvarande användning: :currentAccountSize Mb (:percentUsage%)', + 'storage_upgrade_notice' => 'Uppgradera ditt konto för att kunna ladda upp dokument och foton.', + 'storage_description' => 'Här kan du se alla dokument och foton som laddats upp om dina kontakter.', + + 'dav_title' => 'WebDAV', + 'dav_description' => 'Här hittar du alla inställningar för att använda WebDAV resurser för CardDAV och CalDAV export.', + 'dav_copy_help' => 'Kopiera till Urklipp', + 'dav_clipboard_copied' => 'Värdet har kopierats till Urklipp', + 'dav_url_base' => 'Bas-url för alla CardDAV och CalDAV resurser:', + 'dav_connect_help' => 'Du kan ansluta dina kontakter och/eller kalendrar med denna bas-url på din telefon eller dator.', + 'dav_connect_help2' => 'Använd din inloggning (e-post) och skapa en API-token som lösenord för att autentisera.', + 'dav_url_carddav' => 'CardDAV url för kontakter källa:', + 'dav_url_caldav_birthdays' => 'CalDAV url för födelsedagsresurser:', + 'dav_url_caldav_tasks' => 'CalDAV url för uppgiftskällor:', + 'dav_title_carddav' => 'CardDAV', + 'dav_title_caldav' => 'CalDAV', + 'dav_carddav_export' => 'Exportera alla kontakter i en fil', + 'dav_caldav_birthdays_export' => 'Exportera alla födelsedagar i en fil', + 'dav_caldav_tasks_export' => 'Exportera alla uppgifter i en fil', + + 'archive_title' => 'Arkivera alla dina kontakter på ditt konto', + 'archive_desc' => 'Detta arkiverar alla kontakter på ditt konto.', + 'archive_cta' => 'Arkivera alla dina kontakter', + + 'logs_title' => 'Allt som hände med detta konto', + 'logs_author' => 'Efter :name den :date', +]; diff --git a/resources/lang/sv/validation.php b/resources/lang/sv/validation.php new file mode 100644 index 00000000000..dfef9c85195 --- /dev/null +++ b/resources/lang/sv/validation.php @@ -0,0 +1,157 @@ + ':attribute måste accepteras.', + 'active_url' => ':attribute är inte en giltig URL.', + 'after' => ':attribute måste vara ett datum efter :date.', + 'after_or_equal' => ':attribute måste vara ett datum efter eller lika med :date.', + 'alpha' => ':attribute får endast innehålla bokstäver.', + 'alpha_dash' => ':attribute får endast innehålla bokstäver, siffror, bindestreck och understreck.', + 'alpha_num' => ':attribute får endast innehålla bokstäver och siffror.', + 'array' => ':attribute måste vara en lista med värden.', + 'before' => ':attribute måste vara ett datum före :date.', + 'before_or_equal' => ':attribute måste vara ett datum före eller lika med :date.', + 'between' => [ + 'numeric' => ':attribute måste vara mellan :min och :max.', + 'file' => ':attribute måste vara mellan :min och :max kilobyte.', + 'string' => ':attribute måste vara mellan :min och :max tecken.', + 'array' => ':attribute måste vara mellan :min och :max föremål.', + ], + 'boolean' => ':attribute måste vara sant eller falskt.', + 'confirmed' => ':attribute bekräftelsen matchar inte.', + 'date' => ':attribute är inte ett giltigt datum.', + 'date_equals' => ':attribute måste vara ett datum efter :date.', + 'date_format' => ':attribute matchar inte formatet :format.', + 'different' => ':attribute och :other måste vara olika.', + 'digits' => ':attributet måste vara :digits siffror.', + 'digits_between' => ':attribute måste vara mellan :min och :max siffror.', + 'dimensions' => ':attribute har ogiltiga bilddimensioner.', + 'distinct' => 'Fältet :attribute har ett dubbelt värde.', + 'email' => ':attribute måste vara en giltig e-postadress.', + 'ends_with' => ':attribute måste sluta med något av följande: :values.', + 'exists' => 'Valt värde för :attribute är ogiltigt.', + 'file' => ':attribute måste vara en fil.', + 'filled' => ':attribute fältet måste ha ett värde.', + 'gt' => [ + 'numeric' => ':attribute måste vara större än :value.', + 'file' => ':attribute måste vara större än :value kilobytes.', + 'string' => ':attribute måste vara större än :value tecken.', + 'array' => ':attribute måste ha mer än :value objekt.', + ], + 'gte' => [ + 'numeric' => ':attribute måste vara större än eller lika :value.', + 'file' => ':attribute måste vara större än eller lika med :value kilobytes.', + 'string' => ':attribute måste vara större än eller lika med :value tecken.', + 'array' => ':attribute måste ha :value objekt eller mer.', + ], + 'image' => ':attribute måste vara en bild.', + 'in' => 'Valt värde för :attribute är ogiltigt.', + 'in_array' => ':attribute fältet existerar inte i :other.', + 'integer' => ':attribute måste vara ett heltal.', + 'ip' => ':attribute måste vara en giltig IP-adress.', + 'ipv4' => ':attribute måste vara en giltig IPv4-adress.', + 'ipv6' => ':attribute måste vara en giltig IPv6-adress.', + 'json' => ':attribute måste vara en giltig JSON-sträng.', + 'lt' => [ + 'numeric' => ':attribute måste vara mindre än :value.', + 'file' => ':attribute måste vara mindre än :value kilobytes.', + 'string' => ':attribute måste vara mindre än :value tecken.', + 'array' => ':attribute måste ha mindre än :value objekt.', + ], + 'lte' => [ + 'numeric' => ':attribute måste vara mindre än eller lika :value.', + 'file' => ':attribute måste vara mindre än eller lika med :value kilobytes.', + 'string' => ':attribute måste vara mindre än eller lika med :value tecken.', + 'array' => ':attribute får inte ha mer än :value objekt.', + ], + 'max' => [ + 'numeric' => ':attribute får inte vara större än :max.', + 'file' => ':attribute får inte vara större än :max kilobyte.', + 'string' => ':attribute får inte vara större än :max tecken.', + 'array' => ':attribute får inte ha mer än :max objekt.', + ], + 'mimes' => ':attribute måste vara en fil av typ: :values.', + 'mimetypes' => ':attribute måste vara en fil av typ: :values.', + 'min' => [ + 'numeric' => ':attribute måste vara minst :min.', + 'file' => ':attribute måste vara minst :min kilobyte.', + 'string' => ':attribute måste innehålla minst :min tecken.', + 'array' => ':attribute måste innehålla minst :min objekt.', + ], + 'not_in' => 'Det valda :attribute är ogiltigt.', + 'not_regex' => ':attribute format är ogiltigt.', + 'numeric' => ':attribute måste vara ett tal.', + 'password' => 'Lösenordet är felaktigt.', + 'present' => 'Fältet :attribute måste vara närvarande.', + 'regex' => ':attribute format är ogiltigt.', + 'required' => 'Fältet :attribute är obligatoriskt.', + 'required_if' => 'Fältet :attribute är obligatoriskt när :other är :value.', + 'required_unless' => ':attribute är obligatoriskt om inte :other finns i :values.', + 'required_with' => ':attribute fältet är obligatoriskt när :values är angivet.', + 'required_with_all' => 'Fältet :attribute är obligatoriskt när :values är presenterade.', + 'required_without' => 'Fältet :attribute är obligatoriskt när :values inte visas.', + 'required_without_all' => ':attribute är obligatirskt när ingen av :values finns.', + 'same' => ':attribute och :other måste matcha.', + 'size' => [ + 'numeric' => ':attribute måste vara :size.', + 'file' => ':attribute måste vara :size kilobyte.', + 'string' => ':attribute måste vara :size tecken.', + 'array' => ':attribute måste innehålla :size objekt.', + ], + 'starts_with' => ':attribute måste börja med något av följande: :values.', + 'string' => ':attribute måste vara en sträng.', + 'timezone' => ':attribute måste vara en giltig zon.', + 'unique' => ':attribute har redan tagits.', + 'uploaded' => ':attribute kunde inte laddas upp.', + 'url' => ':attribute format är ogiltigt.', + 'uuid' => ':attribute måste vara ett giltigt UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + 'attributes' => [], + +]; diff --git a/resources/lang/tr/auth.php b/resources/lang/tr/auth.php index 02435dcb6eb..b1a3a093168 100644 --- a/resources/lang/tr/auth.php +++ b/resources/lang/tr/auth.php @@ -23,7 +23,7 @@ 'throttle' => 'Çok fazla oturum açma girişiminde bulundunuz. Lütfen :seconds saniye içerisinde tekrar deneyiz.', 'not_authorized' => 'Bu işlemi yürütme yetkiniz yok', 'signup_disabled' => 'Kayıt şu anda devre dışı', - 'signup_error' => 'An error occured trying to register the user', + 'signup_error' => 'Kullanıcı kayıt ederken bir hata oluştu', 'back_homepage' => 'Ana sayfaya dön', 'mfa_auth_otp' => 'İki faktörlü cihazınızla kimlik doğrulaması', 'mfa_auth_webauthn' => 'Bir güvenlik anahtarıyla (WebAuthn) kimlik doğrulaması', diff --git a/resources/lang/tr/people.php b/resources/lang/tr/people.php index fa265a3c4e7..19b4db7a4c6 100644 --- a/resources/lang/tr/people.php +++ b/resources/lang/tr/people.php @@ -434,11 +434,11 @@ 'life_event_delete_description' => 'Bu yaşam olayını silmek istediğinizden emin misiniz? Silme işlemi geri alınamaz.', 'life_event_delete_success' => 'Yaşam olayı silindi', 'life_event_date_it_happened' => 'Meydana geldiği tarih', - 'life_event_category_work_education' => 'Work & education', - 'life_event_category_family_relationships' => 'Family & relationships', - 'life_event_category_home_living' => 'Home & living', - 'life_event_category_health_wellness' => 'Health & wellness', - 'life_event_category_travel_experiences' => 'Travel & experiences', + 'life_event_category_work_education' => 'İş & eğitim', + 'life_event_category_family_relationships' => 'Aile & ilişkiler', + 'life_event_category_home_living' => 'Ev & yaşam', + 'life_event_category_health_wellness' => 'Sağlık & sıhhat', + 'life_event_category_travel_experiences' => 'Seyahat & deneyimler', 'life_event_sentence_new_job' => 'Yeni bir iş başlatmak', 'life_event_sentence_retirement' => 'Emekli olmak', 'life_event_sentence_new_school' => 'Okula başlamak', @@ -500,8 +500,8 @@ 'photo_current_profile_pic' => 'Mevcut profil resmi', 'photo_make_profile_pic' => 'Profil resmi yapın', 'photo_delete' => 'Fotoğrafı sil', - 'photo_next' => 'Next photo', - 'photo_previous' => 'Previous photo', + 'photo_next' => 'Sonraki fotoğraf', + 'photo_previous' => 'Önceki fotoğraf', // Avatars 'avatar_change_title' => 'Avatarınızı değiştirin', @@ -511,7 +511,7 @@ 'avatar_gravatar' => 'Bu kişinin e-posta adresiyle ilişkili Gravatar.Gravatar, kullanıcıların e-posta adreslerini fotoğraflarla ilişkilendirmelerini sağlayan global bir sistemdir.', 'avatar_current' => 'Mevcut avatarı kullanın', 'avatar_photo' => 'Yüklediğiniz bir fotoğraftan', - 'avatar_crop_new_avatar_photo' => 'Crop new avatar photo', + 'avatar_crop_new_avatar_photo' => 'Yeni profil resmini kırp', // emotions 'emotion_this_made_me_feel' => 'Bu size … hissettirdi', diff --git a/resources/lang/tr/settings.php b/resources/lang/tr/settings.php index 2d004e500df..29a1d33c9c8 100644 --- a/resources/lang/tr/settings.php +++ b/resources/lang/tr/settings.php @@ -92,8 +92,9 @@ 'locale_pt' => 'Portekizce', 'locale_pt-BR' => 'Portekizce (Brezilya)', 'locale_ru' => 'Rusça', + 'locale_sv' => 'İsveççe', 'locale_zh' => 'Çince (Basitleştirilmiş)', - 'locale_zh-TW' => 'Chinese Traditional', + 'locale_zh-TW' => 'Geleneksel Çince', 'locale_tr' => 'Türkçe', 'locale_en-GB' => 'İngilizce (Birleşik Krallık)', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'Bu aktivite türünü bulamıyoruz.', 'personalization_activity_type_category_modal_delete_error' => 'Bu aktivite türü kategorisini bulamıyoruz.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'İsim', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Eylemler', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'İş ve eğitim', 'personalization_life_event_category_family_relationships' => 'Aile & ilişkiler', 'personalization_life_event_category_home_living' => 'Ev & yaşam', diff --git a/resources/lang/uk/settings.php b/resources/lang/uk/settings.php index 93115f57eb3..f6a8cd3b695 100644 --- a/resources/lang/uk/settings.php +++ b/resources/lang/uk/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => 'Portuguese', 'locale_pt-BR' => 'Portuguese (Brazil)', 'locale_ru' => 'Russian', + 'locale_sv' => 'Swedish', 'locale_zh' => 'Chinese Simplified', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => 'Turkish', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => 'We can’t find this activity type.', 'personalization_activity_type_category_modal_delete_error' => 'We can’t find this activity type category.', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', 'personalization_life_event_category_family_relationships' => 'Family & relationships', 'personalization_life_event_category_home_living' => 'Home & living', diff --git a/resources/lang/vendor/confirmation/el/confirmation.php b/resources/lang/vendor/confirmation/el/confirmation.php new file mode 100644 index 00000000000..27b9a44c293 --- /dev/null +++ b/resources/lang/vendor/confirmation/el/confirmation.php @@ -0,0 +1,16 @@ + 'Ευχαριστούμε για την εγγραφή σας! Παρακαλούμε ελέγξτε τα email σας για να επιβεβαιώσετε την διεύθυνση email σας.', + 'success' => 'Έχετε επιβεβαιώσει το λογαριασμό σας! Τώρα μπορείτε να συνδεθείτε.', + 'again' => 'Πρέπει να επιβεβαιώσετε το email σας προτού σας επιτραπεί η είσοδος στον ιστότοπο. +
Αν δεν έχετε λάβει το email επιβεβαίωσης ελέγξτε τον φάκελο spam. +
Για να σας αποστείλουμε νέο email επιβεβαίωσης παρακαλώ πατήστε εδώ.', + 'resend' => 'Σας έχουμε αποστείλει ένα email επιβεβαίωσης. Παρακαλώ ελέγξτε το mailbox σας.' +]; diff --git a/resources/lang/vendor/confirmation/sv/confirmation.php b/resources/lang/vendor/confirmation/sv/confirmation.php new file mode 100644 index 00000000000..35d252707d8 --- /dev/null +++ b/resources/lang/vendor/confirmation/sv/confirmation.php @@ -0,0 +1,16 @@ + 'Tack för att du registrerar dig! Kontrollera dina e-postmeddelanden för att bekräfta din e-postadress.', + 'success' => 'Du har verifierat ditt konto! Du kan nu logga in.', + 'again' => 'Du måste verifiera din e-post innan du kan komma åt webbplatsen. +
Om du inte har fått bekräftelsemail kontrollera din skräppostmapp. +
För att få ett nytt bekräftelsemail vänligen klicka här.', + 'resend' => 'Ett verifieringsmail har skickats. Vänligen kontrollera din e-post.' +]; diff --git a/resources/lang/vendor/confirmation/vi/confirmation.php b/resources/lang/vendor/confirmation/vi/confirmation.php new file mode 100644 index 00000000000..4f6445082d9 --- /dev/null +++ b/resources/lang/vendor/confirmation/vi/confirmation.php @@ -0,0 +1,16 @@ + 'Cảm ơn bạn đã đăng kí! Vui lòng kiểm tra email để xác thực địa chỉ email của bạn.', + 'success' => 'Xác thực tài khoản thành công. Bạn có thể đăng nhập ngay bây giờ.', + 'again' => 'Bạn phải xác thực email trước khi có thể truy cập website. +
Nếu bạn không nhận được email xác thực, hãy kiểm tra trong hòm thư rác. +
Để lấy email xác thực mới, hãy bấm vào đây.', + 'resend' => 'Tin nhắn xác thực đã được gửi. Hãy kiểm tra hộp thư đến của bạn.' +]; diff --git a/resources/lang/vendor/webauthn/de/errors.php b/resources/lang/vendor/webauthn/de/errors.php index b0e135940b4..b7a2a104fce 100644 --- a/resources/lang/vendor/webauthn/de/errors.php +++ b/resources/lang/vendor/webauthn/de/errors.php @@ -7,9 +7,9 @@ */ return [ - 'user_unauthenticated' => 'You need to log in before doing a Webauthn authentication', - 'auth_data_not_found' => 'Authentication data not found', - 'create_data_not_found' => 'Register data not found', - 'object_not_found' => 'Object not found', + 'user_unauthenticated' => 'Sie müssen sich vor einer WebAuthn-Authentifizierung anmelden', + 'auth_data_not_found' => 'Authentifizierungsdaten nicht gefunden', + 'create_data_not_found' => 'Registrierungsdaten nicht gefunden', + 'object_not_found' => 'Objekt nicht gefunden', ]; diff --git a/resources/lang/vendor/webauthn/el/errors.php b/resources/lang/vendor/webauthn/el/errors.php new file mode 100644 index 00000000000..7e115e935d4 --- /dev/null +++ b/resources/lang/vendor/webauthn/el/errors.php @@ -0,0 +1,15 @@ + 'Θα πρέπει να εισέλθετε προτού να κάνετε μία αυθεντικοποίηση Webauth', + 'auth_data_not_found' => 'Δεν βρέθηκαν δεδομένα αυθεντικοποίησης', + 'create_data_not_found' => 'Δεν βρέθηκαν δεδομένα εγγραφής', + 'object_not_found' => 'Δεν βρέθηκε το αντικείμενο', + +]; diff --git a/resources/lang/vendor/webauthn/es/errors.php b/resources/lang/vendor/webauthn/es/errors.php index b0e135940b4..9930fdbb014 100644 --- a/resources/lang/vendor/webauthn/es/errors.php +++ b/resources/lang/vendor/webauthn/es/errors.php @@ -7,9 +7,9 @@ */ return [ - 'user_unauthenticated' => 'You need to log in before doing a Webauthn authentication', + 'user_unauthenticated' => 'Necesitas iniciar sesión antes de realizar una autenticación Webauthn', 'auth_data_not_found' => 'Authentication data not found', 'create_data_not_found' => 'Register data not found', - 'object_not_found' => 'Object not found', + 'object_not_found' => 'Objeto no encontrado', ]; diff --git a/resources/lang/vendor/webauthn/sv/errors.php b/resources/lang/vendor/webauthn/sv/errors.php new file mode 100644 index 00000000000..e9bf48c8533 --- /dev/null +++ b/resources/lang/vendor/webauthn/sv/errors.php @@ -0,0 +1,15 @@ + 'Du måste logga in innan du gör en Webauthn-autentisering', + 'auth_data_not_found' => 'Autentiseringsdata hittades inte', + 'create_data_not_found' => 'Registerdata hittades inte', + 'object_not_found' => 'Objekt hittades inte', + +]; diff --git a/resources/lang/vendor/webauthn/vi/errors.php b/resources/lang/vendor/webauthn/vi/errors.php new file mode 100644 index 00000000000..66f8972fa70 --- /dev/null +++ b/resources/lang/vendor/webauthn/vi/errors.php @@ -0,0 +1,15 @@ + 'Bạn cần đăng nhập trước khi thực hiện xác thực Webauthn', + 'auth_data_not_found' => 'Không tìm thấy dữ liệu xác thực', + 'create_data_not_found' => 'Không tìm thấy dữ liệu đăng kí', + 'object_not_found' => 'Không tìm thấy đối tượng', + +]; diff --git a/resources/lang/vi/app.php b/resources/lang/vi/app.php new file mode 100644 index 00000000000..6e4bbfd11c6 --- /dev/null +++ b/resources/lang/vi/app.php @@ -0,0 +1,465 @@ + 'Có', + 'no' => 'Không', + 'update' => 'Cập nhật', + 'save' => 'Lưu', + 'add' => 'Thêm', + 'cancel' => 'Hủy', + 'confirm' => 'Xác nhận', + 'delete_confirm' => 'Xác nhận?', + 'delete' => 'Xóa', + 'edit' => 'Sửa', + 'upload' => 'Tải lên', + 'download' => 'Tải xuống', + 'save_close' => 'Lưu và đóng', + 'close' => 'Đóng', + 'copy' => 'Sao chép', + 'create' => 'Tạo', + 'remove' => 'Xoá', + 'revoke' => 'Thu hồi', + 'done' => 'Xong', + 'back' => 'Quay lại', + 'verify' => 'Xác minh', + 'new' => 'new', + 'unknown' => 'Tôi không biết', + 'load_more' => 'Hiển thị thêm', + 'loading' => 'Đang tải...', + 'with' => 'với', + 'today' => 'hôm nay', + 'yesterday' => 'hôm qua', + 'another_day' => 'another day', + 'date' => 'Ngày', + 'type' => 'Kiểu', + 'zoom' => 'Phóng to / Thu nhỏ', + 'upgrade' => 'Nâng cấp để mở khóa', + 'percent_uploaded' => 'Đã tải lên {percent}%', + 'retry' => 'Thử lại', + 'filter' => 'Lọc danh sách', + 'go_back' => 'Quay lại', + 'file_selected' => '1 tệp được chọn...|{count} tệp được chọn...', + + 'application_title' => 'Monica – hệ thống quản trị quan hệ cá nhân', + 'application_description' => 'Monica là công cụ để quản lý tương tác của bạn với người yêu, bạn bè và gia đình.', + 'application_og_title' => 'Có một mối quan hệ tốt hơn với người bạn yêu thương. CRM miễn phí cho bạn và gia đình.', + + 'markdown_description' => 'Muốn định dạng chữ tốt hơn? Chúng tôi hỗ trợ Markdown với chữ đậm, nghiêng, danh sách và nhiều hơn thế nữa.', + 'markdown_link' => 'Đọc tài liệu hướng dẫn', + + 'header_settings_link' => 'Cài đặt', + 'header_logout_link' => 'Thoát', + 'header_changelog_link' => 'Cập nhật sản phẩm', + + 'main_nav_cta' => 'Thêm người', + 'main_nav_dashboard' => 'Trang tổng quan', + 'main_nav_family' => 'Danh bạ', + 'main_nav_journal' => 'Nhật ký', + 'main_nav_activities' => 'Hoạt động', + 'main_nav_tasks' => 'Tác vụ', + + 'footer_remarks' => 'Any remarks?', + 'footer_send_email' => 'Gửi email cho chúng tôi', + 'footer_privacy' => 'Chính sách quyền riêng tư', + 'footer_release' => 'Ghi chú phát hành', + 'footer_newsletter' => 'Bản tin', + 'footer_source_code' => 'Đóng góp', + 'footer_version' => 'Phiên bản: :version', + 'footer_new_version' => 'Đã có phiên bản mới', + + 'footer_modal_version_whats_new' => 'Có gì mới', + 'footer_modal_version_release_away' => 'Bạn có 1 bản cập nhật. Bạn nên cập nhật hệ thống.|Bạn có :number bản cập nhật. Bạn nên cập nhật hệ thống.', + + 'breadcrumb_dashboard' => 'Trang tổng quan', + 'breadcrumb_list_contacts' => 'Danh sách liên hệ', + 'breadcrumb_archived_contacts' => 'Liên hệ đã lưu trữ', + 'breadcrumb_journal' => 'Nhật ký', + 'breadcrumb_settings' => 'Cài đặt', + 'breadcrumb_settings_export' => 'Xuất', + 'breadcrumb_settings_users' => 'Người dùng', + 'breadcrumb_settings_users_add' => 'Thêm người dùng', + 'breadcrumb_settings_subscriptions' => 'Subscription', + 'breadcrumb_settings_import' => 'Nhập dữ liệu', + 'breadcrumb_settings_import_report' => 'Nhập báo cáo', + 'breadcrumb_settings_import_upload' => 'Tải lên', + 'breadcrumb_settings_tags' => 'Nhãn', + 'breadcrumb_add_significant_other' => 'Thêm điều trọng đại khác', + 'breadcrumb_edit_significant_other' => 'Sửa điều trọng đại khác', + 'breadcrumb_add_note' => 'Thêm ghi chú', + 'breadcrumb_edit_note' => 'Sửa ghi chú', + 'breadcrumb_api' => 'API', + 'breadcrumb_dav' => 'DAV Resources', + 'breadcrumb_edit_introductions' => 'Đã gặp nhau thế nào', + 'breadcrumb_settings_personalization' => 'Cá nhân hóa', + 'breadcrumb_settings_security' => 'Bảo mật', + 'breadcrumb_settings_security_2fa' => 'Xác thực 2 yếu tố', + 'breadcrumb_profile' => 'Hồ sơ của :name', + + 'gender_male' => 'Nam', + 'gender_female' => 'Nữ', + 'gender_none' => 'Rather not say', + 'gender_no_gender' => 'Không xác định giới tính', + + 'error_title' => 'Rất tiếc! Đã xảy ra lỗi.', + 'error_unauthorized' => 'Bạn không có quyền chỉnh sửa tài nguyên này.', + 'error_user_account' => 'This user does not belong to the given account.', + 'error_save' => 'Có lỗi khi lưu dữ liệu.', + 'error_try_again' => 'Có sự cố. Xin vui lòng thử lại.', + 'error_id' => 'ID lỗi: :id', + 'error_unavailable' => 'Dịch vụ không khả dụng', + 'error_maintenance' => 'Đang bảo trì. Chúng tôi sẽ trở lại ngay.', + 'error_help' => 'Chúng tôi sẽ trở lại ngay.', + 'error_twitter' => 'Follow tài khoản Twitter để nhận thông báo điều gì đang diễn ra.', + 'error_no_term' => 'There is no policy for this instance yet.', + + 'default_save_success' => 'Lưu dữ liệu thành công.', + + 'compliance_title' => 'Xin lỗi vì sự gián đoạn.', + 'compliance_desc' => 'Chúng tôi đã thay đổi Điều khoản sử dụngChính sách bảo mật. Theo luật chúng tôi phải hỏi bạn xem xét và chấp nhận chúng, sau đó bạn có thể tiếp tục sử dụng tài khoản của bạn.', + 'compliance_desc_end' => 'We don’t do anything nasty with your data or your account and we never will.', + 'compliance_terms' => 'Đồng ý điều khoản mới', + + // Relationship types + // Yes, each relationship type has 8 strings associated with it. + // This is because we need to indicate the name of the relationship type, + // and also the name of the opposite side of this relationship (father/son), + // and then, the feminine version of the string. Finally, in some sentences + // in the UI, we need to include the name of the person we add the relationship + // to. + 'relationship_type_group_love' => 'Mối quan hệ tình cảm', + 'relationship_type_group_family' => 'Mối quan hệ gia đình', + 'relationship_type_group_friend' => 'Mối quan hệ bạn bè', + 'relationship_type_group_work' => 'Mối quan hệ công việc', + 'relationship_type_group_other' => 'Các mối quan hệ khác', + + 'relationship_type_partner' => 'significant other', + 'relationship_type_partner_female' => 'significant other', + 'relationship_type_partner_with_name' => ':name’s significant other', + 'relationship_type_partner_female_with_name' => ':name’s significant other', + + 'relationship_type_spouse' => 'vợ/chồng', + 'relationship_type_spouse_female' => 'vợ/chồng', + 'relationship_type_spouse_with_name' => ':name’s spouse', + 'relationship_type_spouse_female_with_name' => ':name’s spouse', + + 'relationship_type_date' => 'date', + 'relationship_type_date_female' => 'date', + 'relationship_type_date_with_name' => ':name’s date', + 'relationship_type_date_female_with_name' => ':name’s date', + + 'relationship_type_lover' => 'người yêu', + 'relationship_type_lover_female' => 'người yêu', + 'relationship_type_lover_with_name' => 'người yêu của :name', + 'relationship_type_lover_female_with_name' => 'người yêu của :name', + + 'relationship_type_inlovewith' => 'có tình cảm với', + 'relationship_type_inlovewith_female' => 'có tình cảm với', + 'relationship_type_inlovewith_with_name' => 'someone :name is in love with', + 'relationship_type_inlovewith_female_with_name' => 'someone :name is in love with', + + 'relationship_type_lovedby' => 'được thích bởi', + 'relationship_type_lovedby_female' => 'được thích bởi', + 'relationship_type_lovedby_with_name' => ':name’s secret lover', + 'relationship_type_lovedby_female_with_name' => ':name’s secret lover', + + 'relationship_type_ex' => 'người yêu cũ', + 'relationship_type_ex_female' => 'người yêu cũ', + 'relationship_type_ex_with_name' => 'người yêu cũ của :name', + 'relationship_type_ex_female_with_name' => 'người yêu cũ của :name', + + 'relationship_type_parent' => 'bố', + 'relationship_type_parent_female' => 'mẹ', + 'relationship_type_parent_with_name' => 'bố của :name', + 'relationship_type_parent_female_with_name' => 'mẹ của :name', + + 'relationship_type_child' => 'con trai', + 'relationship_type_child_female' => 'con gái', + 'relationship_type_child_with_name' => 'con trai của :name', + 'relationship_type_child_female_with_name' => 'con gái của :name', + + 'relationship_type_stepparent' => 'cha dượng', + 'relationship_type_stepparent_female' => 'mẹ kế', + 'relationship_type_stepparent_with_name' => 'dượng của :name', + 'relationship_type_stepparent_female_with_name' => 'mẹ kế của :name', + + 'relationship_type_stepchild' => 'con trai riêng', + 'relationship_type_stepchild_female' => 'con gái riêng', + 'relationship_type_stepchild_with_name' => 'con trai riêng của :name', + 'relationship_type_stepchild_female_with_name' => 'con gái riêng của :name', + + 'relationship_type_sibling' => 'Anh em trai', + 'relationship_type_sibling_female' => 'Chị em gái', + 'relationship_type_sibling_with_name' => 'anh trai của :name', + 'relationship_type_sibling_female_with_name' => 'chị gái của :name', + + 'relationship_type_grandparent' => 'ông bà', + 'relationship_type_grandparent_female' => 'ông bà', + 'relationship_type_grandparent_with_name' => 'ông bà của :name', + 'relationship_type_grandparent_female_with_name' => 'ông bà của :name', + + 'relationship_type_grandchild' => 'cháu', + 'relationship_type_grandchild_female' => 'cháu', + 'relationship_type_grandchild_with_name' => 'cháu của :name', + 'relationship_type_grandchild_female_with_name' => 'cháu của :name', + + 'relationship_type_uncle' => 'chú/bác', + 'relationship_type_uncle_female' => 'cô/dì', + 'relationship_type_uncle_with_name' => 'chú/bác của :name', + 'relationship_type_uncle_female_with_name' => 'cô/dì của :name', + + 'relationship_type_nephew' => 'cháu trai', + 'relationship_type_nephew_female' => 'cháu gái', + 'relationship_type_nephew_with_name' => 'cháu trai của :name', + 'relationship_type_nephew_female_with_name' => 'cháu gái của :name', + + 'relationship_type_cousin' => 'cousin', + 'relationship_type_cousin_female' => 'anh em họ', + 'relationship_type_cousin_with_name' => 'anh em họ của :name', + 'relationship_type_cousin_female_with_name' => ':name’s cousin', + + 'relationship_type_godfather' => 'godfather', + 'relationship_type_godfather_female' => 'godmother', + 'relationship_type_godfather_with_name' => ':name’s godfather', + 'relationship_type_godfather_female_with_name' => ':name’s godmother', + + 'relationship_type_godson' => 'godson', + 'relationship_type_godson_female' => 'goddaughter', + 'relationship_type_godson_with_name' => ':name’s godson', + 'relationship_type_godson_female_with_name' => ':name’s goddaughter', + + 'relationship_type_friend' => 'friend', + 'relationship_type_friend_female' => 'friend', + 'relationship_type_friend_with_name' => ':name’s friend', + 'relationship_type_friend_female_with_name' => ':name’s friend', + + 'relationship_type_bestfriend' => 'best friend', + 'relationship_type_bestfriend_female' => 'best friend', + 'relationship_type_bestfriend_with_name' => ':name’s best friend', + 'relationship_type_bestfriend_female_with_name' => ':name’s best friend', + + 'relationship_type_colleague' => 'colleague', + 'relationship_type_colleague_female' => 'colleague', + 'relationship_type_colleague_with_name' => ':name’s colleague', + 'relationship_type_colleague_female_with_name' => ':name’s colleague', + + 'relationship_type_boss' => 'boss', + 'relationship_type_boss_female' => 'boss', + 'relationship_type_boss_with_name' => ':name’s boss', + 'relationship_type_boss_female_with_name' => ':name’s boss', + + 'relationship_type_subordinate' => 'subordinate', + 'relationship_type_subordinate_female' => 'subordinate', + 'relationship_type_subordinate_with_name' => 'cấp dưới của :name', + 'relationship_type_subordinate_female_with_name' => 'cấp dưới của :name', + + 'relationship_type_mentor' => 'người hướng dẫn', + 'relationship_type_mentor_female' => 'người hướng dẫn', + 'relationship_type_mentor_with_name' => 'người hướng dẫn của :name', + 'relationship_type_mentor_female_with_name' => 'người hướng dẫn của :name', + + 'relationship_type_protege' => 'người được bảo hộ', + 'relationship_type_protege_female' => 'người được bảo hộ', + 'relationship_type_protege_with_name' => 'người được :name bảo hộ', + 'relationship_type_protege_female_with_name' => 'người được :name bảo hộ', + + 'relationship_type_ex_husband' => 'chồng cũ', + 'relationship_type_ex_husband_female' => 'vợ cũ', + 'relationship_type_ex_husband_with_name' => 'chồng cũ của :name', + 'relationship_type_ex_husband_female_with_name' => 'vợ cũ của :name', + + // emotions + 'emotion_primary_love' => 'Yêu', + 'emotion_primary_joy' => 'Vui sướng', + 'emotion_primary_surprise' => 'Ngạc nhiên', + 'emotion_primary_anger' => 'Tức giận', + 'emotion_primary_sadness' => 'Buồn bã', + 'emotion_primary_fear' => 'Sợ hãi', + + 'emotion_secondary_affection' => 'Cảm kích', + 'emotion_secondary_lust' => 'Ham muốn', + 'emotion_secondary_longing' => 'Ao ước', + 'emotion_secondary_cheerfulness' => 'Vui vẻ', + 'emotion_secondary_zest' => 'Hăng hái', + 'emotion_secondary_contentment' => 'Hài lòng', + 'emotion_secondary_pride' => 'Tự hào', + 'emotion_secondary_optimism' => 'Lạc quan', + 'emotion_secondary_enthrallment' => 'Say mê', + 'emotion_secondary_relief' => 'Cứu trợ', + 'emotion_secondary_surprise' => 'Ngạc nhiên', + 'emotion_secondary_irritation' => 'Kích thích', + 'emotion_secondary_exasperation' => 'Bực tức', + 'emotion_secondary_rage' => 'Thịnh nộ', + 'emotion_secondary_disgust' => 'Chán ghét', + 'emotion_secondary_envy' => 'Đố kị', + 'emotion_secondary_suffering' => 'Đau khổ', + 'emotion_secondary_sadness' => 'Buồn bã', + 'emotion_secondary_disappointment' => 'Thất vọng', + 'emotion_secondary_shame' => 'Xấu hổ', + 'emotion_secondary_neglect' => 'Bỏ bê', + 'emotion_secondary_sympathy' => 'Cảm thông', + 'emotion_secondary_horror' => 'Ghê rợn', + 'emotion_secondary_nervousness' => 'Lo lắng', + + 'emotion_adoration' => 'Yêu mến', + 'emotion_affection' => 'Cảm kích', + 'emotion_love' => 'Yêu', + 'emotion_fondness' => 'Thương mến', + 'emotion_liking' => 'Có thiện cảm', + 'emotion_attraction' => 'Thu hút', + 'emotion_caring' => 'Chăm sóc', + 'emotion_tenderness' => 'Nhạy cảm', + 'emotion_compassion' => 'Thương xót', + 'emotion_sentimentality' => 'Đa cảm', + 'emotion_arousal' => 'Arousal', + 'emotion_desire' => 'Desire', + 'emotion_lust' => 'Lust', + 'emotion_passion' => 'Passion', + 'emotion_infatuation' => 'Infatuation', + 'emotion_longing' => 'Longing', + 'emotion_amusement' => 'Amusement', + 'emotion_bliss' => 'Bliss', + 'emotion_cheerfulness' => 'Cheerfulness', + 'emotion_gaiety' => 'Gaiety', + 'emotion_glee' => 'Glee', + 'emotion_jolliness' => 'Jolliness', + 'emotion_joviality' => 'Joviality', + 'emotion_joy' => 'Joy', + 'emotion_delight' => 'Delight', + 'emotion_enjoyment' => 'Enjoyment', + 'emotion_gladness' => 'Gladness', + 'emotion_happiness' => 'Happiness', + 'emotion_jubilation' => 'Jubilation', + 'emotion_elation' => 'Elation', + 'emotion_satisfaction' => 'Satisfaction', + 'emotion_ecstasy' => 'Ecstasy', + 'emotion_euphoria' => 'Euphoria', + 'emotion_enthusiasm' => 'Enthusiasm', + 'emotion_zeal' => 'Zeal', + 'emotion_zest' => 'Zest', + 'emotion_excitement' => 'Excitement', + 'emotion_thrill' => 'Thrill', + 'emotion_exhilaration' => 'Exhilaration', + 'emotion_contentment' => 'Contentment', + 'emotion_pleasure' => 'Pleasure', + 'emotion_pride' => 'Pride', + 'emotion_eagerness' => 'Eagerness', + 'emotion_hope' => 'Hope', + 'emotion_optimism' => 'Optimism', + 'emotion_enthrallment' => 'Enthrallment', + 'emotion_rapture' => 'Rapture', + 'emotion_relief' => 'Relief', + 'emotion_amazement' => 'Amazement', + 'emotion_surprise' => 'Surprise', + 'emotion_astonishment' => 'Astonishment', + 'emotion_aggravation' => 'Aggravation', + 'emotion_irritation' => 'Irritation', + 'emotion_agitation' => 'Agitation', + 'emotion_annoyance' => 'Annoyance', + 'emotion_grouchiness' => 'Grouchiness', + 'emotion_grumpiness' => 'Grumpiness', + 'emotion_exasperation' => 'Exasperation', + 'emotion_frustration' => 'Frustration', + 'emotion_anger' => 'Anger', + 'emotion_rage' => 'Rage', + 'emotion_outrage' => 'Outrage', + 'emotion_fury' => 'Fury', + 'emotion_wrath' => 'Wrath', + 'emotion_hostility' => 'Hostility', + 'emotion_ferocity' => 'Ferocity', + 'emotion_bitterness' => 'Bitterness', + 'emotion_hate' => 'Hate', + 'emotion_loathing' => 'Loathing', + 'emotion_scorn' => 'Scorn', + 'emotion_spite' => 'Spite', + 'emotion_vengefulness' => 'Vengefulness', + 'emotion_dislike' => 'Dislike', + 'emotion_resentment' => 'Resentment', + 'emotion_disgust' => 'Disgust', + 'emotion_revulsion' => 'Revulsion', + 'emotion_contempt' => 'Contempt', + 'emotion_envy' => 'Envy', + 'emotion_jealousy' => 'Jealousy', + 'emotion_agony' => 'Agony', + 'emotion_suffering' => 'Suffering', + 'emotion_hurt' => 'Hurt', + 'emotion_anguish' => 'Anguish', + 'emotion_depression' => 'Depression', + 'emotion_despair' => 'Despair', + 'emotion_hopelessness' => 'Hopelessness', + 'emotion_gloom' => 'Gloom', + 'emotion_glumness' => 'Glumness', + 'emotion_sadness' => 'Sadness', + 'emotion_unhappiness' => 'Unhappiness', + 'emotion_grief' => 'Grief', + 'emotion_sorrow' => 'Sorrow', + 'emotion_woe' => 'Woe', + 'emotion_misery' => 'Misery', + 'emotion_melancholy' => 'Melancholy', + 'emotion_dismay' => 'Dismay', + 'emotion_disappointment' => 'Disappointment', + 'emotion_displeasure' => 'Displeasure', + 'emotion_guilt' => 'Guilt', + 'emotion_shame' => 'Shame', + 'emotion_regret' => 'Regret', + 'emotion_remorse' => 'Remorse', + 'emotion_alienation' => 'Alienation', + 'emotion_isolation' => 'Isolation', + 'emotion_neglect' => 'Neglect', + 'emotion_loneliness' => 'Loneliness', + 'emotion_rejection' => 'Rejection', + 'emotion_homesickness' => 'Homesickness', + 'emotion_defeat' => 'Defeat', + 'emotion_dejection' => 'Dejection', + 'emotion_insecurity' => 'Insecurity', + 'emotion_embarrassment' => 'Embarrassment', + 'emotion_humiliation' => 'Humiliation', + 'emotion_insult' => 'Insult', + 'emotion_pity' => 'Pity', + 'emotion_sympathy' => 'Sympathy', + 'emotion_alarm' => 'Alarm', + 'emotion_shock' => 'Shock', + 'emotion_fear' => 'Fear', + 'emotion_fright' => 'Fright', + 'emotion_horror' => 'Horror', + 'emotion_terror' => 'Terror', + 'emotion_panic' => 'Panic', + 'emotion_hysteria' => 'Hysteria', + 'emotion_mortification' => 'Mortification', + 'emotion_anxiety' => 'Anxiety', + 'emotion_nervousness' => 'Nervousness', + 'emotion_tenseness' => 'Tenseness', + 'emotion_uneasiness' => 'Uneasiness', + 'emotion_apprehension' => 'Apprehension', + 'emotion_worry' => 'Worry', + 'emotion_distress' => 'Distress', + 'emotion_dread' => 'Dread', + + // weather + 'weather_clear-day' => 'Ngày quang đãng', + 'weather_clear-night' => 'Đêm quang đãng', + 'weather_rain' => 'Mưa', + 'weather_snow' => 'Tuyết', + 'weather_sleet' => 'Mưa tuyết', + 'weather_wind' => 'Gió', + 'weather_fog' => 'Sương mù', + 'weather_cloudy' => 'Nhiều mây', + 'weather_partly-cloudy-day' => 'Mây rải rác', + 'weather_partly-cloudy-night' => 'Mây rải rác', + 'weather_current_temperature_celsius' => ':temperature °C', + 'weather_current_temperature_fahrenheit' => ':temperature °F', + 'weather_current_title' => 'Thời tiết hiện tại', + + // dav + 'dav_contacts' => 'Contacts', + 'dav_contacts_description' => ':name’s contacts', + 'dav_birthdays' => 'Sinh nhật', + 'dav_birthdays_description' => ':name’s contact’s birthdays', + 'dav_tasks' => 'Tasks', + 'dav_tasks_description' => ':name’s tasks', +]; diff --git a/resources/lang/vi/auth.php b/resources/lang/vi/auth.php new file mode 100644 index 00000000000..5357de2ba9a --- /dev/null +++ b/resources/lang/vi/auth.php @@ -0,0 +1,88 @@ + 'Thông tin đăng nhập không đúng.', + 'throttle' => 'Đăng nhập thất bại nhiều lần. Vui lòng thử lại sau :seconds.', + 'not_authorized' => 'Bạn không có quyền thực hiện hành động này', + 'signup_disabled' => 'Việc đăng kí đang bị tạm dừng', + 'signup_error' => 'Có lỗi xảy ra khi đăng kí tài khoản', + 'back_homepage' => 'Quay lại trang chủ', + 'mfa_auth_otp' => 'Xác thực với xác thực hai yếu tố', + 'mfa_auth_webauthn' => 'Xác thực với khóa bảo mật (WebAuthn)', + '2fa_title' => 'Two Factor Authentication', + '2fa_wrong_validation' => 'The two factor authentication has failed.', + '2fa_one_time_password' => 'Two factor authentication code', + '2fa_recuperation_code' => 'Enter a two factor recovery code', + '2fa_otp_help' => 'Open up your two factor authentication mobile app and copy the code', + + 'login_to_account' => 'Login to your account', + 'login_with_recovery' => 'Login with a recovery code', + 'login_again' => 'Please login again to your account', + 'email' => 'Email', + 'password' => 'Password', + 'recovery' => 'Recovery code', + 'login' => 'Login', + 'button_remember' => 'Ghi nhớ đăng nhập', + 'password_forget' => 'Quên mật khẩu?', + 'password_reset' => 'Đặt lại mật khẩu', + 'use_recovery' => 'Or you can use a recovery code', + 'signup_no_account' => 'Chưa có tài khoản?', + 'signup' => 'Đăng ký', + 'create_account' => 'Create the first account by signing up', + 'change_language_title' => 'Đổi ngôn ngữ:', + 'change_language' => 'Đổi ngôn ngữ thành :lang', + + 'password_reset_title' => 'Đặt lại mật khẩu', + 'password_reset_email' => 'E-Mail Address', + 'password_reset_send_link' => 'Send Password Reset Link', + 'password_reset_password' => 'Password', + 'password_reset_password_confirm' => 'Confirm Password', + 'password_reset_action' => 'Reset Password', + 'password_reset_email_content' => 'Click here to reset your password:', + + 'register_title_welcome' => 'Welcome to your newly installed Monica instance', + 'register_create_account' => 'You need to create an account to use Monica', + 'register_title_create' => 'Tạo tài khoản Monica của bạn', + 'register_login' => 'Đăng nhập nếu bạn đã có tài khoản.', + 'register_email' => 'Nhập địa chỉ email hợp lệ', + 'register_email_example' => 'you@home', + 'register_firstname' => 'Tên', + 'register_firstname_example' => 'ví dụ: Dũng', + 'register_lastname' => 'Họ', + 'register_lastname_example' => 'eg. Nguyễn', + 'register_password' => 'Mật khẩu', + 'register_password_example' => 'Nhập mật khẩu bảo mật', + 'register_password_confirmation' => 'Xác nhận mật khẩu', + 'register_action' => 'Đăng kí', + 'register_policy' => 'Đăng kí có nghĩa là bạn đã đọc và đồng ý với Điều khoản bảo mậtThỏa thuận sử dụng.', + '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.', + + 'confirmation_title' => 'Kiểm tra lại địa chỉ e-mail', + 'confirmation_fresh' => 'Một liên kết xác nhận mới đã được gửi vào địa chỉ email của bạn.', + 'confirmation_check' => 'Trước khi tiếp tục, hãy kiểm tra email của bạn cho liên kết xác thực.', + 'confirmation_request_another' => 'Nếu bạn không nhận được email bấm vào đây để yêu cầu một email khác.', + + 'confirmation_again' => 'Nếu bạn muốn đổi địa chỉ email, bạn có thể bấm vào đây.', + 'email_change_current_email' => 'Địa chỉ email hiện tại:', + 'email_change_title' => 'Đổi địa chỉ email', + 'email_change_new' => 'Địa chỉ email mới', + 'email_changed' => 'Địa chỉ email của bạn đã được thay đổi. Hãy kiểm tra hòm thư để xác nhận lại.', +]; diff --git a/resources/lang/vi/changelog.php b/resources/lang/vi/changelog.php new file mode 100644 index 00000000000..8a86c7aa081 --- /dev/null +++ b/resources/lang/vi/changelog.php @@ -0,0 +1,12 @@ + 'Product changes', + 'note' => 'Note: unfortunately, this page is only in English.', +]; diff --git a/resources/lang/vi/dashboard.php b/resources/lang/vi/dashboard.php new file mode 100644 index 00000000000..a4e5dbb363f --- /dev/null +++ b/resources/lang/vi/dashboard.php @@ -0,0 +1,42 @@ + 'Chào mừng đến với tài khoản của bạn!', + 'dashboard_blank_description' => 'Monica là nơi sắp xếp tất cả tương tác của bạn với người mà bạn quan tâm.', + 'dashboard_blank_cta' => 'Add your first contact', + 'dashboard_blank_illustration' => 'Minh họa bởi Freepik', + + 'notes_title' => 'Bạn chưa có ghi chú gắn dấu sao nào.', + + 'tab_recent_calls' => 'Cuộc gọi gần đây', + 'tab_favorite_notes' => 'Ghi chú ưa thích', + 'tab_calls_blank' => 'Bạn chưa ghi nhật ký cuộc gọi nào.', + 'tab_debts' => 'Khoản nợ', + 'tab_debts_blank' => 'Bạn chưa ghi khoản nợ nào.', + 'tab_tasks' => 'Tasks', + 'tab_tasks_blank' => 'You haven’t any task yet.', + + 'tasks_add_task_placeholder' => 'What is this task about?', + 'tasks_tab_your_contacts' => 'Tasks related to your contacts', + 'tasks_tab_your_tasks' => 'Your tasks', + 'tasks_add_note' => 'Press Enter to add the task.', + 'task_add_cta' => 'Add a task', + + 'debts_you_owe' => 'You owe', + + 'statistics_contacts' => 'Contacts', + 'statistics_activities' => 'Hoạt động', + 'statistics_gifts' => 'Quà tặng', + + 'reminders_next_months' => 'Sự kiện trong 3 tháng tới', + 'reminders_none' => 'Không có nhắc nhở nào trong tháng này', + + 'product_changes' => 'Cập nhật sản phẩm', + 'product_view_details' => 'Xem chi tiết', +]; diff --git a/resources/lang/vi/format.php b/resources/lang/vi/format.php new file mode 100644 index 00000000000..a58bd78de9d --- /dev/null +++ b/resources/lang/vi/format.php @@ -0,0 +1,36 @@ + 'M d, Y H:i', + 'short_date_year' => 'M d, Y', + 'short_date' => 'M d', + 'short_month' => 'M', + 'short_month_year' => 'M Y', + 'short_day' => 'D', + 'full_date_year' => 'F d, Y', + 'full_month' => 'F', + 'full_month_year' => 'F Y', + 'full_hour' => 'h.i A', + + 'short_text' => '{text}…', +]; diff --git a/resources/lang/vi/journal.php b/resources/lang/vi/journal.php new file mode 100644 index 00000000000..453d7370944 --- /dev/null +++ b/resources/lang/vi/journal.php @@ -0,0 +1,30 @@ + 'Hôm nay của bạn thế nào? Bạn có thể đánh giá mỗi ngày một lần.', + 'journal_come_back' => 'Cảm ơn. Quay lại vào ngày mai để đánh giá lại một ngày của bạn.', + '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_add' => 'Add a journal entry', + 'journal_edit' => 'Edit a journal entry', + 'journal_empty' => 'Empty journal', + 'journal_created_automatically' => 'Created automatically', + 'journal_entry_type_journal' => 'Journal entry', + 'journal_entry_type_activity' => 'Hoạt động', + 'journal_entry_rate' => 'You rated your day.', + 'journal_add_comment' => 'Care to add a comment (optional)?', + 'journal_show_comment' => 'Hiển thị bình luận', + 'entry_delete_success' => 'The journal entry has been successfully deleted.', + 'journal_add_title' => 'Title (optional)', + 'journal_add_date' => 'Date', + 'journal_add_post' => 'Entry', + 'journal_add_cta' => 'Lưu', + 'journal_blank_cta' => 'Add your first journal entry', + 'journal_blank_description' => 'The journal lets you write events that happened to you, and remember them.', + 'delete_confirmation' => 'Are you sure you want to delete this journal entry?', +]; diff --git a/resources/lang/vi/logs.php b/resources/lang/vi/logs.php new file mode 100644 index 00000000000..7ad9f30ac1a --- /dev/null +++ b/resources/lang/vi/logs.php @@ -0,0 +1,33 @@ + 'Created the contact.', + 'settings_log_contact_created_with_name' => 'Added :name as a contact.', + 'settings_log_contact_created_with_name_with_link' => 'Added :name as a contact.', + + // contat description update + 'contact_log_contact_description_updated' => 'Updated the description.', + 'settings_log_contact_description_updated_with_name' => 'Updated the description of :name.', + 'settings_log_contact_description_updated_with_name_with_link' => 'Updated the description of :name.', + + // contact description clear + 'contact_log_contact_description_cleared' => 'Cleared the description.', + 'settings_log_contact_description_cleared_with_name' => 'Cleared the description of :name.', + 'settings_log_contact_description_cleared_with_name_with_link' => 'Cleared the description of :name.', + + // contact work information update + 'contact_log_contact_work_updated' => 'Đã cập nhật thông tin công việc.', + 'settings_log_contact_work_updated_with_name' => 'Updated work information of :name.', + 'settings_log_contact_work_updated_with_name_with_link' => 'Updated work information of :name.', + + // company created + 'settings_log_company_created' => 'Đã tạo công ty tên :name.', +]; diff --git a/resources/lang/vi/mail.php b/resources/lang/vi/mail.php new file mode 100644 index 00000000000..42f824b6eb6 --- /dev/null +++ b/resources/lang/vi/mail.php @@ -0,0 +1,48 @@ + 'Reminder for :contact', + 'greetings' => 'Chào :username', + 'want_reminded_of' => 'You wanted to be reminded of :reason', + 'for' => 'For: :name', + 'comment' => 'Comment: :comment', + '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', + + 'notification_subject_line' => 'You have an upcoming event', + 'notification_description' => 'In :count days (on :date), the following event will happen:', + + 'stay_in_touch_subject_line' => 'Stay in touch with :name', + '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.', + + 'notifications_whoops' => 'Whoops!', + 'notifications_hello' => 'Xin chào!', + 'notifications_regards' => 'Thân', + 'notifications_footer' => 'If you’re having trouble clicking the ":actionText" button, copy and paste the URL below into your web browser: [:actionURL](:actionURL)', + 'notifications_rights' => 'Bản quyền đã được bảo hộ', + + 'confirmation_email_title' => 'Monica – Email verification', + 'confirmation_email_intro'=> 'To validate your email click on the button below', + 'confirmation_email_button' => 'Xác thực địa chỉ email', + 'confirmation_email_bottom' => 'If you did not create an account, no further action is required.', + + 'password_reset_title' => 'Monica – Reset Password Notification', + 'password_reset_intro' => 'You are receiving this email because we received a password reset request for your account.', + 'password_reset_button' => 'Đặt lại mật khẩu', + 'password_reset_expiration' => 'This password reset link will expire in :count minutes.', + 'password_reset_bottom' => 'If you did not request a password reset, no further action is required.', + + 'invitation_title' => 'Monica – You are invited by :name', + '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_button' => 'Chấp nhận lời mời', + 'invitation_expiration' => 'This link will expire in :count days.', +]; diff --git a/resources/lang/vi/pagination.php b/resources/lang/vi/pagination.php new file mode 100644 index 00000000000..64633a02146 --- /dev/null +++ b/resources/lang/vi/pagination.php @@ -0,0 +1,25 @@ + '❮ Trước', + 'next' => 'Kế tiếp ❯', + +]; diff --git a/resources/lang/vi/passwords.php b/resources/lang/vi/passwords.php new file mode 100644 index 00000000000..ace76dc4f25 --- /dev/null +++ b/resources/lang/vi/passwords.php @@ -0,0 +1,30 @@ + 'Mật khẩu của bạn đã được đặt lại!', + 'sent' => 'Nếu bạn nhập email đã có trong hệ thống, bạn sẽ nhận được 1 liên kết đặt lại mật khẩu.', + 'token' => 'Token đặt lại mật khẩu không hợp lệ.', + 'user' => 'Nếu bạn nhập email đã có trong hệ thống, bạn sẽ nhận được 1 liên kết đặt lại mật khẩu.', + 'changed' => 'Thay đổi mật khẩu thành công.', + 'invalid' => 'Mật khẩu hiện tại không đúng.', + 'throttled' => 'Vui lòng chờ trước khi thử lại.', + +]; diff --git a/resources/lang/vi/people.php b/resources/lang/vi/people.php new file mode 100644 index 00000000000..d53403db457 --- /dev/null +++ b/resources/lang/vi/people.php @@ -0,0 +1,534 @@ + 'Không tìm thấy liên hệ', + 'people_list_number_kids' => '1 con|:count con', + 'people_list_last_updated' => 'Danh sách liên hệ mới cập nhật:', + 'people_list_number_reminders' => '1 lời nhắc|:count lời nhắc', + 'people_list_blank_title' => 'Bạn không có ai trong tài khoản', + 'people_list_blank_cta' => 'Thêm ai đó', + 'people_list_sort' => 'Sắp xếp', + 'people_list_stats' => '1 liên hệ|:count liên hệ', + 'people_list_firstnameAZ' => 'Xếp theo tên A → Z', + 'people_list_firstnameZA' => 'Xếp theo tên Z → A', + 'people_list_lastnameAZ' => 'Xếp theo họ A → Z', + 'people_list_lastnameZA' => 'Xếp theo họ Z → A', + 'people_list_lastactivitydateNewtoOld' => 'Xếp theo hoạt động gần đây nhất', + 'people_list_lastactivitydateOldtoNew' => 'Xếp theo hoạt động lâu nhất', + 'people_list_filter_tag' => 'Hiện tất cả liên hệ được tag với', + 'people_list_clear_filter' => 'Xoá bộ lọc', + 'people_list_contacts_per_tags' => '1 liên hệ|:count liên hệ', + 'people_list_show_dead' => 'Hiện người đã qua đời (:count)', + 'people_list_hide_dead' => 'Ẩn người đã qua đời (:count)', + 'people_search' => 'Tìm kiếm liên hệ...', + 'people_search_no_results' => 'Không tìm thấy kết quả', + 'people_search_next' => 'Kế tiếp', + 'people_search_prev' => 'Trước đó', + 'people_search_rows_per_page' => 'Số dòng trên mỗi trang:', + 'people_search_of' => 'của', + 'people_search_page' => 'Trang', + 'people_search_all' => 'Tất cả', + 'people_add_new' => 'Thêm người mới', + 'people_list_account_usage' => 'Your account usage: :current/:limit contacts', + 'people_list_account_upgrade_title' => 'Nâng cấp tài khoản của bạn để mở khoá tất cả tính năng.', + 'people_list_account_upgrade_cta' => 'Nâng cấp ngay', + 'people_list_untagged' => 'Xem liên hệ không được gắn thẻ', + 'people_list_filter_untag' => 'Hiện tất cả liên hệ không được gắn thẻ', + + // people add + 'people_add_title' => 'Thêm người mới', + 'people_add_missing' => 'Không có người nào Thêm người mới ngay bây giờ', + 'people_add_firstname' => 'Tên', + 'people_add_middlename' => 'Tên đệm (Tuỳ chọn)', + 'people_add_lastname' => 'Họ (Tuỳ chọn)', + 'people_add_nickname' => 'Biệt danh (Tuỳ chọn)', + 'people_add_cta' => 'Thêm', + 'people_save_and_add_another_cta' => 'Gửi và thêm một người khác', + 'people_add_success' => ':name đã được tạo thành công', + 'people_add_gender' => 'Giới tính', + 'people_delete_success' => 'Liên hệ đã bị xoá', + 'people_delete_message' => 'Xóa liên hệ', + 'people_delete_confirmation' => 'Bạn chắc chắn muốn xoá liên hệ? Việc xoá sẽ không thể khôi phục.', + 'people_add_birthday_reminder' => 'Chúc mừng sinh nhật tới :name', + 'people_add_birthday_reminder_deceased' => 'On this date, :name, would have celebrated his birthday', + 'people_add_import' => 'Bạn có muốn nhập danh bạ của bạn?', + 'people_edit_email_error' => 'Đã có liên hệ trong tài khoản của bạn sử dụng địa chỉ email này. Hãy chọn một cái khác.', + 'people_export' => 'Xuất dưới dạng vCard', + 'people_add_reminder_for_birthday' => 'Tạo lời nhắc hàng năm cho sinh nhật này', + + // show + 'section_contact_information' => 'Thông tin liên hệ', + 'section_personal_activities' => 'Hoạt động', + 'section_personal_reminders' => 'Lời nhắc', + 'section_personal_tasks' => 'Tasks', + 'section_personal_gifts' => 'Quà tặng', + 'section_personal_notes' => 'Ghi chú', + + // archived contacts + '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', + + // Header + 'me' => 'Đây là bạn', + 'edit_contact_information' => 'Sửa thông tin liên hệ', + 'contact_archive' => 'Lưu trữ liên hệ', + 'contact_unarchive' => 'Bỏ lưu trữ liên hệ', + 'contact_archive_help' => 'Liên hệ đã lưu trữ sẽ không hiện ở danh sách liên hệ, nhưng vẫn hiển thị ở kết quả tìm kiếm.', + 'call_button' => 'Log a call', + 'set_favorite' => 'Favorite contacts are placed at the top of the contact list', + + // Stay in touch + 'stay_in_touch' => 'Giữ liên lạc', + 'stay_in_touch_frequency' => 'Giữ liên lạc mỗi ngày|Giữ liên lạc mỗi {count} ngày', + 'stay_in_touch_invalid' => 'Tần suất phải là số lớn hơn 0.', + 'stay_in_touch_premium' => 'Bạn cần nâng cấp tài khoản để sử dụng tính năng này', + 'stay_in_touch_modal_title' => 'Giữ liên lạc', + 'stay_in_touch_modal_desc' => 'Chúng tôi có thể nhắc nhở bạn bằng email để giữ liên lạc với {firstname} đều đặn.', + 'stay_in_touch_modal_label' => 'Gửi email cho tôi mỗi... {count} ngày|Gửi email cho tôi mỗi... {count} ngày', + + // Calls + 'modal_call_title' => 'Log a call', + 'modal_call_comment' => 'Bạn đã nói về chuyện gì? (tùy chọn)', + 'modal_call_exact_date' => 'Cuộc gọi xảy ra vào', + 'modal_call_who_called' => 'Ai đã gọi?', + 'modal_call_emotion' => 'Bạn có muốn ghi lại cảm giác của bạn trong cuộc gọi này không? (tùy chọn)', + 'calls_add_success' => 'Đã lưu cuộc gọi.', + 'call_delete_confirmation' => 'Bạn chắc chắn muốn xóa cuộc gọi này?', + 'call_delete_success' => 'Đã xóa cuộc gọi thành công', + 'call_title' => 'Cuộc gọi điện thoại', + 'call_empty_comment' => 'Không có chi tiết', + 'call_blank_title' => 'Keep track of the phone calls you’ve done with {name}', + 'call_blank_desc' => 'You called {name}', + 'call_you_called' => 'Bạn đã gọi', + 'call_he_called' => '{name} đã gọi', + 'call_emotions' => 'Cảm xúc:', + + // Conversation + 'conversation_blank' => 'Ghi lại cuộc hội thoại giữa bạn và :name trên mạng xã hội, SMS, ...', + 'conversation_delete_link' => 'Xóa cuộc hội thoại', + 'conversation_edit_title' => 'Sửa cuộc hội thoại', + 'conversation_edit_delete' => 'Bạn chắc chắn muốn xóa vĩnh viễn cuộc hội thoại này?', + 'conversation_add_success' => 'Thêm hội thoại thành công.', + 'conversation_edit_success' => 'Cập nhật hội thoại thành công.', + 'conversation_delete_success' => 'Xóa hội thoại thành công.', + 'conversation_add_title' => 'Ghi cuộc hội thoại mới', + 'conversation_add_when' => 'Bạn có cuộc hội thoại này khi nào?', + 'conversation_add_who_wrote' => 'Ai đã nói tin nhắn này?', + 'conversation_add_how' => 'Bạn giao tiếp như thế nào?', + 'conversation_add_you' => 'bạn', + 'conversation_add_content' => 'Ghi xuống những gì đã được nói', + 'conversation_add_what_was_said' => 'Bạn đã nói gì?', + 'conversation_add_another' => 'Thêm tin nhắn khác', + 'conversation_add_error' => 'Phải có ít nhất một tin nhắn.', + 'conversation_list_table_messages' => 'Tin nhắn', + 'conversation_list_table_content' => 'Một phần nội dung (tin nhắn mới nhất)', + 'conversation_list_title' => 'Cuộc trò chuyện', + 'conversation_list_cta' => 'Nhật ký trò chuyện', + + // age - birthday + 'birthdate_not_set' => 'Ngày sinh chưa được cài đặt', + 'age_approximate_in_years' => 'khoảng :age tuổi', + 'age_exact_in_years' => ':age tuổi', + 'age_exact_birthdate' => 'sinh ngày :date', + + // Last called + 'last_called' => 'Lần gọi gần đây nhất: date', + 'last_called_empty' => 'Lần gọi gần đây nhất: không rõ', + 'last_activity_date' => 'Lần hoạt động cùng nhau gần đây nhất: :date', + 'last_activity_date_empty' => 'Lần hoạt động cùng nhau gần đây nhất: không rõ', + + // additional information + 'information_edit_success' => 'Hồ sơ đã được cập nhật thành công', + 'information_edit_title' => 'Sửa thông tin cá nhân của :name', + 'information_edit_max_size' => 'Tối đa :size Kb.', + 'information_edit_max_size2' => 'Tối đa {size} Kb.', + 'information_edit_firstname' => 'Tên', + 'information_edit_lastname' => 'Họ (Tuỳ chọn)', + 'information_edit_description' => 'Mô tả (tùy chọn)', + 'information_edit_description_help' => 'Sử dụng trong danh sách liên hệ để thêm vài ngữ cảnh nếu cần thiết.', + 'information_edit_unknown' => 'Tôi không biết tuổi người này', + 'information_edit_probably' => 'Người này có lẽ là...', + 'information_edit_not_year' => 'Tôi biết ngày tháng sinh của người này, nhưng không biết năm sinh…', + 'information_edit_exact' => 'Tôi biết chính xác ngày tháng năm sinh của người này...', + 'information_edit_birthdate_label' => 'Ngày sinh', + 'information_no_work_defined' => 'Không có thông tin công việc', + 'information_work_at' => 'ở :company', + 'work_add_cta' => 'Cập nhật thông tin công việc', + 'work_edit_success' => 'Cập nhật thông tin công việc thành công', + 'work_edit_title' => 'Cập nhật thông tin công việc của :name', + 'work_edit_job' => 'Tên công việc (tuỳ chọn)', + 'work_edit_company' => 'Tên công ty (nếu có)', + 'work_information' => 'Chi tiết công việc', + + // food preferences + 'food_preferences_add_success' => 'Sở thích ăn uống đã được lưu', + 'food_preferences_edit_description' => 'Có thể :firtname hoặc ai đó trong gia đình :family bị dị ứng. Hoặc không thích một chai rượu cụ thể. Đánh dấu ở đây để bạn có thể nhớ trong lần tới bạn mời họ ăn tối', + 'food_preferences_edit_description_no_last_name' => 'Có thể :firtname bị dị ứng. Hoặc không thích một chai rượu cụ thể. Đánh dấu ở đây để bạn có thể nhớ trong lần tới bạn mời họ ăn tối', + 'food_preferences_edit_title' => 'Trình bày sở thích ăn uống', + 'food_preferences_edit_cta' => 'Lưu sở thích ăn uống', + 'food_preferences_title' => 'Sở thích ăn uống', + 'food_preferences_cta' => 'Thêm sở thích ăn uống', + + // reminders + 'reminders_blank_title' => 'Có điều gì bạn muốn được nhắc về :name?', + 'reminders_blank_add_activity' => 'Thêm lời nhắc', + 'reminders_add_title' => 'Bạn muốn được nhắc điều gì về :name?', + 'reminders_add_description' => 'Hãy nhắc tôi...', + 'reminders_add_next_time' => 'When is the next time you would like to be reminded about this?', + 'reminders_add_once' => 'Nhắc tôi về cái này một lần', + 'reminders_add_recurrent' => 'Nhắc tôi về cái này mỗi', + 'reminders_add_starting_from' => 'starting from the date specified above', + 'reminders_add_cta' => 'Add reminder', + 'reminders_edit_update_cta' => 'Update reminder', + 'reminders_add_error_custom_text' => 'You need to indicate a text for this reminder', + 'reminders_create_success' => 'The reminder has been added successfully', + 'reminders_delete_success' => 'The reminder has been deleted successfully', + 'reminders_update_success' => 'The reminder has been updated successfully', + 'reminders_add_optional_comment' => 'Optional comment', + + 'reminder_frequency_day' => 'every day|every :number days', + 'reminder_frequency_week' => 'every week|every :number weeks', + 'reminder_frequency_month' => 'every month|every :number months', + 'reminder_frequency_year' => 'every year|every :number year', + 'reminder_frequency_one_time' => 'on :date', + 'reminders_delete_confirmation' => 'Are you sure you want to delete this reminder?', + 'reminders_delete_cta' => 'Delete', + 'reminders_next_expected_date' => 'on', + 'reminders_cta' => 'Add a reminder', + '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_one_time' => 'One time', + 'reminders_type_week' => 'week', + 'reminders_type_month' => 'month', + 'reminders_type_year' => 'year', + 'reminders_birthday' => 'Birthday of :name', + '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.', + + // relationships + 'relationship_form_add' => 'Add a new relationship', + 'relationship_form_edit' => 'Edit an existing relationship', + 'relationship_form_is_with' => 'This person is...', + 'relationship_form_is_with_name' => ':name is...', + 'relationship_form_add_choice' => 'Who is the relationship with?', + 'relationship_form_create_contact' => 'Add a new 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_also_create_contact' => 'Create a Contact entry for this person.', + '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_delete_confirmation' => 'Are you sure you want to delete this relationship? Deletion is permanent.', + 'relationship_unlink_confirmation' => 'Are you sure you want to delete this relationship? This person will not be deleted – only the relationship between the two.', + 'relationship_form_add_success' => 'The relationship has been successfully set.', + 'relationship_form_deletion_success' => 'Đã xóa mối quan hệ.', + + // tasks + 'tasks_title' => 'Tasks', + 'tasks_blank_title' => 'You don’t have any tasks yet.', + 'tasks_form_title' => 'Tiêu đề', + 'tasks_form_description' => 'Mô tả (tùy chọn)', + 'tasks_add_task' => 'Add a task', + 'tasks_delete_success' => 'The task has been deleted successfully', + 'tasks_complete_success' => 'The task has changed status successfully', + + // activities + 'activity_title' => 'Hoạt động', + 'activity_type_category_simple_activities' => 'Hoạt động đơn giản', + 'activity_type_category_sport' => 'Thể thao', + 'activity_type_category_food' => 'Ẩm thực', + 'activity_type_category_cultural_activities' => 'Hoạt động văn hoá', + 'activity_type_just_hung_out' => 'vừa đi chơi', + 'activity_type_watched_movie_at_home' => 'xem phim ở nhà', + 'activity_type_talked_at_home' => 'nói chuyện ở nhà', + 'activity_type_did_sport_activities_together' => 'chơi thể thao cùng nhau', + 'activity_type_ate_at_his_place' => 'ăn ở chỗ của họ', + 'activity_type_went_bar' => 'đến bar', + 'activity_type_ate_at_home' => 'ăn ở nhà', + 'activity_type_picnicked' => 'picnic', + 'activity_type_ate_restaurant' => 'ăn ở nhà hàng', + 'activity_type_went_theater' => 'đến rạp chiếu phim', + 'activity_type_went_concert' => 'đến concert', + 'activity_type_went_play' => 'đi chơi', + 'activity_type_went_museum' => 'đến viện bảo tàng', + 'activities_add_activity' => 'Thêm hoạt động', + 'activities_add_more_details' => 'Thêm thông tin chi tiết hơn', + 'activities_add_emotions' => 'Thêm cảm xúc', + 'activities_add_category' => 'Cho biết một danh mục', + 'activities_add_participants_cta' => 'Thêm người tham gia', + 'activities_item_information' => ':Activity. Đã xảy ra vào :date', + 'activities_add_title' => 'Bạn đã làm gì với {name}?', + 'activities_summary' => 'Mô tả những gì bạn đã làm', + 'activities_add_pick_activity' => '(Không bắt buộc) Bạn có muốn phân loại hoạt động này không? Bạn không nhất thiết phải làm, nhưng nó sẽ giúp thống kê sau này', + 'activities_add_date_occured' => 'Hoạt động này xảy ra vào...', + 'activities_add_participants' => 'Ai đã tham gia hoạt động này ngoài {name}? (không bắt buộc)', + 'activities_add_emotions_title' => 'Bạn có muốn ghi lại cảm giác của mình trong hoạt động này không? (không bắt buộc)', + 'activities_blank_title' => 'Theo dõi những gì bạn đã làm với {name} trong quá khứ và những gì bạn đã nói', + 'activities_blank_add_activity' => 'Thêm hoạt động', + 'activities_add_success' => 'Thêm hoạt động thành công', + 'activities_add_error' => 'Có lỗi xảy ra khi thêm hoạt động', + 'activities_update_success' => 'Cập nhật hoạt động thành công', + 'activities_delete_success' => 'Xoá hoạt động thành công', + 'activities_who_was_involved' => 'Ai đã tham gia?', + 'activities_activity' => 'Danh mục hoạt động', + 'activities_view_activities_report' => 'Xem báo cáo hoạt động', + 'activities_profile_title' => 'Báo cáo hoạt động giữa :name và bạn', + 'activities_profile_subtitle' => 'Bạn đã ghi lại tất cả :total_activities hoạt động với :name và :activities_last_twelve_months hoạt động trong 12 tháng qua.|Bạn đã ghi lại tất cả :total_activities hoạt động với :name và :activities_last_twelve_months hoạt động trong 12 tháng qua.', + 'activities_profile_year_summary_activity_types' => 'Dưới đây là bảng phân tích các loại hoạt động các bạn đã làm cùng nhau trong năm :year', + 'activities_profile_year_summary' => 'Dưới đây là những gì hai bạn đã làm trong năm :year', + 'activities_profile_number_occurences' => ':value hoạt động|:value hoạt động', + 'activities_list_participants' => 'Người tham gia:', + 'activities_list_emotions' => 'Emotions felt:', + 'activities_list_date' => 'Xảy ra vào', + 'activities_list_category' => 'Thể loại:', + + // notes + 'notes_create_success' => 'Tạo ghi chú thành công', + 'notes_update_success' => 'Lưu ghi chú thành công', + 'notes_delete_success' => 'Xoá ghi chú thành công', + 'notes_add_cta' => 'Thêm ghi chú', + 'notes_favorite' => 'Thêm/xoá khỏi mục yêu thích', + 'notes_delete_title' => 'Xoá ghi chú', + 'notes_delete_confirmation' => 'Bạn chắc chắn muốn xoá ghi chú này vĩnh viễn?', + + // gifts + 'gifts_title' => 'Quà tặng', + 'gifts_add_success' => 'Thêm quà thành công', + 'gifts_delete_success' => 'Xoá quà thành công', + 'gifts_delete_confirmation' => 'Bạn có chắc muốn xoá quà này?', + 'gifts_add_gift' => 'Thêm quà', + 'gifts_link' => 'Liên kết', + 'gifts_for' => 'Cho: {name}', + 'gifts_delete_cta' => 'Xóa', + 'gifts_add_title' => 'Quản lý quà cho :name', + 'gifts_add_gift_idea' => 'Ý tưởng quà tặng', + 'gifts_add_gift_already_offered' => 'Gift offered', + 'gifts_add_gift_received' => 'Quà đã nhận', + 'gifts_add_gift_title' => 'What is this gift?', + 'gifts_add_gift_name' => 'Tên quà', + 'gifts_add_link' => 'Đường dẫn đến trang web (tuỳ chọn)', + 'gifts_add_value' => 'Giá trị (tuỳ chọn)', + 'gifts_add_comment' => 'Nhận xét (tuỳ chọn)', + 'gifts_add_recipient' => 'Người nhận (tuỳ chọn)', + 'gifts_add_recipient_field' => 'Người nhận', + 'gifts_add_photo' => 'Ảnh (tuỳ chọn)', + 'gifts_add_photo_title' => 'Thêm ảnh cho món quà này', + 'gifts_add_someone' => 'Món quà này đặc biệt dành cho một người nào đó trong gia đình của {name}', + 'gifts_delete_title' => 'Xoá quà tặng', + 'gifts_ideas' => 'Ý tưởng quà tặng', + 'gifts_offered' => 'Gifts offered', + 'gifts_offered_as_an_idea' => 'Đánh dấu là một ý tưởng', + 'gifts_received' => 'Quà đã nhận', + 'gifts_view_comment' => 'Xem bình luận', + 'gifts_mark_offered' => 'Mark as offered', + 'gifts_update_success' => 'Cập nhật quà tặng thành công', + + // debts + 'debt_delete_confirmation' => 'Bạn chắc chắn muốn xóa khoản nợ này?', + 'debt_delete_success' => 'Đã xóa khoản nợ thành công', + 'debt_add_success' => 'Đã thêm khoản nợ thành công', + 'debt_title' => 'Khoản nợ', + 'debt_add_cta' => 'Thêm khoản nợ', + 'debt_you_owe' => 'Bạn nợ :amount', + 'debt_they_owe' => ':name nợ bạn :amount', + 'debt_add_title' => 'Quản lý khoản nợ', + 'debt_add_you_owe' => 'Bạn nợ :name', + 'debt_add_they_owe' => ':name nợ bạn', + 'debt_add_amount' => 'lấy tổng của', + 'debt_add_reason' => 'for the following reason (optional)', + 'debt_add_add_cta' => 'Thêm khoản nợ', + 'debt_edit_update_cta' => 'Cập nhật khoản nợ', + 'debt_edit_success' => 'Cập nhật khoản nợ thành công', + 'debts_blank_title' => 'Quản lý các khoản bạn nợ :name hoặc :name nợ bạn', + + // tags + 'tag_edit' => 'Sửa thẻ tag', + 'tag_add' => 'Thêm thẻ tag', + 'tag_add_search' => 'Thêm hoặc tìm thẻ tag', + 'tag_no_tags' => 'Không có thẻ tag nào', + + // Introductions + 'introductions_sidebar_title' => 'Bạn đã gặp nhau như thế nào', + 'introductions_blank_cta' => 'Trình bày bạn đã gặp :name như thế nào', + 'introductions_title_edit' => 'Bạn đã gặp :name thế nào?', + 'introductions_additional_info' => 'Diễn giải làm thế nào bạn gặp và ở đâu', + 'introductions_edit_met_through' => 'Có ai đó giới thiệu bạn cho người này?', + 'introductions_no_met_through' => 'Không có ai', + 'introductions_first_met_date' => 'Ngày bạn gặp', + 'introductions_no_first_met_date' => 'Tôi không biết ngày chúng tôi gặp', + 'introductions_first_met_date_known' => 'Đây là ngày chúng tôi gặp', + 'introductions_add_reminder' => 'Thêm lời nhắc để kỷ niệm cuộc gặp gỡ này vào ngày kỷ niệm sự kiện này đã xảy ra', + 'introductions_update_success' => 'Cập nhật thông tin làm thế nào gặp người này thành công', + 'introductions_met_through' => 'Đã gặp qua :name', + 'introductions_met_date' => 'Gặp vào :date', + 'introductions_reminder_title' => 'Kỷ niệm ngày đầu tiên gặp nhau', + + // Deceased + 'deceased_reminder_title' => 'Kỷ niệm ngày mất của :name', + 'deceased_mark_person_deceased' => 'Đánh dấu người này đã qua đời', + 'deceased_know_date' => 'Tôi biết ngày người này mất', + 'deceased_add_reminder' => 'Thêm nhắc nhở cho ngày này', + 'deceased_label' => 'Đã qua đời', + 'deceased_date_label' => 'Ngày mất', + 'deceased_label_with_date' => 'Đã mất vào :date', + 'deceased_age' => 'Tuổi thọ', + + // Contact information + 'contact_info_title' => 'Thông tin liên hệ', + 'contact_info_form_content' => 'Nội dung', + 'contact_info_form_contact_type' => 'Loại liên hệ', + 'contact_info_form_personalize' => 'Cá nhân hoá', + 'contact_info_address' => 'Sống tại', + + // Addresses + 'contact_address_title' => 'Địa chỉ', + 'contact_address_form_name' => 'Nhãn (không bắt buộc)', + 'contact_address_form_street' => 'Tên đường (không bắt buộc)', + 'contact_address_form_city' => 'Thành phố (không bắt buộc)', + 'contact_address_form_province' => 'Tỉnh (không bắt buộc)', + 'contact_address_form_postal_code' => 'Mã bưu điện (không bắt buộc)', + 'contact_address_form_country' => 'Quốc gia (không bắt buộc)', + 'contact_address_form_latitude' => 'Vĩ độ (chỉ số) (không bắt buộc)', + 'contact_address_form_longitude' => 'Kinh độ (chỉ số) (không bắt buộc)', + + // Pets + 'pets_kind' => 'Loại thú cưng', + 'pets_name' => 'Tên (tùy chọn)', + 'pets_create_success' => 'Thêm thú cưng thành công', + 'pets_update_success' => 'Cập nhật thú cưng thành công', + 'pets_delete_success' => 'Đã xóa thú cưng', + 'pets_title' => 'Thú cưng', + 'pets_reptile' => 'Bò sát', + 'pets_bird' => 'Chim', + 'pets_cat' => 'Mèo', + 'pets_dog' => 'Chó', + 'pets_fish' => 'Cá', + 'pets_hamster' => 'Chuột hamster', + 'pets_horse' => 'Ngựa', + 'pets_rabbit' => 'Thỏ', + 'pets_rat' => 'Chuột', + 'pets_small_animal' => 'Động vật nhỏ', + 'pets_other' => 'Khác', + + // life events + 'life_event_list_tab_life_events' => 'Sự kiện trong đời', + 'life_event_list_tab_other' => 'Ghi chú, nhắc nhở,...', + 'life_event_list_title' => 'Sự kiện trong đời', + 'life_event_blank' => 'Ghi lại những gì xảy ra trong đời của {name} để tham chiếu trong tương lai.', + 'life_event_list_cta' => 'Thêm sự kiện trong đời', + 'life_event_create_category' => 'Tất cả thể loại', + 'life_event_create_life_event' => 'Thêm sự kiện trong đời', + 'life_event_create_default_title' => 'Tiêu đề (tuỳ chọn)', + 'life_event_create_default_story' => 'Câu chuyện (tuỳ chọn)', + 'life_event_create_date' => 'Bạn không cần chỉ rõ ngày hoặc tháng - chỉ bắt buộc năm.', + 'life_event_create_default_description' => 'Thêm thông tin về những gì bạn biết', + 'life_event_create_add_yearly_reminder' => 'Thêm nhắc nhở hàng năm cho sự kiện này', + 'life_event_create_success' => 'Đã thêm sự kiện trong đời', + 'life_event_delete_title' => 'Xoá sự kiện trong đời', + 'life_event_delete_description' => 'Bạn chắc chắn muốn xoá vĩnh viễn sự kiện này?', + 'life_event_delete_success' => 'Đã xoá sự kiện', + 'life_event_date_it_happened' => 'Ngày xảy ra', + 'life_event_category_work_education' => 'Công việc & học vấn', + 'life_event_category_family_relationships' => 'Gia đình & các mối quan hệ', + 'life_event_category_home_living' => 'Home & living', + 'life_event_category_health_wellness' => 'Health & wellness', + 'life_event_category_travel_experiences' => 'Du lịch và trải nghiệm', + 'life_event_sentence_new_job' => 'Đã bắt đầu công việc mới', + 'life_event_sentence_retirement' => 'Nghỉ hưu', + 'life_event_sentence_new_school' => 'Đã bắt đầu đi học', + 'life_event_sentence_study_abroad' => 'Du học', + 'life_event_sentence_volunteer_work' => 'Started volunteering', + 'life_event_sentence_published_book_or_paper' => 'Published a paper', + 'life_event_sentence_military_service' => 'Đã bắt đầu nghĩa vụ quân sự', + 'life_event_sentence_new_relationship' => 'Đã bắt đầu mối quan hệ', + 'life_event_sentence_engagement' => 'Đã đính hôn', + 'life_event_sentence_marriage' => 'Đã kết hơn', + 'life_event_sentence_anniversary' => 'Kỉ niệm', + 'life_event_sentence_expecting_a_baby' => 'Muốn có con', + 'life_event_sentence_new_child' => 'Đã có con', + 'life_event_sentence_new_family_member' => 'Đã thêm thành viên gia đình', + 'life_event_sentence_new_pet' => 'Đã có thú cưng', + 'life_event_sentence_end_of_relationship' => 'Đã kết thúc mối quan hệ', + 'life_event_sentence_loss_of_a_loved_one' => 'Đã mất một người thân yêu', + 'life_event_sentence_moved' => 'Đã chuyển đi', + 'life_event_sentence_bought_a_home' => 'Đã mua nhà', + 'life_event_sentence_home_improvement' => 'Cải tạo nhà', + 'life_event_sentence_holidays' => 'Went on holidays', + 'life_event_sentence_new_vehicle' => 'Đã có xe mới', + 'life_event_sentence_new_roommate' => 'Đã có bạn cùng phòng', + 'life_event_sentence_overcame_an_illness' => 'Đã vượt qua bệnh tật', + 'life_event_sentence_quit_a_habit' => 'Bỏ một thói quen', + 'life_event_sentence_new_eating_habits' => 'Đã bắt đầu một thói quen ăn uống mới', + 'life_event_sentence_weight_loss' => 'Giảm cân', + 'life_event_sentence_wear_glass_or_contact' => 'Started to wear glass or contact lenses', + 'life_event_sentence_broken_bone' => 'Broke a bone', + 'life_event_sentence_removed_braces' => 'Removed braces', + 'life_event_sentence_surgery' => 'Had surgery', + 'life_event_sentence_dentist' => 'Went to the dentist', + 'life_event_sentence_new_sport' => 'Started a sport', + 'life_event_sentence_new_hobby' => 'Started a hobby', + 'life_event_sentence_new_instrument' => 'Learned a new instrument', + 'life_event_sentence_new_language' => 'Learned a new language', + 'life_event_sentence_tattoo_or_piercing' => 'Got a tattoo or piercing', + 'life_event_sentence_new_license' => 'Got a license', + 'life_event_sentence_travel' => 'Traveled', + 'life_event_sentence_achievement_or_award' => 'Got an achievement or award', + 'life_event_sentence_changed_beliefs' => 'Changed beliefs', + 'life_event_sentence_first_word' => 'Spoke for the first time', + 'life_event_sentence_first_kiss' => 'Kissed for the first time', + + // documents + 'document_list_title' => 'Tài liệu', + 'document_list_cta' => 'Tải tài liệu lên', + 'document_list_blank_desc' => 'Here you can store documents related to this person.', + 'document_upload_zone_cta' => 'Tải lên tệp tin', + 'document_upload_zone_progress' => 'Đang tải lên tài liệu...', + 'document_upload_zone_error' => 'Có lỗi xảy ra khi tải tài liệu lên. Hãy thử lại sau.', + + // Photos + 'photo_title' => 'Ảnh', + 'photo_list_title' => 'Ảnh liên quan', + 'photo_list_cta' => 'Tải ảnh lên', + 'photo_list_blank_desc' => 'Bạn có thể lưu ảnh về liên hệ này. Tải lên ngay!', + 'photo_upload_zone_cta' => 'Tải ảnh lên', + 'photo_current_profile_pic' => 'Ảnh đại diện hiện tại', + 'photo_make_profile_pic' => 'Tạo ảnh đại diện', + 'photo_delete' => 'Delete photo', + 'photo_next' => 'Next photo', + 'photo_previous' => 'Previous photo', + + // Avatars + 'avatar_change_title' => 'Change your avatar', + 'avatar_question' => 'Which avatar would you like to use?', + 'avatar_default_avatar' => 'The default avatar', + 'avatar_adorable_avatar' => 'The Adorable 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_current' => 'Keep the current avatar', + 'avatar_photo' => 'From a photo that you upload', + 'avatar_crop_new_avatar_photo' => 'Crop new avatar photo', + + // emotions + 'emotion_this_made_me_feel' => 'This made you feel…', + + // logs + 'auditlogs_link' => 'History', + 'auditlogs_title' => 'Everything that happened to :name', + 'auditlogs_breadcrumb' => 'History', + 'auditlogs_author' => 'By :name on :date', + + // contact field label + 'contact_field_label_home' => 'Home', + 'contact_field_label_work' => 'Cơ quan', + 'contact_field_label_cell' => 'Di động', + 'contact_field_label_fax' => 'Fax', + 'contact_field_label_pager' => 'Máy nhắn tin', + 'contact_field_label_main' => 'Chính', + 'contact_field_label_other' => 'Khác', + 'contact_field_label_personal' => 'Cá nhân', +]; diff --git a/resources/lang/vi/reminder.php b/resources/lang/vi/reminder.php new file mode 100644 index 00000000000..1a91950a57c --- /dev/null +++ b/resources/lang/vi/reminder.php @@ -0,0 +1,17 @@ + 'Chúc mừng sinh nhật tới', + 'type_phone_call' => 'Gọi', + 'type_lunch' => 'Ăn trưa với', + 'type_hangout' => 'Hangout with', + 'type_email' => 'Email', + 'type_birthday_kid' => 'Chúc mừng sinh nhật tới những đứa trẻ của', + +]; diff --git a/resources/lang/vi/settings.php b/resources/lang/vi/settings.php new file mode 100644 index 00000000000..bb6db433add --- /dev/null +++ b/resources/lang/vi/settings.php @@ -0,0 +1,518 @@ + 'Thiết lập tài khoản', + 'sidebar_personalization' => 'Cá nhân hóa', + 'sidebar_settings_storage' => 'Dung lượng', + 'sidebar_settings_export' => 'Xuất dữ liệu', + 'sidebar_settings_users' => 'Người dùng', + 'sidebar_settings_subscriptions' => 'Đăng ký', + 'sidebar_settings_import' => 'Nhập dữ liệu', + 'sidebar_settings_tags' => 'Quản lý thẻ', + 'sidebar_settings_api' => 'API', + 'sidebar_settings_dav' => 'Tài nguyên DAV', + 'sidebar_settings_security' => 'Bảo mật', + 'sidebar_settings_auditlogs' => 'Nhật ký kiểm duyệt', + + 'title_general' => 'Thông tin chung', + 'title_i18n' => 'International settings', + 'title_layout' => 'Giao diện', + + 'me_title' => 'Danh bạ của tôi', + 'me_help' => 'Đây là liên hệ đại diện cho bạn trên Monica', + 'me_select' => 'Chọn 1 liên hệ', + 'me_no_contact' => 'Không có liên hệ nào được chọn.', + 'me_select_click' => 'Bấm vào đây để chọn 1 liên hệ.', + 'me_remove_contact' => 'Gỡ liên kết', + 'me_choose' => 'Choose yourself', + 'me_choose_placeholder' => 'Choose yourself', + + 'export_title' => 'Xuất dữ liệu tài khoản của bạn', + 'export_be_patient' => 'Bấm vào nút để bắt đầu xuất. Điều này sẽ tốn một vài phút để thực hiện - hãy kiên nhẫn và không spam nút bấm.', + 'export_title_sql' => 'Xuất dạng 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 valuable if you do have your own server.', + 'export_sql_cta' => 'Xuất dạng SQL', + 'export_sql_link_instructions' => 'Note: read the instructions to learn more about importing this file to your instance.', + + 'firstname' => 'Tên', + 'lastname' => 'Họ', + 'name_order' => 'Name order', + 'name_order_firstname_lastname' => ' - Dũng Nguyễn', + 'name_order_lastname_firstname' => ' - Nguyễn Dũng', + 'name_order_firstname_lastname_nickname' => ' () - Dũng Nguyễn (nhymxu)', + 'name_order_firstname_nickname_lastname' => ' () - Dũng (nhymxu) Nguyễn', + 'name_order_lastname_firstname_nickname' => ' () - Nguyễn Dũng (nhymxu)', + 'name_order_lastname_nickname_firstname' => ' () - Nguyễn (nhymxu) Dũng', + 'name_order_nickname_firstname_lastname' => ' ( ) - nhymxu (Dũng Nguyễn)', + 'name_order_nickname_firstname_lastname' => ' ( ) - nhymxu (Nguyễn Dũng)', + 'name_order_nickname' => ' - nhymxu', + 'currency' => 'Tiền tệ', + 'name' => 'Tên bạn: :name', + 'email' => 'Địa chỉ email', + 'email_placeholder' => 'Nhập email', + 'email_help' => 'Đây là email dùng để đăng nhập, và là nơi bạn sẽ nhận các thông báo nhắc nhở.', + 'timezone' => 'Múi giờ', + 'temperature_scale' => 'Thang đo nhiệt độ', + 'temperature_scale_fahrenheit' => 'Độ F', + 'temperature_scale_celsius' => 'Độ C', + 'layout' => 'Giao diện', + 'layout_small' => 'Chiều rộng tối đa 1200 pixel', + 'layout_big' => 'Full width of the browser', + 'save' => 'Cập nhật tùy chọn', + 'delete_title' => 'Xóa tài khoản', + 'delete_desc' => 'Do you wish to delete your account? Warning: deletion is permanent and all your data will be erased permanently. Your subscription (if you have any) will also be immediately cancelled.', + 'delete_other_desc' => 'Just to be clear: your data in the main database will be deleted immediately. However, as described in our privacy policy, we do daily backups of the database in case of failure and this backup is kept for 30 days – then it’s completely deleted. It’s unrealistic to imagine that we can go in all the backups to delete your specific data. By the way, this data is encrypted on very secure Amazon servers and no one has the encryption key except us. Therefore, your data will completely disappear in 30 days from all the backups, and no one will know this data ever existed in the first place.', + 'reset_desc' => 'Do you wish to reset your account? This will remove all your contacts, and the data associated with them. Your account will not be deleted.', + 'reset_title' => 'Reset your account', + 'reset_cta' => 'Reset account', + 'reset_notice' => 'Are you sure to reset your account? There is no turning back.', + 'reset_success' => 'Your account has been reset successfully', + 'delete_notice' => 'Are you sure to delete your account? There is no turning back.', + 'delete_cta' => 'Xoá tài khoản', + 'settings_success' => 'Preferences updated!', + 'locale' => 'Language used in the app', + 'locale_help' => 'Do you want to help translating Monica or add a new language? Please follow this link for more information.', + 'locale_ar' => 'Tiếng Ả Rập', + 'locale_cs' => 'Czech', + 'locale_de' => 'German', + 'locale_en' => 'English', + 'locale_es' => 'Spanish', + 'locale_fr' => 'French', + 'locale_he' => 'Hebrew', + 'locale_hr' => 'Croatian', + 'locale_it' => 'Italian', + 'locale_ja' => 'Japanese', + 'locale_nl' => 'Dutch', + 'locale_pt' => 'Tiếng Bồ Đào Nha', + 'locale_pt-BR' => 'Tiếng Bồ Đào Nha (Brazil)', + 'locale_ru' => 'Tiếng Nga', + 'locale_sv' => 'Swedish', + 'locale_zh' => 'Tiếng Trung Giản thể', + 'locale_zh-TW' => 'Tiếng Trung phồn thể', + 'locale_tr' => 'Tiếng Thổ Nhĩ Kỳ', + 'locale_en-GB' => 'Tiếng Anh (Vương Quốc Anh)', + + 'security_title' => 'Bảo mật', + 'security_help' => 'Change security matters for your account.', + 'password_change' => 'Thay đổi mật khẩu', + 'password_current' => 'Mật khẩu hiện tại', + 'password_current_placeholder' => 'Nhập mật khẩu hiện tại', + 'password_new1' => 'Mật khẩu mới', + 'password_new1_placeholder' => 'Nhập mật khẩu mới', + 'password_new2' => 'Xác nhận', + 'password_new2_placeholder' => 'Nhập lại mật khẩu mới', + 'password_btn' => 'Đổi mật khẩu', + '2fa_title' => 'Xác minh 2 bước', + '2fa_otp_title' => 'Ứng dụng mobile xác thực 2 yếu tố', + '2fa_enable_title' => 'Bật xác thực 2 bước', + '2fa_enable_description' => 'Bật xác thực 2 yếu tố để nâng cao bảo mật cho tài khoản của bạn.', + '2fa_enable_otp' => 'Mở ứng dụng mobile xác thực 2 yếu tố và quét mã QR dưới đây:', + '2fa_enable_otp_help' => 'Nếu ứng dụng xác thực 2 yếu tố của bạn không hỗ trợ QR code, nhập mã dưới đây:', + '2fa_enable_otp_validate' => 'Hãy xác nhận thiết bị mới bạn vừa thiết lập:', + '2fa_enable_success' => 'Đã kích hoạt xác thực 2 yếu tố', + '2fa_enable_error' => 'Có lỗi khi thử kích hoạt xác thực 2 yếu tố', + '2fa_enable_error_already_set' => 'Xác thực 2 yếu tố đã được kích hoạt trước đó', + '2fa_disable_title' => 'Vô hiệu xác thực 2 yếu tố', + '2fa_disable_description' => 'Disable Two Factor Authentication for your account. Be careful, your account will not be secured anymore !', + '2fa_disable_success' => 'Two Factor Authentication disabled', + '2fa_disable_error' => 'Error when trying to disable Two Factor Authentication', + + 'webauthn_title' => 'Security key — WebAuthn protocol', + 'webauthn_enable_description' => 'Thêm khóa bảo mật mới', + 'webauthn_key_name_help' => 'Đặt tên cho khoá bảo mật.', + 'webauthn_key_name' => 'Tên khoá:', + 'webauthn_success' => 'Your key is detected and validated.', + 'webauthn_last_use' => 'Last use: {timestamp}', + 'webauthn_delete_confirmation' => 'Are you sure you want to delete this key?', + 'webauthn_delete_success' => 'Key deleted', + 'webauthn_insertKey' => 'Insert your security key.', + 'webauthn_buttonAdvise' => 'If your security key has a button, press it.', + 'webauthn_noButtonAdvise' => 'If it does not, remove it and insert it again.', + 'webauthn_not_supported' => 'Your browser doesn’t currently support WebAuthn.', + 'webauthn_not_secured' => 'WebAuthn only supports secure connections. Please load this page with https scheme.', + '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.', + + 'recovery_title' => 'Recovery codes', + 'recovery_show' => 'Get recovery codes', + 'recovery_copy_help' => 'Copy codes in your clipboard', + 'recovery_help_intro' => 'These are your recovery codes:', + 'recovery_help_information' => 'You can use each recovery code once.', + 'recovery_clipboard' => 'Codes copied in the clipboard', + 'recovery_generate' => 'Generate new codes...', + 'recovery_generate_help' => 'Be aware that generating new codes will invalidate previously generated codes', + 'recovery_already_used_help' => 'This code has already been used', + + 'users_list_title' => 'Users with access to your account', + 'users_list_add_user' => 'Invite a new user', + 'users_list_you' => 'That’s you', + 'users_list_invitations_title' => 'Pending invitations', + '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_blank_title' => 'You are the only one who has access to this account.', + 'users_blank_add_title' => 'Would you like to invite someone else?', + '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_cta' => 'Invite someone', + 'users_add_title' => 'Invite a new user by email to your account', + 'users_add_description' => 'This person will have the same rights as you do, including inviting other users and deleting them (including you). Therefore, make sure you trust this person.', + 'users_add_email_field' => 'Enter the email of the person you want to invite', + 'users_add_confirmation' => 'I confirm that I want to invite this user to my account. This person will access ALL my data and see exactly what I see.', + 'users_add_cta' => 'Mời bằng email', + 'users_accept_title' => 'Chấp nhận lời mời và tạo tài khoản mới', + 'users_error_please_confirm' => 'Please confirm that you want to invite this user before proceeding with the invitation', + 'users_error_email_already_taken' => 'Email này đã được sử dụng. Vui lòng chọn email khác', + 'users_error_already_invited' => 'You already have invited this user. Please choose another email address.', + 'users_error_email_not_similar' => 'This is not the email of the person who’ve invited you.', + 'users_invitation_deleted_confirmation_message' => 'The invitation has been successfully deleted', + 'users_invitations_delete_confirmation' => 'Are you sure you want to delete this invitation?', + 'users_list_delete_confirmation' => 'Are you sure to delete this user from your account?', + 'users_invitation_need_subscription' => 'Adding more users requires a subscription.', + + 'subscriptions_account_current_plan' => 'Your current plan', + 'subscriptions_account_current_paid_plan' => 'You are on the :name plan. Thanks so much for being a subscriber.', + 'subscriptions_account_next_billing' => 'Your subscription will auto-renew on :date.', + 'subscriptions_account_cancel' => 'You can cancel subscription anytime.', + 'subscriptions_account_free_plan' => 'You are on the free plan.', + '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_free_plan_benefits_users' => 'Unlimited number of users', + 'subscriptions_account_free_plan_benefits_reminders' => 'Nhắc nhở bằng email', + 'subscriptions_account_free_plan_benefits_import_data_vcard' => 'Import your contacts with vCard', + 'subscriptions_account_free_plan_benefits_support' => 'Support the project on the long run, so we can introduce more great features.', + 'subscriptions_account_upgrade' => 'Nâng cấp tài khoản của bạn', + 'subscriptions_account_upgrade_title' => 'Nâng cấp Monica hôm nay và có thêm nhiều mối quan hệ ý nghĩa.', + 'subscriptions_account_upgrade_choice' => 'Pick a plan below and join over :customers persons who upgraded their Monica.', + 'subscriptions_account_invoices' => 'Hoá đơn', + 'subscriptions_account_invoices_download' => 'Tải xuống', + 'subscriptions_account_invoices_subscription' => 'Subscription from :startDate to :endDate', + 'subscriptions_account_payment' => 'Which payment option fits you best?', + 'subscriptions_account_confirm_payment' => 'Your payment is currently incomplete, please confirm your payment.', + 'subscriptions_downgrade_title' => 'Downgrade your account to the free plan', + '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_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_rule_invitations' => 'You must not have pending invitations', + 'subscriptions_downgrade_rule_invitations_constraint' => 'You currently have 1 pending invitation sent to people.|You currently have :count pending invitations sent to people.', + '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_cta' => 'Hạ cấp', + 'subscriptions_downgrade_success' => 'Bạn đã trở lại gói miễn phí!', + 'subscriptions_downgrade_thanks' => 'Thanks so much for having tried 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_back' => 'Back to settings', + 'subscriptions_upgrade_title' => 'Upgrade your account', + 'subscriptions_upgrade_choose' => 'You picked the :plan plan.', + 'subscriptions_upgrade_infos' => 'We couldn’t be happier. Enter your payment info below.', + 'subscriptions_upgrade_name' => 'Name on card', + 'subscriptions_upgrade_zip' => 'Mã bưu chính', + 'subscriptions_upgrade_credit' => 'Thẻ tín dụng', + 'subscriptions_upgrade_submit' => 'Pay {amount}', + '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 anytime, no questions asked.', + 'subscriptions_upgrade_charge_handled' => 'The payment is handled by Stripe. No card information touches our server.', + '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_payment_confirm_title' => 'Confirm your :amount payment', + '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_succeeded_title' => 'Payment Successful', + 'subscriptions_payment_succeeded' => 'This payment was already successfully confirmed.', + 'subscriptions_payment_cancelled_title' => 'Payment Cancelled', + 'subscriptions_payment_cancelled' => 'This payment was cancelled.', + 'subscriptions_payment_error_name' => 'Please provide your name.', + 'subscriptions_payment_success' => 'The payment was successful.', + + 'subscriptions_pdf_title' => 'Your :name monthly subscription', + 'subscriptions_plan_choose' => 'Choose this plan', + 'subscriptions_plan_year_title' => 'Pay annually', + 'subscriptions_plan_year_cost' => '$45/year', + 'subscriptions_plan_year_cost_save' => 'you’ll save 25%', + 'subscriptions_plan_year_bonus' => 'Peace of mind for a whole year', + 'subscriptions_plan_month_title' => 'Pay monthly', + 'subscriptions_plan_month_cost' => '$5/month', + 'subscriptions_plan_month_bonus' => 'Cancel any time', + '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_help_title' => 'Additional details you may be curious about', + 'subscriptions_help_opensource_title' => 'What is an open source project?', + 'subscriptions_help_opensource_desc' => 'Monica is an open source project. This means it is built by an entirely benevolent community who just wants to provide 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 build better features, have more powerful servers, help pay the bills. Thanks for your help. We couldn’t do it without you – literally.', + 'subscriptions_help_limits_title' => 'Is there any limit to the number of contacts we can have on the free plan?', + 'subscriptions_help_limits_plan' => 'Yes. Free plans let you manage :number contacts.', + 'subscriptions_help_discounts_title' => 'Do you have discounts for non-profits and education?', + '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_change_title' => 'What if I change my mind?', + 'subscriptions_help_change_desc' => 'You can cancel anytime, no questions asked, and all by yourself – no need to contact support or whatever. However, you will not be refunded for the current period.', + + 'stripe_error_card' => 'Your card was declined. Decline message is: :message', + 'stripe_error_api_connection' => 'Network communication with Stripe failed. Try again later.', + 'stripe_error_rate_limit' => 'Too many requests with Stripe right now. Try again later.', + 'stripe_error_invalid_request' => 'Invalid parameters. Try again later.', + 'stripe_error_authentication' => 'Wrong authentication with Stripe', + + 'import_title' => 'Import contacts in your account', + 'import_cta' => 'Upload contacts', + 'import_stat' => 'You’ve imported :number files so far.', + '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_view_report' => 'Xem báo cáo', + 'import_in_progress' => 'The import is in progress. Reload the page in one minute.', + 'import_upload_title' => 'Import your contacts from a vCard file', + 'import_upload_rules_desc' => 'We do however have some rules:', + 'import_upload_rule_format' => 'We support .vcard and .vcf files.', + 'import_upload_rule_vcard' => 'We support the vCard 3.0 format, which is the default format for Contacts.app (macOS) and Google Contacts.', + 'import_upload_rule_instructions' => 'Export instructions for Contacts.app (macOS) and Google Contacts.', + 'import_upload_rule_multiple' => 'For now, if your contacts have multiple email addresses or phone numbers, only the first entry will be picked up.', + 'import_upload_rule_limit' => 'Files are limited to 10MB.', + 'import_upload_rule_time' => 'It might take up to 1 minute to upload the contacts and process them. Be patient.', + 'import_upload_rule_cant_revert' => 'Make sure data is accurate before uploading, as you can’t undo the upload.', + 'import_upload_form_file' => 'Your .vcf or .vCard file:', + 'import_upload_behaviour' => 'Import behaviour:', + 'import_upload_behaviour_add' => 'Add new contacts, skip existing', + 'import_upload_behaviour_replace' => 'Replace existing contacts', + 'import_upload_behaviour_help' => 'Note: Replacing will replace all data found in the vCard, but will keep existing contact fields.', + 'import_report_title' => 'Importing report', + 'import_report_date' => 'Date of the import', + 'import_report_type' => 'Type of 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_vcard_parse_error' => 'Error when parsing the vCard entry', + 'import_vcard_contact_exist' => 'Contact already exists', + 'import_vcard_contact_no_firstname' => 'No firstname (mandatory)', + 'import_vcard_file_not_found' => 'File not found', + 'import_vcard_unknown_entry' => 'Unknown contact name', + 'import_vcard_file_no_entries' => 'File contains no entries', + 'import_blank_title' => 'You haven’t imported any contacts yet.', + 'import_blank_question' => 'Would you like to import contacts now?', + 'import_blank_description' => 'We can import vCard files that you can get from Google Contacts or your Contact manager.', + 'import_blank_cta' => 'Import vCard', + 'import_need_subscription' => 'Importing data requires a subscription.', + + 'tags_list_title' => 'Tags', + '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_contact_number' => '1 contact|:count contacts', + 'tags_list_delete_success' => 'The tag has been successfully deleted', + 'tags_list_delete_confirmation' => 'Are you sure you want to delete the tag? No contacts will be deleted, only the tag.', + 'tags_blank_title' => 'Tags are a great way of categorizing your contacts.', + '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, go back here to manage all the tags in your account.', + + 'api_title' => 'API access', + 'api_description' => 'The API can be used to manipulate Monica’s data from an external application, like a mobile application for instance.', + '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_endpoint' => 'The API endpoint for this Monica instance is:', + + 'api_personal_access_tokens' => 'Personal access tokens', + 'api_pao_description' => 'Make sure you give this token to a source you trust – as they allow you to access all your data.', + 'api_token_title' => 'Personal Access Tokens', + 'api_token_create_new' => 'Create New Token', + 'api_token_not_created' => 'You have not created any personal access tokens.', + 'api_token_name' => 'Token name', + 'api_token_expire' => 'Expires at {date}', + 'api_token_delete' => 'Delete', + 'api_token_create' => 'Create Token', + 'api_token_scopes' => 'Scopes', + '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_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_title' => 'OAuth Clients', + 'api_oauth_create_new' => 'Create New Client', + 'api_oauth_edit' => 'Edit Client', + 'api_oauth_not_created' => 'You have not created any OAuth clients.', + 'api_oauth_clientid' => 'Client ID', + 'api_oauth_name' => 'Name', + 'api_oauth_name_help' => 'Something your users will recognize and trust.', + 'api_oauth_secret' => 'Secret', + 'api_oauth_create' => 'Create Client', + 'api_oauth_redirecturl' => 'Redirect URL', + 'api_oauth_redirecturl_help' => 'Your application’s authorization callback URL.', + + '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_title' => 'Authorized Applications', + 'api_authorized_clients_none' => 'There is no authorized client yet.', + 'api_authorized_clients_name' => 'Name', + 'api_authorized_clients_scopes' => 'Scopes', + + 'personalization_tab_title' => 'Personalize your account', + + 'personalization_title' => 'Here you can find different settings to configure your account. These features are more for “power users” who want maximum control over Monica.', + 'personalization_contact_field_type_title' => 'Contact field types', + 'personalization_contact_field_type_add' => 'Add new field type', + 'personalization_contact_field_type_description' => 'Here you can configure all the different types of contact fields that you can associate to all your contacts. If in the future, a new social network appears, you will be able to add this new type of ways of contacting your contacts right here.', + 'personalization_contact_field_type_table_name' => 'Name', + 'personalization_contact_field_type_table_protocol' => 'Protocol', + 'personalization_contact_field_type_table_actions' => 'Actions', + 'personalization_contact_field_type_modal_title' => 'Add a new contact field type', + 'personalization_contact_field_type_modal_edit_title' => 'Edit an existing contact field type', + 'personalization_contact_field_type_modal_delete_title' => 'Delete an existing contact field type', + '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 your contacts.', + '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_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_delete_success' => 'The contact field type has been deleted with success.', + 'personalization_contact_field_type_add_success' => 'The contact field type has been successfully added.', + 'personalization_contact_field_type_edit_success' => 'The contact field type has been successfully updated.', + + 'personalization_genders_title' => 'Gender types', + 'personalization_genders_add' => 'Add new gender type', + '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_modal_add' => 'Add gender type', + 'personalization_genders_modal_edit' => 'Update gender type', + '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_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 {name}?', + 'personalization_genders_modal_delete_question' => 'You currently have {count} contact that has this gender. If you delete this gender, what gender should this contact have?|You currently have {count} contacts that have 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 next default?', + 'personalization_genders_modal_error' => 'Please choose a valid gender from the list.', + 'personalization_genders_list_contact_number' => '{count} contact|{count} contacts', + 'personalization_genders_table_name' => 'Name', + 'personalization_genders_table_sex' => 'Sex', + 'personalization_genders_table_default' => 'Default', + 'personalization_genders_default' => 'Default gender', + 'personalization_genders_make_default' => 'Change default gender', + 'personalization_genders_select_default' => 'Select default gender', + 'personalization_genders_m' => 'Male', + 'personalization_genders_f' => 'Female', + 'personalization_genders_o' => 'Other', + 'personalization_genders_u' => 'Unknown', + 'personalization_genders_n' => 'None or not applicable', + + 'personalization_reminder_rule_save' => 'The change has been saved', + 'personalization_reminder_rule_title' => 'Reminder rules', + 'personalization_reminder_rule_line' => '{count} day before|{count} days before', + 'personalization_reminder_rule_desc' => 'For every reminder that you set, we can send you an email some days before the event happens. You can toggle those notifications here. Note that those notifications only apply to monthly and yearly reminders.', + + 'personalization_module_save' => 'The change has been saved', + 'personalization_module_title' => 'Features', + 'personalization_module_desc' => 'Some people don’t need all the features. Below you can toggle specific features that are used on a contact sheet. This change will affect ALL your contacts. Note that if you turn off one of these features, data will not be lost - we will simply hide the feature.', + + '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.', + + 'reminder_time_to_send' => 'Time of the day reminders should be sent', + 'reminder_time_to_send_help' => 'For your information, your next reminder will be sent on {dateTime}.', + + 'personalization_activity_type_category_title' => 'Activity type categories', + 'personalization_activity_type_category_add' => 'Add a new activity type category', + 'personalization_activity_type_category_table_name' => 'Name', + 'personalization_activity_type_category_description' => 'An activity done with one of your contact can have a type and a category type. Your account comes by default with a set of predefined category types, but you can customize everything here.', + 'personalization_activity_type_category_table_actions' => 'Actions', + 'personalization_activity_type_category_modal_add' => 'Add a new activity type category', + 'personalization_activity_type_category_modal_edit' => 'Edit an activity type category', + 'personalization_activity_type_category_modal_question' => 'How should we name this new category?', + 'personalization_activity_type_add_button' => 'Add a new activity type', + 'personalization_activity_type_modal_add' => 'Add a new activity type', + 'personalization_activity_type_modal_question' => 'How should we name this new activity type?', + 'personalization_activity_type_modal_edit' => 'Edit an activity type', + '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. However, activities that belong to this category will not be affected by this deletion.', + '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_category_modal_delete_error' => 'We can’t find this activity type category.', + + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => 'Work & education', + 'personalization_life_event_category_family_relationships' => 'Family & relationships', + 'personalization_life_event_category_home_living' => 'Home & living', + 'personalization_life_event_category_travel_experiences' => 'Travel & experiences', + 'personalization_life_event_category_health_wellness' => 'Health & wellness', + + 'personalization_life_event_type_new_job' => 'New job', + 'personalization_life_event_type_retirement' => 'Retirement', + 'personalization_life_event_type_new_school' => 'New school', + 'personalization_life_event_type_study_abroad' => 'Study abroad', + 'personalization_life_event_type_volunteer_work' => 'Volunteer work', + 'personalization_life_event_type_published_book_or_paper' => 'Published a book or paper', + 'personalization_life_event_type_military_service' => 'Military service', + 'personalization_life_event_type_first_met' => 'First met', + 'personalization_life_event_type_new_relationship' => 'New relationship', + 'personalization_life_event_type_engagement' => 'Engagement', + 'personalization_life_event_type_marriage' => 'Marriage', + 'personalization_life_event_type_anniversary' => 'Anniversary', + 'personalization_life_event_type_expecting_a_baby' => 'Expecting a baby', + 'personalization_life_event_type_new_child' => 'New child', + 'personalization_life_event_type_new_family_member' => 'Thêm thành viên mới trong gia đình', + 'personalization_life_event_type_new_pet' => 'Thêm thú cưng', + 'personalization_life_event_type_end_of_relationship' => 'End of relationship', + 'personalization_life_event_type_loss_of_a_loved_one' => 'Loss of a loved one', + 'personalization_life_event_type_moved' => 'Moved', + 'personalization_life_event_type_bought_a_home' => 'Đã mua nhà', + 'personalization_life_event_type_home_improvement' => 'Sửa nhà', + 'personalization_life_event_type_holidays' => 'Kỳ nghỉ', + 'personalization_life_event_type_new_vehicle' => 'Mua xe mới', + 'personalization_life_event_type_new_roommate' => 'Bạn cùng phòng mới', + 'personalization_life_event_type_overcame_an_illness' => 'Đã vượt qua bệnh tật', + 'personalization_life_event_type_quit_a_habit' => 'Bỏ một thói quen', + 'personalization_life_event_type_new_eating_habits' => 'New eating habits', + 'personalization_life_event_type_weight_loss' => 'Giảm cân', + 'personalization_life_event_type_wear_glass_or_contact' => 'Wear glass or contact', + 'personalization_life_event_type_broken_bone' => 'Gãy xương', + 'personalization_life_event_type_removed_braces' => 'Removed braces', + 'personalization_life_event_type_surgery' => 'Surgery', + 'personalization_life_event_type_dentist' => 'Dentist', + 'personalization_life_event_type_new_sport' => 'New sport', + 'personalization_life_event_type_new_hobby' => 'New hobby', + 'personalization_life_event_type_new_instrument' => 'New instrument', + 'personalization_life_event_type_new_language' => 'New language', + 'personalization_life_event_type_tattoo_or_piercing' => 'Tattoo or piercing', + 'personalization_life_event_type_new_license' => 'New license', + 'personalization_life_event_type_travel' => 'Travel', + 'personalization_life_event_type_achievement_or_award' => 'Achievement or award', + 'personalization_life_event_type_changed_beliefs' => 'Changed beliefs', + 'personalization_life_event_type_first_word' => 'First word', + 'personalization_life_event_type_first_kiss' => 'First kiss', + + 'storage_title' => 'Storage', + 'storage_account_info' => 'Your account limit: :accountLimit Mb / Your current usage: :currentAccountSize Mb (:percentUsage%)', + 'storage_upgrade_notice' => 'Upgrade your account to be able to upload documents and photos.', + 'storage_description' => 'Here you can see all the documents and photos uploaded about your contacts.', + + 'dav_title' => 'WebDAV', + 'dav_description' => 'Here you can find all settings to use WebDAV resources for CardDAV and CalDAV exports.', + 'dav_copy_help' => 'Copy into your clipboard', + 'dav_clipboard_copied' => 'Value copied into your clipboard', + 'dav_url_base' => 'Base url for all CardDAV and CalDAV resources:', + '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_url_carddav' => 'CardDAV url for Contacts resource:', + 'dav_url_caldav_birthdays' => 'CalDAV url for Birthdays resources:', + 'dav_url_caldav_tasks' => 'CalDAV url for Tasks resources:', + 'dav_title_carddav' => 'CardDAV', + 'dav_title_caldav' => 'CalDAV', + 'dav_carddav_export' => 'Export all contacts in one file', + 'dav_caldav_birthdays_export' => 'Export all birthdays in one file', + 'dav_caldav_tasks_export' => 'Export all tasks in one file', + + 'archive_title' => 'Archive all your contacts in your account', + 'archive_desc' => 'Hành động này sẽ lưu trữ tất cả liên hệ trong tài khoản của bạn.', + 'archive_cta' => 'Lưu trữ tất cả liên hệ', + + 'logs_title' => 'Mọi thứ đã xảy ra với tài khoản này', + 'logs_author' => 'By :name on :date', +]; diff --git a/resources/lang/vi/validation.php b/resources/lang/vi/validation.php new file mode 100644 index 00000000000..c10b0d247d9 --- /dev/null +++ b/resources/lang/vi/validation.php @@ -0,0 +1,157 @@ + '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.', + 'before' => 'The :attribute must be a date before :date.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + 'between' => [ + 'numeric' => 'The :attribute must be between :min and :max.', + 'file' => 'The :attribute must be between :min and :max kilobytes.', + 'string' => 'The :attribute must be between :min and :max characters.', + 'array' => 'The :attribute must have between :min and :max items.', + ], + 'boolean' => 'The :attribute field must be true or false.', + 'confirmed' => 'The :attribute confirmation does not match.', + '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' => [ + 'numeric' => 'The :attribute must be greater than :value.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', + ], + 'gte' => [ + 'numeric' => 'The :attribute must be greater than or equal :value.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', + ], + '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' => [ + 'numeric' => 'The :attribute must be less than :value.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', + ], + 'lte' => [ + 'numeric' => 'The :attribute must be less than or equal :value.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', + ], + 'max' => [ + 'numeric' => 'The :attribute may not be greater than :max.', + 'file' => 'The :attribute may not be greater than :max kilobytes.', + 'string' => 'The :attribute may not be greater than :max characters.', + 'array' => 'The :attribute may not have more than :max items.', + ], + 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', + 'min' => [ + 'numeric' => 'The :attribute must be at least :min.', + 'file' => 'The :attribute must be at least :min kilobytes.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', + ], + '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' => [ + 'numeric' => 'The :attribute must be :size.', + 'file' => 'The :attribute must be :size kilobytes.', + 'string' => 'The :attribute must be :size characters.', + 'array' => 'The :attribute must contain :size items.', + ], + '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.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + 'attributes' => [], + +]; diff --git a/resources/lang/zh-TW/settings.php b/resources/lang/zh-TW/settings.php index eacee4a4672..03b7736bbde 100644 --- a/resources/lang/zh-TW/settings.php +++ b/resources/lang/zh-TW/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => '葡萄牙文', 'locale_pt-BR' => '葡萄牙語 (巴西)', 'locale_ru' => '俄文', + 'locale_sv' => 'Swedish', 'locale_zh' => '簡體中文', 'locale_zh-TW' => '繁體中文(台灣)', 'locale_tr' => '土耳其文', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => '我們無法找到這個活動', 'personalization_activity_type_category_modal_delete_error' => '我們無法找到這個活動分類', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => '工作與教育', 'personalization_life_event_category_family_relationships' => '家庭與戀愛', 'personalization_life_event_category_home_living' => '家與生活', diff --git a/resources/lang/zh/people.php b/resources/lang/zh/people.php index 28108aa51c7..787e9f69b1a 100644 --- a/resources/lang/zh/people.php +++ b/resources/lang/zh/people.php @@ -57,7 +57,7 @@ 'people_delete_success' => '联系人已被删除', 'people_delete_message' => '删除联系人', 'people_delete_confirmation' => '确实要删除此联系人吗?删除是永久性的。', - 'people_add_birthday_reminder' => '祝: name生日快乐', + 'people_add_birthday_reminder' => '祝 :name 生日快乐', 'people_add_birthday_reminder_deceased' => 'On this date, :name, would have celebrated his birthday', 'people_add_import' => '是否要 导入您的联系人?', 'people_edit_email_error' => '您的联系人中已经有人使用此电子邮件,请更换一个', diff --git a/resources/lang/zh/settings.php b/resources/lang/zh/settings.php index 7a5c12241ef..c0fb3970d72 100644 --- a/resources/lang/zh/settings.php +++ b/resources/lang/zh/settings.php @@ -92,6 +92,7 @@ 'locale_pt' => '葡萄牙文', 'locale_pt-BR' => '葡萄牙语 (巴西)', 'locale_ru' => '俄文', + 'locale_sv' => 'Swedish', 'locale_zh' => '简体中文', 'locale_zh-TW' => 'Chinese Traditional', 'locale_tr' => '土耳其文', @@ -424,6 +425,18 @@ 'personalization_activity_type_modal_delete_error' => '我们无法找到这个活动', 'personalization_activity_type_category_modal_delete_error' => '我们无法找到这个活动分类', + 'personalization_life_event_category_title' => 'Life event categories', + 'personalization_live_event_category_table_name' => 'Name', + 'personalization_life_event_category_description' => 'A life event can have a type and a category. Your account comes by default with a set of predefined categories and types, but you can customize life event types here.', + 'personalization_live_event_category_table_actions' => 'Actions', + 'personalization_life_event_type_add_button' => 'Add a new life event type', + 'personalization_life_event_type_modal_add' => 'Add a new life event type', + 'personalization_life_event_type_modal_question' => 'How should we name this new life event type?', + 'personalization_life_event_type_modal_edit' => 'Edit a 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_category_work_education' => '工作与教育', 'personalization_life_event_category_family_relationships' => '家庭与恋爱', 'personalization_life_event_category_home_living' => '家与生活',